/*
    =========================
	Template Name 	 : PowerZone
	Author			 : DexignZone
	Version			 : 1.0
	Author Portfolio : https://themeforest.net/user/dexignzone
	=========================
	
	[Table of Contents] 

	=== SCSS Start ===
	
    1. Abstract
		1.1 abstract.scss
		1.2 mixins.scss
		1.3 variable.scss
		
    2. Base
		2.1 base.scss
		2.2 custom-grid.scss
		2.3 fonts.scss
		2.4 preloader.scss
		2.5 reset.scss
		2.6 shortcode.scss
		
    3. Components
		3.1 About
		3.2 Blog Post
		3.3 Iconbox
		3.4 Portfolio
		3.5 Section Head
		3.6 Team
		3.7 Testimonials
		3.8 Other scss File
		
    4. Layout
		4.1 Banner
		4.2 Footer
		4.3 Header
		4.4 Theme
		4.5 Other scss File
		
    5. Pages
		5.1 index.scss
		5.2 blog-details.scss
		5.3 coming-soon.scss
		5.4 contact-us.scss
		5.5 course-details.scss
		5.6 error-404.scss
		5.7 event-detail.scss
		5.8 pages.scss
		5.9 under-construction.scss
		
	=== SCSS Start ===
*/
/*=== Abstract ===*/
:root {
  --primary: #FF8139;
  --secondary: #232323;
  --gray: #F2F2F2;
  --primary-hover: #ff6106;
  --primary-dark: #9f3a00;
  --rgba-secondary-1: rgba(35, 35, 35, 0.1);
  --rgba-primary-1: rgba(255, 129, 57, 0.1);
  --rgba-primary-2: rgba(255, 129, 57, 0.2);
  --rgba-primary-3: rgba(255, 129, 57, 0.3);
  --rgba-primary-4: rgba(255, 129, 57, 0.4);
  --rgba-primary-5: rgba(255, 129, 57, 0.5);
  --rgba-primary-6: rgba(255, 129, 57, 0.6);
  --rgba-primary-7: rgba(255, 129, 57, 0.7);
  --rgba-primary-8: rgba(255, 129, 57, 0.8);
  --rgba-primary-9: rgba(255, 129, 57, 0.9);
  --border-radius-base: 6px;
  --font-family-base: Poppins, sans-serif;
  --font-family-title: Kuunari;
  --title: #222222;
  --dark: #222222;
  --light: #ebebeb; }

/*=== Bootstrap ===*/
/*!
 * Bootstrap v5.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --bs-black: #171717;
  --bs-gray: #666666;
  --bs-pink: #ff3c85;
  --bs-blue: #00c5dc;
  --bs-green: #34bfa3;
  --bs-orange: #EF9800;
  --bs-red: #f0526d;
  --bs-brown: #484a5c;
  --bs-yellow: #ffb822;
  --bs-purple: #8862B9;
  --bs-facebook: #3B5998;
  --bs-google: #fe6e63;
  --bs-linkedin: #007BB6;
  --bs-instagram: #8A5A4E;
  --bs-twitter: #1EA1F3;
  --bs-youtube: #8862B9;
  --bs-whatsapp: #01C854;
  --bs-gray-100: #f8f9fa;
  --bs-gray-200: #e9ecef;
  --bs-gray-300: #dee2e6;
  --bs-gray-400: #ced4da;
  --bs-gray-500: #adb5bd;
  --bs-gray-600: #6c757d;
  --bs-gray-700: #495057;
  --bs-gray-800: #343a40;
  --bs-gray-900: #212529;
  --bs-primary: #FF8139;
  --bs-secondary: #232323;
  --bs-success: #13c24d;
  --bs-info: #00aeff;
  --bs-warning: #FFBD13;
  --bs-danger: #ff0003;
  --bs-light: #faf8f2;
  --bs-dark: #222222;
  --bs-primary-rgb: 255, 129, 57;
  --bs-secondary-rgb: 35, 35, 35;
  --bs-success-rgb: 19, 194, 77;
  --bs-info-rgb: 0, 174, 255;
  --bs-warning-rgb: 255, 189, 19;
  --bs-danger-rgb: 255, 0, 3;
  --bs-light-rgb: 250, 248, 242;
  --bs-dark-rgb: 34, 34, 34;
  --bs-white-rgb: 255, 255, 255;
  --bs-black-rgb: 0, 0, 0;
  --bs-body-color-rgb: 102, 102, 102;
  --bs-body-bg-rgb: 255, 255, 255;
  --bs-font-sans-serif: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --bs-font-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --bs-gradient: linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));
  --bs-body-font-family: Poppins, sans-serif;
  --bs-body-font-size: 0.9375rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.6;
  --bs-body-color: #666666;
  --bs-body-bg: #ffffff; }

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

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth; } }

body {
  margin: 0;
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  color: var(--bs-body-color);
  text-align: var(--bs-body-text-align);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }

hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25; }

hr:not([size]) {
  height: 1px; }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 900;
  line-height: 1.2;
  color: #222222; }

h1, .h1 {
  font-size: calc(1.3875rem + 1.65vw); }
  @media (min-width: 1200px) {
    h1, .h1 {
      font-size: 2.625rem; } }

h2, .h2 {
  font-size: calc(1.35rem + 1.2vw); }
  @media (min-width: 1200px) {
    h2, .h2 {
      font-size: 2.25rem; } }

h3, .h3 {
  font-size: calc(1.3125rem + 0.75vw); }
  @media (min-width: 1200px) {
    h3, .h3 {
      font-size: 1.875rem; } }

h4, .h4 {
  font-size: calc(1.275rem + 0.3vw); }
  @media (min-width: 1200px) {
    h4, .h4 {
      font-size: 1.5rem; } }

h5, .h5 {
  font-size: 1.25rem; }

h6, .h6 {
  font-size: 1rem; }

p {
  margin-top: 0;
  margin-bottom: 1rem; }

abbr[title],
abbr[data-bs-original-title] {
  text-decoration: underline dotted;
  cursor: help;
  text-decoration-skip-ink: none; }

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

ol,
ul {
  padding-left: 2rem; }

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem; }

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0; }

dt {
  font-weight: 700; }

dd {
  margin-bottom: .5rem;
  margin-left: 0; }

blockquote {
  margin: 0 0 1rem; }

b,
strong {
  font-weight: bolder; }

small, .small {
  font-size: 0.875em; }

mark, .mark {
  padding: 0.2em;
  background-color: #fcf8e3; }

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

sub {
  bottom: -.25em; }

sup {
  top: -.5em; }

a {
  color: #FF8139;
  text-decoration: underline; }
  a:hover {
    color: #cc672e; }

a:not([href]):not([class]), a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none; }

pre,
code,
kbd,
samp {
  font-family: var(--bs-font-monospace);
  font-size: 1em;
  direction: ltr /* rtl:ignore */;
  unicode-bidi: bidi-override; }

pre {
  display: block;
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  font-size: 0.875em; }
  pre code {
    font-size: inherit;
    color: inherit;
    word-break: normal; }

code {
  font-size: 0.875em;
  color: #ff5e78;
  word-wrap: break-word; }
  a > code {
    color: inherit; }

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 0.875em;
  color: #fff;
  background-color: #212529;
  border-radius: 0.75rem; }
  kbd kbd {
    padding: 0;
    font-size: 1em;
    font-weight: 700; }

figure {
  margin: 0 0 1rem; }

img,
svg {
  vertical-align: middle; }

table {
  caption-side: bottom;
  border-collapse: collapse; }

caption {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  color: #AEAED5;
  text-align: left; }

th {
  text-align: inherit;
  text-align: -webkit-match-parent; }

thead,
tbody,
tfoot,
tr,
td,
th {
  border-color: inherit;
  border-style: solid;
  border-width: 0; }

label {
  display: inline-block; }

button {
  border-radius: 0; }

button:focus:not(:focus-visible) {
  outline: 0; }

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

button,
select {
  text-transform: none; }

[role="button"] {
  cursor: pointer; }

select {
  word-wrap: normal; }
  select:disabled {
    opacity: 1; }

[list]::-webkit-calendar-picker-indicator {
  display: none; }

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button; }
  button:not(:disabled),
  [type="button"]:not(:disabled),
  [type="reset"]:not(:disabled),
  [type="submit"]:not(:disabled) {
    cursor: pointer; }

::-moz-focus-inner {
  padding: 0;
  border-style: none; }

textarea {
  resize: vertical; }

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0; }

legend {
  float: left;
  width: 100%;
  padding: 0;
  margin-bottom: 0.5rem;
  font-size: calc(1.275rem + 0.3vw);
  line-height: inherit; }
  @media (min-width: 1200px) {
    legend {
      font-size: 1.5rem; } }
  legend + * {
    clear: left; }

::-webkit-datetime-edit-fields-wrapper,
::-webkit-datetime-edit-text,
::-webkit-datetime-edit-minute,
::-webkit-datetime-edit-hour-field,
::-webkit-datetime-edit-day-field,
::-webkit-datetime-edit-month-field,
::-webkit-datetime-edit-year-field {
  padding: 0; }

::-webkit-inner-spin-button {
  height: auto; }

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

/* rtl:raw:
[type="tel"],
[type="url"],
[type="email"],
[type="number"] {
  direction: ltr;
}
*/
::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-color-swatch-wrapper {
  padding: 0; }

::file-selector-button {
  font: inherit; }

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

output {
  display: inline-block; }

iframe {
  border: 0; }

summary {
  display: list-item;
  cursor: pointer; }

progress {
  vertical-align: baseline; }

[hidden] {
  display: none !important; }

.lead {
  font-size: 1.17188rem;
  font-weight: 300; }

.display-1 {
  font-size: calc(1.625rem + 4.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-1 {
      font-size: 5rem; } }

.display-2 {
  font-size: calc(1.575rem + 3.9vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-2 {
      font-size: 4.5rem; } }

.display-3 {
  font-size: calc(1.525rem + 3.3vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-3 {
      font-size: 4rem; } }

.display-4 {
  font-size: calc(1.475rem + 2.7vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-4 {
      font-size: 3.5rem; } }

.display-5 {
  font-size: calc(1.425rem + 2.1vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-5 {
      font-size: 3rem; } }

.display-6 {
  font-size: calc(1.375rem + 1.5vw);
  font-weight: 300;
  line-height: 1.2; }
  @media (min-width: 1200px) {
    .display-6 {
      font-size: 2.5rem; } }

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

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

.list-inline-item {
  display: inline-block; }
  .list-inline-item:not(:last-child) {
    margin-right: 0.5rem; }

.initialism {
  font-size: 0.875em;
  text-transform: uppercase; }

.blockquote {
  margin-bottom: 1rem;
  font-size: 1.17188rem; }
  .blockquote > :last-child {
    margin-bottom: 0; }

.blockquote-footer {
  margin-top: -1rem;
  margin-bottom: 1rem;
  font-size: 0.875em;
  color: #6c757d; }
  .blockquote-footer::before {
    content: "\2014\00A0"; }

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

.img-thumbnail {
  padding: 0.25rem;
  background-color: #ffffff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  max-width: 100%;
  height: auto; }

.figure {
  display: inline-block; }

.figure-img {
  margin-bottom: 0.5rem;
  line-height: 1; }

.figure-caption {
  font-size: 0.875em;
  color: #6c757d; }

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: var(--bs-gutter-x, 15px);
  padding-left: var(--bs-gutter-x, 15px);
  margin-right: auto;
  margin-left: auto; }

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

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

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

@media (min-width: 1170px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1200px; } }

.row {
  --bs-gutter-x: 30px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-.5 * var(--bs-gutter-x));
  margin-left: calc(-.5 * var(--bs-gutter-x)); }
  .row > * {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y); }

.col {
  flex: 1 0 0%; }

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto; }

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%; }

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%; }

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.33333%; }

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%; }

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%; }

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.66667%; }

.col-auto {
  flex: 0 0 auto;
  width: auto; }

.col-1 {
  flex: 0 0 auto;
  width: 8.33333%; }

.col-2 {
  flex: 0 0 auto;
  width: 16.66667%; }

.col-3 {
  flex: 0 0 auto;
  width: 25%; }

.col-4 {
  flex: 0 0 auto;
  width: 33.33333%; }

.col-5 {
  flex: 0 0 auto;
  width: 41.66667%; }

.col-6 {
  flex: 0 0 auto;
  width: 50%; }

.col-7 {
  flex: 0 0 auto;
  width: 58.33333%; }

.col-8 {
  flex: 0 0 auto;
  width: 66.66667%; }

.col-9 {
  flex: 0 0 auto;
  width: 75%; }

.col-10 {
  flex: 0 0 auto;
  width: 83.33333%; }

.col-11 {
  flex: 0 0 auto;
  width: 91.66667%; }

.col-12 {
  flex: 0 0 auto;
  width: 100%; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

.g-0,
.gx-0 {
  --bs-gutter-x: 0; }

.g-0,
.gy-0 {
  --bs-gutter-y: 0; }

.g-1,
.gx-1 {
  --bs-gutter-x: 0.25rem; }

.g-1,
.gy-1 {
  --bs-gutter-y: 0.25rem; }

.g-2,
.gx-2 {
  --bs-gutter-x: 0.5rem; }

.g-2,
.gy-2 {
  --bs-gutter-y: 0.5rem; }

.g-3,
.gx-3 {
  --bs-gutter-x: 1rem; }

.g-3,
.gy-3 {
  --bs-gutter-y: 1rem; }

.g-4,
.gx-4 {
  --bs-gutter-x: 1.5rem; }

.g-4,
.gy-4 {
  --bs-gutter-y: 1.5rem; }

.g-5,
.gx-5 {
  --bs-gutter-x: 3rem; }

.g-5,
.gy-5 {
  --bs-gutter-y: 3rem; }

@media (min-width: 576px) {
  .col-sm {
    flex: 1 0 0%; }
  .row-cols-sm-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-sm-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-sm-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-sm-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-sm-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-sm-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-sm-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-sm-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-sm-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-sm-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-sm-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; }
  .g-sm-0,
  .gx-sm-0 {
    --bs-gutter-x: 0; }
  .g-sm-0,
  .gy-sm-0 {
    --bs-gutter-y: 0; }
  .g-sm-1,
  .gx-sm-1 {
    --bs-gutter-x: 0.25rem; }
  .g-sm-1,
  .gy-sm-1 {
    --bs-gutter-y: 0.25rem; }
  .g-sm-2,
  .gx-sm-2 {
    --bs-gutter-x: 0.5rem; }
  .g-sm-2,
  .gy-sm-2 {
    --bs-gutter-y: 0.5rem; }
  .g-sm-3,
  .gx-sm-3 {
    --bs-gutter-x: 1rem; }
  .g-sm-3,
  .gy-sm-3 {
    --bs-gutter-y: 1rem; }
  .g-sm-4,
  .gx-sm-4 {
    --bs-gutter-x: 1.5rem; }
  .g-sm-4,
  .gy-sm-4 {
    --bs-gutter-y: 1.5rem; }
  .g-sm-5,
  .gx-sm-5 {
    --bs-gutter-x: 3rem; }
  .g-sm-5,
  .gy-sm-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 768px) {
  .col-md {
    flex: 1 0 0%; }
  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-md-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; }
  .g-md-0,
  .gx-md-0 {
    --bs-gutter-x: 0; }
  .g-md-0,
  .gy-md-0 {
    --bs-gutter-y: 0; }
  .g-md-1,
  .gx-md-1 {
    --bs-gutter-x: 0.25rem; }
  .g-md-1,
  .gy-md-1 {
    --bs-gutter-y: 0.25rem; }
  .g-md-2,
  .gx-md-2 {
    --bs-gutter-x: 0.5rem; }
  .g-md-2,
  .gy-md-2 {
    --bs-gutter-y: 0.5rem; }
  .g-md-3,
  .gx-md-3 {
    --bs-gutter-x: 1rem; }
  .g-md-3,
  .gy-md-3 {
    --bs-gutter-y: 1rem; }
  .g-md-4,
  .gx-md-4 {
    --bs-gutter-x: 1.5rem; }
  .g-md-4,
  .gy-md-4 {
    --bs-gutter-y: 1.5rem; }
  .g-md-5,
  .gx-md-5 {
    --bs-gutter-x: 3rem; }
  .g-md-5,
  .gy-md-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%; }
  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-lg-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; }
  .g-lg-0,
  .gx-lg-0 {
    --bs-gutter-x: 0; }
  .g-lg-0,
  .gy-lg-0 {
    --bs-gutter-y: 0; }
  .g-lg-1,
  .gx-lg-1 {
    --bs-gutter-x: 0.25rem; }
  .g-lg-1,
  .gy-lg-1 {
    --bs-gutter-y: 0.25rem; }
  .g-lg-2,
  .gx-lg-2 {
    --bs-gutter-x: 0.5rem; }
  .g-lg-2,
  .gy-lg-2 {
    --bs-gutter-y: 0.5rem; }
  .g-lg-3,
  .gx-lg-3 {
    --bs-gutter-x: 1rem; }
  .g-lg-3,
  .gy-lg-3 {
    --bs-gutter-y: 1rem; }
  .g-lg-4,
  .gx-lg-4 {
    --bs-gutter-x: 1.5rem; }
  .g-lg-4,
  .gy-lg-4 {
    --bs-gutter-y: 1.5rem; }
  .g-lg-5,
  .gx-lg-5 {
    --bs-gutter-x: 3rem; }
  .g-lg-5,
  .gy-lg-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1170px) {
  .col-xl {
    flex: 1 0 0%; }
  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-xl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-xl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xl-0 {
    margin-left: 0; }
  .offset-xl-1 {
    margin-left: 8.33333%; }
  .offset-xl-2 {
    margin-left: 16.66667%; }
  .offset-xl-3 {
    margin-left: 25%; }
  .offset-xl-4 {
    margin-left: 33.33333%; }
  .offset-xl-5 {
    margin-left: 41.66667%; }
  .offset-xl-6 {
    margin-left: 50%; }
  .offset-xl-7 {
    margin-left: 58.33333%; }
  .offset-xl-8 {
    margin-left: 66.66667%; }
  .offset-xl-9 {
    margin-left: 75%; }
  .offset-xl-10 {
    margin-left: 83.33333%; }
  .offset-xl-11 {
    margin-left: 91.66667%; }
  .g-xl-0,
  .gx-xl-0 {
    --bs-gutter-x: 0; }
  .g-xl-0,
  .gy-xl-0 {
    --bs-gutter-y: 0; }
  .g-xl-1,
  .gx-xl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xl-1,
  .gy-xl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xl-2,
  .gx-xl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xl-2,
  .gy-xl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xl-3,
  .gx-xl-3 {
    --bs-gutter-x: 1rem; }
  .g-xl-3,
  .gy-xl-3 {
    --bs-gutter-y: 1rem; }
  .g-xl-4,
  .gx-xl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xl-4,
  .gy-xl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xl-5,
  .gx-xl-5 {
    --bs-gutter-x: 3rem; }
  .g-xl-5,
  .gy-xl-5 {
    --bs-gutter-y: 3rem; } }

@media (min-width: 1440) {
  .col-xxl {
    flex: 1 0 0%; }
  .row-cols-xxl-auto > * {
    flex: 0 0 auto;
    width: auto; }
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%; }
  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%; }
  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.33333%; }
  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%; }
  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%; }
  .row-cols-xxl-6 > * {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto; }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333%; }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66667%; }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%; }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333%; }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66667%; }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%; }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333%; }
  .col-xxl-8 {
    flex: 0 0 auto;
    width: 66.66667%; }
  .col-xxl-9 {
    flex: 0 0 auto;
    width: 75%; }
  .col-xxl-10 {
    flex: 0 0 auto;
    width: 83.33333%; }
  .col-xxl-11 {
    flex: 0 0 auto;
    width: 91.66667%; }
  .col-xxl-12 {
    flex: 0 0 auto;
    width: 100%; }
  .offset-xxl-0 {
    margin-left: 0; }
  .offset-xxl-1 {
    margin-left: 8.33333%; }
  .offset-xxl-2 {
    margin-left: 16.66667%; }
  .offset-xxl-3 {
    margin-left: 25%; }
  .offset-xxl-4 {
    margin-left: 33.33333%; }
  .offset-xxl-5 {
    margin-left: 41.66667%; }
  .offset-xxl-6 {
    margin-left: 50%; }
  .offset-xxl-7 {
    margin-left: 58.33333%; }
  .offset-xxl-8 {
    margin-left: 66.66667%; }
  .offset-xxl-9 {
    margin-left: 75%; }
  .offset-xxl-10 {
    margin-left: 83.33333%; }
  .offset-xxl-11 {
    margin-left: 91.66667%; }
  .g-xxl-0,
  .gx-xxl-0 {
    --bs-gutter-x: 0; }
  .g-xxl-0,
  .gy-xxl-0 {
    --bs-gutter-y: 0; }
  .g-xxl-1,
  .gx-xxl-1 {
    --bs-gutter-x: 0.25rem; }
  .g-xxl-1,
  .gy-xxl-1 {
    --bs-gutter-y: 0.25rem; }
  .g-xxl-2,
  .gx-xxl-2 {
    --bs-gutter-x: 0.5rem; }
  .g-xxl-2,
  .gy-xxl-2 {
    --bs-gutter-y: 0.5rem; }
  .g-xxl-3,
  .gx-xxl-3 {
    --bs-gutter-x: 1rem; }
  .g-xxl-3,
  .gy-xxl-3 {
    --bs-gutter-y: 1rem; }
  .g-xxl-4,
  .gx-xxl-4 {
    --bs-gutter-x: 1.5rem; }
  .g-xxl-4,
  .gy-xxl-4 {
    --bs-gutter-y: 1.5rem; }
  .g-xxl-5,
  .gx-xxl-5 {
    --bs-gutter-x: 3rem; }
  .g-xxl-5,
  .gy-xxl-5 {
    --bs-gutter-y: 3rem; } }

.table {
  --bs-table-bg: transparent;
  --bs-table-accent-bg: transparent;
  --bs-table-striped-color: #666666;
  --bs-table-striped-bg: rgba(0, 0, 0, 0.05);
  --bs-table-active-color: #666666;
  --bs-table-active-bg: rgba(0, 0, 0, 0.1);
  --bs-table-hover-color: #666666;
  --bs-table-hover-bg: rgba(0, 0, 0, 0.075);
  width: 100%;
  margin-bottom: 1rem;
  color: #666666;
  vertical-align: top;
  border-color: #F2F2F2; }
  .table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    background-color: var(--bs-table-bg);
    border-bottom-width: 1px;
    box-shadow: inset 0 0 0 9999px var(--bs-table-accent-bg); }
  .table > tbody {
    vertical-align: inherit; }
  .table > thead {
    vertical-align: bottom; }
  .table > :not(:first-child) {
    border-top: 2px solid currentColor; }

.caption-top {
  caption-side: top; }

.table-sm > :not(caption) > * > * {
  padding: 0.25rem 0.25rem; }

.table-bordered > :not(caption) > * {
  border-width: 1px 0; }
  .table-bordered > :not(caption) > * > * {
    border-width: 0 1px; }

.table-borderless > :not(caption) > * > * {
  border-bottom-width: 0; }

.table-borderless > :not(:first-child) {
  border-top-width: 0; }

.table-striped > tbody > tr:nth-of-type(odd) > * {
  --bs-table-accent-bg: var(--bs-table-striped-bg);
  color: var(--bs-table-striped-color); }

.table-active {
  --bs-table-accent-bg: var(--bs-table-active-bg);
  color: var(--bs-table-active-color); }

.table-hover > tbody > tr:hover > * {
  --bs-table-accent-bg: var(--bs-table-hover-bg);
  color: var(--bs-table-hover-color); }

.table-primary {
  --bs-table-bg: #ffe6d7;
  --bs-table-striped-bg: #f2dbcc;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6cfc2;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ecd5c7;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6cfc2; }

.table-secondary {
  --bs-table-bg: lightgray;
  --bs-table-striped-bg: #c8c8c8;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bebebe;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c3c3c3;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bebebe; }

.table-success {
  --bs-table-bg: #d0f3db;
  --bs-table-striped-bg: #c6e7d0;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #bbdbc5;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #c0e1cb;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #bbdbc5; }

.table-info {
  --bs-table-bg: #ccefff;
  --bs-table-striped-bg: #c2e3f2;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #b8d7e6;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #bdddec;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #b8d7e6; }

.table-warning {
  --bs-table-bg: #fff2d0;
  --bs-table-striped-bg: #f2e6c6;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6dabb;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ece0c0;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6dabb; }

.table-danger {
  --bs-table-bg: #ffcccd;
  --bs-table-striped-bg: #f2c2c3;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e6b8b9;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #ecbdbe;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e6b8b9; }

.table-light {
  --bs-table-bg: #faf8f2;
  --bs-table-striped-bg: #eeece6;
  --bs-table-striped-color: #000;
  --bs-table-active-bg: #e1dfda;
  --bs-table-active-color: #000;
  --bs-table-hover-bg: #e7e5e0;
  --bs-table-hover-color: #000;
  color: #000;
  border-color: #e1dfda; }

.table-dark {
  --bs-table-bg: #222222;
  --bs-table-striped-bg: #2d2d2d;
  --bs-table-striped-color: #fff;
  --bs-table-active-bg: #383838;
  --bs-table-active-color: #fff;
  --bs-table-hover-bg: #333333;
  --bs-table-hover-color: #fff;
  color: #fff;
  border-color: #383838; }

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch; }

@media (max-width: 575.98px) {
  .table-responsive-sm {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 767.98px) {
  .table-responsive-md {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 991.98px) {
  .table-responsive-lg {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 1169.98px) {
  .table-responsive-xl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

@media (max-width: 1439.98) {
  .table-responsive-xxl {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch; } }

.form-label {
  margin-bottom: 0.5rem; }

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.6; }

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.17188rem; }

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.82031rem; }

.form-text {
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #AEAED5; }

.form-control, .wp-block-categories-dropdown select,
.wp-block-archives-dropdown select, .woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond textarea,
.woocommerce #review_form #respond input[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce .woocommerce-checkout.checkout form .form-row textarea,
.woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"],
.woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"],
.woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"],
.woocommerce .woocommerce-checkout.checkout form .form-row select,
.woocommerce .woocommerce-checkout.checkout form .form-row input.input-text,
.woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce-EditAccountForm.edit-account input[type="text"],
.woocommerce-EditAccountForm.edit-account input[type="email"],
.woocommerce-EditAccountForm.edit-account input[type="password"],
.login input[type="text"], .login input[type="password"],
.woocommerce-ResetPassword.lost_reset_password input[type="text"],
.checkout.woocommerce-checkout input[type="text"],
.checkout.woocommerce-checkout input[type="email"],
.checkout.woocommerce-checkout input[type="tel"],
.checkout.woocommerce-checkout .select2-choice,
.checkout.woocommerce-checkout textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row .select2-selection,
.woocommerce form .form-row .select2-choice {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  background-color: #ffffff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  appearance: none;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .form-control, .wp-block-categories-dropdown select,
    .wp-block-archives-dropdown select, .woocommerce #review_form #respond input[type="text"],
    .woocommerce #review_form #respond textarea,
    .woocommerce #review_form #respond input[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce .woocommerce-checkout.checkout form .form-row textarea,
    .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"],
    .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"],
    .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"],
    .woocommerce .woocommerce-checkout.checkout form .form-row select,
    .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text,
    .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce-EditAccountForm.edit-account input[type="text"],
    .woocommerce-EditAccountForm.edit-account input[type="email"],
    .woocommerce-EditAccountForm.edit-account input[type="password"],
    .login input[type="text"], .login input[type="password"],
    .woocommerce-ResetPassword.lost_reset_password input[type="text"],
    .checkout.woocommerce-checkout input[type="text"],
    .checkout.woocommerce-checkout input[type="email"],
    .checkout.woocommerce-checkout input[type="tel"],
    .checkout.woocommerce-checkout .select2-choice,
    .checkout.woocommerce-checkout textarea,
    .woocommerce form .form-row input.input-text,
    .woocommerce form .form-row .select2-selection,
    .woocommerce form .form-row .select2-choice {
      transition: none; } }
  .form-control[type="file"], .wp-block-categories-dropdown select[type="file"],
  .wp-block-archives-dropdown select[type="file"], .woocommerce #review_form #respond input[type="file"][type="text"],
  .woocommerce #review_form #respond textarea[type="file"],
  .woocommerce #review_form #respond input[type="file"][type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text[type="file"], .woocommerce-cart-form .table.shop_table tr .quantity input[type="file"], .woocommerce .woocommerce-checkout.checkout form .form-row textarea[type="file"],
  .woocommerce .woocommerce-checkout.checkout form .form-row select[type="file"],
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="file"], .woocommerce-EditAccountForm.edit-account input[type="file"][type="text"],
  .woocommerce-EditAccountForm.edit-account input[type="file"][type="email"],
  .woocommerce-EditAccountForm.edit-account input[type="file"][type="password"],
  .login input[type="file"][type="text"], .login input[type="file"][type="password"],
  .woocommerce-ResetPassword.lost_reset_password input[type="file"][type="text"],
  .checkout.woocommerce-checkout input[type="file"][type="text"],
  .checkout.woocommerce-checkout input[type="file"][type="email"],
  .checkout.woocommerce-checkout input[type="file"][type="tel"],
  .checkout.woocommerce-checkout .select2-choice[type="file"],
  .checkout.woocommerce-checkout textarea[type="file"],
  .woocommerce form .form-row input.input-text[type="file"],
  .woocommerce form .form-row .select2-selection[type="file"],
  .woocommerce form .form-row .select2-choice[type="file"] {
    overflow: hidden; }
    .form-control[type="file"]:not(:disabled):not([readonly]), .wp-block-categories-dropdown select[type="file"]:not(:disabled):not([readonly]),
    .wp-block-archives-dropdown select[type="file"]:not(:disabled):not([readonly]), .woocommerce #review_form #respond input[type="file"]:not(:disabled):not([readonly])[type="text"],
    .woocommerce #review_form #respond textarea[type="file"]:not(:disabled):not([readonly]),
    .woocommerce #review_form #respond input[type="file"]:not(:disabled):not([readonly])[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text[type="file"]:not(:disabled):not([readonly]), .woocommerce-cart-form .table.shop_table tr .quantity input[type="file"]:not(:disabled):not([readonly]),
    .woocommerce .woocommerce-checkout.checkout form .form-row select[type="file"]:not(:disabled):not([readonly]),
    .woocommerce .woocommerce-checkout.checkout form .form-row input[type="file"]:not(:disabled):not([readonly]), .woocommerce-EditAccountForm.edit-account input[type="file"]:not(:disabled):not([readonly])[type="text"],
    .woocommerce-EditAccountForm.edit-account input[type="file"]:not(:disabled):not([readonly])[type="email"],
    .woocommerce-EditAccountForm.edit-account input[type="file"]:not(:disabled):not([readonly])[type="password"],
    .login input[type="file"]:not(:disabled):not([readonly])[type="text"], .login input[type="file"]:not(:disabled):not([readonly])[type="password"],
    .woocommerce-ResetPassword.lost_reset_password input[type="file"]:not(:disabled):not([readonly])[type="text"],
    .checkout.woocommerce-checkout input[type="file"]:not(:disabled):not([readonly])[type="text"],
    .checkout.woocommerce-checkout input[type="file"]:not(:disabled):not([readonly])[type="email"],
    .checkout.woocommerce-checkout input[type="file"]:not(:disabled):not([readonly])[type="tel"],
    .checkout.woocommerce-checkout .select2-choice[type="file"]:not(:disabled):not([readonly]),
    .checkout.woocommerce-checkout textarea[type="file"]:not(:disabled):not([readonly]),
    .woocommerce form .form-row input.input-text[type="file"]:not(:disabled):not([readonly]),
    .woocommerce form .form-row .select2-selection[type="file"]:not(:disabled):not([readonly]),
    .woocommerce form .form-row .select2-choice[type="file"]:not(:disabled):not([readonly]) {
      cursor: pointer; }
  .form-control:focus, .wp-block-categories-dropdown select:focus,
  .wp-block-archives-dropdown select:focus, .woocommerce #review_form #respond input:focus[type="text"],
  .woocommerce #review_form #respond textarea:focus,
  .woocommerce #review_form #respond input:focus[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:focus, .woocommerce-cart-form .table.shop_table tr .quantity input:focus, .woocommerce .woocommerce-checkout.checkout form .form-row textarea:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row select:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row input:focus, .woocommerce-EditAccountForm.edit-account input:focus[type="text"],
  .woocommerce-EditAccountForm.edit-account input:focus[type="email"],
  .woocommerce-EditAccountForm.edit-account input:focus[type="password"],
  .login input:focus[type="text"], .login input:focus[type="password"],
  .woocommerce-ResetPassword.lost_reset_password input:focus[type="text"],
  .checkout.woocommerce-checkout input:focus[type="text"],
  .checkout.woocommerce-checkout input:focus[type="email"],
  .checkout.woocommerce-checkout input:focus[type="tel"],
  .checkout.woocommerce-checkout .select2-choice:focus,
  .checkout.woocommerce-checkout textarea:focus,
  .woocommerce form .form-row input.input-text:focus,
  .woocommerce form .form-row .select2-selection:focus,
  .woocommerce form .form-row .select2-choice:focus {
    color: #666666;
    background-color: #ffffff;
    border-color: #ffc09c;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(255, 129, 57, 0.25); }
  .form-control::-webkit-date-and-time-value, .wp-block-categories-dropdown select::-webkit-date-and-time-value,
  .wp-block-archives-dropdown select::-webkit-date-and-time-value, .woocommerce #review_form #respond input[type="text"]::-webkit-date-and-time-value,
  .woocommerce #review_form #respond textarea::-webkit-date-and-time-value,
  .woocommerce #review_form #respond input[type="email"]::-webkit-date-and-time-value, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::-webkit-date-and-time-value, .woocommerce-cart-form .table.shop_table tr .quantity input::-webkit-date-and-time-value, .woocommerce .woocommerce-checkout.checkout form .form-row textarea::-webkit-date-and-time-value,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"]::-webkit-date-and-time-value,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"]::-webkit-date-and-time-value,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"]::-webkit-date-and-time-value,
  .woocommerce .woocommerce-checkout.checkout form .form-row select::-webkit-date-and-time-value,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text::-webkit-date-and-time-value,
  .woocommerce .woocommerce-checkout.checkout form .form-row input::-webkit-date-and-time-value, .woocommerce-EditAccountForm.edit-account input[type="text"]::-webkit-date-and-time-value,
  .woocommerce-EditAccountForm.edit-account input[type="email"]::-webkit-date-and-time-value,
  .woocommerce-EditAccountForm.edit-account input[type="password"]::-webkit-date-and-time-value,
  .login input[type="text"]::-webkit-date-and-time-value, .login input[type="password"]::-webkit-date-and-time-value,
  .woocommerce-ResetPassword.lost_reset_password input[type="text"]::-webkit-date-and-time-value,
  .checkout.woocommerce-checkout input[type="text"]::-webkit-date-and-time-value,
  .checkout.woocommerce-checkout input[type="email"]::-webkit-date-and-time-value,
  .checkout.woocommerce-checkout input[type="tel"]::-webkit-date-and-time-value,
  .checkout.woocommerce-checkout .select2-choice::-webkit-date-and-time-value,
  .checkout.woocommerce-checkout textarea::-webkit-date-and-time-value,
  .woocommerce form .form-row input.input-text::-webkit-date-and-time-value,
  .woocommerce form .form-row .select2-selection::-webkit-date-and-time-value,
  .woocommerce form .form-row .select2-choice::-webkit-date-and-time-value {
    height: 1.6em; }
  .form-control::placeholder, .wp-block-categories-dropdown select::placeholder,
  .wp-block-archives-dropdown select::placeholder, .woocommerce #review_form #respond input[type="text"]::placeholder,
  .woocommerce #review_form #respond textarea::placeholder,
  .woocommerce #review_form #respond input[type="email"]::placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::placeholder, .woocommerce-cart-form .table.shop_table tr .quantity input::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row textarea::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"]::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"]::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"]::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row select::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input::placeholder, .woocommerce-EditAccountForm.edit-account input[type="text"]::placeholder,
  .woocommerce-EditAccountForm.edit-account input[type="email"]::placeholder,
  .woocommerce-EditAccountForm.edit-account input[type="password"]::placeholder,
  .login input[type="text"]::placeholder, .login input[type="password"]::placeholder,
  .woocommerce-ResetPassword.lost_reset_password input[type="text"]::placeholder,
  .checkout.woocommerce-checkout input[type="text"]::placeholder,
  .checkout.woocommerce-checkout input[type="email"]::placeholder,
  .checkout.woocommerce-checkout input[type="tel"]::placeholder,
  .checkout.woocommerce-checkout .select2-choice::placeholder,
  .checkout.woocommerce-checkout textarea::placeholder,
  .woocommerce form .form-row input.input-text::placeholder,
  .woocommerce form .form-row .select2-selection::placeholder,
  .woocommerce form .form-row .select2-choice::placeholder {
    color: #6c757d;
    opacity: 1; }
  .form-control:disabled, .wp-block-categories-dropdown select:disabled,
  .wp-block-archives-dropdown select:disabled, .woocommerce #review_form #respond input:disabled[type="text"],
  .woocommerce #review_form #respond textarea:disabled,
  .woocommerce #review_form #respond input:disabled[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:disabled, .woocommerce-cart-form .table.shop_table tr .quantity input:disabled, .woocommerce .woocommerce-checkout.checkout form .form-row textarea:disabled,
  .woocommerce .woocommerce-checkout.checkout form .form-row select:disabled,
  .woocommerce .woocommerce-checkout.checkout form .form-row input:disabled, .woocommerce-EditAccountForm.edit-account input:disabled[type="text"],
  .woocommerce-EditAccountForm.edit-account input:disabled[type="email"],
  .woocommerce-EditAccountForm.edit-account input:disabled[type="password"],
  .login input:disabled[type="text"], .login input:disabled[type="password"],
  .woocommerce-ResetPassword.lost_reset_password input:disabled[type="text"],
  .checkout.woocommerce-checkout input:disabled[type="text"],
  .checkout.woocommerce-checkout input:disabled[type="email"],
  .checkout.woocommerce-checkout input:disabled[type="tel"],
  .checkout.woocommerce-checkout .select2-choice:disabled,
  .checkout.woocommerce-checkout textarea:disabled,
  .woocommerce form .form-row input.input-text:disabled,
  .woocommerce form .form-row .select2-selection:disabled,
  .woocommerce form .form-row .select2-choice:disabled, .form-control[readonly], .wp-block-categories-dropdown select[readonly],
  .wp-block-archives-dropdown select[readonly], .woocommerce #review_form #respond input[readonly][type="text"],
  .woocommerce #review_form #respond textarea[readonly],
  .woocommerce #review_form #respond input[readonly][type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text[readonly], .woocommerce-cart-form .table.shop_table tr .quantity input[readonly], .woocommerce .woocommerce-checkout.checkout form .form-row textarea[readonly],
  .woocommerce .woocommerce-checkout.checkout form .form-row select[readonly],
  .woocommerce .woocommerce-checkout.checkout form .form-row input[readonly], .woocommerce-EditAccountForm.edit-account input[readonly][type="text"],
  .woocommerce-EditAccountForm.edit-account input[readonly][type="email"],
  .woocommerce-EditAccountForm.edit-account input[readonly][type="password"],
  .login input[readonly][type="text"], .login input[readonly][type="password"],
  .woocommerce-ResetPassword.lost_reset_password input[readonly][type="text"],
  .checkout.woocommerce-checkout input[readonly][type="text"],
  .checkout.woocommerce-checkout input[readonly][type="email"],
  .checkout.woocommerce-checkout input[readonly][type="tel"],
  .checkout.woocommerce-checkout .select2-choice[readonly],
  .checkout.woocommerce-checkout textarea[readonly],
  .woocommerce form .form-row input.input-text[readonly],
  .woocommerce form .form-row .select2-selection[readonly],
  .woocommerce form .form-row .select2-choice[readonly] {
    background-color: #e9ecef;
    opacity: 1; }
  .form-control::file-selector-button, .wp-block-categories-dropdown select::file-selector-button,
  .wp-block-archives-dropdown select::file-selector-button, .woocommerce #review_form #respond input[type="text"]::file-selector-button,
  .woocommerce #review_form #respond textarea::file-selector-button,
  .woocommerce #review_form #respond input[type="email"]::file-selector-button, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::file-selector-button, .woocommerce-cart-form .table.shop_table tr .quantity input::file-selector-button, .woocommerce .woocommerce-checkout.checkout form .form-row textarea::file-selector-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"]::file-selector-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"]::file-selector-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"]::file-selector-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row select::file-selector-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text::file-selector-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input::file-selector-button, .woocommerce-EditAccountForm.edit-account input[type="text"]::file-selector-button,
  .woocommerce-EditAccountForm.edit-account input[type="email"]::file-selector-button,
  .woocommerce-EditAccountForm.edit-account input[type="password"]::file-selector-button,
  .login input[type="text"]::file-selector-button, .login input[type="password"]::file-selector-button,
  .woocommerce-ResetPassword.lost_reset_password input[type="text"]::file-selector-button,
  .checkout.woocommerce-checkout input[type="text"]::file-selector-button,
  .checkout.woocommerce-checkout input[type="email"]::file-selector-button,
  .checkout.woocommerce-checkout input[type="tel"]::file-selector-button,
  .checkout.woocommerce-checkout .select2-choice::file-selector-button,
  .checkout.woocommerce-checkout textarea::file-selector-button,
  .woocommerce form .form-row input.input-text::file-selector-button,
  .woocommerce form .form-row .select2-selection::file-selector-button,
  .woocommerce form .form-row .select2-choice::file-selector-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #666666;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-control::file-selector-button, .wp-block-categories-dropdown select::file-selector-button,
      .wp-block-archives-dropdown select::file-selector-button, .woocommerce #review_form #respond input[type="text"]::file-selector-button,
      .woocommerce #review_form #respond textarea::file-selector-button,
      .woocommerce #review_form #respond input[type="email"]::file-selector-button, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::file-selector-button, .woocommerce-cart-form .table.shop_table tr .quantity input::file-selector-button, .woocommerce .woocommerce-checkout.checkout form .form-row textarea::file-selector-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"]::file-selector-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"]::file-selector-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"]::file-selector-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row select::file-selector-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text::file-selector-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input::file-selector-button, .woocommerce-EditAccountForm.edit-account input[type="text"]::file-selector-button,
      .woocommerce-EditAccountForm.edit-account input[type="email"]::file-selector-button,
      .woocommerce-EditAccountForm.edit-account input[type="password"]::file-selector-button,
      .login input[type="text"]::file-selector-button, .login input[type="password"]::file-selector-button,
      .woocommerce-ResetPassword.lost_reset_password input[type="text"]::file-selector-button,
      .checkout.woocommerce-checkout input[type="text"]::file-selector-button,
      .checkout.woocommerce-checkout input[type="email"]::file-selector-button,
      .checkout.woocommerce-checkout input[type="tel"]::file-selector-button,
      .checkout.woocommerce-checkout .select2-choice::file-selector-button,
      .checkout.woocommerce-checkout textarea::file-selector-button,
      .woocommerce form .form-row input.input-text::file-selector-button,
      .woocommerce form .form-row .select2-selection::file-selector-button,
      .woocommerce form .form-row .select2-choice::file-selector-button {
        transition: none; } }
  .form-control:hover:not(:disabled):not([readonly])::file-selector-button, .wp-block-categories-dropdown select:hover:not(:disabled):not([readonly])::file-selector-button,
  .wp-block-archives-dropdown select:hover:not(:disabled):not([readonly])::file-selector-button, .woocommerce #review_form #respond input[type="text"]:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce #review_form #respond textarea:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce #review_form #respond input[type="email"]:hover:not(:disabled):not([readonly])::file-selector-button, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:hover:not(:disabled):not([readonly])::file-selector-button, .woocommerce-cart-form .table.shop_table tr .quantity input:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row select:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input:hover:not(:disabled):not([readonly])::file-selector-button, .woocommerce-EditAccountForm.edit-account input[type="text"]:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce-EditAccountForm.edit-account input[type="email"]:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce-EditAccountForm.edit-account input[type="password"]:hover:not(:disabled):not([readonly])::file-selector-button,
  .login input[type="text"]:hover:not(:disabled):not([readonly])::file-selector-button, .login input[type="password"]:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce-ResetPassword.lost_reset_password input[type="text"]:hover:not(:disabled):not([readonly])::file-selector-button,
  .checkout.woocommerce-checkout input[type="text"]:hover:not(:disabled):not([readonly])::file-selector-button,
  .checkout.woocommerce-checkout input[type="email"]:hover:not(:disabled):not([readonly])::file-selector-button,
  .checkout.woocommerce-checkout input[type="tel"]:hover:not(:disabled):not([readonly])::file-selector-button,
  .checkout.woocommerce-checkout .select2-choice:hover:not(:disabled):not([readonly])::file-selector-button,
  .checkout.woocommerce-checkout textarea:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce form .form-row input.input-text:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce form .form-row .select2-selection:hover:not(:disabled):not([readonly])::file-selector-button,
  .woocommerce form .form-row .select2-choice:hover:not(:disabled):not([readonly])::file-selector-button {
    background-color: #dde0e3; }
  .form-control::-webkit-file-upload-button, .wp-block-categories-dropdown select::-webkit-file-upload-button,
  .wp-block-archives-dropdown select::-webkit-file-upload-button, .woocommerce #review_form #respond input[type="text"]::-webkit-file-upload-button,
  .woocommerce #review_form #respond textarea::-webkit-file-upload-button,
  .woocommerce #review_form #respond input[type="email"]::-webkit-file-upload-button, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::-webkit-file-upload-button, .woocommerce-cart-form .table.shop_table tr .quantity input::-webkit-file-upload-button, .woocommerce .woocommerce-checkout.checkout form .form-row textarea::-webkit-file-upload-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"]::-webkit-file-upload-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"]::-webkit-file-upload-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"]::-webkit-file-upload-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row select::-webkit-file-upload-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text::-webkit-file-upload-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input::-webkit-file-upload-button, .woocommerce-EditAccountForm.edit-account input[type="text"]::-webkit-file-upload-button,
  .woocommerce-EditAccountForm.edit-account input[type="email"]::-webkit-file-upload-button,
  .woocommerce-EditAccountForm.edit-account input[type="password"]::-webkit-file-upload-button,
  .login input[type="text"]::-webkit-file-upload-button, .login input[type="password"]::-webkit-file-upload-button,
  .woocommerce-ResetPassword.lost_reset_password input[type="text"]::-webkit-file-upload-button,
  .checkout.woocommerce-checkout input[type="text"]::-webkit-file-upload-button,
  .checkout.woocommerce-checkout input[type="email"]::-webkit-file-upload-button,
  .checkout.woocommerce-checkout input[type="tel"]::-webkit-file-upload-button,
  .checkout.woocommerce-checkout .select2-choice::-webkit-file-upload-button,
  .checkout.woocommerce-checkout textarea::-webkit-file-upload-button,
  .woocommerce form .form-row input.input-text::-webkit-file-upload-button,
  .woocommerce form .form-row .select2-selection::-webkit-file-upload-button,
  .woocommerce form .form-row .select2-choice::-webkit-file-upload-button {
    padding: 0.375rem 0.75rem;
    margin: -0.375rem -0.75rem;
    margin-inline-end: 0.75rem;
    color: #666666;
    background-color: #e9ecef;
    pointer-events: none;
    border-color: inherit;
    border-style: solid;
    border-width: 0;
    border-inline-end-width: 1px;
    border-radius: 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-control::-webkit-file-upload-button, .wp-block-categories-dropdown select::-webkit-file-upload-button,
      .wp-block-archives-dropdown select::-webkit-file-upload-button, .woocommerce #review_form #respond input[type="text"]::-webkit-file-upload-button,
      .woocommerce #review_form #respond textarea::-webkit-file-upload-button,
      .woocommerce #review_form #respond input[type="email"]::-webkit-file-upload-button, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::-webkit-file-upload-button, .woocommerce-cart-form .table.shop_table tr .quantity input::-webkit-file-upload-button, .woocommerce .woocommerce-checkout.checkout form .form-row textarea::-webkit-file-upload-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"]::-webkit-file-upload-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"]::-webkit-file-upload-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"]::-webkit-file-upload-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row select::-webkit-file-upload-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text::-webkit-file-upload-button,
      .woocommerce .woocommerce-checkout.checkout form .form-row input::-webkit-file-upload-button, .woocommerce-EditAccountForm.edit-account input[type="text"]::-webkit-file-upload-button,
      .woocommerce-EditAccountForm.edit-account input[type="email"]::-webkit-file-upload-button,
      .woocommerce-EditAccountForm.edit-account input[type="password"]::-webkit-file-upload-button,
      .login input[type="text"]::-webkit-file-upload-button, .login input[type="password"]::-webkit-file-upload-button,
      .woocommerce-ResetPassword.lost_reset_password input[type="text"]::-webkit-file-upload-button,
      .checkout.woocommerce-checkout input[type="text"]::-webkit-file-upload-button,
      .checkout.woocommerce-checkout input[type="email"]::-webkit-file-upload-button,
      .checkout.woocommerce-checkout input[type="tel"]::-webkit-file-upload-button,
      .checkout.woocommerce-checkout .select2-choice::-webkit-file-upload-button,
      .checkout.woocommerce-checkout textarea::-webkit-file-upload-button,
      .woocommerce form .form-row input.input-text::-webkit-file-upload-button,
      .woocommerce form .form-row .select2-selection::-webkit-file-upload-button,
      .woocommerce form .form-row .select2-choice::-webkit-file-upload-button {
        transition: none; } }
  .form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .wp-block-categories-dropdown select:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .wp-block-archives-dropdown select:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .woocommerce #review_form #respond input[type="text"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce #review_form #respond textarea:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce #review_form #respond input[type="email"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .woocommerce-cart-form .table.shop_table tr .quantity input:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row select:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce .woocommerce-checkout.checkout form .form-row input:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .woocommerce-EditAccountForm.edit-account input[type="text"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce-EditAccountForm.edit-account input[type="email"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce-EditAccountForm.edit-account input[type="password"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .login input[type="text"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button, .login input[type="password"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce-ResetPassword.lost_reset_password input[type="text"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .checkout.woocommerce-checkout input[type="text"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .checkout.woocommerce-checkout input[type="email"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .checkout.woocommerce-checkout input[type="tel"]:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .checkout.woocommerce-checkout .select2-choice:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .checkout.woocommerce-checkout textarea:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce form .form-row input.input-text:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce form .form-row .select2-selection:hover:not(:disabled):not([readonly])::-webkit-file-upload-button,
  .woocommerce form .form-row .select2-choice:hover:not(:disabled):not([readonly])::-webkit-file-upload-button {
    background-color: #dde0e3; }

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  line-height: 1.6;
  color: #666666;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }
  .form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
    padding-right: 0;
    padding-left: 0; }

.form-control-sm {
  min-height: calc(1.6em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.82031rem;
  border-radius: 0.75rem; }
  .form-control-sm::file-selector-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem; }
  .form-control-sm::-webkit-file-upload-button {
    padding: 0.25rem 0.5rem;
    margin: -0.25rem -0.5rem;
    margin-inline-end: 0.5rem; }

.form-control-lg {
  min-height: calc(1.6em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 1.17188rem;
  border-radius: 1rem; }
  .form-control-lg::file-selector-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem; }
  .form-control-lg::-webkit-file-upload-button {
    padding: 0.5rem 1rem;
    margin: -0.5rem -1rem;
    margin-inline-end: 1rem; }

textarea.form-control,
.woocommerce #review_form #respond textarea, .woocommerce-cart-form .table.shop_table tr td.actions .coupon textarea.input-text, .woocommerce .woocommerce-checkout.checkout form .form-row textarea,
.checkout.woocommerce-checkout textarea.select2-choice,
.checkout.woocommerce-checkout textarea,
.woocommerce form .form-row textarea.select2-selection,
.woocommerce form .form-row textarea.select2-choice {
  min-height: calc(1.6em + 0.75rem + 2px); }

textarea.form-control-sm {
  min-height: calc(1.6em + 0.5rem + 2px); }

textarea.form-control-lg {
  min-height: calc(1.6em + 1rem + 2px); }

.form-control-color {
  width: 3rem;
  height: auto;
  padding: 0.375rem; }
  .form-control-color:not(:disabled):not([readonly]) {
    cursor: pointer; }
  .form-control-color::-moz-color-swatch {
    height: 1.6em;
    border-radius: 0.25rem; }
  .form-control-color::-webkit-color-swatch {
    height: 1.6em;
    border-radius: 0.25rem; }

.form-select {
  display: block;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  background-color: #ffffff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none; }
  @media (prefers-reduced-motion: reduce) {
    .form-select {
      transition: none; } }
  .form-select:focus {
    border-color: #ffc09c;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(255, 129, 57, 0.25); }
  .form-select[multiple], .form-select[size]:not([size="1"]) {
    padding-right: 0.75rem;
    background-image: none; }
  .form-select:disabled {
    background-color: #e9ecef; }
  .form-select:-moz-focusring {
    color: transparent;
    text-shadow: 0 0 0 #666666; }

.form-select-sm {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.82031rem;
  border-radius: 0.75rem; }

.form-select-lg {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 1.17188rem;
  border-radius: 1rem; }

.form-check {
  display: block;
  min-height: 1.5rem;
  padding-left: 1.5em;
  margin-bottom: 0.125rem; }
  .form-check .form-check-input {
    float: left;
    margin-left: -1.5em; }

.form-check-input {
  width: 1em;
  height: 1em;
  margin-top: 0.3em;
  vertical-align: top;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  border: 1px solid rgba(0, 0, 0, 0.25);
  appearance: none;
  color-adjust: exact; }
  .form-check-input[type="checkbox"] {
    border-radius: 0.25em; }
  .form-check-input[type="radio"] {
    border-radius: 50%; }
  .form-check-input:active {
    filter: brightness(90%); }
  .form-check-input:focus {
    border-color: #ffc09c;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(255, 129, 57, 0.25); }
  .form-check-input:checked {
    background-color: #FF8139;
    border-color: #FF8139; }
    .form-check-input:checked[type="checkbox"] {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e"); }
    .form-check-input:checked[type="radio"] {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e"); }
  .form-check-input[type="checkbox"]:indeterminate {
    background-color: #FF8139;
    border-color: #FF8139;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e"); }
  .form-check-input:disabled {
    pointer-events: none;
    filter: none;
    opacity: 0.5; }
  .form-check-input[disabled] ~ .form-check-label, .form-check-input:disabled ~ .form-check-label {
    opacity: 0.5; }

.form-switch {
  padding-left: 2.5em; }
  .form-switch .form-check-input {
    width: 2em;
    margin-left: -2.5em;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");
    background-position: left center;
    border-radius: 2em;
    transition: background-position 0.15s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-switch .form-check-input {
        transition: none; } }
    .form-switch .form-check-input:focus {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23ffc09c'/%3e%3c/svg%3e"); }
    .form-switch .form-check-input:checked {
      background-position: right center;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e"); }

.form-check-inline {
  display: inline-block;
  margin-right: 1rem; }

.btn-check {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none; }
  .btn-check[disabled] + .btn, .btn-check[disabled] + .wp-block-button__link, .appointment-page-1 .wizard-form .btn-check[disabled] + .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-check[disabled] + .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-check[disabled] + a,
  .woocommerce.widget_shopping_cart .buttons .btn-check[disabled] + a, .woocommerce #review_form #respond .form-submit .btn-check[disabled] + input, .woocommerce-cart-form .table.shop_table tr .btn-check[disabled] + .button, .woocommerce-cart .wc-proceed-to-checkout .btn-check[disabled] + a.checkout-button, .woocommerce #respond .btn-check[disabled] + input#submit,
  .woocommerce .btn-check[disabled] + a.button,
  .woocommerce .btn-check[disabled] + button.button,
  .woocommerce .btn-check[disabled] + input.button,
  .woocommerce .btn-check[disabled] + #place_order, .btn-check:disabled + .btn, .btn-check:disabled + .wp-block-button__link, .appointment-page-1 .wizard-form .btn-check:disabled + .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-check:disabled + .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-check:disabled + a,
  .woocommerce.widget_shopping_cart .buttons .btn-check:disabled + a, .woocommerce #review_form #respond .form-submit .btn-check:disabled + input, .woocommerce-cart-form .table.shop_table tr .btn-check:disabled + .button, .woocommerce-cart .wc-proceed-to-checkout .btn-check:disabled + a.checkout-button, .woocommerce #respond .btn-check:disabled + input#submit,
  .woocommerce .btn-check:disabled + a.button,
  .woocommerce .btn-check:disabled + button.button,
  .woocommerce .btn-check:disabled + input.button,
  .woocommerce .btn-check:disabled + #place_order {
    pointer-events: none;
    filter: none;
    opacity: 0.65; }

.form-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  appearance: none; }
  .form-range:focus {
    outline: 0; }
    .form-range:focus::-webkit-slider-thumb {
      box-shadow: 0 0 0 1px #ffffff, 0 0 0 0rem rgba(255, 129, 57, 0.25); }
    .form-range:focus::-moz-range-thumb {
      box-shadow: 0 0 0 1px #ffffff, 0 0 0 0rem rgba(255, 129, 57, 0.25); }
  .form-range::-moz-focus-outer {
    border: 0; }
  .form-range::-webkit-slider-thumb {
    width: 1rem;
    height: 1rem;
    margin-top: -0.25rem;
    background-color: #FF8139;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .form-range::-webkit-slider-thumb {
        transition: none; } }
    .form-range::-webkit-slider-thumb:active {
      background-color: #ffd9c4; }
  .form-range::-webkit-slider-runnable-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem; }
  .form-range::-moz-range-thumb {
    width: 1rem;
    height: 1rem;
    background-color: #FF8139;
    border: 0;
    border-radius: 1rem;
    transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    appearance: none; }
    @media (prefers-reduced-motion: reduce) {
      .form-range::-moz-range-thumb {
        transition: none; } }
    .form-range::-moz-range-thumb:active {
      background-color: #ffd9c4; }
  .form-range::-moz-range-track {
    width: 100%;
    height: 0.5rem;
    color: transparent;
    cursor: pointer;
    background-color: #dee2e6;
    border-color: transparent;
    border-radius: 1rem; }
  .form-range:disabled {
    pointer-events: none; }
    .form-range:disabled::-webkit-slider-thumb {
      background-color: #adb5bd; }
    .form-range:disabled::-moz-range-thumb {
      background-color: #adb5bd; }

.form-floating {
  position: relative; }
  .form-floating > .form-control, .wp-block-categories-dropdown .form-floating > select,
  .wp-block-archives-dropdown .form-floating > select, .woocommerce #review_form #respond .form-floating > input[type="text"],
  .woocommerce #review_form #respond .form-floating > textarea,
  .woocommerce #review_form #respond .form-floating > input[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-floating > .input-text, .woocommerce-cart-form .table.shop_table tr .quantity .form-floating > input, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > textarea,
  .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > select,
  .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > input, .woocommerce-EditAccountForm.edit-account .form-floating > input[type="text"],
  .woocommerce-EditAccountForm.edit-account .form-floating > input[type="email"],
  .woocommerce-EditAccountForm.edit-account .form-floating > input[type="password"],
  .login .form-floating > input[type="text"], .login .form-floating > input[type="password"],
  .woocommerce-ResetPassword.lost_reset_password .form-floating > input[type="text"],
  .checkout.woocommerce-checkout .form-floating > input[type="text"],
  .checkout.woocommerce-checkout .form-floating > input[type="email"],
  .checkout.woocommerce-checkout .form-floating > input[type="tel"],
  .checkout.woocommerce-checkout .form-floating > .select2-choice,
  .checkout.woocommerce-checkout .form-floating > textarea,
  .woocommerce form .form-row .form-floating > input.input-text,
  .woocommerce form .form-row .form-floating > .select2-selection,
  .woocommerce form .form-row .form-floating > .select2-choice,
  .form-floating > .form-select {
    height: calc(3.5rem + 2px);
    line-height: 1.25; }
  .form-floating > label {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    padding: 1rem 0.75rem;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
    transition: opacity 0.1s ease-in-out, transform 0.1s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .form-floating > label {
        transition: none; } }
  .form-floating > .form-control, .wp-block-categories-dropdown .form-floating > select,
  .wp-block-archives-dropdown .form-floating > select, .woocommerce #review_form #respond .form-floating > input[type="text"],
  .woocommerce #review_form #respond .form-floating > textarea,
  .woocommerce #review_form #respond .form-floating > input[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-floating > .input-text, .woocommerce-cart-form .table.shop_table tr .quantity .form-floating > input, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > textarea,
  .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > select,
  .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > input, .woocommerce-EditAccountForm.edit-account .form-floating > input[type="text"],
  .woocommerce-EditAccountForm.edit-account .form-floating > input[type="email"],
  .woocommerce-EditAccountForm.edit-account .form-floating > input[type="password"],
  .login .form-floating > input[type="text"], .login .form-floating > input[type="password"],
  .woocommerce-ResetPassword.lost_reset_password .form-floating > input[type="text"],
  .checkout.woocommerce-checkout .form-floating > input[type="text"],
  .checkout.woocommerce-checkout .form-floating > input[type="email"],
  .checkout.woocommerce-checkout .form-floating > input[type="tel"],
  .checkout.woocommerce-checkout .form-floating > .select2-choice,
  .checkout.woocommerce-checkout .form-floating > textarea,
  .woocommerce form .form-row .form-floating > input.input-text,
  .woocommerce form .form-row .form-floating > .select2-selection,
  .woocommerce form .form-row .form-floating > .select2-choice {
    padding: 1rem 0.75rem; }
    .form-floating > .form-control::placeholder, .wp-block-categories-dropdown .form-floating > select::placeholder,
    .wp-block-archives-dropdown .form-floating > select::placeholder, .woocommerce #review_form #respond .form-floating > input[type="text"]::placeholder,
    .woocommerce #review_form #respond .form-floating > textarea::placeholder,
    .woocommerce #review_form #respond .form-floating > input[type="email"]::placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-floating > .input-text::placeholder, .woocommerce-cart-form .table.shop_table tr .quantity .form-floating > input::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > textarea::placeholder,
    .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > select::placeholder,
    .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > input::placeholder, .woocommerce-EditAccountForm.edit-account .form-floating > input[type="text"]::placeholder,
    .woocommerce-EditAccountForm.edit-account .form-floating > input[type="email"]::placeholder,
    .woocommerce-EditAccountForm.edit-account .form-floating > input[type="password"]::placeholder,
    .login .form-floating > input[type="text"]::placeholder, .login .form-floating > input[type="password"]::placeholder,
    .woocommerce-ResetPassword.lost_reset_password .form-floating > input[type="text"]::placeholder,
    .checkout.woocommerce-checkout .form-floating > input[type="text"]::placeholder,
    .checkout.woocommerce-checkout .form-floating > input[type="email"]::placeholder,
    .checkout.woocommerce-checkout .form-floating > input[type="tel"]::placeholder,
    .checkout.woocommerce-checkout .form-floating > .select2-choice::placeholder,
    .checkout.woocommerce-checkout .form-floating > textarea::placeholder,
    .woocommerce form .form-row .form-floating > input.input-text::placeholder,
    .woocommerce form .form-row .form-floating > .select2-selection::placeholder,
    .woocommerce form .form-row .form-floating > .select2-choice::placeholder {
      color: transparent; }
    .form-floating > .form-control:focus, .wp-block-categories-dropdown .form-floating > select:focus,
    .wp-block-archives-dropdown .form-floating > select:focus, .woocommerce #review_form #respond .form-floating > input:focus[type="text"],
    .woocommerce #review_form #respond .form-floating > textarea:focus,
    .woocommerce #review_form #respond .form-floating > input:focus[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-floating > .input-text:focus, .woocommerce-cart-form .table.shop_table tr .quantity .form-floating > input:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > textarea:focus,
    .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > select:focus,
    .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > input:focus, .woocommerce-EditAccountForm.edit-account .form-floating > input:focus[type="text"],
    .woocommerce-EditAccountForm.edit-account .form-floating > input:focus[type="email"],
    .woocommerce-EditAccountForm.edit-account .form-floating > input:focus[type="password"],
    .login .form-floating > input:focus[type="text"], .login .form-floating > input:focus[type="password"],
    .woocommerce-ResetPassword.lost_reset_password .form-floating > input:focus[type="text"],
    .checkout.woocommerce-checkout .form-floating > input:focus[type="text"],
    .checkout.woocommerce-checkout .form-floating > input:focus[type="email"],
    .checkout.woocommerce-checkout .form-floating > input:focus[type="tel"],
    .checkout.woocommerce-checkout .form-floating > .select2-choice:focus,
    .checkout.woocommerce-checkout .form-floating > textarea:focus,
    .woocommerce form .form-row .form-floating > input.input-text:focus,
    .woocommerce form .form-row .form-floating > .select2-selection:focus,
    .woocommerce form .form-row .form-floating > .select2-choice:focus, .form-floating > .form-control:not(:placeholder-shown), .wp-block-categories-dropdown .form-floating > select:not(:placeholder-shown),
    .wp-block-archives-dropdown .form-floating > select:not(:placeholder-shown), .woocommerce #review_form #respond .form-floating > input:not(:placeholder-shown)[type="text"],
    .woocommerce #review_form #respond .form-floating > textarea:not(:placeholder-shown),
    .woocommerce #review_form #respond .form-floating > input:not(:placeholder-shown)[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-floating > .input-text:not(:placeholder-shown), .woocommerce-cart-form .table.shop_table tr .quantity .form-floating > input:not(:placeholder-shown), .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > textarea:not(:placeholder-shown),
    .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > select:not(:placeholder-shown),
    .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > input:not(:placeholder-shown), .woocommerce-EditAccountForm.edit-account .form-floating > input:not(:placeholder-shown)[type="text"],
    .woocommerce-EditAccountForm.edit-account .form-floating > input:not(:placeholder-shown)[type="email"],
    .woocommerce-EditAccountForm.edit-account .form-floating > input:not(:placeholder-shown)[type="password"],
    .login .form-floating > input:not(:placeholder-shown)[type="text"], .login .form-floating > input:not(:placeholder-shown)[type="password"],
    .woocommerce-ResetPassword.lost_reset_password .form-floating > input:not(:placeholder-shown)[type="text"],
    .checkout.woocommerce-checkout .form-floating > input:not(:placeholder-shown)[type="text"],
    .checkout.woocommerce-checkout .form-floating > input:not(:placeholder-shown)[type="email"],
    .checkout.woocommerce-checkout .form-floating > input:not(:placeholder-shown)[type="tel"],
    .checkout.woocommerce-checkout .form-floating > .select2-choice:not(:placeholder-shown),
    .checkout.woocommerce-checkout .form-floating > textarea:not(:placeholder-shown),
    .woocommerce form .form-row .form-floating > input.input-text:not(:placeholder-shown),
    .woocommerce form .form-row .form-floating > .select2-selection:not(:placeholder-shown),
    .woocommerce form .form-row .form-floating > .select2-choice:not(:placeholder-shown) {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
    .form-floating > .form-control:-webkit-autofill, .wp-block-categories-dropdown .form-floating > select:-webkit-autofill,
    .wp-block-archives-dropdown .form-floating > select:-webkit-autofill, .woocommerce #review_form #respond .form-floating > input:-webkit-autofill[type="text"],
    .woocommerce #review_form #respond .form-floating > textarea:-webkit-autofill,
    .woocommerce #review_form #respond .form-floating > input:-webkit-autofill[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-floating > .input-text:-webkit-autofill, .woocommerce-cart-form .table.shop_table tr .quantity .form-floating > input:-webkit-autofill, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > textarea:-webkit-autofill,
    .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > select:-webkit-autofill,
    .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > input:-webkit-autofill, .woocommerce-EditAccountForm.edit-account .form-floating > input:-webkit-autofill[type="text"],
    .woocommerce-EditAccountForm.edit-account .form-floating > input:-webkit-autofill[type="email"],
    .woocommerce-EditAccountForm.edit-account .form-floating > input:-webkit-autofill[type="password"],
    .login .form-floating > input:-webkit-autofill[type="text"], .login .form-floating > input:-webkit-autofill[type="password"],
    .woocommerce-ResetPassword.lost_reset_password .form-floating > input:-webkit-autofill[type="text"],
    .checkout.woocommerce-checkout .form-floating > input:-webkit-autofill[type="text"],
    .checkout.woocommerce-checkout .form-floating > input:-webkit-autofill[type="email"],
    .checkout.woocommerce-checkout .form-floating > input:-webkit-autofill[type="tel"],
    .checkout.woocommerce-checkout .form-floating > .select2-choice:-webkit-autofill,
    .checkout.woocommerce-checkout .form-floating > textarea:-webkit-autofill,
    .woocommerce form .form-row .form-floating > input.input-text:-webkit-autofill,
    .woocommerce form .form-row .form-floating > .select2-selection:-webkit-autofill,
    .woocommerce form .form-row .form-floating > .select2-choice:-webkit-autofill {
      padding-top: 1.625rem;
      padding-bottom: 0.625rem; }
  .form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem; }
  .form-floating > .form-control:focus ~ label, .wp-block-categories-dropdown .form-floating > select:focus ~ label, .wp-block-archives-dropdown .form-floating > select:focus ~ label, .woocommerce #review_form #respond .form-floating > input:focus[type="text"] ~ label, .woocommerce #review_form #respond .form-floating > textarea:focus ~ label, .woocommerce #review_form #respond .form-floating > input:focus[type="email"] ~ label, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-floating > .input-text:focus ~ label, .woocommerce-cart-form .table.shop_table tr .quantity .form-floating > input:focus ~ label, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > textarea:focus ~ label, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > select:focus ~ label, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > input:focus ~ label, .woocommerce-EditAccountForm.edit-account .form-floating > input:focus[type="text"] ~ label, .woocommerce-EditAccountForm.edit-account .form-floating > input:focus[type="email"] ~ label, .woocommerce-EditAccountForm.edit-account .form-floating > input:focus[type="password"] ~ label, .login .form-floating > input:focus[type="text"] ~ label, .login .form-floating > input:focus[type="password"] ~ label, .woocommerce-ResetPassword.lost_reset_password .form-floating > input:focus[type="text"] ~ label, .checkout.woocommerce-checkout .form-floating > input:focus[type="text"] ~ label, .checkout.woocommerce-checkout .form-floating > input:focus[type="email"] ~ label, .checkout.woocommerce-checkout .form-floating > input:focus[type="tel"] ~ label, .checkout.woocommerce-checkout .form-floating > .select2-choice:focus ~ label, .checkout.woocommerce-checkout .form-floating > textarea:focus ~ label, .woocommerce form .form-row .form-floating > input.input-text:focus ~ label, .woocommerce form .form-row .form-floating > .select2-selection:focus ~ label, .woocommerce form .form-row .form-floating > .select2-choice:focus ~ label,
  .form-floating > .form-control:not(:placeholder-shown) ~ label,
  .wp-block-categories-dropdown .form-floating > select:not(:placeholder-shown) ~ label,
  .wp-block-archives-dropdown .form-floating > select:not(:placeholder-shown) ~ label,
  .woocommerce #review_form #respond .form-floating > input:not(:placeholder-shown)[type="text"] ~ label,
  .woocommerce #review_form #respond .form-floating > textarea:not(:placeholder-shown) ~ label,
  .woocommerce #review_form #respond .form-floating > input:not(:placeholder-shown)[type="email"] ~ label,
  .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-floating > .input-text:not(:placeholder-shown) ~ label,
  .woocommerce-cart-form .table.shop_table tr .quantity .form-floating > input:not(:placeholder-shown) ~ label,
  .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > textarea:not(:placeholder-shown) ~ label,
  .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > select:not(:placeholder-shown) ~ label,
  .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > input:not(:placeholder-shown) ~ label,
  .woocommerce-EditAccountForm.edit-account .form-floating > input:not(:placeholder-shown)[type="text"] ~ label,
  .woocommerce-EditAccountForm.edit-account .form-floating > input:not(:placeholder-shown)[type="email"] ~ label,
  .woocommerce-EditAccountForm.edit-account .form-floating > input:not(:placeholder-shown)[type="password"] ~ label,
  .login .form-floating > input:not(:placeholder-shown)[type="text"] ~ label,
  .login .form-floating > input:not(:placeholder-shown)[type="password"] ~ label,
  .woocommerce-ResetPassword.lost_reset_password .form-floating > input:not(:placeholder-shown)[type="text"] ~ label,
  .checkout.woocommerce-checkout .form-floating > input:not(:placeholder-shown)[type="text"] ~ label,
  .checkout.woocommerce-checkout .form-floating > input:not(:placeholder-shown)[type="email"] ~ label,
  .checkout.woocommerce-checkout .form-floating > input:not(:placeholder-shown)[type="tel"] ~ label,
  .checkout.woocommerce-checkout .form-floating > .select2-choice:not(:placeholder-shown) ~ label,
  .checkout.woocommerce-checkout .form-floating > textarea:not(:placeholder-shown) ~ label,
  .woocommerce form .form-row .form-floating > input.input-text:not(:placeholder-shown) ~ label,
  .woocommerce form .form-row .form-floating > .select2-selection:not(:placeholder-shown) ~ label,
  .woocommerce form .form-row .form-floating > .select2-choice:not(:placeholder-shown) ~ label,
  .form-floating > .form-select ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }
  .form-floating > .form-control:-webkit-autofill ~ label, .wp-block-categories-dropdown .form-floating > select:-webkit-autofill ~ label, .wp-block-archives-dropdown .form-floating > select:-webkit-autofill ~ label, .woocommerce #review_form #respond .form-floating > input:-webkit-autofill[type="text"] ~ label, .woocommerce #review_form #respond .form-floating > textarea:-webkit-autofill ~ label, .woocommerce #review_form #respond .form-floating > input:-webkit-autofill[type="email"] ~ label, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-floating > .input-text:-webkit-autofill ~ label, .woocommerce-cart-form .table.shop_table tr .quantity .form-floating > input:-webkit-autofill ~ label, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > textarea:-webkit-autofill ~ label, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > select:-webkit-autofill ~ label, .woocommerce .woocommerce-checkout.checkout form .form-row .form-floating > input:-webkit-autofill ~ label, .woocommerce-EditAccountForm.edit-account .form-floating > input:-webkit-autofill[type="text"] ~ label, .woocommerce-EditAccountForm.edit-account .form-floating > input:-webkit-autofill[type="email"] ~ label, .woocommerce-EditAccountForm.edit-account .form-floating > input:-webkit-autofill[type="password"] ~ label, .login .form-floating > input:-webkit-autofill[type="text"] ~ label, .login .form-floating > input:-webkit-autofill[type="password"] ~ label, .woocommerce-ResetPassword.lost_reset_password .form-floating > input:-webkit-autofill[type="text"] ~ label, .checkout.woocommerce-checkout .form-floating > input:-webkit-autofill[type="text"] ~ label, .checkout.woocommerce-checkout .form-floating > input:-webkit-autofill[type="email"] ~ label, .checkout.woocommerce-checkout .form-floating > input:-webkit-autofill[type="tel"] ~ label, .checkout.woocommerce-checkout .form-floating > .select2-choice:-webkit-autofill ~ label, .checkout.woocommerce-checkout .form-floating > textarea:-webkit-autofill ~ label, .woocommerce form .form-row .form-floating > input.input-text:-webkit-autofill ~ label, .woocommerce form .form-row .form-floating > .select2-selection:-webkit-autofill ~ label, .woocommerce form .form-row .form-floating > .select2-choice:-webkit-autofill ~ label {
    opacity: 0.65;
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem); }

.input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%; }
  .input-group > .form-control, .wp-block-categories-dropdown .input-group > select,
  .wp-block-archives-dropdown .input-group > select, .woocommerce #review_form #respond .input-group > input[type="text"],
  .woocommerce #review_form #respond .input-group > textarea,
  .woocommerce #review_form #respond .input-group > input[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-group > .input-text, .woocommerce-cart-form .table.shop_table tr .quantity .input-group > input, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group > textarea,
  .woocommerce .woocommerce-checkout.checkout form .form-row .input-group > select,
  .woocommerce .woocommerce-checkout.checkout form .form-row .input-group > input, .woocommerce-EditAccountForm.edit-account .input-group > input[type="text"],
  .woocommerce-EditAccountForm.edit-account .input-group > input[type="email"],
  .woocommerce-EditAccountForm.edit-account .input-group > input[type="password"],
  .login .input-group > input[type="text"], .login .input-group > input[type="password"],
  .woocommerce-ResetPassword.lost_reset_password .input-group > input[type="text"],
  .checkout.woocommerce-checkout .input-group > input[type="text"],
  .checkout.woocommerce-checkout .input-group > input[type="email"],
  .checkout.woocommerce-checkout .input-group > input[type="tel"],
  .checkout.woocommerce-checkout .input-group > .select2-choice,
  .checkout.woocommerce-checkout .input-group > textarea,
  .woocommerce form .form-row .input-group > input.input-text,
  .woocommerce form .form-row .input-group > .select2-selection,
  .woocommerce form .form-row .input-group > .select2-choice,
  .input-group > .form-select {
    position: relative;
    flex: 1 1 auto;
    width: 1%;
    min-width: 0; }
  .input-group > .form-control:focus, .wp-block-categories-dropdown .input-group > select:focus,
  .wp-block-archives-dropdown .input-group > select:focus, .woocommerce #review_form #respond .input-group > input:focus[type="text"],
  .woocommerce #review_form #respond .input-group > textarea:focus,
  .woocommerce #review_form #respond .input-group > input:focus[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-group > .input-text:focus, .woocommerce-cart-form .table.shop_table tr .quantity .input-group > input:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group > textarea:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row .input-group > select:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row .input-group > input:focus, .woocommerce-EditAccountForm.edit-account .input-group > input:focus[type="text"],
  .woocommerce-EditAccountForm.edit-account .input-group > input:focus[type="email"],
  .woocommerce-EditAccountForm.edit-account .input-group > input:focus[type="password"],
  .login .input-group > input:focus[type="text"], .login .input-group > input:focus[type="password"],
  .woocommerce-ResetPassword.lost_reset_password .input-group > input:focus[type="text"],
  .checkout.woocommerce-checkout .input-group > input:focus[type="text"],
  .checkout.woocommerce-checkout .input-group > input:focus[type="email"],
  .checkout.woocommerce-checkout .input-group > input:focus[type="tel"],
  .checkout.woocommerce-checkout .input-group > .select2-choice:focus,
  .checkout.woocommerce-checkout .input-group > textarea:focus,
  .woocommerce form .form-row .input-group > input.input-text:focus,
  .woocommerce form .form-row .input-group > .select2-selection:focus,
  .woocommerce form .form-row .input-group > .select2-choice:focus,
  .input-group > .form-select:focus {
    z-index: 3; }
  .input-group .btn, .input-group .wp-block-button__link, .input-group .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .input-group .btn.sw-btn-prev, .input-group .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .input-group .btn.sw-btn-next, .input-group .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .input-group a,
  .input-group .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .input-group a, .input-group .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .input-group input, .input-group .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .input-group .button, .input-group .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .input-group a.checkout-button, .input-group .woocommerce #respond input#submit, .woocommerce #respond .input-group input#submit,
  .input-group .woocommerce a.button, .woocommerce .input-group a.button,
  .input-group .woocommerce button.button, .woocommerce .input-group button.button,
  .input-group .woocommerce input.button, .woocommerce .input-group input.button,
  .input-group .woocommerce #place_order, .woocommerce .input-group #place_order {
    position: relative;
    z-index: 2; }
    .input-group .btn:focus, .input-group .wp-block-button__link:focus, .input-group .appointment-page-1 .wizard-form .btn.sw-btn-prev:focus, .appointment-page-1 .wizard-form .input-group .btn.sw-btn-prev:focus, .input-group .appointment-page-1 .wizard-form .btn.sw-btn-next:focus, .appointment-page-1 .wizard-form .input-group .btn.sw-btn-next:focus, .input-group .woocommerce .widget_shopping_cart .buttons a:focus, .woocommerce .widget_shopping_cart .buttons .input-group a:focus,
    .input-group .woocommerce.widget_shopping_cart .buttons a:focus, .woocommerce.widget_shopping_cart .buttons .input-group a:focus, .input-group .woocommerce #review_form #respond .form-submit input:focus, .woocommerce #review_form #respond .form-submit .input-group input:focus, .input-group .woocommerce-cart-form .table.shop_table tr .button:focus, .woocommerce-cart-form .table.shop_table tr .input-group .button:focus, .input-group .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus, .woocommerce-cart .wc-proceed-to-checkout .input-group a.checkout-button:focus, .input-group .woocommerce #respond input#submit:focus, .woocommerce #respond .input-group input#submit:focus,
    .input-group .woocommerce a.button:focus, .woocommerce .input-group a.button:focus,
    .input-group .woocommerce button.button:focus, .woocommerce .input-group button.button:focus,
    .input-group .woocommerce input.button:focus, .woocommerce .input-group input.button:focus,
    .input-group .woocommerce #place_order:focus, .woocommerce .input-group #place_order:focus {
      z-index: 3; }

.input-group-text {
  display: flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.25rem; }

.input-group-lg > .form-control, .wp-block-categories-dropdown .input-group-lg > select,
.wp-block-archives-dropdown .input-group-lg > select, .woocommerce #review_form #respond .input-group-lg > input[type="text"],
.woocommerce #review_form #respond .input-group-lg > textarea,
.woocommerce #review_form #respond .input-group-lg > input[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-group-lg > .input-text, .woocommerce-cart-form .table.shop_table tr .quantity .input-group-lg > input, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group-lg > textarea,
.woocommerce .woocommerce-checkout.checkout form .form-row .input-group-lg > select,
.woocommerce .woocommerce-checkout.checkout form .form-row .input-group-lg > input, .woocommerce-EditAccountForm.edit-account .input-group-lg > input[type="text"],
.woocommerce-EditAccountForm.edit-account .input-group-lg > input[type="email"],
.woocommerce-EditAccountForm.edit-account .input-group-lg > input[type="password"],
.login .input-group-lg > input[type="text"], .login .input-group-lg > input[type="password"],
.woocommerce-ResetPassword.lost_reset_password .input-group-lg > input[type="text"],
.checkout.woocommerce-checkout .input-group-lg > input[type="text"],
.checkout.woocommerce-checkout .input-group-lg > input[type="email"],
.checkout.woocommerce-checkout .input-group-lg > input[type="tel"],
.checkout.woocommerce-checkout .input-group-lg > .select2-choice,
.checkout.woocommerce-checkout .input-group-lg > textarea,
.woocommerce form .form-row .input-group-lg > input.input-text,
.woocommerce form .form-row .input-group-lg > .select2-selection,
.woocommerce form .form-row .input-group-lg > .select2-choice,
.input-group-lg > .form-select,
.input-group-lg > .input-group-text,
.input-group-lg > .btn,
.input-group-lg > .wp-block-button__link,
.appointment-page-1 .wizard-form .input-group-lg > .btn.sw-btn-prev,
.appointment-page-1 .wizard-form .input-group-lg > .btn.sw-btn-next,
.woocommerce .widget_shopping_cart .buttons .input-group-lg > a,
.woocommerce.widget_shopping_cart .buttons .input-group-lg > a,
.woocommerce #review_form #respond .form-submit .input-group-lg > input,
.woocommerce-cart-form .table.shop_table tr .input-group-lg > .button,
.woocommerce-cart .wc-proceed-to-checkout .input-group-lg > a.checkout-button,
.woocommerce #respond .input-group-lg > input#submit,
.woocommerce .input-group-lg > a.button,
.woocommerce .input-group-lg > button.button,
.woocommerce .input-group-lg > input.button,
.woocommerce .input-group-lg > #place_order {
  padding: 0.5rem 1rem;
  font-size: 1.17188rem;
  border-radius: 1rem; }

.input-group-sm > .form-control, .wp-block-categories-dropdown .input-group-sm > select,
.wp-block-archives-dropdown .input-group-sm > select, .woocommerce #review_form #respond .input-group-sm > input[type="text"],
.woocommerce #review_form #respond .input-group-sm > textarea,
.woocommerce #review_form #respond .input-group-sm > input[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-group-sm > .input-text, .woocommerce-cart-form .table.shop_table tr .quantity .input-group-sm > input, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group-sm > textarea,
.woocommerce .woocommerce-checkout.checkout form .form-row .input-group-sm > select,
.woocommerce .woocommerce-checkout.checkout form .form-row .input-group-sm > input, .woocommerce-EditAccountForm.edit-account .input-group-sm > input[type="text"],
.woocommerce-EditAccountForm.edit-account .input-group-sm > input[type="email"],
.woocommerce-EditAccountForm.edit-account .input-group-sm > input[type="password"],
.login .input-group-sm > input[type="text"], .login .input-group-sm > input[type="password"],
.woocommerce-ResetPassword.lost_reset_password .input-group-sm > input[type="text"],
.checkout.woocommerce-checkout .input-group-sm > input[type="text"],
.checkout.woocommerce-checkout .input-group-sm > input[type="email"],
.checkout.woocommerce-checkout .input-group-sm > input[type="tel"],
.checkout.woocommerce-checkout .input-group-sm > .select2-choice,
.checkout.woocommerce-checkout .input-group-sm > textarea,
.woocommerce form .form-row .input-group-sm > input.input-text,
.woocommerce form .form-row .input-group-sm > .select2-selection,
.woocommerce form .form-row .input-group-sm > .select2-choice,
.input-group-sm > .form-select,
.input-group-sm > .input-group-text,
.input-group-sm > .btn,
.input-group-sm > .wp-block-button__link,
.appointment-page-1 .wizard-form .input-group-sm > .btn.sw-btn-prev,
.appointment-page-1 .wizard-form .input-group-sm > .btn.sw-btn-next,
.woocommerce .widget_shopping_cart .buttons .input-group-sm > a,
.woocommerce.widget_shopping_cart .buttons .input-group-sm > a,
.woocommerce #review_form #respond .form-submit .input-group-sm > input,
.woocommerce-cart-form .table.shop_table tr .input-group-sm > .button,
.woocommerce-cart .wc-proceed-to-checkout .input-group-sm > a.checkout-button,
.woocommerce #respond .input-group-sm > input#submit,
.woocommerce .input-group-sm > a.button,
.woocommerce .input-group-sm > button.button,
.woocommerce .input-group-sm > input.button,
.woocommerce .input-group-sm > #place_order {
  padding: 0.25rem 0.5rem;
  font-size: 0.82031rem;
  border-radius: 0.75rem; }

.input-group-lg > .form-select,
.input-group-sm > .form-select {
  padding-right: 3rem; }

.input-group:not(.has-validation) > :not(:last-child):not(.dropdown-toggle):not(.dropdown-menu),
.input-group:not(.has-validation) > .dropdown-toggle:nth-last-child(n + 3) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group.has-validation > :nth-last-child(n + 3):not(.dropdown-toggle):not(.dropdown-menu),
.input-group.has-validation > .dropdown-toggle:nth-last-child(n + 4) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.input-group > :not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
  margin-left: -1px;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #13c24d; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.82031rem;
  color: #000;
  background-color: rgba(19, 194, 77, 0.9);
  border-radius: 0.25rem; }

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block; }

.was-validated .form-control:valid, .was-validated .wp-block-categories-dropdown select:valid, .wp-block-categories-dropdown .was-validated select:valid,
.was-validated .wp-block-archives-dropdown select:valid, .wp-block-archives-dropdown .was-validated select:valid, .was-validated .woocommerce #review_form #respond input:valid[type="text"], .woocommerce #review_form #respond .was-validated input:valid[type="text"],
.was-validated .woocommerce #review_form #respond textarea:valid, .woocommerce #review_form #respond .was-validated textarea:valid,
.was-validated .woocommerce #review_form #respond input:valid[type="email"], .woocommerce #review_form #respond .was-validated input:valid[type="email"], .was-validated .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:valid, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated .input-text:valid, .was-validated .woocommerce-cart-form .table.shop_table tr .quantity input:valid, .woocommerce-cart-form .table.shop_table tr .quantity .was-validated input:valid, .was-validated .woocommerce .woocommerce-checkout.checkout form .form-row textarea:valid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated textarea:valid,
.was-validated .woocommerce .woocommerce-checkout.checkout form .form-row select:valid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated select:valid,
.was-validated .woocommerce .woocommerce-checkout.checkout form .form-row input:valid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated input:valid, .was-validated .woocommerce-EditAccountForm.edit-account input:valid[type="text"], .woocommerce-EditAccountForm.edit-account .was-validated input:valid[type="text"],
.was-validated .woocommerce-EditAccountForm.edit-account input:valid[type="email"], .woocommerce-EditAccountForm.edit-account .was-validated input:valid[type="email"],
.was-validated .woocommerce-EditAccountForm.edit-account input:valid[type="password"], .woocommerce-EditAccountForm.edit-account .was-validated input:valid[type="password"],
.was-validated .login input:valid[type="text"], .login .was-validated input:valid[type="text"], .was-validated .login input:valid[type="password"], .login .was-validated input:valid[type="password"],
.was-validated .woocommerce-ResetPassword.lost_reset_password input:valid[type="text"], .woocommerce-ResetPassword.lost_reset_password .was-validated input:valid[type="text"],
.was-validated .checkout.woocommerce-checkout input:valid[type="text"], .checkout.woocommerce-checkout .was-validated input:valid[type="text"],
.was-validated .checkout.woocommerce-checkout input:valid[type="email"], .checkout.woocommerce-checkout .was-validated input:valid[type="email"],
.was-validated .checkout.woocommerce-checkout input:valid[type="tel"], .checkout.woocommerce-checkout .was-validated input:valid[type="tel"],
.was-validated .checkout.woocommerce-checkout .select2-choice:valid, .checkout.woocommerce-checkout .was-validated .select2-choice:valid,
.was-validated .checkout.woocommerce-checkout textarea:valid, .checkout.woocommerce-checkout .was-validated textarea:valid,
.was-validated .woocommerce form .form-row input.input-text:valid, .woocommerce form .form-row .was-validated input.input-text:valid,
.was-validated .woocommerce form .form-row .select2-selection:valid, .woocommerce form .form-row .was-validated .select2-selection:valid,
.was-validated .woocommerce form .form-row .select2-choice:valid, .woocommerce form .form-row .was-validated .select2-choice:valid, .form-control.is-valid, .wp-block-categories-dropdown select.is-valid,
.wp-block-archives-dropdown select.is-valid, .woocommerce #review_form #respond input.is-valid[type="text"],
.woocommerce #review_form #respond textarea.is-valid,
.woocommerce #review_form #respond input.is-valid[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .is-valid.input-text, .woocommerce-cart-form .table.shop_table tr .quantity input.is-valid, .woocommerce .woocommerce-checkout.checkout form .form-row textarea.is-valid,
.woocommerce .woocommerce-checkout.checkout form .form-row select.is-valid,
.woocommerce .woocommerce-checkout.checkout form .form-row input.is-valid, .woocommerce-EditAccountForm.edit-account input.is-valid[type="text"],
.woocommerce-EditAccountForm.edit-account input.is-valid[type="email"],
.woocommerce-EditAccountForm.edit-account input.is-valid[type="password"],
.login input.is-valid[type="text"], .login input.is-valid[type="password"],
.woocommerce-ResetPassword.lost_reset_password input.is-valid[type="text"],
.checkout.woocommerce-checkout input.is-valid[type="text"],
.checkout.woocommerce-checkout input.is-valid[type="email"],
.checkout.woocommerce-checkout input.is-valid[type="tel"],
.checkout.woocommerce-checkout .is-valid.select2-choice,
.checkout.woocommerce-checkout textarea.is-valid,
.woocommerce form .form-row input.is-valid.input-text,
.woocommerce form .form-row .is-valid.select2-selection,
.woocommerce form .form-row .is-valid.select2-choice {
  border-color: #13c24d;
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2313c24d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); }
  .was-validated .form-control:valid:focus, .was-validated .wp-block-categories-dropdown select:valid:focus, .wp-block-categories-dropdown .was-validated select:valid:focus,
  .was-validated .wp-block-archives-dropdown select:valid:focus, .wp-block-archives-dropdown .was-validated select:valid:focus, .was-validated .woocommerce #review_form #respond input:valid:focus[type="text"], .woocommerce #review_form #respond .was-validated input:valid:focus[type="text"],
  .was-validated .woocommerce #review_form #respond textarea:valid:focus, .woocommerce #review_form #respond .was-validated textarea:valid:focus,
  .was-validated .woocommerce #review_form #respond input:valid:focus[type="email"], .woocommerce #review_form #respond .was-validated input:valid:focus[type="email"], .was-validated .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:valid:focus, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated .input-text:valid:focus, .was-validated .woocommerce-cart-form .table.shop_table tr .quantity input:valid:focus, .woocommerce-cart-form .table.shop_table tr .quantity .was-validated input:valid:focus,
  .was-validated .woocommerce .woocommerce-checkout.checkout form .form-row select:valid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated select:valid:focus,
  .was-validated .woocommerce .woocommerce-checkout.checkout form .form-row input:valid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated input:valid:focus, .was-validated .woocommerce-EditAccountForm.edit-account input:valid:focus[type="text"], .woocommerce-EditAccountForm.edit-account .was-validated input:valid:focus[type="text"],
  .was-validated .woocommerce-EditAccountForm.edit-account input:valid:focus[type="email"], .woocommerce-EditAccountForm.edit-account .was-validated input:valid:focus[type="email"],
  .was-validated .woocommerce-EditAccountForm.edit-account input:valid:focus[type="password"], .woocommerce-EditAccountForm.edit-account .was-validated input:valid:focus[type="password"],
  .was-validated .login input:valid:focus[type="text"], .login .was-validated input:valid:focus[type="text"], .was-validated .login input:valid:focus[type="password"], .login .was-validated input:valid:focus[type="password"],
  .was-validated .woocommerce-ResetPassword.lost_reset_password input:valid:focus[type="text"], .woocommerce-ResetPassword.lost_reset_password .was-validated input:valid:focus[type="text"],
  .was-validated .checkout.woocommerce-checkout input:valid:focus[type="text"], .checkout.woocommerce-checkout .was-validated input:valid:focus[type="text"],
  .was-validated .checkout.woocommerce-checkout input:valid:focus[type="email"], .checkout.woocommerce-checkout .was-validated input:valid:focus[type="email"],
  .was-validated .checkout.woocommerce-checkout input:valid:focus[type="tel"], .checkout.woocommerce-checkout .was-validated input:valid:focus[type="tel"],
  .was-validated .checkout.woocommerce-checkout .select2-choice:valid:focus, .checkout.woocommerce-checkout .was-validated .select2-choice:valid:focus,
  .was-validated .checkout.woocommerce-checkout textarea:valid:focus, .checkout.woocommerce-checkout .was-validated textarea:valid:focus,
  .was-validated .woocommerce form .form-row input.input-text:valid:focus, .woocommerce form .form-row .was-validated input.input-text:valid:focus,
  .was-validated .woocommerce form .form-row .select2-selection:valid:focus, .woocommerce form .form-row .was-validated .select2-selection:valid:focus,
  .was-validated .woocommerce form .form-row .select2-choice:valid:focus, .woocommerce form .form-row .was-validated .select2-choice:valid:focus, .form-control.is-valid:focus, .wp-block-categories-dropdown select.is-valid:focus,
  .wp-block-archives-dropdown select.is-valid:focus, .woocommerce #review_form #respond input.is-valid:focus[type="text"],
  .woocommerce #review_form #respond textarea.is-valid:focus,
  .woocommerce #review_form #respond input.is-valid:focus[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .is-valid.input-text:focus, .woocommerce-cart-form .table.shop_table tr .quantity input.is-valid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row textarea.is-valid:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row select.is-valid:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.is-valid:focus, .woocommerce-EditAccountForm.edit-account input.is-valid:focus[type="text"],
  .woocommerce-EditAccountForm.edit-account input.is-valid:focus[type="email"],
  .woocommerce-EditAccountForm.edit-account input.is-valid:focus[type="password"],
  .login input.is-valid:focus[type="text"], .login input.is-valid:focus[type="password"],
  .woocommerce-ResetPassword.lost_reset_password input.is-valid:focus[type="text"],
  .checkout.woocommerce-checkout input.is-valid:focus[type="text"],
  .checkout.woocommerce-checkout input.is-valid:focus[type="email"],
  .checkout.woocommerce-checkout input.is-valid:focus[type="tel"],
  .checkout.woocommerce-checkout .is-valid.select2-choice:focus,
  .checkout.woocommerce-checkout textarea.is-valid:focus,
  .woocommerce form .form-row input.is-valid.input-text:focus,
  .woocommerce form .form-row .is-valid.select2-selection:focus,
  .woocommerce form .form-row .is-valid.select2-choice:focus {
    border-color: #13c24d;
    box-shadow: 0 0 0 0rem rgba(19, 194, 77, 0.25); }

.was-validated textarea.form-control:valid,
.was-validated .woocommerce #review_form #respond textarea:valid, .woocommerce #review_form #respond .was-validated textarea:valid, .was-validated .woocommerce-cart-form .table.shop_table tr td.actions .coupon textarea.input-text:valid, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated textarea.input-text:valid, .was-validated .woocommerce .woocommerce-checkout.checkout form .form-row textarea:valid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated textarea:valid,
.was-validated .checkout.woocommerce-checkout textarea:valid, .checkout.woocommerce-checkout .was-validated textarea:valid,
.was-validated .woocommerce form .form-row textarea.select2-selection:valid, .woocommerce form .form-row .was-validated textarea.select2-selection:valid,
.was-validated .woocommerce form .form-row textarea.select2-choice:valid, .woocommerce form .form-row .was-validated textarea.select2-choice:valid, textarea.form-control.is-valid,
.woocommerce #review_form #respond textarea.is-valid, .woocommerce-cart-form .table.shop_table tr td.actions .coupon textarea.is-valid.input-text, .woocommerce .woocommerce-checkout.checkout form .form-row textarea.is-valid,
.checkout.woocommerce-checkout textarea.is-valid,
.woocommerce form .form-row textarea.is-valid.select2-selection,
.woocommerce form .form-row textarea.is-valid.select2-choice {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem); }

.was-validated .form-select:valid, .form-select.is-valid {
  border-color: #13c24d; }
  .was-validated .form-select:valid:not([multiple]):not([size]), .was-validated .form-select:valid:not([multiple])[size="1"], .form-select.is-valid:not([multiple]):not([size]), .form-select.is-valid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2313c24d' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); }
  .was-validated .form-select:valid:focus, .form-select.is-valid:focus {
    border-color: #13c24d;
    box-shadow: 0 0 0 0rem rgba(19, 194, 77, 0.25); }

.was-validated .form-check-input:valid, .form-check-input.is-valid {
  border-color: #13c24d; }
  .was-validated .form-check-input:valid:checked, .form-check-input.is-valid:checked {
    background-color: #13c24d; }
  .was-validated .form-check-input:valid:focus, .form-check-input.is-valid:focus {
    box-shadow: 0 0 0 0rem rgba(19, 194, 77, 0.25); }
  .was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
    color: #13c24d; }

.form-check-inline .form-check-input ~ .valid-feedback {
  margin-left: .5em; }

.was-validated .input-group .form-control:valid, .was-validated .input-group .wp-block-categories-dropdown select:valid, .wp-block-categories-dropdown .was-validated .input-group select:valid,
.was-validated .input-group .wp-block-archives-dropdown select:valid, .wp-block-archives-dropdown .was-validated .input-group select:valid, .was-validated .input-group .woocommerce #review_form #respond input:valid[type="text"], .woocommerce #review_form #respond .was-validated .input-group input:valid[type="text"],
.was-validated .input-group .woocommerce #review_form #respond textarea:valid, .woocommerce #review_form #respond .was-validated .input-group textarea:valid,
.was-validated .input-group .woocommerce #review_form #respond input:valid[type="email"], .woocommerce #review_form #respond .was-validated .input-group input:valid[type="email"], .was-validated .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:valid, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated .input-group .input-text:valid, .was-validated .input-group .woocommerce-cart-form .table.shop_table tr .quantity input:valid, .woocommerce-cart-form .table.shop_table tr .quantity .was-validated .input-group input:valid,
.was-validated .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select:valid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated .input-group select:valid,
.was-validated .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input:valid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated .input-group input:valid, .was-validated .input-group .woocommerce-EditAccountForm.edit-account input:valid[type="text"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:valid[type="text"],
.was-validated .input-group .woocommerce-EditAccountForm.edit-account input:valid[type="email"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:valid[type="email"],
.was-validated .input-group .woocommerce-EditAccountForm.edit-account input:valid[type="password"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:valid[type="password"],
.was-validated .input-group .login input:valid[type="text"], .login .was-validated .input-group input:valid[type="text"], .was-validated .input-group .login input:valid[type="password"], .login .was-validated .input-group input:valid[type="password"],
.was-validated .input-group .woocommerce-ResetPassword.lost_reset_password input:valid[type="text"], .woocommerce-ResetPassword.lost_reset_password .was-validated .input-group input:valid[type="text"],
.was-validated .input-group .checkout.woocommerce-checkout input:valid[type="text"], .checkout.woocommerce-checkout .was-validated .input-group input:valid[type="text"],
.was-validated .input-group .checkout.woocommerce-checkout input:valid[type="email"], .checkout.woocommerce-checkout .was-validated .input-group input:valid[type="email"],
.was-validated .input-group .checkout.woocommerce-checkout input:valid[type="tel"], .checkout.woocommerce-checkout .was-validated .input-group input:valid[type="tel"],
.was-validated .input-group .checkout.woocommerce-checkout .select2-choice:valid, .checkout.woocommerce-checkout .was-validated .input-group .select2-choice:valid,
.was-validated .input-group .checkout.woocommerce-checkout textarea:valid, .checkout.woocommerce-checkout .was-validated .input-group textarea:valid,
.was-validated .input-group .woocommerce form .form-row input.input-text:valid, .woocommerce form .form-row .was-validated .input-group input.input-text:valid,
.was-validated .input-group .woocommerce form .form-row .select2-selection:valid, .woocommerce form .form-row .was-validated .input-group .select2-selection:valid,
.was-validated .input-group .woocommerce form .form-row .select2-choice:valid, .woocommerce form .form-row .was-validated .input-group .select2-choice:valid, .input-group .form-control.is-valid, .input-group .wp-block-categories-dropdown select.is-valid, .wp-block-categories-dropdown .input-group select.is-valid,
.input-group .wp-block-archives-dropdown select.is-valid, .wp-block-archives-dropdown .input-group select.is-valid, .input-group .woocommerce #review_form #respond input.is-valid[type="text"], .woocommerce #review_form #respond .input-group input.is-valid[type="text"],
.input-group .woocommerce #review_form #respond textarea.is-valid, .woocommerce #review_form #respond .input-group textarea.is-valid,
.input-group .woocommerce #review_form #respond input.is-valid[type="email"], .woocommerce #review_form #respond .input-group input.is-valid[type="email"], .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .is-valid.input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-group .is-valid.input-text, .input-group .woocommerce-cart-form .table.shop_table tr .quantity input.is-valid, .woocommerce-cart-form .table.shop_table tr .quantity .input-group input.is-valid, .input-group .woocommerce .woocommerce-checkout.checkout form .form-row textarea.is-valid, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group textarea.is-valid,
.input-group .woocommerce .woocommerce-checkout.checkout form .form-row select.is-valid, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group select.is-valid,
.input-group .woocommerce .woocommerce-checkout.checkout form .form-row input.is-valid, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group input.is-valid, .input-group .woocommerce-EditAccountForm.edit-account input.is-valid[type="text"], .woocommerce-EditAccountForm.edit-account .input-group input.is-valid[type="text"],
.input-group .woocommerce-EditAccountForm.edit-account input.is-valid[type="email"], .woocommerce-EditAccountForm.edit-account .input-group input.is-valid[type="email"],
.input-group .woocommerce-EditAccountForm.edit-account input.is-valid[type="password"], .woocommerce-EditAccountForm.edit-account .input-group input.is-valid[type="password"],
.input-group .login input.is-valid[type="text"], .login .input-group input.is-valid[type="text"], .input-group .login input.is-valid[type="password"], .login .input-group input.is-valid[type="password"],
.input-group .woocommerce-ResetPassword.lost_reset_password input.is-valid[type="text"], .woocommerce-ResetPassword.lost_reset_password .input-group input.is-valid[type="text"],
.input-group .checkout.woocommerce-checkout input.is-valid[type="text"], .checkout.woocommerce-checkout .input-group input.is-valid[type="text"],
.input-group .checkout.woocommerce-checkout input.is-valid[type="email"], .checkout.woocommerce-checkout .input-group input.is-valid[type="email"],
.input-group .checkout.woocommerce-checkout input.is-valid[type="tel"], .checkout.woocommerce-checkout .input-group input.is-valid[type="tel"],
.input-group .checkout.woocommerce-checkout .is-valid.select2-choice, .checkout.woocommerce-checkout .input-group .is-valid.select2-choice,
.input-group .checkout.woocommerce-checkout textarea.is-valid, .checkout.woocommerce-checkout .input-group textarea.is-valid,
.input-group .woocommerce form .form-row input.is-valid.input-text, .woocommerce form .form-row .input-group input.is-valid.input-text,
.input-group .woocommerce form .form-row .is-valid.select2-selection, .woocommerce form .form-row .input-group .is-valid.select2-selection,
.input-group .woocommerce form .form-row .is-valid.select2-choice, .woocommerce form .form-row .input-group .is-valid.select2-choice, .was-validated
.input-group .form-select:valid,
.input-group .form-select.is-valid {
  z-index: 1; }
  .was-validated .input-group .form-control:valid:focus, .was-validated .input-group .wp-block-categories-dropdown select:valid:focus, .wp-block-categories-dropdown .was-validated .input-group select:valid:focus,
  .was-validated .input-group .wp-block-archives-dropdown select:valid:focus, .wp-block-archives-dropdown .was-validated .input-group select:valid:focus, .was-validated .input-group .woocommerce #review_form #respond input:valid:focus[type="text"], .woocommerce #review_form #respond .was-validated .input-group input:valid:focus[type="text"],
  .was-validated .input-group .woocommerce #review_form #respond textarea:valid:focus, .woocommerce #review_form #respond .was-validated .input-group textarea:valid:focus,
  .was-validated .input-group .woocommerce #review_form #respond input:valid:focus[type="email"], .woocommerce #review_form #respond .was-validated .input-group input:valid:focus[type="email"], .was-validated .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:valid:focus, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated .input-group .input-text:valid:focus, .was-validated .input-group .woocommerce-cart-form .table.shop_table tr .quantity input:valid:focus, .woocommerce-cart-form .table.shop_table tr .quantity .was-validated .input-group input:valid:focus,
  .was-validated .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select:valid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated .input-group select:valid:focus,
  .was-validated .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input:valid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated .input-group input:valid:focus, .was-validated .input-group .woocommerce-EditAccountForm.edit-account input:valid:focus[type="text"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:valid:focus[type="text"],
  .was-validated .input-group .woocommerce-EditAccountForm.edit-account input:valid:focus[type="email"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:valid:focus[type="email"],
  .was-validated .input-group .woocommerce-EditAccountForm.edit-account input:valid:focus[type="password"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:valid:focus[type="password"],
  .was-validated .input-group .login input:valid:focus[type="text"], .login .was-validated .input-group input:valid:focus[type="text"], .was-validated .input-group .login input:valid:focus[type="password"], .login .was-validated .input-group input:valid:focus[type="password"],
  .was-validated .input-group .woocommerce-ResetPassword.lost_reset_password input:valid:focus[type="text"], .woocommerce-ResetPassword.lost_reset_password .was-validated .input-group input:valid:focus[type="text"],
  .was-validated .input-group .checkout.woocommerce-checkout input:valid:focus[type="text"], .checkout.woocommerce-checkout .was-validated .input-group input:valid:focus[type="text"],
  .was-validated .input-group .checkout.woocommerce-checkout input:valid:focus[type="email"], .checkout.woocommerce-checkout .was-validated .input-group input:valid:focus[type="email"],
  .was-validated .input-group .checkout.woocommerce-checkout input:valid:focus[type="tel"], .checkout.woocommerce-checkout .was-validated .input-group input:valid:focus[type="tel"],
  .was-validated .input-group .checkout.woocommerce-checkout .select2-choice:valid:focus, .checkout.woocommerce-checkout .was-validated .input-group .select2-choice:valid:focus,
  .was-validated .input-group .checkout.woocommerce-checkout textarea:valid:focus, .checkout.woocommerce-checkout .was-validated .input-group textarea:valid:focus,
  .was-validated .input-group .woocommerce form .form-row input.input-text:valid:focus, .woocommerce form .form-row .was-validated .input-group input.input-text:valid:focus,
  .was-validated .input-group .woocommerce form .form-row .select2-selection:valid:focus, .woocommerce form .form-row .was-validated .input-group .select2-selection:valid:focus,
  .was-validated .input-group .woocommerce form .form-row .select2-choice:valid:focus, .woocommerce form .form-row .was-validated .input-group .select2-choice:valid:focus, .input-group .form-control.is-valid:focus, .input-group .wp-block-categories-dropdown select.is-valid:focus, .wp-block-categories-dropdown .input-group select.is-valid:focus,
  .input-group .wp-block-archives-dropdown select.is-valid:focus, .wp-block-archives-dropdown .input-group select.is-valid:focus, .input-group .woocommerce #review_form #respond input.is-valid:focus[type="text"], .woocommerce #review_form #respond .input-group input.is-valid:focus[type="text"],
  .input-group .woocommerce #review_form #respond textarea.is-valid:focus, .woocommerce #review_form #respond .input-group textarea.is-valid:focus,
  .input-group .woocommerce #review_form #respond input.is-valid:focus[type="email"], .woocommerce #review_form #respond .input-group input.is-valid:focus[type="email"], .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .is-valid.input-text:focus, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-group .is-valid.input-text:focus, .input-group .woocommerce-cart-form .table.shop_table tr .quantity input.is-valid:focus, .woocommerce-cart-form .table.shop_table tr .quantity .input-group input.is-valid:focus,
  .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select.is-valid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group select.is-valid:focus,
  .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input.is-valid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group input.is-valid:focus, .input-group .woocommerce-EditAccountForm.edit-account input.is-valid:focus[type="text"], .woocommerce-EditAccountForm.edit-account .input-group input.is-valid:focus[type="text"],
  .input-group .woocommerce-EditAccountForm.edit-account input.is-valid:focus[type="email"], .woocommerce-EditAccountForm.edit-account .input-group input.is-valid:focus[type="email"],
  .input-group .woocommerce-EditAccountForm.edit-account input.is-valid:focus[type="password"], .woocommerce-EditAccountForm.edit-account .input-group input.is-valid:focus[type="password"],
  .input-group .login input.is-valid:focus[type="text"], .login .input-group input.is-valid:focus[type="text"], .input-group .login input.is-valid:focus[type="password"], .login .input-group input.is-valid:focus[type="password"],
  .input-group .woocommerce-ResetPassword.lost_reset_password input.is-valid:focus[type="text"], .woocommerce-ResetPassword.lost_reset_password .input-group input.is-valid:focus[type="text"],
  .input-group .checkout.woocommerce-checkout input.is-valid:focus[type="text"], .checkout.woocommerce-checkout .input-group input.is-valid:focus[type="text"],
  .input-group .checkout.woocommerce-checkout input.is-valid:focus[type="email"], .checkout.woocommerce-checkout .input-group input.is-valid:focus[type="email"],
  .input-group .checkout.woocommerce-checkout input.is-valid:focus[type="tel"], .checkout.woocommerce-checkout .input-group input.is-valid:focus[type="tel"],
  .input-group .checkout.woocommerce-checkout .is-valid.select2-choice:focus, .checkout.woocommerce-checkout .input-group .is-valid.select2-choice:focus,
  .input-group .checkout.woocommerce-checkout textarea.is-valid:focus, .checkout.woocommerce-checkout .input-group textarea.is-valid:focus,
  .input-group .woocommerce form .form-row input.is-valid.input-text:focus, .woocommerce form .form-row .input-group input.is-valid.input-text:focus,
  .input-group .woocommerce form .form-row .is-valid.select2-selection:focus, .woocommerce form .form-row .input-group .is-valid.select2-selection:focus,
  .input-group .woocommerce form .form-row .is-valid.select2-choice:focus, .woocommerce form .form-row .input-group .is-valid.select2-choice:focus, .was-validated
  .input-group .form-select:valid:focus,
  .input-group .form-select.is-valid:focus {
    z-index: 3; }

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #ff0003; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 0.82031rem;
  color: #000;
  background-color: rgba(255, 0, 3, 0.9);
  border-radius: 0.25rem; }

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block; }

.was-validated .form-control:invalid, .was-validated .wp-block-categories-dropdown select:invalid, .wp-block-categories-dropdown .was-validated select:invalid,
.was-validated .wp-block-archives-dropdown select:invalid, .wp-block-archives-dropdown .was-validated select:invalid, .was-validated .woocommerce #review_form #respond input:invalid[type="text"], .woocommerce #review_form #respond .was-validated input:invalid[type="text"],
.was-validated .woocommerce #review_form #respond textarea:invalid, .woocommerce #review_form #respond .was-validated textarea:invalid,
.was-validated .woocommerce #review_form #respond input:invalid[type="email"], .woocommerce #review_form #respond .was-validated input:invalid[type="email"], .was-validated .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:invalid, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated .input-text:invalid, .was-validated .woocommerce-cart-form .table.shop_table tr .quantity input:invalid, .woocommerce-cart-form .table.shop_table tr .quantity .was-validated input:invalid, .was-validated .woocommerce .woocommerce-checkout.checkout form .form-row textarea:invalid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated textarea:invalid,
.was-validated .woocommerce .woocommerce-checkout.checkout form .form-row select:invalid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated select:invalid,
.was-validated .woocommerce .woocommerce-checkout.checkout form .form-row input:invalid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated input:invalid, .was-validated .woocommerce-EditAccountForm.edit-account input:invalid[type="text"], .woocommerce-EditAccountForm.edit-account .was-validated input:invalid[type="text"],
.was-validated .woocommerce-EditAccountForm.edit-account input:invalid[type="email"], .woocommerce-EditAccountForm.edit-account .was-validated input:invalid[type="email"],
.was-validated .woocommerce-EditAccountForm.edit-account input:invalid[type="password"], .woocommerce-EditAccountForm.edit-account .was-validated input:invalid[type="password"],
.was-validated .login input:invalid[type="text"], .login .was-validated input:invalid[type="text"], .was-validated .login input:invalid[type="password"], .login .was-validated input:invalid[type="password"],
.was-validated .woocommerce-ResetPassword.lost_reset_password input:invalid[type="text"], .woocommerce-ResetPassword.lost_reset_password .was-validated input:invalid[type="text"],
.was-validated .checkout.woocommerce-checkout input:invalid[type="text"], .checkout.woocommerce-checkout .was-validated input:invalid[type="text"],
.was-validated .checkout.woocommerce-checkout input:invalid[type="email"], .checkout.woocommerce-checkout .was-validated input:invalid[type="email"],
.was-validated .checkout.woocommerce-checkout input:invalid[type="tel"], .checkout.woocommerce-checkout .was-validated input:invalid[type="tel"],
.was-validated .checkout.woocommerce-checkout .select2-choice:invalid, .checkout.woocommerce-checkout .was-validated .select2-choice:invalid,
.was-validated .checkout.woocommerce-checkout textarea:invalid, .checkout.woocommerce-checkout .was-validated textarea:invalid,
.was-validated .woocommerce form .form-row input.input-text:invalid, .woocommerce form .form-row .was-validated input.input-text:invalid,
.was-validated .woocommerce form .form-row .select2-selection:invalid, .woocommerce form .form-row .was-validated .select2-selection:invalid,
.was-validated .woocommerce form .form-row .select2-choice:invalid, .woocommerce form .form-row .was-validated .select2-choice:invalid, .form-control.is-invalid, .wp-block-categories-dropdown select.is-invalid,
.wp-block-archives-dropdown select.is-invalid, .woocommerce #review_form #respond input.is-invalid[type="text"],
.woocommerce #review_form #respond textarea.is-invalid,
.woocommerce #review_form #respond input.is-invalid[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .is-invalid.input-text, .woocommerce-cart-form .table.shop_table tr .quantity input.is-invalid, .woocommerce .woocommerce-checkout.checkout form .form-row textarea.is-invalid,
.woocommerce .woocommerce-checkout.checkout form .form-row select.is-invalid,
.woocommerce .woocommerce-checkout.checkout form .form-row input.is-invalid, .woocommerce-EditAccountForm.edit-account input.is-invalid[type="text"],
.woocommerce-EditAccountForm.edit-account input.is-invalid[type="email"],
.woocommerce-EditAccountForm.edit-account input.is-invalid[type="password"],
.login input.is-invalid[type="text"], .login input.is-invalid[type="password"],
.woocommerce-ResetPassword.lost_reset_password input.is-invalid[type="text"],
.checkout.woocommerce-checkout input.is-invalid[type="text"],
.checkout.woocommerce-checkout input.is-invalid[type="email"],
.checkout.woocommerce-checkout input.is-invalid[type="tel"],
.checkout.woocommerce-checkout .is-invalid.select2-choice,
.checkout.woocommerce-checkout textarea.is-invalid,
.woocommerce form .form-row input.is-invalid.input-text,
.woocommerce form .form-row .is-invalid.select2-selection,
.woocommerce form .form-row .is-invalid.select2-choice {
  border-color: #ff0003;
  padding-right: calc(1.6em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff0003'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff0003' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.4em + 0.1875rem) center;
  background-size: calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); }
  .was-validated .form-control:invalid:focus, .was-validated .wp-block-categories-dropdown select:invalid:focus, .wp-block-categories-dropdown .was-validated select:invalid:focus,
  .was-validated .wp-block-archives-dropdown select:invalid:focus, .wp-block-archives-dropdown .was-validated select:invalid:focus, .was-validated .woocommerce #review_form #respond input:invalid:focus[type="text"], .woocommerce #review_form #respond .was-validated input:invalid:focus[type="text"],
  .was-validated .woocommerce #review_form #respond textarea:invalid:focus, .woocommerce #review_form #respond .was-validated textarea:invalid:focus,
  .was-validated .woocommerce #review_form #respond input:invalid:focus[type="email"], .woocommerce #review_form #respond .was-validated input:invalid:focus[type="email"], .was-validated .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:invalid:focus, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated .input-text:invalid:focus, .was-validated .woocommerce-cart-form .table.shop_table tr .quantity input:invalid:focus, .woocommerce-cart-form .table.shop_table tr .quantity .was-validated input:invalid:focus,
  .was-validated .woocommerce .woocommerce-checkout.checkout form .form-row select:invalid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated select:invalid:focus,
  .was-validated .woocommerce .woocommerce-checkout.checkout form .form-row input:invalid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated input:invalid:focus, .was-validated .woocommerce-EditAccountForm.edit-account input:invalid:focus[type="text"], .woocommerce-EditAccountForm.edit-account .was-validated input:invalid:focus[type="text"],
  .was-validated .woocommerce-EditAccountForm.edit-account input:invalid:focus[type="email"], .woocommerce-EditAccountForm.edit-account .was-validated input:invalid:focus[type="email"],
  .was-validated .woocommerce-EditAccountForm.edit-account input:invalid:focus[type="password"], .woocommerce-EditAccountForm.edit-account .was-validated input:invalid:focus[type="password"],
  .was-validated .login input:invalid:focus[type="text"], .login .was-validated input:invalid:focus[type="text"], .was-validated .login input:invalid:focus[type="password"], .login .was-validated input:invalid:focus[type="password"],
  .was-validated .woocommerce-ResetPassword.lost_reset_password input:invalid:focus[type="text"], .woocommerce-ResetPassword.lost_reset_password .was-validated input:invalid:focus[type="text"],
  .was-validated .checkout.woocommerce-checkout input:invalid:focus[type="text"], .checkout.woocommerce-checkout .was-validated input:invalid:focus[type="text"],
  .was-validated .checkout.woocommerce-checkout input:invalid:focus[type="email"], .checkout.woocommerce-checkout .was-validated input:invalid:focus[type="email"],
  .was-validated .checkout.woocommerce-checkout input:invalid:focus[type="tel"], .checkout.woocommerce-checkout .was-validated input:invalid:focus[type="tel"],
  .was-validated .checkout.woocommerce-checkout .select2-choice:invalid:focus, .checkout.woocommerce-checkout .was-validated .select2-choice:invalid:focus,
  .was-validated .checkout.woocommerce-checkout textarea:invalid:focus, .checkout.woocommerce-checkout .was-validated textarea:invalid:focus,
  .was-validated .woocommerce form .form-row input.input-text:invalid:focus, .woocommerce form .form-row .was-validated input.input-text:invalid:focus,
  .was-validated .woocommerce form .form-row .select2-selection:invalid:focus, .woocommerce form .form-row .was-validated .select2-selection:invalid:focus,
  .was-validated .woocommerce form .form-row .select2-choice:invalid:focus, .woocommerce form .form-row .was-validated .select2-choice:invalid:focus, .form-control.is-invalid:focus, .wp-block-categories-dropdown select.is-invalid:focus,
  .wp-block-archives-dropdown select.is-invalid:focus, .woocommerce #review_form #respond input.is-invalid:focus[type="text"],
  .woocommerce #review_form #respond textarea.is-invalid:focus,
  .woocommerce #review_form #respond input.is-invalid:focus[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .is-invalid.input-text:focus, .woocommerce-cart-form .table.shop_table tr .quantity input.is-invalid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row textarea.is-invalid:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row select.is-invalid:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.is-invalid:focus, .woocommerce-EditAccountForm.edit-account input.is-invalid:focus[type="text"],
  .woocommerce-EditAccountForm.edit-account input.is-invalid:focus[type="email"],
  .woocommerce-EditAccountForm.edit-account input.is-invalid:focus[type="password"],
  .login input.is-invalid:focus[type="text"], .login input.is-invalid:focus[type="password"],
  .woocommerce-ResetPassword.lost_reset_password input.is-invalid:focus[type="text"],
  .checkout.woocommerce-checkout input.is-invalid:focus[type="text"],
  .checkout.woocommerce-checkout input.is-invalid:focus[type="email"],
  .checkout.woocommerce-checkout input.is-invalid:focus[type="tel"],
  .checkout.woocommerce-checkout .is-invalid.select2-choice:focus,
  .checkout.woocommerce-checkout textarea.is-invalid:focus,
  .woocommerce form .form-row input.is-invalid.input-text:focus,
  .woocommerce form .form-row .is-invalid.select2-selection:focus,
  .woocommerce form .form-row .is-invalid.select2-choice:focus {
    border-color: #ff0003;
    box-shadow: 0 0 0 0rem rgba(255, 0, 3, 0.25); }

.was-validated textarea.form-control:invalid,
.was-validated .woocommerce #review_form #respond textarea:invalid, .woocommerce #review_form #respond .was-validated textarea:invalid, .was-validated .woocommerce-cart-form .table.shop_table tr td.actions .coupon textarea.input-text:invalid, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated textarea.input-text:invalid, .was-validated .woocommerce .woocommerce-checkout.checkout form .form-row textarea:invalid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated textarea:invalid,
.was-validated .checkout.woocommerce-checkout textarea:invalid, .checkout.woocommerce-checkout .was-validated textarea:invalid,
.was-validated .woocommerce form .form-row textarea.select2-selection:invalid, .woocommerce form .form-row .was-validated textarea.select2-selection:invalid,
.was-validated .woocommerce form .form-row textarea.select2-choice:invalid, .woocommerce form .form-row .was-validated textarea.select2-choice:invalid, textarea.form-control.is-invalid,
.woocommerce #review_form #respond textarea.is-invalid, .woocommerce-cart-form .table.shop_table tr td.actions .coupon textarea.is-invalid.input-text, .woocommerce .woocommerce-checkout.checkout form .form-row textarea.is-invalid,
.checkout.woocommerce-checkout textarea.is-invalid,
.woocommerce form .form-row textarea.is-invalid.select2-selection,
.woocommerce form .form-row textarea.is-invalid.select2-choice {
  padding-right: calc(1.6em + 0.75rem);
  background-position: top calc(0.4em + 0.1875rem) right calc(0.4em + 0.1875rem); }

.was-validated .form-select:invalid, .form-select.is-invalid {
  border-color: #ff0003; }
  .was-validated .form-select:invalid:not([multiple]):not([size]), .was-validated .form-select:invalid:not([multiple])[size="1"], .form-select.is-invalid:not([multiple]):not([size]), .form-select.is-invalid:not([multiple])[size="1"] {
    padding-right: 4.125rem;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"), url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ff0003'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23ff0003' stroke='none'/%3e%3c/svg%3e");
    background-position: right 0.75rem center, center right 2.25rem;
    background-size: 16px 12px, calc(0.8em + 0.375rem) calc(0.8em + 0.375rem); }
  .was-validated .form-select:invalid:focus, .form-select.is-invalid:focus {
    border-color: #ff0003;
    box-shadow: 0 0 0 0rem rgba(255, 0, 3, 0.25); }

.was-validated .form-check-input:invalid, .form-check-input.is-invalid {
  border-color: #ff0003; }
  .was-validated .form-check-input:invalid:checked, .form-check-input.is-invalid:checked {
    background-color: #ff0003; }
  .was-validated .form-check-input:invalid:focus, .form-check-input.is-invalid:focus {
    box-shadow: 0 0 0 0rem rgba(255, 0, 3, 0.25); }
  .was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
    color: #ff0003; }

.form-check-inline .form-check-input ~ .invalid-feedback {
  margin-left: .5em; }

.was-validated .input-group .form-control:invalid, .was-validated .input-group .wp-block-categories-dropdown select:invalid, .wp-block-categories-dropdown .was-validated .input-group select:invalid,
.was-validated .input-group .wp-block-archives-dropdown select:invalid, .wp-block-archives-dropdown .was-validated .input-group select:invalid, .was-validated .input-group .woocommerce #review_form #respond input:invalid[type="text"], .woocommerce #review_form #respond .was-validated .input-group input:invalid[type="text"],
.was-validated .input-group .woocommerce #review_form #respond textarea:invalid, .woocommerce #review_form #respond .was-validated .input-group textarea:invalid,
.was-validated .input-group .woocommerce #review_form #respond input:invalid[type="email"], .woocommerce #review_form #respond .was-validated .input-group input:invalid[type="email"], .was-validated .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:invalid, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated .input-group .input-text:invalid, .was-validated .input-group .woocommerce-cart-form .table.shop_table tr .quantity input:invalid, .woocommerce-cart-form .table.shop_table tr .quantity .was-validated .input-group input:invalid,
.was-validated .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select:invalid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated .input-group select:invalid,
.was-validated .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input:invalid, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated .input-group input:invalid, .was-validated .input-group .woocommerce-EditAccountForm.edit-account input:invalid[type="text"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:invalid[type="text"],
.was-validated .input-group .woocommerce-EditAccountForm.edit-account input:invalid[type="email"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:invalid[type="email"],
.was-validated .input-group .woocommerce-EditAccountForm.edit-account input:invalid[type="password"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:invalid[type="password"],
.was-validated .input-group .login input:invalid[type="text"], .login .was-validated .input-group input:invalid[type="text"], .was-validated .input-group .login input:invalid[type="password"], .login .was-validated .input-group input:invalid[type="password"],
.was-validated .input-group .woocommerce-ResetPassword.lost_reset_password input:invalid[type="text"], .woocommerce-ResetPassword.lost_reset_password .was-validated .input-group input:invalid[type="text"],
.was-validated .input-group .checkout.woocommerce-checkout input:invalid[type="text"], .checkout.woocommerce-checkout .was-validated .input-group input:invalid[type="text"],
.was-validated .input-group .checkout.woocommerce-checkout input:invalid[type="email"], .checkout.woocommerce-checkout .was-validated .input-group input:invalid[type="email"],
.was-validated .input-group .checkout.woocommerce-checkout input:invalid[type="tel"], .checkout.woocommerce-checkout .was-validated .input-group input:invalid[type="tel"],
.was-validated .input-group .checkout.woocommerce-checkout .select2-choice:invalid, .checkout.woocommerce-checkout .was-validated .input-group .select2-choice:invalid,
.was-validated .input-group .checkout.woocommerce-checkout textarea:invalid, .checkout.woocommerce-checkout .was-validated .input-group textarea:invalid,
.was-validated .input-group .woocommerce form .form-row input.input-text:invalid, .woocommerce form .form-row .was-validated .input-group input.input-text:invalid,
.was-validated .input-group .woocommerce form .form-row .select2-selection:invalid, .woocommerce form .form-row .was-validated .input-group .select2-selection:invalid,
.was-validated .input-group .woocommerce form .form-row .select2-choice:invalid, .woocommerce form .form-row .was-validated .input-group .select2-choice:invalid, .input-group .form-control.is-invalid, .input-group .wp-block-categories-dropdown select.is-invalid, .wp-block-categories-dropdown .input-group select.is-invalid,
.input-group .wp-block-archives-dropdown select.is-invalid, .wp-block-archives-dropdown .input-group select.is-invalid, .input-group .woocommerce #review_form #respond input.is-invalid[type="text"], .woocommerce #review_form #respond .input-group input.is-invalid[type="text"],
.input-group .woocommerce #review_form #respond textarea.is-invalid, .woocommerce #review_form #respond .input-group textarea.is-invalid,
.input-group .woocommerce #review_form #respond input.is-invalid[type="email"], .woocommerce #review_form #respond .input-group input.is-invalid[type="email"], .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .is-invalid.input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-group .is-invalid.input-text, .input-group .woocommerce-cart-form .table.shop_table tr .quantity input.is-invalid, .woocommerce-cart-form .table.shop_table tr .quantity .input-group input.is-invalid, .input-group .woocommerce .woocommerce-checkout.checkout form .form-row textarea.is-invalid, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group textarea.is-invalid,
.input-group .woocommerce .woocommerce-checkout.checkout form .form-row select.is-invalid, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group select.is-invalid,
.input-group .woocommerce .woocommerce-checkout.checkout form .form-row input.is-invalid, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group input.is-invalid, .input-group .woocommerce-EditAccountForm.edit-account input.is-invalid[type="text"], .woocommerce-EditAccountForm.edit-account .input-group input.is-invalid[type="text"],
.input-group .woocommerce-EditAccountForm.edit-account input.is-invalid[type="email"], .woocommerce-EditAccountForm.edit-account .input-group input.is-invalid[type="email"],
.input-group .woocommerce-EditAccountForm.edit-account input.is-invalid[type="password"], .woocommerce-EditAccountForm.edit-account .input-group input.is-invalid[type="password"],
.input-group .login input.is-invalid[type="text"], .login .input-group input.is-invalid[type="text"], .input-group .login input.is-invalid[type="password"], .login .input-group input.is-invalid[type="password"],
.input-group .woocommerce-ResetPassword.lost_reset_password input.is-invalid[type="text"], .woocommerce-ResetPassword.lost_reset_password .input-group input.is-invalid[type="text"],
.input-group .checkout.woocommerce-checkout input.is-invalid[type="text"], .checkout.woocommerce-checkout .input-group input.is-invalid[type="text"],
.input-group .checkout.woocommerce-checkout input.is-invalid[type="email"], .checkout.woocommerce-checkout .input-group input.is-invalid[type="email"],
.input-group .checkout.woocommerce-checkout input.is-invalid[type="tel"], .checkout.woocommerce-checkout .input-group input.is-invalid[type="tel"],
.input-group .checkout.woocommerce-checkout .is-invalid.select2-choice, .checkout.woocommerce-checkout .input-group .is-invalid.select2-choice,
.input-group .checkout.woocommerce-checkout textarea.is-invalid, .checkout.woocommerce-checkout .input-group textarea.is-invalid,
.input-group .woocommerce form .form-row input.is-invalid.input-text, .woocommerce form .form-row .input-group input.is-invalid.input-text,
.input-group .woocommerce form .form-row .is-invalid.select2-selection, .woocommerce form .form-row .input-group .is-invalid.select2-selection,
.input-group .woocommerce form .form-row .is-invalid.select2-choice, .woocommerce form .form-row .input-group .is-invalid.select2-choice, .was-validated
.input-group .form-select:invalid,
.input-group .form-select.is-invalid {
  z-index: 2; }
  .was-validated .input-group .form-control:invalid:focus, .was-validated .input-group .wp-block-categories-dropdown select:invalid:focus, .wp-block-categories-dropdown .was-validated .input-group select:invalid:focus,
  .was-validated .input-group .wp-block-archives-dropdown select:invalid:focus, .wp-block-archives-dropdown .was-validated .input-group select:invalid:focus, .was-validated .input-group .woocommerce #review_form #respond input:invalid:focus[type="text"], .woocommerce #review_form #respond .was-validated .input-group input:invalid:focus[type="text"],
  .was-validated .input-group .woocommerce #review_form #respond textarea:invalid:focus, .woocommerce #review_form #respond .was-validated .input-group textarea:invalid:focus,
  .was-validated .input-group .woocommerce #review_form #respond input:invalid:focus[type="email"], .woocommerce #review_form #respond .was-validated .input-group input:invalid:focus[type="email"], .was-validated .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:invalid:focus, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .was-validated .input-group .input-text:invalid:focus, .was-validated .input-group .woocommerce-cart-form .table.shop_table tr .quantity input:invalid:focus, .woocommerce-cart-form .table.shop_table tr .quantity .was-validated .input-group input:invalid:focus,
  .was-validated .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select:invalid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated .input-group select:invalid:focus,
  .was-validated .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input:invalid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .was-validated .input-group input:invalid:focus, .was-validated .input-group .woocommerce-EditAccountForm.edit-account input:invalid:focus[type="text"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:invalid:focus[type="text"],
  .was-validated .input-group .woocommerce-EditAccountForm.edit-account input:invalid:focus[type="email"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:invalid:focus[type="email"],
  .was-validated .input-group .woocommerce-EditAccountForm.edit-account input:invalid:focus[type="password"], .woocommerce-EditAccountForm.edit-account .was-validated .input-group input:invalid:focus[type="password"],
  .was-validated .input-group .login input:invalid:focus[type="text"], .login .was-validated .input-group input:invalid:focus[type="text"], .was-validated .input-group .login input:invalid:focus[type="password"], .login .was-validated .input-group input:invalid:focus[type="password"],
  .was-validated .input-group .woocommerce-ResetPassword.lost_reset_password input:invalid:focus[type="text"], .woocommerce-ResetPassword.lost_reset_password .was-validated .input-group input:invalid:focus[type="text"],
  .was-validated .input-group .checkout.woocommerce-checkout input:invalid:focus[type="text"], .checkout.woocommerce-checkout .was-validated .input-group input:invalid:focus[type="text"],
  .was-validated .input-group .checkout.woocommerce-checkout input:invalid:focus[type="email"], .checkout.woocommerce-checkout .was-validated .input-group input:invalid:focus[type="email"],
  .was-validated .input-group .checkout.woocommerce-checkout input:invalid:focus[type="tel"], .checkout.woocommerce-checkout .was-validated .input-group input:invalid:focus[type="tel"],
  .was-validated .input-group .checkout.woocommerce-checkout .select2-choice:invalid:focus, .checkout.woocommerce-checkout .was-validated .input-group .select2-choice:invalid:focus,
  .was-validated .input-group .checkout.woocommerce-checkout textarea:invalid:focus, .checkout.woocommerce-checkout .was-validated .input-group textarea:invalid:focus,
  .was-validated .input-group .woocommerce form .form-row input.input-text:invalid:focus, .woocommerce form .form-row .was-validated .input-group input.input-text:invalid:focus,
  .was-validated .input-group .woocommerce form .form-row .select2-selection:invalid:focus, .woocommerce form .form-row .was-validated .input-group .select2-selection:invalid:focus,
  .was-validated .input-group .woocommerce form .form-row .select2-choice:invalid:focus, .woocommerce form .form-row .was-validated .input-group .select2-choice:invalid:focus, .input-group .form-control.is-invalid:focus, .input-group .wp-block-categories-dropdown select.is-invalid:focus, .wp-block-categories-dropdown .input-group select.is-invalid:focus,
  .input-group .wp-block-archives-dropdown select.is-invalid:focus, .wp-block-archives-dropdown .input-group select.is-invalid:focus, .input-group .woocommerce #review_form #respond input.is-invalid:focus[type="text"], .woocommerce #review_form #respond .input-group input.is-invalid:focus[type="text"],
  .input-group .woocommerce #review_form #respond textarea.is-invalid:focus, .woocommerce #review_form #respond .input-group textarea.is-invalid:focus,
  .input-group .woocommerce #review_form #respond input.is-invalid:focus[type="email"], .woocommerce #review_form #respond .input-group input.is-invalid:focus[type="email"], .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .is-invalid.input-text:focus, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-group .is-invalid.input-text:focus, .input-group .woocommerce-cart-form .table.shop_table tr .quantity input.is-invalid:focus, .woocommerce-cart-form .table.shop_table tr .quantity .input-group input.is-invalid:focus,
  .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select.is-invalid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group select.is-invalid:focus,
  .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input.is-invalid:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .input-group input.is-invalid:focus, .input-group .woocommerce-EditAccountForm.edit-account input.is-invalid:focus[type="text"], .woocommerce-EditAccountForm.edit-account .input-group input.is-invalid:focus[type="text"],
  .input-group .woocommerce-EditAccountForm.edit-account input.is-invalid:focus[type="email"], .woocommerce-EditAccountForm.edit-account .input-group input.is-invalid:focus[type="email"],
  .input-group .woocommerce-EditAccountForm.edit-account input.is-invalid:focus[type="password"], .woocommerce-EditAccountForm.edit-account .input-group input.is-invalid:focus[type="password"],
  .input-group .login input.is-invalid:focus[type="text"], .login .input-group input.is-invalid:focus[type="text"], .input-group .login input.is-invalid:focus[type="password"], .login .input-group input.is-invalid:focus[type="password"],
  .input-group .woocommerce-ResetPassword.lost_reset_password input.is-invalid:focus[type="text"], .woocommerce-ResetPassword.lost_reset_password .input-group input.is-invalid:focus[type="text"],
  .input-group .checkout.woocommerce-checkout input.is-invalid:focus[type="text"], .checkout.woocommerce-checkout .input-group input.is-invalid:focus[type="text"],
  .input-group .checkout.woocommerce-checkout input.is-invalid:focus[type="email"], .checkout.woocommerce-checkout .input-group input.is-invalid:focus[type="email"],
  .input-group .checkout.woocommerce-checkout input.is-invalid:focus[type="tel"], .checkout.woocommerce-checkout .input-group input.is-invalid:focus[type="tel"],
  .input-group .checkout.woocommerce-checkout .is-invalid.select2-choice:focus, .checkout.woocommerce-checkout .input-group .is-invalid.select2-choice:focus,
  .input-group .checkout.woocommerce-checkout textarea.is-invalid:focus, .checkout.woocommerce-checkout .input-group textarea.is-invalid:focus,
  .input-group .woocommerce form .form-row input.is-invalid.input-text:focus, .woocommerce form .form-row .input-group input.is-invalid.input-text:focus,
  .input-group .woocommerce form .form-row .is-invalid.select2-selection:focus, .woocommerce form .form-row .input-group .is-invalid.select2-selection:focus,
  .input-group .woocommerce form .form-row .is-invalid.select2-choice:focus, .woocommerce form .form-row .input-group .is-invalid.select2-choice:focus, .was-validated
  .input-group .form-select:invalid:focus,
  .input-group .form-select.is-invalid:focus {
    z-index: 3; }

.btn, .wp-block-button__link, .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a, .woocommerce #review_form #respond .form-submit input, .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order {
  display: inline-block;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 0.9375rem;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .btn, .wp-block-button__link, .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a,
    .woocommerce.widget_shopping_cart .buttons a, .woocommerce #review_form #respond .form-submit input, .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce #respond input#submit,
    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button,
    .woocommerce #place_order {
      transition: none; } }
  .btn:hover, .wp-block-button__link:hover, .appointment-page-1 .wizard-form .btn.sw-btn-prev:hover, .appointment-page-1 .wizard-form .btn.sw-btn-next:hover, .woocommerce .widget_shopping_cart .buttons a:hover,
  .woocommerce.widget_shopping_cart .buttons a:hover, .woocommerce #review_form #respond .form-submit input:hover, .woocommerce-cart-form .table.shop_table tr .button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce #respond input#submit:hover,
  .woocommerce a.button:hover,
  .woocommerce button.button:hover,
  .woocommerce input.button:hover,
  .woocommerce #place_order:hover {
    color: #666666; }
  .btn-check:focus + .btn, .btn-check:focus + .wp-block-button__link, .appointment-page-1 .wizard-form .btn-check:focus + .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-check:focus + .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-check:focus + a,
  .woocommerce.widget_shopping_cart .buttons .btn-check:focus + a, .woocommerce #review_form #respond .form-submit .btn-check:focus + input, .woocommerce-cart-form .table.shop_table tr .btn-check:focus + .button, .woocommerce-cart .wc-proceed-to-checkout .btn-check:focus + a.checkout-button, .woocommerce #respond .btn-check:focus + input#submit,
  .woocommerce .btn-check:focus + a.button,
  .woocommerce .btn-check:focus + button.button,
  .woocommerce .btn-check:focus + input.button,
  .woocommerce .btn-check:focus + #place_order, .btn:focus, .wp-block-button__link:focus, .appointment-page-1 .wizard-form .btn.sw-btn-prev:focus, .appointment-page-1 .wizard-form .btn.sw-btn-next:focus, .woocommerce .widget_shopping_cart .buttons a:focus,
  .woocommerce.widget_shopping_cart .buttons a:focus, .woocommerce #review_form #respond .form-submit input:focus, .woocommerce-cart-form .table.shop_table tr .button:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus, .woocommerce #respond input#submit:focus,
  .woocommerce a.button:focus,
  .woocommerce button.button:focus,
  .woocommerce input.button:focus,
  .woocommerce #place_order:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(255, 129, 57, 0.25); }
  .btn:disabled, .wp-block-button__link:disabled, .appointment-page-1 .wizard-form .btn.sw-btn-prev:disabled, .appointment-page-1 .wizard-form .btn.sw-btn-next:disabled, .woocommerce .widget_shopping_cart .buttons a:disabled,
  .woocommerce.widget_shopping_cart .buttons a:disabled, .woocommerce #review_form #respond .form-submit input:disabled, .woocommerce-cart-form .table.shop_table tr .button:disabled, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:disabled, .woocommerce #respond input#submit:disabled,
  .woocommerce a.button:disabled,
  .woocommerce button.button:disabled,
  .woocommerce input.button:disabled,
  .woocommerce #place_order:disabled, .btn.disabled, .disabled.wp-block-button__link, .appointment-page-1 .wizard-form .disabled.btn.sw-btn-prev, .appointment-page-1 .wizard-form .disabled.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.disabled,
  .woocommerce.widget_shopping_cart .buttons a.disabled, .woocommerce #review_form #respond .form-submit input.disabled, .woocommerce-cart-form .table.shop_table tr .disabled.button, .woocommerce-cart .wc-proceed-to-checkout a.disabled.checkout-button, .woocommerce #respond input.disabled#submit,
  .woocommerce a.disabled.button,
  .woocommerce button.disabled.button,
  .woocommerce input.disabled.button,
  .woocommerce .disabled#place_order,
  fieldset:disabled .btn,
  fieldset:disabled .wp-block-button__link,
  fieldset:disabled .appointment-page-1 .wizard-form .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form fieldset:disabled .btn.sw-btn-prev,
  fieldset:disabled .appointment-page-1 .wizard-form .btn.sw-btn-next,
  .appointment-page-1 .wizard-form fieldset:disabled .btn.sw-btn-next,
  fieldset:disabled .woocommerce .widget_shopping_cart .buttons a,
  .woocommerce .widget_shopping_cart .buttons fieldset:disabled a,
  fieldset:disabled .woocommerce.widget_shopping_cart .buttons a,
  .woocommerce.widget_shopping_cart .buttons fieldset:disabled a,
  fieldset:disabled .woocommerce #review_form #respond .form-submit input,
  .woocommerce #review_form #respond .form-submit fieldset:disabled input,
  fieldset:disabled .woocommerce-cart-form .table.shop_table tr .button,
  .woocommerce-cart-form .table.shop_table tr fieldset:disabled .button,
  fieldset:disabled .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
  .woocommerce-cart .wc-proceed-to-checkout fieldset:disabled a.checkout-button,
  fieldset:disabled .woocommerce #respond input#submit,
  .woocommerce #respond fieldset:disabled input#submit,
  fieldset:disabled .woocommerce a.button,
  .woocommerce fieldset:disabled a.button,
  fieldset:disabled .woocommerce button.button,
  .woocommerce fieldset:disabled button.button,
  fieldset:disabled .woocommerce input.button,
  .woocommerce fieldset:disabled input.button,
  fieldset:disabled .woocommerce #place_order,
  .woocommerce fieldset:disabled #place_order {
    pointer-events: none;
    opacity: 0.65; }

.btn-primary, .wp-block-button__link, .appointment-page-1 .wizard-form .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a, .woocommerce #review_form #respond .form-submit input, .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order {
  color: #000;
  background-color: #FF8139;
  border-color: #FF8139; }
  .btn-primary:hover, .wp-block-button__link:hover, .appointment-page-1 .wizard-form .btn.sw-btn-next:hover, .woocommerce .widget_shopping_cart .buttons a:hover,
  .woocommerce.widget_shopping_cart .buttons a:hover, .woocommerce #review_form #respond .form-submit input:hover, .woocommerce-cart-form .table.shop_table tr .button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce #respond input#submit:hover,
  .woocommerce a.button:hover,
  .woocommerce button.button:hover,
  .woocommerce input.button:hover,
  .woocommerce #place_order:hover {
    color: #000;
    background-color: #ff9457;
    border-color: #ff8e4d; }
  .btn-check:focus + .btn-primary, .btn-check:focus + .wp-block-button__link, .appointment-page-1 .wizard-form .btn-check:focus + .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-check:focus + a,
  .woocommerce.widget_shopping_cart .buttons .btn-check:focus + a, .woocommerce #review_form #respond .form-submit .btn-check:focus + input, .woocommerce-cart-form .table.shop_table tr .btn-check:focus + .button, .woocommerce-cart .wc-proceed-to-checkout .btn-check:focus + a.checkout-button, .woocommerce #respond .btn-check:focus + input#submit,
  .woocommerce .btn-check:focus + a.button,
  .woocommerce .btn-check:focus + button.button,
  .woocommerce .btn-check:focus + input.button,
  .woocommerce .btn-check:focus + #place_order, .btn-primary:focus, .wp-block-button__link:focus, .appointment-page-1 .wizard-form .btn.sw-btn-next:focus, .woocommerce .widget_shopping_cart .buttons a:focus,
  .woocommerce.widget_shopping_cart .buttons a:focus, .woocommerce #review_form #respond .form-submit input:focus, .woocommerce-cart-form .table.shop_table tr .button:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus, .woocommerce #respond input#submit:focus,
  .woocommerce a.button:focus,
  .woocommerce button.button:focus,
  .woocommerce input.button:focus,
  .woocommerce #place_order:focus {
    color: #000;
    background-color: #ff9457;
    border-color: #ff8e4d;
    box-shadow: 0 0 0 0rem rgba(217, 110, 48, 0.5); }
  .btn-check:checked + .btn-primary, .btn-check:checked + .wp-block-button__link, .appointment-page-1 .wizard-form .btn-check:checked + .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-check:checked + a,
  .woocommerce.widget_shopping_cart .buttons .btn-check:checked + a, .woocommerce #review_form #respond .form-submit .btn-check:checked + input, .woocommerce-cart-form .table.shop_table tr .btn-check:checked + .button, .woocommerce-cart .wc-proceed-to-checkout .btn-check:checked + a.checkout-button, .woocommerce #respond .btn-check:checked + input#submit,
  .woocommerce .btn-check:checked + a.button,
  .woocommerce .btn-check:checked + button.button,
  .woocommerce .btn-check:checked + input.button,
  .woocommerce .btn-check:checked + #place_order,
  .btn-check:active + .btn-primary,
  .btn-check:active + .wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-check:active + .btn.sw-btn-next,
  .woocommerce .widget_shopping_cart .buttons .btn-check:active + a,
  .woocommerce.widget_shopping_cart .buttons .btn-check:active + a,
  .woocommerce #review_form #respond .form-submit .btn-check:active + input,
  .woocommerce-cart-form .table.shop_table tr .btn-check:active + .button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-check:active + a.checkout-button,
  .woocommerce #respond .btn-check:active + input#submit,
  .woocommerce .btn-check:active + a.button,
  .woocommerce .btn-check:active + button.button,
  .woocommerce .btn-check:active + input.button,
  .woocommerce .btn-check:active + #place_order, .btn-primary:active, .wp-block-button__link:active, .appointment-page-1 .wizard-form .sw-btn-next.wp-block-button__link:active, .appointment-page-1 .wizard-form .sw-btn-next.btn:active,
  .appointment-page-1 .wizard-form .woocommerce a.sw-btn-next.button:active, .woocommerce .appointment-page-1 .wizard-form a.sw-btn-next.button:active,
  .appointment-page-1 .wizard-form .woocommerce button.sw-btn-next.button:active, .woocommerce .appointment-page-1 .wizard-form button.sw-btn-next.button:active,
  .appointment-page-1 .wizard-form .woocommerce input.sw-btn-next.button:active, .woocommerce .appointment-page-1 .wizard-form input.sw-btn-next.button:active, .woocommerce .widget_shopping_cart .buttons a:active,
  .woocommerce.widget_shopping_cart .buttons a:active, .woocommerce #review_form #respond .form-submit input:active, .woocommerce-cart-form .table.shop_table tr .button:active, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:active, .woocommerce #respond input#submit:active,
  .woocommerce a.button:active,
  .woocommerce button.button:active,
  .woocommerce input.button:active,
  .woocommerce #place_order:active, .btn-primary.active, .active.wp-block-button__link, .appointment-page-1 .wizard-form .active.sw-btn-next.wp-block-button__link, .appointment-page-1 .wizard-form .active.sw-btn-next.btn,
  .appointment-page-1 .wizard-form .woocommerce a.active.sw-btn-next.button, .woocommerce .appointment-page-1 .wizard-form a.active.sw-btn-next.button,
  .appointment-page-1 .wizard-form .woocommerce button.active.sw-btn-next.button, .woocommerce .appointment-page-1 .wizard-form button.active.sw-btn-next.button,
  .appointment-page-1 .wizard-form .woocommerce input.active.sw-btn-next.button, .woocommerce .appointment-page-1 .wizard-form input.active.sw-btn-next.button, .woocommerce .widget_shopping_cart .buttons a.active,
  .woocommerce.widget_shopping_cart .buttons a.active, .woocommerce #review_form #respond .form-submit input.active, .woocommerce-cart-form .table.shop_table tr .active.button, .woocommerce-cart .wc-proceed-to-checkout a.active.checkout-button, .woocommerce #respond input.active#submit,
  .woocommerce a.active.button,
  .woocommerce button.active.button,
  .woocommerce input.active.button,
  .woocommerce .active#place_order,
  .show > .btn-primary.dropdown-toggle,
  .show > .dropdown-toggle.wp-block-button__link,
  .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-next.wp-block-button__link,
  .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-next.btn,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-next,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-next,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-next,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-next.button,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-next.checkout-button,
  .woocommerce #respond .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-next#submit,
  .woocommerce .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-next.button,
  .woocommerce .appointment-page-1 .wizard-form .show > button.dropdown-toggle.sw-btn-next.button,
  .woocommerce .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-next.button,
  .woocommerce .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-next#place_order,
  .woocommerce .widget_shopping_cart .buttons .show > a.dropdown-toggle,
  .woocommerce.widget_shopping_cart .buttons .show > a.dropdown-toggle,
  .woocommerce #review_form #respond .form-submit .show > input.dropdown-toggle,
  .woocommerce-cart-form .table.shop_table tr .show > .dropdown-toggle.button,
  .woocommerce-cart .wc-proceed-to-checkout .show > a.dropdown-toggle.checkout-button,
  .woocommerce #respond .show > input.dropdown-toggle#submit,
  .woocommerce .show > a.dropdown-toggle.button,
  .woocommerce .show > button.dropdown-toggle.button,
  .woocommerce .show > input.dropdown-toggle.button,
  .woocommerce .show > .dropdown-toggle#place_order {
    color: #000;
    background-color: #ff9a61;
    border-color: #ff8e4d; }
    .btn-check:checked + .btn-primary:focus, .btn-check:checked + .wp-block-button__link:focus, .appointment-page-1 .wizard-form .btn-check:checked + .btn.sw-btn-next:focus, .woocommerce .widget_shopping_cart .buttons .btn-check:checked + a:focus,
    .woocommerce.widget_shopping_cart .buttons .btn-check:checked + a:focus, .woocommerce #review_form #respond .form-submit .btn-check:checked + input:focus, .woocommerce-cart-form .table.shop_table tr .btn-check:checked + .button:focus, .woocommerce-cart .wc-proceed-to-checkout .btn-check:checked + a.checkout-button:focus, .woocommerce #respond .btn-check:checked + input#submit:focus,
    .woocommerce .btn-check:checked + a.button:focus,
    .woocommerce .btn-check:checked + button.button:focus,
    .woocommerce .btn-check:checked + input.button:focus,
    .woocommerce .btn-check:checked + #place_order:focus,
    .btn-check:active + .btn-primary:focus,
    .btn-check:active + .wp-block-button__link:focus,
    .appointment-page-1 .wizard-form .btn-check:active + .btn.sw-btn-next:focus,
    .woocommerce .widget_shopping_cart .buttons .btn-check:active + a:focus,
    .woocommerce.widget_shopping_cart .buttons .btn-check:active + a:focus,
    .woocommerce #review_form #respond .form-submit .btn-check:active + input:focus,
    .woocommerce-cart-form .table.shop_table tr .btn-check:active + .button:focus,
    .woocommerce-cart .wc-proceed-to-checkout .btn-check:active + a.checkout-button:focus,
    .woocommerce #respond .btn-check:active + input#submit:focus,
    .woocommerce .btn-check:active + a.button:focus,
    .woocommerce .btn-check:active + button.button:focus,
    .woocommerce .btn-check:active + input.button:focus,
    .woocommerce .btn-check:active + #place_order:focus, .btn-primary:active:focus, .wp-block-button__link:active:focus, .appointment-page-1 .wizard-form .sw-btn-next.wp-block-button__link:active:focus, .appointment-page-1 .wizard-form .sw-btn-next.btn:active:focus, .woocommerce .widget_shopping_cart .buttons a:active:focus,
    .woocommerce.widget_shopping_cart .buttons a:active:focus, .woocommerce #review_form #respond .form-submit input:active:focus, .woocommerce-cart-form .table.shop_table tr .button:active:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:active:focus, .woocommerce #respond input#submit:active:focus,
    .woocommerce a.button:active:focus,
    .woocommerce button.button:active:focus,
    .woocommerce input.button:active:focus,
    .woocommerce #place_order:active:focus, .btn-primary.active:focus, .active.wp-block-button__link:focus, .appointment-page-1 .wizard-form .active.sw-btn-next.wp-block-button__link:focus, .appointment-page-1 .wizard-form .active.sw-btn-next.btn:focus, .woocommerce .widget_shopping_cart .buttons a.active:focus,
    .woocommerce.widget_shopping_cart .buttons a.active:focus, .woocommerce #review_form #respond .form-submit input.active:focus, .woocommerce-cart-form .table.shop_table tr .active.button:focus, .woocommerce-cart .wc-proceed-to-checkout a.active.checkout-button:focus, .woocommerce #respond input.active#submit:focus,
    .woocommerce a.active.button:focus,
    .woocommerce button.active.button:focus,
    .woocommerce input.active.button:focus,
    .woocommerce .active#place_order:focus,
    .show > .btn-primary.dropdown-toggle:focus,
    .show > .dropdown-toggle.wp-block-button__link:focus,
    .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-next.wp-block-button__link:focus,
    .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-next.btn:focus,
    .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-next:focus,
    .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-next:focus,
    .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-next:focus,
    .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-next.button:focus,
    .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-next.checkout-button:focus,
    .woocommerce #respond .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-next#submit:focus,
    .woocommerce .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-next.button:focus,
    .woocommerce .appointment-page-1 .wizard-form .show > button.dropdown-toggle.sw-btn-next.button:focus,
    .woocommerce .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-next.button:focus,
    .woocommerce .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-next#place_order:focus,
    .woocommerce .widget_shopping_cart .buttons .show > a.dropdown-toggle:focus,
    .woocommerce.widget_shopping_cart .buttons .show > a.dropdown-toggle:focus,
    .woocommerce #review_form #respond .form-submit .show > input.dropdown-toggle:focus,
    .woocommerce-cart-form .table.shop_table tr .show > .dropdown-toggle.button:focus,
    .woocommerce-cart .wc-proceed-to-checkout .show > a.dropdown-toggle.checkout-button:focus,
    .woocommerce #respond .show > input.dropdown-toggle#submit:focus,
    .woocommerce .show > a.dropdown-toggle.button:focus,
    .woocommerce .show > button.dropdown-toggle.button:focus,
    .woocommerce .show > input.dropdown-toggle.button:focus,
    .woocommerce .show > .dropdown-toggle#place_order:focus {
      box-shadow: 0 0 0 0rem rgba(217, 110, 48, 0.5); }
  .btn-primary:disabled, .wp-block-button__link:disabled, .appointment-page-1 .wizard-form .btn.sw-btn-next:disabled, .woocommerce .widget_shopping_cart .buttons a:disabled,
  .woocommerce.widget_shopping_cart .buttons a:disabled, .woocommerce #review_form #respond .form-submit input:disabled, .woocommerce-cart-form .table.shop_table tr .button:disabled, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:disabled, .woocommerce #respond input#submit:disabled,
  .woocommerce a.button:disabled,
  .woocommerce button.button:disabled,
  .woocommerce input.button:disabled,
  .woocommerce #place_order:disabled, .btn-primary.disabled, .disabled.wp-block-button__link, .appointment-page-1 .wizard-form .disabled.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.disabled,
  .woocommerce.widget_shopping_cart .buttons a.disabled, .woocommerce #review_form #respond .form-submit input.disabled, .woocommerce-cart-form .table.shop_table tr .disabled.button, .woocommerce-cart .wc-proceed-to-checkout a.disabled.checkout-button, .woocommerce #respond input.disabled#submit,
  .woocommerce a.disabled.button,
  .woocommerce button.disabled.button,
  .woocommerce input.disabled.button,
  .woocommerce .disabled#place_order {
    color: #000;
    background-color: #FF8139;
    border-color: #FF8139; }

.btn-secondary, .appointment-page-1 .wizard-form .btn.sw-btn-prev {
  color: #fff;
  background-color: #232323;
  border-color: #232323; }
  .btn-secondary:hover, .appointment-page-1 .wizard-form .btn.sw-btn-prev:hover {
    color: #fff;
    background-color: #1e1e1e;
    border-color: #1c1c1c; }
  .btn-check:focus + .btn-secondary, .appointment-page-1 .wizard-form .btn-check:focus + .btn.sw-btn-prev, .btn-secondary:focus, .appointment-page-1 .wizard-form .btn.sw-btn-prev:focus {
    color: #fff;
    background-color: #1e1e1e;
    border-color: #1c1c1c;
    box-shadow: 0 0 0 0rem rgba(68, 68, 68, 0.5); }
  .btn-check:checked + .btn-secondary, .appointment-page-1 .wizard-form .btn-check:checked + .btn.sw-btn-prev,
  .btn-check:active + .btn-secondary,
  .appointment-page-1 .wizard-form .btn-check:active + .btn.sw-btn-prev, .btn-secondary:active, .appointment-page-1 .wizard-form .sw-btn-prev.wp-block-button__link:active, .appointment-page-1 .wizard-form .sw-btn-prev.btn:active, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.sw-btn-prev:active, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev:active,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.sw-btn-prev:active, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev:active, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.sw-btn-prev:active, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.sw-btn-prev:active, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .sw-btn-prev.button:active, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .sw-btn-prev.button:active, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.sw-btn-prev.checkout-button:active, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.sw-btn-prev.checkout-button:active, .appointment-page-1 .wizard-form .woocommerce #respond input.sw-btn-prev#submit:active, .woocommerce #respond .appointment-page-1 .wizard-form input.sw-btn-prev#submit:active,
  .appointment-page-1 .wizard-form .woocommerce a.sw-btn-prev.button:active, .woocommerce .appointment-page-1 .wizard-form a.sw-btn-prev.button:active,
  .appointment-page-1 .wizard-form .woocommerce button.sw-btn-prev.button:active, .woocommerce .appointment-page-1 .wizard-form button.sw-btn-prev.button:active,
  .appointment-page-1 .wizard-form .woocommerce input.sw-btn-prev.button:active, .woocommerce .appointment-page-1 .wizard-form input.sw-btn-prev.button:active,
  .appointment-page-1 .wizard-form .woocommerce .sw-btn-prev#place_order:active, .woocommerce .appointment-page-1 .wizard-form .sw-btn-prev#place_order:active, .btn-secondary.active, .appointment-page-1 .wizard-form .active.sw-btn-prev.wp-block-button__link, .appointment-page-1 .wizard-form .active.sw-btn-prev.btn, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.active.sw-btn-prev, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.active.sw-btn-prev,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.active.sw-btn-prev, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.active.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.active.sw-btn-prev, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.active.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .active.sw-btn-prev.button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .active.sw-btn-prev.button, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.active.sw-btn-prev.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.active.sw-btn-prev.checkout-button, .appointment-page-1 .wizard-form .woocommerce #respond input.active.sw-btn-prev#submit, .woocommerce #respond .appointment-page-1 .wizard-form input.active.sw-btn-prev#submit,
  .appointment-page-1 .wizard-form .woocommerce a.active.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form a.active.sw-btn-prev.button,
  .appointment-page-1 .wizard-form .woocommerce button.active.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form button.active.sw-btn-prev.button,
  .appointment-page-1 .wizard-form .woocommerce input.active.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form input.active.sw-btn-prev.button,
  .appointment-page-1 .wizard-form .woocommerce .active.sw-btn-prev#place_order, .woocommerce .appointment-page-1 .wizard-form .active.sw-btn-prev#place_order,
  .show > .btn-secondary.dropdown-toggle,
  .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-prev.wp-block-button__link,
  .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-prev.btn,
  .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons .show > a.dropdown-toggle.sw-btn-prev,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-prev,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons .show > a.dropdown-toggle.sw-btn-prev,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-prev,
  .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit .show > input.dropdown-toggle.sw-btn-prev,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-prev,
  .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .show > .dropdown-toggle.sw-btn-prev.button,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-prev.button,
  .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout .show > a.dropdown-toggle.sw-btn-prev.checkout-button,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-prev.checkout-button,
  .appointment-page-1 .wizard-form .woocommerce #respond .show > input.dropdown-toggle.sw-btn-prev#submit,
  .woocommerce #respond .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-prev#submit,
  .appointment-page-1 .wizard-form .woocommerce .show > a.dropdown-toggle.sw-btn-prev.button,
  .woocommerce .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-prev.button,
  .appointment-page-1 .wizard-form .woocommerce .show > button.dropdown-toggle.sw-btn-prev.button,
  .woocommerce .appointment-page-1 .wizard-form .show > button.dropdown-toggle.sw-btn-prev.button,
  .appointment-page-1 .wizard-form .woocommerce .show > input.dropdown-toggle.sw-btn-prev.button,
  .woocommerce .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-prev.button,
  .appointment-page-1 .wizard-form .woocommerce .show > .dropdown-toggle.sw-btn-prev#place_order,
  .woocommerce .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-prev#place_order {
    color: #fff;
    background-color: #1c1c1c;
    border-color: #1a1a1a; }
    .btn-check:checked + .btn-secondary:focus, .appointment-page-1 .wizard-form .btn-check:checked + .btn.sw-btn-prev:focus,
    .btn-check:active + .btn-secondary:focus,
    .appointment-page-1 .wizard-form .btn-check:active + .btn.sw-btn-prev:focus, .btn-secondary:active:focus, .appointment-page-1 .wizard-form .sw-btn-prev.wp-block-button__link:active:focus, .appointment-page-1 .wizard-form .sw-btn-prev.btn:active:focus, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.sw-btn-prev:active:focus, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev:active:focus,
    .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.sw-btn-prev:active:focus, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev:active:focus, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.sw-btn-prev:active:focus, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.sw-btn-prev:active:focus, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .sw-btn-prev.button:active:focus, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .sw-btn-prev.button:active:focus, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.sw-btn-prev.checkout-button:active:focus, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.sw-btn-prev.checkout-button:active:focus, .appointment-page-1 .wizard-form .woocommerce #respond input.sw-btn-prev#submit:active:focus, .woocommerce #respond .appointment-page-1 .wizard-form input.sw-btn-prev#submit:active:focus,
    .appointment-page-1 .wizard-form .woocommerce a.sw-btn-prev.button:active:focus, .woocommerce .appointment-page-1 .wizard-form a.sw-btn-prev.button:active:focus,
    .appointment-page-1 .wizard-form .woocommerce button.sw-btn-prev.button:active:focus, .woocommerce .appointment-page-1 .wizard-form button.sw-btn-prev.button:active:focus,
    .appointment-page-1 .wizard-form .woocommerce input.sw-btn-prev.button:active:focus, .woocommerce .appointment-page-1 .wizard-form input.sw-btn-prev.button:active:focus,
    .appointment-page-1 .wizard-form .woocommerce .sw-btn-prev#place_order:active:focus, .woocommerce .appointment-page-1 .wizard-form .sw-btn-prev#place_order:active:focus, .btn-secondary.active:focus, .appointment-page-1 .wizard-form .active.sw-btn-prev.wp-block-button__link:focus, .appointment-page-1 .wizard-form .active.sw-btn-prev.btn:focus, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.active.sw-btn-prev:focus, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.active.sw-btn-prev:focus,
    .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.active.sw-btn-prev:focus, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.active.sw-btn-prev:focus, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.active.sw-btn-prev:focus, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.active.sw-btn-prev:focus, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .active.sw-btn-prev.button:focus, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .active.sw-btn-prev.button:focus, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.active.sw-btn-prev.checkout-button:focus, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.active.sw-btn-prev.checkout-button:focus, .appointment-page-1 .wizard-form .woocommerce #respond input.active.sw-btn-prev#submit:focus, .woocommerce #respond .appointment-page-1 .wizard-form input.active.sw-btn-prev#submit:focus,
    .appointment-page-1 .wizard-form .woocommerce a.active.sw-btn-prev.button:focus, .woocommerce .appointment-page-1 .wizard-form a.active.sw-btn-prev.button:focus,
    .appointment-page-1 .wizard-form .woocommerce button.active.sw-btn-prev.button:focus, .woocommerce .appointment-page-1 .wizard-form button.active.sw-btn-prev.button:focus,
    .appointment-page-1 .wizard-form .woocommerce input.active.sw-btn-prev.button:focus, .woocommerce .appointment-page-1 .wizard-form input.active.sw-btn-prev.button:focus,
    .appointment-page-1 .wizard-form .woocommerce .active.sw-btn-prev#place_order:focus, .woocommerce .appointment-page-1 .wizard-form .active.sw-btn-prev#place_order:focus,
    .show > .btn-secondary.dropdown-toggle:focus,
    .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-prev.wp-block-button__link:focus,
    .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-prev.btn:focus,
    .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons .show > a.dropdown-toggle.sw-btn-prev:focus,
    .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-prev:focus,
    .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons .show > a.dropdown-toggle.sw-btn-prev:focus,
    .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-prev:focus,
    .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit .show > input.dropdown-toggle.sw-btn-prev:focus,
    .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-prev:focus,
    .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .show > .dropdown-toggle.sw-btn-prev.button:focus,
    .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-prev.button:focus,
    .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout .show > a.dropdown-toggle.sw-btn-prev.checkout-button:focus,
    .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-prev.checkout-button:focus,
    .appointment-page-1 .wizard-form .woocommerce #respond .show > input.dropdown-toggle.sw-btn-prev#submit:focus,
    .woocommerce #respond .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-prev#submit:focus,
    .appointment-page-1 .wizard-form .woocommerce .show > a.dropdown-toggle.sw-btn-prev.button:focus,
    .woocommerce .appointment-page-1 .wizard-form .show > a.dropdown-toggle.sw-btn-prev.button:focus,
    .appointment-page-1 .wizard-form .woocommerce .show > button.dropdown-toggle.sw-btn-prev.button:focus,
    .woocommerce .appointment-page-1 .wizard-form .show > button.dropdown-toggle.sw-btn-prev.button:focus,
    .appointment-page-1 .wizard-form .woocommerce .show > input.dropdown-toggle.sw-btn-prev.button:focus,
    .woocommerce .appointment-page-1 .wizard-form .show > input.dropdown-toggle.sw-btn-prev.button:focus,
    .appointment-page-1 .wizard-form .woocommerce .show > .dropdown-toggle.sw-btn-prev#place_order:focus,
    .woocommerce .appointment-page-1 .wizard-form .show > .dropdown-toggle.sw-btn-prev#place_order:focus {
      box-shadow: 0 0 0 0rem rgba(68, 68, 68, 0.5); }
  .btn-secondary:disabled, .appointment-page-1 .wizard-form .btn.sw-btn-prev:disabled, .btn-secondary.disabled, .appointment-page-1 .wizard-form .disabled.btn.sw-btn-prev {
    color: #fff;
    background-color: #232323;
    border-color: #232323; }

.btn-success {
  color: #000;
  background-color: #13c24d;
  border-color: #13c24d; }
  .btn-success:hover {
    color: #000;
    background-color: #36cb68;
    border-color: #2bc85f; }
  .btn-check:focus + .btn-success, .btn-success:focus {
    color: #000;
    background-color: #36cb68;
    border-color: #2bc85f;
    box-shadow: 0 0 0 0rem rgba(16, 165, 65, 0.5); }
  .btn-check:checked + .btn-success,
  .btn-check:active + .btn-success, .btn-success:active, .btn-success.active,
  .show > .btn-success.dropdown-toggle {
    color: #000;
    background-color: #42ce71;
    border-color: #2bc85f; }
    .btn-check:checked + .btn-success:focus,
    .btn-check:active + .btn-success:focus, .btn-success:active:focus, .btn-success.active:focus,
    .show > .btn-success.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(16, 165, 65, 0.5); }
  .btn-success:disabled, .btn-success.disabled {
    color: #000;
    background-color: #13c24d;
    border-color: #13c24d; }

.btn-info {
  color: #000;
  background-color: #00aeff;
  border-color: #00aeff; }
  .btn-info:hover {
    color: #000;
    background-color: #26baff;
    border-color: #1ab6ff; }
  .btn-check:focus + .btn-info, .btn-info:focus {
    color: #000;
    background-color: #26baff;
    border-color: #1ab6ff;
    box-shadow: 0 0 0 0rem rgba(0, 148, 217, 0.5); }
  .btn-check:checked + .btn-info,
  .btn-check:active + .btn-info, .btn-info:active, .btn-info.active,
  .show > .btn-info.dropdown-toggle {
    color: #000;
    background-color: #33beff;
    border-color: #1ab6ff; }
    .btn-check:checked + .btn-info:focus,
    .btn-check:active + .btn-info:focus, .btn-info:active:focus, .btn-info.active:focus,
    .show > .btn-info.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(0, 148, 217, 0.5); }
  .btn-info:disabled, .btn-info.disabled {
    color: #000;
    background-color: #00aeff;
    border-color: #00aeff; }

.btn-warning {
  color: #000;
  background-color: #FFBD13;
  border-color: #FFBD13; }
  .btn-warning:hover {
    color: #000;
    background-color: #ffc736;
    border-color: #ffc42b; }
  .btn-check:focus + .btn-warning, .btn-warning:focus {
    color: #000;
    background-color: #ffc736;
    border-color: #ffc42b;
    box-shadow: 0 0 0 0rem rgba(217, 161, 16, 0.5); }
  .btn-check:checked + .btn-warning,
  .btn-check:active + .btn-warning, .btn-warning:active, .btn-warning.active,
  .show > .btn-warning.dropdown-toggle {
    color: #000;
    background-color: #ffca42;
    border-color: #ffc42b; }
    .btn-check:checked + .btn-warning:focus,
    .btn-check:active + .btn-warning:focus, .btn-warning:active:focus, .btn-warning.active:focus,
    .show > .btn-warning.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(217, 161, 16, 0.5); }
  .btn-warning:disabled, .btn-warning.disabled {
    color: #000;
    background-color: #FFBD13;
    border-color: #FFBD13; }

.btn-danger {
  color: #000;
  background-color: #ff0003;
  border-color: #ff0003; }
  .btn-danger:hover {
    color: #000;
    background-color: #ff2629;
    border-color: #ff1a1c; }
  .btn-check:focus + .btn-danger, .btn-danger:focus {
    color: #000;
    background-color: #ff2629;
    border-color: #ff1a1c;
    box-shadow: 0 0 0 0rem rgba(217, 0, 3, 0.5); }
  .btn-check:checked + .btn-danger,
  .btn-check:active + .btn-danger, .btn-danger:active, .btn-danger.active,
  .show > .btn-danger.dropdown-toggle {
    color: #000;
    background-color: #ff3335;
    border-color: #ff1a1c; }
    .btn-check:checked + .btn-danger:focus,
    .btn-check:active + .btn-danger:focus, .btn-danger:active:focus, .btn-danger.active:focus,
    .show > .btn-danger.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(217, 0, 3, 0.5); }
  .btn-danger:disabled, .btn-danger.disabled {
    color: #000;
    background-color: #ff0003;
    border-color: #ff0003; }

.btn-light {
  color: #000;
  background-color: #faf8f2;
  border-color: #faf8f2; }
  .btn-light:hover {
    color: #000;
    background-color: #fbf9f4;
    border-color: #fbf9f3; }
  .btn-check:focus + .btn-light, .btn-light:focus {
    color: #000;
    background-color: #fbf9f4;
    border-color: #fbf9f3;
    box-shadow: 0 0 0 0rem rgba(213, 211, 206, 0.5); }
  .btn-check:checked + .btn-light,
  .btn-check:active + .btn-light, .btn-light:active, .btn-light.active,
  .show > .btn-light.dropdown-toggle {
    color: #000;
    background-color: #fbf9f5;
    border-color: #fbf9f3; }
    .btn-check:checked + .btn-light:focus,
    .btn-check:active + .btn-light:focus, .btn-light:active:focus, .btn-light.active:focus,
    .show > .btn-light.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(213, 211, 206, 0.5); }
  .btn-light:disabled, .btn-light.disabled {
    color: #000;
    background-color: #faf8f2;
    border-color: #faf8f2; }

.btn-dark {
  color: #fff;
  background-color: #222222;
  border-color: #222222; }
  .btn-dark:hover {
    color: #fff;
    background-color: #1d1d1d;
    border-color: #1b1b1b; }
  .btn-check:focus + .btn-dark, .btn-dark:focus {
    color: #fff;
    background-color: #1d1d1d;
    border-color: #1b1b1b;
    box-shadow: 0 0 0 0rem rgba(67, 67, 67, 0.5); }
  .btn-check:checked + .btn-dark,
  .btn-check:active + .btn-dark, .btn-dark:active, .btn-dark.active,
  .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1b1b1b;
    border-color: #1a1a1a; }
    .btn-check:checked + .btn-dark:focus,
    .btn-check:active + .btn-dark:focus, .btn-dark:active:focus, .btn-dark.active:focus,
    .show > .btn-dark.dropdown-toggle:focus {
      box-shadow: 0 0 0 0rem rgba(67, 67, 67, 0.5); }
  .btn-dark:disabled, .btn-dark.disabled {
    color: #fff;
    background-color: #222222;
    border-color: #222222; }

.btn-outline-primary, .is-style-outline .wp-block-button__link {
  color: #FF8139;
  border-color: #FF8139; }
  .btn-outline-primary:hover, .is-style-outline .wp-block-button__link:hover {
    color: #000;
    background-color: #FF8139;
    border-color: #FF8139; }
  .btn-check:focus + .btn-outline-primary, .is-style-outline .btn-check:focus + .wp-block-button__link, .btn-outline-primary:focus, .is-style-outline .wp-block-button__link:focus {
    box-shadow: 0 0 0 0rem rgba(255, 129, 57, 0.5); }
  .btn-check:checked + .btn-outline-primary, .is-style-outline .btn-check:checked + .wp-block-button__link,
  .btn-check:active + .btn-outline-primary,
  .is-style-outline .btn-check:active + .wp-block-button__link, .btn-outline-primary:active, .is-style-outline .wp-block-button__link:active, .btn-outline-primary.active, .is-style-outline .active.wp-block-button__link, .btn-outline-primary.dropdown-toggle.show, .is-style-outline .dropdown-toggle.show.wp-block-button__link {
    color: #000;
    background-color: #FF8139;
    border-color: #FF8139; }
    .btn-check:checked + .btn-outline-primary:focus, .is-style-outline .btn-check:checked + .wp-block-button__link:focus,
    .btn-check:active + .btn-outline-primary:focus,
    .is-style-outline .btn-check:active + .wp-block-button__link:focus, .btn-outline-primary:active:focus, .is-style-outline .wp-block-button__link:active:focus, .btn-outline-primary.active:focus, .is-style-outline .active.wp-block-button__link:focus, .btn-outline-primary.dropdown-toggle.show:focus, .is-style-outline .dropdown-toggle.show.wp-block-button__link:focus {
      box-shadow: 0 0 0 0rem rgba(255, 129, 57, 0.5); }
  .btn-outline-primary:disabled, .is-style-outline .wp-block-button__link:disabled, .btn-outline-primary.disabled, .is-style-outline .disabled.wp-block-button__link {
    color: #FF8139;
    background-color: transparent; }

.btn-outline-secondary {
  color: #232323;
  border-color: #232323; }
  .btn-outline-secondary:hover {
    color: #fff;
    background-color: #232323;
    border-color: #232323; }
  .btn-check:focus + .btn-outline-secondary, .btn-outline-secondary:focus {
    box-shadow: 0 0 0 0rem rgba(35, 35, 35, 0.5); }
  .btn-check:checked + .btn-outline-secondary,
  .btn-check:active + .btn-outline-secondary, .btn-outline-secondary:active, .btn-outline-secondary.active, .btn-outline-secondary.dropdown-toggle.show {
    color: #fff;
    background-color: #232323;
    border-color: #232323; }
    .btn-check:checked + .btn-outline-secondary:focus,
    .btn-check:active + .btn-outline-secondary:focus, .btn-outline-secondary:active:focus, .btn-outline-secondary.active:focus, .btn-outline-secondary.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(35, 35, 35, 0.5); }
  .btn-outline-secondary:disabled, .btn-outline-secondary.disabled {
    color: #232323;
    background-color: transparent; }

.btn-outline-success {
  color: #13c24d;
  border-color: #13c24d; }
  .btn-outline-success:hover {
    color: #000;
    background-color: #13c24d;
    border-color: #13c24d; }
  .btn-check:focus + .btn-outline-success, .btn-outline-success:focus {
    box-shadow: 0 0 0 0rem rgba(19, 194, 77, 0.5); }
  .btn-check:checked + .btn-outline-success,
  .btn-check:active + .btn-outline-success, .btn-outline-success:active, .btn-outline-success.active, .btn-outline-success.dropdown-toggle.show {
    color: #000;
    background-color: #13c24d;
    border-color: #13c24d; }
    .btn-check:checked + .btn-outline-success:focus,
    .btn-check:active + .btn-outline-success:focus, .btn-outline-success:active:focus, .btn-outline-success.active:focus, .btn-outline-success.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(19, 194, 77, 0.5); }
  .btn-outline-success:disabled, .btn-outline-success.disabled {
    color: #13c24d;
    background-color: transparent; }

.btn-outline-info {
  color: #00aeff;
  border-color: #00aeff; }
  .btn-outline-info:hover {
    color: #000;
    background-color: #00aeff;
    border-color: #00aeff; }
  .btn-check:focus + .btn-outline-info, .btn-outline-info:focus {
    box-shadow: 0 0 0 0rem rgba(0, 174, 255, 0.5); }
  .btn-check:checked + .btn-outline-info,
  .btn-check:active + .btn-outline-info, .btn-outline-info:active, .btn-outline-info.active, .btn-outline-info.dropdown-toggle.show {
    color: #000;
    background-color: #00aeff;
    border-color: #00aeff; }
    .btn-check:checked + .btn-outline-info:focus,
    .btn-check:active + .btn-outline-info:focus, .btn-outline-info:active:focus, .btn-outline-info.active:focus, .btn-outline-info.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(0, 174, 255, 0.5); }
  .btn-outline-info:disabled, .btn-outline-info.disabled {
    color: #00aeff;
    background-color: transparent; }

.btn-outline-warning {
  color: #FFBD13;
  border-color: #FFBD13; }
  .btn-outline-warning:hover {
    color: #000;
    background-color: #FFBD13;
    border-color: #FFBD13; }
  .btn-check:focus + .btn-outline-warning, .btn-outline-warning:focus {
    box-shadow: 0 0 0 0rem rgba(255, 189, 19, 0.5); }
  .btn-check:checked + .btn-outline-warning,
  .btn-check:active + .btn-outline-warning, .btn-outline-warning:active, .btn-outline-warning.active, .btn-outline-warning.dropdown-toggle.show {
    color: #000;
    background-color: #FFBD13;
    border-color: #FFBD13; }
    .btn-check:checked + .btn-outline-warning:focus,
    .btn-check:active + .btn-outline-warning:focus, .btn-outline-warning:active:focus, .btn-outline-warning.active:focus, .btn-outline-warning.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(255, 189, 19, 0.5); }
  .btn-outline-warning:disabled, .btn-outline-warning.disabled {
    color: #FFBD13;
    background-color: transparent; }

.btn-outline-danger {
  color: #ff0003;
  border-color: #ff0003; }
  .btn-outline-danger:hover {
    color: #000;
    background-color: #ff0003;
    border-color: #ff0003; }
  .btn-check:focus + .btn-outline-danger, .btn-outline-danger:focus {
    box-shadow: 0 0 0 0rem rgba(255, 0, 3, 0.5); }
  .btn-check:checked + .btn-outline-danger,
  .btn-check:active + .btn-outline-danger, .btn-outline-danger:active, .btn-outline-danger.active, .btn-outline-danger.dropdown-toggle.show {
    color: #000;
    background-color: #ff0003;
    border-color: #ff0003; }
    .btn-check:checked + .btn-outline-danger:focus,
    .btn-check:active + .btn-outline-danger:focus, .btn-outline-danger:active:focus, .btn-outline-danger.active:focus, .btn-outline-danger.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(255, 0, 3, 0.5); }
  .btn-outline-danger:disabled, .btn-outline-danger.disabled {
    color: #ff0003;
    background-color: transparent; }

.btn-outline-light {
  color: #faf8f2;
  border-color: #faf8f2; }
  .btn-outline-light:hover {
    color: #000;
    background-color: #faf8f2;
    border-color: #faf8f2; }
  .btn-check:focus + .btn-outline-light, .btn-outline-light:focus {
    box-shadow: 0 0 0 0rem rgba(250, 248, 242, 0.5); }
  .btn-check:checked + .btn-outline-light,
  .btn-check:active + .btn-outline-light, .btn-outline-light:active, .btn-outline-light.active, .btn-outline-light.dropdown-toggle.show {
    color: #000;
    background-color: #faf8f2;
    border-color: #faf8f2; }
    .btn-check:checked + .btn-outline-light:focus,
    .btn-check:active + .btn-outline-light:focus, .btn-outline-light:active:focus, .btn-outline-light.active:focus, .btn-outline-light.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(250, 248, 242, 0.5); }
  .btn-outline-light:disabled, .btn-outline-light.disabled {
    color: #faf8f2;
    background-color: transparent; }

.btn-outline-dark {
  color: #222222;
  border-color: #222222; }
  .btn-outline-dark:hover {
    color: #fff;
    background-color: #222222;
    border-color: #222222; }
  .btn-check:focus + .btn-outline-dark, .btn-outline-dark:focus {
    box-shadow: 0 0 0 0rem rgba(34, 34, 34, 0.5); }
  .btn-check:checked + .btn-outline-dark,
  .btn-check:active + .btn-outline-dark, .btn-outline-dark:active, .btn-outline-dark.active, .btn-outline-dark.dropdown-toggle.show {
    color: #fff;
    background-color: #222222;
    border-color: #222222; }
    .btn-check:checked + .btn-outline-dark:focus,
    .btn-check:active + .btn-outline-dark:focus, .btn-outline-dark:active:focus, .btn-outline-dark.active:focus, .btn-outline-dark.dropdown-toggle.show:focus {
      box-shadow: 0 0 0 0rem rgba(34, 34, 34, 0.5); }
  .btn-outline-dark:disabled, .btn-outline-dark.disabled {
    color: #222222;
    background-color: transparent; }

.btn-link {
  font-weight: 400;
  color: #FF8139;
  text-decoration: underline; }
  .btn-link:hover {
    color: #cc672e; }
  .btn-link:disabled, .btn-link.disabled {
    color: #6c757d; }

.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-lg > a,
.woocommerce.widget_shopping_cart .buttons .btn-group-lg > a, .woocommerce #review_form #respond .form-submit .btn-group-lg > input, .woocommerce-cart-form .table.shop_table tr .btn-group-lg > .button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-lg > a.checkout-button, .woocommerce #respond .btn-group-lg > input#submit,
.woocommerce .btn-group-lg > a.button,
.woocommerce .btn-group-lg > button.button,
.woocommerce .btn-group-lg > input.button,
.woocommerce .btn-group-lg > #place_order {
  padding: 0.5rem 1rem;
  font-size: 1.17188rem;
  border-radius: 1rem; }

.btn-sm, .btn-group-sm > .btn, .btn-group-sm > .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-sm > .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-sm > .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-sm > a,
.woocommerce.widget_shopping_cart .buttons .btn-group-sm > a, .woocommerce #review_form #respond .form-submit .btn-group-sm > input, .woocommerce-cart-form .table.shop_table tr .btn-group-sm > .button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-sm > a.checkout-button, .woocommerce #respond .btn-group-sm > input#submit,
.woocommerce .btn-group-sm > a.button,
.woocommerce .btn-group-sm > button.button,
.woocommerce .btn-group-sm > input.button,
.woocommerce .btn-group-sm > #place_order {
  padding: 0.25rem 0.5rem;
  font-size: 0.82031rem;
  border-radius: 0.75rem; }

.fade {
  transition: opacity 0.15s linear; }
  @media (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }
  @media (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }
  .collapsing.collapse-horizontal {
    width: 0;
    height: auto;
    transition: width 0.35s ease; }
    @media (prefers-reduced-motion: reduce) {
      .collapsing.collapse-horizontal {
        transition: none; } }

.dropup,
.dropend,
.dropdown,
.dropstart {
  position: relative; }

.dropdown-toggle {
  white-space: nowrap; }
  .dropdown-toggle::after {
    display: inline-block;
    margin-left: 0.255em;
    vertical-align: 0.255em;
    content: "";
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-bottom: 0;
    border-left: 0.3em solid transparent; }
  .dropdown-toggle:empty::after {
    margin-left: 0; }

.dropdown-menu {
  position: absolute;
  z-index: 1000;
  display: none;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0;
  font-size: 0.9375rem;
  color: #666666;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }
  .dropdown-menu[data-bs-popper] {
    top: 100%;
    left: 0;
    margin-top: 0.125rem; }

.dropdown-menu-start {
  --bs-position: start; }
  .dropdown-menu-start[data-bs-popper] {
    right: auto;
    left: 0; }

.dropdown-menu-end {
  --bs-position: end; }
  .dropdown-menu-end[data-bs-popper] {
    right: 0;
    left: auto; }

@media (min-width: 576px) {
  .dropdown-menu-sm-start {
    --bs-position: start; }
    .dropdown-menu-sm-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-sm-end {
    --bs-position: end; }
    .dropdown-menu-sm-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 768px) {
  .dropdown-menu-md-start {
    --bs-position: start; }
    .dropdown-menu-md-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-md-end {
    --bs-position: end; }
    .dropdown-menu-md-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 992px) {
  .dropdown-menu-lg-start {
    --bs-position: start; }
    .dropdown-menu-lg-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-lg-end {
    --bs-position: end; }
    .dropdown-menu-lg-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 1170px) {
  .dropdown-menu-xl-start {
    --bs-position: start; }
    .dropdown-menu-xl-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-xl-end {
    --bs-position: end; }
    .dropdown-menu-xl-end[data-bs-popper] {
      right: 0;
      left: auto; } }

@media (min-width: 1440) {
  .dropdown-menu-xxl-start {
    --bs-position: start; }
    .dropdown-menu-xxl-start[data-bs-popper] {
      right: auto;
      left: 0; }
  .dropdown-menu-xxl-end {
    --bs-position: end; }
    .dropdown-menu-xxl-end[data-bs-popper] {
      right: 0;
      left: auto; } }

.dropup .dropdown-menu[data-bs-popper] {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem; }

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent; }

.dropup .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropend .dropdown-menu[data-bs-popper] {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem; }

.dropend .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid; }

.dropend .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropend .dropdown-toggle::after {
  vertical-align: 0; }

.dropstart .dropdown-menu[data-bs-popper] {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem; }

.dropstart .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: ""; }

.dropstart .dropdown-toggle::after {
  display: none; }

.dropstart .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent; }

.dropstart .dropdown-toggle:empty::after {
  margin-left: 0; }

.dropstart .dropdown-toggle::before {
  vertical-align: 0; }

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(0, 0, 0, 0.15); }

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  text-decoration: none;
  white-space: nowrap;
  background-color: transparent;
  border: 0; }
  .dropdown-item:hover, .dropdown-item:focus {
    color: #1e2125;
    background-color: #e9ecef; }
  .dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #FF8139; }
  .dropdown-item.disabled, .dropdown-item:disabled {
    color: #adb5bd;
    pointer-events: none;
    background-color: transparent; }

.dropdown-menu.show {
  display: block; }

.dropdown-header {
  display: block;
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.82031rem;
  color: #6c757d;
  white-space: nowrap; }

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1rem;
  color: #212529; }

.dropdown-menu-dark {
  color: #dee2e6;
  background-color: #343a40;
  border-color: rgba(0, 0, 0, 0.15); }
  .dropdown-menu-dark .dropdown-item {
    color: #dee2e6; }
    .dropdown-menu-dark .dropdown-item:hover, .dropdown-menu-dark .dropdown-item:focus {
      color: #fff;
      background-color: rgba(255, 255, 255, 0.15); }
    .dropdown-menu-dark .dropdown-item.active, .dropdown-menu-dark .dropdown-item:active {
      color: #fff;
      background-color: #FF8139; }
    .dropdown-menu-dark .dropdown-item.disabled, .dropdown-menu-dark .dropdown-item:disabled {
      color: #adb5bd; }
  .dropdown-menu-dark .dropdown-divider {
    border-color: rgba(0, 0, 0, 0.15); }
  .dropdown-menu-dark .dropdown-item-text {
    color: #dee2e6; }
  .dropdown-menu-dark .dropdown-header {
    color: #adb5bd; }

.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle; }
  .btn-group > .btn, .btn-group > .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group > a,
  .woocommerce.widget_shopping_cart .buttons .btn-group > a, .woocommerce #review_form #respond .form-submit .btn-group > input, .woocommerce-cart-form .table.shop_table tr .btn-group > .button, .woocommerce-cart .wc-proceed-to-checkout .btn-group > a.checkout-button, .woocommerce #respond .btn-group > input#submit,
  .woocommerce .btn-group > a.button,
  .woocommerce .btn-group > button.button,
  .woocommerce .btn-group > input.button,
  .woocommerce .btn-group > #place_order,
  .btn-group-vertical > .btn,
  .btn-group-vertical > .wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button,
  .woocommerce #respond .btn-group-vertical > input#submit,
  .woocommerce .btn-group-vertical > a.button,
  .woocommerce .btn-group-vertical > button.button,
  .woocommerce .btn-group-vertical > input.button,
  .woocommerce .btn-group-vertical > #place_order {
    position: relative;
    flex: 1 1 auto; }
  .btn-group > .btn-check:checked + .btn, .btn-group > .btn-check:checked + .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group > .btn-check:checked + .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group > .btn-check:checked + .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group > .btn-check:checked + a,
  .woocommerce.widget_shopping_cart .buttons .btn-group > .btn-check:checked + a, .woocommerce #review_form #respond .form-submit .btn-group > .btn-check:checked + input, .woocommerce-cart-form .table.shop_table tr .btn-group > .btn-check:checked + .button, .woocommerce-cart .wc-proceed-to-checkout .btn-group > .btn-check:checked + a.checkout-button, .woocommerce #respond .btn-group > .btn-check:checked + input#submit,
  .woocommerce .btn-group > .btn-check:checked + a.button,
  .woocommerce .btn-group > .btn-check:checked + button.button,
  .woocommerce .btn-group > .btn-check:checked + input.button,
  .woocommerce .btn-group > .btn-check:checked + #place_order,
  .btn-group > .btn-check:focus + .btn,
  .btn-group > .btn-check:focus + .wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group > .btn-check:focus + .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form .btn-group > .btn-check:focus + .btn.sw-btn-next,
  .woocommerce .widget_shopping_cart .buttons .btn-group > .btn-check:focus + a,
  .woocommerce.widget_shopping_cart .buttons .btn-group > .btn-check:focus + a,
  .woocommerce #review_form #respond .form-submit .btn-group > .btn-check:focus + input,
  .woocommerce-cart-form .table.shop_table tr .btn-group > .btn-check:focus + .button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group > .btn-check:focus + a.checkout-button,
  .woocommerce #respond .btn-group > .btn-check:focus + input#submit,
  .woocommerce .btn-group > .btn-check:focus + a.button,
  .woocommerce .btn-group > .btn-check:focus + button.button,
  .woocommerce .btn-group > .btn-check:focus + input.button,
  .woocommerce .btn-group > .btn-check:focus + #place_order,
  .btn-group > .btn:hover,
  .btn-group > .wp-block-button__link:hover,
  .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-prev:hover,
  .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-next:hover,
  .woocommerce .widget_shopping_cart .buttons .btn-group > a:hover,
  .woocommerce.widget_shopping_cart .buttons .btn-group > a:hover,
  .woocommerce #review_form #respond .form-submit .btn-group > input:hover,
  .woocommerce-cart-form .table.shop_table tr .btn-group > .button:hover,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group > a.checkout-button:hover,
  .woocommerce #respond .btn-group > input#submit:hover,
  .woocommerce .btn-group > a.button:hover,
  .woocommerce .btn-group > button.button:hover,
  .woocommerce .btn-group > input.button:hover,
  .woocommerce .btn-group > #place_order:hover,
  .btn-group > .btn:focus,
  .btn-group > .wp-block-button__link:focus,
  .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-prev:focus,
  .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-next:focus,
  .woocommerce .widget_shopping_cart .buttons .btn-group > a:focus,
  .woocommerce.widget_shopping_cart .buttons .btn-group > a:focus,
  .woocommerce #review_form #respond .form-submit .btn-group > input:focus,
  .woocommerce-cart-form .table.shop_table tr .btn-group > .button:focus,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group > a.checkout-button:focus,
  .woocommerce #respond .btn-group > input#submit:focus,
  .woocommerce .btn-group > a.button:focus,
  .woocommerce .btn-group > button.button:focus,
  .woocommerce .btn-group > input.button:focus,
  .woocommerce .btn-group > #place_order:focus,
  .btn-group > .btn:active,
  .btn-group > .wp-block-button__link:active,
  .appointment-page-1 .wizard-form .btn-group > .sw-btn-prev.wp-block-button__link:active,
  .appointment-page-1 .wizard-form .btn-group > .sw-btn-prev.btn:active,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group > a.sw-btn-prev:active,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group > a.sw-btn-prev:active,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group > input.sw-btn-prev:active,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group > .sw-btn-prev.button:active,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group > a.sw-btn-prev.checkout-button:active,
  .woocommerce #respond .appointment-page-1 .wizard-form .btn-group > input.sw-btn-prev#submit:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > a.sw-btn-prev.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > button.sw-btn-prev.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > input.sw-btn-prev.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > .sw-btn-prev#place_order:active,
  .appointment-page-1 .wizard-form .btn-group > .sw-btn-next.wp-block-button__link:active,
  .appointment-page-1 .wizard-form .btn-group > .sw-btn-next.btn:active,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group > a.sw-btn-next:active,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group > a.sw-btn-next:active,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group > input.sw-btn-next:active,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group > .sw-btn-next.button:active,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group > a.sw-btn-next.checkout-button:active,
  .woocommerce #respond .appointment-page-1 .wizard-form .btn-group > input.sw-btn-next#submit:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > a.sw-btn-next.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > button.sw-btn-next.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > input.sw-btn-next.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > .sw-btn-next#place_order:active,
  .woocommerce .widget_shopping_cart .buttons .btn-group > a:active,
  .woocommerce.widget_shopping_cart .buttons .btn-group > a:active,
  .woocommerce #review_form #respond .form-submit .btn-group > input:active,
  .woocommerce-cart-form .table.shop_table tr .btn-group > .button:active,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group > a.checkout-button:active,
  .woocommerce #respond .btn-group > input#submit:active,
  .woocommerce .btn-group > a.button:active,
  .woocommerce .btn-group > button.button:active,
  .woocommerce .btn-group > input.button:active,
  .woocommerce .btn-group > #place_order:active,
  .btn-group > .btn.active,
  .btn-group > .active.wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group > .active.sw-btn-prev.wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group > .active.sw-btn-prev.btn,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group > a.active.sw-btn-prev,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group > a.active.sw-btn-prev,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group > input.active.sw-btn-prev,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group > .active.sw-btn-prev.button,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group > a.active.sw-btn-prev.checkout-button,
  .woocommerce #respond .appointment-page-1 .wizard-form .btn-group > input.active.sw-btn-prev#submit,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > a.active.sw-btn-prev.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > button.active.sw-btn-prev.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > input.active.sw-btn-prev.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > .active.sw-btn-prev#place_order,
  .appointment-page-1 .wizard-form .btn-group > .active.sw-btn-next.wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group > .active.sw-btn-next.btn,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group > a.active.sw-btn-next,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group > a.active.sw-btn-next,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group > input.active.sw-btn-next,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group > .active.sw-btn-next.button,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group > a.active.sw-btn-next.checkout-button,
  .woocommerce #respond .appointment-page-1 .wizard-form .btn-group > input.active.sw-btn-next#submit,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > a.active.sw-btn-next.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > button.active.sw-btn-next.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > input.active.sw-btn-next.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group > .active.sw-btn-next#place_order,
  .woocommerce .widget_shopping_cart .buttons .btn-group > a.active,
  .woocommerce.widget_shopping_cart .buttons .btn-group > a.active,
  .woocommerce #review_form #respond .form-submit .btn-group > input.active,
  .woocommerce-cart-form .table.shop_table tr .btn-group > .active.button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group > a.active.checkout-button,
  .woocommerce #respond .btn-group > input.active#submit,
  .woocommerce .btn-group > a.active.button,
  .woocommerce .btn-group > button.active.button,
  .woocommerce .btn-group > input.active.button,
  .woocommerce .btn-group > .active#place_order,
  .btn-group-vertical > .btn-check:checked + .btn,
  .btn-group-vertical > .btn-check:checked + .wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn-check:checked + .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn-check:checked + .btn.sw-btn-next,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > .btn-check:checked + a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > .btn-check:checked + a,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > .btn-check:checked + input,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .btn-check:checked + .button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > .btn-check:checked + a.checkout-button,
  .woocommerce #respond .btn-group-vertical > .btn-check:checked + input#submit,
  .woocommerce .btn-group-vertical > .btn-check:checked + a.button,
  .woocommerce .btn-group-vertical > .btn-check:checked + button.button,
  .woocommerce .btn-group-vertical > .btn-check:checked + input.button,
  .woocommerce .btn-group-vertical > .btn-check:checked + #place_order,
  .btn-group-vertical > .btn-check:focus + .btn,
  .btn-group-vertical > .btn-check:focus + .wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn-check:focus + .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn-check:focus + .btn.sw-btn-next,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > .btn-check:focus + a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > .btn-check:focus + a,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > .btn-check:focus + input,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .btn-check:focus + .button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > .btn-check:focus + a.checkout-button,
  .woocommerce #respond .btn-group-vertical > .btn-check:focus + input#submit,
  .woocommerce .btn-group-vertical > .btn-check:focus + a.button,
  .woocommerce .btn-group-vertical > .btn-check:focus + button.button,
  .woocommerce .btn-group-vertical > .btn-check:focus + input.button,
  .woocommerce .btn-group-vertical > .btn-check:focus + #place_order,
  .btn-group-vertical > .btn:hover,
  .btn-group-vertical > .wp-block-button__link:hover,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev:hover,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next:hover,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a:hover,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a:hover,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input:hover,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button:hover,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button:hover,
  .woocommerce #respond .btn-group-vertical > input#submit:hover,
  .woocommerce .btn-group-vertical > a.button:hover,
  .woocommerce .btn-group-vertical > button.button:hover,
  .woocommerce .btn-group-vertical > input.button:hover,
  .woocommerce .btn-group-vertical > #place_order:hover,
  .btn-group-vertical > .btn:focus,
  .btn-group-vertical > .wp-block-button__link:focus,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev:focus,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next:focus,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a:focus,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a:focus,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input:focus,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button:focus,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button:focus,
  .woocommerce #respond .btn-group-vertical > input#submit:focus,
  .woocommerce .btn-group-vertical > a.button:focus,
  .woocommerce .btn-group-vertical > button.button:focus,
  .woocommerce .btn-group-vertical > input.button:focus,
  .woocommerce .btn-group-vertical > #place_order:focus,
  .btn-group-vertical > .btn:active,
  .btn-group-vertical > .wp-block-button__link:active,
  .appointment-page-1 .wizard-form .btn-group-vertical > .sw-btn-prev.wp-block-button__link:active,
  .appointment-page-1 .wizard-form .btn-group-vertical > .sw-btn-prev.btn:active,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a.sw-btn-prev:active,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a.sw-btn-prev:active,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group-vertical > input.sw-btn-prev:active,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group-vertical > .sw-btn-prev.button:active,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group-vertical > a.sw-btn-prev.checkout-button:active,
  .woocommerce #respond .appointment-page-1 .wizard-form .btn-group-vertical > input.sw-btn-prev#submit:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > a.sw-btn-prev.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > button.sw-btn-prev.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > input.sw-btn-prev.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .sw-btn-prev#place_order:active,
  .appointment-page-1 .wizard-form .btn-group-vertical > .sw-btn-next.wp-block-button__link:active,
  .appointment-page-1 .wizard-form .btn-group-vertical > .sw-btn-next.btn:active,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a.sw-btn-next:active,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a.sw-btn-next:active,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group-vertical > input.sw-btn-next:active,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group-vertical > .sw-btn-next.button:active,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group-vertical > a.sw-btn-next.checkout-button:active,
  .woocommerce #respond .appointment-page-1 .wizard-form .btn-group-vertical > input.sw-btn-next#submit:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > a.sw-btn-next.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > button.sw-btn-next.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > input.sw-btn-next.button:active,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .sw-btn-next#place_order:active,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a:active,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a:active,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input:active,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button:active,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button:active,
  .woocommerce #respond .btn-group-vertical > input#submit:active,
  .woocommerce .btn-group-vertical > a.button:active,
  .woocommerce .btn-group-vertical > button.button:active,
  .woocommerce .btn-group-vertical > input.button:active,
  .woocommerce .btn-group-vertical > #place_order:active,
  .btn-group-vertical > .btn.active,
  .btn-group-vertical > .active.wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group-vertical > .active.sw-btn-prev.wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group-vertical > .active.sw-btn-prev.btn,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a.active.sw-btn-prev,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a.active.sw-btn-prev,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group-vertical > input.active.sw-btn-prev,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group-vertical > .active.sw-btn-prev.button,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group-vertical > a.active.sw-btn-prev.checkout-button,
  .woocommerce #respond .appointment-page-1 .wizard-form .btn-group-vertical > input.active.sw-btn-prev#submit,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > a.active.sw-btn-prev.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > button.active.sw-btn-prev.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > input.active.sw-btn-prev.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .active.sw-btn-prev#place_order,
  .appointment-page-1 .wizard-form .btn-group-vertical > .active.sw-btn-next.wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group-vertical > .active.sw-btn-next.btn,
  .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a.active.sw-btn-next,
  .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a.active.sw-btn-next,
  .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group-vertical > input.active.sw-btn-next,
  .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group-vertical > .active.sw-btn-next.button,
  .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group-vertical > a.active.sw-btn-next.checkout-button,
  .woocommerce #respond .appointment-page-1 .wizard-form .btn-group-vertical > input.active.sw-btn-next#submit,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > a.active.sw-btn-next.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > button.active.sw-btn-next.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > input.active.sw-btn-next.button,
  .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .active.sw-btn-next#place_order,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a.active,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a.active,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input.active,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .active.button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.active.checkout-button,
  .woocommerce #respond .btn-group-vertical > input.active#submit,
  .woocommerce .btn-group-vertical > a.active.button,
  .woocommerce .btn-group-vertical > button.active.button,
  .woocommerce .btn-group-vertical > input.active.button,
  .woocommerce .btn-group-vertical > .active#place_order {
    z-index: 1; }

.btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; }
  .btn-toolbar .input-group {
    width: auto; }

.btn-group > .btn:not(:first-child), .btn-group > .wp-block-button__link:not(:first-child), .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-prev:not(:first-child), .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-next:not(:first-child), .woocommerce .widget_shopping_cart .buttons .btn-group > a:not(:first-child),
.woocommerce.widget_shopping_cart .buttons .btn-group > a:not(:first-child), .woocommerce #review_form #respond .form-submit .btn-group > input:not(:first-child), .woocommerce-cart-form .table.shop_table tr .btn-group > .button:not(:first-child), .woocommerce-cart .wc-proceed-to-checkout .btn-group > a.checkout-button:not(:first-child), .woocommerce #respond .btn-group > input#submit:not(:first-child),
.woocommerce .btn-group > a.button:not(:first-child),
.woocommerce .btn-group > button.button:not(:first-child),
.woocommerce .btn-group > input.button:not(:first-child),
.woocommerce .btn-group > #place_order:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px; }

.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .btn-group > .wp-block-button__link:not(:last-child):not(.dropdown-toggle), .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-prev:not(:last-child):not(.dropdown-toggle), .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-next:not(:last-child):not(.dropdown-toggle), .woocommerce .widget_shopping_cart .buttons .btn-group > a:not(:last-child):not(.dropdown-toggle),
.woocommerce.widget_shopping_cart .buttons .btn-group > a:not(:last-child):not(.dropdown-toggle), .woocommerce #review_form #respond .form-submit .btn-group > input:not(:last-child):not(.dropdown-toggle), .woocommerce-cart-form .table.shop_table tr .btn-group > .button:not(:last-child):not(.dropdown-toggle), .woocommerce-cart .wc-proceed-to-checkout .btn-group > a.checkout-button:not(:last-child):not(.dropdown-toggle), .woocommerce #respond .btn-group > input#submit:not(:last-child):not(.dropdown-toggle),
.woocommerce .btn-group > a.button:not(:last-child):not(.dropdown-toggle),
.woocommerce .btn-group > button.button:not(:last-child):not(.dropdown-toggle),
.woocommerce .btn-group > input.button:not(:last-child):not(.dropdown-toggle),
.woocommerce .btn-group > #place_order:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.btn-group > .btn-group:not(:last-child) > .wp-block-button__link,
.appointment-page-1 .wizard-form .btn-group > .btn-group:not(:last-child) > .btn.sw-btn-prev,
.appointment-page-1 .wizard-form .btn-group > .btn-group:not(:last-child) > .btn.sw-btn-next,
.woocommerce .widget_shopping_cart .buttons .btn-group > .btn-group:not(:last-child) > a,
.woocommerce.widget_shopping_cart .buttons .btn-group > .btn-group:not(:last-child) > a,
.woocommerce #review_form #respond .form-submit .btn-group > .btn-group:not(:last-child) > input,
.woocommerce-cart-form .table.shop_table tr .btn-group > .btn-group:not(:last-child) > .button,
.woocommerce-cart .wc-proceed-to-checkout .btn-group > .btn-group:not(:last-child) > a.checkout-button,
.woocommerce #respond .btn-group > .btn-group:not(:last-child) > input#submit,
.woocommerce .btn-group > .btn-group:not(:last-child) > a.button,
.woocommerce .btn-group > .btn-group:not(:last-child) > button.button,
.woocommerce .btn-group > .btn-group:not(:last-child) > input.button,
.woocommerce .btn-group > .btn-group:not(:last-child) > #place_order {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0; }

.btn-group > .btn:nth-child(n + 3), .btn-group > .wp-block-button__link:nth-child(n + 3), .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-prev:nth-child(n + 3), .appointment-page-1 .wizard-form .btn-group > .btn.sw-btn-next:nth-child(n + 3), .woocommerce .widget_shopping_cart .buttons .btn-group > a:nth-child(n + 3),
.woocommerce.widget_shopping_cart .buttons .btn-group > a:nth-child(n + 3), .woocommerce #review_form #respond .form-submit .btn-group > input:nth-child(n + 3), .woocommerce-cart-form .table.shop_table tr .btn-group > .button:nth-child(n + 3), .woocommerce-cart .wc-proceed-to-checkout .btn-group > a.checkout-button:nth-child(n + 3), .woocommerce #respond .btn-group > input#submit:nth-child(n + 3),
.woocommerce .btn-group > a.button:nth-child(n + 3),
.woocommerce .btn-group > button.button:nth-child(n + 3),
.woocommerce .btn-group > input.button:nth-child(n + 3),
.woocommerce .btn-group > #place_order:nth-child(n + 3),
.btn-group > :not(.btn-check) + .btn,
.btn-group > :not(.btn-check) + .wp-block-button__link,
.appointment-page-1 .wizard-form .btn-group > :not(.btn-check) + .btn.sw-btn-prev,
.appointment-page-1 .wizard-form .btn-group > :not(.btn-check) + .btn.sw-btn-next,
.woocommerce .widget_shopping_cart .buttons .btn-group > :not(.btn-check) + a,
.woocommerce.widget_shopping_cart .buttons .btn-group > :not(.btn-check) + a,
.woocommerce #review_form #respond .form-submit .btn-group > :not(.btn-check) + input,
.woocommerce-cart-form .table.shop_table tr .btn-group > :not(.btn-check) + .button,
.woocommerce-cart .wc-proceed-to-checkout .btn-group > :not(.btn-check) + a.checkout-button,
.woocommerce #respond .btn-group > :not(.btn-check) + input#submit,
.woocommerce .btn-group > :not(.btn-check) + a.button,
.woocommerce .btn-group > :not(.btn-check) + button.button,
.woocommerce .btn-group > :not(.btn-check) + input.button,
.woocommerce .btn-group > :not(.btn-check) + #place_order,
.btn-group > .btn-group:not(:first-child) > .btn,
.btn-group > .btn-group:not(:first-child) > .wp-block-button__link,
.appointment-page-1 .wizard-form .btn-group > .btn-group:not(:first-child) > .btn.sw-btn-prev,
.appointment-page-1 .wizard-form .btn-group > .btn-group:not(:first-child) > .btn.sw-btn-next,
.woocommerce .widget_shopping_cart .buttons .btn-group > .btn-group:not(:first-child) > a,
.woocommerce.widget_shopping_cart .buttons .btn-group > .btn-group:not(:first-child) > a,
.woocommerce #review_form #respond .form-submit .btn-group > .btn-group:not(:first-child) > input,
.woocommerce-cart-form .table.shop_table tr .btn-group > .btn-group:not(:first-child) > .button,
.woocommerce-cart .wc-proceed-to-checkout .btn-group > .btn-group:not(:first-child) > a.checkout-button,
.woocommerce #respond .btn-group > .btn-group:not(:first-child) > input#submit,
.woocommerce .btn-group > .btn-group:not(:first-child) > a.button,
.woocommerce .btn-group > .btn-group:not(:first-child) > button.button,
.woocommerce .btn-group > .btn-group:not(:first-child) > input.button,
.woocommerce .btn-group > .btn-group:not(:first-child) > #place_order {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0; }

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem; }
  .dropdown-toggle-split::after,
  .dropup .dropdown-toggle-split::after,
  .dropend .dropdown-toggle-split::after {
    margin-left: 0; }
  .dropstart .dropdown-toggle-split::before {
    margin-right: 0; }

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .btn-group-sm > .wp-block-button__link + .dropdown-toggle-split, .appointment-page-1 .wizard-form .btn-group-sm > .btn.sw-btn-prev + .dropdown-toggle-split, .appointment-page-1 .wizard-form .btn-group-sm > .btn.sw-btn-next + .dropdown-toggle-split, .woocommerce .widget_shopping_cart .buttons .btn-group-sm > a + .dropdown-toggle-split, .woocommerce.widget_shopping_cart .buttons .btn-group-sm > a + .dropdown-toggle-split, .woocommerce #review_form #respond .form-submit .btn-group-sm > input + .dropdown-toggle-split, .woocommerce-cart-form .table.shop_table tr .btn-group-sm > .button + .dropdown-toggle-split, .woocommerce-cart .wc-proceed-to-checkout .btn-group-sm > a.checkout-button + .dropdown-toggle-split, .woocommerce #respond .btn-group-sm > input#submit + .dropdown-toggle-split, .woocommerce .btn-group-sm > a.button + .dropdown-toggle-split, .woocommerce .btn-group-sm > button.button + .dropdown-toggle-split, .woocommerce .btn-group-sm > input.button + .dropdown-toggle-split, .woocommerce .btn-group-sm > #place_order + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem; }

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .btn-group-lg > .wp-block-button__link + .dropdown-toggle-split, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-prev + .dropdown-toggle-split, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-next + .dropdown-toggle-split, .woocommerce .widget_shopping_cart .buttons .btn-group-lg > a + .dropdown-toggle-split, .woocommerce.widget_shopping_cart .buttons .btn-group-lg > a + .dropdown-toggle-split, .woocommerce #review_form #respond .form-submit .btn-group-lg > input + .dropdown-toggle-split, .woocommerce-cart-form .table.shop_table tr .btn-group-lg > .button + .dropdown-toggle-split, .woocommerce-cart .wc-proceed-to-checkout .btn-group-lg > a.checkout-button + .dropdown-toggle-split, .woocommerce #respond .btn-group-lg > input#submit + .dropdown-toggle-split, .woocommerce .btn-group-lg > a.button + .dropdown-toggle-split, .woocommerce .btn-group-lg > button.button + .dropdown-toggle-split, .woocommerce .btn-group-lg > input.button + .dropdown-toggle-split, .woocommerce .btn-group-lg > #place_order + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem; }

.btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center; }
  
  .btn-group-vertical > .btn,
  .btn-group-vertical > .wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button,
  .woocommerce #respond .btn-group-vertical > input#submit,
  .woocommerce .btn-group-vertical > a.button,
  .woocommerce .btn-group-vertical > button.button,
  .woocommerce .btn-group-vertical > input.button,
  .woocommerce .btn-group-vertical > #place_order,
  .btn-group-vertical > .btn-group {
    width: 100%; }
  .btn-group-vertical > .btn:not(:first-child), .btn-group-vertical > .wp-block-button__link:not(:first-child), .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev:not(:first-child), .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next:not(:first-child), .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a:not(:first-child),
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a:not(:first-child), .woocommerce #review_form #respond .form-submit .btn-group-vertical > input:not(:first-child), .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button:not(:first-child), .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button:not(:first-child), .woocommerce #respond .btn-group-vertical > input#submit:not(:first-child),
  .woocommerce .btn-group-vertical > a.button:not(:first-child),
  .woocommerce .btn-group-vertical > button.button:not(:first-child),
  .woocommerce .btn-group-vertical > input.button:not(:first-child),
  .woocommerce .btn-group-vertical > #place_order:not(:first-child),
  .btn-group-vertical > .btn-group:not(:first-child) {
    margin-top: -1px; }
  .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .btn-group-vertical > .wp-block-button__link:not(:last-child):not(.dropdown-toggle), .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev:not(:last-child):not(.dropdown-toggle), .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next:not(:last-child):not(.dropdown-toggle), .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a:not(:last-child):not(.dropdown-toggle),
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a:not(:last-child):not(.dropdown-toggle), .woocommerce #review_form #respond .form-submit .btn-group-vertical > input:not(:last-child):not(.dropdown-toggle), .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button:not(:last-child):not(.dropdown-toggle), .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button:not(:last-child):not(.dropdown-toggle), .woocommerce #respond .btn-group-vertical > input#submit:not(:last-child):not(.dropdown-toggle),
  .woocommerce .btn-group-vertical > a.button:not(:last-child):not(.dropdown-toggle),
  .woocommerce .btn-group-vertical > button.button:not(:last-child):not(.dropdown-toggle),
  .woocommerce .btn-group-vertical > input.button:not(:last-child):not(.dropdown-toggle),
  .woocommerce .btn-group-vertical > #place_order:not(:last-child):not(.dropdown-toggle),
  .btn-group-vertical > .btn-group:not(:last-child) > .btn,
  .btn-group-vertical > .btn-group:not(:last-child) > .wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn-group:not(:last-child) > .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn-group:not(:last-child) > .btn.sw-btn-next,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > .btn-group:not(:last-child) > a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > .btn-group:not(:last-child) > a,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > .btn-group:not(:last-child) > input,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .btn-group:not(:last-child) > .button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > .btn-group:not(:last-child) > a.checkout-button,
  .woocommerce #respond .btn-group-vertical > .btn-group:not(:last-child) > input#submit,
  .woocommerce .btn-group-vertical > .btn-group:not(:last-child) > a.button,
  .woocommerce .btn-group-vertical > .btn-group:not(:last-child) > button.button,
  .woocommerce .btn-group-vertical > .btn-group:not(:last-child) > input.button,
  .woocommerce .btn-group-vertical > .btn-group:not(:last-child) > #place_order {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }
  .btn-group-vertical > .btn ~ .btn, .btn-group-vertical > .wp-block-button__link ~ .btn, .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ .btn, .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ .btn, .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ .btn, .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ .btn, .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ .btn, .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ .btn, .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ .btn, .woocommerce #respond .btn-group-vertical > input#submit ~ .btn, .woocommerce .btn-group-vertical > a.button ~ .btn, .woocommerce .btn-group-vertical > button.button ~ .btn, .woocommerce .btn-group-vertical > input.button ~ .btn, .woocommerce .btn-group-vertical > #place_order ~ .btn, .btn-group-vertical > .btn ~ .wp-block-button__link, .btn-group-vertical > .wp-block-button__link ~ .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ .wp-block-button__link, .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ .wp-block-button__link, .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ .wp-block-button__link, .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ .wp-block-button__link, .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ .wp-block-button__link, .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ .wp-block-button__link, .woocommerce #respond .btn-group-vertical > input#submit ~ .wp-block-button__link, .woocommerce .btn-group-vertical > a.button ~ .wp-block-button__link, .woocommerce .btn-group-vertical > button.button ~ .wp-block-button__link, .woocommerce .btn-group-vertical > input.button ~ .wp-block-button__link, .woocommerce .btn-group-vertical > #place_order ~ .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-vertical > .btn ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-vertical > .wp-block-button__link ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ .btn.sw-btn-prev, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ .btn.sw-btn-prev, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ .btn.sw-btn-prev, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group-vertical > input ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ .btn.sw-btn-prev, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group-vertical > .button ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ .btn.sw-btn-prev, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group-vertical > a.checkout-button ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ .btn.sw-btn-prev, .woocommerce #respond .appointment-page-1 .wizard-form .btn-group-vertical > input#submit ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce #respond .btn-group-vertical > input#submit ~ .btn.sw-btn-prev, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > a.button ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > a.button ~ .btn.sw-btn-prev, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > button.button ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > button.button ~ .btn.sw-btn-prev, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > input.button ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > input.button ~ .btn.sw-btn-prev, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > #place_order ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > #place_order ~ .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-vertical > .btn ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .btn-group-vertical > .wp-block-button__link ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ .btn.sw-btn-next, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > a ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ .btn.sw-btn-next, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group-vertical > input ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ .btn.sw-btn-next, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group-vertical > .button ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ .btn.sw-btn-next, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group-vertical > a.checkout-button ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ .btn.sw-btn-next, .woocommerce #respond .appointment-page-1 .wizard-form .btn-group-vertical > input#submit ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce #respond .btn-group-vertical > input#submit ~ .btn.sw-btn-next, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > a.button ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > a.button ~ .btn.sw-btn-next, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > button.button ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > button.button ~ .btn.sw-btn-next, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > input.button ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > input.button ~ .btn.sw-btn-next, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > #place_order ~ .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > #place_order ~ .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > .btn ~ a, .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > .wp-block-button__link ~ a, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > .btn.sw-btn-prev ~ a, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ a, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > .btn.sw-btn-next ~ a, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ a, .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ a, .woocommerce.widget_shopping_cart .widget_shopping_cart .buttons .btn-group-vertical > a ~ a, .woocommerce #review_form #respond .form-submit .widget_shopping_cart .buttons .btn-group-vertical > input ~ a, .woocommerce .widget_shopping_cart .buttons #review_form #respond .form-submit .btn-group-vertical > input ~ a, .woocommerce-cart-form .table.shop_table tr .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > .button ~ a, .woocommerce .widget_shopping_cart .buttons .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ a, .woocommerce-cart .wc-proceed-to-checkout .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a.checkout-button ~ a, .woocommerce .widget_shopping_cart .buttons .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ a, .woocommerce #respond .widget_shopping_cart .buttons .btn-group-vertical > input#submit ~ a, .woocommerce .widget_shopping_cart .buttons #respond .btn-group-vertical > input#submit ~ a, .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a.button ~ a, .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > button.button ~ a, .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > input.button ~ a, .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > #place_order ~ a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > .btn ~ a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > .wp-block-button__link ~ a,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > .btn.sw-btn-prev ~ a, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ a,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > .btn.sw-btn-next ~ a, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ a,
  .woocommerce.widget_shopping_cart .widget_shopping_cart .buttons .btn-group-vertical > a ~ a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ a,
  .woocommerce.widget_shopping_cart #review_form #respond .form-submit .buttons .btn-group-vertical > input ~ a, .woocommerce.widget_shopping_cart .buttons #review_form #respond .form-submit .btn-group-vertical > input ~ a,
  .woocommerce-cart-form .table.shop_table tr .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > .button ~ a, .woocommerce.widget_shopping_cart .buttons .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ a,
  .woocommerce-cart .wc-proceed-to-checkout .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a.checkout-button ~ a, .woocommerce.widget_shopping_cart .buttons .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ a,
  .woocommerce.widget_shopping_cart #respond .buttons .btn-group-vertical > input#submit ~ a, .woocommerce.widget_shopping_cart .buttons #respond .btn-group-vertical > input#submit ~ a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a.button ~ a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > button.button ~ a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > input.button ~ a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > #place_order ~ a, .woocommerce #review_form #respond .form-submit .btn-group-vertical > .btn ~ input, .woocommerce #review_form #respond .form-submit .btn-group-vertical > .wp-block-button__link ~ input, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit .btn-group-vertical > .btn.sw-btn-prev ~ input, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ input, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit .btn-group-vertical > .btn.sw-btn-next ~ input, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ input, .woocommerce .widget_shopping_cart .buttons #review_form #respond .form-submit .btn-group-vertical > a ~ input, .woocommerce #review_form #respond .form-submit .widget_shopping_cart .buttons .btn-group-vertical > a ~ input, .woocommerce.widget_shopping_cart .buttons #review_form #respond .form-submit .btn-group-vertical > a ~ input, .woocommerce.widget_shopping_cart #review_form #respond .form-submit .buttons .btn-group-vertical > a ~ input, .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ input, .woocommerce-cart-form .table.shop_table tr .woocommerce #review_form #respond .form-submit .btn-group-vertical > .button ~ input, .woocommerce #review_form #respond .form-submit .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ input, .woocommerce-cart .wc-proceed-to-checkout .woocommerce #review_form #respond .form-submit .btn-group-vertical > a.checkout-button ~ input, .woocommerce #review_form #respond .form-submit .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ input, .woocommerce #review_form #respond .form-submit .btn-group-vertical > input#submit ~ input, .woocommerce #review_form #respond .form-submit .btn-group-vertical > a.button ~ input, .woocommerce #review_form #respond .form-submit .btn-group-vertical > button.button ~ input, .woocommerce #review_form #respond .form-submit .btn-group-vertical > input.button ~ input, .woocommerce #review_form #respond .form-submit .btn-group-vertical > #place_order ~ input, .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .btn ~ .button, .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .wp-block-button__link ~ .button, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .btn.sw-btn-prev ~ .button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ .button, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .btn.sw-btn-next ~ .button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ .button, .woocommerce .widget_shopping_cart .buttons .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > a ~ .button, .woocommerce-cart-form .table.shop_table tr .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ .button, .woocommerce.widget_shopping_cart .buttons .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > a ~ .button, .woocommerce-cart-form .table.shop_table tr .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ .button, .woocommerce #review_form #respond .form-submit .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > input ~ .button, .woocommerce-cart-form .table.shop_table tr .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ .button, .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ .button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > a.checkout-button ~ .button, .woocommerce-cart-form .table.shop_table tr .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ .button, .woocommerce #respond .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > input#submit ~ .button, .woocommerce-cart-form .table.shop_table tr .woocommerce #respond .btn-group-vertical > input#submit ~ .button, .woocommerce .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > a.button ~ .button, .woocommerce-cart-form .table.shop_table tr .woocommerce .btn-group-vertical > a.button ~ .button, .woocommerce .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > button.button ~ .button, .woocommerce-cart-form .table.shop_table tr .woocommerce .btn-group-vertical > button.button ~ .button, .woocommerce .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > input.button ~ .button, .woocommerce-cart-form .table.shop_table tr .woocommerce .btn-group-vertical > input.button ~ .button, .woocommerce .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > #place_order ~ .button, .woocommerce-cart-form .table.shop_table tr .woocommerce .btn-group-vertical > #place_order ~ .button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > .btn ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > .wp-block-button__link ~ a.checkout-button, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > .btn.sw-btn-prev ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ a.checkout-button, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > .btn.sw-btn-next ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ a.checkout-button, .woocommerce .widget_shopping_cart .buttons .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ a.checkout-button, .woocommerce.widget_shopping_cart .buttons .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ a.checkout-button, .woocommerce #review_form #respond .form-submit .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > input ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ a.checkout-button, .woocommerce-cart-form .table.shop_table tr .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > .button ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ a.checkout-button, .woocommerce #respond .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > input#submit ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce #respond .btn-group-vertical > input#submit ~ a.checkout-button, .woocommerce .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.button ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce .btn-group-vertical > a.button ~ a.checkout-button, .woocommerce .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > button.button ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce .btn-group-vertical > button.button ~ a.checkout-button, .woocommerce .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > input.button ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce .btn-group-vertical > input.button ~ a.checkout-button, .woocommerce .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > #place_order ~ a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce .btn-group-vertical > #place_order ~ a.checkout-button, .woocommerce #respond .btn-group-vertical > .btn ~ input#submit, .woocommerce #respond .btn-group-vertical > .wp-block-button__link ~ input#submit, .appointment-page-1 .wizard-form .woocommerce #respond .btn-group-vertical > .btn.sw-btn-prev ~ input#submit, .woocommerce #respond .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ input#submit, .appointment-page-1 .wizard-form .woocommerce #respond .btn-group-vertical > .btn.sw-btn-next ~ input#submit, .woocommerce #respond .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ input#submit, .woocommerce .widget_shopping_cart .buttons #respond .btn-group-vertical > a ~ input#submit, .woocommerce #respond .widget_shopping_cart .buttons .btn-group-vertical > a ~ input#submit, .woocommerce.widget_shopping_cart .buttons #respond .btn-group-vertical > a ~ input#submit, .woocommerce.widget_shopping_cart #respond .buttons .btn-group-vertical > a ~ input#submit, .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ input#submit, .woocommerce-cart-form .table.shop_table tr .woocommerce #respond .btn-group-vertical > .button ~ input#submit, .woocommerce #respond .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ input#submit, .woocommerce-cart .wc-proceed-to-checkout .woocommerce #respond .btn-group-vertical > a.checkout-button ~ input#submit, .woocommerce #respond .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ input#submit, .woocommerce #respond .btn-group-vertical > input#submit ~ input#submit, .woocommerce #respond .btn-group-vertical > a.button ~ input#submit, .woocommerce #respond .btn-group-vertical > button.button ~ input#submit, .woocommerce #respond .btn-group-vertical > input.button ~ input#submit, .woocommerce #respond .btn-group-vertical > #place_order ~ input#submit,
  .woocommerce .btn-group-vertical > .btn ~ a.button,
  .woocommerce .btn-group-vertical > .wp-block-button__link ~ a.button,
  .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > .btn.sw-btn-prev ~ a.button, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ a.button,
  .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > .btn.sw-btn-next ~ a.button, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ a.button,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ a.button,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ a.button,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ a.button,
  .woocommerce-cart-form .table.shop_table tr .woocommerce .btn-group-vertical > .button ~ a.button, .woocommerce .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ a.button,
  .woocommerce-cart .wc-proceed-to-checkout .woocommerce .btn-group-vertical > a.checkout-button ~ a.button, .woocommerce .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ a.button,
  .woocommerce #respond .btn-group-vertical > input#submit ~ a.button,
  .woocommerce .btn-group-vertical > a.button ~ a.button,
  .woocommerce .btn-group-vertical > button.button ~ a.button,
  .woocommerce .btn-group-vertical > input.button ~ a.button,
  .woocommerce .btn-group-vertical > #place_order ~ a.button,
  .woocommerce .btn-group-vertical > .btn ~ button.button,
  .woocommerce .btn-group-vertical > .wp-block-button__link ~ button.button,
  .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > .btn.sw-btn-prev ~ button.button, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ button.button,
  .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > .btn.sw-btn-next ~ button.button, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ button.button,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ button.button,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ button.button,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ button.button,
  .woocommerce-cart-form .table.shop_table tr .woocommerce .btn-group-vertical > .button ~ button.button, .woocommerce .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ button.button,
  .woocommerce-cart .wc-proceed-to-checkout .woocommerce .btn-group-vertical > a.checkout-button ~ button.button, .woocommerce .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ button.button,
  .woocommerce #respond .btn-group-vertical > input#submit ~ button.button,
  .woocommerce .btn-group-vertical > a.button ~ button.button,
  .woocommerce .btn-group-vertical > button.button ~ button.button,
  .woocommerce .btn-group-vertical > input.button ~ button.button,
  .woocommerce .btn-group-vertical > #place_order ~ button.button,
  .woocommerce .btn-group-vertical > .btn ~ input.button,
  .woocommerce .btn-group-vertical > .wp-block-button__link ~ input.button,
  .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > .btn.sw-btn-prev ~ input.button, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ input.button,
  .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > .btn.sw-btn-next ~ input.button, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ input.button,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ input.button,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ input.button,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ input.button,
  .woocommerce-cart-form .table.shop_table tr .woocommerce .btn-group-vertical > .button ~ input.button, .woocommerce .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ input.button,
  .woocommerce-cart .wc-proceed-to-checkout .woocommerce .btn-group-vertical > a.checkout-button ~ input.button, .woocommerce .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ input.button,
  .woocommerce #respond .btn-group-vertical > input#submit ~ input.button,
  .woocommerce .btn-group-vertical > a.button ~ input.button,
  .woocommerce .btn-group-vertical > button.button ~ input.button,
  .woocommerce .btn-group-vertical > input.button ~ input.button,
  .woocommerce .btn-group-vertical > #place_order ~ input.button,
  .woocommerce .btn-group-vertical > .btn ~ #place_order,
  .woocommerce .btn-group-vertical > .wp-block-button__link ~ #place_order,
  .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > .btn.sw-btn-prev ~ #place_order, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-prev ~ #place_order,
  .appointment-page-1 .wizard-form .woocommerce .btn-group-vertical > .btn.sw-btn-next ~ #place_order, .woocommerce .appointment-page-1 .wizard-form .btn-group-vertical > .btn.sw-btn-next ~ #place_order,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > a ~ #place_order,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > a ~ #place_order,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > input ~ #place_order,
  .woocommerce-cart-form .table.shop_table tr .woocommerce .btn-group-vertical > .button ~ #place_order, .woocommerce .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .button ~ #place_order,
  .woocommerce-cart .wc-proceed-to-checkout .woocommerce .btn-group-vertical > a.checkout-button ~ #place_order, .woocommerce .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > a.checkout-button ~ #place_order,
  .woocommerce #respond .btn-group-vertical > input#submit ~ #place_order,
  .woocommerce .btn-group-vertical > a.button ~ #place_order,
  .woocommerce .btn-group-vertical > button.button ~ #place_order,
  .woocommerce .btn-group-vertical > input.button ~ #place_order,
  .woocommerce .btn-group-vertical > #place_order ~ #place_order,
  .btn-group-vertical > .btn-group:not(:first-child) > .btn,
  .btn-group-vertical > .btn-group:not(:first-child) > .wp-block-button__link,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn-group:not(:first-child) > .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form .btn-group-vertical > .btn-group:not(:first-child) > .btn.sw-btn-next,
  .woocommerce .widget_shopping_cart .buttons .btn-group-vertical > .btn-group:not(:first-child) > a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-vertical > .btn-group:not(:first-child) > a,
  .woocommerce #review_form #respond .form-submit .btn-group-vertical > .btn-group:not(:first-child) > input,
  .woocommerce-cart-form .table.shop_table tr .btn-group-vertical > .btn-group:not(:first-child) > .button,
  .woocommerce-cart .wc-proceed-to-checkout .btn-group-vertical > .btn-group:not(:first-child) > a.checkout-button,
  .woocommerce #respond .btn-group-vertical > .btn-group:not(:first-child) > input#submit,
  .woocommerce .btn-group-vertical > .btn-group:not(:first-child) > a.button,
  .woocommerce .btn-group-vertical > .btn-group:not(:first-child) > button.button,
  .woocommerce .btn-group-vertical > .btn-group:not(:first-child) > input.button,
  .woocommerce .btn-group-vertical > .btn-group:not(:first-child) > #place_order {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #FF8139;
  text-decoration: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .nav-link {
      transition: none; } }
  .nav-link:hover, .nav-link:focus {
    color: #cc672e; }
  .nav-link.disabled {
    color: #6c757d;
    pointer-events: none;
    cursor: default; }

.nav-tabs {
  border-bottom: 1px solid #dee2e6; }
  .nav-tabs .nav-link {
    margin-bottom: -1px;
    background: none;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
    .nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
      border-color: #e9ecef #e9ecef #dee2e6;
      isolation: isolate; }
    .nav-tabs .nav-link.disabled {
      color: #6c757d;
      background-color: transparent;
      border-color: transparent; }
  .nav-tabs .nav-link.active,
  .nav-tabs .nav-item.show .nav-link {
    color: #495057;
    background-color: #ffffff;
    border-color: #dee2e6 #dee2e6 #ffffff; }
  .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.25rem; }

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #FF8139; }

.nav-fill > .nav-link,
.nav-fill .nav-item {
  flex: 1 1 auto;
  text-align: center; }

.nav-justified > .nav-link,
.nav-justified .nav-item {
  flex-basis: 0;
  flex-grow: 1;
  text-align: center; }

.nav-fill .nav-item .nav-link,
.nav-justified .nav-item .nav-link {
  width: 100%; }

.tab-content > .tab-pane {
  display: none; }

.tab-content > .active {
  display: block; }

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }
  .navbar > .container,
  .navbar > .container-fluid, .navbar > .container-sm, .navbar > .container-md, .navbar > .container-lg, .navbar > .container-xl {
    display: flex;
    flex-wrap: inherit;
    align-items: center;
    justify-content: space-between; }

.navbar-brand {
  padding-top: 0.3125rem;
  padding-bottom: 0.3125rem;
  margin-right: 1rem;
  font-size: 1.17188rem;
  text-decoration: none;
  white-space: nowrap; }

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }
  .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0; }
  .navbar-nav .dropdown-menu {
    position: static; }

.navbar-text {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem; }

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center; }

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 1.17188rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  transition: box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .navbar-toggler {
      transition: none; } }
  .navbar-toggler:hover {
    text-decoration: none; }
  .navbar-toggler:focus {
    text-decoration: none;
    outline: 0;
    box-shadow: 0 0 0 0rem; }

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100%; }

.navbar-nav-scroll {
  max-height: var(--bs-scroll-height, 75vh);
  overflow-y: auto; }

@media (min-width: 576px) {
  .navbar-expand-sm {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-sm .navbar-nav {
      flex-direction: row; }
      .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-sm .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-sm .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-sm .navbar-toggler {
      display: none; }
    .navbar-expand-sm .offcanvas-header {
      display: none; }
    .navbar-expand-sm .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-sm .offcanvas-top,
    .navbar-expand-sm .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-sm .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

@media (min-width: 768px) {
  .navbar-expand-md {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-md .navbar-nav {
      flex-direction: row; }
      .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-md .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-md .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-md .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-md .navbar-toggler {
      display: none; }
    .navbar-expand-md .offcanvas-header {
      display: none; }
    .navbar-expand-md .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-md .offcanvas-top,
    .navbar-expand-md .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-md .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

@media (min-width: 992px) {
  .navbar-expand-lg {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-lg .navbar-nav {
      flex-direction: row; }
      .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-lg .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-lg .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-lg .navbar-toggler {
      display: none; }
    .navbar-expand-lg .offcanvas-header {
      display: none; }
    .navbar-expand-lg .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-lg .offcanvas-top,
    .navbar-expand-lg .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-lg .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

@media (min-width: 1170px) {
  .navbar-expand-xl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xl .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-xl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xl .navbar-toggler {
      display: none; }
    .navbar-expand-xl .offcanvas-header {
      display: none; }
    .navbar-expand-xl .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-xl .offcanvas-top,
    .navbar-expand-xl .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-xl .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

@media (min-width: 1440) {
  .navbar-expand-xxl {
    flex-wrap: nowrap;
    justify-content: flex-start; }
    .navbar-expand-xxl .navbar-nav {
      flex-direction: row; }
      .navbar-expand-xxl .navbar-nav .dropdown-menu {
        position: absolute; }
      .navbar-expand-xxl .navbar-nav .nav-link {
        padding-right: 0.5rem;
        padding-left: 0.5rem; }
    .navbar-expand-xxl .navbar-nav-scroll {
      overflow: visible; }
    .navbar-expand-xxl .navbar-collapse {
      display: flex !important;
      flex-basis: auto; }
    .navbar-expand-xxl .navbar-toggler {
      display: none; }
    .navbar-expand-xxl .offcanvas-header {
      display: none; }
    .navbar-expand-xxl .offcanvas {
      position: inherit;
      bottom: 0;
      z-index: 1000;
      flex-grow: 1;
      visibility: visible !important;
      background-color: transparent;
      border-right: 0;
      border-left: 0;
      transition: none;
      transform: none; }
    .navbar-expand-xxl .offcanvas-top,
    .navbar-expand-xxl .offcanvas-bottom {
      height: auto;
      border-top: 0;
      border-bottom: 0; }
    .navbar-expand-xxl .offcanvas-body {
      display: flex;
      flex-grow: 0;
      padding: 0;
      overflow-y: visible; } }

.navbar-expand {
  flex-wrap: nowrap;
  justify-content: flex-start; }
  .navbar-expand .navbar-nav {
    flex-direction: row; }
    .navbar-expand .navbar-nav .dropdown-menu {
      position: absolute; }
    .navbar-expand .navbar-nav .nav-link {
      padding-right: 0.5rem;
      padding-left: 0.5rem; }
  .navbar-expand .navbar-nav-scroll {
    overflow: visible; }
  .navbar-expand .navbar-collapse {
    display: flex !important;
    flex-basis: auto; }
  .navbar-expand .navbar-toggler {
    display: none; }
  .navbar-expand .offcanvas-header {
    display: none; }
  .navbar-expand .offcanvas {
    position: inherit;
    bottom: 0;
    z-index: 1000;
    flex-grow: 1;
    visibility: visible !important;
    background-color: transparent;
    border-right: 0;
    border-left: 0;
    transition: none;
    transform: none; }
  .navbar-expand .offcanvas-top,
  .navbar-expand .offcanvas-bottom {
    height: auto;
    border-top: 0;
    border-bottom: 0; }
  .navbar-expand .offcanvas-body {
    display: flex;
    flex-grow: 0;
    padding: 0;
    overflow-y: visible; }

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9); }
  .navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
    color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.55); }
  .navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
    color: rgba(0, 0, 0, 0.7); }
  .navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, 0.3); }

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9); }

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.55);
  border-color: rgba(0, 0, 0, 0.1); }

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.55); }
  .navbar-light .navbar-text a,
  .navbar-light .navbar-text a:hover,
  .navbar-light .navbar-text a:focus {
    color: rgba(0, 0, 0, 0.9); }

.navbar-dark .navbar-brand {
  color: #fff; }
  .navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
    color: #fff; }

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.55); }
  .navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
    color: rgba(255, 255, 255, 0.75); }
  .navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, 0.25); }

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff; }

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.55);
  border-color: rgba(255, 255, 255, 0.1); }

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.55); }
  .navbar-dark .navbar-text a,
  .navbar-dark .navbar-text a:hover,
  .navbar-dark .navbar-text a:focus {
    color: #fff; }

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.25rem; }
  .card > hr {
    margin-right: 0;
    margin-left: 0; }
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit; }
    .card > .list-group:first-child {
      border-top-width: 0;
      border-top-left-radius: calc(0.25rem - 1px);
      border-top-right-radius: calc(0.25rem - 1px); }
    .card > .list-group:last-child {
      border-bottom-width: 0;
      border-bottom-right-radius: calc(0.25rem - 1px);
      border-bottom-left-radius: calc(0.25rem - 1px); }
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0; }

.card-body {
  flex: 1 1 auto;
  padding: 1rem 1rem; }

.card-title {
  margin-bottom: 0.5rem; }

.card-subtitle {
  margin-top: -0.25rem;
  margin-bottom: 0; }

.card-text:last-child {
  margin-bottom: 0; }

.card-link + .card-link {
  margin-left: 1rem; }

.card-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125); }
  .card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0; }

.card-footer {
  padding: 0.5rem 1rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125); }
  .card-footer:last-child {
    border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px); }

.card-header-tabs {
  margin-right: -0.5rem;
  margin-bottom: -0.5rem;
  margin-left: -0.5rem;
  border-bottom: 0; }

.card-header-pills {
  margin-right: -0.5rem;
  margin-left: -0.5rem; }

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1rem;
  border-radius: calc(0.25rem - 1px); }

.card-img,
.card-img-top,
.card-img-bottom {
  width: 100%; }

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px); }

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.25rem - 1px);
  border-bottom-left-radius: calc(0.25rem - 1px); }

.card-group > .card {
  margin-bottom: 15px; }

@media (min-width: 576px) {
  .card-group {
    display: flex;
    flex-flow: row wrap; }
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0; }
      .card-group > .card + .card {
        margin-left: 0;
        border-left: 0; }
      .card-group > .card:not(:last-child) {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-top,
        .card-group > .card:not(:last-child) .card-header {
          border-top-right-radius: 0; }
        .card-group > .card:not(:last-child) .card-img-bottom,
        .card-group > .card:not(:last-child) .card-footer {
          border-bottom-right-radius: 0; }
      .card-group > .card:not(:first-child) {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-top,
        .card-group > .card:not(:first-child) .card-header {
          border-top-left-radius: 0; }
        .card-group > .card:not(:first-child) .card-img-bottom,
        .card-group > .card:not(:first-child) .card-footer {
          border-bottom-left-radius: 0; } }

.accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1rem 1.25rem;
  font-size: 0.9375rem;
  color: #666666;
  text-align: left;
  background-color: #ffffff;
  border: 0;
  border-radius: 0;
  overflow-anchor: none;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, border-radius 0.15s ease; }
  @media (prefers-reduced-motion: reduce) {
    .accordion-button {
      transition: none; } }
  .accordion-button:not(.collapsed) {
    color: #e67433;
    background-color: #fff2eb;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.125); }
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23e67433'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
      transform: rotate(-180deg); }
  .accordion-button::after {
    flex-shrink: 0;
    width: 1.25rem;
    height: 1.25rem;
    margin-left: auto;
    content: "";
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23666666'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-size: 1.25rem;
    transition: transform 0.2s ease-in-out; }
    @media (prefers-reduced-motion: reduce) {
      .accordion-button::after {
        transition: none; } }
  .accordion-button:hover {
    z-index: 2; }
  .accordion-button:focus {
    z-index: 3;
    border-color: #ffc09c;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(255, 129, 57, 0.25); }

.accordion-header {
  margin-bottom: 0; }

.accordion-item {
  background-color: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .accordion-item:first-of-type {
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
    .accordion-item:first-of-type .accordion-button {
      border-top-left-radius: calc(0.25rem - 1px);
      border-top-right-radius: calc(0.25rem - 1px); }
  .accordion-item:not(:first-of-type) {
    border-top: 0; }
  .accordion-item:last-of-type {
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
    .accordion-item:last-of-type .accordion-button.collapsed {
      border-bottom-right-radius: calc(0.25rem - 1px);
      border-bottom-left-radius: calc(0.25rem - 1px); }
    .accordion-item:last-of-type .accordion-collapse {
      border-bottom-right-radius: 0.25rem;
      border-bottom-left-radius: 0.25rem; }

.accordion-body {
  padding: 1rem 1.25rem; }

.accordion-flush .accordion-collapse {
  border-width: 0; }

.accordion-flush .accordion-item {
  border-right: 0;
  border-left: 0;
  border-radius: 0; }
  .accordion-flush .accordion-item:first-child {
    border-top: 0; }
  .accordion-flush .accordion-item:last-child {
    border-bottom: 0; }
  .accordion-flush .accordion-item .accordion-button {
    border-radius: 0; }

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

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem; }
  .breadcrumb-item + .breadcrumb-item::before {
    float: left;
    padding-right: 0.5rem;
    color: #6c757d;
    content: var(--bs-breadcrumb-divider, "/") /* rtl: var(--bs-breadcrumb-divider, "/") */; }

.breadcrumb-item.active {
  color: #6c757d; }

.pagination {
  display: flex;
  padding-left: 0;
  list-style: none; }

.page-link {
  position: relative;
  display: block;
  color: #FF8139;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid #dee2e6;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .page-link {
      transition: none; } }
  .page-link:hover {
    z-index: 2;
    color: #cc672e;
    background-color: #e9ecef;
    border-color: #dee2e6; }
  .page-link:focus {
    z-index: 3;
    color: #cc672e;
    background-color: #e9ecef;
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(255, 129, 57, 0.25); }

.page-item:not(:first-child) .page-link {
  margin-left: -1px; }

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #FF8139;
  border-color: #FF8139; }

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
  border-color: #dee2e6; }

.page-link {
  padding: 0.375rem 0.75rem; }

.page-item:first-child .page-link {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem; }

.page-item:last-child .page-link {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem; }

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 1.17188rem; }

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem; }

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem; }

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 0.82031rem; }

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.75rem;
  border-bottom-left-radius: 0.75rem; }

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.75rem;
  border-bottom-right-radius: 0.75rem; }

.badge {
  display: inline-block;
  padding: 0.35em 0.65em;
  font-size: 0.75em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem; }
  .badge:empty {
    display: none; }

.btn .badge, .wp-block-button__link .badge, .appointment-page-1 .wizard-form .btn.sw-btn-prev .badge, .appointment-page-1 .wizard-form .btn.sw-btn-next .badge, .woocommerce .widget_shopping_cart .buttons a .badge, .woocommerce.widget_shopping_cart .buttons a .badge, .woocommerce #review_form #respond .form-submit input .badge, .woocommerce-cart-form .table.shop_table tr .button .badge, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button .badge, .woocommerce #respond input#submit .badge, .woocommerce a.button .badge, .woocommerce button.button .badge, .woocommerce input.button .badge, .woocommerce #place_order .badge {
  position: relative;
  top: -1px; }

.alert {
  position: relative;
  padding: 1rem 1rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem; }

.alert-heading {
  color: inherit; }

.alert-link {
  font-weight: 700; }

.alert-dismissible {
  padding-right: 3rem; }
  .alert-dismissible .btn-close {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    padding: 1.25rem 1rem; }

.alert-primary {
  color: #994d22;
  background-color: #ffe6d7;
  border-color: #ffd9c4; }
  .alert-primary .alert-link {
    color: #7a3e1b; }

.alert-secondary {
  color: #151515;
  background-color: lightgray;
  border-color: #bdbdbd; }
  .alert-secondary .alert-link {
    color: #111111; }

.alert-success {
  color: #0b742e;
  background-color: #d0f3db;
  border-color: #b8edca; }
  .alert-success .alert-link {
    color: #095d25; }

.alert-info {
  color: #006899;
  background-color: #ccefff;
  border-color: #b3e7ff; }
  .alert-info .alert-link {
    color: #00537a; }

.alert-warning {
  color: #664c08;
  background-color: #fff2d0;
  border-color: #ffebb8; }
  .alert-warning .alert-link {
    color: #523d06; }

.alert-danger {
  color: #990002;
  background-color: #ffcccd;
  border-color: #ffb3b3; }
  .alert-danger .alert-link {
    color: #7a0002; }

.alert-light {
  color: #646361;
  background-color: #fefefc;
  border-color: #fefdfb; }
  .alert-light .alert-link {
    color: #504f4e; }

.alert-dark {
  color: #141414;
  background-color: lightgray;
  border-color: #bdbdbd; }
  .alert-dark .alert-link {
    color: #101010; }

@keyframes progress-bar-stripes {
  0% {
    background-position-x: 1rem; } }

.progress {
  display: flex;
  height: 1rem;
  overflow: hidden;
  font-size: 0.70313rem;
  background-color: #e9ecef;
  border-radius: 0.25rem; }
  @media (min-width: 1200px) {
    .progress {
      font-size: 0.70312rem; } }

.progress-bar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #FF8139;
  transition: width 0.6s ease; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar {
      transition: none; } }

.progress-bar-striped {
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem; }

.progress-bar-animated {
  animation: 1s linear infinite progress-bar-stripes; }
  @media (prefers-reduced-motion: reduce) {
    .progress-bar-animated {
      animation: none; } }

.list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.25rem; }

.list-group-numbered {
  list-style-type: none;
  counter-reset: section; }
  .list-group-numbered > li::before {
    content: counters(section, ".") ". ";
    counter-increment: section; }

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit; }
  .list-group-item-action:hover, .list-group-item-action:focus {
    z-index: 1;
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa; }
  .list-group-item-action:active {
    color: #666666;
    background-color: #e9ecef; }

.list-group-item {
  position: relative;
  display: block;
  padding: 0.5rem 1rem;
  color: #212529;
  text-decoration: none;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125); }
  .list-group-item:first-child {
    border-top-left-radius: inherit;
    border-top-right-radius: inherit; }
  .list-group-item:last-child {
    border-bottom-right-radius: inherit;
    border-bottom-left-radius: inherit; }
  .list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    pointer-events: none;
    background-color: #fff; }
  .list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #FF8139;
    border-color: #FF8139; }
  .list-group-item + .list-group-item {
    border-top-width: 0; }
    .list-group-item + .list-group-item.active {
      margin-top: -1px;
      border-top-width: 1px; }

.list-group-horizontal {
  flex-direction: row; }
  .list-group-horizontal > .list-group-item:first-child {
    border-bottom-left-radius: 0.25rem;
    border-top-right-radius: 0; }
  .list-group-horizontal > .list-group-item:last-child {
    border-top-right-radius: 0.25rem;
    border-bottom-left-radius: 0; }
  .list-group-horizontal > .list-group-item.active {
    margin-top: 0; }
  .list-group-horizontal > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0; }
    .list-group-horizontal > .list-group-item + .list-group-item.active {
      margin-left: -1px;
      border-left-width: 1px; }

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    flex-direction: row; }
    .list-group-horizontal-sm > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-sm > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-sm > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-sm > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 768px) {
  .list-group-horizontal-md {
    flex-direction: row; }
    .list-group-horizontal-md > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-md > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-md > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-md > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-md > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 992px) {
  .list-group-horizontal-lg {
    flex-direction: row; }
    .list-group-horizontal-lg > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-lg > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-lg > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-lg > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 1170px) {
  .list-group-horizontal-xl {
    flex-direction: row; }
    .list-group-horizontal-xl > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-xl > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-xl > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-xl > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

@media (min-width: 1440) {
  .list-group-horizontal-xxl {
    flex-direction: row; }
    .list-group-horizontal-xxl > .list-group-item:first-child {
      border-bottom-left-radius: 0.25rem;
      border-top-right-radius: 0; }
    .list-group-horizontal-xxl > .list-group-item:last-child {
      border-top-right-radius: 0.25rem;
      border-bottom-left-radius: 0; }
    .list-group-horizontal-xxl > .list-group-item.active {
      margin-top: 0; }
    .list-group-horizontal-xxl > .list-group-item + .list-group-item {
      border-top-width: 1px;
      border-left-width: 0; }
      .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
        margin-left: -1px;
        border-left-width: 1px; } }

.list-group-flush {
  border-radius: 0; }
  .list-group-flush > .list-group-item {
    border-width: 0 0 1px; }
    .list-group-flush > .list-group-item:last-child {
      border-bottom-width: 0; }

.list-group-item-primary {
  color: #994d22;
  background-color: #ffe6d7; }
  .list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
    color: #994d22;
    background-color: #e6cfc2; }
  .list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #994d22;
    border-color: #994d22; }

.list-group-item-secondary {
  color: #151515;
  background-color: lightgray; }
  .list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
    color: #151515;
    background-color: #bebebe; }
  .list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #151515;
    border-color: #151515; }

.list-group-item-success {
  color: #0b742e;
  background-color: #d0f3db; }
  .list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
    color: #0b742e;
    background-color: #bbdbc5; }
  .list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #0b742e;
    border-color: #0b742e; }

.list-group-item-info {
  color: #006899;
  background-color: #ccefff; }
  .list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
    color: #006899;
    background-color: #b8d7e6; }
  .list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #006899;
    border-color: #006899; }

.list-group-item-warning {
  color: #664c08;
  background-color: #fff2d0; }
  .list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
    color: #664c08;
    background-color: #e6dabb; }
  .list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #664c08;
    border-color: #664c08; }

.list-group-item-danger {
  color: #990002;
  background-color: #ffcccd; }
  .list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
    color: #990002;
    background-color: #e6b8b9; }
  .list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #990002;
    border-color: #990002; }

.list-group-item-light {
  color: #646361;
  background-color: #fefefc; }
  .list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
    color: #646361;
    background-color: #e5e5e3; }
  .list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #646361;
    border-color: #646361; }

.list-group-item-dark {
  color: #141414;
  background-color: lightgray; }
  .list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
    color: #141414;
    background-color: #bebebe; }
  .list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #141414;
    border-color: #141414; }

.btn-close {
  box-sizing: content-box;
  width: 1em;
  height: 1em;
  padding: 0.25em 0.25em;
  color: #000;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;
  border: 0;
  border-radius: 0.25rem;
  opacity: 0.5; }
  .btn-close:hover {
    color: #000;
    text-decoration: none;
    opacity: 0.75; }
  .btn-close:focus {
    outline: 0;
    box-shadow: 0 0 0 0rem rgba(255, 129, 57, 0.25);
    opacity: 1; }
  .btn-close:disabled, .btn-close.disabled {
    pointer-events: none;
    user-select: none;
    opacity: 0.25; }

.btn-close-white {
  filter: invert(1) grayscale(100%) brightness(200%); }

.toast {
  width: 350px;
  max-width: 100%;
  font-size: 0.875rem;
  pointer-events: auto;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.25rem; }
  .toast.showing {
    opacity: 0; }
  .toast:not(.show) {
    display: none; }

.toast-container {
  width: max-content;
  max-width: 100%;
  pointer-events: none; }
  .toast-container > :not(:last-child) {
    margin-bottom: 15px; }

.toast-header {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px); }
  .toast-header .btn-close {
    margin-right: -0.375rem;
    margin-left: 0.75rem; }

.toast-body {
  padding: 0.75rem;
  word-wrap: break-word; }

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1055;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -50px); }
    @media (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        transition: none; } }
  .modal.show .modal-dialog {
    transform: none; }
  .modal.modal-static .modal-dialog {
    transform: scale(1.02); }

.modal-dialog-scrollable {
  height: calc(100% - 1rem); }
  .modal-dialog-scrollable .modal-content {
    max-height: 100%;
    overflow: hidden; }
  .modal-dialog-scrollable .modal-body {
    overflow-y: auto; }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem); }

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100vw;
  height: 100vh;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #F2F2F2;
  border-top-left-radius: calc(1rem - 1px);
  border-top-right-radius: calc(1rem - 1px); }
  .modal-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin: -0.5rem -0.5rem -0.5rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.6; }

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  align-items: center;
  justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #F2F2F2;
  border-bottom-right-radius: calc(1rem - 1px);
  border-bottom-left-radius: calc(1rem - 1px); }
  .modal-footer > * {
    margin: 0.25rem; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-scrollable {
    height: calc(100% - 3.5rem); }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem); }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 992px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px; } }

@media (min-width: 1170px) {
  .modal-xl {
    max-width: 1140px; } }

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0; }
  .modal-fullscreen .modal-content {
    height: 100%;
    border: 0;
    border-radius: 0; }
  .modal-fullscreen .modal-header {
    border-radius: 0; }
  .modal-fullscreen .modal-body {
    overflow-y: auto; }
  .modal-fullscreen .modal-footer {
    border-radius: 0; }

@media (max-width: 575.98px) {
  .modal-fullscreen-sm-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-sm-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-sm-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-sm-down .modal-footer {
      border-radius: 0; } }

@media (max-width: 767.98px) {
  .modal-fullscreen-md-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-md-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-md-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-md-down .modal-footer {
      border-radius: 0; } }

@media (max-width: 991.98px) {
  .modal-fullscreen-lg-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-lg-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-lg-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-lg-down .modal-footer {
      border-radius: 0; } }

@media (max-width: 1169.98px) {
  .modal-fullscreen-xl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-xl-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-xl-down .modal-footer {
      border-radius: 0; } }

@media (max-width: 1439.98) {
  .modal-fullscreen-xxl-down {
    width: 100vw;
    max-width: none;
    height: 100%;
    margin: 0; }
    .modal-fullscreen-xxl-down .modal-content {
      height: 100%;
      border: 0;
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-header {
      border-radius: 0; }
    .modal-fullscreen-xxl-down .modal-body {
      overflow-y: auto; }
    .modal-fullscreen-xxl-down .modal-footer {
      border-radius: 0; } }

.tooltip {
  position: absolute;
  z-index: 1080;
  display: block;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.82031rem;
  word-wrap: break-word;
  opacity: 0; }
  .tooltip.show {
    opacity: 0.9; }
  .tooltip .tooltip-arrow {
    position: absolute;
    display: block;
    width: 0.8rem;
    height: 0.4rem; }
    .tooltip .tooltip-arrow::before {
      position: absolute;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-tooltip-top, .bs-tooltip-auto[data-popper-placement^="top"] {
  padding: 0.4rem 0; }
  .bs-tooltip-top .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow {
    bottom: 0; }
    .bs-tooltip-top .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="top"] .tooltip-arrow::before {
      top: -1px;
      border-width: 0.4rem 0.4rem 0;
      border-top-color: #000; }

.bs-tooltip-end, .bs-tooltip-auto[data-popper-placement^="right"] {
  padding: 0 0.4rem; }
  .bs-tooltip-end .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow {
    left: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-end .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="right"] .tooltip-arrow::before {
      right: -1px;
      border-width: 0.4rem 0.4rem 0.4rem 0;
      border-right-color: #000; }

.bs-tooltip-bottom, .bs-tooltip-auto[data-popper-placement^="bottom"] {
  padding: 0.4rem 0; }
  .bs-tooltip-bottom .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow {
    top: 0; }
    .bs-tooltip-bottom .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="bottom"] .tooltip-arrow::before {
      bottom: -1px;
      border-width: 0 0.4rem 0.4rem;
      border-bottom-color: #000; }

.bs-tooltip-start, .bs-tooltip-auto[data-popper-placement^="left"] {
  padding: 0 0.4rem; }
  .bs-tooltip-start .tooltip-arrow, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow {
    right: 0;
    width: 0.4rem;
    height: 0.8rem; }
    .bs-tooltip-start .tooltip-arrow::before, .bs-tooltip-auto[data-popper-placement^="left"] .tooltip-arrow::before {
      left: -1px;
      border-width: 0.4rem 0 0.4rem 0.4rem;
      border-left-color: #000; }

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.25rem; }

.popover {
  position: absolute;
  top: 0;
  left: 0 /* rtl:ignore */;
  z-index: 1070;
  display: block;
  max-width: 276px;
  font-family: "Poppins", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.82031rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 1rem; }
  .popover .popover-arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem; }
    .popover .popover-arrow::before, .popover .popover-arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-popover-top > .popover-arrow, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow {
  bottom: calc(-0.5rem - 1px); }
  .bs-popover-top > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::before {
    bottom: 0;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: rgba(0, 0, 0, 0.25); }
  .bs-popover-top > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="top"] > .popover-arrow::after {
    bottom: 1px;
    border-width: 0.5rem 0.5rem 0;
    border-top-color: #fff; }

.bs-popover-end > .popover-arrow, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem; }
  .bs-popover-end > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::before {
    left: 0;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: rgba(0, 0, 0, 0.25); }
  .bs-popover-end > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="right"] > .popover-arrow::after {
    left: 1px;
    border-width: 0.5rem 0.5rem 0.5rem 0;
    border-right-color: #fff; }

.bs-popover-bottom > .popover-arrow, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow {
  top: calc(-0.5rem - 1px); }
  .bs-popover-bottom > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::before {
    top: 0;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: rgba(0, 0, 0, 0.25); }
  .bs-popover-bottom > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="bottom"] > .popover-arrow::after {
    top: 1px;
    border-width: 0 0.5rem 0.5rem 0.5rem;
    border-bottom-color: #fff; }

.bs-popover-bottom .popover-header::before, .bs-popover-auto[data-popper-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f0f0f0; }

.bs-popover-start > .popover-arrow, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem; }
  .bs-popover-start > .popover-arrow::before, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::before {
    right: 0;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: rgba(0, 0, 0, 0.25); }
  .bs-popover-start > .popover-arrow::after, .bs-popover-auto[data-popper-placement^="left"] > .popover-arrow::after {
    right: 1px;
    border-width: 0.5rem 0 0.5rem 0.5rem;
    border-left-color: #fff; }

.popover-header {
  padding: 0.5rem 1rem;
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: #222222;
  background-color: #f0f0f0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  border-top-left-radius: calc(1rem - 1px);
  border-top-right-radius: calc(1rem - 1px); }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 1rem 1rem;
  color: #666666; }

.carousel {
  position: relative; }

.carousel.pointer-event {
  touch-action: pan-y; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }
  .carousel-inner::after {
    display: block;
    clear: both;
    content: ""; }

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  backface-visibility: hidden;
  transition: transform 0.6s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-item {
      transition: none; } }

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block; }

/* rtl:begin:ignore */
.carousel-item-next:not(.carousel-item-start),
.active.carousel-item-end {
  transform: translateX(100%); }

.carousel-item-prev:not(.carousel-item-end),
.active.carousel-item-start {
  transform: translateX(-100%); }

/* rtl:end:ignore */
.carousel-fade .carousel-item {
  opacity: 0;
  transition-property: opacity;
  transform: none; }

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-start,
.carousel-fade .carousel-item-prev.carousel-item-end {
  z-index: 1;
  opacity: 1; }

.carousel-fade .active.carousel-item-start,
.carousel-fade .active.carousel-item-end {
  z-index: 0;
  opacity: 0;
  transition: opacity 0s 0.6s; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-fade .active.carousel-item-start,
    .carousel-fade .active.carousel-item-end {
      transition: none; } }

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  transition: opacity 0.15s ease; }
  @media (prefers-reduced-motion: reduce) {
    .carousel-control-prev,
    .carousel-control-next {
      transition: none; } }
  .carousel-control-prev:hover, .carousel-control-prev:focus,
  .carousel-control-next:hover,
  .carousel-control-next:focus {
    color: #fff;
    text-decoration: none;
    outline: 0;
    opacity: 0.9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: 100% 100%; }

/* rtl:options: {
  "autoRename": true,
  "stringMap":[ {
    "name"    : "prev-next",
    "search"  : "prev",
    "replace" : "next"
  } ]
} */
.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0;
  margin-right: 15%;
  margin-bottom: 1rem;
  margin-left: 15%;
  list-style: none; }
  .carousel-indicators [data-bs-target] {
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    padding: 0;
    margin-right: 3px;
    margin-left: 3px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: 0.5;
    transition: opacity 0.6s ease; }
    @media (prefers-reduced-motion: reduce) {
      .carousel-indicators [data-bs-target] {
        transition: none; } }
  .carousel-indicators .active {
    opacity: 1; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 1.25rem;
  left: 15%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  text-align: center; }

.carousel-dark .carousel-control-prev-icon,
.carousel-dark .carousel-control-next-icon {
  filter: invert(1) grayscale(100); }

.carousel-dark .carousel-indicators [data-bs-target] {
  background-color: #000; }

.carousel-dark .carousel-caption {
  color: #000; }

@keyframes spinner-border {
  to {
    transform: rotate(360deg) /* rtl:ignore */; } }

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border; }

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em; }

@keyframes spinner-grow {
  0% {
    transform: scale(0); }
  50% {
    opacity: 1;
    transform: none; } }

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentColor;
  border-radius: 50%;
  opacity: 0;
  animation: 0.75s linear infinite spinner-grow; }

.spinner-grow-sm {
  width: 1rem;
  height: 1rem; }

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    animation-duration: 1.5s; } }

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1045;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  visibility: hidden;
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform 0.3s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .offcanvas {
      transition: none; } }

.offcanvas-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000; }
  .offcanvas-backdrop.fade {
    opacity: 0; }
  .offcanvas-backdrop.show {
    opacity: 0.5; }

.offcanvas-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem; }
  .offcanvas-header .btn-close {
    padding: 0.5rem 0.5rem;
    margin-top: -0.5rem;
    margin-right: -0.5rem;
    margin-bottom: -0.5rem; }

.offcanvas-title {
  margin-bottom: 0;
  line-height: 1.6; }

.offcanvas-body {
  flex-grow: 1;
  padding: 1rem 1rem;
  overflow-y: auto; }

.offcanvas-start {
  top: 0;
  left: 0;
  width: 400px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(-100%); }

.offcanvas-end {
  top: 0;
  right: 0;
  width: 400px;
  border-left: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateX(100%); }

.offcanvas-top {
  top: 0;
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(-100%); }

.offcanvas-bottom {
  right: 0;
  left: 0;
  height: 30vh;
  max-height: 100%;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  transform: translateY(100%); }

.offcanvas.show {
  transform: none; }

.placeholder {
  display: inline-block;
  min-height: 1em;
  vertical-align: middle;
  cursor: wait;
  background-color: currentColor;
  opacity: 0.5; }
  .placeholder.btn::before, .placeholder.wp-block-button__link::before, .appointment-page-1 .wizard-form .placeholder.btn.sw-btn-prev::before, .appointment-page-1 .wizard-form .placeholder.btn.sw-btn-next::before, .woocommerce .widget_shopping_cart .buttons a.placeholder::before,
  .woocommerce.widget_shopping_cart .buttons a.placeholder::before, .woocommerce #review_form #respond .form-submit input.placeholder::before, .woocommerce-cart-form .table.shop_table tr .placeholder.button::before, .woocommerce-cart .wc-proceed-to-checkout a.placeholder.checkout-button::before, .woocommerce #respond input.placeholder#submit::before,
  .woocommerce a.placeholder.button::before,
  .woocommerce button.placeholder.button::before,
  .woocommerce input.placeholder.button::before,
  .woocommerce .placeholder#place_order::before {
    display: inline-block;
    content: ""; }

.placeholder-xs {
  min-height: .6em; }

.placeholder-sm {
  min-height: .8em; }

.placeholder-lg {
  min-height: 1.2em; }

.placeholder-glow .placeholder {
  animation: placeholder-glow 2s ease-in-out infinite; }

@keyframes placeholder-glow {
  50% {
    opacity: 0.2; } }

.placeholder-wave {
  mask-image: linear-gradient(130deg, #000 55%, rgba(0, 0, 0, 0.8) 75%, #000 95%);
  mask-size: 200% 100%;
  animation: placeholder-wave 2s linear infinite; }

@keyframes placeholder-wave {
  100% {
    mask-position: -200% 0%; } }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.link-primary {
  color: #FF8139; }
  .link-primary:hover, .link-primary:focus {
    color: #ff9a61; }

.link-secondary {
  color: #232323; }
  .link-secondary:hover, .link-secondary:focus {
    color: #1c1c1c; }

.link-success {
  color: #13c24d; }
  .link-success:hover, .link-success:focus {
    color: #42ce71; }

.link-info {
  color: #00aeff; }
  .link-info:hover, .link-info:focus {
    color: #33beff; }

.link-warning {
  color: #FFBD13; }
  .link-warning:hover, .link-warning:focus {
    color: #ffca42; }

.link-danger {
  color: #ff0003; }
  .link-danger:hover, .link-danger:focus {
    color: #ff3335; }

.link-light {
  color: #faf8f2; }
  .link-light:hover, .link-light:focus {
    color: #fbf9f5; }

.link-dark {
  color: #222222; }
  .link-dark:hover, .link-dark:focus {
    color: #1b1b1b; }

.ratio {
  position: relative;
  width: 100%; }
  .ratio::before {
    display: block;
    padding-top: var(--bs-aspect-ratio);
    content: ""; }
  .ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }

.ratio-1x1 {
  --bs-aspect-ratio: 100%; }

.ratio-4x3 {
  --bs-aspect-ratio: calc(3 / 4 * 100%); }

.ratio-16x9 {
  --bs-aspect-ratio: calc(9 / 16 * 100%); }

.ratio-21x9 {
  --bs-aspect-ratio: calc(9 / 21 * 100%); }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

.sticky-top {
  position: sticky;
  top: 0;
  z-index: 1020; }

@media (min-width: 576px) {
  .sticky-sm-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

@media (min-width: 768px) {
  .sticky-md-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

@media (min-width: 992px) {
  .sticky-lg-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

@media (min-width: 1170px) {
  .sticky-xl-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

@media (min-width: 1440) {
  .sticky-xxl-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

.hstack {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: stretch; }

.vstack {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-self: stretch; }

.visually-hidden,
.visually-hidden-focusable:not(:focus):not(:focus-within) {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important; }

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: ""; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.vr {
  display: inline-block;
  align-self: stretch;
  width: 1px;
  min-height: 1em;
  background-color: currentColor;
  opacity: 0.25; }

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

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

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

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

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

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

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

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

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

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

.opacity-25 {
  opacity: 0.25 !important; }

.opacity-50 {
  opacity: 0.5 !important; }

.opacity-75 {
  opacity: 0.75 !important; }

.opacity-100 {
  opacity: 1 !important; }

.overflow-auto {
  overflow: auto !important; }

.overflow-hidden {
  overflow: hidden !important; }

.overflow-visible {
  overflow: visible !important; }

.overflow-scroll {
  overflow: scroll !important; }

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

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

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

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

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

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

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

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

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

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

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.shadow-none {
  box-shadow: none !important; }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

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

.top-50 {
  top: 50% !important; }

.top-100 {
  top: 100% !important; }

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

.bottom-50 {
  bottom: 50% !important; }

.bottom-100 {
  bottom: 100% !important; }

.start-0 {
  left: 0 !important; }

.start-50 {
  left: 50% !important; }

.start-100 {
  left: 100% !important; }

.end-0 {
  right: 0 !important; }

.end-50 {
  right: 50% !important; }

.end-100 {
  right: 100% !important; }

.translate-middle {
  transform: translate(-50%, -50%) !important; }

.translate-middle-x {
  transform: translateX(-50%) !important; }

.translate-middle-y {
  transform: translateY(-50%) !important; }

.border {
  border: 1px solid #F2F2F2 !important; }

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

.border-top {
  border-top: 1px solid #F2F2F2 !important; }

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

.border-end {
  border-right: 1px solid #F2F2F2 !important; }

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

.border-bottom {
  border-bottom: 1px solid #F2F2F2 !important; }

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

.border-start {
  border-left: 1px solid #F2F2F2 !important; }

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

.border-primary {
  border-color: #FF8139 !important; }

.border-secondary {
  border-color: #232323 !important; }

.border-success {
  border-color: #13c24d !important; }

.border-info {
  border-color: #00aeff !important; }

.border-warning {
  border-color: #FFBD13 !important; }

.border-danger {
  border-color: #ff0003 !important; }

.border-light {
  border-color: #faf8f2 !important; }

.border-dark {
  border-color: #222222 !important; }

.border-white {
  border-color: #fff !important; }

.border-1 {
  border-width: 1px !important; }

.border-2 {
  border-width: 2px !important; }

.border-3 {
  border-width: 3px !important; }

.border-4 {
  border-width: 4px !important; }

.border-5 {
  border-width: 5px !important; }

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

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

.w-75 {
  width: 75% !important; }

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

.w-auto {
  width: auto !important; }

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

.vw-100 {
  width: 100vw !important; }

.min-vw-100 {
  min-width: 100vw !important; }

.h-25 {
  height: 25% !important; }

.h-50 {
  height: 50% !important; }

.h-75 {
  height: 75% !important; }

.h-100 {
  height: 100% !important; }

.h-auto {
  height: auto !important; }

.mh-100 {
  max-height: 100% !important; }

.vh-100 {
  height: 100vh !important; }

.min-vh-100 {
  min-height: 100vh !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-row {
  flex-direction: row !important; }

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

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

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

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

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

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

.gap-1 {
  gap: 0.25rem !important; }

.gap-2 {
  gap: 0.5rem !important; }

.gap-3 {
  gap: 1rem !important; }

.gap-4 {
  gap: 1.5rem !important; }

.gap-5 {
  gap: 3rem !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.justify-content-evenly {
  justify-content: space-evenly !important; }

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

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

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

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

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

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

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

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

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

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

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

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

.order-first {
  order: -1 !important; }

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

.order-1 {
  order: 1 !important; }

.order-2 {
  order: 2 !important; }

.order-3 {
  order: 3 !important; }

.order-4 {
  order: 4 !important; }

.order-5 {
  order: 5 !important; }

.order-last {
  order: 6 !important; }

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

.m-1 {
  margin: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.m-auto {
  margin: auto !important; }

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

.mx-1 {
  margin-right: 0.25rem !important;
  margin-left: 0.25rem !important; }

.mx-2 {
  margin-right: 0.5rem !important;
  margin-left: 0.5rem !important; }

.mx-3 {
  margin-right: 1rem !important;
  margin-left: 1rem !important; }

.mx-4 {
  margin-right: 1.5rem !important;
  margin-left: 1.5rem !important; }

.mx-5 {
  margin-right: 3rem !important;
  margin-left: 3rem !important; }

.mx-auto {
  margin-right: auto !important;
  margin-left: auto !important; }

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

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important; }

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important; }

.my-3 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important; }

.my-4 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important; }

.my-5 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important; }

.my-auto {
  margin-top: auto !important;
  margin-bottom: auto !important; }

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

.mt-1 {
  margin-top: 0.25rem !important; }

.mt-2 {
  margin-top: 0.5rem !important; }

.mt-3 {
  margin-top: 1rem !important; }

.mt-4 {
  margin-top: 1.5rem !important; }

.mt-5 {
  margin-top: 3rem !important; }

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

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

.me-1 {
  margin-right: 0.25rem !important; }

.me-2 {
  margin-right: 0.5rem !important; }

.me-3 {
  margin-right: 1rem !important; }

.me-4 {
  margin-right: 1.5rem !important; }

.me-5 {
  margin-right: 3rem !important; }

.me-auto {
  margin-right: auto !important; }

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

.mb-1 {
  margin-bottom: 0.25rem !important; }

.mb-2 {
  margin-bottom: 0.5rem !important; }

.mb-3 {
  margin-bottom: 1rem !important; }

.mb-4 {
  margin-bottom: 1.5rem !important; }

.mb-5 {
  margin-bottom: 3rem !important; }

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

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

.ms-1 {
  margin-left: 0.25rem !important; }

.ms-2 {
  margin-left: 0.5rem !important; }

.ms-3 {
  margin-left: 1rem !important; }

.ms-4 {
  margin-left: 1.5rem !important; }

.ms-5 {
  margin-left: 3rem !important; }

.ms-auto {
  margin-left: auto !important; }

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

.p-1 {
  padding: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

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

.px-1 {
  padding-right: 0.25rem !important;
  padding-left: 0.25rem !important; }

.px-2 {
  padding-right: 0.5rem !important;
  padding-left: 0.5rem !important; }

.px-3 {
  padding-right: 1rem !important;
  padding-left: 1rem !important; }

.px-4 {
  padding-right: 1.5rem !important;
  padding-left: 1.5rem !important; }

.px-5 {
  padding-right: 3rem !important;
  padding-left: 3rem !important; }

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

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important; }

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important; }

.py-3 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important; }

.py-4 {
  padding-top: 1.5rem !important;
  padding-bottom: 1.5rem !important; }

.py-5 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important; }

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

.pt-1 {
  padding-top: 0.25rem !important; }

.pt-2 {
  padding-top: 0.5rem !important; }

.pt-3 {
  padding-top: 1rem !important; }

.pt-4 {
  padding-top: 1.5rem !important; }

.pt-5 {
  padding-top: 3rem !important; }

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

.pe-1 {
  padding-right: 0.25rem !important; }

.pe-2 {
  padding-right: 0.5rem !important; }

.pe-3 {
  padding-right: 1rem !important; }

.pe-4 {
  padding-right: 1.5rem !important; }

.pe-5 {
  padding-right: 3rem !important; }

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

.pb-1 {
  padding-bottom: 0.25rem !important; }

.pb-2 {
  padding-bottom: 0.5rem !important; }

.pb-3 {
  padding-bottom: 1rem !important; }

.pb-4 {
  padding-bottom: 1.5rem !important; }

.pb-5 {
  padding-bottom: 3rem !important; }

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

.ps-1 {
  padding-left: 0.25rem !important; }

.ps-2 {
  padding-left: 0.5rem !important; }

.ps-3 {
  padding-left: 1rem !important; }

.ps-4 {
  padding-left: 1.5rem !important; }

.ps-5 {
  padding-left: 3rem !important; }

.font-monospace {
  font-family: var(--bs-font-monospace) !important; }

.fs-1 {
  font-size: calc(1.3875rem + 1.65vw) !important; }

.fs-2 {
  font-size: calc(1.35rem + 1.2vw) !important; }

.fs-3 {
  font-size: calc(1.3125rem + 0.75vw) !important; }

.fs-4 {
  font-size: calc(1.275rem + 0.3vw) !important; }

.fs-5 {
  font-size: 1.25rem !important; }

.fs-6 {
  font-size: 1rem !important; }

.fst-italic {
  font-style: italic !important; }

.fst-normal {
  font-style: normal !important; }

.fw-light {
  font-weight: 300 !important; }

.fw-lighter {
  font-weight: lighter !important; }

.fw-normal {
  font-weight: 400 !important; }

.fw-bold {
  font-weight: 700 !important; }

.fw-bolder {
  font-weight: bolder !important; }

.lh-1 {
  line-height: 1 !important; }

.lh-sm {
  line-height: 1.25 !important; }

.lh-base {
  line-height: 1.6 !important; }

.lh-lg {
  line-height: 2 !important; }

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

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

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

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

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

.text-decoration-line-through {
  text-decoration: line-through !important; }

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

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

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

.text-wrap {
  white-space: normal !important; }

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

/* rtl:begin:remove */
.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important; }

/* rtl:end:remove */
.text-primary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-primary-rgb), var(--bs-text-opacity)) !important; }

.text-secondary {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-secondary-rgb), var(--bs-text-opacity)) !important; }

.text-success {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-success-rgb), var(--bs-text-opacity)) !important; }

.text-info {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-info-rgb), var(--bs-text-opacity)) !important; }

.text-warning {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-warning-rgb), var(--bs-text-opacity)) !important; }

.text-danger {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-danger-rgb), var(--bs-text-opacity)) !important; }

.text-light {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-light-rgb), var(--bs-text-opacity)) !important; }

.text-dark {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-dark-rgb), var(--bs-text-opacity)) !important; }

.text-black {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-black-rgb), var(--bs-text-opacity)) !important; }

.text-white {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-white-rgb), var(--bs-text-opacity)) !important; }

.text-body {
  --bs-text-opacity: 1;
  color: rgba(var(--bs-body-color-rgb), var(--bs-text-opacity)) !important; }

.text-muted {
  --bs-text-opacity: 1;
  color: #AEAED5 !important; }

.text-black-50 {
  --bs-text-opacity: 1;
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  --bs-text-opacity: 1;
  color: rgba(255, 255, 255, 0.5) !important; }

.text-reset {
  --bs-text-opacity: 1;
  color: inherit !important; }

.text-opacity-25 {
  --bs-text-opacity: 0.25; }

.text-opacity-50 {
  --bs-text-opacity: 0.5; }

.text-opacity-75 {
  --bs-text-opacity: 0.75; }

.text-opacity-100 {
  --bs-text-opacity: 1; }

.bg-primary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-primary-rgb), var(--bs-bg-opacity)) !important; }

.bg-secondary {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-secondary-rgb), var(--bs-bg-opacity)) !important; }

.bg-success {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-success-rgb), var(--bs-bg-opacity)) !important; }

.bg-info {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-info-rgb), var(--bs-bg-opacity)) !important; }

.bg-warning {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-warning-rgb), var(--bs-bg-opacity)) !important; }

.bg-danger {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-danger-rgb), var(--bs-bg-opacity)) !important; }

.bg-light {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-light-rgb), var(--bs-bg-opacity)) !important; }

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-dark-rgb), var(--bs-bg-opacity)) !important; }

.bg-black {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-black-rgb), var(--bs-bg-opacity)) !important; }

.bg-white {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-white-rgb), var(--bs-bg-opacity)) !important; }

.bg-body {
  --bs-bg-opacity: 1;
  background-color: rgba(var(--bs-body-bg-rgb), var(--bs-bg-opacity)) !important; }

.bg-transparent {
  --bs-bg-opacity: 1;
  background-color: transparent !important; }

.bg-opacity-10 {
  --bs-bg-opacity: 0.1; }

.bg-opacity-25 {
  --bs-bg-opacity: 0.25; }

.bg-opacity-50 {
  --bs-bg-opacity: 0.5; }

.bg-opacity-75 {
  --bs-bg-opacity: 0.75; }

.bg-opacity-100 {
  --bs-bg-opacity: 1; }

.bg-gradient {
  background-image: var(--bs-gradient) !important; }

.user-select-all {
  user-select: all !important; }

.user-select-auto {
  user-select: auto !important; }

.user-select-none {
  user-select: none !important; }

.pe-none {
  pointer-events: none !important; }

.pe-auto {
  pointer-events: auto !important; }

.rounded {
  border-radius: 0.25rem !important; }

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

.rounded-1 {
  border-radius: 0.75rem !important; }

.rounded-2 {
  border-radius: 0.25rem !important; }

.rounded-3 {
  border-radius: 1rem !important; }

.rounded-circle {
  border-radius: 50% !important; }

.rounded-pill {
  border-radius: 50rem !important; }

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important; }

.rounded-end {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important; }

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-start {
  border-bottom-left-radius: 0.25rem !important;
  border-top-left-radius: 0.25rem !important; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

@media (min-width: 576px) {
  .float-sm-start {
    float: left !important; }
  .float-sm-end {
    float: right !important; }
  .float-sm-none {
    float: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-grid {
    display: grid !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; }
  .d-sm-none {
    display: none !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .gap-sm-0 {
    gap: 0 !important; }
  .gap-sm-1 {
    gap: 0.25rem !important; }
  .gap-sm-2 {
    gap: 0.5rem !important; }
  .gap-sm-3 {
    gap: 1rem !important; }
  .gap-sm-4 {
    gap: 1.5rem !important; }
  .gap-sm-5 {
    gap: 3rem !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .justify-content-sm-evenly {
    justify-content: space-evenly !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; }
  .order-sm-first {
    order: -1 !important; }
  .order-sm-0 {
    order: 0 !important; }
  .order-sm-1 {
    order: 1 !important; }
  .order-sm-2 {
    order: 2 !important; }
  .order-sm-3 {
    order: 3 !important; }
  .order-sm-4 {
    order: 4 !important; }
  .order-sm-5 {
    order: 5 !important; }
  .order-sm-last {
    order: 6 !important; }
  .m-sm-0 {
    margin: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mx-sm-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-sm-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-sm-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-sm-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-sm-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-sm-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-sm-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-sm-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-sm-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-sm-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-sm-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-sm-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-sm-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-sm-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-sm-0 {
    margin-top: 0 !important; }
  .mt-sm-1 {
    margin-top: 0.25rem !important; }
  .mt-sm-2 {
    margin-top: 0.5rem !important; }
  .mt-sm-3 {
    margin-top: 1rem !important; }
  .mt-sm-4 {
    margin-top: 1.5rem !important; }
  .mt-sm-5 {
    margin-top: 3rem !important; }
  .mt-sm-auto {
    margin-top: auto !important; }
  .me-sm-0 {
    margin-right: 0 !important; }
  .me-sm-1 {
    margin-right: 0.25rem !important; }
  .me-sm-2 {
    margin-right: 0.5rem !important; }
  .me-sm-3 {
    margin-right: 1rem !important; }
  .me-sm-4 {
    margin-right: 1.5rem !important; }
  .me-sm-5 {
    margin-right: 3rem !important; }
  .me-sm-auto {
    margin-right: auto !important; }
  .mb-sm-0 {
    margin-bottom: 0 !important; }
  .mb-sm-1 {
    margin-bottom: 0.25rem !important; }
  .mb-sm-2 {
    margin-bottom: 0.5rem !important; }
  .mb-sm-3 {
    margin-bottom: 1rem !important; }
  .mb-sm-4 {
    margin-bottom: 1.5rem !important; }
  .mb-sm-5 {
    margin-bottom: 3rem !important; }
  .mb-sm-auto {
    margin-bottom: auto !important; }
  .ms-sm-0 {
    margin-left: 0 !important; }
  .ms-sm-1 {
    margin-left: 0.25rem !important; }
  .ms-sm-2 {
    margin-left: 0.5rem !important; }
  .ms-sm-3 {
    margin-left: 1rem !important; }
  .ms-sm-4 {
    margin-left: 1.5rem !important; }
  .ms-sm-5 {
    margin-left: 3rem !important; }
  .ms-sm-auto {
    margin-left: auto !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .px-sm-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-sm-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-sm-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-sm-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-sm-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-sm-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-sm-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-sm-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-sm-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-sm-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-sm-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-sm-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-sm-0 {
    padding-top: 0 !important; }
  .pt-sm-1 {
    padding-top: 0.25rem !important; }
  .pt-sm-2 {
    padding-top: 0.5rem !important; }
  .pt-sm-3 {
    padding-top: 1rem !important; }
  .pt-sm-4 {
    padding-top: 1.5rem !important; }
  .pt-sm-5 {
    padding-top: 3rem !important; }
  .pe-sm-0 {
    padding-right: 0 !important; }
  .pe-sm-1 {
    padding-right: 0.25rem !important; }
  .pe-sm-2 {
    padding-right: 0.5rem !important; }
  .pe-sm-3 {
    padding-right: 1rem !important; }
  .pe-sm-4 {
    padding-right: 1.5rem !important; }
  .pe-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-0 {
    padding-bottom: 0 !important; }
  .pb-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pb-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pb-sm-3 {
    padding-bottom: 1rem !important; }
  .pb-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pb-sm-5 {
    padding-bottom: 3rem !important; }
  .ps-sm-0 {
    padding-left: 0 !important; }
  .ps-sm-1 {
    padding-left: 0.25rem !important; }
  .ps-sm-2 {
    padding-left: 0.5rem !important; }
  .ps-sm-3 {
    padding-left: 1rem !important; }
  .ps-sm-4 {
    padding-left: 1.5rem !important; }
  .ps-sm-5 {
    padding-left: 3rem !important; }
  .text-sm-start {
    text-align: left !important; }
  .text-sm-end {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 768px) {
  .float-md-start {
    float: left !important; }
  .float-md-end {
    float: right !important; }
  .float-md-none {
    float: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-grid {
    display: grid !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; }
  .d-md-none {
    display: none !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .gap-md-0 {
    gap: 0 !important; }
  .gap-md-1 {
    gap: 0.25rem !important; }
  .gap-md-2 {
    gap: 0.5rem !important; }
  .gap-md-3 {
    gap: 1rem !important; }
  .gap-md-4 {
    gap: 1.5rem !important; }
  .gap-md-5 {
    gap: 3rem !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .justify-content-md-evenly {
    justify-content: space-evenly !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; }
  .order-md-first {
    order: -1 !important; }
  .order-md-0 {
    order: 0 !important; }
  .order-md-1 {
    order: 1 !important; }
  .order-md-2 {
    order: 2 !important; }
  .order-md-3 {
    order: 3 !important; }
  .order-md-4 {
    order: 4 !important; }
  .order-md-5 {
    order: 5 !important; }
  .order-md-last {
    order: 6 !important; }
  .m-md-0 {
    margin: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mx-md-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-md-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-md-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-md-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-md-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-md-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-md-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-md-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-md-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-md-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-md-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-md-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-md-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-md-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-md-0 {
    margin-top: 0 !important; }
  .mt-md-1 {
    margin-top: 0.25rem !important; }
  .mt-md-2 {
    margin-top: 0.5rem !important; }
  .mt-md-3 {
    margin-top: 1rem !important; }
  .mt-md-4 {
    margin-top: 1.5rem !important; }
  .mt-md-5 {
    margin-top: 3rem !important; }
  .mt-md-auto {
    margin-top: auto !important; }
  .me-md-0 {
    margin-right: 0 !important; }
  .me-md-1 {
    margin-right: 0.25rem !important; }
  .me-md-2 {
    margin-right: 0.5rem !important; }
  .me-md-3 {
    margin-right: 1rem !important; }
  .me-md-4 {
    margin-right: 1.5rem !important; }
  .me-md-5 {
    margin-right: 3rem !important; }
  .me-md-auto {
    margin-right: auto !important; }
  .mb-md-0 {
    margin-bottom: 0 !important; }
  .mb-md-1 {
    margin-bottom: 0.25rem !important; }
  .mb-md-2 {
    margin-bottom: 0.5rem !important; }
  .mb-md-3 {
    margin-bottom: 1rem !important; }
  .mb-md-4 {
    margin-bottom: 1.5rem !important; }
  .mb-md-5 {
    margin-bottom: 3rem !important; }
  .mb-md-auto {
    margin-bottom: auto !important; }
  .ms-md-0 {
    margin-left: 0 !important; }
  .ms-md-1 {
    margin-left: 0.25rem !important; }
  .ms-md-2 {
    margin-left: 0.5rem !important; }
  .ms-md-3 {
    margin-left: 1rem !important; }
  .ms-md-4 {
    margin-left: 1.5rem !important; }
  .ms-md-5 {
    margin-left: 3rem !important; }
  .ms-md-auto {
    margin-left: auto !important; }
  .p-md-0 {
    padding: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .px-md-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-md-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-md-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-md-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-md-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-md-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-md-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-md-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-md-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-md-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-md-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-md-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-md-0 {
    padding-top: 0 !important; }
  .pt-md-1 {
    padding-top: 0.25rem !important; }
  .pt-md-2 {
    padding-top: 0.5rem !important; }
  .pt-md-3 {
    padding-top: 1rem !important; }
  .pt-md-4 {
    padding-top: 1.5rem !important; }
  .pt-md-5 {
    padding-top: 3rem !important; }
  .pe-md-0 {
    padding-right: 0 !important; }
  .pe-md-1 {
    padding-right: 0.25rem !important; }
  .pe-md-2 {
    padding-right: 0.5rem !important; }
  .pe-md-3 {
    padding-right: 1rem !important; }
  .pe-md-4 {
    padding-right: 1.5rem !important; }
  .pe-md-5 {
    padding-right: 3rem !important; }
  .pb-md-0 {
    padding-bottom: 0 !important; }
  .pb-md-1 {
    padding-bottom: 0.25rem !important; }
  .pb-md-2 {
    padding-bottom: 0.5rem !important; }
  .pb-md-3 {
    padding-bottom: 1rem !important; }
  .pb-md-4 {
    padding-bottom: 1.5rem !important; }
  .pb-md-5 {
    padding-bottom: 3rem !important; }
  .ps-md-0 {
    padding-left: 0 !important; }
  .ps-md-1 {
    padding-left: 0.25rem !important; }
  .ps-md-2 {
    padding-left: 0.5rem !important; }
  .ps-md-3 {
    padding-left: 1rem !important; }
  .ps-md-4 {
    padding-left: 1.5rem !important; }
  .ps-md-5 {
    padding-left: 3rem !important; }
  .text-md-start {
    text-align: left !important; }
  .text-md-end {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 992px) {
  .float-lg-start {
    float: left !important; }
  .float-lg-end {
    float: right !important; }
  .float-lg-none {
    float: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-grid {
    display: grid !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; }
  .d-lg-none {
    display: none !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .gap-lg-0 {
    gap: 0 !important; }
  .gap-lg-1 {
    gap: 0.25rem !important; }
  .gap-lg-2 {
    gap: 0.5rem !important; }
  .gap-lg-3 {
    gap: 1rem !important; }
  .gap-lg-4 {
    gap: 1.5rem !important; }
  .gap-lg-5 {
    gap: 3rem !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .justify-content-lg-evenly {
    justify-content: space-evenly !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; }
  .order-lg-first {
    order: -1 !important; }
  .order-lg-0 {
    order: 0 !important; }
  .order-lg-1 {
    order: 1 !important; }
  .order-lg-2 {
    order: 2 !important; }
  .order-lg-3 {
    order: 3 !important; }
  .order-lg-4 {
    order: 4 !important; }
  .order-lg-5 {
    order: 5 !important; }
  .order-lg-last {
    order: 6 !important; }
  .m-lg-0 {
    margin: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mx-lg-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-lg-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-lg-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-lg-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-lg-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-lg-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-lg-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-lg-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-lg-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-lg-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-lg-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-lg-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-lg-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-lg-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-lg-0 {
    margin-top: 0 !important; }
  .mt-lg-1 {
    margin-top: 0.25rem !important; }
  .mt-lg-2 {
    margin-top: 0.5rem !important; }
  .mt-lg-3 {
    margin-top: 1rem !important; }
  .mt-lg-4 {
    margin-top: 1.5rem !important; }
  .mt-lg-5 {
    margin-top: 3rem !important; }
  .mt-lg-auto {
    margin-top: auto !important; }
  .me-lg-0 {
    margin-right: 0 !important; }
  .me-lg-1 {
    margin-right: 0.25rem !important; }
  .me-lg-2 {
    margin-right: 0.5rem !important; }
  .me-lg-3 {
    margin-right: 1rem !important; }
  .me-lg-4 {
    margin-right: 1.5rem !important; }
  .me-lg-5 {
    margin-right: 3rem !important; }
  .me-lg-auto {
    margin-right: auto !important; }
  .mb-lg-0 {
    margin-bottom: 0 !important; }
  .mb-lg-1 {
    margin-bottom: 0.25rem !important; }
  .mb-lg-2 {
    margin-bottom: 0.5rem !important; }
  .mb-lg-3 {
    margin-bottom: 1rem !important; }
  .mb-lg-4 {
    margin-bottom: 1.5rem !important; }
  .mb-lg-5 {
    margin-bottom: 3rem !important; }
  .mb-lg-auto {
    margin-bottom: auto !important; }
  .ms-lg-0 {
    margin-left: 0 !important; }
  .ms-lg-1 {
    margin-left: 0.25rem !important; }
  .ms-lg-2 {
    margin-left: 0.5rem !important; }
  .ms-lg-3 {
    margin-left: 1rem !important; }
  .ms-lg-4 {
    margin-left: 1.5rem !important; }
  .ms-lg-5 {
    margin-left: 3rem !important; }
  .ms-lg-auto {
    margin-left: auto !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .px-lg-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-lg-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-lg-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-lg-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-lg-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-lg-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-lg-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-lg-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-lg-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-lg-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-lg-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-lg-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-lg-0 {
    padding-top: 0 !important; }
  .pt-lg-1 {
    padding-top: 0.25rem !important; }
  .pt-lg-2 {
    padding-top: 0.5rem !important; }
  .pt-lg-3 {
    padding-top: 1rem !important; }
  .pt-lg-4 {
    padding-top: 1.5rem !important; }
  .pt-lg-5 {
    padding-top: 3rem !important; }
  .pe-lg-0 {
    padding-right: 0 !important; }
  .pe-lg-1 {
    padding-right: 0.25rem !important; }
  .pe-lg-2 {
    padding-right: 0.5rem !important; }
  .pe-lg-3 {
    padding-right: 1rem !important; }
  .pe-lg-4 {
    padding-right: 1.5rem !important; }
  .pe-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-0 {
    padding-bottom: 0 !important; }
  .pb-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pb-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pb-lg-3 {
    padding-bottom: 1rem !important; }
  .pb-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pb-lg-5 {
    padding-bottom: 3rem !important; }
  .ps-lg-0 {
    padding-left: 0 !important; }
  .ps-lg-1 {
    padding-left: 0.25rem !important; }
  .ps-lg-2 {
    padding-left: 0.5rem !important; }
  .ps-lg-3 {
    padding-left: 1rem !important; }
  .ps-lg-4 {
    padding-left: 1.5rem !important; }
  .ps-lg-5 {
    padding-left: 3rem !important; }
  .text-lg-start {
    text-align: left !important; }
  .text-lg-end {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

@media (min-width: 1170px) {
  .float-xl-start {
    float: left !important; }
  .float-xl-end {
    float: right !important; }
  .float-xl-none {
    float: none !important; }
  .d-xl-inline {
    display: inline !important; }
  .d-xl-inline-block {
    display: inline-block !important; }
  .d-xl-block {
    display: block !important; }
  .d-xl-grid {
    display: grid !important; }
  .d-xl-table {
    display: table !important; }
  .d-xl-table-row {
    display: table-row !important; }
  .d-xl-table-cell {
    display: table-cell !important; }
  .d-xl-flex {
    display: flex !important; }
  .d-xl-inline-flex {
    display: inline-flex !important; }
  .d-xl-none {
    display: none !important; }
  .flex-xl-fill {
    flex: 1 1 auto !important; }
  .flex-xl-row {
    flex-direction: row !important; }
  .flex-xl-column {
    flex-direction: column !important; }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-xl-wrap {
    flex-wrap: wrap !important; }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .gap-xl-0 {
    gap: 0 !important; }
  .gap-xl-1 {
    gap: 0.25rem !important; }
  .gap-xl-2 {
    gap: 0.5rem !important; }
  .gap-xl-3 {
    gap: 1rem !important; }
  .gap-xl-4 {
    gap: 1.5rem !important; }
  .gap-xl-5 {
    gap: 3rem !important; }
  .justify-content-xl-start {
    justify-content: flex-start !important; }
  .justify-content-xl-end {
    justify-content: flex-end !important; }
  .justify-content-xl-center {
    justify-content: center !important; }
  .justify-content-xl-between {
    justify-content: space-between !important; }
  .justify-content-xl-around {
    justify-content: space-around !important; }
  .justify-content-xl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xl-start {
    align-items: flex-start !important; }
  .align-items-xl-end {
    align-items: flex-end !important; }
  .align-items-xl-center {
    align-items: center !important; }
  .align-items-xl-baseline {
    align-items: baseline !important; }
  .align-items-xl-stretch {
    align-items: stretch !important; }
  .align-content-xl-start {
    align-content: flex-start !important; }
  .align-content-xl-end {
    align-content: flex-end !important; }
  .align-content-xl-center {
    align-content: center !important; }
  .align-content-xl-between {
    align-content: space-between !important; }
  .align-content-xl-around {
    align-content: space-around !important; }
  .align-content-xl-stretch {
    align-content: stretch !important; }
  .align-self-xl-auto {
    align-self: auto !important; }
  .align-self-xl-start {
    align-self: flex-start !important; }
  .align-self-xl-end {
    align-self: flex-end !important; }
  .align-self-xl-center {
    align-self: center !important; }
  .align-self-xl-baseline {
    align-self: baseline !important; }
  .align-self-xl-stretch {
    align-self: stretch !important; }
  .order-xl-first {
    order: -1 !important; }
  .order-xl-0 {
    order: 0 !important; }
  .order-xl-1 {
    order: 1 !important; }
  .order-xl-2 {
    order: 2 !important; }
  .order-xl-3 {
    order: 3 !important; }
  .order-xl-4 {
    order: 4 !important; }
  .order-xl-5 {
    order: 5 !important; }
  .order-xl-last {
    order: 6 !important; }
  .m-xl-0 {
    margin: 0 !important; }
  .m-xl-1 {
    margin: 0.25rem !important; }
  .m-xl-2 {
    margin: 0.5rem !important; }
  .m-xl-3 {
    margin: 1rem !important; }
  .m-xl-4 {
    margin: 1.5rem !important; }
  .m-xl-5 {
    margin: 3rem !important; }
  .m-xl-auto {
    margin: auto !important; }
  .mx-xl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-xl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-xl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-xl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-xl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xl-0 {
    margin-top: 0 !important; }
  .mt-xl-1 {
    margin-top: 0.25rem !important; }
  .mt-xl-2 {
    margin-top: 0.5rem !important; }
  .mt-xl-3 {
    margin-top: 1rem !important; }
  .mt-xl-4 {
    margin-top: 1.5rem !important; }
  .mt-xl-5 {
    margin-top: 3rem !important; }
  .mt-xl-auto {
    margin-top: auto !important; }
  .me-xl-0 {
    margin-right: 0 !important; }
  .me-xl-1 {
    margin-right: 0.25rem !important; }
  .me-xl-2 {
    margin-right: 0.5rem !important; }
  .me-xl-3 {
    margin-right: 1rem !important; }
  .me-xl-4 {
    margin-right: 1.5rem !important; }
  .me-xl-5 {
    margin-right: 3rem !important; }
  .me-xl-auto {
    margin-right: auto !important; }
  .mb-xl-0 {
    margin-bottom: 0 !important; }
  .mb-xl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xl-3 {
    margin-bottom: 1rem !important; }
  .mb-xl-4 {
    margin-bottom: 1.5rem !important; }
  .mb-xl-5 {
    margin-bottom: 3rem !important; }
  .mb-xl-auto {
    margin-bottom: auto !important; }
  .ms-xl-0 {
    margin-left: 0 !important; }
  .ms-xl-1 {
    margin-left: 0.25rem !important; }
  .ms-xl-2 {
    margin-left: 0.5rem !important; }
  .ms-xl-3 {
    margin-left: 1rem !important; }
  .ms-xl-4 {
    margin-left: 1.5rem !important; }
  .ms-xl-5 {
    margin-left: 3rem !important; }
  .ms-xl-auto {
    margin-left: auto !important; }
  .p-xl-0 {
    padding: 0 !important; }
  .p-xl-1 {
    padding: 0.25rem !important; }
  .p-xl-2 {
    padding: 0.5rem !important; }
  .p-xl-3 {
    padding: 1rem !important; }
  .p-xl-4 {
    padding: 1.5rem !important; }
  .p-xl-5 {
    padding: 3rem !important; }
  .px-xl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-xl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-xl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-xl-0 {
    padding-top: 0 !important; }
  .pt-xl-1 {
    padding-top: 0.25rem !important; }
  .pt-xl-2 {
    padding-top: 0.5rem !important; }
  .pt-xl-3 {
    padding-top: 1rem !important; }
  .pt-xl-4 {
    padding-top: 1.5rem !important; }
  .pt-xl-5 {
    padding-top: 3rem !important; }
  .pe-xl-0 {
    padding-right: 0 !important; }
  .pe-xl-1 {
    padding-right: 0.25rem !important; }
  .pe-xl-2 {
    padding-right: 0.5rem !important; }
  .pe-xl-3 {
    padding-right: 1rem !important; }
  .pe-xl-4 {
    padding-right: 1.5rem !important; }
  .pe-xl-5 {
    padding-right: 3rem !important; }
  .pb-xl-0 {
    padding-bottom: 0 !important; }
  .pb-xl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xl-3 {
    padding-bottom: 1rem !important; }
  .pb-xl-4 {
    padding-bottom: 1.5rem !important; }
  .pb-xl-5 {
    padding-bottom: 3rem !important; }
  .ps-xl-0 {
    padding-left: 0 !important; }
  .ps-xl-1 {
    padding-left: 0.25rem !important; }
  .ps-xl-2 {
    padding-left: 0.5rem !important; }
  .ps-xl-3 {
    padding-left: 1rem !important; }
  .ps-xl-4 {
    padding-left: 1.5rem !important; }
  .ps-xl-5 {
    padding-left: 3rem !important; }
  .text-xl-start {
    text-align: left !important; }
  .text-xl-end {
    text-align: right !important; }
  .text-xl-center {
    text-align: center !important; } }

@media (min-width: 1440) {
  .float-xxl-start {
    float: left !important; }
  .float-xxl-end {
    float: right !important; }
  .float-xxl-none {
    float: none !important; }
  .d-xxl-inline {
    display: inline !important; }
  .d-xxl-inline-block {
    display: inline-block !important; }
  .d-xxl-block {
    display: block !important; }
  .d-xxl-grid {
    display: grid !important; }
  .d-xxl-table {
    display: table !important; }
  .d-xxl-table-row {
    display: table-row !important; }
  .d-xxl-table-cell {
    display: table-cell !important; }
  .d-xxl-flex {
    display: flex !important; }
  .d-xxl-inline-flex {
    display: inline-flex !important; }
  .d-xxl-none {
    display: none !important; }
  .flex-xxl-fill {
    flex: 1 1 auto !important; }
  .flex-xxl-row {
    flex-direction: row !important; }
  .flex-xxl-column {
    flex-direction: column !important; }
  .flex-xxl-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-xxl-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-xxl-grow-0 {
    flex-grow: 0 !important; }
  .flex-xxl-grow-1 {
    flex-grow: 1 !important; }
  .flex-xxl-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-xxl-shrink-1 {
    flex-shrink: 1 !important; }
  .flex-xxl-wrap {
    flex-wrap: wrap !important; }
  .flex-xxl-nowrap {
    flex-wrap: nowrap !important; }
  .flex-xxl-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .gap-xxl-0 {
    gap: 0 !important; }
  .gap-xxl-1 {
    gap: 0.25rem !important; }
  .gap-xxl-2 {
    gap: 0.5rem !important; }
  .gap-xxl-3 {
    gap: 1rem !important; }
  .gap-xxl-4 {
    gap: 1.5rem !important; }
  .gap-xxl-5 {
    gap: 3rem !important; }
  .justify-content-xxl-start {
    justify-content: flex-start !important; }
  .justify-content-xxl-end {
    justify-content: flex-end !important; }
  .justify-content-xxl-center {
    justify-content: center !important; }
  .justify-content-xxl-between {
    justify-content: space-between !important; }
  .justify-content-xxl-around {
    justify-content: space-around !important; }
  .justify-content-xxl-evenly {
    justify-content: space-evenly !important; }
  .align-items-xxl-start {
    align-items: flex-start !important; }
  .align-items-xxl-end {
    align-items: flex-end !important; }
  .align-items-xxl-center {
    align-items: center !important; }
  .align-items-xxl-baseline {
    align-items: baseline !important; }
  .align-items-xxl-stretch {
    align-items: stretch !important; }
  .align-content-xxl-start {
    align-content: flex-start !important; }
  .align-content-xxl-end {
    align-content: flex-end !important; }
  .align-content-xxl-center {
    align-content: center !important; }
  .align-content-xxl-between {
    align-content: space-between !important; }
  .align-content-xxl-around {
    align-content: space-around !important; }
  .align-content-xxl-stretch {
    align-content: stretch !important; }
  .align-self-xxl-auto {
    align-self: auto !important; }
  .align-self-xxl-start {
    align-self: flex-start !important; }
  .align-self-xxl-end {
    align-self: flex-end !important; }
  .align-self-xxl-center {
    align-self: center !important; }
  .align-self-xxl-baseline {
    align-self: baseline !important; }
  .align-self-xxl-stretch {
    align-self: stretch !important; }
  .order-xxl-first {
    order: -1 !important; }
  .order-xxl-0 {
    order: 0 !important; }
  .order-xxl-1 {
    order: 1 !important; }
  .order-xxl-2 {
    order: 2 !important; }
  .order-xxl-3 {
    order: 3 !important; }
  .order-xxl-4 {
    order: 4 !important; }
  .order-xxl-5 {
    order: 5 !important; }
  .order-xxl-last {
    order: 6 !important; }
  .m-xxl-0 {
    margin: 0 !important; }
  .m-xxl-1 {
    margin: 0.25rem !important; }
  .m-xxl-2 {
    margin: 0.5rem !important; }
  .m-xxl-3 {
    margin: 1rem !important; }
  .m-xxl-4 {
    margin: 1.5rem !important; }
  .m-xxl-5 {
    margin: 3rem !important; }
  .m-xxl-auto {
    margin: auto !important; }
  .mx-xxl-0 {
    margin-right: 0 !important;
    margin-left: 0 !important; }
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
    margin-left: 0.25rem !important; }
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
    margin-left: 0.5rem !important; }
  .mx-xxl-3 {
    margin-right: 1rem !important;
    margin-left: 1rem !important; }
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
    margin-left: 1.5rem !important; }
  .mx-xxl-5 {
    margin-right: 3rem !important;
    margin-left: 3rem !important; }
  .mx-xxl-auto {
    margin-right: auto !important;
    margin-left: auto !important; }
  .my-xxl-0 {
    margin-top: 0 !important;
    margin-bottom: 0 !important; }
  .my-xxl-1 {
    margin-top: 0.25rem !important;
    margin-bottom: 0.25rem !important; }
  .my-xxl-2 {
    margin-top: 0.5rem !important;
    margin-bottom: 0.5rem !important; }
  .my-xxl-3 {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important; }
  .my-xxl-4 {
    margin-top: 1.5rem !important;
    margin-bottom: 1.5rem !important; }
  .my-xxl-5 {
    margin-top: 3rem !important;
    margin-bottom: 3rem !important; }
  .my-xxl-auto {
    margin-top: auto !important;
    margin-bottom: auto !important; }
  .mt-xxl-0 {
    margin-top: 0 !important; }
  .mt-xxl-1 {
    margin-top: 0.25rem !important; }
  .mt-xxl-2 {
    margin-top: 0.5rem !important; }
  .mt-xxl-3 {
    margin-top: 1rem !important; }
  .mt-xxl-4 {
    margin-top: 1.5rem !important; }
  .mt-xxl-5 {
    margin-top: 3rem !important; }
  .mt-xxl-auto {
    margin-top: auto !important; }
  .me-xxl-0 {
    margin-right: 0 !important; }
  .me-xxl-1 {
    margin-right: 0.25rem !important; }
  .me-xxl-2 {
    margin-right: 0.5rem !important; }
  .me-xxl-3 {
    margin-right: 1rem !important; }
  .me-xxl-4 {
    margin-right: 1.5rem !important; }
  .me-xxl-5 {
    margin-right: 3rem !important; }
  .me-xxl-auto {
    margin-right: auto !important; }
  .mb-xxl-0 {
    margin-bottom: 0 !important; }
  .mb-xxl-1 {
    margin-bottom: 0.25rem !important; }
  .mb-xxl-2 {
    margin-bottom: 0.5rem !important; }
  .mb-xxl-3 {
    margin-bottom: 1rem !important; }
  .mb-xxl-4 {
    margin-bottom: 1.5rem !important; }
  .mb-xxl-5 {
    margin-bottom: 3rem !important; }
  .mb-xxl-auto {
    margin-bottom: auto !important; }
  .ms-xxl-0 {
    margin-left: 0 !important; }
  .ms-xxl-1 {
    margin-left: 0.25rem !important; }
  .ms-xxl-2 {
    margin-left: 0.5rem !important; }
  .ms-xxl-3 {
    margin-left: 1rem !important; }
  .ms-xxl-4 {
    margin-left: 1.5rem !important; }
  .ms-xxl-5 {
    margin-left: 3rem !important; }
  .ms-xxl-auto {
    margin-left: auto !important; }
  .p-xxl-0 {
    padding: 0 !important; }
  .p-xxl-1 {
    padding: 0.25rem !important; }
  .p-xxl-2 {
    padding: 0.5rem !important; }
  .p-xxl-3 {
    padding: 1rem !important; }
  .p-xxl-4 {
    padding: 1.5rem !important; }
  .p-xxl-5 {
    padding: 3rem !important; }
  .px-xxl-0 {
    padding-right: 0 !important;
    padding-left: 0 !important; }
  .px-xxl-1 {
    padding-right: 0.25rem !important;
    padding-left: 0.25rem !important; }
  .px-xxl-2 {
    padding-right: 0.5rem !important;
    padding-left: 0.5rem !important; }
  .px-xxl-3 {
    padding-right: 1rem !important;
    padding-left: 1rem !important; }
  .px-xxl-4 {
    padding-right: 1.5rem !important;
    padding-left: 1.5rem !important; }
  .px-xxl-5 {
    padding-right: 3rem !important;
    padding-left: 3rem !important; }
  .py-xxl-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important; }
  .py-xxl-1 {
    padding-top: 0.25rem !important;
    padding-bottom: 0.25rem !important; }
  .py-xxl-2 {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important; }
  .py-xxl-3 {
    padding-top: 1rem !important;
    padding-bottom: 1rem !important; }
  .py-xxl-4 {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important; }
  .py-xxl-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important; }
  .pt-xxl-0 {
    padding-top: 0 !important; }
  .pt-xxl-1 {
    padding-top: 0.25rem !important; }
  .pt-xxl-2 {
    padding-top: 0.5rem !important; }
  .pt-xxl-3 {
    padding-top: 1rem !important; }
  .pt-xxl-4 {
    padding-top: 1.5rem !important; }
  .pt-xxl-5 {
    padding-top: 3rem !important; }
  .pe-xxl-0 {
    padding-right: 0 !important; }
  .pe-xxl-1 {
    padding-right: 0.25rem !important; }
  .pe-xxl-2 {
    padding-right: 0.5rem !important; }
  .pe-xxl-3 {
    padding-right: 1rem !important; }
  .pe-xxl-4 {
    padding-right: 1.5rem !important; }
  .pe-xxl-5 {
    padding-right: 3rem !important; }
  .pb-xxl-0 {
    padding-bottom: 0 !important; }
  .pb-xxl-1 {
    padding-bottom: 0.25rem !important; }
  .pb-xxl-2 {
    padding-bottom: 0.5rem !important; }
  .pb-xxl-3 {
    padding-bottom: 1rem !important; }
  .pb-xxl-4 {
    padding-bottom: 1.5rem !important; }
  .pb-xxl-5 {
    padding-bottom: 3rem !important; }
  .ps-xxl-0 {
    padding-left: 0 !important; }
  .ps-xxl-1 {
    padding-left: 0.25rem !important; }
  .ps-xxl-2 {
    padding-left: 0.5rem !important; }
  .ps-xxl-3 {
    padding-left: 1rem !important; }
  .ps-xxl-4 {
    padding-left: 1.5rem !important; }
  .ps-xxl-5 {
    padding-left: 3rem !important; }
  .text-xxl-start {
    text-align: left !important; }
  .text-xxl-end {
    text-align: right !important; }
  .text-xxl-center {
    text-align: center !important; } }

@media (min-width: 1200px) {
  .fs-1 {
    font-size: 2.625rem !important; }
  .fs-2 {
    font-size: 2.25rem !important; }
  .fs-3 {
    font-size: 1.875rem !important; }
  .fs-4 {
    font-size: 1.5rem !important; } }

@media print {
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-grid {
    display: grid !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; }
  .d-print-none {
    display: none !important; } }

/*=== Base  ===*/
* {
  outline: none;
  padding: 0; }
  *::after {
    margin: 0;
    padding: 0; }
  *::before {
    margin: 0;
    padding: 0; }

body {
  line-height: 1.6;
  color: #666666;
  font-size: 1rem;
  font-family: var(--font-family-base); }
  @media only screen and (max-width: 575px) {
    body {
      font-size: 15px; } }

h1 a, .h1 a,
h2 a,
.h2 a,
h3 a,
.h3 a,
h4 a,
.h4 a,
h5 a,
.h5 a,
h6 a,
.h6 a {
  color: var(--title); }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-family-title);
  color: var(--title); }

h1, .h1,
.h1 {
  line-height: 1.2;
  font-size: 42px;
  font-weight: 900; }
  @media only screen and (max-width: 767px) {
    h1, .h1,
    .h1 {
      font-size: 2.25rem; } }

h2, .h2,
.h2 {
  font-size: 36px;
  line-height: 1.2;
  font-weight: 900; }
  @media only screen and (max-width: 767px) {
    h2, .h2,
    .h2 {
      font-size: 1.875rem; } }

h3, .h3,
.h3 {
  line-height: 1.1;
  font-size: 1.875rem;
  font-weight: 900; }
  @media only screen and (max-width: 991px) {
    h3, .h3,
    .h3 {
      font-size: 1.625rem; } }
  @media only screen and (max-width: 767px) {
    h3, .h3,
    .h3 {
      font-size: 1.375rem; } }

h4, .h4,
.h4 {
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 700; }
  @media only screen and (max-width: 991px) {
    h4, .h4,
    .h4 {
      font-size: 1.375rem; } }
  @media only screen and (max-width: 575px) {
    h4, .h4,
    .h4 {
      font-size: 1.25rem; } }

h5, .h5,
.h5 {
  font-size: 1.25rem;
  line-height: 1;
  font-weight: 900; }

h6, .h6,
.h6 {
  font-size: 1rem;
  line-height: 1;
  font-weight: 900; }

ul {
  padding: 0;
  margin: 0; }

img {
  border-style: none;
  height: auto;
  max-width: 100%;
  vertical-align: middle; }

li {
  list-style: none; }

a {
  text-decoration: none;
  outline: none;
  color: var(--primary);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  a:hover, a:focus, a.active {
    text-decoration: none;
    outline: none;
    color: var(--primary-hover); }

.text-primary {
  color: var(--primary) !important; }

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

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

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

.text-secondary {
  color: var(--secondary) !important; }

.text-secondary-2 {
  color: var(--secondary-2) !important; }

b,
strong,
.strong {
  font-weight: 600; }

.h-0 {
  height: 0; }

#main-wrapper {
  opacity: 0;
  transition: all 0.25s ease-in;
  overflow: hidden;
  position: relative;
  z-index: 1;
  margin-top: 60px; }
  #main-wrapper.show {
    opacity: 1; }

.content-body {
  margin-left: 65px;
  margin-top: 18px;
  margin-right: 6px;
  margin-bottom: 45px; }


.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  padding-left: 30px;
  padding-right: 30px; }
  @media only screen and (max-width: 1280px) {
    
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
      padding-left: 20px;
      padding-right: 20px; } }
  @media only screen and (max-width: 575px) {
    
    .container-fluid,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
      padding-left: 15px;
      padding-right: 15px; } }

::selection {
  color: #fff;
  background: var(--primary); }

.modal-backdrop {
  z-index: 99999; }

.modal {
  z-index: 100000; }

/* DZpower */
[class*="dzpower-"] {
  font-family: "DZpower";
  vertical-align: middle; }

.content-inner {
  padding-top: 100px;
  padding-bottom: 90px; }
  @media only screen and (max-width: 1480px) {
    .content-inner {
      padding-top: 80px;
      padding-bottom: 70px; } }
  @media only screen and (max-width: 991px) {
    .content-inner {
      padding-top: 60px;
      padding-bottom: 40px; } }
  @media only screen and (max-width: 575px) {
    .content-inner {
      padding-top: 50px;
      padding-bottom: 20px; } }

.content-inner-1 {
  padding-top: 120px;
  padding-bottom: 120px; }
  @media only screen and (max-width: 1480px) {
    .content-inner-1 {
      padding-top: 100px;
      padding-bottom: 100px; } }
  @media only screen and (max-width: 991px) {
    .content-inner-1 {
      padding-top: 70px;
      padding-bottom: 70px; } }
  @media only screen and (max-width: 575px) {
    .content-inner-1 {
      padding-top: 50px;
      padding-bottom: 50px; } }

.content-inner-2 {
  padding-top: 120px;
  padding-bottom: 0; }
  @media only screen and (max-width: 1480px) {
    .content-inner-2 {
      padding-top: 100px; } }
  @media only screen and (max-width: 991px) {
    .content-inner-2 {
      padding-top: 70px; } }
  @media only screen and (max-width: 575px) {
    .content-inner-2 {
      padding-top: 50px; } }

.content-inner-3 {
  padding-top: 60px;
  padding-bottom: 30px; }
  @media only screen and (max-width: 991px) {
    .content-inner-3 {
      padding-top: 40px;
      padding-bottom: 20px; } }
  @media only screen and (max-width: 575px) {
    .content-inner-3 {
      padding-top: 30px;
      padding-bottom: 10px; } }

.content-inner-4 {
  padding-top: 45px;
  padding-bottom: 20px; }
  @media only screen and (max-width: 575px) {
    .content-inner-4 {
      padding-top: 30px;
      padding-bottom: 20px; } }

.mfp-bg {
  z-index: 99999; }

.mfp-wrap {
  z-index: 100000; }

.rounded {
  border-radius: var(--border-radius-base) !important; }

@media only screen and (max-width: 991px) {
  .dz-order-1 {
    order: 1;
    margin-top: 20px; } }

.resize-wrapper {
  margin-left: calc((100% - 1170px) / 2); }

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

.bg-parallax {
  background-attachment: fixed; }

.layout-dark {
  background-color: var(--secondary); }
  .layout-dark p,
  .layout-dark a,
  .layout-dark h1,
  .layout-dark .h1,
  .layout-dark h2,
  .layout-dark .h2,
  .layout-dark h3,
  .layout-dark .h3,
  .layout-dark h4,
  .layout-dark .h4,
  .layout-dark h5,
  .layout-dark .h5,
  .layout-dark h6,
  .layout-dark .h6 {
    color: #fff; }
  .layout-dark .pr-list.style-1 li {
    color: #fff !important; }
  .layout-dark .banner-inner {
    background-color: var(--secondary) !important; }
    .layout-dark .banner-inner .banner-content .title {
      color: #fff !important; }
    .layout-dark .banner-inner .banner-content .para {
      color: #fff  !important; }
  .layout-dark .bg-secondary {
    background-color: #fff !important; }
  .layout-dark .dz-card.style-3 {
    background-color: var(--secondary); }
    .layout-dark .dz-card.style-3 .title {
      color: #fff; }
    .layout-dark .dz-card.style-3 .dz-content .dz-body {
      background: var(--secondary); }
      .layout-dark .dz-card.style-3 .dz-content .dz-body p {
        color: #fff; }
    .layout-dark .dz-card.style-3 .dz-content .dz-date {
      color: #fff; }
  .layout-dark .about-bx3 .dz-media .title {
    color: #fff; }
  .layout-dark .nav-tabs.style-2 .nav-link {
    color: #fff;
    border-bottom: 5px solid rgba(255, 255, 255, 0.1); }
  .layout-dark .schedule-table.style-1 .mptt-navigation-tabs li a {
    color: #fff; }
  .layout-dark .schedule-table table td {
    background-color: var(--secondary-dark) !important;
    border-color: rgba(217, 217, 217, 0.1) !important; }
    .layout-dark .schedule-table table td .mptt-shortcode-event {
      border: 1px solid rgba(217, 217, 217, 0.1) !important; }
    .layout-dark .schedule-table table td:hover .mptt-event-container {
      background-color: var(--primary) !important; }
  .layout-dark .schedule-table table thead th {
    background-color: var(--secondary-dark) !important; }
  .layout-dark .mptt-shortcode-hours {
    background-color: var(--secondary-dark) !important; }
  .layout-dark .mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container {
    background-color: var(--secondary-dark) !important; }
    @media only screen and (max-width: 767px) {
      .layout-dark .mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container {
        color: #ffff !important; } }
  .layout-dark .mptt-navigation-tabs {
    border-bottom: 1px solid rgba(217, 217, 217, 0.1); }
  @media only screen and (max-width: 767px) {
    .layout-dark .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .event-description, .layout-dark .mptt-list-event {
      color: #ffff !important; } }

.DZ-theme-btn.hide,
.styleswitcher.hide {
  display: none; }

#loading-area-2,
#loading-area {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 999999999;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80px;
  display: flex;
  justify-content: center;
  align-items: center; }
  #loading-area-2.loading-page-1,
  #loading-area.loading-page-1 {
    background-color: var(--secondary); }
    #loading-area-2.loading-page-1 .loading-inner,
    #loading-area.loading-page-1 .loading-inner {
      color: var(--primary);
      font-family: var(--font-family-title);
      font-size: 85px;
      font-weight: 700;
      text-align: center; }
      #loading-area-2.loading-page-1 .loading-inner span,
      #loading-area.loading-page-1 .loading-inner span {
        display: inline-block;
        opacity: 0;
        transform: rotateX(-90deg);
        position: relative;
        top: -100px;
        animation: dzTextAnimate 1.2s ease-in-out infinite;
        margin: 0 -5px; }
        @media only screen and (max-width: 1280px) {
          #loading-area-2.loading-page-1 .loading-inner span,
          #loading-area.loading-page-1 .loading-inner span {
            margin: 0 -2px; } }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(1),
        #loading-area.loading-page-1 .loading-inner span:nth-child(1) {
          animation-delay: 1.2s; }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(2),
        #loading-area.loading-page-1 .loading-inner span:nth-child(2) {
          animation-delay: 1.3s; }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(3),
        #loading-area.loading-page-1 .loading-inner span:nth-child(3) {
          animation-delay: 1.4s; }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(4),
        #loading-area.loading-page-1 .loading-inner span:nth-child(4) {
          animation-delay: 1.5s; }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(5),
        #loading-area.loading-page-1 .loading-inner span:nth-child(5) {
          animation-delay: 1.6s; }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(6),
        #loading-area.loading-page-1 .loading-inner span:nth-child(6) {
          animation-delay: 1.7s; }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(7),
        #loading-area.loading-page-1 .loading-inner span:nth-child(7) {
          animation-delay: 1.8s; }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(8),
        #loading-area.loading-page-1 .loading-inner span:nth-child(8) {
          animation-delay: 1.9s; }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(9),
        #loading-area.loading-page-1 .loading-inner span:nth-child(9) {
          animation-delay: 2s; }
        #loading-area-2.loading-page-1 .loading-inner span:nth-child(10),
        #loading-area.loading-page-1 .loading-inner span:nth-child(10) {
          animation-delay: 2.1s; }
      @media only screen and (max-width: 991px) {
        #loading-area-2.loading-page-1 .loading-inner,
        #loading-area.loading-page-1 .loading-inner {
          font-size: 48px; }
          #loading-area-2.loading-page-1 .loading-inner span,
          #loading-area.loading-page-1 .loading-inner span {
            top: -50px; } }
      @media only screen and (max-width: 575px) {
        #loading-area-2.loading-page-1 .loading-inner,
        #loading-area.loading-page-1 .loading-inner {
          font-size: 36px; } }
    #loading-area-2.loading-page-1:before,
    #loading-area.loading-page-1:before {
      content: '';
      display: block;
      position: absolute;
      top: -100%;
      left: -100%;
      height: 300%;
      width: 300%;
      background-image: url(../images/dz-blink.png);
      background-size: 900px;
      animation: dzBlinkEffect 1.5s steps(15) infinite;
      opacity: 0.4; }
  #loading-area-2.loading-page-2,
  #loading-area.loading-page-2 {
    background-color: transparent; }
    #loading-area-2.loading-page-2:before, #loading-area-2.loading-page-2:after,
    #loading-area.loading-page-2:before,
    #loading-area.loading-page-2:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 50%;
      left: 0;
      top: 0;
      background: #000;
      transition: all 1.5s;
      transform-origin: left top;
      z-index: -1; }
    #loading-area-2.loading-page-2.active:after, #loading-area-2.loading-page-2.active:before,
    #loading-area.loading-page-2.active:after,
    #loading-area.loading-page-2.active:before {
      height: 0px; }
    #loading-area-2.loading-page-2:before,
    #loading-area.loading-page-2:before {
      top: auto;
      bottom: 0; }
    #loading-area-2.loading-page-2 .loading-inner,
    #loading-area.loading-page-2 .loading-inner {
      position: relative;
      visibility: visible;
      z-index: 1;
      transform: translate(0px, 0px);
      top: 0%;
      transition: 1s; }
      #loading-area-2.loading-page-2 .loading-inner .loader,
      #loading-area.loading-page-2 .loading-inner .loader {
        position: relative;
        display: block;
        z-index: 9999;
        opacity: 1;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        transition: all 1s 1s ease;
        border: 3px solid transparent;
        border-top-color: #ffee62;
        animation: spin 1.5s linear infinite; }
        #loading-area-2.loading-page-2 .loading-inner .loader:before,
        #loading-area.loading-page-2 .loading-inner .loader:before {
          position: absolute;
          content: '';
          top: 6px;
          left: 6px;
          right: 6px;
          bottom: 6px;
          border-radius: 50%;
          border: 3px solid transparent;
          border-left-color: #bbf737;
          animation: spin 2s linear infinite; }
        #loading-area-2.loading-page-2 .loading-inner .loader:after,
        #loading-area.loading-page-2 .loading-inner .loader:after {
          position: absolute;
          content: '';
          top: 15px;
          left: 15px;
          right: 15px;
          bottom: 15px;
          border-radius: 50%;
          border: 3px solid transparent;
          border-right-color: #fff;
          animation: spin 2.5s linear infinite; }
      #loading-area-2.loading-page-2 .loading-inner .loder-section,
      #loading-area.loading-page-2 .loading-inner .loder-section {
        position: fixed;
        top: 0;
        width: 50%;
        height: 100%;
        z-index: 2; }
        #loading-area-2.loading-page-2 .loading-inner .loder-section.left-section,
        #loading-area.loading-page-2 .loading-inner .loder-section.left-section {
          left: 0;
          transition: 1s 1.4s ease; }
        #loading-area-2.loading-page-2 .loading-inner .loder-section.right-section,
        #loading-area.loading-page-2 .loading-inner .loder-section.right-section {
          right: 0;
          transition: 1s 1.4s ease; }
    #loading-area-2.loading-page-2.active .loading-inner, #loading-area-2.loading-page-2.show .loading-inner,
    #loading-area.loading-page-2.active .loading-inner,
    #loading-area.loading-page-2.show .loading-inner {
      transform: translate(0px, -100%);
      top: -50%; }
  #loading-area-2.loading-page-3,
  #loading-area.loading-page-3 {
    background-color: transparent; }
    #loading-area-2.loading-page-3:before, #loading-area-2.loading-page-3:after,
    #loading-area.loading-page-3:before,
    #loading-area.loading-page-3:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 50%;
      left: 0;
      top: 0;
      background: #000;
      transition: all 1.5s;
      transform-origin: left top;
      z-index: -1; }
    #loading-area-2.loading-page-3.active:after, #loading-area-2.loading-page-3.active:before,
    #loading-area.loading-page-3.active:after,
    #loading-area.loading-page-3.active:before {
      height: 0px; }
    #loading-area-2.loading-page-3.active .animation-text,
    #loading-area.loading-page-3.active .animation-text {
      opacity: 0; }
    #loading-area-2.loading-page-3:before,
    #loading-area.loading-page-3:before {
      top: auto;
      bottom: 0; }
    #loading-area-2.loading-page-3 .animation-text,
    #loading-area.loading-page-3 .animation-text {
      height: 18rem; }
      @media only screen and (max-width: 991px) {
        #loading-area-2.loading-page-3 .animation-text,
        #loading-area.loading-page-3 .animation-text {
          height: 15rem; } }
      @media only screen and (max-width: 575px) {
        #loading-area-2.loading-page-3 .animation-text,
        #loading-area.loading-page-3 .animation-text {
          height: 10rem; } }
      #loading-area-2.loading-page-3 .animation-text text,
      #loading-area.loading-page-3 .animation-text text {
        font-size: 100px; }

@keyframes dzTextAnimate {
  10% {
    opacity: 0.5; }
  20% {
    opacity: 1;
    top: 0;
    transform: rotateX(-360deg); }
  80% {
    opacity: 1;
    transform: rotateX(-360deg);
    top: 0; }
  90% {
    opacity: 0.5; }
  100% {
    opacity: 0;
    top: 100px; } }

@keyframes dzCircleBounceLeft {
  0% {
    left: 20%; }
  50% {
    left: 50%; }
  100% {
    left: 20%; } }

@keyframes dzCircleBounceRight {
  0% {
    left: 80%; }
  50% {
    left: 50%; }
  100% {
    left: 80%; } }

@keyframes letters-loading {
  0%,
  75%,
  100% {
    opacity: 0;
    transform: rotateY(-90deg); }
  25%,
  50% {
    opacity: 1;
    transform: rotateY(0deg); } }

@keyframes dzBlinkEffect {
  0%,
  100% {
    transform: translate(0, 0); }
  8% {
    transform: translate(-5%, -10%); }
  18% {
    transform: translate(-15%, 5%); }
  27% {
    transform: translate(7%, -25%); }
  42% {
    transform: translate(-5%, 25%); }
  48% {
    transform: translate(-15%, 10%); }
  55% {
    transform: translate(15%, 0); }
  68% {
    transform: translate(0, 15%); }
  82% {
    transform: translate(3%, 25%); }
  92% {
    transform: translate(-10%, 10%); } }

/*  */
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

.font-10 {
  font-size: 10px; }

.font-12 {
  font-size: 12px; }

.font-13 {
  font-size: 13px; }

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

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

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

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

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

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

.font-26 {
  font-size: 26px; }

.font-30 {
  font-size: 30px; }

.font-35 {
  font-size: 35px; }

.font-40 {
  font-size: 40px; }

.font-45 {
  font-size: 45px; }

.font-50 {
  font-size: 50px; }

.font-55 {
  font-size: 55px; }

.font-60 {
  font-size: 60px; }

.font-70 {
  font-size: 70px; }

.font-75 {
  font-size: 75px; }

.font-80 {
  font-size: 80px; }

.font-90 {
  font-size: 90px; }

.font-100 {
  font-size: 100px; }

.font-weight-300 {
  font-weight: 300; }

.font-weight-400 {
  font-weight: 400; }

.font-weight-500 {
  font-weight: 500; }

.font-weight-600 {
  font-weight: 600; }

.font-weight-700 {
  font-weight: 700; }

.font-weight-800 {
  font-weight: 800; }

.font-weight-900 {
  font-weight: 900; }

.p-a0 {
  padding: 0px; }

.p-t0 {
  padding-top: 0px; }

.p-b0 {
  padding-bottom: 0px; }

.p-l0 {
  padding-left: 0px; }

.p-r0 {
  padding-right: 0px; }

.p-lr0 {
  padding-left: 0px;
  padding-right: 0px; }

.p-tb0 {
  padding-bottom: 0px;
  padding-top: 0px; }

.m-a0 {
  margin: 0px; }

.m-t0 {
  margin-top: 0px; }

.m-b0 {
  margin-bottom: 0px; }

.m-l0 {
  margin-left: 0px; }

.m-r0 {
  margin-right: 0px; }

.m-lr0 {
  margin-left: 0px;
  margin-right: 0px; }

.m-tb0 {
  margin-bottom: 0px;
  margin-top: 0px; }

.p-a5 {
  padding: 5px; }

.p-t5 {
  padding-top: 5px; }

.p-b5 {
  padding-bottom: 5px; }

.p-l5 {
  padding-left: 5px; }

.p-r5 {
  padding-right: 5px; }

.p-lr5 {
  padding-left: 5px;
  padding-right: 5px; }

.p-tb5 {
  padding-bottom: 5px;
  padding-top: 5px; }

.m-a5 {
  margin: 5px; }

.m-t5 {
  margin-top: 5px; }

.m-b5 {
  margin-bottom: 5px; }

.m-l5 {
  margin-left: 5px; }

.m-r5 {
  margin-right: 5px; }

.m-lr5 {
  margin-left: 5px;
  margin-right: 5px; }

.m-tb5 {
  margin-bottom: 5px;
  margin-top: 5px; }

.p-a10 {
  padding: 10px; }

.p-t10 {
  padding-top: 10px; }

.p-b10 {
  padding-bottom: 10px; }

.p-l10 {
  padding-left: 10px; }

.p-r10 {
  padding-right: 10px; }

.p-lr10 {
  padding-left: 10px;
  padding-right: 10px; }

.p-tb10 {
  padding-bottom: 10px;
  padding-top: 10px; }

.m-a10 {
  margin: 10px; }

.m-t10 {
  margin-top: 10px; }

.m-b10 {
  margin-bottom: 10px; }

.m-l10 {
  margin-left: 10px; }

.m-r10 {
  margin-right: 10px; }

.m-lr10 {
  margin-left: 10px;
  margin-right: 10px; }

.m-tb10 {
  margin-bottom: 10px;
  margin-top: 10px; }

.p-a15 {
  padding: 15px; }

.p-t15 {
  padding-top: 15px; }

.p-b15 {
  padding-bottom: 15px; }

.p-l15 {
  padding-left: 15px; }

.p-r15 {
  padding-right: 15px; }

.p-lr15 {
  padding-left: 15px;
  padding-right: 15px; }

.p-tb15 {
  padding-bottom: 15px;
  padding-top: 15px; }

.m-a15 {
  margin: 15px; }

.m-t15 {
  margin-top: 15px; }

.m-b15 {
  margin-bottom: 15px; }

.m-l15 {
  margin-left: 15px; }

.m-r15 {
  margin-right: 15px; }

.m-lr15 {
  margin-left: 15px;
  margin-right: 15px; }

.m-tb15 {
  margin-bottom: 15px;
  margin-top: 15px; }

.p-a20 {
  padding: 20px; }

.p-t20 {
  padding-top: 20px; }

.p-b20 {
  padding-bottom: 20px; }

.p-l20 {
  padding-left: 20px; }

.p-r20 {
  padding-right: 20px; }

.p-lr20 {
  padding-left: 20px;
  padding-right: 20px; }

.p-tb20 {
  padding-bottom: 20px;
  padding-top: 20px; }

.m-a20 {
  margin: 20px; }

.m-t20 {
  margin-top: 20px; }

.m-b20 {
  margin-bottom: 20px; }

.m-l20 {
  margin-left: 20px; }

.m-r20 {
  margin-right: 20px; }

.m-lr20 {
  margin-left: 20px;
  margin-right: 20px; }

.m-tb20 {
  margin-bottom: 20px;
  margin-top: 20px; }

.p-a25 {
  padding: 25px; }

.p-t25 {
  padding-top: 25px; }

.p-b25 {
  padding-bottom: 25px; }

.p-l25 {
  padding-left: 25px; }

.p-r25 {
  padding-right: 25px; }

.p-lr25 {
  padding-left: 25px;
  padding-right: 25px; }

.p-tb25 {
  padding-bottom: 25px;
  padding-top: 25px; }

.m-a25 {
  margin: 25px; }

.m-t25 {
  margin-top: 25px; }

.m-b25 {
  margin-bottom: 25px; }

.m-l25 {
  margin-left: 25px; }

.m-r25 {
  margin-right: 25px; }

.m-lr25 {
  margin-left: 25px;
  margin-right: 25px; }

.m-tb25 {
  margin-bottom: 25px;
  margin-top: 25px; }

.p-a30 {
  padding: 30px; }

.p-t30 {
  padding-top: 30px; }

.p-b30 {
  padding-bottom: 30px; }

.p-l30 {
  padding-left: 30px; }

.p-r30 {
  padding-right: 30px; }

.p-lr30 {
  padding-left: 30px;
  padding-right: 30px; }

.p-tb30 {
  padding-bottom: 30px;
  padding-top: 30px; }

.m-a30 {
  margin: 30px; }

.m-t30 {
  margin-top: 30px; }

.m-b30 {
  margin-bottom: 30px; }

.m-l30 {
  margin-left: 30px; }

.m-r30 {
  margin-right: 30px; }

.m-lr30 {
  margin-left: 30px;
  margin-right: 30px; }

.m-tb30 {
  margin-bottom: 30px;
  margin-top: 30px; }

.p-a35 {
  padding: 35px; }

.p-t35 {
  padding-top: 35px; }

.p-b35 {
  padding-bottom: 35px; }

.p-l35 {
  padding-left: 35px; }

.p-r35 {
  padding-right: 35px; }

.p-lr35 {
  padding-left: 35px;
  padding-right: 35px; }

.p-tb35 {
  padding-bottom: 35px;
  padding-top: 35px; }

.m-a35 {
  margin: 35px; }

.m-t35 {
  margin-top: 35px; }

.m-b35 {
  margin-bottom: 35px; }

.m-l35 {
  margin-left: 35px; }

.m-r35 {
  margin-right: 35px; }

.m-lr35 {
  margin-left: 35px;
  margin-right: 35px; }

.m-tb35 {
  margin-bottom: 35px;
  margin-top: 35px; }

.p-a40 {
  padding: 40px; }

.p-t40 {
  padding-top: 40px; }

.p-b40 {
  padding-bottom: 40px; }

.p-l40 {
  padding-left: 40px; }

.p-r40 {
  padding-right: 40px; }

.p-lr40 {
  padding-left: 40px;
  padding-right: 40px; }

.p-tb40 {
  padding-bottom: 40px;
  padding-top: 40px; }

.m-a40 {
  margin: 40px; }

.m-t40 {
  margin-top: 40px; }

.m-b40 {
  margin-bottom: 40px; }

.m-l40 {
  margin-left: 40px; }

.m-r40 {
  margin-right: 40px; }

.m-lr40 {
  margin-left: 40px;
  margin-right: 40px; }

.m-tb40 {
  margin-bottom: 40px;
  margin-top: 40px; }

.p-a45 {
  padding: 45px; }

.p-t45 {
  padding-top: 45px; }

.p-b45 {
  padding-bottom: 45px; }

.p-l45 {
  padding-left: 45px; }

.p-r45 {
  padding-right: 45px; }

.p-lr45 {
  padding-left: 45px;
  padding-right: 45px; }

.p-tb45 {
  padding-bottom: 45px;
  padding-top: 45px; }

.m-a45 {
  margin: 45px; }

.m-t45 {
  margin-top: 45px; }

.m-b45 {
  margin-bottom: 45px; }

.m-l45 {
  margin-left: 45px; }

.m-r45 {
  margin-right: 45px; }

.m-lr45 {
  margin-left: 45px;
  margin-right: 45px; }

.m-tb45 {
  margin-bottom: 45px;
  margin-top: 45px; }

.p-a50 {
  padding: 50px; }

.p-t50 {
  padding-top: 50px; }

.p-b50 {
  padding-bottom: 50px; }

.p-l50 {
  padding-left: 50px; }

.p-r50 {
  padding-right: 50px; }

.p-lr50 {
  padding-left: 50px;
  padding-right: 50px; }

.p-tb50 {
  padding-bottom: 50px;
  padding-top: 50px; }

.m-a50 {
  margin: 50px; }

.m-t50 {
  margin-top: 50px; }

.m-b50 {
  margin-bottom: 50px; }

.m-l50 {
  margin-left: 50px; }

.m-r50 {
  margin-right: 50px; }

.m-lr50 {
  margin-left: 50px;
  margin-right: 50px; }

.m-tb50 {
  margin-bottom: 50px;
  margin-top: 50px; }

.p-a55 {
  padding: 55px; }

.p-t55 {
  padding-top: 55px; }

.p-b55 {
  padding-bottom: 55px; }

.p-l55 {
  padding-left: 55px; }

.p-r55 {
  padding-right: 55px; }

.p-lr55 {
  padding-left: 55px;
  padding-right: 55px; }

.p-tb55 {
  padding-bottom: 55px;
  padding-top: 55px; }

.m-a55 {
  margin: 55px; }

.m-t55 {
  margin-top: 55px; }

.m-b55 {
  margin-bottom: 55px; }

.m-l55 {
  margin-left: 55px; }

.m-r55 {
  margin-right: 55px; }

.m-lr55 {
  margin-left: 55px;
  margin-right: 55px; }

.m-tb55 {
  margin-bottom: 55px;
  margin-top: 55px; }

.p-a60 {
  padding: 60px; }

.p-t60 {
  padding-top: 60px; }

.p-b60 {
  padding-bottom: 60px; }

.p-l60 {
  padding-left: 60px; }

.p-r60 {
  padding-right: 60px; }

.p-lr60 {
  padding-left: 60px;
  padding-right: 60px; }

.p-tb60 {
  padding-bottom: 60px;
  padding-top: 60px; }

.m-a60 {
  margin: 60px; }

.m-t60 {
  margin-top: 60px; }

.m-b60 {
  margin-bottom: 60px; }

.m-l60 {
  margin-left: 60px; }

.m-r60 {
  margin-right: 60px; }

.m-lr60 {
  margin-left: 60px;
  margin-right: 60px; }

.m-tb60 {
  margin-bottom: 60px;
  margin-top: 60px; }

.p-a65 {
  padding: 65px; }

.p-t65 {
  padding-top: 65px; }

.p-b65 {
  padding-bottom: 65px; }

.p-l65 {
  padding-left: 65px; }

.p-r65 {
  padding-right: 65px; }

.p-lr65 {
  padding-left: 65px;
  padding-right: 65px; }

.p-tb65 {
  padding-bottom: 65px;
  padding-top: 65px; }

.m-a65 {
  margin: 65px; }

.m-t65 {
  margin-top: 65px; }

.m-b65 {
  margin-bottom: 65px; }

.m-l65 {
  margin-left: 65px; }

.m-r65 {
  margin-right: 65px; }

.m-lr65 {
  margin-left: 65px;
  margin-right: 65px; }

.m-tb65 {
  margin-bottom: 65px;
  margin-top: 65px; }

.p-a70 {
  padding: 70px; }

.p-t70 {
  padding-top: 70px; }

.p-b70 {
  padding-bottom: 70px; }

.p-l70 {
  padding-left: 70px; }

.p-r70 {
  padding-right: 70px; }

.p-lr70 {
  padding-left: 70px;
  padding-right: 70px; }

.p-tb70 {
  padding-bottom: 70px;
  padding-top: 70px; }

.m-a70 {
  margin: 70px; }

.m-t70 {
  margin-top: 70px; }

.m-b70 {
  margin-bottom: 70px; }

.m-l70 {
  margin-left: 70px; }

.m-r70 {
  margin-right: 70px; }

.m-lr70 {
  margin-left: 70px;
  margin-right: 70px; }

.m-tb70 {
  margin-bottom: 70px;
  margin-top: 70px; }

.p-a75 {
  padding: 75px; }

.p-t75 {
  padding-top: 75px; }

.p-b75 {
  padding-bottom: 75px; }

.p-l75 {
  padding-left: 75px; }

.p-r75 {
  padding-right: 75px; }

.p-lr75 {
  padding-left: 75px;
  padding-right: 75px; }

.p-tb75 {
  padding-bottom: 75px;
  padding-top: 75px; }

.m-a75 {
  margin: 75px; }

.m-t75 {
  margin-top: 75px; }

.m-b75 {
  margin-bottom: 75px; }

.m-l75 {
  margin-left: 75px; }

.m-r75 {
  margin-right: 75px; }

.m-lr75 {
  margin-left: 75px;
  margin-right: 75px; }

.m-tb75 {
  margin-bottom: 75px;
  margin-top: 75px; }

.p-a80 {
  padding: 80px; }

.p-t80 {
  padding-top: 80px; }

.p-b80 {
  padding-bottom: 80px; }

.p-l80 {
  padding-left: 80px; }

.p-r80 {
  padding-right: 80px; }

.p-lr80 {
  padding-left: 80px;
  padding-right: 80px; }

.p-tb80 {
  padding-bottom: 80px;
  padding-top: 80px; }

.m-a80 {
  margin: 80px; }

.m-t80 {
  margin-top: 80px; }

.m-b80 {
  margin-bottom: 80px; }

.m-l80 {
  margin-left: 80px; }

.m-r80 {
  margin-right: 80px; }

.m-lr80 {
  margin-left: 80px;
  margin-right: 80px; }

.m-tb80 {
  margin-bottom: 80px;
  margin-top: 80px; }

.p-a85 {
  padding: 85px; }

.p-t85 {
  padding-top: 85px; }

.p-b85 {
  padding-bottom: 85px; }

.p-l85 {
  padding-left: 85px; }

.p-r85 {
  padding-right: 85px; }

.p-lr85 {
  padding-left: 85px;
  padding-right: 85px; }

.p-tb85 {
  padding-bottom: 85px;
  padding-top: 85px; }

.m-a85 {
  margin: 85px; }

.m-t85 {
  margin-top: 85px; }

.m-b85 {
  margin-bottom: 85px; }

.m-l85 {
  margin-left: 85px; }

.m-r85 {
  margin-right: 85px; }

.m-lr85 {
  margin-left: 85px;
  margin-right: 85px; }

.m-tb85 {
  margin-bottom: 85px;
  margin-top: 85px; }

.p-a90 {
  padding: 90px; }

.p-t90 {
  padding-top: 90px; }

.p-b90 {
  padding-bottom: 90px; }

.p-l90 {
  padding-left: 90px; }

.p-r90 {
  padding-right: 90px; }

.p-lr90 {
  padding-left: 90px;
  padding-right: 90px; }

.p-tb90 {
  padding-bottom: 90px;
  padding-top: 90px; }

.m-a90 {
  margin: 90px; }

.m-t90 {
  margin-top: 90px; }

.m-b90 {
  margin-bottom: 90px; }

.m-l90 {
  margin-left: 90px; }

.m-r90 {
  margin-right: 90px; }

.m-lr90 {
  margin-left: 90px;
  margin-right: 90px; }

.m-tb90 {
  margin-bottom: 90px;
  margin-top: 90px; }

.p-a95 {
  padding: 95px; }

.p-t95 {
  padding-top: 95px; }

.p-b95 {
  padding-bottom: 95px; }

.p-l95 {
  padding-left: 95px; }

.p-r95 {
  padding-right: 95px; }

.p-lr95 {
  padding-left: 95px;
  padding-right: 95px; }

.p-tb95 {
  padding-bottom: 95px;
  padding-top: 95px; }

.m-a95 {
  margin: 95px; }

.m-t95 {
  margin-top: 95px; }

.m-b95 {
  margin-bottom: 95px; }

.m-l95 {
  margin-left: 95px; }

.m-r95 {
  margin-right: 95px; }

.m-lr95 {
  margin-left: 95px;
  margin-right: 95px; }

.m-tb95 {
  margin-bottom: 95px;
  margin-top: 95px; }

.p-a100 {
  padding: 100px; }

.p-t100 {
  padding-top: 100px; }

.p-b100 {
  padding-bottom: 100px; }

.p-l100 {
  padding-left: 100px; }

.p-r100 {
  padding-right: 100px; }

.p-lr100 {
  padding-left: 100px;
  padding-right: 100px; }

.p-tb100 {
  padding-bottom: 100px;
  padding-top: 100px; }

.m-a100 {
  margin: 100px; }

.m-t100 {
  margin-top: 100px; }

.m-b100 {
  margin-bottom: 100px; }

.m-l100 {
  margin-left: 100px; }

.m-r100 {
  margin-right: 100px; }

.m-lr100 {
  margin-left: 100px;
  margin-right: 100px; }

.m-tb100 {
  margin-bottom: 100px;
  margin-top: 100px; }

@media only screen and (max-width: 1200px) {
  .m-lg-t0 {
    margin-top: 0px; }
  .m-lg-b0 {
    margin-bottom: 0px; }
  .m-lg-t5 {
    margin-top: 5px; }
  .m-lg-b5 {
    margin-bottom: 5px; }
  .m-lg-t10 {
    margin-top: 10px; }
  .m-lg-b10 {
    margin-bottom: 10px; }
  .m-lg-t15 {
    margin-top: 15px; }
  .m-lg-b15 {
    margin-bottom: 15px; }
  .m-lg-t20 {
    margin-top: 20px; }
  .m-lg-b20 {
    margin-bottom: 20px; }
  .m-lg-t25 {
    margin-top: 25px; }
  .m-lg-b25 {
    margin-bottom: 25px; }
  .m-lg-t30 {
    margin-top: 30px; }
  .m-lg-b30 {
    margin-bottom: 30px; }
  .m-lg-t35 {
    margin-top: 35px; }
  .m-lg-b35 {
    margin-bottom: 35px; }
  .m-lg-t40 {
    margin-top: 40px; }
  .m-lg-b40 {
    margin-bottom: 40px; }
  .m-lg-t45 {
    margin-top: 45px; }
  .m-lg-b45 {
    margin-bottom: 45px; }
  .m-lg-t50 {
    margin-top: 50px; }
  .m-lg-b50 {
    margin-bottom: 50px; }
  .m-lg-t55 {
    margin-top: 55px; }
  .m-lg-b55 {
    margin-bottom: 55px; }
  .m-lg-t60 {
    margin-top: 60px; }
  .m-lg-b60 {
    margin-bottom: 60px; }
  .m-lg-t65 {
    margin-top: 65px; }
  .m-lg-b65 {
    margin-bottom: 65px; }
  .m-lg-t70 {
    margin-top: 70px; }
  .m-lg-b70 {
    margin-bottom: 70px; }
  .m-lg-t75 {
    margin-top: 75px; }
  .m-lg-b75 {
    margin-bottom: 75px; }
  .m-lg-t80 {
    margin-top: 80px; }
  .m-lg-b80 {
    margin-bottom: 80px; }
  .m-lg-t85 {
    margin-top: 85px; }
  .m-lg-b85 {
    margin-bottom: 85px; }
  .m-lg-t90 {
    margin-top: 90px; }
  .m-lg-b90 {
    margin-bottom: 90px; }
  .m-lg-t95 {
    margin-top: 95px; }
  .m-lg-b95 {
    margin-bottom: 95px; }
  .m-lg-t100 {
    margin-top: 100px; }
  .m-lg-b100 {
    margin-bottom: 100px; }
  .m-lg-r0 {
    margin-right: 0; }
  .m-lg-l0 {
    margin-left: 0; } }

@media only screen and (max-width: 991px) {
  .m-md-t0 {
    margin-top: 0px; }
  .m-md-b0 {
    margin-bottom: 0px; }
  .m-md-t5 {
    margin-top: 5px; }
  .m-md-b5 {
    margin-bottom: 5px; }
  .m-md-t10 {
    margin-top: 10px; }
  .m-md-b10 {
    margin-bottom: 10px; }
  .m-md-t15 {
    margin-top: 15px; }
  .m-md-b15 {
    margin-bottom: 15px; }
  .m-md-t20 {
    margin-top: 20px; }
  .m-md-b20 {
    margin-bottom: 20px; }
  .m-md-t25 {
    margin-top: 25px; }
  .m-md-b25 {
    margin-bottom: 25px; }
  .m-md-t30 {
    margin-top: 30px; }
  .m-md-b30 {
    margin-bottom: 30px; }
  .m-md-t35 {
    margin-top: 35px; }
  .m-md-b35 {
    margin-bottom: 35px; }
  .m-md-t40 {
    margin-top: 40px; }
  .m-md-b40 {
    margin-bottom: 40px; }
  .m-md-t45 {
    margin-top: 45px; }
  .m-md-b45 {
    margin-bottom: 45px; }
  .m-md-t50 {
    margin-top: 50px; }
  .m-md-b50 {
    margin-bottom: 50px; }
  .m-md-t55 {
    margin-top: 55px; }
  .m-md-b55 {
    margin-bottom: 55px; }
  .m-md-t60 {
    margin-top: 60px; }
  .m-md-b60 {
    margin-bottom: 60px; }
  .m-md-t65 {
    margin-top: 65px; }
  .m-md-b65 {
    margin-bottom: 65px; }
  .m-md-t70 {
    margin-top: 70px; }
  .m-md-b70 {
    margin-bottom: 70px; }
  .m-md-t75 {
    margin-top: 75px; }
  .m-md-b75 {
    margin-bottom: 75px; }
  .m-md-t80 {
    margin-top: 80px; }
  .m-md-b80 {
    margin-bottom: 80px; }
  .m-md-t85 {
    margin-top: 85px; }
  .m-md-b85 {
    margin-bottom: 85px; }
  .m-md-t90 {
    margin-top: 90px; }
  .m-md-b90 {
    margin-bottom: 90px; }
  .m-md-t95 {
    margin-top: 95px; }
  .m-md-b95 {
    margin-bottom: 95px; }
  .m-md-t100 {
    margin-top: 100px; }
  .m-md-b100 {
    margin-bottom: 100px; }
  .m-md-r0 {
    margin-right: 0; }
  .m-md-l0 {
    margin-left: 0; } }

@media only screen and (max-width: 767px) {
  .m-sm-t0 {
    margin-top: 0px; }
  .m-sm-b0 {
    margin-bottom: 0px; }
  .m-sm-t5 {
    margin-top: 5px; }
  .m-sm-b5 {
    margin-bottom: 5px; }
  .m-sm-t10 {
    margin-top: 10px; }
  .m-sm-b10 {
    margin-bottom: 10px; }
  .m-sm-t15 {
    margin-top: 15px; }
  .m-sm-b15 {
    margin-bottom: 15px; }
  .m-sm-t20 {
    margin-top: 20px; }
  .m-sm-b20 {
    margin-bottom: 20px; }
  .m-sm-t25 {
    margin-top: 25px; }
  .m-sm-b25 {
    margin-bottom: 25px; }
  .m-sm-t30 {
    margin-top: 30px; }
  .m-sm-b30 {
    margin-bottom: 30px; }
  .m-sm-t35 {
    margin-top: 35px; }
  .m-sm-b35 {
    margin-bottom: 35px; }
  .m-sm-t40 {
    margin-top: 40px; }
  .m-sm-b40 {
    margin-bottom: 40px; }
  .m-sm-t45 {
    margin-top: 45px; }
  .m-sm-b45 {
    margin-bottom: 45px; }
  .m-sm-t50 {
    margin-top: 50px; }
  .m-sm-b50 {
    margin-bottom: 50px; }
  .m-sm-t55 {
    margin-top: 55px; }
  .m-sm-b55 {
    margin-bottom: 55px; }
  .m-sm-t60 {
    margin-top: 60px; }
  .m-sm-b60 {
    margin-bottom: 60px; }
  .m-sm-t65 {
    margin-top: 65px; }
  .m-sm-b65 {
    margin-bottom: 65px; }
  .m-sm-t70 {
    margin-top: 70px; }
  .m-sm-b70 {
    margin-bottom: 70px; }
  .m-sm-t75 {
    margin-top: 75px; }
  .m-sm-b75 {
    margin-bottom: 75px; }
  .m-sm-t80 {
    margin-top: 80px; }
  .m-sm-b80 {
    margin-bottom: 80px; }
  .m-sm-t85 {
    margin-top: 85px; }
  .m-sm-b85 {
    margin-bottom: 85px; }
  .m-sm-t90 {
    margin-top: 90px; }
  .m-sm-b90 {
    margin-bottom: 90px; }
  .m-sm-t95 {
    margin-top: 95px; }
  .m-sm-b95 {
    margin-bottom: 95px; }
  .m-sm-t100 {
    margin-top: 100px; }
  .m-sm-b100 {
    margin-bottom: 100px; } }

@media only screen and (max-width: 576px) {
  .m-xs-t0 {
    margin-top: 0px; }
  .m-xs-b0 {
    margin-bottom: 0px; }
  .m-xs-t5 {
    margin-top: 5px; }
  .m-xs-b5 {
    margin-bottom: 5px; }
  .m-xs-t10 {
    margin-top: 10px; }
  .m-xs-b10 {
    margin-bottom: 10px; }
  .m-xs-t15 {
    margin-top: 15px; }
  .m-xs-b15 {
    margin-bottom: 15px; }
  .m-xs-t20 {
    margin-top: 20px; }
  .m-xs-b20 {
    margin-bottom: 20px; }
  .m-xs-t25 {
    margin-top: 25px; }
  .m-xs-b25 {
    margin-bottom: 25px; }
  .m-xs-t30 {
    margin-top: 30px; }
  .m-xs-b30 {
    margin-bottom: 30px; }
  .m-xs-t35 {
    margin-top: 35px; }
  .m-xs-b35 {
    margin-bottom: 35px; }
  .m-xs-t40 {
    margin-top: 40px; }
  .m-xs-b40 {
    margin-bottom: 40px; }
  .m-xs-t45 {
    margin-top: 45px; }
  .m-xs-b45 {
    margin-bottom: 45px; }
  .m-xs-t50 {
    margin-top: 50px; }
  .m-xs-b50 {
    margin-bottom: 50px; }
  .m-xs-t55 {
    margin-top: 55px; }
  .m-xs-b55 {
    margin-bottom: 55px; }
  .m-xs-t60 {
    margin-top: 60px; }
  .m-xs-b60 {
    margin-bottom: 60px; }
  .m-xs-t65 {
    margin-top: 65px; }
  .m-xs-b65 {
    margin-bottom: 65px; }
  .m-xs-t70 {
    margin-top: 70px; }
  .m-xs-b70 {
    margin-bottom: 70px; }
  .m-xs-t75 {
    margin-top: 75px; }
  .m-xs-b75 {
    margin-bottom: 75px; }
  .m-xs-t80 {
    margin-top: 80px; }
  .m-xs-b80 {
    margin-bottom: 80px; }
  .m-xs-t85 {
    margin-top: 85px; }
  .m-xs-b85 {
    margin-bottom: 85px; }
  .m-xs-t90 {
    margin-top: 90px; }
  .m-xs-b90 {
    margin-bottom: 90px; }
  .m-xs-t95 {
    margin-top: 95px; }
  .m-xs-b95 {
    margin-bottom: 95px; }
  .m-xs-t100 {
    margin-top: 100px; }
  .m-xs-b100 {
    margin-bottom: 100px; } }

.max-w50 {
  max-width: 50px; }

.max-w60 {
  max-width: 60px; }

.max-w80 {
  max-width: 80px; }

.max-w100 {
  max-width: 100px; }

.max-w200 {
  max-width: 200px; }

.max-w300 {
  max-width: 300px; }

.max-w400 {
  max-width: 400px; }

.max-w500 {
  max-width: 500px; }

.max-w600 {
  max-width: 600px; }

.max-w700 {
  max-width: 700px; }

.max-w800 {
  max-width: 800px; }

.max-w900 {
  max-width: 900px; }

.max-w1000 {
  max-width: 1000px; }

.bg-img-fix {
  background-attachment: unset;
  background-size: cover; }

.full-img {
  width: 100%; }

.sticky-top {
  top: 120px;
  z-index: 1; }

.page-title {
  padding: 65px 0px 45px;
  position: relative;
  background: #faf8f2;
  background-size: cover;
  background-position: center; }
  .page-title p {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #7272A8;
    text-transform: capitalize; }
    @media only screen and (max-width: 575px) {
      .page-title p {
        font-size: 16px; } }
  .page-title h3, .page-title .h3 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 600;
    text-transform: capitalize; }
    @media only screen and (max-width: 575px) {
      .page-title h3, .page-title .h3 {
        font-size: 28px; } }

.img-cover {
  height: 100%;
  width: 100%;
  object-fit: cover; }

.img-cover-1 {
  height: 100%;
  width: 100%; }

.img-cover-2 {
  height: 306px;
  width: 100%;
  object-fit: cover; }

.img-cover-3 {
  height: 100% !important;
  width: 100%;
  object-fit: cover; }

section {
  position: relative;
  z-index: 1; }

.section-head {
  margin-bottom: 40px;
  position: relative; }
  .section-head .sub-title {
    text-transform: uppercase;
    color: #666666;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 5px; }
    @media only screen and (max-width: 767px) {
      .section-head .sub-title {
        font-size: 16px; } }
  .section-head .p-big {
    font-size: 18px; }
    @media only screen and (max-width: 1480px) {
      .section-head .p-big {
        font-size: 16px; } }
  .section-head p {
    color: #000;
    max-width: 600px; }
  .section-head.text-center p {
    margin-left: auto;
    margin-right: auto; }
  .section-head .title {
    margin-bottom: 15px;
    font-style: italic;
    font-family: var(--font-family-title); }
    .section-head .title span {
      background: var(--gradient);
      text-shadow: 0 0 30px var(--rgba-primary-5);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent; }
  .section-head h2.title, .section-head .title.h2 {
    font-size: 65px;
    font-style: italic;
    font-family: var(--font-family-title); }
    @media only screen and (max-width: 1480px) {
      .section-head h2.title, .section-head .title.h2 {
        font-size: 55px; } }
    @media only screen and (max-width: 1280px) {
      .section-head h2.title, .section-head .title.h2 {
        font-size: 48px; } }
    @media only screen and (max-width: 767px) {
      .section-head h2.title, .section-head .title.h2 {
        font-size: 37px; } }
    @media only screen and (max-width: 575px) {
      .section-head h2.title, .section-head .title.h2 {
        font-size: 32px; } }
  @media only screen and (max-width: 1280px) {
    .section-head {
      margin-bottom: 30px; } }
  @media only screen and (max-width: 767px) {
    .section-head {
      margin-bottom: 20px; } }
  .section-head.side-line {
    padding-left: 60px; }
    .section-head.side-line:after, .section-head.side-line:before {
      content: '';
      position: absolute;
      height: 90%;
      top: 5px;
      transform: skewX(-8deg);
      box-shadow: 0px 10px 15px 0px rgba(255, 129, 57, 0.15); }
    .section-head.side-line:after {
      left: 0;
      width: 15px;
      background: var(--gradient); }
    .section-head.side-line:before {
      left: 23px;
      width: 5px;
      background-color: var(--primary); }
    @media only screen and (max-width: 767px) {
      .section-head.side-line {
        padding-left: 30px; }
        .section-head.side-line:after {
          width: 10px; }
        .section-head.side-line:before {
          left: 15px; } }
  .section-head.style-2 .title {
    font-style: italic;
    font-family: var(--font-family-title); }
    .section-head.style-2 .title span {
      font-weight: 400;
      text-shadow: none; }
  .section-head.style-2 p {
    color: #717579; }
  .section-head.style-2 h2.title, .section-head.style-2 .title.h2 {
    font-size: 60px;
    font-style: italic;
    font-weight: 900; }
    @media only screen and (max-width: 1480px) {
      .section-head.style-2 h2.title, .section-head.style-2 .title.h2 {
        font-size: 52px; } }
    @media only screen and (max-width: 1280px) {
      .section-head.style-2 h2.title, .section-head.style-2 .title.h2 {
        font-size: 45px; } }
    @media only screen and (max-width: 767px) {
      .section-head.style-2 h2.title, .section-head.style-2 .title.h2 {
        font-size: 35px; } }
    @media only screen and (max-width: 575px) {
      .section-head.style-2 h2.title, .section-head.style-2 .title.h2 {
        font-size: 30px; } }
  .section-head.style-3 .title {
    font-style: italic;
    font-family: var(--font-family-title); }
    .section-head.style-3 .title span {
      font-weight: 400;
      text-shadow: none; }
  .section-head.style-3 p {
    color: var(--title); }
    @media only screen and (max-width: 991px) {
      .section-head.style-3 p {
        margin: auto;
        margin-bottom: 30px; } }
  .section-head.style-3 .sub-title {
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    color: var(--secondary);
    letter-spacing: 1.8px;
    text-transform: capitalize;
    background: var(--primary);
    width: fit-content;
    padding: 5px 15px; }
    @media only screen and (max-width: 991px) {
      .section-head.style-3 .sub-title {
        margin: auto; } }
  .section-head.style-3 h2.title, .section-head.style-3 .title.h2 {
    font-size: 60px;
    font-style: italic;
    font-weight: 900;
    color: var(--secondary);
    text-transform: uppercase; }
    @media only screen and (max-width: 1480px) {
      .section-head.style-3 h2.title, .section-head.style-3 .title.h2 {
        font-size: 52px; } }
    @media only screen and (max-width: 1280px) {
      .section-head.style-3 h2.title, .section-head.style-3 .title.h2 {
        font-size: 45px; } }
    @media only screen and (max-width: 767px) {
      .section-head.style-3 h2.title, .section-head.style-3 .title.h2 {
        font-size: 35px; } }
    @media only screen and (max-width: 575px) {
      .section-head.style-3 h2.title, .section-head.style-3 .title.h2 {
        font-size: 30px; } }

.res-pl {
  padding-left: 50px; }
  @media only screen and (max-width: 1280px) {
    .res-pl {
      padding-left: 30px; } }

.row.spno,
.spno {
  margin-left: 0;
  margin-right: 0; }
  .row.spno [class*="col"],
  .row.spno [class*="col"],
  .spno [class*="col"],
  .spno [class*="col"] {
    padding-left: 0;
    padding-right: 0; }

.row.sp4,
.sp4 {
  margin-left: -4px;
  margin-right: -4px; }
  .row.sp4 [class*="col"],
  .row.sp4 [class*="col"],
  .sp4 [class*="col"],
  .sp4 [class*="col"] {
    padding-left: 4px;
    padding-right: 4px; }

.row.sp15,
.sp15 {
  margin-left: -7px;
  margin-right: -7px; }
  .row.sp15 [class*="col"],
  .row.sp15 [class*="col"],
  .sp15 [class*="col"],
  .sp15 [class*="col"] {
    padding-left: 7px;
    padding-right: 7px; }

.row.sp10,
.sp10 {
  margin-left: -5px;
  margin-right: -5px; }
  .row.sp10 [class*="col-"],
  .sp10 [class*="col-"] {
    padding-left: 5px;
    padding-right: 5px; }

.row.sp60,
.sp60 {
  margin-left: -30px;
  margin-right: -30px; }
  .row.sp60 [class*="col-"],
  .sp60 [class*="col-"] {
    padding-left: 30px;
    padding-right: 30px; }

.row.sp40,
.sp40 {
  margin-left: -20px;
  margin-right: -20px; }
  .row.sp40 [class*="col-"],
  .sp40 [class*="col-"] {
    padding-left: 20px;
    padding-right: 20px; }

.row.sp20,
.sp20 {
  margin-left: -10px;
  margin-right: -10px; }
  .row.sp20 [class*="col-"],
  .sp20 [class*="col-"] {
    padding-left: 10px;
    padding-right: 10px; }

.row.sp16,
.sp16 {
  margin-left: -8px;
  margin-right: -8px; }
  .row.sp16 [class*="col-"],
  .sp16 [class*="col-"] {
    padding-left: 8px;
    padding-right: 8px; }

.rounded-xl {
  border-radius: 50% !important; }

.rounded-lg {
  border-radius: 20px !important; }

.rounded-md {
  border-radius: 10px !important; }

.rounded-sm {
  border-radius: 5px !important; }

.text-orange {
  color: #ff8853; }

.text-yellow {
  color: #FFE713; }

.text-skyblue {
  color: #029e76; }

.text-red {
  color: #ff0003; }

.text-green {
  color: #029e76; }

.text-blue {
  color: #281E8B; }

.text-purple {
  color: #9A69F9; }

.text-light-purple {
  color: #8C95D2; }

.bg-gray {
  background-color: #F2F2F2; }

.bg-orange {
  background-color: #ff8853; }

.bg-yellow {
  background-color: #FFE713 !important; }

.bg-skyblue {
  background-color: #00aeff; }

.bg-red {
  background-color: #ff0003; }

.bg-green {
  background-color: #029e76; }

.bg-blue {
  background-color: #281E8B; }

.bg-pink {
  background-color: #ff5e78; }

.text-black {
  color: #071c35; }

.bg-purple {
  background-color: #9A69F9; }

.scale8 {
  transform: scale(1.85);
  -moz-transform: scale(1.85);
  -webkit-transform: scale(1.85);
  -ms-transform: scale(1.85);
  -o-transform: scale(1.85); }

.scale7 {
  transform: scale(1.7);
  -moz-transform: scale(1.7);
  -webkit-transform: scale(1.7);
  -ms-transform: scale(1.7);
  -o-transform: scale(1.7); }

.scale5 {
  transform: scale(1.5);
  -moz-transform: scale(1.5);
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  -o-transform: scale(1.5); }

.scale3 {
  transform: scale(1.3);
  -moz-transform: scale(1.3);
  -webkit-transform: scale(1.3);
  -ms-transform: scale(1.3);
  -o-transform: scale(1.3); }

.scale2 {
  transform: scale(1.2);
  -moz-transform: scale(1.2);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  -o-transform: scale(1.2); }

.scale08 {
  transform: scale(0.8);
  -moz-transform: scale(0.8);
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  -o-transform: scale(0.8); }

.scale05 {
  transform: scale(0.5);
  -moz-transform: scale(0.5);
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  -o-transform: scale(0.5); }

.tl {
  transform-origin: left;
  -moz-transform-origin: left;
  -webkit-transform-origin: left;
  -ms-transform-origin: left;
  -o-transform-origin: left; }

.shadow-none {
  box-shadow: unset; }

.separator {
  height: 1px;
  width: 100%;
  background: lightgrey; }

@media only screen and (min-width: 1200px) and (max-width: 1440px) {
  .col-xxl-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-xxl-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-xxl-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-xxl-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-xxl-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-xxl-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-xxl-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-xxl-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-xxl-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-xxl-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-xxl-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-xxl-12 {
    flex: 0 0 100%;
    max-width: 100%; } }

@font-face {
  font-family: "Kuunari";
  src: url("../fonts/kuunari-font/kuunari-black.otf") format("truetype");
  font-weight: 900; }

@font-face {
  font-family: "Kuunari";
  src: url("../fonts/kuunari-font/kuunari-bold.otf") format("truetype");
  font-weight: bold; }

@font-face {
  font-family: "Kuunari";
  src: url("../fonts/kuunari-font/kuunari-medium.otf") format("truetype");
  font-weight: 500; }

@font-face {
  font-family: "Kuunari";
  src: url("../fonts/kuunari-font/kuunari-regular.otf") format("truetype");
  font-weight: normal; }

@font-face {
  font-family: "Kuunari";
  src: url("../fonts/kuunari-font/kuunari-light.otf") format("truetype");
  font-weight: 300; }

@font-face {
  font-family: "Kuunari";
  src: url("../fonts/kuunari-font/kuunari-thin.otf") format("truetype");
  font-weight: 100; }

/*=== Layout ===*/
.logo-header {
  display: table;
  float: left;
  vertical-align: middle;
  padding: 0;
  color: #EFBB20;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-right: 0;
  width: 180px;
  height: 100px;
  position: relative;
  z-index: 9; }
  @media only screen and (max-width: 991px) {
    .logo-header {
      width: 180px;
      height: 80px; } }
  @media only screen and (max-width: 575px) {
    .logo-header {
      width: 180px;
      height: 70px; } }
  .logo-header a {
    display: table-cell;
    vertical-align: middle; }
  .logo-header img {
    max-width: 180px;
    object-fit: contain;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    @media only screen and (max-width: 991px) {
      .logo-header img {
        width: 165px; } }
    @media only screen and (max-width: 575px) {
      .logo-header img {
        max-width: 150px; } }
  .logo-header span {
    font-size: 20px;
    letter-spacing: 20px; }

.top-bar {
  color: #fff;
  padding: 12px 0;
  position: relative;
  border-bottom: 1px solid #d7d7d7; }
  .top-bar .dz-topbar-left {
    float: left; }
    .top-bar .dz-topbar-left li {
      padding-right: 20px; }
  .top-bar .dz-topbar-right {
    float: right; }
    .top-bar .dz-topbar-right li {
      padding-left: 30px; }
  .top-bar .dz-social li a {
    color: inherit; }
  .top-bar .dz-topbar-inner {
    margin-left: -15px;
    margin-right: -15px; }
  .top-bar .dz-topbar-center,
  .top-bar .dz-topbar-left,
  .top-bar .dz-topbar-right {
    padding-left: 15px;
    padding-right: 15px; }
    .top-bar .dz-topbar-center ul,
    .top-bar .dz-topbar-left ul,
    .top-bar .dz-topbar-right ul {
      list-style: none;
      margin: 0;
      padding: 0; }
      .top-bar .dz-topbar-center ul li,
      .top-bar .dz-topbar-left ul li,
      .top-bar .dz-topbar-right ul li {
        display: inline-flex;
        font-size: 15px;
        color: #fff;
        align-items: center; }
      .top-bar .dz-topbar-center ul i,
      .top-bar .dz-topbar-left ul i,
      .top-bar .dz-topbar-right ul i {
        margin-right: 8px;
        font-size: 17px;
        color: var(--primary); }
    .top-bar .dz-topbar-center .dz-social-icon li,
    .top-bar .dz-topbar-left .dz-social-icon li,
    .top-bar .dz-topbar-right .dz-social-icon li {
      padding-left: 0; }
  @media only screen and (max-width: 991px) {
    .top-bar {
      display: none; } }

.text-logo .site-title {
  font-size: 25px;
  line-height: 1;
  margin-bottom: 5px; }

.text-logo p {
  font-size: 14px;
  line-height: 1;
  margin: 0;
  color: var(--primary); }

.dz-quik-search {
  background: rgba(33, 37, 41, 0.95);
  position: fixed;
  height: 100%;
  width: 100%;
  top: -100%;
  left: 0;
  padding: 0px 30px;
  z-index: 999;
  overflow: hidden;
  display: none;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  .dz-quik-search form {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative;
    top: 50%;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    transform: translateY(-50%); }
  .dz-quik-search .form-control, .dz-quik-search .wp-block-categories-dropdown select, .wp-block-categories-dropdown .dz-quik-search select,
  .dz-quik-search .wp-block-archives-dropdown select, .wp-block-archives-dropdown .dz-quik-search select, .dz-quik-search .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .dz-quik-search input[type="text"],
  .dz-quik-search .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .dz-quik-search textarea,
  .dz-quik-search .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .dz-quik-search input[type="email"], .dz-quik-search .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .dz-quik-search .input-text, .dz-quik-search .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .dz-quik-search input, .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search textarea,
  .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search select,
  .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search input, .dz-quik-search .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .dz-quik-search input[type="text"],
  .dz-quik-search .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .dz-quik-search input[type="email"],
  .dz-quik-search .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .dz-quik-search input[type="password"],
  .dz-quik-search .login input[type="text"], .login .dz-quik-search input[type="text"], .dz-quik-search .login input[type="password"], .login .dz-quik-search input[type="password"],
  .dz-quik-search .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .dz-quik-search input[type="text"],
  .dz-quik-search .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .dz-quik-search input[type="text"],
  .dz-quik-search .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .dz-quik-search input[type="email"],
  .dz-quik-search .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .dz-quik-search input[type="tel"],
  .dz-quik-search .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .dz-quik-search .select2-choice,
  .dz-quik-search .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .dz-quik-search textarea,
  .dz-quik-search .woocommerce form .form-row input.input-text, .woocommerce form .form-row .dz-quik-search input.input-text,
  .dz-quik-search .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .dz-quik-search .select2-selection,
  .dz-quik-search .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .dz-quik-search .select2-choice {
    padding: 15px 60px 15px 15px;
    width: 100%;
    height: 90px;
    border: none;
    background: 0 0;
    color: #fff;
    font-size: 20px;
    border-bottom: 2px solid #fff;
    border-radius: 0; }
    .dz-quik-search .form-control::-webkit-input-placeholder, .dz-quik-search .wp-block-categories-dropdown select::-webkit-input-placeholder, .wp-block-categories-dropdown .dz-quik-search select::-webkit-input-placeholder,
    .dz-quik-search .wp-block-archives-dropdown select::-webkit-input-placeholder, .wp-block-archives-dropdown .dz-quik-search select::-webkit-input-placeholder, .dz-quik-search .woocommerce #review_form #respond input[type="text"]::-webkit-input-placeholder, .woocommerce #review_form #respond .dz-quik-search input[type="text"]::-webkit-input-placeholder,
    .dz-quik-search .woocommerce #review_form #respond textarea::-webkit-input-placeholder, .woocommerce #review_form #respond .dz-quik-search textarea::-webkit-input-placeholder,
    .dz-quik-search .woocommerce #review_form #respond input[type="email"]::-webkit-input-placeholder, .woocommerce #review_form #respond .dz-quik-search input[type="email"]::-webkit-input-placeholder, .dz-quik-search .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::-webkit-input-placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .dz-quik-search .input-text::-webkit-input-placeholder, .dz-quik-search .woocommerce-cart-form .table.shop_table tr .quantity input::-webkit-input-placeholder, .woocommerce-cart-form .table.shop_table tr .quantity .dz-quik-search input::-webkit-input-placeholder, .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row textarea::-webkit-input-placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search textarea::-webkit-input-placeholder,
    .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row select::-webkit-input-placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search select::-webkit-input-placeholder,
    .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row input::-webkit-input-placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search input::-webkit-input-placeholder, .dz-quik-search .woocommerce-EditAccountForm.edit-account input[type="text"]::-webkit-input-placeholder, .woocommerce-EditAccountForm.edit-account .dz-quik-search input[type="text"]::-webkit-input-placeholder,
    .dz-quik-search .woocommerce-EditAccountForm.edit-account input[type="email"]::-webkit-input-placeholder, .woocommerce-EditAccountForm.edit-account .dz-quik-search input[type="email"]::-webkit-input-placeholder,
    .dz-quik-search .woocommerce-EditAccountForm.edit-account input[type="password"]::-webkit-input-placeholder, .woocommerce-EditAccountForm.edit-account .dz-quik-search input[type="password"]::-webkit-input-placeholder,
    .dz-quik-search .login input[type="text"]::-webkit-input-placeholder, .login .dz-quik-search input[type="text"]::-webkit-input-placeholder, .dz-quik-search .login input[type="password"]::-webkit-input-placeholder, .login .dz-quik-search input[type="password"]::-webkit-input-placeholder,
    .dz-quik-search .woocommerce-ResetPassword.lost_reset_password input[type="text"]::-webkit-input-placeholder, .woocommerce-ResetPassword.lost_reset_password .dz-quik-search input[type="text"]::-webkit-input-placeholder,
    .dz-quik-search .checkout.woocommerce-checkout input[type="text"]::-webkit-input-placeholder, .checkout.woocommerce-checkout .dz-quik-search input[type="text"]::-webkit-input-placeholder,
    .dz-quik-search .checkout.woocommerce-checkout input[type="email"]::-webkit-input-placeholder, .checkout.woocommerce-checkout .dz-quik-search input[type="email"]::-webkit-input-placeholder,
    .dz-quik-search .checkout.woocommerce-checkout input[type="tel"]::-webkit-input-placeholder, .checkout.woocommerce-checkout .dz-quik-search input[type="tel"]::-webkit-input-placeholder,
    .dz-quik-search .checkout.woocommerce-checkout .select2-choice::-webkit-input-placeholder, .checkout.woocommerce-checkout .dz-quik-search .select2-choice::-webkit-input-placeholder,
    .dz-quik-search .checkout.woocommerce-checkout textarea::-webkit-input-placeholder, .checkout.woocommerce-checkout .dz-quik-search textarea::-webkit-input-placeholder,
    .dz-quik-search .woocommerce form .form-row input.input-text::-webkit-input-placeholder, .woocommerce form .form-row .dz-quik-search input.input-text::-webkit-input-placeholder,
    .dz-quik-search .woocommerce form .form-row .select2-selection::-webkit-input-placeholder, .woocommerce form .form-row .dz-quik-search .select2-selection::-webkit-input-placeholder,
    .dz-quik-search .woocommerce form .form-row .select2-choice::-webkit-input-placeholder, .woocommerce form .form-row .dz-quik-search .select2-choice::-webkit-input-placeholder {
      color: rgba(255, 255, 255, 0.8); }
    .dz-quik-search .form-control:-ms-input-placeholder, .dz-quik-search .wp-block-categories-dropdown select:-ms-input-placeholder, .wp-block-categories-dropdown .dz-quik-search select:-ms-input-placeholder,
    .dz-quik-search .wp-block-archives-dropdown select:-ms-input-placeholder, .wp-block-archives-dropdown .dz-quik-search select:-ms-input-placeholder, .dz-quik-search .woocommerce #review_form #respond input:-ms-input-placeholder[type="text"], .woocommerce #review_form #respond .dz-quik-search input:-ms-input-placeholder[type="text"],
    .dz-quik-search .woocommerce #review_form #respond textarea:-ms-input-placeholder, .woocommerce #review_form #respond .dz-quik-search textarea:-ms-input-placeholder,
    .dz-quik-search .woocommerce #review_form #respond input:-ms-input-placeholder[type="email"], .woocommerce #review_form #respond .dz-quik-search input:-ms-input-placeholder[type="email"], .dz-quik-search .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:-ms-input-placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .dz-quik-search .input-text:-ms-input-placeholder, .dz-quik-search .woocommerce-cart-form .table.shop_table tr .quantity input:-ms-input-placeholder, .woocommerce-cart-form .table.shop_table tr .quantity .dz-quik-search input:-ms-input-placeholder, .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row textarea:-ms-input-placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search textarea:-ms-input-placeholder,
    .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row select:-ms-input-placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search select:-ms-input-placeholder,
    .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row input:-ms-input-placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search input:-ms-input-placeholder, .dz-quik-search .woocommerce-EditAccountForm.edit-account input:-ms-input-placeholder[type="text"], .woocommerce-EditAccountForm.edit-account .dz-quik-search input:-ms-input-placeholder[type="text"],
    .dz-quik-search .woocommerce-EditAccountForm.edit-account input:-ms-input-placeholder[type="email"], .woocommerce-EditAccountForm.edit-account .dz-quik-search input:-ms-input-placeholder[type="email"],
    .dz-quik-search .woocommerce-EditAccountForm.edit-account input:-ms-input-placeholder[type="password"], .woocommerce-EditAccountForm.edit-account .dz-quik-search input:-ms-input-placeholder[type="password"],
    .dz-quik-search .login input:-ms-input-placeholder[type="text"], .login .dz-quik-search input:-ms-input-placeholder[type="text"], .dz-quik-search .login input:-ms-input-placeholder[type="password"], .login .dz-quik-search input:-ms-input-placeholder[type="password"],
    .dz-quik-search .woocommerce-ResetPassword.lost_reset_password input:-ms-input-placeholder[type="text"], .woocommerce-ResetPassword.lost_reset_password .dz-quik-search input:-ms-input-placeholder[type="text"],
    .dz-quik-search .checkout.woocommerce-checkout input:-ms-input-placeholder[type="text"], .checkout.woocommerce-checkout .dz-quik-search input:-ms-input-placeholder[type="text"],
    .dz-quik-search .checkout.woocommerce-checkout input:-ms-input-placeholder[type="email"], .checkout.woocommerce-checkout .dz-quik-search input:-ms-input-placeholder[type="email"],
    .dz-quik-search .checkout.woocommerce-checkout input:-ms-input-placeholder[type="tel"], .checkout.woocommerce-checkout .dz-quik-search input:-ms-input-placeholder[type="tel"],
    .dz-quik-search .checkout.woocommerce-checkout .select2-choice:-ms-input-placeholder, .checkout.woocommerce-checkout .dz-quik-search .select2-choice:-ms-input-placeholder,
    .dz-quik-search .checkout.woocommerce-checkout textarea:-ms-input-placeholder, .checkout.woocommerce-checkout .dz-quik-search textarea:-ms-input-placeholder,
    .dz-quik-search .woocommerce form .form-row input.input-text:-ms-input-placeholder, .woocommerce form .form-row .dz-quik-search input.input-text:-ms-input-placeholder,
    .dz-quik-search .woocommerce form .form-row .select2-selection:-ms-input-placeholder, .woocommerce form .form-row .dz-quik-search .select2-selection:-ms-input-placeholder,
    .dz-quik-search .woocommerce form .form-row .select2-choice:-ms-input-placeholder, .woocommerce form .form-row .dz-quik-search .select2-choice:-ms-input-placeholder {
      color: rgba(255, 255, 255, 0.8); }
    .dz-quik-search .form-control::placeholder, .dz-quik-search .wp-block-categories-dropdown select::placeholder, .wp-block-categories-dropdown .dz-quik-search select::placeholder,
    .dz-quik-search .wp-block-archives-dropdown select::placeholder, .wp-block-archives-dropdown .dz-quik-search select::placeholder, .dz-quik-search .woocommerce #review_form #respond input[type="text"]::placeholder, .woocommerce #review_form #respond .dz-quik-search input[type="text"]::placeholder,
    .dz-quik-search .woocommerce #review_form #respond textarea::placeholder, .woocommerce #review_form #respond .dz-quik-search textarea::placeholder,
    .dz-quik-search .woocommerce #review_form #respond input[type="email"]::placeholder, .woocommerce #review_form #respond .dz-quik-search input[type="email"]::placeholder, .dz-quik-search .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .dz-quik-search .input-text::placeholder, .dz-quik-search .woocommerce-cart-form .table.shop_table tr .quantity input::placeholder, .woocommerce-cart-form .table.shop_table tr .quantity .dz-quik-search input::placeholder, .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row textarea::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search textarea::placeholder,
    .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row select::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search select::placeholder,
    .dz-quik-search .woocommerce .woocommerce-checkout.checkout form .form-row input::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-quik-search input::placeholder, .dz-quik-search .woocommerce-EditAccountForm.edit-account input[type="text"]::placeholder, .woocommerce-EditAccountForm.edit-account .dz-quik-search input[type="text"]::placeholder,
    .dz-quik-search .woocommerce-EditAccountForm.edit-account input[type="email"]::placeholder, .woocommerce-EditAccountForm.edit-account .dz-quik-search input[type="email"]::placeholder,
    .dz-quik-search .woocommerce-EditAccountForm.edit-account input[type="password"]::placeholder, .woocommerce-EditAccountForm.edit-account .dz-quik-search input[type="password"]::placeholder,
    .dz-quik-search .login input[type="text"]::placeholder, .login .dz-quik-search input[type="text"]::placeholder, .dz-quik-search .login input[type="password"]::placeholder, .login .dz-quik-search input[type="password"]::placeholder,
    .dz-quik-search .woocommerce-ResetPassword.lost_reset_password input[type="text"]::placeholder, .woocommerce-ResetPassword.lost_reset_password .dz-quik-search input[type="text"]::placeholder,
    .dz-quik-search .checkout.woocommerce-checkout input[type="text"]::placeholder, .checkout.woocommerce-checkout .dz-quik-search input[type="text"]::placeholder,
    .dz-quik-search .checkout.woocommerce-checkout input[type="email"]::placeholder, .checkout.woocommerce-checkout .dz-quik-search input[type="email"]::placeholder,
    .dz-quik-search .checkout.woocommerce-checkout input[type="tel"]::placeholder, .checkout.woocommerce-checkout .dz-quik-search input[type="tel"]::placeholder,
    .dz-quik-search .checkout.woocommerce-checkout .select2-choice::placeholder, .checkout.woocommerce-checkout .dz-quik-search .select2-choice::placeholder,
    .dz-quik-search .checkout.woocommerce-checkout textarea::placeholder, .checkout.woocommerce-checkout .dz-quik-search textarea::placeholder,
    .dz-quik-search .woocommerce form .form-row input.input-text::placeholder, .woocommerce form .form-row .dz-quik-search input.input-text::placeholder,
    .dz-quik-search .woocommerce form .form-row .select2-selection::placeholder, .woocommerce form .form-row .dz-quik-search .select2-selection::placeholder,
    .dz-quik-search .woocommerce form .form-row .select2-choice::placeholder, .woocommerce form .form-row .dz-quik-search .select2-choice::placeholder {
      color: rgba(255, 255, 255, 0.8); }
  .dz-quik-search span {
    position: absolute;
    right: 15px;
    top: 50%;
    margin: -15px 0;
    height: 25px;
    font-size: 20px;
    cursor: pointer; }
  .dz-quik-search.On {
    top: 0; }

.site-header {
  position: relative;
  z-index: 9999; }
  .site-header .main-bar {
    background: #fff;
    width: 100%;
    position: relative;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05); }
  .site-header .container {
    position: relative; }
  .site-header .extra-nav {
    float: right;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 9;
    height: 100px;
    padding-left: 30px; }
    .site-header .extra-nav .extra-cell {
      display: flex;
      align-items: center; }
      .site-header .extra-nav .extra-cell > * {
        display: inline-block; }
    .site-header .extra-nav #quik-search-btn {
      color: #212529;
      cursor: pointer;
      margin-right: 0px;
      border: 0;
      width: 45px;
      height: 45px;
      background: #ebebeb;
      line-height: 45px;
      text-align: center;
      font-size: 18px;
      border-radius: 45px; }
    @media only screen and (max-width: 575px) {
      .site-header .extra-nav .btn, .site-header .extra-nav .wp-block-button__link, .site-header .extra-nav .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .site-header .extra-nav .btn.sw-btn-prev, .site-header .extra-nav .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .site-header .extra-nav .btn.sw-btn-next, .site-header .extra-nav .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .site-header .extra-nav a,
      .site-header .extra-nav .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .site-header .extra-nav a, .site-header .extra-nav .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .site-header .extra-nav input, .site-header .extra-nav .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .site-header .extra-nav .button, .site-header .extra-nav .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .site-header .extra-nav a.checkout-button, .site-header .extra-nav .woocommerce #respond input#submit, .woocommerce #respond .site-header .extra-nav input#submit,
      .site-header .extra-nav .woocommerce a.button, .woocommerce .site-header .extra-nav a.button,
      .site-header .extra-nav .woocommerce button.button, .woocommerce .site-header .extra-nav button.button,
      .site-header .extra-nav .woocommerce input.button, .woocommerce .site-header .extra-nav input.button,
      .site-header .extra-nav .woocommerce #place_order, .woocommerce .site-header .extra-nav #place_order {
        padding-left: 15px;
        padding-right: 15px; } }
    .site-header .extra-nav ul li {
      display: inline-block; }
      .site-header .extra-nav ul li .icon {
        padding: 0;
        background: transparent;
        min-width: 40px;
        text-align: center;
        height: 40px;
        line-height: 40px;
        border-radius: 4px; }
    @media only screen and (max-width: 1199px) {
      .site-header .extra-nav {
        height: 100px; } }
    @media only screen and (max-width: 991px) {
      .site-header .extra-nav {
        height: 80px; } }
    @media only screen and (max-width: 575px) {
      .site-header .extra-nav {
        display: none; } }

.navbar-toggler {
  border: 0 solid #efbb20;
  font-size: 16px;
  line-height: 24px;
  margin: 20px 0 18px 15px;
  padding: 0;
  float: right;
  outline: none !important; }
  @media only screen and (max-width: 575px) {
    .navbar-toggler {
      margin: 20px 0 15px 15px; } }

.navbar-toggler-skew {
  position: relative; }
  .navbar-toggler-skew span {
    left: 9px; }
  .navbar-toggler-skew:before {
    content: '';
    position: absolute;
    background-color: var(--primary);
    height: 100%;
    width: calc(100% + 10px);
    top: 0;
    z-index: -1;
    left: -5px;
    transform: skewX(-12deg); }
  @media only screen and (max-width: 991px) {
    .navbar-toggler-skew:before {
      display: none; } }

.navicon {
  width: 42px;
  height: 42px;
  background: var(--primary);
  box-shadow: 0 5px 15px -10px var(--primary);
  position: relative;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
  border-radius: 0; }
  .navicon span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    border-radius: 1px;
    opacity: 1;
    background: #000;
    left: 8px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; }
    .navicon span:nth-child(1) {
      top: 11px;
      width: 26px; }
    .navicon span:nth-child(2) {
      top: 20px;
      width: 22px; }
    .navicon span:nth-child(3) {
      top: 30px;
      width: 17px; }
  .navicon.open span:nth-child(1) {
    top: 25px;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(135deg);
    -o-transform: rotate(135deg);
    transform: rotate(135deg); }
    @media only screen and (max-width: 1280px) {
      .navicon.open span:nth-child(1) {
        top: 20px;
        width: 25px; } }
  .navicon.open span:nth-child(2) {
    opacity: 0;
    left: -60px; }
  .navicon.open span:nth-child(3) {
    top: 25px;
    width: 26px;
    -webkit-transform: rotate(-135deg);
    -moz-transform: rotate(-135deg);
    -o-transform: rotate(-135deg);
    transform: rotate(-135deg); }
    @media only screen and (max-width: 1280px) {
      .navicon.open span:nth-child(3) {
        top: 20px;
        width: 25px; } }

.header-tb .navicon span {
  background: #fff; }

.header-nav {
  padding: 0; }
  @media only screen and (max-width: 991px) {
    .header-nav {
      overflow-y: scroll;
      position: fixed;
      width: 60px;
      left: -280px;
      height: 100vh !important;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      top: 0;
      background-color: #fff;
      margin: 0;
      z-index: 99; } }
  @media only screen and (max-width: 991px) {
    .header-nav.show {
      left: -1px;
      -webkit-transition: all 0.8s;
      -ms-transition: all 0.8s;
      transition: all 0.8s;
      margin: 0;
      width: 280px; } }
  .header-nav .logo-header {
    display: none; }
    @media only screen and (max-width: 991px) {
      .header-nav .logo-header {
        padding: 30px 20px;
        float: none;
        height: auto;
        width: 240px; } }
  .header-nav .nav {
    float: right;
    font-size: 0;
    padding: 0;
    position: unset; }
    .header-nav .nav > li {
      margin: 0px;
      font-weight: 400;
      position: relative; }
      .header-nav .nav > li .badge {
        transform: translateY(-2px);
        padding: 4px 7px 3px;
        font-weight: 400;
        margin-left: 5px; }
      .header-nav .nav > li.has-mega-menu {
        position: inherit; }
        .header-nav .nav > li.has-mega-menu > a:after {
          content: "\f078";
          font-size: 10px;
          margin-left: 7px;
          margin-top: 0;
          vertical-align: middle;
          font-weight: 900;
          font-family: "Font Awesome 5 Free"; }
          @media only screen and (max-width: 991px) {
            .header-nav .nav > li.has-mega-menu > a:after {
              content: "\f054";
              background-color: var(--primary);
              color: #fff;
              height: 30px;
              line-height: 30px;
              right: 0;
              text-align: center;
              width: 30px;
              z-index: 3;
              float: right;
              font-size: 12px;
              margin: 0; } }
      @media only screen and (max-width: 991px) {
        .header-nav .nav > li {
          border-bottom: 1px solid #eee;
          width: 100%; } }
      .header-nav .nav > li.has-child > a:after, .header-nav .nav > li.menu-item-has-children > a:after, .header-nav .nav > li.sub-menu-down > a:after {
        content: "\f078";
        font-size: 10px;
        margin-left: 7px;
        margin-top: 0;
        vertical-align: middle;
        font-weight: 900;
        font-family: "Font Awesome 5 Free"; }
        @media only screen and (max-width: 991px) {
          .header-nav .nav > li.has-child > a:after, .header-nav .nav > li.menu-item-has-children > a:after, .header-nav .nav > li.sub-menu-down > a:after {
            content: "\f054";
            background-color: var(--primary);
            color: #fff;
            height: 30px;
            line-height: 30px;
            right: 0;
            text-align: center;
            width: 30px;
            z-index: 3;
            float: right;
            font-size: 12px;
            margin: 0; } }
        @media only screen and (max-width: 991px) {
          .header-nav .nav > li.has-child > a:after:before, .header-nav .nav > li.menu-item-has-children > a:after:before, .header-nav .nav > li.sub-menu-down > a:after:before {
            content: "\f078"; } }
      @media only screen and (max-width: 991px) {
        .header-nav .nav > li.has-child.open > a:after, .header-nav .nav > li.menu-item-has-children.open > a:after, .header-nav .nav > li.sub-menu-down.open > a:after {
          content: "\f078"; } }
      .header-nav .nav > li > a {
        color: #071c35;
        font-size: 16px;
        padding: 40px 12px;
        font-family: var(--font-family-base);
        cursor: pointer;
        font-weight: 500;
        display: inline-block;
        position: relative;
        border-width: 0 0 0 1px;
        text-transform: capitalize;
        line-height: 1.1; }
        @media only screen and (max-width: 1200px) {
          .header-nav .nav > li > a {
            font-size: 15px; } }
        @media only screen and (max-width: 991px) {
          .header-nav .nav > li > a {
            padding: 8px 0;
            display: block;
            line-height: 30px;
            font-size: 14px; } }
        .header-nav .nav > li > a span {
          display: inline-block; }
      .header-nav .nav > li .mega-menu li > ul > li > a:hover {
        color: var(--primary); }
      .header-nav .nav > li .sub-menu li > a:hover {
        color: var(--primary); }
      .header-nav .nav > li .mega-menu,
      .header-nav .nav > li .sub-menu {
        background-color: #fff;
        display: block;
        left: 0;
        list-style: none;
        opacity: 0;
        padding: 10px 0;
        position: absolute;
        visibility: hidden;
        width: 220px;
        z-index: 10;
        margin-top: 20px;
        box-shadow: 0px 1px 40px 0px rgba(0, 0, 0, 0.1);
        text-align: left;
        -webkit-transition: all 0.8s;
        -ms-transition: all 0.8s;
        transition: all 0.8s; }
        @media only screen and (max-width: 991px) {
          .header-nav .nav > li .mega-menu,
          .header-nav .nav > li .sub-menu {
            display: none;
            position: static;
            visibility: visible;
            width: auto;
            background: transparent;
            box-shadow: none;
            margin: 0;
            border-top: 1px solid #eee;
            padding: 0 0;
            -webkit-transition: none;
            -ms-transition: none;
            transition: none;
            opacity: 1; }
            .header-nav .nav > li .mega-menu > li > a i,
            .header-nav .nav > li .sub-menu > li > a i {
              display: none; }
            .header-nav .nav > li .mega-menu .has-child > a:before,
            .header-nav .nav > li .mega-menu .menu-item-has-children > a:before,
            .header-nav .nav > li .mega-menu .sub-menu-down > a:before,
            .header-nav .nav > li .mega-menu > li > a i,
            .header-nav .nav > li .sub-menu .has-child > a:before,
            .header-nav .nav > li .sub-menu .menu-item-has-children > a:before,
            .header-nav .nav > li .sub-menu .sub-menu-down > a:before,
            .header-nav .nav > li .sub-menu > li > a i {
              color: #fff !important;
              font-size: 14px;
              content: "\f054";
              height: 30px;
              line-height: 30px;
              right: 0;
              text-align: center;
              width: 30px;
              z-index: 3;
              margin: 0 !important;
              background: var(--secondary);
              border-radius: 0;
              font-family: "Font Awesome 5 Free";
              font-weight: 900;
              float: right; }
            .header-nav .nav > li .mega-menu .has-child.open > a:before,
            .header-nav .nav > li .mega-menu .sub-menu-down.open > a:before,
            .header-nav .nav > li .mega-menu .menu-item-has-children.open > a:before,
            .header-nav .nav > li .sub-menu .has-child.open > a:before,
            .header-nav .nav > li .sub-menu .sub-menu-down.open > a:before,
            .header-nav .nav > li .sub-menu .menu-item-has-children.open > a:before {
              content: "\f078";
              background: var(--secondary); } }
        .header-nav .nav > li .mega-menu li,
        .header-nav .nav > li .sub-menu li {
          position: relative; }
          .header-nav .nav > li .mega-menu li a,
          .header-nav .nav > li .sub-menu li a {
            color: #212529;
            display: block;
            font-size: 15px;
            padding: 10px 20px;
            line-height: 1.3;
            text-transform: capitalize;
            position: relative;
            transition: all 0.15s linear;
            -webkit-transition: all 0.15s linear;
            -moz-transition: all 0.15s linear;
            -o-transition: all 0.15s linear;
            font-weight: 500; }
            @media only screen and (max-width: 991px) {
              .header-nav .nav > li .mega-menu li a,
              .header-nav .nav > li .sub-menu li a {
                padding: 4px 0 4px 15px;
                display: block;
                line-height: 30px;
                position: relative;
                border: 1px solid #eee;
                border-width: 0 0 1px 0px;
                font-size: 14px; }
                .header-nav .nav > li .mega-menu li a:after,
                .header-nav .nav > li .sub-menu li a:after {
                  content: "";
                  font-family: "Font Awesome 5 Free";
                  width: auto;
                  height: auto;
                  background: 0 0 !important;
                  top: 3px;
                  color: #262F5A;
                  font-size: 12px;
                  position: absolute;
                  left: 0;
                  font-weight: 700; } }
          .header-nav .nav > li .mega-menu li:hover > a,
          .header-nav .nav > li .sub-menu li:hover > a {
            color: var(--primary); }
            @media only screen and (max-width: 1280px) {
              .header-nav .nav > li .mega-menu li:hover > a,
              .header-nav .nav > li .sub-menu li:hover > a {
                padding: 4px 0 4px 15px;
                background: transparent; } }
            .header-nav .nav > li .mega-menu li:hover > a:after,
            .header-nav .nav > li .sub-menu li:hover > a:after {
              width: 10px; }
          .header-nav .nav > li .mega-menu li:hover > .mega-menu > li a,
          .header-nav .nav > li .sub-menu li:hover > .mega-menu > li a {
            color: var(--title); }
        .header-nav .nav > li .mega-menu li > .sub-menu,
        .header-nav .nav > li .sub-menu li > .sub-menu {
          left: 220px;
          -webkit-transition: all 0.5s;
          -ms-transition: all 0.5s;
          transition: all 0.5s; }
          @media only screen and (max-width: 991px) {
            .header-nav .nav > li .mega-menu li > .sub-menu,
            .header-nav .nav > li .sub-menu li > .sub-menu {
              display: none; } }
        @media only screen and (max-width: 991px) {
          .header-nav .nav > li .mega-menu .mega-menu,
          .header-nav .nav > li .mega-menu .sub-menu,
          .header-nav .nav > li .sub-menu .mega-menu,
          .header-nav .nav > li .sub-menu .sub-menu {
            border-top: 0;
            padding-left: 20px; }
            .header-nav .nav > li .mega-menu .mega-menu li a:after,
            .header-nav .nav > li .mega-menu .sub-menu li a:after,
            .header-nav .nav > li .sub-menu .mega-menu li a:after,
            .header-nav .nav > li .sub-menu .sub-menu li a:after {
              width: 5px;
              content: none;
              height: 5px;
              background: #262F5A !important;
              border-radius: 4px;
              top: 13px; } }
      .header-nav .nav > li .sub-menu li > a > i {
        color: inherit;
        display: block;
        float: right;
        font-size: 12px;
        opacity: 1;
        margin-top: 7px;
        border-radius: 0; }
        @media only screen and (max-width: 1280px) {
          .header-nav .nav > li .sub-menu li > a > i {
            display: none; } }
      @media only screen and (min-width: 991px) {
        .header-nav .nav > li .sub-menu li.sub-menu-down > a:before {
          color: var(--secondary) !important;
          font-size: 12px;
          content: "\f054";
          line-height: 30px;
          text-align: center;
          z-index: 3;
          font-family: "Font Awesome 5 Free";
          font-weight: 900;
          float: right; } }
      .header-nav .nav > li .sub-menu.open > a > i:before {
        content: "\f078"; }
      .header-nav .nav > li .sub-menu > li.open > a i:before {
        content: "\f107"; }
      .header-nav .nav > li .mega-menu {
        display: flex;
        right: 0px;
        width: 100%;
        z-index: 9;
        padding: 0;
        max-width: 1100px;
        margin-left: auto;
        margin-right: auto;
        position: absolute;
        right: 0px; }
        @media only screen and (max-width: 1280px) {
          .header-nav .nav > li .mega-menu {
            max-width: 990px; } }
        .header-nav .nav > li .mega-menu > li {
          display: block;
          padding: 30px 0 25px;
          position: relative;
          vertical-align: top;
          width: 25%; }
          @media only screen and (max-width: 991px) {
            .header-nav .nav > li .mega-menu > li {
              width: 100%;
              padding: 0; }
              .header-nav .nav > li .mega-menu > li > a {
                display: none; } }
          @media only screen and (min-width: 1024px) {
            .header-nav .nav > li .mega-menu > li > a {
              color: #222222;
              display: block;
              padding: 0 20px;
              font-size: 16px;
              font-weight: 600;
              border-bottom: 1px solid rgba(0, 0, 0, 0.1);
              padding-bottom: 15px; }
              .header-nav .nav > li .mega-menu > li > a > i {
                font-size: 14px;
                margin-right: 5px;
                text-align: center;
                width: 15px; } }
          .header-nav .nav > li .mega-menu > li:after {
            content: "";
            background-color: rgba(0, 0, 0, 0.1);
            position: absolute;
            right: 0px;
            top: 0px;
            display: block;
            width: 1px;
            height: 100%; }
            @media only screen and (max-width: 991px) {
              .header-nav .nav > li .mega-menu > li:after {
                content: none; } }
          .header-nav .nav > li .mega-menu > li:last-child:after {
            display: none; }
          .header-nav .nav > li .mega-menu > li:hover > a {
            background-color: transparent; }
          .header-nav .nav > li .mega-menu > li li i {
            font-size: 14px;
            margin-right: 5px;
            text-align: center;
            width: 15px; }
        @media only screen and (max-width: 991px) {
          .header-nav .nav > li .mega-menu {
            display: none;
            padding: 10px 0;
            position: static; } }
      .header-nav .nav > li.active > a {
        color: var(--primary); }
      .header-nav .nav > li:hover > .mega-menu,
      .header-nav .nav > li:hover > .sub-menu {
        opacity: 1;
        visibility: visible;
        margin-top: 0;
        -webkit-transition: all 0.8s;
        -ms-transition: all 0.8s;
        transition: all 0.8s; }
        @media only screen and (max-width: 991px) {
          .header-nav .nav > li:hover > .mega-menu,
          .header-nav .nav > li:hover > .sub-menu {
            -webkit-transition: none;
            -ms-transition: none;
            transition: none; } }
        .header-nav .nav > li:hover > .mega-menu li:hover > .sub-menu,
        .header-nav .nav > li:hover > .sub-menu li:hover > .sub-menu {
          opacity: 1;
          visibility: visible;
          margin-top: 0;
          top: -1px; }
      .header-nav .nav > li.open .mega-menu,
      .header-nav .nav > li.open .sub-menu {
        display: block;
        opacity: 1;
        -webkit-transition: none;
        -ms-transition: none;
        transition: none; }
      .header-nav .nav > li.open .open .mega-menu,
      .header-nav .nav > li.open .open .sub-menu {
        display: block;
        opacity: 1;
        -webkit-transition: none;
        -ms-transition: none;
        transition: none; }
    @media only screen and (max-width: 1480px) {
      .header-nav .nav > li:nth-last-child(3) .sub-menu .sub-menu,
      .header-nav .nav > li:nth-last-child(2) .sub-menu .sub-menu,
      .header-nav .nav > li:last-child .sub-menu .sub-menu {
        left: -220px; } }
    @media only screen and (max-width: 1199px) {
      .header-nav .nav {
        padding: 0; }
        .header-nav .nav > li:last-child .sub-menu {
          left: auto;
          right: 0; } }
    @media only screen and (max-width: 991px) {
      .header-nav .nav {
        float: none;
        padding: 0 20px; } }
  .header-nav .dz-social-icon {
    display: none;
    text-align: center; }
    .header-nav .dz-social-icon ul {
      margin: 0 -2px; }
    .header-nav .dz-social-icon li {
      display: inline-block;
      padding: 0 2px; }
    .header-nav .dz-social-icon a {
      display: block;
      width: 35px;
      height: 35px;
      padding: 0;
      color: var(--primary);
      border: 1px solid var(--primary);
      line-height: 33px;
      text-align: center;
      border-radius: 4px;
      font-size: 15px; }
      .header-nav .dz-social-icon a:hover {
        background-color: var(--primary);
        color: white;
        box-shadow: 0px 5px 15px var(--rgba-primary-4); }
    @media only screen and (max-width: 991px) {
      .header-nav .dz-social-icon {
        display: block;
        padding: 30px 10px 20px; } }

.header-transparent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999; }
  .header-transparent .top-bar,
  .header-transparent .main-bar {
    background: transparent; }
  .header-transparent .container-fluid, .header-transparent .container-sm, .header-transparent .container-md, .header-transparent .container-lg, .header-transparent .container-xl {
    padding-left: 80px;
    padding-right: 80px; }
    @media only screen and (max-width: 1280px) {
      .header-transparent .container-fluid, .header-transparent .container-sm, .header-transparent .container-md, .header-transparent .container-lg, .header-transparent .container-xl {
        padding-left: 15px;
        padding-right: 15px; } }
  .header-transparent .main-bar .container:not(.box-header) > .logo-header.logo-dark,
  .header-transparent .main-bar .container-fluid:not(.box-header) > .logo-header.logo-dark,
  .header-transparent .main-bar .container-sm:not(.box-header) > .logo-header.logo-dark,
  .header-transparent .main-bar .container-md:not(.box-header) > .logo-header.logo-dark,
  .header-transparent .main-bar .container-lg:not(.box-header) > .logo-header.logo-dark,
  .header-transparent .main-bar .container-xl:not(.box-header) > .logo-header.logo-dark {
    display: none; }
  .header-transparent .is-fixed .main-bar .container > .logo-header.logo-light,
  .header-transparent .is-fixed .main-bar .container-fluid > .logo-header.logo-light,
  .header-transparent .is-fixed .main-bar .container-sm > .logo-header.logo-light,
  .header-transparent .is-fixed .main-bar .container-md > .logo-header.logo-light,
  .header-transparent .is-fixed .main-bar .container-lg > .logo-header.logo-light,
  .header-transparent .is-fixed .main-bar .container-xl > .logo-header.logo-light {
    display: none; }
  .header-transparent .is-fixed .main-bar .container > .logo-header.logo-dark,
  .header-transparent .is-fixed .main-bar .container-fluid > .logo-header.logo-dark,
  .header-transparent .is-fixed .main-bar .container-sm > .logo-header.logo-dark,
  .header-transparent .is-fixed .main-bar .container-md > .logo-header.logo-dark,
  .header-transparent .is-fixed .main-bar .container-lg > .logo-header.logo-dark,
  .header-transparent .is-fixed .main-bar .container-xl > .logo-header.logo-dark {
    display: table; }

.is-fixed .main-bar {
  position: fixed;
  top: 0;
  left: 0;
  box-shadow: 0 0 50px 0 rgba(0, 0, 0, 0.1);
  background: #fff;
  transition: all 0.5s; }

@media only screen and (max-width: 991px) {
  .mo-left .header-nav {
    overflow-y: scroll;
    position: fixed;
    width: 60px;
    left: -280px;
    height: 100vh !important;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    top: 0;
    background-color: #fff;
    margin: 0;
    z-index: 99; }
    .mo-left .header-nav.nav-dark {
      background-color: #202020; }
    .mo-left .header-nav.show {
      left: -1px;
      transition: all 0.8s;
      -webkit-transition: all 0.8s;
      -moz-transition: all 0.8s;
      -o-transition: all 0.8s;
      margin: 0;
      width: 280px; }
    .mo-left .header-nav .logo-header {
      display: block;
      float: none;
      height: auto !important;
      max-width: 100%;
      padding: 25px 20px;
      width: 100% !important; }
      .mo-left .header-nav .logo-header img {
        max-width: unset;
        width: 150px;
        vertical-align: middle; }
    .mo-left .header-nav li.open a {
      position: relative; }
  .mo-left .navbar-toggler {
    z-index: 99; }
    .mo-left .navbar-toggler:after {
      background-color: rgba(0, 0, 0, 0.6);
      content: "";
      left: 0;
      position: fixed;
      right: -20px;
      top: -63px;
      transform: scale(100);
      -o-transform: scale(100);
      -moz-transform: scale(100);
      -webkit-transform: scale(100);
      width: 100%;
      z-index: -1;
      transition: all 0.5s;
      transform-origin: top right;
      margin: 0 0px 0px 20px;
      -webkit-box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6);
      box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.6); }
    .mo-left .navbar-toggler span {
      background: #fff; }
  .mo-left .navbar-toggler.collapsed:after {
    content: none; } }

.text-black .nav > li > a {
  color: #222222; }

.text-black .navbar-toggler span {
  background: #222222; }

.main-bar {
  -webkit-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -khtml-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -moz-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -ms-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  -o-transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s;
  transition: all 0.3s cubic-bezier(0.39, 0.575, 0.565, 1) 0s; }

.is-fixed .main-bar {
  -webkit-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -khtml-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -moz-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -ms-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  -o-animation: 0.95s ease 0s normal forwards 1 running headerSlideDown;
  animation: 0.95s ease 0s normal forwards 1 running headerSlideDown; }

@-moz-keyframes headerSlideDown {
  0% {
    margin-top: -150px; }
  100% {
    margin-top: 0; } }

@-ms-keyframes headerSlideDown {
  0% {
    margin-top: -150px; }
  100% {
    margin-top: 0; } }

@-webkit-keyframes headerSlideDown {
  0% {
    margin-top: -150px; }
  100% {
    margin-top: 0; } }

@keyframes headerSlideDown {
  0% {
    margin-top: -150px; }
  100% {
    margin-top: 0; } }

.site-header.style-1 .main-bar {
  box-shadow: none;
  background-color: transparent; }
  .site-header.style-1 .main-bar .box-header {
    position: relative; }
    @media only screen and (min-width: 1180px) and (max-width: 1280px) {
      .site-header.style-1 .main-bar .box-header {
        padding: 0 20px; } }
    .site-header.style-1 .main-bar .box-header:after {
      content: "";
      box-shadow: 0px 14px 30px 0px rgba(225, 50, 0, 0.1);
      background-color: #fff;
      position: absolute;
      left: 50%;
      top: 0;
      height: calc(100% - 1px);
      z-index: -1;
      width: calc(100% + 25px);
      transform: translateX(-50%) skewX(-12deg); }
      @media only screen and (max-width: 1280px) {
        .site-header.style-1 .main-bar .box-header:after {
          width: calc(100% + 20px); } }
      @media only screen and (min-width: 1200px) and (max-width: 1240px) {
        .site-header.style-1 .main-bar .box-header:after {
          width: calc(100% + -20px); } }
      @media only screen and (max-width: 991px) {
        .site-header.style-1 .main-bar .box-header:after {
          transform: translateX(-50%) skewX(0); } }

.site-header.style-1 .container {
  display: grid; }

.site-header.style-1 .extra-nav {
  height: 80px;
  padding-left: 60px; }
  .site-header.style-1 .extra-nav #quik-search-btn {
    font-size: 16px;
    transform: skewX(-12deg);
    border-radius: 0;
    margin-right: 5px; }
    .site-header.style-1 .extra-nav #quik-search-btn i {
      transform: skewX(12deg); }
    @media only screen and (max-width: 991px) {
      .site-header.style-1 .extra-nav #quik-search-btn {
        transform: skew(0);
        margin-right: 0; }
        .site-header.style-1 .extra-nav #quik-search-btn i {
          transform: skew(0); } }
  @media only screen and (max-width: 1280px) {
    .site-header.style-1 .extra-nav .appointment-btn {
      display: none; } }
  @media only screen and (max-width: 1280px) {
    .site-header.style-1 .extra-nav {
      padding-left: 30px; } }
  @media only screen and (max-width: 991px) {
    .site-header.style-1 .extra-nav {
      height: 70px; } }

.site-header.style-1 .logo-header {
  height: 80px; }
  .site-header.style-1 .logo-header img {
    max-width: 220px; }
  @media only screen and (max-width: 1280px) {
    .site-header.style-1 .logo-header img {
      max-width: 180px; } }
  @media only screen and (max-width: 991px) {
    .site-header.style-1 .logo-header {
      height: 70px; } }

@media only screen and (min-width: 992px) {
  .site-header.style-1 .header-nav .nav > li > a {
    padding: 31px 12px; }
    .site-header.style-1 .header-nav .nav > li > a:before {
      content: "";
      background-color: var(--primary);
      position: absolute;
      left: 0;
      bottom: 0;
      transform: translateY(4px);
      height: 4px;
      z-index: 1;
      width: 100%;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      opacity: 0; } }

@media only screen and (max-width: 991px) {
  .site-header.style-1 .header-nav .nav > li > a {
    padding: 8px 0px; } }

@media only screen and (min-width: 992px) {
  .site-header.style-1 .header-nav .nav > li.active > a, .site-header.style-1 .header-nav .nav > li:hover > a {
    color: var(--primary); }
    .site-header.style-1 .header-nav .nav > li.active > a:before, .site-header.style-1 .header-nav .nav > li:hover > a:before {
      transform: translateY(0);
      opacity: 1; } }

.site-header.style-1 .top-bar {
  background-color: transparent;
  border-bottom: 0; }

.site-header.style-1 .is-fixed .main-bar {
  box-shadow: 0px 14px 30px 0px rgba(225, 50, 0, 0.1);
  background-color: white; }
  .site-header.style-1 .is-fixed .main-bar .box-header:after {
    box-shadow: none; }

@media only screen and (max-width: 991px) {
  .site-header.style-1 .navbar-toggler {
    margin: 14px 0 14px 15px; }
  .site-header.style-1 .main-bar {
    margin-top: 10px; } }

.site-header.style-2 .main-bar {
  box-shadow: none;
  background-color: transparent; }

.site-header.style-2 .extra-nav {
  padding-left: 60px; }
  .site-header.style-2 .extra-nav #quik-search-btn {
    font-size: 16px;
    border-radius: 0;
    margin-right: 5px;
    transform: skewX(-12deg); }
    .site-header.style-2 .extra-nav #quik-search-btn i {
      transform: skewX(12deg); }
  @media only screen and (max-width: 1200px) {
    .site-header.style-2 .extra-nav {
      padding-left: 30px;
      height: 85px; }
      .site-header.style-2 .extra-nav #quik-search-btn {
        font-size: 16px; } }
  @media only screen and (max-width: 991px) {
    .site-header.style-2 .extra-nav #quik-search-btn {
      width: 42px;
      height: 42px;
      line-height: 42px;
      transform: unset; }
      .site-header.style-2 .extra-nav #quik-search-btn i {
        transform: unset; } }
  @media only screen and (max-width: 767px) {
    .site-header.style-2 .extra-nav {
      height: 75px; } }
  @media only screen and (max-width: 575px) {
    .site-header.style-2 .extra-nav {
      height: 50px; } }

@media only screen and (max-width: 1191px) {
  .site-header.style-2 .appointment-btn {
    display: none; } }

.site-header.style-2 .logo-header img {
  max-width: 220px; }

@media only screen and (max-width: 1191px) {
  .site-header.style-2 .logo-header {
    height: 85px; }
    .site-header.style-2 .logo-header img {
      max-width: 180px; } }

@media only screen and (max-width: 767px) {
  .site-header.style-2 .logo-header {
    height: 75px; } }

.site-header.style-2 .navicon span {
  background: #000; }

@media only screen and (max-width: 991px) {
  .site-header.style-2 .navbar-toggler.open span {
    background: #fff; } }

@media only screen and (max-width: 991px) {
  .site-header.style-2 .navbar-toggler {
    margin: 21px 0 18px 5px; } }

@media only screen and (max-width: 767px) {
  .site-header.style-2 .navbar-toggler {
    margin: 17px 0 16px 5px; } }

@media only screen and (min-width: 992px) {
  .site-header.style-2 .header-nav .nav > li > a {
    color: #fff; }
    .site-header.style-2 .header-nav .nav > li > a:before {
      content: "";
      background-color: var(--primary);
      position: absolute;
      left: 0;
      bottom: 0;
      transform: translateY(4px);
      height: 4px;
      z-index: 1;
      width: 100%;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      opacity: 0; } }

@media only screen and (min-width: 992px) {
  .site-header.style-2 .header-nav .nav > li.active > a, .site-header.style-2 .header-nav .nav > li:hover > a {
    color: var(--primary); }
    .site-header.style-2 .header-nav .nav > li.active > a:before, .site-header.style-2 .header-nav .nav > li:hover > a:before {
      transform: translateY(0);
      opacity: 1; } }

.site-header.style-2 .top-bar {
  background-color: transparent;
  border-bottom: 0; }

.site-header.style-2 .is-fixed .main-bar {
  box-shadow: 0px 14px 30px 0px rgba(0, 0, 0, 0.05);
  background-color: white; }
  .site-header.style-2 .is-fixed .main-bar .box-header:after {
    box-shadow: none; }
  .site-header.style-2 .is-fixed .main-bar .logo-header.logo-white {
    display: none; }

@media only screen and (min-width: 991px) {
  .site-header.style-2 .is-fixed .header-nav .nav > li > a {
    color: #000; } }

.site-header.header-sidenav-1.header-transparent .main-bar {
  background: transparent; }

.site-header.header-sidenav-1.header-transparent + .page-content .dz-bnr-inr .dz-bnr-inr-entry {
  padding-top: 100px; }

.site-header.header-sidenav-1.header-transparent .nav > li > a {
  color: var(--secondary); }

.site-header.header-sidenav-1 .main-bar {
  background: var(--secondary); }

.site-header.header-sidenav-1 .is-fixed .header-content-bx {
  height: auto; }

.site-header.header-sidenav-1 .is-fixed .main-bar {
  background: var(--secondary); }
  .site-header.header-sidenav-1 .is-fixed .main-bar .logo-header.logo-white {
    display: table; }

.site-header.header-sidenav-1 .header-content-bx > .logo-header.logo-dark {
  display: none; }

.site-header.header-sidenav-1 .main-bar.show .header-content-bx > .logo-header.logo-dark {
  display: table; }

.site-header.header-sidenav-1 .main-bar.show .header-content-bx > .logo-header.logo-white {
  display: none; }

.site-header.header-sidenav-1 .header-nav .nav > li .sub-menu li > .sub-menu {
  left: auto;
  margin: 0;
  padding: 0;
  top: auto; }

@media only screen and (min-width: 991px) {
  .site-header.header-sidenav-1 .header-nav .nav > li .sub-menu li > a > i {
    font-size: 16px; } }

.site-header.header-sidenav-1 .header-nav .nav .sub-menu {
  left: auto;
  top: auto; }

@media only screen and (min-width: 991px) {
  .site-header.header-sidenav-1 .header-nav .nav .has-mega-menu > a:after,
  .site-header.header-sidenav-1 .header-nav .nav .sub-menu-down > a:after {
    content: "\f078";
    vertical-align: middle;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    font-size: 16px;
    position: absolute;
    right: 20px;
    margin-left: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.5s; }
  .site-header.header-sidenav-1 .header-nav .nav .has-mega-menu > a.dz-open:after,
  .site-header.header-sidenav-1 .header-nav .nav .sub-menu-down > a.dz-open:after {
    transform: translateY(-50%) rotate(-90deg); } }

.site-header.header-sidenav-1 .header-nav .nav .has-mega-menu .sub-menu-down > a:before,
.site-header.header-sidenav-1 .header-nav .nav .sub-menu-down .sub-menu-down > a:before {
  content: none !important; }

@media only screen and (max-width: 767px) {
  .site-header.header-sidenav-1 .header-nav .nav .sub-menu-down .sub-menu-down > a:before {
    content: "\f078";
    vertical-align: middle;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    background-color: var(--rgba-primary-1);
    color: var(--primary);
    height: 30px;
    line-height: 30px;
    right: 0px;
    text-align: center;
    width: 30px;
    z-index: 3;
    float: right;
    font-size: 14px;
    margin: 0px; }
  .site-header.header-sidenav-1 .header-nav .nav .sub-menu-down .sub-menu-down > a.dz-open:before {
    transform: rotate(-90deg); } }

.site-header.header-sidenav-1 .nav-elements span {
  font-size: 18px;
  margin-right: 10px; }

.site-header.header-sidenav-1 .header-content-bx {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  @media only screen and (max-width: 1480px) {
    .site-header.header-sidenav-1 .header-content-bx {
      height: 100px; } }

.site-header.header-sidenav-1 .logo-header {
  width: 100%;
  height: 100%; }

.site-header.header-sidenav-1 .container-fluid, .site-header.header-sidenav-1 .container-sm, .site-header.header-sidenav-1 .container-md, .site-header.header-sidenav-1 .container-lg, .site-header.header-sidenav-1 .container-xl {
  padding-left: 75px;
  padding-right: 75px; }
  @media only screen and (max-width: 1480px) {
    .site-header.header-sidenav-1 .container-fluid, .site-header.header-sidenav-1 .container-sm, .site-header.header-sidenav-1 .container-md, .site-header.header-sidenav-1 .container-lg, .site-header.header-sidenav-1 .container-xl {
      padding-left: 40px;
      padding-right: 40px; } }
  @media only screen and (max-width: 575px) {
    .site-header.header-sidenav-1 .container-fluid, .site-header.header-sidenav-1 .container-sm, .site-header.header-sidenav-1 .container-md, .site-header.header-sidenav-1 .container-lg, .site-header.header-sidenav-1 .container-xl {
      padding-left: 15px;
      padding-right: 15px; } }

.site-header.header-sidenav-1 .extra-nav {
  padding-left: 80px; }
  @media only screen and (max-width: 1200px) {
    .site-header.header-sidenav-1 .extra-nav {
      padding-left: 15px; } }
  @media only screen and (max-width: 575px) {
    .site-header.header-sidenav-1 .extra-nav {
      display: block; } }

.site-header.header-sidenav-1 .menu-btn {
  height: 60px;
  width: 60px;
  background: #fff;
  display: inline-block;
  position: relative;
  vertical-align: middle; }
  .site-header.header-sidenav-1 .menu-btn span {
    background: #1A1F44;
    left: 50%;
    display: block;
    position: absolute;
    height: 1px;
    width: 30px;
    -webkit-transform: rotate(0deg) translateX(-50%);
    -moz-transform: rotate(0deg) translateX(-50%);
    -o-transform: rotate(0deg) translateX(-50%);
    transform: rotate(0deg) translateX(-50%);
    -webkit-transition: .25s ease-in-out;
    -moz-transition: .25s ease-in-out;
    -o-transition: .25s ease-in-out;
    transition: .25s ease-in-out; }
    .site-header.header-sidenav-1 .menu-btn span:nth-child(1) {
      top: 20px; }
    .site-header.header-sidenav-1 .menu-btn span:nth-child(2) {
      top: 30px; }
    .site-header.header-sidenav-1 .menu-btn span:nth-child(3) {
      top: 41px; }
  .site-header.header-sidenav-1 .menu-btn.open {
    background: var(--primary); }
    .site-header.header-sidenav-1 .menu-btn.open span {
      background: #fff; }
      .site-header.header-sidenav-1 .menu-btn.open span:nth-child(1) {
        top: 30px;
        transform: rotate(45deg);
        left: 15px; }
      .site-header.header-sidenav-1 .menu-btn.open span:nth-child(2) {
        left: 15px;
        opacity: 0; }
      .site-header.header-sidenav-1 .menu-btn.open span:nth-child(3) {
        top: 31px;
        transform: rotate(-45deg);
        left: 15px; }
  @media only screen and (max-width: 1280px) {
    .site-header.header-sidenav-1 .menu-btn {
      height: 45px;
      width: 45px; }
      .site-header.header-sidenav-1 .menu-btn span {
        right: 10px; }
        .site-header.header-sidenav-1 .menu-btn span:nth-child(1) {
          top: 13px; }
        .site-header.header-sidenav-1 .menu-btn span:nth-child(2) {
          top: 23px; }
        .site-header.header-sidenav-1 .menu-btn span:nth-child(3) {
          top: 33px; }
      .site-header.header-sidenav-1 .menu-btn.open span:nth-child(1) {
        top: 22px;
        left: 7px; }
      .site-header.header-sidenav-1 .menu-btn.open span:nth-child(3) {
        top: 22px;
        left: 7px; } }

.screen-lock {
  overflow: hidden; }

.full-sidenav {
  position: fixed;
  height: 100vh;
  width: 100%;
  left: 0;
  top: 0;
  padding-top: 150px;
  padding-bottom: 50px;
  display: flex !important;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  .full-sidenav.show {
    visibility: visible;
    opacity: 1;
    align-items: center; }
  .full-sidenav .container {
    height: 100%;
    overflow-y: auto; }
    .full-sidenav .container::-webkit-scrollbar-track {
      background: #e9e9e9;
      border-radius: 8px; }
    .full-sidenav .container::-webkit-scrollbar {
      width: 8px; }
    .full-sidenav .container::-webkit-scrollbar-thumb {
      background-color: #a8a8a8;
      border-radius: 8px; }
  .full-sidenav .row {
    width: 100%;
    height: 100%; }
  .full-sidenav.header-nav .nav > li .mega-menu, .full-sidenav.header-nav .nav > li .sub-menu {
    opacity: 1; }
  @media only screen and (min-width: 991px) {
    .full-sidenav .navbar-nav {
      display: block;
      float: unset; }
      .full-sidenav .navbar-nav li a {
        display: block;
        padding: 18px 10px;
        font-size: 22px; }
      .full-sidenav .navbar-nav > li .mega-menu > li:after {
        display: none; }
      .full-sidenav .navbar-nav > li .mega-menu > li > a {
        color: var(--secondary) !important;
        border-bottom: none;
        display: none; }
      .full-sidenav .navbar-nav > li .sub-menu,
      .full-sidenav .navbar-nav > li .mega-menu {
        position: relative;
        visibility: visible;
        width: 100%;
        margin: 0;
        opacity: 1;
        box-shadow: none;
        transition: none !important;
        display: block;
        padding: 6px 0; }
        .full-sidenav .navbar-nav > li .sub-menu > li,
        .full-sidenav .navbar-nav > li .mega-menu > li {
          width: 100% !important;
          padding: 0; }
        .full-sidenav .navbar-nav > li .sub-menu li a,
        .full-sidenav .navbar-nav > li .mega-menu li a {
          font-size: 20px;
          color: #212529; } }
      @media only screen and (min-width: 991px) and (min-width: 991px) {
        .full-sidenav .navbar-nav > li .sub-menu li a,
        .full-sidenav .navbar-nav > li .mega-menu li a {
          padding: 5px 0 5px 16px;
          line-height: 30px;
          position: relative; } }
  @media only screen and (min-width: 991px) {
        .full-sidenav .navbar-nav > li .sub-menu li:hover a,
        .full-sidenav .navbar-nav > li .mega-menu li:hover a {
          padding: 5px 0 5px 16px; }
    .full-sidenav .header-style-bx {
      display: block; }
      .full-sidenav .header-style-bx .header-style-tabs {
        width: 100%;
        padding: 10px 10px; }
        .full-sidenav .header-style-bx .header-style-tabs ul {
          display: flex; }
          .full-sidenav .header-style-bx .header-style-tabs ul li {
            width: 50%; }
            .full-sidenav .header-style-bx .header-style-tabs ul li a {
              text-align: center; }
    .full-sidenav .header-tabs-wraper .header-style-content .menu-list {
      display: block; }
      .full-sidenav .header-tabs-wraper .header-style-content .menu-list > li .title {
        font-size: 24px;
        padding: 10px 20px; }
      .full-sidenav .header-tabs-wraper .header-style-content .menu-list > li i {
        margin-right: 10px; } }
  @media only screen and (max-width: 991px) {
    .full-sidenav {
      width: 300px;
      left: -300px;
      padding-top: 0;
      padding-bottom: 30px;
      background: #fff;
      display: block !important;
      -webkit-transition: all 0.8s;
      -ms-transition: all 0.8s;
      transition: all 0.8s; }
      .full-sidenav.show {
        left: 0; }
      .full-sidenav .navbar-nav li a {
        padding: 8px 0;
        font-size: 16px; }
      .full-sidenav .row {
        margin: 0; }
      .full-sidenav .col-lg-6 {
        padding: 0; }
      .full-sidenav .container {
        height: auto;
        overflow-y: hidden; }
      .full-sidenav .nav {
        padding: 0; } }

.dz-bnr-inr {
  --dz-banner-height: 575px;
  min-height: var(--dz-banner-height);
  background-size: cover;
  background-position: center;
  background-color: #ffffff;
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden; }
  @media only screen and (max-width: 991px) {
    .dz-bnr-inr {
      --dz-banner-height:400px; } }
  @media only screen and (max-width: 767px) {
    .dz-bnr-inr {
      --dz-banner-height:350px; } }
  @media only screen and (max-width: 767px) {
    .dz-bnr-inr {
      --dz-banner-height:350px; } }
  .dz-bnr-inr .container {
    display: table;
    height: 100%;
    position: relative; }
  .dz-bnr-inr .banner-media {
    position: absolute;
    right: 0;
    bottom: 0;
    float: right; }
    .dz-bnr-inr .banner-media img {
      mix-blend-mode: luminosity; }
    @media only screen and (max-width: 1280px) {
      .dz-bnr-inr .banner-media {
        width: 380px; } }
    @media only screen and (max-width: 991px) {
      .dz-bnr-inr .banner-media {
        width: 320px; } }
    @media only screen and (max-width: 767px) {
      .dz-bnr-inr .banner-media {
        width: 250px; } }
    @media only screen and (max-width: 575px) {
      .dz-bnr-inr .banner-media {
        display: none; } }
  .dz-bnr-inr .dz-bnr-inr-entry {
    vertical-align: middle;
    display: table-cell;
    height: var(--dz-banner-height);
    text-align: left; }
    @media only screen and (max-width: 767px) {
      .dz-bnr-inr .dz-bnr-inr-entry .breadcrumb-row {
        display: inline-block; } }
  .dz-bnr-inr h1, .dz-bnr-inr .h1 {
    margin-bottom: 0px;
    color: #fff;
    text-transform: capitalize; }
  .dz-bnr-inr.dz-bnr-inr-lg {
    --dz-banner-height:100vh; }
  .dz-bnr-inr.dz-bnr-inr-md {
    --dz-banner-height:450px; }
    @media only screen and (max-width: 1280px) {
      .dz-bnr-inr.dz-bnr-inr-md {
        --dz-banner-height:400px; } }
    @media only screen and (max-width: 991px) {
      .dz-bnr-inr.dz-bnr-inr-md {
        --dz-banner-height:300px; } }
    @media only screen and (max-width: 767px) {
      .dz-bnr-inr.dz-bnr-inr-md {
        --dz-banner-height:250px; } }
  .dz-bnr-inr.dz-bnr-inr-sm {
    --dz-banner-height:250px; }
    @media only screen and (max-width: 767px) {
      .dz-bnr-inr.dz-bnr-inr-sm {
        --dz-banner-height:250px; } }
  .dz-bnr-inr.bnr-no-img:before {
    content: none; }

.breadcrumb-row ul {
  background: var(--primary);
  margin: 0;
  border-radius: 0;
  border: 0;
  margin-right: 12px;
  transform: skewX(-12deg);
  display: inline-block;
  padding: 10px 33px; }
  @media only screen and (max-width: 991px) {
    .breadcrumb-row ul {
      padding: 6px 25px; } }
  .breadcrumb-row ul:after {
    content: "";
    position: absolute;
    background-color: inherit;
    height: 100%;
    width: 7px;
    right: -12px;
    z-index: 1;
    top: 0; }
  .breadcrumb-row ul li {
    padding: 0;
    transform: skewX(12deg);
    display: inline-block;
    font-size: 16px;
    font-weight: 500;
    color: #fff; }
    .breadcrumb-row ul li.active {
      color: #fff; }
    .breadcrumb-row ul li a {
      color: #fff; }
  .breadcrumb-row ul .breadcrumb-item + .breadcrumb-item::before {
    content: "\f105";
    color: #fff;
    font-weight: 700;
    font-family: 'Font Awesome 6 Free';
    font-size: 14px;
    padding-right: 10px;
    top: 2px;
    position: relative; }
  @media only screen and (max-width: 767px) {
    .breadcrumb-row ul {
      padding: 5px 20px; }
      .breadcrumb-row ul li {
        font-size: 14px; } }

.banner-gradient {
  width: 100%;
  height: 100%;
  top: 0;
  z-index: -1;
  position: absolute;
  left: 0; }
  .banner-gradient:before, .banner-gradient:after {
    content: "";
    position: absolute;
    z-index: -999999999999999;
    top: -80%;
    right: -24%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(50% 50% at 50% 50%, rgba(255, 246, 151, 0.4) 0%, rgba(255, 246, 151, 0) 100%);
    border-radius: 100%; }
  .banner-gradient:after {
    background: radial-gradient(50% 50% at 50% 50%, rgba(201, 223, 255, 0.4) 0%, rgba(201, 223, 255, 0) 100%);
    right: auto;
    top: auto;
    left: -24%;
    bottom: -80%; }

.dz-bnr-inr.style-2 {
  background-position: bottom left; }
  .dz-bnr-inr.style-2 .title,
  .dz-bnr-inr.style-2 h1,
  .dz-bnr-inr.style-2 .h1 {
    color: var(--primary);
    font-size: 65px;
    line-height: 1.2;
    font-style: italic;
    margin-bottom: 20px; }
    @media only screen and (max-width: 1280px) {
      .dz-bnr-inr.style-2 .title,
      .dz-bnr-inr.style-2 h1,
      .dz-bnr-inr.style-2 .h1 {
        font-size: 70px; } }
    @media only screen and (max-width: 991px) {
      .dz-bnr-inr.style-2 .title,
      .dz-bnr-inr.style-2 h1,
      .dz-bnr-inr.style-2 .h1 {
        font-size: 55px; } }
    @media only screen and (max-width: 767px) {
      .dz-bnr-inr.style-2 .title,
      .dz-bnr-inr.style-2 h1,
      .dz-bnr-inr.style-2 .h1 {
        font-size: 40px; } }
  .dz-bnr-inr.style-2:after {
    content: "";
    position: absolute;
    background-image: url(../images/background/bg1.png);
    z-index: -2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9; }
  .dz-bnr-inr.style-2 .breadcrumb-row {
    z-index: 1; }
    @media only screen and (max-width: 767px) {
      .dz-bnr-inr.style-2 .breadcrumb-row {
        width: 100%; } }
    .dz-bnr-inr.style-2 .breadcrumb-row ul li {
      color: var(--theme-text-color); }
      .dz-bnr-inr.style-2 .breadcrumb-row ul li.active {
        color: var(--theme-text-color); }
      .dz-bnr-inr.style-2 .breadcrumb-row ul li a {
        color: var(--theme-text-color); }
    .dz-bnr-inr.style-2 .breadcrumb-row ul .breadcrumb-item + .breadcrumb-item::before {
      color: var(--theme-text-color); }

.style-1.header-transparent + .page-content .dz-bnr-inr {
  padding-top: 125px; }
  @media only screen and (max-width: 1280px) {
    .style-1.header-transparent + .page-content .dz-bnr-inr {
      padding-top: 120px; } }
  @media only screen and (max-width: 991px) {
    .style-1.header-transparent + .page-content .dz-bnr-inr {
      padding-top: 90px; } }

.style-2.header-transparent + .page-content .dz-bnr-inr.style-2 {
  padding-top: 100px;
  padding-bottom: 30px; }
  @media only screen and (max-width: 1280px) {
    .style-2.header-transparent + .page-content .dz-bnr-inr.style-2 {
      padding-top: 50px; } }
  @media only screen and (max-width: 767px) {
    .style-2.header-transparent + .page-content .dz-bnr-inr.style-2 {
      padding-top: 50px; } }

.page-title {
  padding: 30px 0; }
  .page-title.dashboard {
    background: transparent;
    margin-left: 75px;
    padding: 20px 0 0px; }
  .page-title .page-title-content p {
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0px; }
    .page-title .page-title-content p span {
      font-weight: 500;
      color: var(--primary); }

.breadcrumbs {
  display: flex;
  justify-content: flex-end; }
  @media only screen and (max-width: 575px) {
    .breadcrumbs {
      justify-content: flex-start; } }
  .breadcrumbs li a {
    color: #AEAED5;
    display: inline-block;
    margin-left: 15px;
    font-size: 14px; }
  .breadcrumbs li:first-child a {
    margin-left: 0px; }
  .breadcrumbs li.active a {
    color: var(--primary); }

.bottom {
  background: #1b2a4e; }
  @media only screen and (max-width: 575px) {
    .bottom {
      padding-bottom: 0; } }
  .bottom .bottom-logo p {
    line-height: 30px;
    font-weight: 400;
    color: #999999; }
  @media only screen and (max-width: 991px) {
    .bottom .bottom-widget {
      margin-bottom: 30px; } }
  .bottom .bottom-widget .widget-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase; }
  .bottom .bottom-widget ul li a {
    color: #999999;
    font-weight: 400;
    margin-bottom: 10px;
    display: inline-block; }

footer {
  position: relative; }
  footer .widget {
    margin-bottom: 50px; }
  footer strong {
    color: #fff; }
  footer .footer-logo {
    margin-bottom: 25px; }
    footer .footer-logo img {
      max-width: 100%; }
  footer.site-footer {
    background-color: var(--secondary); }
  footer .widget-logo ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap; }
    footer .widget-logo ul li {
      display: inline-block;
      flex: 50%;
      padding: 0 15px 15px 0px; }
  footer .widget_about p {
    margin-bottom: 30px; }
  @media only screen and (max-width: 1200px) {
    footer .widget_about {
      padding: 0; } }
  @media only screen and (max-width: 1191px) {
    footer .widget_about {
      max-width: 500px;
      margin-left: auto;
      margin-right: auto;
      text-align: center; } }
  footer .footer-title {
    margin: 0;
    margin-bottom: 30px;
    position: relative;
    font-weight: 600; }
    footer .footer-title a {
      color: inherit; }
    footer .footer-title .title {
      color: var(--title); }
    footer .footer-title .dz-separator {
      position: absolute;
      bottom: 0;
      left: 0; }
  footer .footer-top {
    padding-top: 100px;
    padding-bottom: 40px;
    position: relative;
    z-index: 2; }
    @media only screen and (max-width: 1280px) {
      footer .footer-top {
        padding-top: 80px;
        padding-bottom: 20px; } }
    @media only screen and (max-width: 767px) {
      footer .footer-top {
        padding-top: 60px;
        padding-bottom: 0; } }
  footer .footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(0, 0, 0, 0.1); }
    @media only screen and (max-width: 991px) {
      footer .footer-bottom {
        text-align: center !important; }
        footer .footer-bottom .text-left,
        footer .footer-bottom .text-right {
          text-align: center !important; }
        footer .footer-bottom .text-right {
          margin-top: 10px; } }
  footer .widget-link li {
    display: inline-block;
    text-transform: uppercase;
    margin-left: 20px; }
    @media only screen and (max-width: 767px) {
      footer .widget-link li {
        margin-left: 8px;
        margin-right: 7px; } }
  footer .widget-link a {
    color: #fff; }
  footer .widget_services ul li a {
    color: inherit;
    display: block;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  footer .wp-block-latest-posts li,
  footer .wp-block-categories-list li,
  footer .wp-block-archives-list li,
  footer .widget_categories ul li,
  footer .widget_archive ul li,
  footer .widget_meta ul li,
  footer .widget_pages ul li,
  footer .widget_recent_comments ul li,
  footer .widget_nav_menu li,
  footer .widget_recent_entries ul li,
  footer .widget_services ul li {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  footer .widget_rss ul li {
    --title: #fff;
    border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1); }
  footer .wp-block-calendar table caption,
  footer .wp-block-calendar table tbody {
    color: #fff; }
  footer .wp-block-tag-cloud a,
  footer .widget_tag_cloud .tagcloud a {
    border-color: rgba(255, 255, 255, 0.1); }
  footer .wp-block-search,
  footer .wp-block-archives,
  footer .wp-block-latest-posts,
  footer .wp-block-latest-comments,
  footer .wp-block-categories,
  footer .wp-block-calendar {
    margin-bottom: 0; }
  footer .dz-meta ul li span,
  footer .dz-meta ul li a {
    color: var(--primary); }
  footer .dz-social-icon ul li {
    padding: 0 10px 0 0px; }

.contact-ft {
  text-align: center;
  margin-bottom: 40px; }
  .contact-ft i {
    color: var(--primary);
    font-size: 50px;
    line-height: 1;
    margin-bottom: 15px;
    display: inline-block; }
  .contact-ft h4, .contact-ft .h4 {
    color: #fff;
    text-decoration: underline; }
  .contact-ft h5, .contact-ft .h5 {
    color: #fff;
    font-weight: 400; }

.list-column ul {
  display: flex;
  flex-wrap: wrap; }
  .list-column ul li {
    flex: 0 0 50%;
    max-width: 50%; }

.fb-link {
  list-style: none;
  margin: 0;
  padding: 0; }
  .fb-link li {
    display: inline-block; }
    .fb-link li a {
      color: #fff;
      position: relative; }
      .fb-link li a:after {
        content: "";
        background: var(--primary);
        width: 5px;
        height: 5px; }

.footer-link li {
  display: inline-block;
  position: relative;
  padding: 0 25px 0 20px; }
  .footer-link li a {
    color: inherit; }
  .footer-link li:before {
    content: "";
    height: 8px;
    width: 8px;
    background-color: var(--primary);
    position: absolute;
    top: 50%;
    left: 0;
    border-radius: 8px;
    transform: translateY(-50%); }

.svg-shape-1 {
  position: absolute;
  top: -67%;
  left: -15%; }
  @media only screen and (max-width: 1480px) {
    .svg-shape-1 {
      top: -45%;
      height: 80%;
      left: -20%; } }
  @media only screen and (max-width: 1199px) {
    .svg-shape-1 {
      top: -45%;
      height: 73%;
      left: -30%; } }
  @media only screen and (max-width: 767px) {
    .svg-shape-1 {
      top: -5%;
      height: auto;
      width: 60%;
      left: -20%; } }
  @media only screen and (max-width: 575px) {
    .svg-shape-1 {
      top: -5%;
      height: auto;
      width: 92%;
      left: -40%; } }

.svg-shape-2 {
  position: absolute;
  bottom: -70%;
  right: -20%; }
  @media only screen and (max-width: 1480px) {
    .svg-shape-2 {
      bottom: -50%;
      right: -22%;
      height: 80%; } }
  @media only screen and (max-width: 1199px) {
    .svg-shape-2 {
      bottom: -30%;
      right: -20%;
      height: 50%; } }
  @media only screen and (max-width: 991px) {
    .svg-shape-2 {
      bottom: -20%;
      right: -20%;
      height: 40%; } }
  @media only screen and (max-width: 767px) {
    .svg-shape-2 {
      bottom: -20%;
      right: -55%;
      height: 40%;
      width: 100%; } }

.footer-sidebar-1 .recent-posts-entry .widget-post-bx .widget-post .dz-info .title {
  font-size: 18px; }
  .footer-sidebar-1 .recent-posts-entry .widget-post-bx .widget-post .dz-info .title a {
    color: #fff; }

.site-footer.style-1 {
  color: rgba(255, 255, 255, 0.7);
  background-position: top;
  overflow: hidden;
  background-size: cover; }
  .site-footer.style-1 .footer-title {
    display: inline-block;
    padding-bottom: 15px;
    color: #fff;
    font-family: 'Poppins'; }
    .site-footer.style-1 .footer-title:after, .site-footer.style-1 .footer-title:before {
      content: '';
      position: absolute;
      bottom: 0;
      height: 5px;
      transform: skewX(-20deg);
      background: var(--primary); }
    .site-footer.style-1 .footer-title:after {
      left: 0;
      width: 55px; }
    .site-footer.style-1 .footer-title:before {
      left: 60px;
      width: 7px; }
  .site-footer.style-1 .footer-logo img {
    max-width: 220px; }
  .site-footer.style-1 .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1); }
  @media only screen and (min-width: 991px) {
    .site-footer.style-1 .widget-post-bx {
      padding-right: 30px; } }
  .site-footer.style-1 .recent-posts-entry .widget-post-bx .widget-post:not(:last-child) {
    border-image-source: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid lightgrey;
    border-image-slice: 1;
    margin-bottom: 20px; }
  .site-footer.style-1 canvas.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0; }

.site-footer.style-2 {
  background-position: center;
  overflow: hidden; }
  @media only screen and (max-width: 991px) {
    .site-footer.style-2 {
      padding: 0 20px; } }
  .site-footer.style-2 .footer-top {
    padding: 0; }
  .site-footer.style-2 .footer-title {
    font-family: var(--font-family-title);
    font-size: 35px;
    font-weight: 900;
    letter-spacing: 3.5px;
    text-transform: uppercase; }
    @media only screen and (max-width: 767px) {
      .site-footer.style-2 .footer-title {
        font-size: 28px; } }
  .site-footer.style-2 .widget {
    padding: 60px 40px 30px 40px;
    margin-bottom: 0;
    height: 100%; }
    @media only screen and (max-width: 1480px) {
      .site-footer.style-2 .widget {
        padding: 30px; } }
    @media only screen and (max-width: 767px) {
      .site-footer.style-2 .widget {
        padding: 25px; } }
    .site-footer.style-2 .widget.bg-secondary-light {
      background: rgba(255, 255, 255, 0.1); }
    .site-footer.style-2 .widget .title {
      color: var(--primary);
      font-family: var(--font-family-title);
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      display: block;
      margin-bottom: 15px; }
    .site-footer.style-2 .widget .input-group .form-control.form-control-light, .site-footer.style-2 .widget .input-group .wp-block-categories-dropdown select.form-control-light, .wp-block-categories-dropdown .site-footer.style-2 .widget .input-group select.form-control-light,
    .site-footer.style-2 .widget .input-group .wp-block-archives-dropdown select.form-control-light, .wp-block-archives-dropdown .site-footer.style-2 .widget .input-group select.form-control-light, .site-footer.style-2 .widget .input-group .woocommerce #review_form #respond input.form-control-light[type="text"], .woocommerce #review_form #respond .site-footer.style-2 .widget .input-group input.form-control-light[type="text"],
    .site-footer.style-2 .widget .input-group .woocommerce #review_form #respond textarea.form-control-light, .woocommerce #review_form #respond .site-footer.style-2 .widget .input-group textarea.form-control-light,
    .site-footer.style-2 .widget .input-group .woocommerce #review_form #respond input.form-control-light[type="email"], .woocommerce #review_form #respond .site-footer.style-2 .widget .input-group input.form-control-light[type="email"], .site-footer.style-2 .widget .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-control-light.input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .site-footer.style-2 .widget .input-group .form-control-light.input-text, .site-footer.style-2 .widget .input-group .woocommerce-cart-form .table.shop_table tr .quantity input.form-control-light, .woocommerce-cart-form .table.shop_table tr .quantity .site-footer.style-2 .widget .input-group input.form-control-light,
    .site-footer.style-2 .widget .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select.form-control-light, .woocommerce .woocommerce-checkout.checkout form .form-row .site-footer.style-2 .widget .input-group select.form-control-light,
    .site-footer.style-2 .widget .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input.form-control-light, .woocommerce .woocommerce-checkout.checkout form .form-row .site-footer.style-2 .widget .input-group input.form-control-light, .site-footer.style-2 .widget .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light[type="text"], .woocommerce-EditAccountForm.edit-account .site-footer.style-2 .widget .input-group input.form-control-light[type="text"],
    .site-footer.style-2 .widget .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light[type="email"], .woocommerce-EditAccountForm.edit-account .site-footer.style-2 .widget .input-group input.form-control-light[type="email"],
    .site-footer.style-2 .widget .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light[type="password"], .woocommerce-EditAccountForm.edit-account .site-footer.style-2 .widget .input-group input.form-control-light[type="password"],
    .site-footer.style-2 .widget .input-group .login input.form-control-light[type="text"], .login .site-footer.style-2 .widget .input-group input.form-control-light[type="text"], .site-footer.style-2 .widget .input-group .login input.form-control-light[type="password"], .login .site-footer.style-2 .widget .input-group input.form-control-light[type="password"],
    .site-footer.style-2 .widget .input-group .woocommerce-ResetPassword.lost_reset_password input.form-control-light[type="text"], .woocommerce-ResetPassword.lost_reset_password .site-footer.style-2 .widget .input-group input.form-control-light[type="text"],
    .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout input.form-control-light[type="text"], .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group input.form-control-light[type="text"],
    .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout input.form-control-light[type="email"], .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group input.form-control-light[type="email"],
    .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout input.form-control-light[type="tel"], .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group input.form-control-light[type="tel"],
    .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout .form-control-light.select2-choice, .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group .form-control-light.select2-choice,
    .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout textarea.form-control-light, .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group textarea.form-control-light,
    .site-footer.style-2 .widget .input-group .woocommerce form .form-row input.form-control-light.input-text, .woocommerce form .form-row .site-footer.style-2 .widget .input-group input.form-control-light.input-text,
    .site-footer.style-2 .widget .input-group .woocommerce form .form-row .form-control-light.select2-selection, .woocommerce form .form-row .site-footer.style-2 .widget .input-group .form-control-light.select2-selection,
    .site-footer.style-2 .widget .input-group .woocommerce form .form-row .form-control-light.select2-choice, .woocommerce form .form-row .site-footer.style-2 .widget .input-group .form-control-light.select2-choice {
      background: rgba(229, 229, 229, 0.9); }
      .site-footer.style-2 .widget .input-group .form-control.form-control-light:placeholder, .site-footer.style-2 .widget .input-group .wp-block-categories-dropdown select.form-control-light:placeholder, .wp-block-categories-dropdown .site-footer.style-2 .widget .input-group select.form-control-light:placeholder,
      .site-footer.style-2 .widget .input-group .wp-block-archives-dropdown select.form-control-light:placeholder, .wp-block-archives-dropdown .site-footer.style-2 .widget .input-group select.form-control-light:placeholder, .site-footer.style-2 .widget .input-group .woocommerce #review_form #respond input.form-control-light:placeholder[type="text"], .woocommerce #review_form #respond .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="text"],
      .site-footer.style-2 .widget .input-group .woocommerce #review_form #respond textarea.form-control-light:placeholder, .woocommerce #review_form #respond .site-footer.style-2 .widget .input-group textarea.form-control-light:placeholder,
      .site-footer.style-2 .widget .input-group .woocommerce #review_form #respond input.form-control-light:placeholder[type="email"], .woocommerce #review_form #respond .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="email"], .site-footer.style-2 .widget .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-control-light.input-text:placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .site-footer.style-2 .widget .input-group .form-control-light.input-text:placeholder, .site-footer.style-2 .widget .input-group .woocommerce-cart-form .table.shop_table tr .quantity input.form-control-light:placeholder, .woocommerce-cart-form .table.shop_table tr .quantity .site-footer.style-2 .widget .input-group input.form-control-light:placeholder,
      .site-footer.style-2 .widget .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select.form-control-light:placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .site-footer.style-2 .widget .input-group select.form-control-light:placeholder,
      .site-footer.style-2 .widget .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input.form-control-light:placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .site-footer.style-2 .widget .input-group input.form-control-light:placeholder, .site-footer.style-2 .widget .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light:placeholder[type="text"], .woocommerce-EditAccountForm.edit-account .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="text"],
      .site-footer.style-2 .widget .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light:placeholder[type="email"], .woocommerce-EditAccountForm.edit-account .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="email"],
      .site-footer.style-2 .widget .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light:placeholder[type="password"], .woocommerce-EditAccountForm.edit-account .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="password"],
      .site-footer.style-2 .widget .input-group .login input.form-control-light:placeholder[type="text"], .login .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="text"], .site-footer.style-2 .widget .input-group .login input.form-control-light:placeholder[type="password"], .login .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="password"],
      .site-footer.style-2 .widget .input-group .woocommerce-ResetPassword.lost_reset_password input.form-control-light:placeholder[type="text"], .woocommerce-ResetPassword.lost_reset_password .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="text"],
      .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout input.form-control-light:placeholder[type="text"], .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="text"],
      .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout input.form-control-light:placeholder[type="email"], .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="email"],
      .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout input.form-control-light:placeholder[type="tel"], .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group input.form-control-light:placeholder[type="tel"],
      .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout .form-control-light.select2-choice:placeholder, .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group .form-control-light.select2-choice:placeholder,
      .site-footer.style-2 .widget .input-group .checkout.woocommerce-checkout textarea.form-control-light:placeholder, .checkout.woocommerce-checkout .site-footer.style-2 .widget .input-group textarea.form-control-light:placeholder,
      .site-footer.style-2 .widget .input-group .woocommerce form .form-row input.form-control-light.input-text:placeholder, .woocommerce form .form-row .site-footer.style-2 .widget .input-group input.form-control-light.input-text:placeholder,
      .site-footer.style-2 .widget .input-group .woocommerce form .form-row .form-control-light.select2-selection:placeholder, .woocommerce form .form-row .site-footer.style-2 .widget .input-group .form-control-light.select2-selection:placeholder,
      .site-footer.style-2 .widget .input-group .woocommerce form .form-row .form-control-light.select2-choice:placeholder, .woocommerce form .form-row .site-footer.style-2 .widget .input-group .form-control-light.select2-choice:placeholder {
        color: #fff; }
    .site-footer.style-2 .widget textarea::placeholder,
    .site-footer.style-2 .widget input::placeholder {
      color: #fff; }
    .site-footer.style-2 .widget .tagcloud a {
      font-weight: 500;
      background: #021420;
      color: #fff;
      padding: 5px 10px;
      margin: 0 5px 5px 0; }
    .site-footer.style-2 .widget.recent-posts-entry ul li {
      margin-bottom: 20px; }
    .site-footer.style-2 .widget.recent-posts-entry .exemple {
      font-family: var(--font-family-base);
      font-size: 16px;
      font-weight: 500;
      display: block; }
    .site-footer.style-2 .widget.recent-posts-entry svg {
      margin-bottom: 50px; }
  .site-footer.style-2 .map-iframe {
    height: 100%;
    position: relative;
    z-index: 1; }
    .site-footer.style-2 .map-iframe:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      background: var(--secondary);
      mix-blend-mode: color;
      pointer-events: none; }
  .site-footer.style-2.bg-secondary {
    color: #fff; }
    .site-footer.style-2.bg-secondary .time,
    .site-footer.style-2.bg-secondary .more-button,
    .site-footer.style-2.bg-secondary .footer-title {
      color: #fff; }
    .site-footer.style-2.bg-secondary .more-button {
      background: #fff;
      color: var(--secondary); }
    .site-footer.style-2.bg-secondary .input-group .form-control.form-control-light, .site-footer.style-2.bg-secondary .input-group .wp-block-categories-dropdown select.form-control-light, .wp-block-categories-dropdown .site-footer.style-2.bg-secondary .input-group select.form-control-light,
    .site-footer.style-2.bg-secondary .input-group .wp-block-archives-dropdown select.form-control-light, .wp-block-archives-dropdown .site-footer.style-2.bg-secondary .input-group select.form-control-light, .site-footer.style-2.bg-secondary .input-group .woocommerce #review_form #respond input.form-control-light[type="text"], .woocommerce #review_form #respond .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"],
    .site-footer.style-2.bg-secondary .input-group .woocommerce #review_form #respond textarea.form-control-light, .woocommerce #review_form #respond .site-footer.style-2.bg-secondary .input-group textarea.form-control-light,
    .site-footer.style-2.bg-secondary .input-group .woocommerce #review_form #respond input.form-control-light[type="email"], .woocommerce #review_form #respond .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="email"], .site-footer.style-2.bg-secondary .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-control-light.input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .site-footer.style-2.bg-secondary .input-group .form-control-light.input-text, .site-footer.style-2.bg-secondary .input-group .woocommerce-cart-form .table.shop_table tr .quantity input.form-control-light, .woocommerce-cart-form .table.shop_table tr .quantity .site-footer.style-2.bg-secondary .input-group input.form-control-light,
    .site-footer.style-2.bg-secondary .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select.form-control-light, .woocommerce .woocommerce-checkout.checkout form .form-row .site-footer.style-2.bg-secondary .input-group select.form-control-light,
    .site-footer.style-2.bg-secondary .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input.form-control-light, .woocommerce .woocommerce-checkout.checkout form .form-row .site-footer.style-2.bg-secondary .input-group input.form-control-light, .site-footer.style-2.bg-secondary .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light[type="text"], .woocommerce-EditAccountForm.edit-account .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"],
    .site-footer.style-2.bg-secondary .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light[type="email"], .woocommerce-EditAccountForm.edit-account .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="email"],
    .site-footer.style-2.bg-secondary .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light[type="password"], .woocommerce-EditAccountForm.edit-account .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="password"],
    .site-footer.style-2.bg-secondary .input-group .login input.form-control-light[type="text"], .login .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"], .site-footer.style-2.bg-secondary .input-group .login input.form-control-light[type="password"], .login .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="password"],
    .site-footer.style-2.bg-secondary .input-group .woocommerce-ResetPassword.lost_reset_password input.form-control-light[type="text"], .woocommerce-ResetPassword.lost_reset_password .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"],
    .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout input.form-control-light[type="text"], .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"],
    .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout input.form-control-light[type="email"], .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="email"],
    .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout input.form-control-light[type="tel"], .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="tel"],
    .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout .form-control-light.select2-choice, .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group .form-control-light.select2-choice,
    .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout textarea.form-control-light, .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group textarea.form-control-light,
    .site-footer.style-2.bg-secondary .input-group .woocommerce form .form-row input.form-control-light.input-text, .woocommerce form .form-row .site-footer.style-2.bg-secondary .input-group input.form-control-light.input-text,
    .site-footer.style-2.bg-secondary .input-group .woocommerce form .form-row .form-control-light.select2-selection, .woocommerce form .form-row .site-footer.style-2.bg-secondary .input-group .form-control-light.select2-selection,
    .site-footer.style-2.bg-secondary .input-group .woocommerce form .form-row .form-control-light.select2-choice, .woocommerce form .form-row .site-footer.style-2.bg-secondary .input-group .form-control-light.select2-choice {
      background: rgba(255, 255, 255, 0.1);
      color: #fff; }
      .site-footer.style-2.bg-secondary .input-group .form-control.form-control-light::placeholder, .site-footer.style-2.bg-secondary .input-group .wp-block-categories-dropdown select.form-control-light::placeholder, .wp-block-categories-dropdown .site-footer.style-2.bg-secondary .input-group select.form-control-light::placeholder,
      .site-footer.style-2.bg-secondary .input-group .wp-block-archives-dropdown select.form-control-light::placeholder, .wp-block-archives-dropdown .site-footer.style-2.bg-secondary .input-group select.form-control-light::placeholder, .site-footer.style-2.bg-secondary .input-group .woocommerce #review_form #respond input.form-control-light[type="text"]::placeholder, .woocommerce #review_form #respond .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"]::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce #review_form #respond textarea.form-control-light::placeholder, .woocommerce #review_form #respond .site-footer.style-2.bg-secondary .input-group textarea.form-control-light::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce #review_form #respond input.form-control-light[type="email"]::placeholder, .woocommerce #review_form #respond .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="email"]::placeholder, .site-footer.style-2.bg-secondary .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-control-light.input-text::placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .site-footer.style-2.bg-secondary .input-group .form-control-light.input-text::placeholder, .site-footer.style-2.bg-secondary .input-group .woocommerce-cart-form .table.shop_table tr .quantity input.form-control-light::placeholder, .woocommerce-cart-form .table.shop_table tr .quantity .site-footer.style-2.bg-secondary .input-group input.form-control-light::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select.form-control-light::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .site-footer.style-2.bg-secondary .input-group select.form-control-light::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input.form-control-light::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .site-footer.style-2.bg-secondary .input-group input.form-control-light::placeholder, .site-footer.style-2.bg-secondary .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light[type="text"]::placeholder, .woocommerce-EditAccountForm.edit-account .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"]::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light[type="email"]::placeholder, .woocommerce-EditAccountForm.edit-account .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="email"]::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce-EditAccountForm.edit-account input.form-control-light[type="password"]::placeholder, .woocommerce-EditAccountForm.edit-account .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="password"]::placeholder,
      .site-footer.style-2.bg-secondary .input-group .login input.form-control-light[type="text"]::placeholder, .login .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"]::placeholder, .site-footer.style-2.bg-secondary .input-group .login input.form-control-light[type="password"]::placeholder, .login .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="password"]::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce-ResetPassword.lost_reset_password input.form-control-light[type="text"]::placeholder, .woocommerce-ResetPassword.lost_reset_password .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"]::placeholder,
      .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout input.form-control-light[type="text"]::placeholder, .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="text"]::placeholder,
      .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout input.form-control-light[type="email"]::placeholder, .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="email"]::placeholder,
      .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout input.form-control-light[type="tel"]::placeholder, .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group input.form-control-light[type="tel"]::placeholder,
      .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout .form-control-light.select2-choice::placeholder, .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group .form-control-light.select2-choice::placeholder,
      .site-footer.style-2.bg-secondary .input-group .checkout.woocommerce-checkout textarea.form-control-light::placeholder, .checkout.woocommerce-checkout .site-footer.style-2.bg-secondary .input-group textarea.form-control-light::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce form .form-row input.form-control-light.input-text::placeholder, .woocommerce form .form-row .site-footer.style-2.bg-secondary .input-group input.form-control-light.input-text::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce form .form-row .form-control-light.select2-selection::placeholder, .woocommerce form .form-row .site-footer.style-2.bg-secondary .input-group .form-control-light.select2-selection::placeholder,
      .site-footer.style-2.bg-secondary .input-group .woocommerce form .form-row .form-control-light.select2-choice::placeholder, .woocommerce form .form-row .site-footer.style-2.bg-secondary .input-group .form-control-light.select2-choice::placeholder {
        color: #fff !important; }
    .site-footer.style-2.bg-secondary .dz-social-icon.style-1 ul li a {
      background-color: #fff;
      color: var(--title); }

.dz-social-icon.style-1.light ul li a {
  background-color: #fff;
  color: var(--title); }

.more-button {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--secondary);
  padding: 20px 45px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-family-title);
  letter-spacing: 1.6px;
  text-transform: uppercase;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%; }
  @media only screen and (max-width: 767px) {
    .more-button {
      padding: 10px 30px; } }

.submit-button {
  position: absolute !important;
  bottom: 0;
  left: 0;
  background: #00111D;
  text-transform: uppercase;
  font-size: 18px !important;
  color: #fff;
  padding: 15px 25px !important; }
  .submit-button:hover {
    background: #00111D; }

.wpcf7-form-control-wrap {
  width: 100%; }

.site-footer.style-3 {
  position: relative;
  z-index: 2; }
  .site-footer.style-3 .footer-top {
    background-color: var(--secondary);
    padding-bottom: 100px;
    position: unset; }
    @media only screen and (max-width: 991px) {
      .site-footer.style-3 .footer-top {
        padding-bottom: 80px; } }
  .site-footer.style-3 .sub-footer-title {
    color: var(--primary);
    text-align: center;
    font-family: var(--font-family-title);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2.1px;
    text-transform: uppercase;
    margin-bottom: 12px; }
  .site-footer.style-3 .para {
    color: #FFF;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase; }
  .site-footer.style-3 .mid-content {
    margin-bottom: 70px; }
    @media only screen and (max-width: 991px) {
      .site-footer.style-3 .mid-content {
        margin-bottom: 40px; } }
  .site-footer.style-3 .social-links ul {
    text-align: center; }
    .site-footer.style-3 .social-links ul li {
      margin: 0 20px;
      display: inline-block; }
      .site-footer.style-3 .social-links ul li a {
        color: #FFF;
        font-size: 15px;
        font-weight: 500;
        text-transform: uppercase; }
      .site-footer.style-3 .social-links ul li:hover a {
        color: var(--primary); }
  .site-footer.style-3 .footer-menu {
    margin-bottom: 70px; }
    @media only screen and (max-width: 991px) {
      .site-footer.style-3 .footer-menu {
        margin-bottom: 40px; } }
    .site-footer.style-3 .footer-menu ul {
      text-align: center; }
      .site-footer.style-3 .footer-menu ul li {
        margin: 0 45px;
        display: inline-block;
        border-bottom: 1px solid transparent;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s; }
        .site-footer.style-3 .footer-menu ul li:hover {
          border-bottom: 1px solid var(--primary); }
        .site-footer.style-3 .footer-menu ul li a {
          color: #FFF;
          font-family: var(--font-family-title);
          font-size: 18px;
          font-weight: 400;
          letter-spacing: 2.7px;
          text-transform: uppercase; }
        @media only screen and (max-width: 991px) {
          .site-footer.style-3 .footer-menu ul li {
            margin: 0 15px; } }
  .site-footer.style-3 .footer-bottom {
    background-color: var(--theme3-secondary2); }
    .site-footer.style-3 .footer-bottom .copyright-text {
      color: #FFF;
      text-align: center;
      font-family: var(--font-family-title);
      font-size: 14px;
      font-weight: 400;
      letter-spacing: 2.1px;
      text-transform: uppercase; }
      .site-footer.style-3 .footer-bottom .copyright-text a {
        color: var(--primary); }
  .site-footer.style-3 canvas.particles-js-canvas-el {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.5; }

.data-typography-1 {
  --font-family-base: 'Poppins', sans-serif;
  --font-family-title: 'Kuunari'; }

.data-typography-2 {
  color: rgba(255, 255, 255, 0.6);
  background-color: var(--theme3-bg-color);
  --title: #fff;
  --secondary: var(--theme3-secondary);
  --secondary-2: var(--theme3-secondary2); }
  .data-typography-2 h1, .data-typography-2 .h1,
  .data-typography-2 h2,
  .data-typography-2 .h2,
  .data-typography-2 h3,
  .data-typography-2 .h3,
  .data-typography-2 h4,
  .data-typography-2 .h4,
  .data-typography-2 h5,
  .data-typography-2 .h5,
  .data-typography-2 h6,
  .data-typography-2 .h6 {
    color: #fff; }
    .data-typography-2 h1 a, .data-typography-2 .h1 a,
    .data-typography-2 h2 a,
    .data-typography-2 .h2 a,
    .data-typography-2 h3 a,
    .data-typography-2 .h3 a,
    .data-typography-2 h4 a,
    .data-typography-2 .h4 a,
    .data-typography-2 h5 a,
    .data-typography-2 .h5 a,
    .data-typography-2 h6 a,
    .data-typography-2 .h6 a {
      color: #fff; }
  .data-typography-2 .dz-card {
    background-color: var(--secondary); }
  .data-typography-2 .theme-bg {
    background-color: var(--theme3-bg-color); }
  .data-typography-2 .comments-area .comment-list > .comment .comment-body {
    border-bottom-color: rgba(255, 255, 255, 0.1); }
  .data-typography-2 .dz-team.style-1 .dz-name {
    background-color: var(--theme3-secondary2);
    color: #fff; }
  .data-typography-2 .calculate-table .weight-info b,
  .data-typography-2 .calculate-table table thead th,
  .data-typography-2 .section-head p {
    color: #fff; }
  .data-typography-2 .dz-box.gallery .content .view-btn {
    background-color: var(--primary); }
  .data-typography-2 .form-control, .data-typography-2 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .data-typography-2 select,
  .data-typography-2 .wp-block-archives-dropdown select, .wp-block-archives-dropdown .data-typography-2 select, .data-typography-2 .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .data-typography-2 input[type="text"],
  .data-typography-2 .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .data-typography-2 textarea,
  .data-typography-2 .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .data-typography-2 input[type="email"], .data-typography-2 .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .data-typography-2 .input-text, .data-typography-2 .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .data-typography-2 input, .data-typography-2 .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .data-typography-2 textarea,
  .data-typography-2 .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .data-typography-2 select,
  .data-typography-2 .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .data-typography-2 input, .data-typography-2 .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .data-typography-2 input[type="text"],
  .data-typography-2 .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .data-typography-2 input[type="email"],
  .data-typography-2 .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .data-typography-2 input[type="password"],
  .data-typography-2 .login input[type="text"], .login .data-typography-2 input[type="text"], .data-typography-2 .login input[type="password"], .login .data-typography-2 input[type="password"],
  .data-typography-2 .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .data-typography-2 input[type="text"],
  .data-typography-2 .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .data-typography-2 input[type="text"],
  .data-typography-2 .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .data-typography-2 input[type="email"],
  .data-typography-2 .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .data-typography-2 input[type="tel"],
  .data-typography-2 .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .data-typography-2 .select2-choice,
  .data-typography-2 .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .data-typography-2 textarea,
  .data-typography-2 .woocommerce form .form-row input.input-text, .woocommerce form .form-row .data-typography-2 input.input-text,
  .data-typography-2 .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .data-typography-2 .select2-selection,
  .data-typography-2 .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .data-typography-2 .select2-choice {
    color: #fff;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1); }
    .data-typography-2 .form-control::placeholder, .data-typography-2 .wp-block-categories-dropdown select::placeholder, .wp-block-categories-dropdown .data-typography-2 select::placeholder,
    .data-typography-2 .wp-block-archives-dropdown select::placeholder, .wp-block-archives-dropdown .data-typography-2 select::placeholder, .data-typography-2 .woocommerce #review_form #respond input[type="text"]::placeholder, .woocommerce #review_form #respond .data-typography-2 input[type="text"]::placeholder,
    .data-typography-2 .woocommerce #review_form #respond textarea::placeholder, .woocommerce #review_form #respond .data-typography-2 textarea::placeholder,
    .data-typography-2 .woocommerce #review_form #respond input[type="email"]::placeholder, .woocommerce #review_form #respond .data-typography-2 input[type="email"]::placeholder, .data-typography-2 .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .data-typography-2 .input-text::placeholder, .data-typography-2 .woocommerce-cart-form .table.shop_table tr .quantity input::placeholder, .woocommerce-cart-form .table.shop_table tr .quantity .data-typography-2 input::placeholder, .data-typography-2 .woocommerce .woocommerce-checkout.checkout form .form-row textarea::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .data-typography-2 textarea::placeholder,
    .data-typography-2 .woocommerce .woocommerce-checkout.checkout form .form-row select::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .data-typography-2 select::placeholder,
    .data-typography-2 .woocommerce .woocommerce-checkout.checkout form .form-row input::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .data-typography-2 input::placeholder, .data-typography-2 .woocommerce-EditAccountForm.edit-account input[type="text"]::placeholder, .woocommerce-EditAccountForm.edit-account .data-typography-2 input[type="text"]::placeholder,
    .data-typography-2 .woocommerce-EditAccountForm.edit-account input[type="email"]::placeholder, .woocommerce-EditAccountForm.edit-account .data-typography-2 input[type="email"]::placeholder,
    .data-typography-2 .woocommerce-EditAccountForm.edit-account input[type="password"]::placeholder, .woocommerce-EditAccountForm.edit-account .data-typography-2 input[type="password"]::placeholder,
    .data-typography-2 .login input[type="text"]::placeholder, .login .data-typography-2 input[type="text"]::placeholder, .data-typography-2 .login input[type="password"]::placeholder, .login .data-typography-2 input[type="password"]::placeholder,
    .data-typography-2 .woocommerce-ResetPassword.lost_reset_password input[type="text"]::placeholder, .woocommerce-ResetPassword.lost_reset_password .data-typography-2 input[type="text"]::placeholder,
    .data-typography-2 .checkout.woocommerce-checkout input[type="text"]::placeholder, .checkout.woocommerce-checkout .data-typography-2 input[type="text"]::placeholder,
    .data-typography-2 .checkout.woocommerce-checkout input[type="email"]::placeholder, .checkout.woocommerce-checkout .data-typography-2 input[type="email"]::placeholder,
    .data-typography-2 .checkout.woocommerce-checkout input[type="tel"]::placeholder, .checkout.woocommerce-checkout .data-typography-2 input[type="tel"]::placeholder,
    .data-typography-2 .checkout.woocommerce-checkout .select2-choice::placeholder, .checkout.woocommerce-checkout .data-typography-2 .select2-choice::placeholder,
    .data-typography-2 .checkout.woocommerce-checkout textarea::placeholder, .checkout.woocommerce-checkout .data-typography-2 textarea::placeholder,
    .data-typography-2 .woocommerce form .form-row input.input-text::placeholder, .woocommerce form .form-row .data-typography-2 input.input-text::placeholder,
    .data-typography-2 .woocommerce form .form-row .select2-selection::placeholder, .woocommerce form .form-row .data-typography-2 .select2-selection::placeholder,
    .data-typography-2 .woocommerce form .form-row .select2-choice::placeholder, .woocommerce form .form-row .data-typography-2 .select2-choice::placeholder {
      color: rgba(255, 255, 255, 0.7); }
  .data-typography-2 .default-select .btn.dropdown-toggle, .data-typography-2 .default-select .dropdown-toggle.wp-block-button__link, .data-typography-2 .default-select .woocommerce .widget_shopping_cart .buttons a.dropdown-toggle, .woocommerce .widget_shopping_cart .buttons .data-typography-2 .default-select a.dropdown-toggle,
  .data-typography-2 .default-select .woocommerce.widget_shopping_cart .buttons a.dropdown-toggle, .woocommerce.widget_shopping_cart .buttons .data-typography-2 .default-select a.dropdown-toggle, .data-typography-2 .default-select .woocommerce #review_form #respond .form-submit input.dropdown-toggle, .woocommerce #review_form #respond .form-submit .data-typography-2 .default-select input.dropdown-toggle, .data-typography-2 .default-select .woocommerce-cart-form .table.shop_table tr .dropdown-toggle.button, .woocommerce-cart-form .table.shop_table tr .data-typography-2 .default-select .dropdown-toggle.button, .data-typography-2 .default-select .woocommerce-cart .wc-proceed-to-checkout a.dropdown-toggle.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .data-typography-2 .default-select a.dropdown-toggle.checkout-button, .data-typography-2 .default-select .woocommerce #respond input.dropdown-toggle#submit, .woocommerce #respond .data-typography-2 .default-select input.dropdown-toggle#submit,
  .data-typography-2 .default-select .woocommerce a.dropdown-toggle.button, .woocommerce .data-typography-2 .default-select a.dropdown-toggle.button,
  .data-typography-2 .default-select .woocommerce button.dropdown-toggle.button, .woocommerce .data-typography-2 .default-select button.dropdown-toggle.button,
  .data-typography-2 .default-select .woocommerce input.dropdown-toggle.button, .woocommerce .data-typography-2 .default-select input.dropdown-toggle.button,
  .data-typography-2 .default-select .woocommerce .dropdown-toggle#place_order, .woocommerce .data-typography-2 .default-select .dropdown-toggle#place_order,
  .data-typography-2 .default-select .dropdown-toggle.wp-block-button__link {
    color: rgba(255, 255, 255, 0.7); }
  .data-typography-2 .dz-page-text ul > li:before,
  .data-typography-2 .dz-page-text ol > li:before,
  .data-typography-2 .dz-card.blog-single .dz-post-text ul > li:before,
  .data-typography-2 .dz-card.blog-single .dz-post-text ol > li:before {
    background-color: var(--primary); }
  .data-typography-2 .swiper-pagination.style-2 .swiper-pagination-bullet {
    color: var(--theme3-secondary2); }
  .data-typography-2 .service_menu_nav {
    background: var(--secondary); }
  .data-typography-2 .recent-posts-entry .widget-post-bx .widget-post:not(:last-child) {
    border-image-source: linear-gradient(90deg, rgba(212, 212, 212, 0.3) 0%, rgba(0, 0, 0, 0) 100%); }
  .data-typography-2 .comment-respond .comment-form p.comment-form-author input,
  .data-typography-2 .comment-respond .comment-form p.comment-form-email input,
  .data-typography-2 .comment-respond .comment-form p.comment-form-comment textarea {
    color: #fff; }
    .data-typography-2 .comment-respond .comment-form p.comment-form-author input:focus,
    .data-typography-2 .comment-respond .comment-form p.comment-form-email input:focus,
    .data-typography-2 .comment-respond .comment-form p.comment-form-comment textarea:focus {
      background: transparent; }
    .data-typography-2 .comment-respond .comment-form p.comment-form-author input::placeholder,
    .data-typography-2 .comment-respond .comment-form p.comment-form-email input::placeholder,
    .data-typography-2 .comment-respond .comment-form p.comment-form-comment textarea::placeholder {
      color: rgba(255, 255, 255, 0.8); }
  .data-typography-2 .calculate-table table thead tr,
  .data-typography-2 .calculate-table table tbody tr {
    border-bottom-color: rgba(255, 255, 255, 0.2); }
  .data-typography-2 .calculate-table table th,
  .data-typography-2 .calculate-table table td {
    border-right-color: rgba(255, 255, 255, 0.2); }
  .data-typography-2 .inquiry-modal .modal-content {
    background: var(--theme3-bg-color); }

#bg {
  background-attachment: fixed;
  background-size: cover; }

.main-bar-wraper.sticky-no .main-bar {
  position: unset; }

.boxed .page-wraper {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1); }

.boxed .site-footer.style-1 .girl-img {
  width: 200px; }

.boxed .about-bx3 .dz-media .image-box {
  height: 280px;
  width: 280px;
  top: -90px;
  left: -30px; }

.boxed .main-bnr-two .banner-media {
  max-width: 750px;
  width: 750px; }
  .boxed .main-bnr-two .banner-media ul {
    right: 120px; }

.boxed .main-bnr-two .main-btn {
  display: none; }

.boxed .main-bnr-one .banner-media {
  max-width: 750px;
  width: 750px; }
  .boxed .main-bnr-one .banner-media ul {
    right: 230px; }

.boxed .main-bnr-one .main-btn {
  display: none; }

.boxed .gym-text,
.boxed .gym-text-2 {
  right: 0; }

.boxed .coming-soon-1 .coming-soon-detail {
  padding: 50px; }

/* Frame */
.frame {
  padding: 30px; }
  .frame .page-wraper {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    height: auto !important; }
  .frame .is-fixed .main-bar {
    left: 0;
    width: 100%;
    margin: 0;
    position: unset; }
  .frame button.scroltop {
    right: 50px;
    bottom: 50px; }

@media only screen and (max-width: 1280px) {
  .frame {
    padding: 0 !important; }
  .frame button.scroltop {
    right: 15px;
    bottom: 15px; } }

.theme-sharped {
  --border-radius-base: 0;
  -webkit-transition: none;
  -ms-transition: none;
  transition: none; }

.theme-rounded {
  --border-radius-base: 10px;
  -webkit-transition: none;
  -ms-transition: none;
  transition: none; }

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

/*=== Components ===*/
.card {
  border: 0px solid #F2F2F2;
  margin-bottom: 30px;
  border-radius: 5px;
  box-shadow: 0px 36px 48px rgba(31, 66, 135, 0.04);
  background: #fff; }
  .card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #F2F2F2;
    background: #fff;
    padding: 20px 30px; }
  .card-title {
    font-size: 24px;
    margin-bottom: 0px; }
  .card .card-body {
    padding: 20px 30px;
    background: #fff;
    border-radius: 15px; }

.form-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--title);
  margin-bottom: 10px;
  background: transparent;
  border-color: #F2F2F2; }

.form-control, .wp-block-categories-dropdown select,
.wp-block-archives-dropdown select, .woocommerce #review_form #respond input[type="text"],
.woocommerce #review_form #respond textarea,
.woocommerce #review_form #respond input[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce .woocommerce-checkout.checkout form .form-row textarea,
.woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"],
.woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"],
.woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"],
.woocommerce .woocommerce-checkout.checkout form .form-row select,
.woocommerce .woocommerce-checkout.checkout form .form-row input.input-text,
.woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce-EditAccountForm.edit-account input[type="text"],
.woocommerce-EditAccountForm.edit-account input[type="email"],
.woocommerce-EditAccountForm.edit-account input[type="password"],
.login input[type="text"], .login input[type="password"],
.woocommerce-ResetPassword.lost_reset_password input[type="text"],
.checkout.woocommerce-checkout input[type="text"],
.checkout.woocommerce-checkout input[type="email"],
.checkout.woocommerce-checkout input[type="tel"],
.checkout.woocommerce-checkout .select2-choice,
.checkout.woocommerce-checkout textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row .select2-selection,
.woocommerce form .form-row .select2-choice {
  height: 50px;
  border: 0px;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #666666;
  transition: all 0.5s ease-in-out;
  background-color: #F3F3F3;
  border: 1px solid transparent;
  border-radius: 0; }
  .form-control .select, .wp-block-categories-dropdown select .select, .wp-block-archives-dropdown select .select, .woocommerce #review_form #respond input[type="text"] .select, .woocommerce #review_form #respond textarea .select, .woocommerce #review_form #respond input[type="email"] .select, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text .select, .woocommerce-cart-form .table.shop_table tr .quantity input .select, .woocommerce .woocommerce-checkout.checkout form .form-row textarea .select, .woocommerce .woocommerce-checkout.checkout form .form-row select .select, .woocommerce .woocommerce-checkout.checkout form .form-row input .select, .woocommerce-EditAccountForm.edit-account input[type="text"] .select, .woocommerce-EditAccountForm.edit-account input[type="email"] .select, .woocommerce-EditAccountForm.edit-account input[type="password"] .select, .login input[type="text"] .select, .login input[type="password"] .select, .woocommerce-ResetPassword.lost_reset_password input[type="text"] .select, .checkout.woocommerce-checkout input[type="text"] .select, .checkout.woocommerce-checkout input[type="email"] .select, .checkout.woocommerce-checkout input[type="tel"] .select, .checkout.woocommerce-checkout .select2-choice .select, .checkout.woocommerce-checkout textarea .select, .woocommerce form .form-row input.input-text .select, .woocommerce form .form-row .select2-selection .select, .woocommerce form .form-row .select2-choice .select {
    padding: 12px 0; }
  .form-control span, .wp-block-categories-dropdown select span, .wp-block-archives-dropdown select span, .woocommerce #review_form #respond input[type="text"] span, .woocommerce #review_form #respond textarea span, .woocommerce #review_form #respond input[type="email"] span, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text span, .woocommerce-cart-form .table.shop_table tr .quantity input span, .woocommerce .woocommerce-checkout.checkout form .form-row textarea span, .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"] span, .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"] span, .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"] span, .woocommerce .woocommerce-checkout.checkout form .form-row select span, .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text span, .woocommerce .woocommerce-checkout.checkout form .form-row input span, .woocommerce-EditAccountForm.edit-account input[type="text"] span, .woocommerce-EditAccountForm.edit-account input[type="email"] span, .woocommerce-EditAccountForm.edit-account input[type="password"] span, .login input[type="text"] span, .login input[type="password"] span, .woocommerce-ResetPassword.lost_reset_password input[type="text"] span, .checkout.woocommerce-checkout input[type="text"] span, .checkout.woocommerce-checkout input[type="email"] span, .checkout.woocommerce-checkout input[type="tel"] span, .checkout.woocommerce-checkout .select2-choice span, .checkout.woocommerce-checkout textarea span, .woocommerce form .form-row input.input-text span, .woocommerce form .form-row .select2-selection span, .woocommerce form .form-row .select2-choice span {
    margin-top: 0; }
  .form-control::-webkit-input-placeholder, .wp-block-categories-dropdown select::-webkit-input-placeholder,
  .wp-block-archives-dropdown select::-webkit-input-placeholder, .woocommerce #review_form #respond input[type="text"]::-webkit-input-placeholder,
  .woocommerce #review_form #respond textarea::-webkit-input-placeholder,
  .woocommerce #review_form #respond input[type="email"]::-webkit-input-placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::-webkit-input-placeholder, .woocommerce-cart-form .table.shop_table tr .quantity input::-webkit-input-placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row textarea::-webkit-input-placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"]::-webkit-input-placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"]::-webkit-input-placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"]::-webkit-input-placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row select::-webkit-input-placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text::-webkit-input-placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input::-webkit-input-placeholder, .woocommerce-EditAccountForm.edit-account input[type="text"]::-webkit-input-placeholder,
  .woocommerce-EditAccountForm.edit-account input[type="email"]::-webkit-input-placeholder,
  .woocommerce-EditAccountForm.edit-account input[type="password"]::-webkit-input-placeholder,
  .login input[type="text"]::-webkit-input-placeholder, .login input[type="password"]::-webkit-input-placeholder,
  .woocommerce-ResetPassword.lost_reset_password input[type="text"]::-webkit-input-placeholder,
  .checkout.woocommerce-checkout input[type="text"]::-webkit-input-placeholder,
  .checkout.woocommerce-checkout input[type="email"]::-webkit-input-placeholder,
  .checkout.woocommerce-checkout input[type="tel"]::-webkit-input-placeholder,
  .checkout.woocommerce-checkout .select2-choice::-webkit-input-placeholder,
  .checkout.woocommerce-checkout textarea::-webkit-input-placeholder,
  .woocommerce form .form-row input.input-text::-webkit-input-placeholder,
  .woocommerce form .form-row .select2-selection::-webkit-input-placeholder,
  .woocommerce form .form-row .select2-choice::-webkit-input-placeholder {
    color: #666666; }
  .form-control:-ms-input-placeholder, .wp-block-categories-dropdown select:-ms-input-placeholder,
  .wp-block-archives-dropdown select:-ms-input-placeholder, .woocommerce #review_form #respond input:-ms-input-placeholder[type="text"],
  .woocommerce #review_form #respond textarea:-ms-input-placeholder,
  .woocommerce #review_form #respond input:-ms-input-placeholder[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:-ms-input-placeholder, .woocommerce-cart-form .table.shop_table tr .quantity input:-ms-input-placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row textarea:-ms-input-placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row select:-ms-input-placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input:-ms-input-placeholder, .woocommerce-EditAccountForm.edit-account input:-ms-input-placeholder[type="text"],
  .woocommerce-EditAccountForm.edit-account input:-ms-input-placeholder[type="email"],
  .woocommerce-EditAccountForm.edit-account input:-ms-input-placeholder[type="password"],
  .login input:-ms-input-placeholder[type="text"], .login input:-ms-input-placeholder[type="password"],
  .woocommerce-ResetPassword.lost_reset_password input:-ms-input-placeholder[type="text"],
  .checkout.woocommerce-checkout input:-ms-input-placeholder[type="text"],
  .checkout.woocommerce-checkout input:-ms-input-placeholder[type="email"],
  .checkout.woocommerce-checkout input:-ms-input-placeholder[type="tel"],
  .checkout.woocommerce-checkout .select2-choice:-ms-input-placeholder,
  .checkout.woocommerce-checkout textarea:-ms-input-placeholder,
  .woocommerce form .form-row input.input-text:-ms-input-placeholder,
  .woocommerce form .form-row .select2-selection:-ms-input-placeholder,
  .woocommerce form .form-row .select2-choice:-ms-input-placeholder {
    color: #666666; }
  .form-control::placeholder, .wp-block-categories-dropdown select::placeholder,
  .wp-block-archives-dropdown select::placeholder, .woocommerce #review_form #respond input[type="text"]::placeholder,
  .woocommerce #review_form #respond textarea::placeholder,
  .woocommerce #review_form #respond input[type="email"]::placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::placeholder, .woocommerce-cart-form .table.shop_table tr .quantity input::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row textarea::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"]::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"]::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"]::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row select::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text::placeholder,
  .woocommerce .woocommerce-checkout.checkout form .form-row input::placeholder, .woocommerce-EditAccountForm.edit-account input[type="text"]::placeholder,
  .woocommerce-EditAccountForm.edit-account input[type="email"]::placeholder,
  .woocommerce-EditAccountForm.edit-account input[type="password"]::placeholder,
  .login input[type="text"]::placeholder, .login input[type="password"]::placeholder,
  .woocommerce-ResetPassword.lost_reset_password input[type="text"]::placeholder,
  .checkout.woocommerce-checkout input[type="text"]::placeholder,
  .checkout.woocommerce-checkout input[type="email"]::placeholder,
  .checkout.woocommerce-checkout input[type="tel"]::placeholder,
  .checkout.woocommerce-checkout .select2-choice::placeholder,
  .checkout.woocommerce-checkout textarea::placeholder,
  .woocommerce form .form-row input.input-text::placeholder,
  .woocommerce form .form-row .select2-selection::placeholder,
  .woocommerce form .form-row .select2-choice::placeholder {
    color: #666666; }
  .form-control:focus, .wp-block-categories-dropdown select:focus,
  .wp-block-archives-dropdown select:focus, .woocommerce #review_form #respond input:focus[type="text"],
  .woocommerce #review_form #respond textarea:focus,
  .woocommerce #review_form #respond input:focus[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:focus, .woocommerce-cart-form .table.shop_table tr .quantity input:focus, .woocommerce .woocommerce-checkout.checkout form .form-row textarea:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row select:focus,
  .woocommerce .woocommerce-checkout.checkout form .form-row input:focus, .woocommerce-EditAccountForm.edit-account input:focus[type="text"],
  .woocommerce-EditAccountForm.edit-account input:focus[type="email"],
  .woocommerce-EditAccountForm.edit-account input:focus[type="password"],
  .login input:focus[type="text"], .login input:focus[type="password"],
  .woocommerce-ResetPassword.lost_reset_password input:focus[type="text"],
  .checkout.woocommerce-checkout input:focus[type="text"],
  .checkout.woocommerce-checkout input:focus[type="email"],
  .checkout.woocommerce-checkout input:focus[type="tel"],
  .checkout.woocommerce-checkout .select2-choice:focus,
  .checkout.woocommerce-checkout textarea:focus,
  .woocommerce form .form-row input.input-text:focus,
  .woocommerce form .form-row .select2-selection:focus,
  .woocommerce form .form-row .select2-choice:focus, .form-control:active, .wp-block-categories-dropdown select:active,
  .wp-block-archives-dropdown select:active, .woocommerce #review_form #respond input:active[type="text"],
  .woocommerce #review_form #respond textarea:active,
  .woocommerce #review_form #respond input:active[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:active, .woocommerce-cart-form .table.shop_table tr .quantity input:active, .woocommerce .woocommerce-checkout.checkout form .form-row textarea:active,
  .woocommerce .woocommerce-checkout.checkout form .form-row select:active,
  .woocommerce .woocommerce-checkout.checkout form .form-row input:active, .woocommerce-EditAccountForm.edit-account input:active[type="text"],
  .woocommerce-EditAccountForm.edit-account input:active[type="email"],
  .woocommerce-EditAccountForm.edit-account input:active[type="password"],
  .login input:active[type="text"], .login input:active[type="password"],
  .woocommerce-ResetPassword.lost_reset_password input:active[type="text"],
  .checkout.woocommerce-checkout input:active[type="text"],
  .checkout.woocommerce-checkout input:active[type="email"],
  .checkout.woocommerce-checkout input:active[type="tel"],
  .checkout.woocommerce-checkout .select2-choice:active,
  .checkout.woocommerce-checkout textarea:active,
  .woocommerce form .form-row input.input-text:active,
  .woocommerce form .form-row .select2-selection:active,
  .woocommerce form .form-row .select2-choice:active, .form-control.active, .wp-block-categories-dropdown select.active,
  .wp-block-archives-dropdown select.active, .woocommerce #review_form #respond input.active[type="text"],
  .woocommerce #review_form #respond textarea.active,
  .woocommerce #review_form #respond input.active[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .active.input-text, .woocommerce-cart-form .table.shop_table tr .quantity input.active, .woocommerce .woocommerce-checkout.checkout form .form-row textarea.active,
  .woocommerce .woocommerce-checkout.checkout form .form-row select.active,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.active, .woocommerce-EditAccountForm.edit-account input.active[type="text"],
  .woocommerce-EditAccountForm.edit-account input.active[type="email"],
  .woocommerce-EditAccountForm.edit-account input.active[type="password"],
  .login input.active[type="text"], .login input.active[type="password"],
  .woocommerce-ResetPassword.lost_reset_password input.active[type="text"],
  .checkout.woocommerce-checkout input.active[type="text"],
  .checkout.woocommerce-checkout input.active[type="email"],
  .checkout.woocommerce-checkout input.active[type="tel"],
  .checkout.woocommerce-checkout .active.select2-choice,
  .checkout.woocommerce-checkout textarea.active,
  .woocommerce form .form-row input.active.input-text,
  .woocommerce form .form-row .active.select2-selection,
  .woocommerce form .form-row .active.select2-choice {
    border: 1px solid var(--primary); }
  @media only screen and (max-width: 991px) {
    .form-control, .wp-block-categories-dropdown select,
    .wp-block-archives-dropdown select, .woocommerce #review_form #respond input[type="text"],
    .woocommerce #review_form #respond textarea,
    .woocommerce #review_form #respond input[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce .woocommerce-checkout.checkout form .form-row textarea,
    .woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"],
    .woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"],
    .woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"],
    .woocommerce .woocommerce-checkout.checkout form .form-row select,
    .woocommerce .woocommerce-checkout.checkout form .form-row input.input-text,
    .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce-EditAccountForm.edit-account input[type="text"],
    .woocommerce-EditAccountForm.edit-account input[type="email"],
    .woocommerce-EditAccountForm.edit-account input[type="password"],
    .login input[type="text"], .login input[type="password"],
    .woocommerce-ResetPassword.lost_reset_password input[type="text"],
    .checkout.woocommerce-checkout input[type="text"],
    .checkout.woocommerce-checkout input[type="email"],
    .checkout.woocommerce-checkout input[type="tel"],
    .checkout.woocommerce-checkout .select2-choice,
    .checkout.woocommerce-checkout textarea,
    .woocommerce form .form-row input.input-text,
    .woocommerce form .form-row .select2-selection,
    .woocommerce form .form-row .select2-choice {
      height: 50px; } }
  .form-control.form-control-light, .wp-block-categories-dropdown select.form-control-light,
  .wp-block-archives-dropdown select.form-control-light, .woocommerce #review_form #respond input.form-control-light[type="text"],
  .woocommerce #review_form #respond textarea.form-control-light,
  .woocommerce #review_form #respond input.form-control-light[type="email"], .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-control-light.input-text, .woocommerce-cart-form .table.shop_table tr .quantity input.form-control-light, .woocommerce .woocommerce-checkout.checkout form .form-row textarea.form-control-light,
  .woocommerce .woocommerce-checkout.checkout form .form-row select.form-control-light,
  .woocommerce .woocommerce-checkout.checkout form .form-row input.form-control-light, .woocommerce-EditAccountForm.edit-account input.form-control-light[type="text"],
  .woocommerce-EditAccountForm.edit-account input.form-control-light[type="email"],
  .woocommerce-EditAccountForm.edit-account input.form-control-light[type="password"],
  .login input.form-control-light[type="text"], .login input.form-control-light[type="password"],
  .woocommerce-ResetPassword.lost_reset_password input.form-control-light[type="text"],
  .checkout.woocommerce-checkout input.form-control-light[type="text"],
  .checkout.woocommerce-checkout input.form-control-light[type="email"],
  .checkout.woocommerce-checkout input.form-control-light[type="tel"],
  .checkout.woocommerce-checkout .form-control-light.select2-choice,
  .checkout.woocommerce-checkout textarea.form-control-light,
  .woocommerce form .form-row input.form-control-light.input-text,
  .woocommerce form .form-row .form-control-light.select2-selection,
  .woocommerce form .form-row .form-control-light.select2-choice {
    background: rgba(255, 255, 255, 0.1); }

.form-group {
  margin-bottom: 20px; }

.input-skew {
  display: block;
  transform: skewX(-12deg);
  flex: 1 1 auto;
  width: 1%;
  background-color: #fff;
  padding: 0 10px;
  margin: 0 10px; }
  .input-skew .form-control, .input-skew .wp-block-categories-dropdown select, .wp-block-categories-dropdown .input-skew select,
  .input-skew .wp-block-archives-dropdown select, .wp-block-archives-dropdown .input-skew select, .input-skew .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .input-skew input[type="text"],
  .input-skew .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .input-skew textarea,
  .input-skew .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .input-skew input[type="email"], .input-skew .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-skew .input-text, .input-skew .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .input-skew input, .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .input-skew textarea,
  .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .input-skew select,
  .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .input-skew input, .input-skew .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .input-skew input[type="text"],
  .input-skew .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .input-skew input[type="email"],
  .input-skew .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .input-skew input[type="password"],
  .input-skew .login input[type="text"], .login .input-skew input[type="text"], .input-skew .login input[type="password"], .login .input-skew input[type="password"],
  .input-skew .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .input-skew input[type="text"],
  .input-skew .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .input-skew input[type="text"],
  .input-skew .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .input-skew input[type="email"],
  .input-skew .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .input-skew input[type="tel"],
  .input-skew .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .input-skew .select2-choice,
  .input-skew .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .input-skew textarea,
  .input-skew .woocommerce form .form-row input.input-text, .woocommerce form .form-row .input-skew input.input-text,
  .input-skew .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .input-skew .select2-selection,
  .input-skew .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .input-skew .select2-choice {
    border: 0;
    border-radius: 0;
    height: 50px;
    transform: skewX(12deg);
    background: #fff; }
    .input-skew .form-control:focus, .input-skew .wp-block-categories-dropdown select:focus, .wp-block-categories-dropdown .input-skew select:focus,
    .input-skew .wp-block-archives-dropdown select:focus, .wp-block-archives-dropdown .input-skew select:focus, .input-skew .woocommerce #review_form #respond input:focus[type="text"], .woocommerce #review_form #respond .input-skew input:focus[type="text"],
    .input-skew .woocommerce #review_form #respond textarea:focus, .woocommerce #review_form #respond .input-skew textarea:focus,
    .input-skew .woocommerce #review_form #respond input:focus[type="email"], .woocommerce #review_form #respond .input-skew input:focus[type="email"], .input-skew .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:focus, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-skew .input-text:focus, .input-skew .woocommerce-cart-form .table.shop_table tr .quantity input:focus, .woocommerce-cart-form .table.shop_table tr .quantity .input-skew input:focus, .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row textarea:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .input-skew textarea:focus,
    .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row select:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .input-skew select:focus,
    .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row input:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .input-skew input:focus, .input-skew .woocommerce-EditAccountForm.edit-account input:focus[type="text"], .woocommerce-EditAccountForm.edit-account .input-skew input:focus[type="text"],
    .input-skew .woocommerce-EditAccountForm.edit-account input:focus[type="email"], .woocommerce-EditAccountForm.edit-account .input-skew input:focus[type="email"],
    .input-skew .woocommerce-EditAccountForm.edit-account input:focus[type="password"], .woocommerce-EditAccountForm.edit-account .input-skew input:focus[type="password"],
    .input-skew .login input:focus[type="text"], .login .input-skew input:focus[type="text"], .input-skew .login input:focus[type="password"], .login .input-skew input:focus[type="password"],
    .input-skew .woocommerce-ResetPassword.lost_reset_password input:focus[type="text"], .woocommerce-ResetPassword.lost_reset_password .input-skew input:focus[type="text"],
    .input-skew .checkout.woocommerce-checkout input:focus[type="text"], .checkout.woocommerce-checkout .input-skew input:focus[type="text"],
    .input-skew .checkout.woocommerce-checkout input:focus[type="email"], .checkout.woocommerce-checkout .input-skew input:focus[type="email"],
    .input-skew .checkout.woocommerce-checkout input:focus[type="tel"], .checkout.woocommerce-checkout .input-skew input:focus[type="tel"],
    .input-skew .checkout.woocommerce-checkout .select2-choice:focus, .checkout.woocommerce-checkout .input-skew .select2-choice:focus,
    .input-skew .checkout.woocommerce-checkout textarea:focus, .checkout.woocommerce-checkout .input-skew textarea:focus,
    .input-skew .woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row .input-skew input.input-text:focus,
    .input-skew .woocommerce form .form-row .select2-selection:focus, .woocommerce form .form-row .input-skew .select2-selection:focus,
    .input-skew .woocommerce form .form-row .select2-choice:focus, .woocommerce form .form-row .input-skew .select2-choice:focus, .input-skew .form-control:active, .input-skew .wp-block-categories-dropdown select:active, .wp-block-categories-dropdown .input-skew select:active,
    .input-skew .wp-block-archives-dropdown select:active, .wp-block-archives-dropdown .input-skew select:active, .input-skew .woocommerce #review_form #respond input:active[type="text"], .woocommerce #review_form #respond .input-skew input:active[type="text"],
    .input-skew .woocommerce #review_form #respond textarea:active, .woocommerce #review_form #respond .input-skew textarea:active,
    .input-skew .woocommerce #review_form #respond input:active[type="email"], .woocommerce #review_form #respond .input-skew input:active[type="email"], .input-skew .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:active, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-skew .input-text:active, .input-skew .woocommerce-cart-form .table.shop_table tr .quantity input:active, .woocommerce-cart-form .table.shop_table tr .quantity .input-skew input:active, .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row textarea:active, .woocommerce .woocommerce-checkout.checkout form .form-row .input-skew textarea:active,
    .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row select:active, .woocommerce .woocommerce-checkout.checkout form .form-row .input-skew select:active,
    .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row input:active, .woocommerce .woocommerce-checkout.checkout form .form-row .input-skew input:active, .input-skew .woocommerce-EditAccountForm.edit-account input:active[type="text"], .woocommerce-EditAccountForm.edit-account .input-skew input:active[type="text"],
    .input-skew .woocommerce-EditAccountForm.edit-account input:active[type="email"], .woocommerce-EditAccountForm.edit-account .input-skew input:active[type="email"],
    .input-skew .woocommerce-EditAccountForm.edit-account input:active[type="password"], .woocommerce-EditAccountForm.edit-account .input-skew input:active[type="password"],
    .input-skew .login input:active[type="text"], .login .input-skew input:active[type="text"], .input-skew .login input:active[type="password"], .login .input-skew input:active[type="password"],
    .input-skew .woocommerce-ResetPassword.lost_reset_password input:active[type="text"], .woocommerce-ResetPassword.lost_reset_password .input-skew input:active[type="text"],
    .input-skew .checkout.woocommerce-checkout input:active[type="text"], .checkout.woocommerce-checkout .input-skew input:active[type="text"],
    .input-skew .checkout.woocommerce-checkout input:active[type="email"], .checkout.woocommerce-checkout .input-skew input:active[type="email"],
    .input-skew .checkout.woocommerce-checkout input:active[type="tel"], .checkout.woocommerce-checkout .input-skew input:active[type="tel"],
    .input-skew .checkout.woocommerce-checkout .select2-choice:active, .checkout.woocommerce-checkout .input-skew .select2-choice:active,
    .input-skew .checkout.woocommerce-checkout textarea:active, .checkout.woocommerce-checkout .input-skew textarea:active,
    .input-skew .woocommerce form .form-row input.input-text:active, .woocommerce form .form-row .input-skew input.input-text:active,
    .input-skew .woocommerce form .form-row .select2-selection:active, .woocommerce form .form-row .input-skew .select2-selection:active,
    .input-skew .woocommerce form .form-row .select2-choice:active, .woocommerce form .form-row .input-skew .select2-choice:active {
      background: transparent !important; }

.input-area {
  position: relative; }
  .input-area label {
    position: absolute;
    font-size: 18px;
    font-weight: 400;
    top: 12px;
    left: 0px;
    z-index: 0;
    color: #858585;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    @media only screen and (max-width: 767px) {
      .input-area label {
        font-size: 16px; } }
  .input-area.focused label {
    top: -20px;
    font-size: 16px; }
  @media only screen and (max-width: 767px) {
    .input-area.focused label {
      top: -20px; } }

.input-line .form-control, .input-line .wp-block-categories-dropdown select, .wp-block-categories-dropdown .input-line select,
.input-line .wp-block-archives-dropdown select, .wp-block-archives-dropdown .input-line select, .input-line .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .input-line input[type="text"],
.input-line .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .input-line textarea,
.input-line .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .input-line input[type="email"], .input-line .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-line .input-text, .input-line .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .input-line input, .input-line .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .input-line textarea,
.input-line .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .input-line select,
.input-line .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .input-line input, .input-line .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .input-line input[type="text"],
.input-line .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .input-line input[type="email"],
.input-line .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .input-line input[type="password"],
.input-line .login input[type="text"], .login .input-line input[type="text"], .input-line .login input[type="password"], .login .input-line input[type="password"],
.input-line .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .input-line input[type="text"],
.input-line .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .input-line input[type="text"],
.input-line .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .input-line input[type="email"],
.input-line .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .input-line input[type="tel"],
.input-line .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .input-line .select2-choice,
.input-line .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .input-line textarea,
.input-line .woocommerce form .form-row input.input-text, .woocommerce form .form-row .input-line input.input-text,
.input-line .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .input-line .select2-selection,
.input-line .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .input-line .select2-choice {
  padding: 0;
  height: 50px;
  line-height: 1.2;
  font-size: 16px;
  border: none;
  border-radius: 0;
  background: transparent;
  border-bottom: 2px solid #D9D9D9; }

.input-line .default-select .btn.dropdown-toggle, .input-line .default-select .dropdown-toggle.wp-block-button__link, .input-line .default-select .woocommerce .widget_shopping_cart .buttons a.dropdown-toggle, .woocommerce .widget_shopping_cart .buttons .input-line .default-select a.dropdown-toggle,
.input-line .default-select .woocommerce.widget_shopping_cart .buttons a.dropdown-toggle, .woocommerce.widget_shopping_cart .buttons .input-line .default-select a.dropdown-toggle, .input-line .default-select .woocommerce #review_form #respond .form-submit input.dropdown-toggle, .woocommerce #review_form #respond .form-submit .input-line .default-select input.dropdown-toggle, .input-line .default-select .woocommerce-cart-form .table.shop_table tr .dropdown-toggle.button, .woocommerce-cart-form .table.shop_table tr .input-line .default-select .dropdown-toggle.button, .input-line .default-select .woocommerce-cart .wc-proceed-to-checkout a.dropdown-toggle.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .input-line .default-select a.dropdown-toggle.checkout-button, .input-line .default-select .woocommerce #respond input.dropdown-toggle#submit, .woocommerce #respond .input-line .default-select input.dropdown-toggle#submit,
.input-line .default-select .woocommerce a.dropdown-toggle.button, .woocommerce .input-line .default-select a.dropdown-toggle.button,
.input-line .default-select .woocommerce button.dropdown-toggle.button, .woocommerce .input-line .default-select button.dropdown-toggle.button,
.input-line .default-select .woocommerce input.dropdown-toggle.button, .woocommerce .input-line .default-select input.dropdown-toggle.button,
.input-line .default-select .woocommerce .dropdown-toggle#place_order, .woocommerce .input-line .default-select .dropdown-toggle#place_order {
  border-bottom: 2px solid #D9D9D9; }

textarea.form-control,
.woocommerce #review_form #respond textarea, .woocommerce-cart-form .table.shop_table tr td.actions .coupon textarea.input-text, .woocommerce .woocommerce-checkout.checkout form .form-row textarea,
.checkout.woocommerce-checkout textarea.select2-choice,
.checkout.woocommerce-checkout textarea,
.woocommerce form .form-row textarea.select2-selection,
.woocommerce form .form-row textarea.select2-choice {
  min-height: unset;
  height: auto; }

textarea {
  height: 120px;
  resize: none; }

input:-internal-autofill-selected {
  background: white !important;
  background-image: none !important;
  color: -internal-light-dark-color(black, white) !important; }

.input-group-text {
  padding: 5px 15px;
  background: #ffffff;
  margin-bottom: 0px !important;
  color: #666666;
  border-color: transparent; }

.toggle {
  cursor: pointer;
  display: block; }

.toggle-switch {
  display: inline-block;
  background: #f7f7f7;
  border-radius: 16px;
  width: 45px;
  height: 20px;
  position: relative;
  vertical-align: middle;
  transition: background 0.25s; }
  .toggle-switch:before, .toggle-switch:after {
    content: ""; }
  .toggle-switch:before {
    display: block;
    background: linear-gradient(to bottom, #fff 0%, #eee 100%);
    border-radius: 50%;
    width: 17px;
    height: 17px;
    position: absolute;
    top: 1px;
    left: 3px;
    transition: left 0.25s; }
  .toggle:hover .toggle-switch:before {
    background: linear-gradient(to bottom, #fff 0%, #fff 100%); }
  .toggle-checkbox:checked + .toggle-switch {
    background: var(--primary); }
    .toggle-checkbox:checked + .toggle-switch:before {
      left: 26px; }

.toggle-checkbox {
  position: absolute;
  visibility: hidden; }

.toggle-label {
  margin-left: 15px;
  position: relative;
  top: 2px;
  font-size: 16px;
  font-weight: 400; }

.file-upload-wrapper {
  position: relative;
  width: 100%;
  height: calc(1.5em + 1rem + 2px);
  border: 1px solid #F2F2F2;
  border-radius: 5px;
  color: #AEAED5; }
  .file-upload-wrapper:before, .file-upload-wrapper:after {
    position: absolute;
    top: 0;
    font-weight: 400;
    pointer-events: none; }
  .file-upload-wrapper:after {
    content: attr(data-text);
    left: 0;
    background: #ffffff;
    padding: 4px 15px;
    display: block;
    width: calc(100% - 40px);
    z-index: 20;
    height: calc(1.5em + 1rem + 2px);
    line-height: 30px;
    border-radius: 5px 10px 10px 5px;
    overflow: hidden; }
  .file-upload-wrapper:before {
    content: 'Upload';
    right: 0;
    display: inline-block;
    height: calc(1.5em + 1rem + 2px);
    background: var(--primary);
    color: #fff;
    z-index: 25;
    font-size: 14px;
    line-height: 40px;
    padding: 0 15px;
    text-transform: capitalize;
    border-radius: 0 5px 5px 0; }
  .file-upload-wrapper:hover:before {
    background: #ff6106; }
  .file-upload-wrapper input {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    height: calc(1.5em + 1rem + 2px);
    margin: 0;
    padding: 0;
    display: block;
    cursor: pointer;
    width: 100%; }

#ui-datepicker-div {
  display: none;
  background: #fafafa;
  box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
  margin-top: 0.25rem;
  border-radius: 0.5rem;
  padding: 0.5rem; }

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

.ui-datepicker-calendar thead th {
  padding: 0.25rem 0;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 400;
  color: #666666; }

.ui-datepicker-calendar tbody td {
  width: 2.5rem;
  text-align: center;
  padding: 0; }
  .ui-datepicker-calendar tbody td a {
    display: block;
    border-radius: 0.25rem;
    line-height: 2rem;
    transition: 0.3s all;
    color: #666666;
    font-size: 0.875rem;
    text-decoration: none; }
    .ui-datepicker-calendar tbody td a:hover {
      background-color: var(--primary);
      color: white; }
    .ui-datepicker-calendar tbody td a.ui-state-active {
      background-color: var(--primary);
      color: white; }

.ui-datepicker-header a.ui-corner-all {
  cursor: pointer;
  position: absolute;
  top: 0;
  width: 2rem;
  height: 2rem;
  margin: 0.5rem;
  border-radius: 0.25rem;
  transition: 0.3s all; }
  .ui-datepicker-header a.ui-corner-all:hover {
    background-color: #ffe2d2;
    color: #fff; }

.ui-datepicker-header a.ui-datepicker-prev {
  left: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 0.5rem;
  background-position: 50%;
  transform: rotate(180deg); }

.ui-datepicker-header a.ui-datepicker-next {
  right: 0;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMyIgaGVpZ2h0PSIxMyIgdmlld0JveD0iMCAwIDEzIDEzIj48cGF0aCBmaWxsPSIjNDI0NzcwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik03LjI4OCA2LjI5NkwzLjIwMiAyLjIxYS43MS43MSAwIDAgMSAuMDA3LS45OTljLjI4LS4yOC43MjUtLjI4Ljk5OS0uMDA3TDguODAzIDUuOGEuNjk1LjY5NSAwIDAgMSAuMjAyLjQ5Ni42OTUuNjk1IDAgMCAxLS4yMDIuNDk3bC00LjU5NSA0LjU5NWEuNzA0LjcwNCAwIDAgMS0xLS4wMDcuNzEuNzEgMCAwIDEtLjAwNi0uOTk5bDQuMDg2LTQuMDg2eiIvPjwvc3ZnPg==");
  background-repeat: no-repeat;
  background-size: 10px;
  background-position: 50%; }

.ui-datepicker-header a > span {
  display: none; }

.ui-datepicker-title {
  text-align: center;
  line-height: 2rem;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding-bottom: 0.25rem; }

.ui-datepicker-week-col {
  color: #666666;
  font-weight: 400;
  font-size: 0.75rem; }

label.error {
  color: #ff0003;
  position: absolute;
  bottom: 0;
  margin-bottom: -22px;
  font-size: 12px;
  font-weight: 400; }

.nice-select {
  display: flex;
  align-items: center;
  border-top-left-radius: 3px !important;
  border-bottom-left-radius: 3px !important; }
  .nice-select ul {
    width: 100% !important; }

.nice-select .list {
  background: #222222; }

.nice-select .option:hover,
.nice-select .option.focus,
.nice-select .option.selected.focus {
  background-color: #222222;
  color: var(--primary); }

.default-select {
  width: 100% !important;
  }
  .default-select .btn.dropdown-toggle, .default-select .dropdown-toggle.wp-block-button__link, .default-select .appointment-page-1 .wizard-form .dropdown-toggle.sw-btn-prev.wp-block-button__link, .appointment-page-1 .wizard-form .default-select .dropdown-toggle.sw-btn-prev.wp-block-button__link, .default-select .appointment-page-1 .wizard-form .dropdown-toggle.sw-btn-prev.btn, .appointment-page-1 .wizard-form .default-select .dropdown-toggle.sw-btn-prev.btn, .default-select .appointment-page-1 .wizard-form .dropdown-toggle.sw-btn-next.wp-block-button__link, .appointment-page-1 .wizard-form .default-select .dropdown-toggle.sw-btn-next.wp-block-button__link, .default-select .appointment-page-1 .wizard-form .dropdown-toggle.sw-btn-next.btn, .appointment-page-1 .wizard-form .default-select .dropdown-toggle.sw-btn-next.btn, .default-select .woocommerce .widget_shopping_cart .buttons a.dropdown-toggle, .woocommerce .widget_shopping_cart .buttons .default-select a.dropdown-toggle,
  .default-select .woocommerce.widget_shopping_cart .buttons a.dropdown-toggle, .woocommerce.widget_shopping_cart .buttons .default-select a.dropdown-toggle, .default-select .woocommerce #review_form #respond .form-submit input.dropdown-toggle, .woocommerce #review_form #respond .form-submit .default-select input.dropdown-toggle, .default-select .woocommerce-cart-form .table.shop_table tr .dropdown-toggle.button, .woocommerce-cart-form .table.shop_table tr .default-select .dropdown-toggle.button, .default-select .woocommerce-cart .wc-proceed-to-checkout a.dropdown-toggle.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .default-select a.dropdown-toggle.checkout-button, .default-select .woocommerce #respond input.dropdown-toggle#submit, .woocommerce #respond .default-select input.dropdown-toggle#submit,
  .default-select .woocommerce a.dropdown-toggle.button, .woocommerce .default-select a.dropdown-toggle.button,
  .default-select .woocommerce button.dropdown-toggle.button, .woocommerce .default-select button.dropdown-toggle.button,
  .default-select .woocommerce input.dropdown-toggle.button, .woocommerce .default-select input.dropdown-toggle.button,
  .default-select .woocommerce .dropdown-toggle#place_order, .woocommerce .default-select .dropdown-toggle#place_order {
    height: 50px;
    padding: 5px 15px;
    font-size: 14px;
    font-weight: 400;
    color: #232;
    font-family: var(--font-family-base);
    transition: all 0.3s ease-in-out;
    background-color: #F2F2F2;
    border-radius: 0; }
    .default-select .btn.dropdown-toggle:focus, .default-select .dropdown-toggle.wp-block-button__link:focus, .default-select .woocommerce .widget_shopping_cart .buttons a.dropdown-toggle:focus, .woocommerce .widget_shopping_cart .buttons .default-select a.dropdown-toggle:focus,
    .default-select .woocommerce.widget_shopping_cart .buttons a.dropdown-toggle:focus, .woocommerce.widget_shopping_cart .buttons .default-select a.dropdown-toggle:focus, .default-select .woocommerce #review_form #respond .form-submit input.dropdown-toggle:focus, .woocommerce #review_form #respond .form-submit .default-select input.dropdown-toggle:focus, .default-select .woocommerce-cart-form .table.shop_table tr .dropdown-toggle.button:focus, .woocommerce-cart-form .table.shop_table tr .default-select .dropdown-toggle.button:focus, .default-select .woocommerce-cart .wc-proceed-to-checkout a.dropdown-toggle.checkout-button:focus, .woocommerce-cart .wc-proceed-to-checkout .default-select a.dropdown-toggle.checkout-button:focus, .default-select .woocommerce #respond input.dropdown-toggle#submit:focus, .woocommerce #respond .default-select input.dropdown-toggle#submit:focus,
    .default-select .woocommerce a.dropdown-toggle.button:focus, .woocommerce .default-select a.dropdown-toggle.button:focus,
    .default-select .woocommerce button.dropdown-toggle.button:focus, .woocommerce .default-select button.dropdown-toggle.button:focus,
    .default-select .woocommerce input.dropdown-toggle.button:focus, .woocommerce .default-select input.dropdown-toggle.button:focus,
    .default-select .woocommerce .dropdown-toggle#place_order:focus, .woocommerce .default-select .dropdown-toggle#place_order:focus {
      outline: 0 !important;
      outline-offset: 0; }
    .default-select .btn.dropdown-toggle:after, .default-select .dropdown-toggle.wp-block-button__link:after, .default-select .appointment-page-1 .wizard-form .dropdown-toggle.btn.sw-btn-prev:after, .appointment-page-1 .wizard-form .default-select .dropdown-toggle.btn.sw-btn-prev:after, .default-select .appointment-page-1 .wizard-form .dropdown-toggle.btn.sw-btn-next:after, .appointment-page-1 .wizard-form .default-select .dropdown-toggle.btn.sw-btn-next:after, .default-select .woocommerce .widget_shopping_cart .buttons a.dropdown-toggle:after, .woocommerce .widget_shopping_cart .buttons .default-select a.dropdown-toggle:after,
    .default-select .woocommerce.widget_shopping_cart .buttons a.dropdown-toggle:after, .woocommerce.widget_shopping_cart .buttons .default-select a.dropdown-toggle:after, .default-select .woocommerce #review_form #respond .form-submit input.dropdown-toggle:after, .woocommerce #review_form #respond .form-submit .default-select input.dropdown-toggle:after, .default-select .woocommerce-cart-form .table.shop_table tr .dropdown-toggle.button:after, .woocommerce-cart-form .table.shop_table tr .default-select .dropdown-toggle.button:after, .default-select .woocommerce-cart .wc-proceed-to-checkout a.dropdown-toggle.checkout-button:after, .woocommerce-cart .wc-proceed-to-checkout .default-select a.dropdown-toggle.checkout-button:after, .default-select .woocommerce #respond input.dropdown-toggle#submit:after, .woocommerce #respond .default-select input.dropdown-toggle#submit:after,
    .default-select .woocommerce a.dropdown-toggle.button:after, .woocommerce .default-select a.dropdown-toggle.button:after,
    .default-select .woocommerce button.dropdown-toggle.button:after, .woocommerce .default-select button.dropdown-toggle.button:after,
    .default-select .woocommerce input.dropdown-toggle.button:after, .woocommerce .default-select input.dropdown-toggle.button:after,
    .default-select .woocommerce .dropdown-toggle#place_order:after, .woocommerce .default-select .dropdown-toggle#place_order:after {
      content: "\f107";
      font-family: "Font Awesome 6 free";
      border: 0;
      font-weight: 700;
      margin-left: 18px;
      font-size: 14px;
      color: var(--title); }
    .default-select .btn.dropdown-toggle .filter-option, .default-select .dropdown-toggle.wp-block-button__link .filter-option, .default-select .woocommerce .widget_shopping_cart .buttons a.dropdown-toggle .filter-option, .woocommerce .widget_shopping_cart .buttons .default-select a.dropdown-toggle .filter-option, .default-select .woocommerce.widget_shopping_cart .buttons a.dropdown-toggle .filter-option, .woocommerce.widget_shopping_cart .buttons .default-select a.dropdown-toggle .filter-option, .default-select .woocommerce #review_form #respond .form-submit input.dropdown-toggle .filter-option, .woocommerce #review_form #respond .form-submit .default-select input.dropdown-toggle .filter-option, .default-select .woocommerce-cart-form .table.shop_table tr .dropdown-toggle.button .filter-option, .woocommerce-cart-form .table.shop_table tr .default-select .dropdown-toggle.button .filter-option, .default-select .woocommerce-cart .wc-proceed-to-checkout a.dropdown-toggle.checkout-button .filter-option, .woocommerce-cart .wc-proceed-to-checkout .default-select a.dropdown-toggle.checkout-button .filter-option, .default-select .woocommerce #respond input.dropdown-toggle#submit .filter-option, .woocommerce #respond .default-select input.dropdown-toggle#submit .filter-option, .default-select .woocommerce a.dropdown-toggle.button .filter-option, .woocommerce .default-select a.dropdown-toggle.button .filter-option, .default-select .woocommerce button.dropdown-toggle.button .filter-option, .woocommerce .default-select button.dropdown-toggle.button .filter-option, .default-select .woocommerce input.dropdown-toggle.button .filter-option, .woocommerce .default-select input.dropdown-toggle.button .filter-option, .default-select .woocommerce .dropdown-toggle#place_order .filter-option, .woocommerce .default-select .dropdown-toggle#place_order .filter-option {
      height: auto; }
  .default-select .dropdown-menu {
    border-radius: 0;
    background-color: #fff;
    border: 0;
    padding: 0;
    z-index: 99999;
    box-shadow: 0px 14px 30px 0px rgba(225, 50, 0, 0.1); }
    .default-select .dropdown-menu.inner {
      padding: 10px 0; }
    .default-select .dropdown-menu span {
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
    .default-select .dropdown-menu .dropdown-item {
      padding: 5px 15px; }
      .default-select .dropdown-menu .dropdown-item.active.selected {
        background-color: var(--primary);
        color: #fff !important; }

.form-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%; }

.form-select {
  border: 1px solid transparent; }
  .form-select .dropdown-toggle {
    border: 0 !important;
    padding: 0;
    font-weight: normal;
    text-transform: unset;
    outline: none; }
    .form-select .dropdown-toggle:focus {
      outline: 0 !important;
      outline-offset: 0; }
    .form-select .dropdown-toggle:after {
      content: none; }
  .form-select.show {
    box-shadow: none !important;
    outline: 0px !important; }
    .form-select.show .dropdown-toggle {
      box-shadow: none !important;
      outline: 0px !important; }
    .form-select.show.btn-group .dropdown-menu.inner {
      display: block; }
  .form-select .dropdown-menu {
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin-top: -1px;
    padding: 10px 0;
    box-shadow: 0 15px 30px 0 rgba(0, 0, 0, 0.2);
    font-size: 14px; }
    .form-select .dropdown-menu ul li {
      padding: 0; }
      .form-select .dropdown-menu ul li a {
        display: block;
        padding: 8px 20px;
        clear: both;
        font-weight: 400;
        color: #333;
        white-space: nowrap; }
        .form-select .dropdown-menu ul li a img {
          border-radius: 100%;
          -webkit-border-radius: 100%;
          margin-right: 5px; }
        .form-select .dropdown-menu ul li a:hover {
          background-color: #f2f2f4; }
      .form-select .dropdown-menu ul li.selected a {
        background-color: var(--primary);
        color: #fff; }
  .form-select:focus, .form-select:active, .form-select.active {
    border-color: var(--primary); }

.form-select.btn-group {
  padding: 10px 20px;
  border-width: 1px; }
  .form-select.btn-group.show {
    box-shadow: 0 0px 10px 4px rgba(31, 66, 135, 0.1) !important;
    border-color: var(--primary); }
  .form-select.btn-group .form-control .dropdown-toggle.btn-default, .form-select.btn-group .wp-block-categories-dropdown select .dropdown-toggle.btn-default, .wp-block-categories-dropdown .form-select.btn-group select .dropdown-toggle.btn-default, .form-select.btn-group .wp-block-archives-dropdown select .dropdown-toggle.btn-default, .wp-block-archives-dropdown .form-select.btn-group select .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce #review_form #respond input[type="text"] .dropdown-toggle.btn-default, .woocommerce #review_form #respond .form-select.btn-group input[type="text"] .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce #review_form #respond textarea .dropdown-toggle.btn-default, .woocommerce #review_form #respond .form-select.btn-group textarea .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce #review_form #respond input[type="email"] .dropdown-toggle.btn-default, .woocommerce #review_form #respond .form-select.btn-group input[type="email"] .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text .dropdown-toggle.btn-default, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .form-select.btn-group .input-text .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce-cart-form .table.shop_table tr .quantity input .dropdown-toggle.btn-default, .woocommerce-cart-form .table.shop_table tr .quantity .form-select.btn-group input .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce .woocommerce-checkout.checkout form .form-row select .dropdown-toggle.btn-default, .woocommerce .woocommerce-checkout.checkout form .form-row .form-select.btn-group select .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce .woocommerce-checkout.checkout form .form-row input .dropdown-toggle.btn-default, .woocommerce .woocommerce-checkout.checkout form .form-row .form-select.btn-group input .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce-EditAccountForm.edit-account input[type="text"] .dropdown-toggle.btn-default, .woocommerce-EditAccountForm.edit-account .form-select.btn-group input[type="text"] .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce-EditAccountForm.edit-account input[type="email"] .dropdown-toggle.btn-default, .woocommerce-EditAccountForm.edit-account .form-select.btn-group input[type="email"] .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce-EditAccountForm.edit-account input[type="password"] .dropdown-toggle.btn-default, .woocommerce-EditAccountForm.edit-account .form-select.btn-group input[type="password"] .dropdown-toggle.btn-default, .form-select.btn-group .login input[type="text"] .dropdown-toggle.btn-default, .login .form-select.btn-group input[type="text"] .dropdown-toggle.btn-default, .form-select.btn-group .login input[type="password"] .dropdown-toggle.btn-default, .login .form-select.btn-group input[type="password"] .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce-ResetPassword.lost_reset_password input[type="text"] .dropdown-toggle.btn-default, .woocommerce-ResetPassword.lost_reset_password .form-select.btn-group input[type="text"] .dropdown-toggle.btn-default, .form-select.btn-group .checkout.woocommerce-checkout input[type="text"] .dropdown-toggle.btn-default, .checkout.woocommerce-checkout .form-select.btn-group input[type="text"] .dropdown-toggle.btn-default, .form-select.btn-group .checkout.woocommerce-checkout input[type="email"] .dropdown-toggle.btn-default, .checkout.woocommerce-checkout .form-select.btn-group input[type="email"] .dropdown-toggle.btn-default, .form-select.btn-group .checkout.woocommerce-checkout input[type="tel"] .dropdown-toggle.btn-default, .checkout.woocommerce-checkout .form-select.btn-group input[type="tel"] .dropdown-toggle.btn-default, .form-select.btn-group .checkout.woocommerce-checkout .select2-choice .dropdown-toggle.btn-default, .checkout.woocommerce-checkout .form-select.btn-group .select2-choice .dropdown-toggle.btn-default, .form-select.btn-group .checkout.woocommerce-checkout textarea .dropdown-toggle.btn-default, .checkout.woocommerce-checkout .form-select.btn-group textarea .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce form .form-row input.input-text .dropdown-toggle.btn-default, .woocommerce form .form-row .form-select.btn-group input.input-text .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce form .form-row .select2-selection .dropdown-toggle.btn-default, .woocommerce form .form-row .form-select.btn-group .select2-selection .dropdown-toggle.btn-default, .form-select.btn-group .woocommerce form .form-row .select2-choice .dropdown-toggle.btn-default, .woocommerce form .form-row .form-select.btn-group .select2-choice .dropdown-toggle.btn-default {
    padding: 0; }
  .form-select.btn-group .dropdown-toggle .caret {
    font-size: 10px;
    top: 50%;
    right: 5px;
    transform: translateY(-50%); }
    .form-select.btn-group .dropdown-toggle .caret:before {
      content: "\f078"; }

.custom-file-label {
  box-shadow: 0 0px 10px 4px rgba(31, 66, 135, 0.1);
  height: 45px;
  border-radius: 30px !important;
  padding: 10px 20px;
  font-size: 15px;
  border-color: transparent; }
  .custom-file-label:after {
    content: none !important; }

.dz-form.radius-no .form-control, .dz-form.radius-no .wp-block-categories-dropdown select, .wp-block-categories-dropdown .dz-form.radius-no select,
.dz-form.radius-no .wp-block-archives-dropdown select, .wp-block-archives-dropdown .dz-form.radius-no select, .dz-form.radius-no .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .dz-form.radius-no input[type="text"],
.dz-form.radius-no .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .dz-form.radius-no textarea,
.dz-form.radius-no .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .dz-form.radius-no input[type="email"], .dz-form.radius-no .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .dz-form.radius-no .input-text, .dz-form.radius-no .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .dz-form.radius-no input, .dz-form.radius-no .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.radius-no textarea,
.dz-form.radius-no .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.radius-no select,
.dz-form.radius-no .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.radius-no input, .dz-form.radius-no .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .dz-form.radius-no input[type="text"],
.dz-form.radius-no .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .dz-form.radius-no input[type="email"],
.dz-form.radius-no .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .dz-form.radius-no input[type="password"],
.dz-form.radius-no .login input[type="text"], .login .dz-form.radius-no input[type="text"], .dz-form.radius-no .login input[type="password"], .login .dz-form.radius-no input[type="password"],
.dz-form.radius-no .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .dz-form.radius-no input[type="text"],
.dz-form.radius-no .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .dz-form.radius-no input[type="text"],
.dz-form.radius-no .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .dz-form.radius-no input[type="email"],
.dz-form.radius-no .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .dz-form.radius-no input[type="tel"],
.dz-form.radius-no .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .dz-form.radius-no .select2-choice,
.dz-form.radius-no .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .dz-form.radius-no textarea,
.dz-form.radius-no .woocommerce form .form-row input.input-text, .woocommerce form .form-row .dz-form.radius-no input.input-text,
.dz-form.radius-no .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .dz-form.radius-no .select2-selection,
.dz-form.radius-no .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .dz-form.radius-no .select2-choice {
  border-radius: 0; }

.dz-form.style-1 {
  padding-left: 20px; }
  .dz-form.style-1 .input-line .form-control, .dz-form.style-1 .input-line .wp-block-categories-dropdown select, .wp-block-categories-dropdown .dz-form.style-1 .input-line select,
  .dz-form.style-1 .input-line .wp-block-archives-dropdown select, .wp-block-archives-dropdown .dz-form.style-1 .input-line select, .dz-form.style-1 .input-line .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .dz-form.style-1 .input-line input[type="text"],
  .dz-form.style-1 .input-line .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .dz-form.style-1 .input-line textarea,
  .dz-form.style-1 .input-line .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .dz-form.style-1 .input-line input[type="email"], .dz-form.style-1 .input-line .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .dz-form.style-1 .input-line .input-text, .dz-form.style-1 .input-line .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .dz-form.style-1 .input-line input,
  .dz-form.style-1 .input-line .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-1 .input-line select,
  .dz-form.style-1 .input-line .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-1 .input-line input, .dz-form.style-1 .input-line .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .dz-form.style-1 .input-line input[type="text"],
  .dz-form.style-1 .input-line .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .dz-form.style-1 .input-line input[type="email"],
  .dz-form.style-1 .input-line .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .dz-form.style-1 .input-line input[type="password"],
  .dz-form.style-1 .input-line .login input[type="text"], .login .dz-form.style-1 .input-line input[type="text"], .dz-form.style-1 .input-line .login input[type="password"], .login .dz-form.style-1 .input-line input[type="password"],
  .dz-form.style-1 .input-line .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .dz-form.style-1 .input-line input[type="text"],
  .dz-form.style-1 .input-line .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .dz-form.style-1 .input-line input[type="text"],
  .dz-form.style-1 .input-line .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .dz-form.style-1 .input-line input[type="email"],
  .dz-form.style-1 .input-line .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .dz-form.style-1 .input-line input[type="tel"],
  .dz-form.style-1 .input-line .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .dz-form.style-1 .input-line .select2-choice,
  .dz-form.style-1 .input-line .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .dz-form.style-1 .input-line textarea,
  .dz-form.style-1 .input-line .woocommerce form .form-row input.input-text, .woocommerce form .form-row .dz-form.style-1 .input-line input.input-text,
  .dz-form.style-1 .input-line .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .dz-form.style-1 .input-line .select2-selection,
  .dz-form.style-1 .input-line .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .dz-form.style-1 .input-line .select2-choice {
    border-bottom: 3px solid #D9D9D9; }
    @media only screen and (max-width: 1480px) {
      .dz-form.style-1 .input-line .form-control, .dz-form.style-1 .input-line .wp-block-categories-dropdown select, .wp-block-categories-dropdown .dz-form.style-1 .input-line select,
      .dz-form.style-1 .input-line .wp-block-archives-dropdown select, .wp-block-archives-dropdown .dz-form.style-1 .input-line select, .dz-form.style-1 .input-line .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .dz-form.style-1 .input-line input[type="text"],
      .dz-form.style-1 .input-line .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .dz-form.style-1 .input-line textarea,
      .dz-form.style-1 .input-line .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .dz-form.style-1 .input-line input[type="email"], .dz-form.style-1 .input-line .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .dz-form.style-1 .input-line .input-text, .dz-form.style-1 .input-line .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .dz-form.style-1 .input-line input,
      .dz-form.style-1 .input-line .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-1 .input-line select,
      .dz-form.style-1 .input-line .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-1 .input-line input, .dz-form.style-1 .input-line .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .dz-form.style-1 .input-line input[type="text"],
      .dz-form.style-1 .input-line .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .dz-form.style-1 .input-line input[type="email"],
      .dz-form.style-1 .input-line .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .dz-form.style-1 .input-line input[type="password"],
      .dz-form.style-1 .input-line .login input[type="text"], .login .dz-form.style-1 .input-line input[type="text"], .dz-form.style-1 .input-line .login input[type="password"], .login .dz-form.style-1 .input-line input[type="password"],
      .dz-form.style-1 .input-line .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .dz-form.style-1 .input-line input[type="text"],
      .dz-form.style-1 .input-line .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .dz-form.style-1 .input-line input[type="text"],
      .dz-form.style-1 .input-line .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .dz-form.style-1 .input-line input[type="email"],
      .dz-form.style-1 .input-line .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .dz-form.style-1 .input-line input[type="tel"],
      .dz-form.style-1 .input-line .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .dz-form.style-1 .input-line .select2-choice,
      .dz-form.style-1 .input-line .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .dz-form.style-1 .input-line textarea,
      .dz-form.style-1 .input-line .woocommerce form .form-row input.input-text, .woocommerce form .form-row .dz-form.style-1 .input-line input.input-text,
      .dz-form.style-1 .input-line .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .dz-form.style-1 .input-line .select2-selection,
      .dz-form.style-1 .input-line .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .dz-form.style-1 .input-line .select2-choice {
        border-bottom: 2px solid #D9D9D9; } }
  .dz-form.style-1 .input-area label {
    top: 5px; }
  .dz-form.style-1 .input-area.focused label {
    top: -15px;
    color: var(--primary); }
  .dz-form.style-1 select {
    border: none;
    border-bottom: 3px solid #D9D9D9;
    left: 0; }
  .dz-form.style-1 .form-control, .dz-form.style-1 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .dz-form.style-1 select,
  .dz-form.style-1 .wp-block-archives-dropdown select, .wp-block-archives-dropdown .dz-form.style-1 select, .dz-form.style-1 .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .dz-form.style-1 input[type="text"],
  .dz-form.style-1 .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .dz-form.style-1 textarea,
  .dz-form.style-1 .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .dz-form.style-1 input[type="email"], .dz-form.style-1 .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .dz-form.style-1 .input-text, .dz-form.style-1 .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .dz-form.style-1 input, .dz-form.style-1 .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-1 textarea,
  .dz-form.style-1 .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-1 select,
  .dz-form.style-1 .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-1 input, .dz-form.style-1 .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .dz-form.style-1 input[type="text"],
  .dz-form.style-1 .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .dz-form.style-1 input[type="email"],
  .dz-form.style-1 .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .dz-form.style-1 input[type="password"],
  .dz-form.style-1 .login input[type="text"], .login .dz-form.style-1 input[type="text"], .dz-form.style-1 .login input[type="password"], .login .dz-form.style-1 input[type="password"],
  .dz-form.style-1 .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .dz-form.style-1 input[type="text"],
  .dz-form.style-1 .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .dz-form.style-1 input[type="text"],
  .dz-form.style-1 .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .dz-form.style-1 input[type="email"],
  .dz-form.style-1 .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .dz-form.style-1 input[type="tel"],
  .dz-form.style-1 .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .dz-form.style-1 .select2-choice,
  .dz-form.style-1 .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .dz-form.style-1 textarea,
  .dz-form.style-1 .woocommerce form .form-row input.input-text, .woocommerce form .form-row .dz-form.style-1 input.input-text,
  .dz-form.style-1 .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .dz-form.style-1 .select2-selection,
  .dz-form.style-1 .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .dz-form.style-1 .select2-choice {
    font-weight: 500;
    color: #000; }
  .dz-form.style-1 textarea {
    height: 160px;
    padding-top: 15px; }
  .dz-form.style-1 textarea::placeholder {
    font-size: 18px;
    color: #666666CC; }
  .dz-form.style-1 input::placeholder {
    font-size: 18px;
    color: #666666CC; }
  .dz-form.style-1 .input-group {
    margin-bottom: 60px; }
    .dz-form.style-1 .input-group.m-b30 {
      margin-bottom: 30px; }
    @media only screen and (max-width: 1480px) {
      .dz-form.style-1 .input-group {
        margin-bottom: 45px; } }
  .dz-form.style-1 .input-recaptcha {
    margin-bottom: 30px; }
  @media only screen and (max-width: 1199px) {
    .dz-form.style-1 input {
      font-size: 18px; }
    .dz-form.style-1 textarea {
      height: 120px; }
    .dz-form.style-1 textarea::placeholder,
    .dz-form.style-1 input::placeholder {
      font-size: 16px; }
    .dz-form.style-1 .input-group {
      margin-bottom: 40px; } }
  @media only screen and (max-width: 991px) {
    .dz-form.style-1 input {
      font-size: 16px;
      padding-bottom: 5px; }
    .dz-form.style-1 textarea {
      height: 100px; }
    .dz-form.style-1 .input-group {
      margin-bottom: 30px; } }
  @media only screen and (max-width: 767px) {
    .dz-form.style-1 {
      padding: 0; } }

.dz-form.style-2 {
  padding: 45px 50px;
  padding-bottom: 60px;
  z-index: 9; }
  .dz-form.style-2 .input-area {
    position: relative; }
    .dz-form.style-2 .input-area label {
      font-size: 14px;
      font-weight: 500;
      color: var(--primary);
      z-index: -1; }
  .dz-form.style-2 textarea {
    height: 100px !important;
    padding: 10px 0; }
  .dz-form.style-2 textarea::placeholder {
    font-size: 18px;
    color: #666666CC; }
  .dz-form.style-2 input::placeholder {
    font-size: 18px;
    color: #666666CC; }
  .dz-form.style-2 .form-check {
    align-items: center;
    display: flex;
    height: auto;
    min-height: auto; }
    .dz-form.style-2 .form-check .form-check-input {
      height: 24px;
      width: 24px;
      margin-top: 0;
      border-radius: 0;
      background-color: transparent;
      border: 2px solid var(--primary); }
    .dz-form.style-2 .form-check .form-check-input:checked {
      background-color: var(--secondary); }
  .dz-form.style-2 .form-control, .dz-form.style-2 .wp-block-categories-dropdown select, .wp-block-categories-dropdown .dz-form.style-2 select,
  .dz-form.style-2 .wp-block-archives-dropdown select, .wp-block-archives-dropdown .dz-form.style-2 select, .dz-form.style-2 .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .dz-form.style-2 input[type="text"],
  .dz-form.style-2 .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .dz-form.style-2 textarea,
  .dz-form.style-2 .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .dz-form.style-2 input[type="email"], .dz-form.style-2 .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .dz-form.style-2 .input-text, .dz-form.style-2 .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .dz-form.style-2 input, .dz-form.style-2 .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-2 textarea,
  .dz-form.style-2 .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-2 select,
  .dz-form.style-2 .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .dz-form.style-2 input, .dz-form.style-2 .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .dz-form.style-2 input[type="text"],
  .dz-form.style-2 .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .dz-form.style-2 input[type="email"],
  .dz-form.style-2 .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .dz-form.style-2 input[type="password"],
  .dz-form.style-2 .login input[type="text"], .login .dz-form.style-2 input[type="text"], .dz-form.style-2 .login input[type="password"], .login .dz-form.style-2 input[type="password"],
  .dz-form.style-2 .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .dz-form.style-2 input[type="text"],
  .dz-form.style-2 .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .dz-form.style-2 input[type="text"],
  .dz-form.style-2 .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .dz-form.style-2 input[type="email"],
  .dz-form.style-2 .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .dz-form.style-2 input[type="tel"],
  .dz-form.style-2 .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .dz-form.style-2 .select2-choice,
  .dz-form.style-2 .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .dz-form.style-2 textarea,
  .dz-form.style-2 .woocommerce form .form-row input.input-text, .woocommerce form .form-row .dz-form.style-2 input.input-text,
  .dz-form.style-2 .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .dz-form.style-2 .select2-selection,
  .dz-form.style-2 .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .dz-form.style-2 .select2-choice {
    color: rgba(255, 255, 255, 0.8);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2); }
  .dz-form.style-2 .input-group {
    margin-bottom: 60px;
    z-index: 1; }
  @media only screen and (max-width: 1280px) {
    .dz-form.style-2 {
      padding: 45px 35px; } }
  @media only screen and (max-width: 1199px) {
    .dz-form.style-2 input {
      font-size: 18px; }
    .dz-form.style-2 textarea {
      height: 120px; }
    .dz-form.style-2 textarea::placeholder,
    .dz-form.style-2 input::placeholder {
      font-size: 16px; }
    .dz-form.style-2 .input-group {
      margin-bottom: 40px; } }
  @media only screen and (max-width: 991px) {
    .dz-form.style-2 {
      margin-bottom: 30px; }
      .dz-form.style-2 input {
        font-size: 16px;
        padding-bottom: 5px; }
      .dz-form.style-2 textarea {
        height: 100px; }
      .dz-form.style-2 .input-group {
        margin-bottom: 30px; } }
  @media only screen and (max-width: 767px) {
    .dz-form.style-2 {
      padding: 30px 25px; } }
  @media only screen and (max-width: 575px) {
    .dz-form.style-2 .input-group {
      margin-bottom: 25px; }
      .dz-form.style-2 .input-group textarea,
      .dz-form.style-2 .input-group select,
      .dz-form.style-2 .input-group input {
        line-height: 1;
        padding-bottom: 10px;
        font-size: 14px; }
      .dz-form.style-2 .input-group label {
        position: absolute;
        font-size: 14px;
        font-weight: 500;
        color: var(--primary);
        top: 4px;
        left: 0px;
        z-index: -1;
        transition: all 0.5s; }
      .dz-form.style-2 .input-group textarea {
        padding-top: 10px; } }

.input-group {
  margin-bottom: 20px; }

.dz-ajax-overlay {
  position: relative; }
  .dz-ajax-overlay:after {
    content: "Loading...";
    height: 100%;
    width: 100%;
    background-color: #000;
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 99;
    border-radius: 0;
    opacity: 0.8;
    color: #fff;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 2px;
    font-weight: 500;
    font-size: 14px;
    font-style: italic;
    transform: skewX(-12deg); }

.calculator-form {
  background: var(--secondary);
  padding: 35px; }
  @media only screen and (max-width: 767px) {
    .calculator-form {
      padding: 25px; } }
  @media only screen and (max-width: 575px) {
    .calculator-form {
      padding: 20px; } }
  .calculator-form .form-control, .calculator-form .wp-block-categories-dropdown select, .wp-block-categories-dropdown .calculator-form select,
  .calculator-form .wp-block-archives-dropdown select, .wp-block-archives-dropdown .calculator-form select, .calculator-form .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .calculator-form input[type="text"],
  .calculator-form .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .calculator-form textarea,
  .calculator-form .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .calculator-form input[type="email"], .calculator-form .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .calculator-form .input-text, .calculator-form .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .calculator-form input, .calculator-form .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .calculator-form textarea,
  .calculator-form .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .calculator-form select,
  .calculator-form .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .calculator-form input, .calculator-form .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .calculator-form input[type="text"],
  .calculator-form .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .calculator-form input[type="email"],
  .calculator-form .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .calculator-form input[type="password"],
  .calculator-form .login input[type="text"], .login .calculator-form input[type="text"], .calculator-form .login input[type="password"], .login .calculator-form input[type="password"],
  .calculator-form .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .calculator-form input[type="text"],
  .calculator-form .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .calculator-form input[type="text"],
  .calculator-form .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .calculator-form input[type="email"],
  .calculator-form .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .calculator-form input[type="tel"],
  .calculator-form .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .calculator-form .select2-choice,
  .calculator-form .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .calculator-form textarea,
  .calculator-form .woocommerce form .form-row input.input-text, .woocommerce form .form-row .calculator-form input.input-text,
  .calculator-form .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .calculator-form .select2-selection,
  .calculator-form .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .calculator-form .select2-choice {
    background: rgba(255, 255, 255, 0.1);
    border: 0;
    padding: 10px;
    color: #fff; }
  .calculator-form form-label {
    font-size: 15px; }
  .calculator-form .input-group ::placeholder {
    color: #c9c9c9; }
  .calculator-form .input-line .default-select .btn.dropdown-toggle, .calculator-form .input-line .default-select .dropdown-toggle.wp-block-button__link, .calculator-form .input-line .default-select .woocommerce .widget_shopping_cart .buttons a.dropdown-toggle, .woocommerce .widget_shopping_cart .buttons .calculator-form .input-line .default-select a.dropdown-toggle,
  .calculator-form .input-line .default-select .woocommerce.widget_shopping_cart .buttons a.dropdown-toggle, .woocommerce.widget_shopping_cart .buttons .calculator-form .input-line .default-select a.dropdown-toggle, .calculator-form .input-line .default-select .woocommerce #review_form #respond .form-submit input.dropdown-toggle, .woocommerce #review_form #respond .form-submit .calculator-form .input-line .default-select input.dropdown-toggle, .calculator-form .input-line .default-select .woocommerce-cart-form .table.shop_table tr .dropdown-toggle.button, .woocommerce-cart-form .table.shop_table tr .calculator-form .input-line .default-select .dropdown-toggle.button, .calculator-form .input-line .default-select .woocommerce-cart .wc-proceed-to-checkout a.dropdown-toggle.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .calculator-form .input-line .default-select a.dropdown-toggle.checkout-button, .calculator-form .input-line .default-select .woocommerce #respond input.dropdown-toggle#submit, .woocommerce #respond .calculator-form .input-line .default-select input.dropdown-toggle#submit,
  .calculator-form .input-line .default-select .woocommerce a.dropdown-toggle.button, .woocommerce .calculator-form .input-line .default-select a.dropdown-toggle.button,
  .calculator-form .input-line .default-select .woocommerce button.dropdown-toggle.button, .woocommerce .calculator-form .input-line .default-select button.dropdown-toggle.button,
  .calculator-form .input-line .default-select .woocommerce input.dropdown-toggle.button, .woocommerce .calculator-form .input-line .default-select input.dropdown-toggle.button,
  .calculator-form .input-line .default-select .woocommerce .dropdown-toggle#place_order, .woocommerce .calculator-form .input-line .default-select .dropdown-toggle#place_order {
    border: 0;
    background: rgba(255, 255, 255, 0.1);
    color: #fff !important; }
    .calculator-form .input-line .default-select .btn.dropdown-toggle:after, .calculator-form .input-line .default-select .dropdown-toggle.wp-block-button__link:after, .calculator-form .input-line .default-select .woocommerce .widget_shopping_cart .buttons a.dropdown-toggle:after, .woocommerce .widget_shopping_cart .buttons .calculator-form .input-line .default-select a.dropdown-toggle:after,
    .calculator-form .input-line .default-select .woocommerce.widget_shopping_cart .buttons a.dropdown-toggle:after, .woocommerce.widget_shopping_cart .buttons .calculator-form .input-line .default-select a.dropdown-toggle:after, .calculator-form .input-line .default-select .woocommerce #review_form #respond .form-submit input.dropdown-toggle:after, .woocommerce #review_form #respond .form-submit .calculator-form .input-line .default-select input.dropdown-toggle:after, .calculator-form .input-line .default-select .woocommerce-cart-form .table.shop_table tr .dropdown-toggle.button:after, .woocommerce-cart-form .table.shop_table tr .calculator-form .input-line .default-select .dropdown-toggle.button:after, .calculator-form .input-line .default-select .woocommerce-cart .wc-proceed-to-checkout a.dropdown-toggle.checkout-button:after, .woocommerce-cart .wc-proceed-to-checkout .calculator-form .input-line .default-select a.dropdown-toggle.checkout-button:after, .calculator-form .input-line .default-select .woocommerce #respond input.dropdown-toggle#submit:after, .woocommerce #respond .calculator-form .input-line .default-select input.dropdown-toggle#submit:after,
    .calculator-form .input-line .default-select .woocommerce a.dropdown-toggle.button:after, .woocommerce .calculator-form .input-line .default-select a.dropdown-toggle.button:after,
    .calculator-form .input-line .default-select .woocommerce button.dropdown-toggle.button:after, .woocommerce .calculator-form .input-line .default-select button.dropdown-toggle.button:after,
    .calculator-form .input-line .default-select .woocommerce input.dropdown-toggle.button:after, .woocommerce .calculator-form .input-line .default-select input.dropdown-toggle.button:after,
    .calculator-form .input-line .default-select .woocommerce .dropdown-toggle#place_order:after, .woocommerce .calculator-form .input-line .default-select .dropdown-toggle#place_order:after {
      color: #fff; }

.shop-form .form-group {
  margin-bottom: 25px; }
  .shop-form .form-group input {
    padding: 17px 20px;
    height: 50px;
    font-size: 15px;
    border: none;
    color: #666666;
    background: #f3f3f3; }
  .shop-form .form-group .input-group-addon {
    position: absolute;
    right: 0px;
    top: 50%;
    z-index: 9;
    transform: translateY(-50%); }
    .shop-form .form-group .input-group-addon .coupon {
      color: #24262b;
      font-weight: 500;
      padding: 10px 15px;
      font-size: 15px;
      position: relative;
      z-index: 2;
      border: 0px; }

.shop-form .btn-grey {
  background: rgba(36, 38, 43, 0.5);
  color: white; }

button:hover,
button:active,
button:focus {
  outline: 0; }

.btn, .wp-block-button__link, .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a, .woocommerce #review_form #respond .form-submit input, .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order {
  padding: 10.5px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0;
  position: relative;
  line-height: 1.5;
  align-items: center;
  -webkit-transition: all 0.2s;
  -ms-transition: all 0.2s;
  transition: all 0.2s;
  display: inline-flex;
  color: #fff;
  justify-content: center; }
  @media only screen and (max-width: 1199px) {
    .btn, .wp-block-button__link, .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a,
    .woocommerce.widget_shopping_cart .buttons a, .woocommerce #review_form #respond .form-submit input, .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce #respond input#submit,
    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button,
    .woocommerce #place_order {
      padding: 8px 20px;
      font-size: 15px; } }
  @media only screen and (max-width: 575px) {
    .btn, .wp-block-button__link, .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a,
    .woocommerce.widget_shopping_cart .buttons a, .woocommerce #review_form #respond .form-submit input, .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce #respond input#submit,
    .woocommerce a.button,
    .woocommerce button.button,
    .woocommerce input.button,
    .woocommerce #place_order {
      font-size: 14px;
      padding: 7px 16px; } }
  .btn.btn-sharp, .btn-sharp.wp-block-button__link, .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.btn-sharp,
  .woocommerce.widget_shopping_cart .buttons a.btn-sharp, .woocommerce #review_form #respond .form-submit input.btn-sharp, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn.sw-btn-prev, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn.sw-btn-next, .woocommerce-cart-form .table.shop_table tr .btn-sharp.button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .button.btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .button.btn.sw-btn-prev, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .button.btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .button.btn.sw-btn-next, .woocommerce-cart .wc-proceed-to-checkout a.btn-sharp.checkout-button, .woocommerce #respond input.btn-sharp#submit, .woocommerce #respond .appointment-page-1 .wizard-form input#submit.btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce #respond input#submit.btn.sw-btn-prev, .woocommerce #respond .appointment-page-1 .wizard-form input#submit.btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce #respond input#submit.btn.sw-btn-next,
  .woocommerce a.btn-sharp.button,
  .woocommerce button.btn-sharp.button,
  .woocommerce input.btn-sharp.button,
  .woocommerce .btn-sharp#place_order, .woocommerce .appointment-page-1 .wizard-form #place_order.btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce #place_order.btn.sw-btn-prev, .woocommerce .appointment-page-1 .wizard-form #place_order.btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce #place_order.btn.sw-btn-next {
    border-radius: 0; }
  .btn.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-lg > a,
  .woocommerce.widget_shopping_cart .buttons .btn-group-lg > a, .woocommerce #review_form #respond .form-submit .btn-group-lg > input, .woocommerce-cart-form .table.shop_table tr .btn-group-lg > .button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-lg > a.checkout-button, .woocommerce #respond .btn-group-lg > input#submit,
  .woocommerce .btn-group-lg > a.button,
  .woocommerce .btn-group-lg > button.button,
  .woocommerce .btn-group-lg > input.button,
  .woocommerce .btn-group-lg > #place_order, .btn-lg.wp-block-button__link, .appointment-page-1 .wizard-form .btn-lg.btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-lg.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.btn-lg,
  .woocommerce.widget_shopping_cart .buttons a.btn-lg, .woocommerce #review_form #respond .form-submit input.btn-lg, .woocommerce-cart-form .table.shop_table tr .btn-lg.button, .woocommerce-cart .wc-proceed-to-checkout a.btn-lg.checkout-button, .woocommerce #respond input.btn-lg#submit,
  .woocommerce a.btn-lg.button,
  .woocommerce button.btn-lg.button,
  .woocommerce input.btn-lg.button,
  .woocommerce .btn-lg#place_order {
    padding: 12px 30px;
    line-height: 24px;
    font-size: 16px; }
    @media only screen and (max-width: 991px) {
      .btn.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-lg > a,
      .woocommerce.widget_shopping_cart .buttons .btn-group-lg > a, .woocommerce #review_form #respond .form-submit .btn-group-lg > input, .woocommerce-cart-form .table.shop_table tr .btn-group-lg > .button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-lg > a.checkout-button, .woocommerce #respond .btn-group-lg > input#submit,
      .woocommerce .btn-group-lg > a.button,
      .woocommerce .btn-group-lg > button.button,
      .woocommerce .btn-group-lg > input.button,
      .woocommerce .btn-group-lg > #place_order, .btn-lg.wp-block-button__link, .appointment-page-1 .wizard-form .btn-lg.btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-lg.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.btn-lg,
      .woocommerce.widget_shopping_cart .buttons a.btn-lg, .woocommerce #review_form #respond .form-submit input.btn-lg, .woocommerce-cart-form .table.shop_table tr .btn-lg.button, .woocommerce-cart .wc-proceed-to-checkout a.btn-lg.checkout-button, .woocommerce #respond input.btn-lg#submit,
      .woocommerce a.btn-lg.button,
      .woocommerce button.btn-lg.button,
      .woocommerce input.btn-lg.button,
      .woocommerce .btn-lg#place_order {
        padding: 12px 25px; } }
    @media only screen and (max-width: 767px) {
      .btn.btn-lg, .btn-group-lg > .btn, .btn-group-lg > .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-lg > .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-lg > a,
      .woocommerce.widget_shopping_cart .buttons .btn-group-lg > a, .woocommerce #review_form #respond .form-submit .btn-group-lg > input, .woocommerce-cart-form .table.shop_table tr .btn-group-lg > .button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-lg > a.checkout-button, .woocommerce #respond .btn-group-lg > input#submit,
      .woocommerce .btn-group-lg > a.button,
      .woocommerce .btn-group-lg > button.button,
      .woocommerce .btn-group-lg > input.button,
      .woocommerce .btn-group-lg > #place_order, .btn-lg.wp-block-button__link, .appointment-page-1 .wizard-form .btn-lg.btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-lg.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.btn-lg,
      .woocommerce.widget_shopping_cart .buttons a.btn-lg, .woocommerce #review_form #respond .form-submit input.btn-lg, .woocommerce-cart-form .table.shop_table tr .btn-lg.button, .woocommerce-cart .wc-proceed-to-checkout a.btn-lg.checkout-button, .woocommerce #respond input.btn-lg#submit,
      .woocommerce a.btn-lg.button,
      .woocommerce button.btn-lg.button,
      .woocommerce input.btn-lg.button,
      .woocommerce .btn-lg#place_order {
        padding: 10px 20px;
        font-size: 14px; } }
  .btn.btn-primary, .wp-block-button__link, .appointment-page-1 .wizard-form .btn-primary.btn.sw-btn-prev, .appointment-page-1 .wizard-form .sw-btn-prev.wp-block-button__link, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.sw-btn-prev, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.sw-btn-prev, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.sw-btn-prev.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.sw-btn-prev.checkout-button,
  .appointment-page-1 .wizard-form .woocommerce a.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form a.sw-btn-prev.button,
  .appointment-page-1 .wizard-form .woocommerce button.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form button.sw-btn-prev.button,
  .appointment-page-1 .wizard-form .woocommerce input.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form input.sw-btn-prev.button, .appointment-page-1 .wizard-form .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a,
  .woocommerce.widget_shopping_cart .buttons a, .woocommerce #review_form #respond .form-submit input, .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce #respond input#submit,
  .woocommerce a.button,
  .woocommerce button.button,
  .woocommerce input.button,
  .woocommerce #place_order {
    color: var(--theme-text-color); }
    .btn.btn-primary:hover, .wp-block-button__link:hover, .appointment-page-1 .wizard-form .btn-primary.btn.sw-btn-prev:hover, .appointment-page-1 .wizard-form .sw-btn-prev.wp-block-button__link:hover,
    .appointment-page-1 .wizard-form .woocommerce a.sw-btn-prev.button:hover, .woocommerce .appointment-page-1 .wizard-form a.sw-btn-prev.button:hover,
    .appointment-page-1 .wizard-form .woocommerce button.sw-btn-prev.button:hover, .woocommerce .appointment-page-1 .wizard-form button.sw-btn-prev.button:hover,
    .appointment-page-1 .wizard-form .woocommerce input.sw-btn-prev.button:hover, .woocommerce .appointment-page-1 .wizard-form input.sw-btn-prev.button:hover, .appointment-page-1 .wizard-form .btn.sw-btn-next:hover, .woocommerce .widget_shopping_cart .buttons a:hover,
    .woocommerce.widget_shopping_cart .buttons a:hover, .woocommerce #review_form #respond .form-submit input:hover, .woocommerce-cart-form .table.shop_table tr .button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce #respond input#submit:hover,
    .woocommerce a.button:hover,
    .woocommerce button.button:hover,
    .woocommerce input.button:hover,
    .woocommerce #place_order:hover {
      color: var(--theme-text-color); }
  .btn i, .wp-block-button__link i, .appointment-page-1 .wizard-form .btn.sw-btn-prev i, .appointment-page-1 .wizard-form .btn.sw-btn-next i, .woocommerce .widget_shopping_cart .buttons a i, .woocommerce.widget_shopping_cart .buttons a i, .woocommerce #review_form #respond .form-submit input i, .woocommerce-cart-form .table.shop_table tr .button i, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button i, .woocommerce #respond input#submit i, .woocommerce a.button i, .woocommerce button.button i, .woocommerce input.button i, .woocommerce #place_order i {
    font-size: 18px;
    line-height: 1;
    margin-left: 10px; }
  .btn.btn-skew, .btn-skew.wp-block-button__link, .appointment-page-1 .wizard-form .btn-skew.btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-skew.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.btn-skew,
  .woocommerce.widget_shopping_cart .buttons a.btn-skew, .woocommerce #review_form #respond .form-submit input.btn-skew, .woocommerce-cart-form .table.shop_table tr .btn-skew.button, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew.checkout-button, .woocommerce #respond input.btn-skew#submit,
  .woocommerce a.btn-skew.button,
  .woocommerce button.btn-skew.button,
  .woocommerce input.btn-skew.button,
  .woocommerce .btn-skew#place_order {
    border-radius: 0;
    border: 0;
    margin-left: 5px;
    margin-right: 12px;
    transform: skewX(-12deg); }
    .btn.btn-skew .skew-inner, .btn-skew.wp-block-button__link .skew-inner, .appointment-page-1 .wizard-form .btn-skew.btn.sw-btn-prev .skew-inner, .appointment-page-1 .wizard-form .btn-skew.btn.sw-btn-next .skew-inner, .woocommerce .widget_shopping_cart .buttons a.btn-skew .skew-inner, .woocommerce.widget_shopping_cart .buttons a.btn-skew .skew-inner, .woocommerce #review_form #respond .form-submit input.btn-skew .skew-inner, .woocommerce-cart-form .table.shop_table tr .btn-skew.button .skew-inner, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew.checkout-button .skew-inner, .woocommerce #respond input.btn-skew#submit .skew-inner, .woocommerce a.btn-skew.button .skew-inner, .woocommerce button.btn-skew.button .skew-inner, .woocommerce input.btn-skew.button .skew-inner, .woocommerce .btn-skew#place_order .skew-inner {
      display: block;
      position: relative;
      overflow: hidden;
      transform: skewX(12deg); }
    .btn.btn-skew .text, .btn-skew.wp-block-button__link .text, .appointment-page-1 .wizard-form .btn-skew.btn.sw-btn-prev .text, .appointment-page-1 .wizard-form .btn-skew.btn.sw-btn-next .text, .woocommerce .widget_shopping_cart .buttons a.btn-skew .text, .woocommerce.widget_shopping_cart .buttons a.btn-skew .text, .woocommerce #review_form #respond .form-submit input.btn-skew .text, .woocommerce-cart-form .table.shop_table tr .btn-skew.button .text, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew.checkout-button .text, .woocommerce #respond input.btn-skew#submit .text, .woocommerce a.btn-skew.button .text, .woocommerce button.btn-skew.button .text, .woocommerce input.btn-skew.button .text, .woocommerce .btn-skew#place_order .text {
      padding: 0;
      display: block;
      position: relative; }
    .btn.btn-skew:hover .text, .btn-skew.wp-block-button__link:hover .text, .woocommerce .widget_shopping_cart .buttons a.btn-skew:hover .text, .woocommerce.widget_shopping_cart .buttons a.btn-skew:hover .text, .woocommerce #review_form #respond .form-submit input.btn-skew:hover .text, .woocommerce-cart-form .table.shop_table tr .btn-skew.button:hover .text, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew.checkout-button:hover .text, .woocommerce #respond input.btn-skew#submit:hover .text, .woocommerce a.btn-skew.button:hover .text, .woocommerce button.btn-skew.button:hover .text, .woocommerce input.btn-skew.button:hover .text, .woocommerce .btn-skew#place_order:hover .text {
      animation: skew-text 0.3s forwards;
      will-change: transform; }
    .btn.btn-skew::after, .btn-skew.wp-block-button__link::after, .appointment-page-1 .wizard-form .btn-skew.btn.sw-btn-prev::after, .appointment-page-1 .wizard-form .btn-skew.btn.sw-btn-next::after, .woocommerce .widget_shopping_cart .buttons a.btn-skew::after,
    .woocommerce.widget_shopping_cart .buttons a.btn-skew::after, .woocommerce #review_form #respond .form-submit input.btn-skew::after, .woocommerce-cart-form .table.shop_table tr .btn-skew.button::after, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew.checkout-button::after, .woocommerce #respond input.btn-skew#submit::after,
    .woocommerce a.btn-skew.button::after,
    .woocommerce button.btn-skew.button::after,
    .woocommerce input.btn-skew.button::after,
    .woocommerce .btn-skew#place_order::after {
      content: "";
      position: absolute;
      background-color: inherit;
      height: 100%;
      width: 7px;
      right: -12px;
      z-index: 1;
      top: 50%;
      transform: translateY(-50%); }
    .btn.btn-skew.btn-sm, .btn-group-sm > .btn.btn-skew, .btn-group-sm > .btn-skew.wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-sm > .btn-skew.btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-sm > .btn-skew.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-sm > a.btn-skew,
    .woocommerce.widget_shopping_cart .buttons .btn-group-sm > a.btn-skew, .woocommerce #review_form #respond .form-submit .btn-group-sm > input.btn-skew, .woocommerce-cart-form .table.shop_table tr .btn-group-sm > .btn-skew.button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-sm > a.btn-skew.checkout-button, .woocommerce #respond .btn-group-sm > input.btn-skew#submit,
    .woocommerce .btn-group-sm > a.btn-skew.button,
    .woocommerce .btn-group-sm > button.btn-skew.button,
    .woocommerce .btn-group-sm > input.btn-skew.button,
    .woocommerce .btn-group-sm > .btn-skew#place_order, .btn-skew.btn-sm.wp-block-button__link, .appointment-page-1 .wizard-form .btn-skew.btn-sm.btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-skew.btn-sm.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.btn-skew.btn-sm,
    .woocommerce.widget_shopping_cart .buttons a.btn-skew.btn-sm, .woocommerce #review_form #respond .form-submit input.btn-skew.btn-sm, .woocommerce-cart-form .table.shop_table tr .btn-skew.btn-sm.button, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew.btn-sm.checkout-button, .woocommerce #respond input.btn-skew.btn-sm#submit,
    .woocommerce a.btn-skew.btn-sm.button,
    .woocommerce button.btn-skew.btn-sm.button,
    .woocommerce input.btn-skew.btn-sm.button,
    .woocommerce .btn-skew.btn-sm#place_order {
      font-size: 14px;
      padding: 8px 20px; }
      .btn.btn-skew.btn-sm:after, .btn-group-sm > .btn.btn-skew:after, .btn-group-sm > .btn-skew.wp-block-button__link:after, .appointment-page-1 .wizard-form .btn-group-sm > .btn-skew.btn.sw-btn-prev:after, .appointment-page-1 .wizard-form .btn-group-sm > .btn-skew.btn.sw-btn-next:after, .woocommerce .widget_shopping_cart .buttons .btn-group-sm > a.btn-skew:after,
      .woocommerce.widget_shopping_cart .buttons .btn-group-sm > a.btn-skew:after, .woocommerce #review_form #respond .form-submit .btn-group-sm > input.btn-skew:after, .woocommerce-cart-form .table.shop_table tr .btn-group-sm > .btn-skew.button:after, .woocommerce-cart .wc-proceed-to-checkout .btn-group-sm > a.btn-skew.checkout-button:after, .woocommerce #respond .btn-group-sm > input.btn-skew#submit:after,
      .woocommerce .btn-group-sm > a.btn-skew.button:after,
      .woocommerce .btn-group-sm > button.btn-skew.button:after,
      .woocommerce .btn-group-sm > input.btn-skew.button:after,
      .woocommerce .btn-group-sm > .btn-skew#place_order:after, .btn-skew.btn-sm.wp-block-button__link:after, .appointment-page-1 .wizard-form .btn-skew.btn-sm.btn.sw-btn-prev:after, .appointment-page-1 .wizard-form .btn-skew.btn-sm.btn.sw-btn-next:after, .woocommerce .widget_shopping_cart .buttons a.btn-skew.btn-sm:after,
      .woocommerce.widget_shopping_cart .buttons a.btn-skew.btn-sm:after, .woocommerce #review_form #respond .form-submit input.btn-skew.btn-sm:after, .woocommerce-cart-form .table.shop_table tr .btn-skew.btn-sm.button:after, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew.btn-sm.checkout-button:after, .woocommerce #respond input.btn-skew.btn-sm#submit:after,
      .woocommerce a.btn-skew.btn-sm.button:after,
      .woocommerce button.btn-skew.btn-sm.button:after,
      .woocommerce input.btn-skew.btn-sm.button:after,
      .woocommerce .btn-skew.btn-sm#place_order:after {
        width: 5px;
        right: -9px; }

@keyframes skew-text {
  from {
    transform: translateX(0%); }
  50% {
    transform: translateX(-80%); }
  51% {
    transform: translateX(80%); }
  100% {
    transform: translateX(0%); } }
  .btn.btn-skew-2, .btn-skew-2.wp-block-button__link, .appointment-page-1 .wizard-form .btn-skew-2.btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-skew-2.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.btn-skew-2,
  .woocommerce.widget_shopping_cart .buttons a.btn-skew-2, .woocommerce #review_form #respond .form-submit input.btn-skew-2, .woocommerce-cart-form .table.shop_table tr .btn-skew-2.button, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew-2.checkout-button, .woocommerce #respond input.btn-skew-2#submit,
  .woocommerce a.btn-skew-2.button,
  .woocommerce button.btn-skew-2.button,
  .woocommerce input.btn-skew-2.button,
  .woocommerce .btn-skew-2#place_order {
    border-radius: 0;
    border: 0;
    z-index: 1;
    overflow: hidden;
    background-color: transparent; }
    .btn.btn-skew-2:hover, .btn-skew-2.wp-block-button__link:hover, .appointment-page-1 .wizard-form .btn-skew-2.btn.sw-btn-prev:hover, .appointment-page-1 .wizard-form .btn-skew-2.btn.sw-btn-next:hover, .woocommerce .widget_shopping_cart .buttons a.btn-skew-2:hover,
    .woocommerce.widget_shopping_cart .buttons a.btn-skew-2:hover, .woocommerce #review_form #respond .form-submit input.btn-skew-2:hover, .woocommerce-cart-form .table.shop_table tr .btn-skew-2.button:hover, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew-2.checkout-button:hover, .woocommerce #respond input.btn-skew-2#submit:hover,
    .woocommerce a.btn-skew-2.button:hover,
    .woocommerce button.btn-skew-2.button:hover,
    .woocommerce input.btn-skew-2.button:hover,
    .woocommerce .btn-skew-2#place_order:hover {
      background-color: transparent; }
    .btn.btn-skew-2:active, .btn-skew-2.wp-block-button__link:active, .appointment-page-1 .wizard-form .btn-skew-2.btn.sw-btn-prev:active, .appointment-page-1 .wizard-form .btn-skew-2.btn.sw-btn-next:active, .woocommerce .widget_shopping_cart .buttons a.btn-skew-2:active,
    .woocommerce.widget_shopping_cart .buttons a.btn-skew-2:active, .woocommerce #review_form #respond .form-submit input.btn-skew-2:active, .woocommerce-cart-form .table.shop_table tr .btn-skew-2.button:active, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew-2.checkout-button:active, .woocommerce #respond input.btn-skew-2#submit:active,
    .woocommerce a.btn-skew-2.button:active,
    .woocommerce button.btn-skew-2.button:active,
    .woocommerce input.btn-skew-2.button:active,
    .woocommerce .btn-skew-2#place_order:active, .btn.btn-skew-2:focus, .btn-skew-2.wp-block-button__link:focus, .appointment-page-1 .wizard-form .btn-skew-2.btn.sw-btn-prev:focus, .appointment-page-1 .wizard-form .btn-skew-2.btn.sw-btn-next:focus, .woocommerce .widget_shopping_cart .buttons a.btn-skew-2:focus,
    .woocommerce.widget_shopping_cart .buttons a.btn-skew-2:focus, .woocommerce #review_form #respond .form-submit input.btn-skew-2:focus, .woocommerce-cart-form .table.shop_table tr .btn-skew-2.button:focus, .woocommerce-cart .wc-proceed-to-checkout a.btn-skew-2.checkout-button:focus, .woocommerce #respond input.btn-skew-2#submit:focus,
    .woocommerce a.btn-skew-2.button:focus,
    .woocommerce button.btn-skew-2.button:focus,
    .woocommerce input.btn-skew-2.button:focus,
    .woocommerce .btn-skew-2#place_order:focus {
      background-color: transparent !important; }
  .btn i, .wp-block-button__link i, .appointment-page-1 .wizard-form .btn.sw-btn-prev i, .appointment-page-1 .wizard-form .btn.sw-btn-next i, .woocommerce .widget_shopping_cart .buttons a i, .woocommerce.widget_shopping_cart .buttons a i, .woocommerce #review_form #respond .form-submit input i, .woocommerce-cart-form .table.shop_table tr .button i, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button i, .woocommerce #respond input#submit i, .woocommerce a.button i, .woocommerce button.button i, .woocommerce input.button i, .woocommerce #place_order i {
    margin-right: 10px; }

.btn-block {
  display: block;
  width: 100%; }

.shadow-primary {
  box-shadow: 0px 5px 30px 0px var(--rgba-primary-2); }

.btn-rounded {
  border-radius: 50px; }

.btn-info {
  color: #fff; }
  .btn-info:hover {
    color: #fff; }
  .btn-info .btn-icon-left {
    color: #00aeff; }

.btn-white {
  background-color: #fff;
  color: #222; }
  .btn-white:hover {
    color: #222 !important;
    background-color: #fff !important; }

.btn-success {
  color: #fff; }
  .btn-success .btn-icon-left {
    color: #13c24d; }
  .btn-success:hover {
    color: #fff; }

.btn-primary, .wp-block-button__link, .appointment-page-1 .wizard-form .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a, .woocommerce #review_form #respond .form-submit input, .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order {
  border-color: var(--primary);
  background-color: var(--primary); }
  .btn-primary.disabled, .disabled.wp-block-button__link, .appointment-page-1 .wizard-form .disabled.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons a.disabled,
  .woocommerce.widget_shopping_cart .buttons a.disabled, .woocommerce #review_form #respond .form-submit input.disabled, .woocommerce-cart-form .table.shop_table tr .disabled.button, .woocommerce-cart .wc-proceed-to-checkout a.disabled.checkout-button, .woocommerce #respond input.disabled#submit,
  .woocommerce a.disabled.button,
  .woocommerce button.disabled.button,
  .woocommerce input.disabled.button,
  .woocommerce .disabled#place_order, .btn-primary:disabled, .wp-block-button__link:disabled, .appointment-page-1 .wizard-form .btn.sw-btn-next:disabled, .woocommerce .widget_shopping_cart .buttons a:disabled,
  .woocommerce.widget_shopping_cart .buttons a:disabled, .woocommerce #review_form #respond .form-submit input:disabled, .woocommerce-cart-form .table.shop_table tr .button:disabled, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:disabled, .woocommerce #respond input#submit:disabled,
  .woocommerce a.button:disabled,
  .woocommerce button.button:disabled,
  .woocommerce input.button:disabled,
  .woocommerce #place_order:disabled, .btn-primary:not(:disabled):not(.disabled).active, .wp-block-button__link:not(:disabled):not(.disabled).active, .appointment-page-1 .wizard-form .sw-btn-next.btn:not(:disabled):not(.disabled).active, .woocommerce .widget_shopping_cart .buttons a:not(:disabled):not(.disabled).active,
  .woocommerce.widget_shopping_cart .buttons a:not(:disabled):not(.disabled).active, .woocommerce #review_form #respond .form-submit input:not(:disabled):not(.disabled).active, .woocommerce-cart-form .table.shop_table tr .button:not(:disabled):not(.disabled).active, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:not(:disabled):not(.disabled).active, .woocommerce #respond input#submit:not(:disabled):not(.disabled).active,
  .woocommerce a.button:not(:disabled):not(.disabled).active,
  .woocommerce button.button:not(:disabled):not(.disabled).active,
  .woocommerce input.button:not(:disabled):not(.disabled).active,
  .woocommerce #place_order:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .wp-block-button__link:not(:disabled):not(.disabled):active, .appointment-page-1 .wizard-form .sw-btn-next.btn:not(:disabled):not(.disabled):active, .woocommerce .widget_shopping_cart .buttons a:not(:disabled):not(.disabled):active,
  .woocommerce.widget_shopping_cart .buttons a:not(:disabled):not(.disabled):active, .woocommerce #review_form #respond .form-submit input:not(:disabled):not(.disabled):active, .woocommerce-cart-form .table.shop_table tr .button:not(:disabled):not(.disabled):active, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:not(:disabled):not(.disabled):active, .woocommerce #respond input#submit:not(:disabled):not(.disabled):active,
  .woocommerce a.button:not(:disabled):not(.disabled):active,
  .woocommerce button.button:not(:disabled):not(.disabled):active,
  .woocommerce input.button:not(:disabled):not(.disabled):active,
  .woocommerce #place_order:not(:disabled):not(.disabled):active, .btn-primary:active, .wp-block-button__link:active, .appointment-page-1 .wizard-form .sw-btn-next.wp-block-button__link:active, .appointment-page-1 .wizard-form .sw-btn-next.btn:active,
  .appointment-page-1 .wizard-form .woocommerce a.sw-btn-next.button:active, .woocommerce .appointment-page-1 .wizard-form a.sw-btn-next.button:active,
  .appointment-page-1 .wizard-form .woocommerce button.sw-btn-next.button:active, .woocommerce .appointment-page-1 .wizard-form button.sw-btn-next.button:active,
  .appointment-page-1 .wizard-form .woocommerce input.sw-btn-next.button:active, .woocommerce .appointment-page-1 .wizard-form input.sw-btn-next.button:active, .woocommerce .widget_shopping_cart .buttons a:active,
  .woocommerce.widget_shopping_cart .buttons a:active, .woocommerce #review_form #respond .form-submit input:active, .woocommerce-cart-form .table.shop_table tr .button:active, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:active, .woocommerce #respond input#submit:active,
  .woocommerce a.button:active,
  .woocommerce button.button:active,
  .woocommerce input.button:active,
  .woocommerce #place_order:active, .btn-primary:focus, .wp-block-button__link:focus, .appointment-page-1 .wizard-form .btn.sw-btn-next:focus, .woocommerce .widget_shopping_cart .buttons a:focus,
  .woocommerce.widget_shopping_cart .buttons a:focus, .woocommerce #review_form #respond .form-submit input:focus, .woocommerce-cart-form .table.shop_table tr .button:focus, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus, .woocommerce #respond input#submit:focus,
  .woocommerce a.button:focus,
  .woocommerce button.button:focus,
  .woocommerce input.button:focus,
  .woocommerce #place_order:focus, .btn-primary:hover, .wp-block-button__link:hover, .appointment-page-1 .wizard-form .btn.sw-btn-next:hover, .woocommerce .widget_shopping_cart .buttons a:hover,
  .woocommerce.widget_shopping_cart .buttons a:hover, .woocommerce #review_form #respond .form-submit input:hover, .woocommerce-cart-form .table.shop_table tr .button:hover, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover, .woocommerce #respond input#submit:hover,
  .woocommerce a.button:hover,
  .woocommerce button.button:hover,
  .woocommerce input.button:hover,
  .woocommerce #place_order:hover {
    border-color: var(--primary-hover);
    background-color: var(--primary-hover); }
  .btn-primary .btn-icon-left, .wp-block-button__link .btn-icon-left, .appointment-page-1 .wizard-form .btn.sw-btn-next .btn-icon-left, .woocommerce .widget_shopping_cart .buttons a .btn-icon-left, .woocommerce.widget_shopping_cart .buttons a .btn-icon-left, .woocommerce #review_form #respond .form-submit input .btn-icon-left, .woocommerce-cart-form .table.shop_table tr .button .btn-icon-left, .woocommerce-cart .wc-proceed-to-checkout a.checkout-button .btn-icon-left, .woocommerce #respond input#submit .btn-icon-left, .woocommerce a.button .btn-icon-left, .woocommerce button.button .btn-icon-left, .woocommerce input.button .btn-icon-left, .woocommerce #place_order .btn-icon-left {
    color: var(--primary); }

.btn-secondary, .appointment-page-1 .wizard-form .btn.sw-btn-prev {
  border-color: var(--secondary);
  background-color: var(--secondary);
  color: #fff; }
  .btn-secondary:hover, .appointment-page-1 .wizard-form .btn.sw-btn-prev:hover, .btn-secondary:focus, .appointment-page-1 .wizard-form .btn.sw-btn-prev:focus, .btn-secondary:active, .appointment-page-1 .wizard-form .sw-btn-prev.wp-block-button__link:active, .appointment-page-1 .wizard-form .sw-btn-prev.btn:active, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.sw-btn-prev:active, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev:active,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.sw-btn-prev:active, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev:active, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.sw-btn-prev:active, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.sw-btn-prev:active, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .sw-btn-prev.button:active, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .sw-btn-prev.button:active, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.sw-btn-prev.checkout-button:active, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.sw-btn-prev.checkout-button:active, .appointment-page-1 .wizard-form .woocommerce #respond input.sw-btn-prev#submit:active, .woocommerce #respond .appointment-page-1 .wizard-form input.sw-btn-prev#submit:active,
  .appointment-page-1 .wizard-form .woocommerce a.sw-btn-prev.button:active, .woocommerce .appointment-page-1 .wizard-form a.sw-btn-prev.button:active,
  .appointment-page-1 .wizard-form .woocommerce button.sw-btn-prev.button:active, .woocommerce .appointment-page-1 .wizard-form button.sw-btn-prev.button:active,
  .appointment-page-1 .wizard-form .woocommerce input.sw-btn-prev.button:active, .woocommerce .appointment-page-1 .wizard-form input.sw-btn-prev.button:active,
  .appointment-page-1 .wizard-form .woocommerce .sw-btn-prev#place_order:active, .woocommerce .appointment-page-1 .wizard-form .sw-btn-prev#place_order:active {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: #fff; }
  .btn-secondary .btn-icon-left, .appointment-page-1 .wizard-form .btn.sw-btn-prev .btn-icon-left {
    color: var(--secondary); }

.btn-link {
  color: var(--primary);
  text-decoration: none; }
  .btn-link:hover {
    color: var(--primary-hover); }

.btn-underline {
  font-size: 1rem;
  color: var(--primary);
  font-weight: 400;
  border-bottom: 2px solid var(--primary); }

.btn-dark {
  color: #fff !important;
  border-color: var(--dark);
  background-color: var(--dark); }
  .btn-dark:hover, .btn-dark:focus, .btn-dark:active {
    color: #fff;
    background-color: var(--dark); }
  .btn-dark .btn-icon-left {
    color: #222222; }
  .btn-dark.light {
    background-color: #7d95ce;
    border-color: #7d95ce;
    color: #151F37 !important; }
    .btn-dark.light:hover {
      color: #fff !important; }

.btn-outline-primary, .is-style-outline .wp-block-button__link {
  color: var(--primary);
  border-color: var(--primary); }
  .btn-outline-primary.disabled, .is-style-outline .disabled.wp-block-button__link, .btn-outline-primary:disabled, .is-style-outline .wp-block-button__link:disabled, .btn-outline-primary:not(:disabled):not(.disabled).active, .is-style-outline .wp-block-button__link:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .is-style-outline .wp-block-button__link:not(:disabled):not(.disabled):active, .btn-outline-primary:active, .is-style-outline .wp-block-button__link:active, .btn-outline-primary:focus, .is-style-outline .wp-block-button__link:focus, .btn-outline-primary:hover, .is-style-outline .wp-block-button__link:hover {
    border-color: var(--primary-hover);
    background-color: var(--primary-hover);
    color: #fff; }

.btn-outline-secondary {
  color: var(--secondary);
  border-color: var(--secondary); }
  .btn-outline-secondary.disabled, .btn-outline-secondary:disabled, .btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:active, .btn-outline-secondary:focus, .btn-outline-secondary:hover {
    border-color: var(--secondary);
    background-color: var(--secondary);
    color: #fff; }

.btn-outline-danger {
  color: #ff0003; }
  .btn-outline-danger:hover {
    color: #fff; }

.btn-outline-info {
  color: #00aeff; }
  .btn-outline-info:hover {
    color: #fff; }

.btn-outline-success {
  color: #13c24d; }
  .btn-outline-success:hover {
    color: #fff; }

.btn-outline-warning {
  color: #FFBD13; }
  .btn-outline-warning:hover {
    color: #fff; }

.btn-outline-dark {
  color: #222222; }
  .btn-outline-dark:hover {
    color: #fff; }

.btn-check:checked + .btn, .btn-check:checked + .wp-block-button__link, .appointment-page-1 .wizard-form .btn-check:checked + .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-check:checked + .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-check:checked + a,
.woocommerce.widget_shopping_cart .buttons .btn-check:checked + a, .woocommerce #review_form #respond .form-submit .btn-check:checked + input, .woocommerce-cart-form .table.shop_table tr .btn-check:checked + .button, .woocommerce-cart .wc-proceed-to-checkout .btn-check:checked + a.checkout-button, .woocommerce #respond .btn-check:checked + input#submit,
.woocommerce .btn-check:checked + a.button,
.woocommerce .btn-check:checked + button.button,
.woocommerce .btn-check:checked + input.button,
.woocommerce .btn-check:checked + #place_order {
  color: #fff; }

.btn-xl {
  font-size: 22px;
  padding: 25px 35px; }

.btn-sm, .btn-group-sm > .btn, .btn-group-sm > .wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-sm > .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-sm > .btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-sm > a,
.woocommerce.widget_shopping_cart .buttons .btn-group-sm > a, .woocommerce #review_form #respond .form-submit .btn-group-sm > input, .woocommerce-cart-form .table.shop_table tr .btn-group-sm > .button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-sm > a.checkout-button, .woocommerce #respond .btn-group-sm > input#submit,
.woocommerce .btn-group-sm > a.button,
.woocommerce .btn-group-sm > button.button,
.woocommerce .btn-group-sm > input.button,
.woocommerce .btn-group-sm > #place_order {
  padding: 7px 12px;
  font-size: 12px; }

.btn-link-lg {
  font-weight: 700;
  font-size: 18px; }
  .btn-link-lg:hover {
    text-decoration: unset; }

.btn-light {
  background-color: #ebebeb;
  color: #222222; }
  .btn-light:hover {
    background-color: var(--primary);
    color: #000 !important;
    border-color: transparent; }
  .btn-light.text-primary:hover {
    color: #fff !important; }

.light.btn-success {
  color: #13c24d;
  border: 1px solid #c2f9d4;
  background-color: #f0fef4; }
  .light.btn-success:hover {
    background-color: #13c24d;
    border-color: #13c24d;
    color: #fff; }

.light.btn-info {
  color: #00aeff;
  border: 1px solid #c7edff;
  background-color: #e6f7ff; }
  .light.btn-info:hover {
    background-color: #00aeff;
    border-color: #00aeff;
    color: #fff; }

.light.btn-primary, .light.wp-block-button__link, .appointment-page-1 .wizard-form .light.sw-btn-next.wp-block-button__link, .appointment-page-1 .wizard-form .light.sw-btn-next.btn,
.appointment-page-1 .wizard-form .woocommerce a.light.sw-btn-next.button, .woocommerce .appointment-page-1 .wizard-form a.light.sw-btn-next.button,
.appointment-page-1 .wizard-form .woocommerce button.light.sw-btn-next.button, .woocommerce .appointment-page-1 .wizard-form button.light.sw-btn-next.button,
.appointment-page-1 .wizard-form .woocommerce input.light.sw-btn-next.button, .woocommerce .appointment-page-1 .wizard-form input.light.sw-btn-next.button, .woocommerce .widget_shopping_cart .buttons a.light,
.woocommerce.widget_shopping_cart .buttons a.light, .woocommerce #review_form #respond .form-submit input.light, .woocommerce-cart-form .table.shop_table tr .light.button, .woocommerce-cart .wc-proceed-to-checkout a.light.checkout-button, .woocommerce #respond input.light#submit,
.woocommerce a.light.button,
.woocommerce button.light.button,
.woocommerce input.light.button,
.woocommerce .light#place_order {
  color: var(--primary);
  border: 1px solid var(--rgba-primary-3);
  background-color: var(--rgba-primary-1); }
  .light.btn-primary:hover, .light.wp-block-button__link:hover, .appointment-page-1 .wizard-form .light.sw-btn-next.wp-block-button__link:hover, .appointment-page-1 .wizard-form .light.sw-btn-next.btn:hover, .woocommerce .widget_shopping_cart .buttons a.light:hover,
  .woocommerce.widget_shopping_cart .buttons a.light:hover, .woocommerce #review_form #respond .form-submit input.light:hover, .woocommerce-cart-form .table.shop_table tr .light.button:hover, .woocommerce-cart .wc-proceed-to-checkout a.light.checkout-button:hover, .woocommerce #respond input.light#submit:hover,
  .woocommerce a.light.button:hover,
  .woocommerce button.light.button:hover,
  .woocommerce input.light.button:hover,
  .woocommerce .light#place_order:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: #fff; }

.light.btn-secondary, .appointment-page-1 .wizard-form .light.sw-btn-prev.wp-block-button__link, .appointment-page-1 .wizard-form .light.sw-btn-prev.btn, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.light.sw-btn-prev, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.light.sw-btn-prev,
.appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.light.sw-btn-prev, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.light.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.light.sw-btn-prev, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.light.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .light.sw-btn-prev.button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .light.sw-btn-prev.button, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.light.sw-btn-prev.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.light.sw-btn-prev.checkout-button, .appointment-page-1 .wizard-form .woocommerce #respond input.light.sw-btn-prev#submit, .woocommerce #respond .appointment-page-1 .wizard-form input.light.sw-btn-prev#submit,
.appointment-page-1 .wizard-form .woocommerce a.light.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form a.light.sw-btn-prev.button,
.appointment-page-1 .wizard-form .woocommerce button.light.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form button.light.sw-btn-prev.button,
.appointment-page-1 .wizard-form .woocommerce input.light.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form input.light.sw-btn-prev.button,
.appointment-page-1 .wizard-form .woocommerce .light.sw-btn-prev#place_order, .woocommerce .appointment-page-1 .wizard-form .light.sw-btn-prev#place_order {
  color: var(--secondary);
  border: 1px solid var(--rgba-secondary-3);
  background-color: var(--rgba-secondary-1); }
  .light.btn-secondary:hover, .appointment-page-1 .wizard-form .light.sw-btn-prev.wp-block-button__link:hover, .appointment-page-1 .wizard-form .light.sw-btn-prev.btn:hover, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.light.sw-btn-prev:hover, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.light.sw-btn-prev:hover,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.light.sw-btn-prev:hover, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.light.sw-btn-prev:hover, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.light.sw-btn-prev:hover, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.light.sw-btn-prev:hover, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .light.sw-btn-prev.button:hover, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .light.sw-btn-prev.button:hover, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.light.sw-btn-prev.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.light.sw-btn-prev.checkout-button:hover, .appointment-page-1 .wizard-form .woocommerce #respond input.light.sw-btn-prev#submit:hover, .woocommerce #respond .appointment-page-1 .wizard-form input.light.sw-btn-prev#submit:hover,
  .appointment-page-1 .wizard-form .woocommerce a.light.sw-btn-prev.button:hover, .woocommerce .appointment-page-1 .wizard-form a.light.sw-btn-prev.button:hover,
  .appointment-page-1 .wizard-form .woocommerce button.light.sw-btn-prev.button:hover, .woocommerce .appointment-page-1 .wizard-form button.light.sw-btn-prev.button:hover,
  .appointment-page-1 .wizard-form .woocommerce input.light.sw-btn-prev.button:hover, .woocommerce .appointment-page-1 .wizard-form input.light.sw-btn-prev.button:hover,
  .appointment-page-1 .wizard-form .woocommerce .light.sw-btn-prev#place_order:hover, .woocommerce .appointment-page-1 .wizard-form .light.sw-btn-prev#place_order:hover, .light.btn-secondary:active, .appointment-page-1 .wizard-form .light.sw-btn-prev.wp-block-button__link:active, .appointment-page-1 .wizard-form .light.sw-btn-prev.btn:active, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.light.sw-btn-prev:active, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.light.sw-btn-prev:active,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.light.sw-btn-prev:active, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.light.sw-btn-prev:active, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.light.sw-btn-prev:active, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.light.sw-btn-prev:active, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .light.sw-btn-prev.button:active, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .light.sw-btn-prev.button:active, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.light.sw-btn-prev.checkout-button:active, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.light.sw-btn-prev.checkout-button:active, .appointment-page-1 .wizard-form .woocommerce #respond input.light.sw-btn-prev#submit:active, .woocommerce #respond .appointment-page-1 .wizard-form input.light.sw-btn-prev#submit:active,
  .appointment-page-1 .wizard-form .woocommerce a.light.sw-btn-prev.button:active, .woocommerce .appointment-page-1 .wizard-form a.light.sw-btn-prev.button:active,
  .appointment-page-1 .wizard-form .woocommerce button.light.sw-btn-prev.button:active, .woocommerce .appointment-page-1 .wizard-form button.light.sw-btn-prev.button:active,
  .appointment-page-1 .wizard-form .woocommerce input.light.sw-btn-prev.button:active, .woocommerce .appointment-page-1 .wizard-form input.light.sw-btn-prev.button:active,
  .appointment-page-1 .wizard-form .woocommerce .light.sw-btn-prev#place_order:active, .woocommerce .appointment-page-1 .wizard-form .light.sw-btn-prev#place_order:active, .light.btn-secondary:focus, .appointment-page-1 .wizard-form .light.sw-btn-prev.wp-block-button__link:focus, .appointment-page-1 .wizard-form .light.sw-btn-prev.btn:focus, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.light.sw-btn-prev:focus, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.light.sw-btn-prev:focus,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.light.sw-btn-prev:focus, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.light.sw-btn-prev:focus, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.light.sw-btn-prev:focus, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.light.sw-btn-prev:focus, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .light.sw-btn-prev.button:focus, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .light.sw-btn-prev.button:focus, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.light.sw-btn-prev.checkout-button:focus, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.light.sw-btn-prev.checkout-button:focus, .appointment-page-1 .wizard-form .woocommerce #respond input.light.sw-btn-prev#submit:focus, .woocommerce #respond .appointment-page-1 .wizard-form input.light.sw-btn-prev#submit:focus,
  .appointment-page-1 .wizard-form .woocommerce a.light.sw-btn-prev.button:focus, .woocommerce .appointment-page-1 .wizard-form a.light.sw-btn-prev.button:focus,
  .appointment-page-1 .wizard-form .woocommerce button.light.sw-btn-prev.button:focus, .woocommerce .appointment-page-1 .wizard-form button.light.sw-btn-prev.button:focus,
  .appointment-page-1 .wizard-form .woocommerce input.light.sw-btn-prev.button:focus, .woocommerce .appointment-page-1 .wizard-form input.light.sw-btn-prev.button:focus,
  .appointment-page-1 .wizard-form .woocommerce .light.sw-btn-prev#place_order:focus, .woocommerce .appointment-page-1 .wizard-form .light.sw-btn-prev#place_order:focus {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff; }

.light.btn-warning {
  color: #FFBD13;
  border: 1px solid #ffebb6;
  background-color: #fff3d5; }
  .light.btn-warning:hover {
    background-color: #FFBD13;
    border-color: #FFBD13;
    color: #fff; }

.light.btn-danger {
  color: #ff0003;
  border: 1px solid #ffd6d7;
  background-color: #ffe6e6; }
  .light.btn-danger:hover {
    background-color: #ff0003;
    border-color: #ff0003;
    color: #fff; }

.light.btn-dark {
  color: #222222;
  border: 1px solid #d5d5d5;
  background-color: #e1e1e1; }
  .light.btn-dark:hover {
    background-color: #222222;
    border-color: #222222;
    color: #fff; }

.btn-danger {
  color: #fff; }

.btn-icon i {
  margin: 0; }

.btn-icon-right {
  color: #fff;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  display: inline-block;
  margin: -15px -10px -15px 20px;
  padding: 15px 10px; }

.btn-icon-left {
  background: #fff;
  border-radius: 50px;
  display: inline-block;
  float: left;
  color: inherit;
  width: 40px;
  height: 40px;
  line-height: 40px;
  margin: -8px 15px -8px -20px; }

.wp-block-button {
  margin-bottom: 0.3125rem; }

.is-style-squared .wp-block-button__link {
  border-radius: 0; }

.wp-block-button__link {
  border-radius: 60px; }
  .wp-block-button__link:after {
    content: none; }

@media only screen and (max-width: 575px) {
  .btn-group .btn, .btn-group .wp-block-button__link, .btn-group .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group .btn.sw-btn-prev, .btn-group .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .btn-group .btn.sw-btn-next, .btn-group .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .btn-group a,
  .btn-group .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .btn-group a, .btn-group .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .btn-group input, .btn-group .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .btn-group .button, .btn-group .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .btn-group a.checkout-button, .btn-group .woocommerce #respond input#submit, .woocommerce #respond .btn-group input#submit,
  .btn-group .woocommerce a.button, .woocommerce .btn-group a.button,
  .btn-group .woocommerce button.button, .woocommerce .btn-group button.button,
  .btn-group .woocommerce input.button, .woocommerce .btn-group input.button,
  .btn-group .woocommerce #place_order, .woocommerce .btn-group #place_order {
    padding-left: 15px;
    padding-right: 15px; } }

.btn-check:checked + .btn-outline-primary, .is-style-outline .btn-check:checked + .wp-block-button__link {
  background-color: var(--primary);
  border-color: var(--primary); }

.btn-check:checked + .btn-outline-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary); }

.btn-check + .btn-outline-primary:hover, .is-style-outline .btn-check + .wp-block-button__link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff; }

.btn-check + .btn-outline-secondary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff; }

.btn-icon {
  padding: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center; }
  .btn-icon.btn-sm, .btn-group-sm > .btn-icon.btn, .btn-group-sm > .btn-icon.wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-sm > .btn-icon.btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-sm > .btn-icon.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-sm > a.btn-icon,
  .woocommerce.widget_shopping_cart .buttons .btn-group-sm > a.btn-icon, .woocommerce #review_form #respond .form-submit .btn-group-sm > input.btn-icon, .woocommerce-cart-form .table.shop_table tr .btn-group-sm > .btn-icon.button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-sm > a.btn-icon.checkout-button, .woocommerce #respond .btn-group-sm > input.btn-icon#submit,
  .woocommerce .btn-group-sm > a.btn-icon.button,
  .woocommerce .btn-group-sm > button.btn-icon.button,
  .woocommerce .btn-group-sm > input.btn-icon.button,
  .woocommerce .btn-group-sm > .btn-icon#place_order {
    width: 28px;
    height: 28px;
    padding: 0;
    font-size: 12px; }
  .btn-icon.btn-lg, .btn-group-lg > .btn-icon.btn, .btn-group-lg > .btn-icon.wp-block-button__link, .appointment-page-1 .wizard-form .btn-group-lg > .btn-icon.btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-group-lg > .btn-icon.btn.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .btn-group-lg > a.btn-icon,
  .woocommerce.widget_shopping_cart .buttons .btn-group-lg > a.btn-icon, .woocommerce #review_form #respond .form-submit .btn-group-lg > input.btn-icon, .woocommerce-cart-form .table.shop_table tr .btn-group-lg > .btn-icon.button, .woocommerce-cart .wc-proceed-to-checkout .btn-group-lg > a.btn-icon.checkout-button, .woocommerce #respond .btn-group-lg > input.btn-icon#submit,
  .woocommerce .btn-group-lg > a.btn-icon.button,
  .woocommerce .btn-group-lg > button.btn-icon.button,
  .woocommerce .btn-group-lg > input.btn-icon.button,
  .woocommerce .btn-group-lg > .btn-icon#place_order {
    font-size: 20px;
    height: 55px;
    width: 55px;
    padding: 0; }
    .btn-icon.btn-lg i, .btn-group-lg > .btn-icon.btn i, .btn-group-lg > .btn-icon.wp-block-button__link i, .appointment-page-1 .wizard-form .btn-group-lg > .btn-icon.btn.sw-btn-prev i, .appointment-page-1 .wizard-form .btn-group-lg > .btn-icon.btn.sw-btn-next i, .woocommerce .widget_shopping_cart .buttons .btn-group-lg > a.btn-icon i, .woocommerce.widget_shopping_cart .buttons .btn-group-lg > a.btn-icon i, .woocommerce #review_form #respond .form-submit .btn-group-lg > input.btn-icon i, .woocommerce-cart-form .table.shop_table tr .btn-group-lg > .btn-icon.button i, .woocommerce-cart .wc-proceed-to-checkout .btn-group-lg > a.btn-icon.checkout-button i, .woocommerce #respond .btn-group-lg > input.btn-icon#submit i, .woocommerce .btn-group-lg > a.btn-icon.button i, .woocommerce .btn-group-lg > button.btn-icon.button i, .woocommerce .btn-group-lg > input.btn-icon.button i, .woocommerce .btn-group-lg > .btn-icon#place_order i {
      font-size: 20px; }

.btn[class*="btn-gradient-"], .wp-block-button__link[class*="btn-gradient-"], .appointment-page-1 .wizard-form .btn.sw-btn-prev[class*="btn-gradient-"], .appointment-page-1 .wizard-form .btn.sw-btn-next[class*="btn-gradient-"], .woocommerce .widget_shopping_cart .buttons a[class*="btn-gradient-"],
.woocommerce.widget_shopping_cart .buttons a[class*="btn-gradient-"], .woocommerce #review_form #respond .form-submit input[class*="btn-gradient-"], .woocommerce-cart-form .table.shop_table tr .button[class*="btn-gradient-"], .woocommerce-cart .wc-proceed-to-checkout a.checkout-button[class*="btn-gradient-"], .woocommerce #respond input#submit[class*="btn-gradient-"],
.woocommerce a.button[class*="btn-gradient-"],
.woocommerce button.button[class*="btn-gradient-"],
.woocommerce input.button[class*="btn-gradient-"],
.woocommerce #place_order[class*="btn-gradient-"] {
  border: 0; }

.btn-outline-2 {
  border-width: 2px; }

.btn-outline-light:active, .btn-outline-light:focus, .btn-outline-light:hover {
  color: #222222; }

.dropdown-menu {
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
  border: 0; }

.btn-link {
  font-size: 16px; }

.btn-link {
  font-family: var(--font-family-title);
  font-weight: 500;
  letter-spacing: 1px; }

.link-underline {
  text-decoration: underline; }
  .link-underline:hover {
    text-decoration: underline; }

.btn-black {
  background-color: #171717; }
  .btn-black:hover, .btn-black:focus, .btn-black:active {
    background-color: black;
    color: #fff; }
  .btn-black.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(23, 23, 23, 0.23); }
  .btn-black.light {
    background-color: #7d7d7d;
    border-color: #7d7d7d;
    color: #171717; }
    .btn-black.light:focus, .btn-black.light:active, .btn-black.light:hover {
      background-color: #171717;
      border-color: #171717;
      color: #fff; }

.link-black {
  color: #171717; }
  .link-black.link-underline {
    text-decoration-color: #171717 !important; }

.btn-outline-black {
  border-color: #171717;
  color: #171717; }
  .btn-outline-black:hover, .btn-outline-black:focus, .btn-outline-black:active {
    color: #fff;
    background-color: #171717; }

.shadow-black {
  box-shadow: 0 0 50px #171717; }

.btn-gradient-black {
  background: #171717;
  background: -moz-linear-gradient(45deg, #171717 0%, #3d3d3d 100%);
  background: -webkit-linear-gradient(45deg, #171717 0%, #3d3d3d 100%);
  background: linear-gradient(45deg, #171717 0%, #3d3d3d 100%); }

.btn-gray {
  background-color: #666666; }
  .btn-gray:hover, .btn-gray:focus, .btn-gray:active {
    background-color: #262626;
    color: #fff; }
  .btn-gray.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(102, 102, 102, 0.23); }
  .btn-gray.light {
    background-color: #cccccc;
    border-color: #cccccc;
    color: #666666; }
    .btn-gray.light:focus, .btn-gray.light:active, .btn-gray.light:hover {
      background-color: #666666;
      border-color: #666666;
      color: #fff; }

.link-gray {
  color: #666666; }
  .link-gray.link-underline {
    text-decoration-color: #666666 !important; }

.btn-outline-gray {
  border-color: #666666;
  color: #666666; }
  .btn-outline-gray:hover, .btn-outline-gray:focus, .btn-outline-gray:active {
    color: #fff;
    background-color: #666666; }

.shadow-gray {
  box-shadow: 0 0 50px #666666; }

.btn-gradient-gray {
  background: #666666;
  background: -moz-linear-gradient(45deg, #666666 0%, #8c8c8c 100%);
  background: -webkit-linear-gradient(45deg, #666666 0%, #8c8c8c 100%);
  background: linear-gradient(45deg, #666666 0%, #8c8c8c 100%); }

.btn-pink {
  background-color: #ff3c85; }
  .btn-pink:hover, .btn-pink:focus, .btn-pink:active {
    background-color: #bc0046;
    color: #fff; }
  .btn-pink.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(255, 60, 133, 0.23); }
  .btn-pink.light {
    background-color: white;
    border-color: white;
    color: #ff3c85; }
    .btn-pink.light:focus, .btn-pink.light:active, .btn-pink.light:hover {
      background-color: #ff3c85;
      border-color: #ff3c85;
      color: #fff; }

.link-pink {
  color: #ff3c85; }
  .link-pink.link-underline {
    text-decoration-color: #ff3c85 !important; }

.btn-outline-pink {
  border-color: #ff3c85;
  color: #ff3c85; }
  .btn-outline-pink:hover, .btn-outline-pink:focus, .btn-outline-pink:active {
    color: #fff;
    background-color: #ff3c85; }

.shadow-pink {
  box-shadow: 0 0 50px #ff3c85; }

.btn-gradient-pink {
  background: #ff3c85;
  background: -moz-linear-gradient(45deg, #ff3c85 0%, #ff89b5 100%);
  background: -webkit-linear-gradient(45deg, #ff3c85 0%, #ff89b5 100%);
  background: linear-gradient(45deg, #ff3c85 0%, #ff89b5 100%); }

.btn-blue {
  background-color: #00c5dc; }
  .btn-blue:hover, .btn-blue:focus, .btn-blue:active {
    background-color: #00535d;
    color: #fff; }
  .btn-blue.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(0, 197, 220, 0.23); }
  .btn-blue.light {
    background-color: #a9f6ff;
    border-color: #a9f6ff;
    color: #00c5dc; }
    .btn-blue.light:focus, .btn-blue.light:active, .btn-blue.light:hover {
      background-color: #00c5dc;
      border-color: #00c5dc;
      color: #fff; }

.link-blue {
  color: #00c5dc; }
  .link-blue.link-underline {
    text-decoration-color: #00c5dc !important; }

.btn-outline-blue {
  border-color: #00c5dc;
  color: #00c5dc; }
  .btn-outline-blue:hover, .btn-outline-blue:focus, .btn-outline-blue:active {
    color: #fff;
    background-color: #00c5dc; }

.shadow-blue {
  box-shadow: 0 0 50px #00c5dc; }

.btn-gradient-blue {
  background: #00c5dc;
  background: -moz-linear-gradient(45deg, #00c5dc 0%, #2ae9ff 100%);
  background: -webkit-linear-gradient(45deg, #00c5dc 0%, #2ae9ff 100%);
  background: linear-gradient(45deg, #00c5dc 0%, #2ae9ff 100%); }

.btn-green {
  background-color: #34bfa3; }
  .btn-green:hover, .btn-green:focus, .btn-green:active {
    background-color: #195b4d;
    color: #fff; }
  .btn-green.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(52, 191, 163, 0.23); }
  .btn-green.light {
    background-color: #cdf2ea;
    border-color: #cdf2ea;
    color: #34bfa3; }
    .btn-green.light:focus, .btn-green.light:active, .btn-green.light:hover {
      background-color: #34bfa3;
      border-color: #34bfa3;
      color: #fff; }

.link-green {
  color: #34bfa3; }
  .link-green.link-underline {
    text-decoration-color: #34bfa3 !important; }

.btn-outline-green {
  border-color: #34bfa3;
  color: #34bfa3; }
  .btn-outline-green:hover, .btn-outline-green:focus, .btn-outline-green:active {
    color: #fff;
    background-color: #34bfa3; }

.shadow-green {
  box-shadow: 0 0 50px #34bfa3; }

.btn-gradient-green {
  background: #34bfa3;
  background: -moz-linear-gradient(45deg, #34bfa3 0%, #69d6c0 100%);
  background: -webkit-linear-gradient(45deg, #34bfa3 0%, #69d6c0 100%);
  background: linear-gradient(45deg, #34bfa3 0%, #69d6c0 100%); }

.btn-orange {
  background-color: #EF9800; }
  .btn-orange:hover, .btn-orange:focus, .btn-orange:active {
    background-color: #704700;
    color: #fff; }
  .btn-orange.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(239, 152, 0, 0.23); }
  .btn-orange.light {
    background-color: #ffe7bc;
    border-color: #ffe7bc;
    color: #EF9800; }
    .btn-orange.light:focus, .btn-orange.light:active, .btn-orange.light:hover {
      background-color: #EF9800;
      border-color: #EF9800;
      color: #fff; }

.link-orange {
  color: #EF9800; }
  .link-orange.link-underline {
    text-decoration-color: #EF9800 !important; }

.btn-outline-orange {
  border-color: #EF9800;
  color: #EF9800; }
  .btn-outline-orange:hover, .btn-outline-orange:focus, .btn-outline-orange:active {
    color: #fff;
    background-color: #EF9800; }

.shadow-orange {
  box-shadow: 0 0 50px #EF9800; }

.btn-gradient-orange {
  background: #EF9800;
  background: -moz-linear-gradient(45deg, #EF9800 0%, #ffb83d 100%);
  background: -webkit-linear-gradient(45deg, #EF9800 0%, #ffb83d 100%);
  background: linear-gradient(45deg, #EF9800 0%, #ffb83d 100%); }

.btn-red {
  background-color: #f0526d; }
  .btn-red:hover, .btn-red:focus, .btn-red:active {
    background-color: #b3102b;
    color: #fff; }
  .btn-red.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(240, 82, 109, 0.23); }
  .btn-red.light {
    background-color: white;
    border-color: white;
    color: #f0526d; }
    .btn-red.light:focus, .btn-red.light:active, .btn-red.light:hover {
      background-color: #f0526d;
      border-color: #f0526d;
      color: #fff; }

.link-red {
  color: #f0526d; }
  .link-red.link-underline {
    text-decoration-color: #f0526d !important; }

.btn-outline-red {
  border-color: #f0526d;
  color: #f0526d; }
  .btn-outline-red:hover, .btn-outline-red:focus, .btn-outline-red:active {
    color: #fff;
    background-color: #f0526d; }

.shadow-red {
  box-shadow: 0 0 50px #f0526d; }

.btn-gradient-red {
  background: #f0526d;
  background: -moz-linear-gradient(45deg, #f0526d 0%, #f698a8 100%);
  background: -webkit-linear-gradient(45deg, #f0526d 0%, #f698a8 100%);
  background: linear-gradient(45deg, #f0526d 0%, #f698a8 100%); }

.btn-brown {
  background-color: #484a5c; }
  .btn-brown:hover, .btn-brown:focus, .btn-brown:active {
    background-color: #101014;
    color: #fff; }
  .btn-brown.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(72, 74, 92, 0.23); }
  .btn-brown.light {
    background-color: #afb1c1;
    border-color: #afb1c1;
    color: #484a5c; }
    .btn-brown.light:focus, .btn-brown.light:active, .btn-brown.light:hover {
      background-color: #484a5c;
      border-color: #484a5c;
      color: #fff; }

.link-brown {
  color: #484a5c; }
  .link-brown.link-underline {
    text-decoration-color: #484a5c !important; }

.btn-outline-brown {
  border-color: #484a5c;
  color: #484a5c; }
  .btn-outline-brown:hover, .btn-outline-brown:focus, .btn-outline-brown:active {
    color: #fff;
    background-color: #484a5c; }

.shadow-brown {
  box-shadow: 0 0 50px #484a5c; }

.btn-gradient-brown {
  background: #484a5c;
  background: -moz-linear-gradient(45deg, #484a5c 0%, #6a6d87 100%);
  background: -webkit-linear-gradient(45deg, #484a5c 0%, #6a6d87 100%);
  background: linear-gradient(45deg, #484a5c 0%, #6a6d87 100%); }

.btn-yellow {
  background-color: #ffb822; }
  .btn-yellow:hover, .btn-yellow:focus, .btn-yellow:active {
    background-color: #a26e00;
    color: #fff; }
  .btn-yellow.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(255, 184, 34, 0.23); }
  .btn-yellow.light {
    background-color: #fffaee;
    border-color: #fffaee;
    color: #ffb822; }
    .btn-yellow.light:focus, .btn-yellow.light:active, .btn-yellow.light:hover {
      background-color: #ffb822;
      border-color: #ffb822;
      color: #fff; }

.link-yellow {
  color: #ffb822; }
  .link-yellow.link-underline {
    text-decoration-color: #ffb822 !important; }

.btn-outline-yellow {
  border-color: #ffb822;
  color: #ffb822; }
  .btn-outline-yellow:hover, .btn-outline-yellow:focus, .btn-outline-yellow:active {
    color: #fff;
    background-color: #ffb822; }

.shadow-yellow {
  box-shadow: 0 0 50px #ffb822; }

.btn-gradient-yellow {
  background: #ffb822;
  background: -moz-linear-gradient(45deg, #ffb822 0%, #ffd16f 100%);
  background: -webkit-linear-gradient(45deg, #ffb822 0%, #ffd16f 100%);
  background: linear-gradient(45deg, #ffb822 0%, #ffd16f 100%); }

.btn-purple {
  background-color: #8862B9; }
  .btn-purple:hover, .btn-purple:focus, .btn-purple:active {
    background-color: #4a306c;
    color: #fff; }
  .btn-purple.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(136, 98, 185, 0.23); }
  .btn-purple.light {
    background-color: #f3eff8;
    border-color: #f3eff8;
    color: #8862B9; }
    .btn-purple.light:focus, .btn-purple.light:active, .btn-purple.light:hover {
      background-color: #8862B9;
      border-color: #8862B9;
      color: #fff; }

.link-purple {
  color: #8862B9; }
  .link-purple.link-underline {
    text-decoration-color: #8862B9 !important; }

.btn-outline-purple {
  border-color: #8862B9;
  color: #8862B9; }
  .btn-outline-purple:hover, .btn-outline-purple:focus, .btn-outline-purple:active {
    color: #fff;
    background-color: #8862B9; }

.shadow-purple {
  box-shadow: 0 0 50px #8862B9; }

.btn-gradient-purple {
  background: #8862B9;
  background: -moz-linear-gradient(45deg, #8862B9 0%, #b097d1 100%);
  background: -webkit-linear-gradient(45deg, #8862B9 0%, #b097d1 100%);
  background: linear-gradient(45deg, #8862B9 0%, #b097d1 100%); }

.btn-facebook {
  background-color: #3B5998; }
  .btn-facebook:hover, .btn-facebook:focus, .btn-facebook:active {
    background-color: #17233c;
    color: #fff; }
  .btn-facebook.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(59, 89, 152, 0.23); }
  .btn-facebook.light {
    background-color: #bbc8e4;
    border-color: #bbc8e4;
    color: #3B5998; }
    .btn-facebook.light:focus, .btn-facebook.light:active, .btn-facebook.light:hover {
      background-color: #3B5998;
      border-color: #3B5998;
      color: #fff; }

.link-facebook {
  color: #3B5998; }
  .link-facebook.link-underline {
    text-decoration-color: #3B5998 !important; }

.btn-outline-facebook {
  border-color: #3B5998;
  color: #3B5998; }
  .btn-outline-facebook:hover, .btn-outline-facebook:focus, .btn-outline-facebook:active {
    color: #fff;
    background-color: #3B5998; }

.shadow-facebook {
  box-shadow: 0 0 50px #3B5998; }

.btn-gradient-facebook {
  background: #3B5998;
  background: -moz-linear-gradient(45deg, #3B5998 0%, #5f7ec1 100%);
  background: -webkit-linear-gradient(45deg, #3B5998 0%, #5f7ec1 100%);
  background: linear-gradient(45deg, #3B5998 0%, #5f7ec1 100%); }

.btn-google {
  background-color: #fe6e63; }
  .btn-google:hover, .btn-google:focus, .btn-google:active {
    background-color: #e01101;
    color: #fff; }
  .btn-google.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(254, 110, 99, 0.23); }
  .btn-google.light {
    background-color: white;
    border-color: white;
    color: #fe6e63; }
    .btn-google.light:focus, .btn-google.light:active, .btn-google.light:hover {
      background-color: #fe6e63;
      border-color: #fe6e63;
      color: #fff; }

.link-google {
  color: #fe6e63; }
  .link-google.link-underline {
    text-decoration-color: #fe6e63 !important; }

.btn-outline-google {
  border-color: #fe6e63;
  color: #fe6e63; }
  .btn-outline-google:hover, .btn-outline-google:focus, .btn-outline-google:active {
    color: #fff;
    background-color: #fe6e63; }

.shadow-google {
  box-shadow: 0 0 50px #fe6e63; }

.btn-gradient-google {
  background: #fe6e63;
  background: -moz-linear-gradient(45deg, #fe6e63 0%, #feb5af 100%);
  background: -webkit-linear-gradient(45deg, #fe6e63 0%, #feb5af 100%);
  background: linear-gradient(45deg, #fe6e63 0%, #feb5af 100%); }

.btn-linkedin {
  background-color: #007BB6; }
  .btn-linkedin:hover, .btn-linkedin:focus, .btn-linkedin:active {
    background-color: #002537;
    color: #fff; }
  .btn-linkedin.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(0, 123, 182, 0.23); }
  .btn-linkedin.light {
    background-color: #83d7ff;
    border-color: #83d7ff;
    color: #007BB6; }
    .btn-linkedin.light:focus, .btn-linkedin.light:active, .btn-linkedin.light:hover {
      background-color: #007BB6;
      border-color: #007BB6;
      color: #fff; }

.link-linkedin {
  color: #007BB6; }
  .link-linkedin.link-underline {
    text-decoration-color: #007BB6 !important; }

.btn-outline-linkedin {
  border-color: #007BB6;
  color: #007BB6; }
  .btn-outline-linkedin:hover, .btn-outline-linkedin:focus, .btn-outline-linkedin:active {
    color: #fff;
    background-color: #007BB6; }

.shadow-linkedin {
  box-shadow: 0 0 50px #007BB6; }

.btn-gradient-linkedin {
  background: #007BB6;
  background: -moz-linear-gradient(45deg, #007BB6 0%, #04adff 100%);
  background: -webkit-linear-gradient(45deg, #007BB6 0%, #04adff 100%);
  background: linear-gradient(45deg, #007BB6 0%, #04adff 100%); }

.btn-instagram {
  background-color: #8A5A4E; }
  .btn-instagram:hover, .btn-instagram:focus, .btn-instagram:active {
    background-color: #392520;
    color: #fff; }
  .btn-instagram.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(138, 90, 78, 0.23); }
  .btn-instagram.light {
    background-color: #dfcbc6;
    border-color: #dfcbc6;
    color: #8A5A4E; }
    .btn-instagram.light:focus, .btn-instagram.light:active, .btn-instagram.light:hover {
      background-color: #8A5A4E;
      border-color: #8A5A4E;
      color: #fff; }

.link-instagram {
  color: #8A5A4E; }
  .link-instagram.link-underline {
    text-decoration-color: #8A5A4E !important; }

.btn-outline-instagram {
  border-color: #8A5A4E;
  color: #8A5A4E; }
  .btn-outline-instagram:hover, .btn-outline-instagram:focus, .btn-outline-instagram:active {
    color: #fff;
    background-color: #8A5A4E; }

.shadow-instagram {
  box-shadow: 0 0 50px #8A5A4E; }

.btn-gradient-instagram {
  background: #8A5A4E;
  background: -moz-linear-gradient(45deg, #8A5A4E 0%, #b08074 100%);
  background: -webkit-linear-gradient(45deg, #8A5A4E 0%, #b08074 100%);
  background: linear-gradient(45deg, #8A5A4E 0%, #b08074 100%); }

.btn-twitter {
  background-color: #1EA1F3; }
  .btn-twitter:hover, .btn-twitter:focus, .btn-twitter:active {
    background-color: #07588a;
    color: #fff; }
  .btn-twitter.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(30, 161, 243, 0.23); }
  .btn-twitter.light {
    background-color: #e0f2fd;
    border-color: #e0f2fd;
    color: #1EA1F3; }
    .btn-twitter.light:focus, .btn-twitter.light:active, .btn-twitter.light:hover {
      background-color: #1EA1F3;
      border-color: #1EA1F3;
      color: #fff; }

.link-twitter {
  color: #1EA1F3; }
  .link-twitter.link-underline {
    text-decoration-color: #1EA1F3 !important; }

.btn-outline-twitter {
  border-color: #1EA1F3;
  color: #1EA1F3; }
  .btn-outline-twitter:hover, .btn-outline-twitter:focus, .btn-outline-twitter:active {
    color: #fff;
    background-color: #1EA1F3; }

.shadow-twitter {
  box-shadow: 0 0 50px #1EA1F3; }

.btn-gradient-twitter {
  background: #1EA1F3;
  background: -moz-linear-gradient(45deg, #1EA1F3 0%, #67bff7 100%);
  background: -webkit-linear-gradient(45deg, #1EA1F3 0%, #67bff7 100%);
  background: linear-gradient(45deg, #1EA1F3 0%, #67bff7 100%); }

.btn-youtube {
  background-color: #8862B9; }
  .btn-youtube:hover, .btn-youtube:focus, .btn-youtube:active {
    background-color: #4a306c;
    color: #fff; }
  .btn-youtube.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(136, 98, 185, 0.23); }
  .btn-youtube.light {
    background-color: #f3eff8;
    border-color: #f3eff8;
    color: #8862B9; }
    .btn-youtube.light:focus, .btn-youtube.light:active, .btn-youtube.light:hover {
      background-color: #8862B9;
      border-color: #8862B9;
      color: #fff; }

.link-youtube {
  color: #8862B9; }
  .link-youtube.link-underline {
    text-decoration-color: #8862B9 !important; }

.btn-outline-youtube {
  border-color: #8862B9;
  color: #8862B9; }
  .btn-outline-youtube:hover, .btn-outline-youtube:focus, .btn-outline-youtube:active {
    color: #fff;
    background-color: #8862B9; }

.shadow-youtube {
  box-shadow: 0 0 50px #8862B9; }

.btn-gradient-youtube {
  background: #8862B9;
  background: -moz-linear-gradient(45deg, #8862B9 0%, #b097d1 100%);
  background: -webkit-linear-gradient(45deg, #8862B9 0%, #b097d1 100%);
  background: linear-gradient(45deg, #8862B9 0%, #b097d1 100%); }

.btn-whatsapp {
  background-color: #01C854; }
  .btn-whatsapp:hover, .btn-whatsapp:focus, .btn-whatsapp:active {
    background-color: #00491f;
    color: #fff; }
  .btn-whatsapp.btn-shadow {
    box-shadow: 0 5px 10px 2px rgba(1, 200, 84, 0.23); }
  .btn-whatsapp.light {
    background-color: #97fec2;
    border-color: #97fec2;
    color: #01C854; }
    .btn-whatsapp.light:focus, .btn-whatsapp.light:active, .btn-whatsapp.light:hover {
      background-color: #01C854;
      border-color: #01C854;
      color: #fff; }

.link-whatsapp {
  color: #01C854; }
  .link-whatsapp.link-underline {
    text-decoration-color: #01C854 !important; }

.btn-outline-whatsapp {
  border-color: #01C854;
  color: #01C854; }
  .btn-outline-whatsapp:hover, .btn-outline-whatsapp:focus, .btn-outline-whatsapp:active {
    color: #fff;
    background-color: #01C854; }

.shadow-whatsapp {
  box-shadow: 0 0 50px #01C854; }

.btn-gradient-whatsapp {
  background: #01C854;
  background: -moz-linear-gradient(45deg, #01C854 0%, #18fe78 100%);
  background: -webkit-linear-gradient(45deg, #01C854 0%, #18fe78 100%);
  background: linear-gradient(45deg, #01C854 0%, #18fe78 100%); }

.btn-hover-1 {
  overflow: hidden;
  z-index: 1; }
  .btn-hover-1::before, .btn-hover-1::after {
    background: #fff;
    content: '';
    position: absolute; }
  .btn-hover-1::before {
    width: 120%;
    height: 0;
    padding-bottom: 120%;
    top: -110%;
    left: -10%;
    border-radius: 50%;
    transform: translate3d(0, 68%, 0) scale3d(0, 0, 0); }
  .btn-hover-1::after {
    width: 90%;
    top: 0;
    left: 0;
    transform: translate3d(0, -100%, 0);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1); }
  .btn-hover-1 span {
    display: block;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .btn-hover-1.btn-white::before {
    background: var(--primary); }
  .btn-hover-1.btn-white::after {
    background: var(--primary); }
  .btn-hover-1:focus::before, .btn-hover-1:active::before, .btn-hover-1:hover::before {
    transform: translate3d(0, 0, 0) scale3d(1.2, 1, 1);
    transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1); }
  .btn-hover-1:focus::after, .btn-hover-1:active::after, .btn-hover-1:hover::after {
    transform: translate3d(0, 0, 0);
    transition-duration: 0.05s;
    transition-delay: 0.4s;
    transition-timing-function: linear; }
  .btn-hover-1:focus span, .btn-hover-1:active span, .btn-hover-1:hover span {
    animation: MoveScaleUpInitial 0.3s forwards, MoveScaleUpEnd 0.3s forwards 0.3s;
    color: var(--primary); }
  .btn-hover-1:focus.btn-primary span, .btn-hover-1.wp-block-button__link:focus span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-next.wp-block-button__link:focus span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-next.btn:focus span, .woocommerce .widget_shopping_cart .buttons a.btn-hover-1:focus span, .woocommerce.widget_shopping_cart .buttons a.btn-hover-1:focus span, .woocommerce #review_form #respond .form-submit input.btn-hover-1:focus span, .woocommerce-cart-form .table.shop_table tr .btn-hover-1.button:focus span, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-1.checkout-button:focus span, .woocommerce #respond input.btn-hover-1#submit:focus span, .woocommerce a.btn-hover-1.button:focus span, .woocommerce button.btn-hover-1.button:focus span, .woocommerce input.btn-hover-1.button:focus span, .woocommerce .btn-hover-1#place_order:focus span, .btn-hover-1:focus.btn-outline-primary span, .is-style-outline .btn-hover-1.wp-block-button__link:focus span, .btn-hover-1:active.btn-primary span, .btn-hover-1.wp-block-button__link:active span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-next.wp-block-button__link:active span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-next.btn:active span, .woocommerce .widget_shopping_cart .buttons a.btn-hover-1:active span, .woocommerce.widget_shopping_cart .buttons a.btn-hover-1:active span, .woocommerce #review_form #respond .form-submit input.btn-hover-1:active span, .woocommerce-cart-form .table.shop_table tr .btn-hover-1.button:active span, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-1.checkout-button:active span, .woocommerce #respond input.btn-hover-1#submit:active span, .woocommerce a.btn-hover-1.button:active span, .woocommerce button.btn-hover-1.button:active span, .woocommerce input.btn-hover-1.button:active span, .woocommerce .btn-hover-1#place_order:active span, .btn-hover-1:active.btn-outline-primary span, .is-style-outline .btn-hover-1.wp-block-button__link:active span, .btn-hover-1:hover.btn-primary span, .btn-hover-1.wp-block-button__link:hover span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-next.wp-block-button__link:hover span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-next.btn:hover span, .woocommerce .widget_shopping_cart .buttons a.btn-hover-1:hover span, .woocommerce.widget_shopping_cart .buttons a.btn-hover-1:hover span, .woocommerce #review_form #respond .form-submit input.btn-hover-1:hover span, .woocommerce-cart-form .table.shop_table tr .btn-hover-1.button:hover span, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-1.checkout-button:hover span, .woocommerce #respond input.btn-hover-1#submit:hover span, .woocommerce a.btn-hover-1.button:hover span, .woocommerce button.btn-hover-1.button:hover span, .woocommerce input.btn-hover-1.button:hover span, .woocommerce .btn-hover-1#place_order:hover span, .btn-hover-1:hover.btn-outline-primary span, .is-style-outline .btn-hover-1.wp-block-button__link:hover span {
    color: var(--primary); }
  .btn-hover-1:focus.btn-secondary span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev.wp-block-button__link:focus span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev.btn:focus span, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-1.sw-btn-prev:focus span, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev:focus span, .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-1.sw-btn-prev:focus span, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev:focus span, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-1.sw-btn-prev:focus span, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-1.sw-btn-prev:focus span, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-1.sw-btn-prev.button:focus span, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev.button:focus span, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-1.sw-btn-prev.checkout-button:focus span, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev.checkout-button:focus span, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-1.sw-btn-prev#submit:focus span, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-1.sw-btn-prev#submit:focus span, .appointment-page-1 .wizard-form .woocommerce a.btn-hover-1.sw-btn-prev.button:focus span, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev.button:focus span, .appointment-page-1 .wizard-form .woocommerce button.btn-hover-1.sw-btn-prev.button:focus span, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-1.sw-btn-prev.button:focus span, .appointment-page-1 .wizard-form .woocommerce input.btn-hover-1.sw-btn-prev.button:focus span, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-1.sw-btn-prev.button:focus span, .appointment-page-1 .wizard-form .woocommerce .btn-hover-1.sw-btn-prev#place_order:focus span, .woocommerce .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev#place_order:focus span, .btn-hover-1:focus.btn-outline-secondary span, .btn-hover-1:active.btn-secondary span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev.wp-block-button__link:active span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev.btn:active span, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-1.sw-btn-prev:active span, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev:active span, .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-1.sw-btn-prev:active span, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev:active span, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-1.sw-btn-prev:active span, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-1.sw-btn-prev:active span, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-1.sw-btn-prev.button:active span, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev.button:active span, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-1.sw-btn-prev.checkout-button:active span, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev.checkout-button:active span, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-1.sw-btn-prev#submit:active span, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-1.sw-btn-prev#submit:active span, .appointment-page-1 .wizard-form .woocommerce a.btn-hover-1.sw-btn-prev.button:active span, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev.button:active span, .appointment-page-1 .wizard-form .woocommerce button.btn-hover-1.sw-btn-prev.button:active span, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-1.sw-btn-prev.button:active span, .appointment-page-1 .wizard-form .woocommerce input.btn-hover-1.sw-btn-prev.button:active span, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-1.sw-btn-prev.button:active span, .appointment-page-1 .wizard-form .woocommerce .btn-hover-1.sw-btn-prev#place_order:active span, .woocommerce .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev#place_order:active span, .btn-hover-1:active.btn-outline-secondary span, .btn-hover-1:hover.btn-secondary span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev.wp-block-button__link:hover span, .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev.btn:hover span, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-1.sw-btn-prev:hover span, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev:hover span, .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-1.sw-btn-prev:hover span, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev:hover span, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-1.sw-btn-prev:hover span, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-1.sw-btn-prev:hover span, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-1.sw-btn-prev.button:hover span, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev.button:hover span, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-1.sw-btn-prev.checkout-button:hover span, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev.checkout-button:hover span, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-1.sw-btn-prev#submit:hover span, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-1.sw-btn-prev#submit:hover span, .appointment-page-1 .wizard-form .woocommerce a.btn-hover-1.sw-btn-prev.button:hover span, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-1.sw-btn-prev.button:hover span, .appointment-page-1 .wizard-form .woocommerce button.btn-hover-1.sw-btn-prev.button:hover span, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-1.sw-btn-prev.button:hover span, .appointment-page-1 .wizard-form .woocommerce input.btn-hover-1.sw-btn-prev.button:hover span, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-1.sw-btn-prev.button:hover span, .appointment-page-1 .wizard-form .woocommerce .btn-hover-1.sw-btn-prev#place_order:hover span, .woocommerce .appointment-page-1 .wizard-form .btn-hover-1.sw-btn-prev#place_order:hover span, .btn-hover-1:hover.btn-outline-secondary span {
    color: var(--secondary); }
  .btn-hover-1:focus.btn-dark span, .btn-hover-1:focus.btn-outline-dark span, .btn-hover-1:active.btn-dark span, .btn-hover-1:active.btn-outline-dark span, .btn-hover-1:hover.btn-dark span, .btn-hover-1:hover.btn-outline-dark span {
    color: #222222; }
  .btn-hover-1:focus.btn-white span, .btn-hover-1:active.btn-white span, .btn-hover-1:hover.btn-white span {
    color: #fff; }

@keyframes MoveScaleUpInitial {
  to {
    transform: translate3d(0, -105%, 0) scale3d(1, 2, 1);
    opacity: 0; } }

@keyframes MoveScaleUpEnd {
  from {
    transform: translate3d(0, 100%, 0) scale3d(1, 2, 1);
    opacity: 0; }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1; } }

.btn-hover-2 {
  color: rgba(0, 0, 0, 0) !important;
  transition: all .3s ease !important;
  text-shadow: 0 0 0 #fff, 500px 0 0 #fff;
  overflow: hidden; }
  .btn-hover-2.btn-white {
    text-shadow: 0 0 0 #000, 500px 0 0 #000; }
  .btn-hover-2.btn-gray {
    text-shadow: 0 0 0 var(--title), 500px 0 0 var(--title); }
  .btn-hover-2:hover {
    text-shadow: -600px 0 0 #fff, 0 0 0 #fff; }
    .btn-hover-2:hover.btn-white {
      text-shadow: -600px 0 0 #000, 0 0 0 #000; }
    .btn-hover-2:hover.btn-gray {
      text-shadow: -600px 0 0 #fff, 0 0 0 #fff; }

.btn-hover-3 {
  overflow: hidden; }
  .btn-hover-3 span {
    transition: opacity .50s, transform .80s;
    transition-timing-function: cubic-bezier(0.12, 0.8, 0.3, 1); }
    .btn-hover-3 span::before {
      content: attr(data-text);
      position: absolute;
      white-space: nowrap;
      display: inline-block;
      top: 50%;
      left: 50%;
      opacity: 0;
      transform: translate(-50%, 100%);
      transition: opacity .5s, transform .8s;
      transition-timing-function: cubic-bezier(0.12, 0.8, 0.3, 1); }
  .btn-hover-3:hover span {
    transform: translateY(-200%); }
    .btn-hover-3:hover span::before {
      transform: translate(-50%, 150%);
      opacity: 1; }

.btn-hover-4 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden; }
  .btn-hover-4 span {
    z-index: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 100%; }
  .btn-hover-4:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transform: scale(1, 0.5);
    transform: scale(1, 0.5);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--primary-dark); }
  .btn-hover-4:hover:after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }

.btn-hover-5 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden; }
  .btn-hover-5 span {
    z-index: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 100%; }
  .btn-hover-5:before {
    content: '';
    position: absolute;
    top: 50px;
    left: -15%;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 190px solid var(--primary-hover);
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s; }
  .btn-hover-5:after {
    content: '';
    position: absolute;
    top: 50px;
    left: -15%;
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 190px solid var(--primary-dark);
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 0.2s;
    /* Safari */
    transition-delay: 0.2s;
    display: flex;
    justify-content: center;
    align-items: center; }
  .btn-hover-5:hover {
    background-color: var(--primary-hover) !important; }
    .btn-hover-5:hover:before {
      opacity: 1;
      -webkit-transform: translate(0px, -190px);
      transform: translate(0px, -190px); }
    .btn-hover-5:hover:after {
      opacity: 1;
      -webkit-transform: translate(0px, -150px);
      transform: translate(0px, -150px); }

.btn-hover-6 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden; }
  .btn-hover-6 span {
    z-index: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 100%; }
  .btn-hover-6:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0;
    background-color: var(--primary-dark);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center; }
  .btn-hover-6:hover:after {
    opacity: 1;
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1); }

.btn-hover-7 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden; }
  .btn-hover-7 span {
    z-index: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 100%; }
  .btn-hover-7:before, .btn-hover-7:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 151, 129, 0.4);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate(-100%, 0);
    transform: translate(-100%, 0);
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1); }
  .btn-hover-7:after {
    -webkit-transition-delay: 0.2s;
    /* Safari */
    transition-delay: 0.2s; }
  .btn-hover-7.btn-primary:hover:before, .btn-hover-7.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-next.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-next.btn:hover:before, .woocommerce .widget_shopping_cart .buttons a.btn-hover-7:hover:before,
  .woocommerce.widget_shopping_cart .buttons a.btn-hover-7:hover:before, .woocommerce #review_form #respond .form-submit input.btn-hover-7:hover:before, .woocommerce-cart-form .table.shop_table tr .btn-hover-7.button:hover:before, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-7.checkout-button:hover:before, .woocommerce #respond input.btn-hover-7#submit:hover:before,
  .woocommerce a.btn-hover-7.button:hover:before,
  .woocommerce button.btn-hover-7.button:hover:before,
  .woocommerce input.btn-hover-7.button:hover:before,
  .woocommerce .btn-hover-7#place_order:hover:before, .btn-hover-7.btn-primary:hover:after, .btn-hover-7.wp-block-button__link:hover:after, .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-next.wp-block-button__link:hover:after, .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-next.btn:hover:after, .woocommerce .widget_shopping_cart .buttons a.btn-hover-7:hover:after,
  .woocommerce.widget_shopping_cart .buttons a.btn-hover-7:hover:after, .woocommerce #review_form #respond .form-submit input.btn-hover-7:hover:after, .woocommerce-cart-form .table.shop_table tr .btn-hover-7.button:hover:after, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-7.checkout-button:hover:after, .woocommerce #respond input.btn-hover-7#submit:hover:after,
  .woocommerce a.btn-hover-7.button:hover:after,
  .woocommerce button.btn-hover-7.button:hover:after,
  .woocommerce input.btn-hover-7.button:hover:after,
  .woocommerce .btn-hover-7#place_order:hover:after {
    background-color: var(--primary-dark); }
  .btn-hover-7.btn-secondary:hover:before, .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-prev.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-prev.btn:hover:before, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-7.sw-btn-prev:hover:before, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-7.sw-btn-prev:hover:before,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-7.sw-btn-prev:hover:before, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-7.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-7.sw-btn-prev:hover:before, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-7.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-7.sw-btn-prev.button:hover:before, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-prev.button:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-7.sw-btn-prev.checkout-button:hover:before, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-7.sw-btn-prev.checkout-button:hover:before, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-7.sw-btn-prev#submit:hover:before, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-7.sw-btn-prev#submit:hover:before,
  .appointment-page-1 .wizard-form .woocommerce a.btn-hover-7.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-7.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce button.btn-hover-7.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-7.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce input.btn-hover-7.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-7.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce .btn-hover-7.sw-btn-prev#place_order:hover:before, .woocommerce .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-prev#place_order:hover:before, .btn-hover-7.btn-secondary:hover:after, .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-prev.wp-block-button__link:hover:after, .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-prev.btn:hover:after, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-7.sw-btn-prev:hover:after, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-7.sw-btn-prev:hover:after,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-7.sw-btn-prev:hover:after, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-7.sw-btn-prev:hover:after, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-7.sw-btn-prev:hover:after, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-7.sw-btn-prev:hover:after, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-7.sw-btn-prev.button:hover:after, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-prev.button:hover:after, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-7.sw-btn-prev.checkout-button:hover:after, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-7.sw-btn-prev.checkout-button:hover:after, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-7.sw-btn-prev#submit:hover:after, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-7.sw-btn-prev#submit:hover:after,
  .appointment-page-1 .wizard-form .woocommerce a.btn-hover-7.sw-btn-prev.button:hover:after, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-7.sw-btn-prev.button:hover:after,
  .appointment-page-1 .wizard-form .woocommerce button.btn-hover-7.sw-btn-prev.button:hover:after, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-7.sw-btn-prev.button:hover:after,
  .appointment-page-1 .wizard-form .woocommerce input.btn-hover-7.sw-btn-prev.button:hover:after, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-7.sw-btn-prev.button:hover:after,
  .appointment-page-1 .wizard-form .woocommerce .btn-hover-7.sw-btn-prev#place_order:hover:after, .woocommerce .appointment-page-1 .wizard-form .btn-hover-7.sw-btn-prev#place_order:hover:after {
    background-color: var(--secondary-hover); }
  .btn-hover-7:hover:before, .btn-hover-7:hover:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }

.btn-hover-8 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden; }
  .btn-hover-8 span {
    z-index: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 100%; }
  .btn-hover-8:after, .btn-hover-8:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: rgba(255, 151, 129, 0.4);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translate(-13%, -190%) rotate(-30deg);
    transform: translate(-13%, -190%) rotate(-30deg);
    -webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
    transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1); }
  .btn-hover-8:before {
    -webkit-transition-delay: 0.2s;
    /* Safari */
    transition-delay: 0.2s; }
  .btn-hover-8.btn-primary:hover:before, .btn-hover-8.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-next.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-next.btn:hover:before, .woocommerce .widget_shopping_cart .buttons a.btn-hover-8:hover:before,
  .woocommerce.widget_shopping_cart .buttons a.btn-hover-8:hover:before, .woocommerce #review_form #respond .form-submit input.btn-hover-8:hover:before, .woocommerce-cart-form .table.shop_table tr .btn-hover-8.button:hover:before, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-8.checkout-button:hover:before, .woocommerce #respond input.btn-hover-8#submit:hover:before,
  .woocommerce a.btn-hover-8.button:hover:before,
  .woocommerce button.btn-hover-8.button:hover:before,
  .woocommerce input.btn-hover-8.button:hover:before,
  .woocommerce .btn-hover-8#place_order:hover:before, .btn-hover-8.btn-primary:hover:after, .btn-hover-8.wp-block-button__link:hover:after, .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-next.wp-block-button__link:hover:after, .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-next.btn:hover:after, .woocommerce .widget_shopping_cart .buttons a.btn-hover-8:hover:after,
  .woocommerce.widget_shopping_cart .buttons a.btn-hover-8:hover:after, .woocommerce #review_form #respond .form-submit input.btn-hover-8:hover:after, .woocommerce-cart-form .table.shop_table tr .btn-hover-8.button:hover:after, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-8.checkout-button:hover:after, .woocommerce #respond input.btn-hover-8#submit:hover:after,
  .woocommerce a.btn-hover-8.button:hover:after,
  .woocommerce button.btn-hover-8.button:hover:after,
  .woocommerce input.btn-hover-8.button:hover:after,
  .woocommerce .btn-hover-8#place_order:hover:after {
    background-color: var(--primary-dark); }
  .btn-hover-8.btn-secondary:hover:before, .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-prev.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-prev.btn:hover:before, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-8.sw-btn-prev:hover:before, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-8.sw-btn-prev:hover:before,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-8.sw-btn-prev:hover:before, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-8.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-8.sw-btn-prev:hover:before, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-8.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-8.sw-btn-prev.button:hover:before, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-prev.button:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-8.sw-btn-prev.checkout-button:hover:before, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-8.sw-btn-prev.checkout-button:hover:before, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-8.sw-btn-prev#submit:hover:before, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-8.sw-btn-prev#submit:hover:before,
  .appointment-page-1 .wizard-form .woocommerce a.btn-hover-8.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-8.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce button.btn-hover-8.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-8.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce input.btn-hover-8.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-8.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce .btn-hover-8.sw-btn-prev#place_order:hover:before, .woocommerce .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-prev#place_order:hover:before, .btn-hover-8.btn-secondary:hover:after, .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-prev.wp-block-button__link:hover:after, .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-prev.btn:hover:after, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-8.sw-btn-prev:hover:after, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-8.sw-btn-prev:hover:after,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-8.sw-btn-prev:hover:after, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-8.sw-btn-prev:hover:after, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-8.sw-btn-prev:hover:after, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-8.sw-btn-prev:hover:after, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-8.sw-btn-prev.button:hover:after, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-prev.button:hover:after, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-8.sw-btn-prev.checkout-button:hover:after, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-8.sw-btn-prev.checkout-button:hover:after, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-8.sw-btn-prev#submit:hover:after, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-8.sw-btn-prev#submit:hover:after,
  .appointment-page-1 .wizard-form .woocommerce a.btn-hover-8.sw-btn-prev.button:hover:after, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-8.sw-btn-prev.button:hover:after,
  .appointment-page-1 .wizard-form .woocommerce button.btn-hover-8.sw-btn-prev.button:hover:after, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-8.sw-btn-prev.button:hover:after,
  .appointment-page-1 .wizard-form .woocommerce input.btn-hover-8.sw-btn-prev.button:hover:after, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-8.sw-btn-prev.button:hover:after,
  .appointment-page-1 .wizard-form .woocommerce .btn-hover-8.sw-btn-prev#place_order:hover:after, .woocommerce .appointment-page-1 .wizard-form .btn-hover-8.sw-btn-prev#place_order:hover:after {
    background-color: var(--secondary-hover); }
  .btn-hover-8:hover:before, .btn-hover-8:hover:after {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }

.btn-hover-9 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden; }
  .btn-hover-9 span {
    z-index: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 100%; }
  .btn-hover-9:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    opacity: 1;
    -webkit-transform: translate(0, -105%);
    transform: translate(0, -105%);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #ff9781;
    background-color: rgba(255, 151, 129, 0.4); }
  .btn-hover-9.btn-primary:hover:before, .btn-hover-9.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-9.sw-btn-next.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-9.sw-btn-next.btn:hover:before, .woocommerce .widget_shopping_cart .buttons a.btn-hover-9:hover:before,
  .woocommerce.widget_shopping_cart .buttons a.btn-hover-9:hover:before, .woocommerce #review_form #respond .form-submit input.btn-hover-9:hover:before, .woocommerce-cart-form .table.shop_table tr .btn-hover-9.button:hover:before, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-9.checkout-button:hover:before, .woocommerce #respond input.btn-hover-9#submit:hover:before,
  .woocommerce a.btn-hover-9.button:hover:before,
  .woocommerce button.btn-hover-9.button:hover:before,
  .woocommerce input.btn-hover-9.button:hover:before,
  .woocommerce .btn-hover-9#place_order:hover:before {
    background-color: var(--primary-dark); }
  .btn-hover-9.btn-secondary:hover:before, .appointment-page-1 .wizard-form .btn-hover-9.sw-btn-prev.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-9.sw-btn-prev.btn:hover:before, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-9.sw-btn-prev:hover:before, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-9.sw-btn-prev:hover:before,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-9.sw-btn-prev:hover:before, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-9.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-9.sw-btn-prev:hover:before, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-9.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-9.sw-btn-prev.button:hover:before, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-9.sw-btn-prev.button:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-9.sw-btn-prev.checkout-button:hover:before, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-9.sw-btn-prev.checkout-button:hover:before, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-9.sw-btn-prev#submit:hover:before, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-9.sw-btn-prev#submit:hover:before,
  .appointment-page-1 .wizard-form .woocommerce a.btn-hover-9.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-9.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce button.btn-hover-9.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-9.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce input.btn-hover-9.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-9.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce .btn-hover-9.sw-btn-prev#place_order:hover:before, .woocommerce .appointment-page-1 .wizard-form .btn-hover-9.sw-btn-prev#place_order:hover:before {
    background-color: var(--secondary-hover); }
  .btn-hover-9:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }

.btn-hover-10 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden; }
  .btn-hover-10 span {
    z-index: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 100%; }
  .btn-hover-10:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    border-right-width: 2px;
    border-right-style: solid;
    border-right-color: #ff9781;
    background-color: rgba(255, 151, 129, 0.4); }
  .btn-hover-10.btn-primary:hover:before, .btn-hover-10.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-10.sw-btn-next.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-10.sw-btn-next.btn:hover:before, .woocommerce .widget_shopping_cart .buttons a.btn-hover-10:hover:before,
  .woocommerce.widget_shopping_cart .buttons a.btn-hover-10:hover:before, .woocommerce #review_form #respond .form-submit input.btn-hover-10:hover:before, .woocommerce-cart-form .table.shop_table tr .btn-hover-10.button:hover:before, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-10.checkout-button:hover:before, .woocommerce #respond input.btn-hover-10#submit:hover:before,
  .woocommerce a.btn-hover-10.button:hover:before,
  .woocommerce button.btn-hover-10.button:hover:before,
  .woocommerce input.btn-hover-10.button:hover:before,
  .woocommerce .btn-hover-10#place_order:hover:before {
    background-color: var(--primary-dark); }
  .btn-hover-10.btn-secondary:hover:before, .appointment-page-1 .wizard-form .btn-hover-10.sw-btn-prev.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-10.sw-btn-prev.btn:hover:before, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-10.sw-btn-prev:hover:before, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-10.sw-btn-prev:hover:before,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-10.sw-btn-prev:hover:before, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-10.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-10.sw-btn-prev:hover:before, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-10.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-10.sw-btn-prev.button:hover:before, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-10.sw-btn-prev.button:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-10.sw-btn-prev.checkout-button:hover:before, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-10.sw-btn-prev.checkout-button:hover:before, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-10.sw-btn-prev#submit:hover:before, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-10.sw-btn-prev#submit:hover:before,
  .appointment-page-1 .wizard-form .woocommerce a.btn-hover-10.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-10.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce button.btn-hover-10.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-10.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce input.btn-hover-10.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-10.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce .btn-hover-10.sw-btn-prev#place_order:hover:before, .woocommerce .appointment-page-1 .wizard-form .btn-hover-10.sw-btn-prev#place_order:hover:before {
    background-color: var(--secondary-hover); }
  .btn-hover-10:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }

.btn-hover-11 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden; }
  .btn-hover-11 span {
    z-index: 2;
    position: relative;
    display: block;
    width: 100%;
    height: 100%; }
  .btn-hover-11:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 1;
    -webkit-transform: translate(-13%, -190%) rotate(-30deg);
    transform: translate(-13%, -190%) rotate(-30deg);
    border-bottom-width: 2px;
    border-bottom-style: solid;
    border-bottom-color: #ff9781;
    background-color: rgba(255, 151, 129, 0.4); }
  .btn-hover-11.btn-primary:hover:before, .btn-hover-11.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-11.sw-btn-next.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-11.sw-btn-next.btn:hover:before, .woocommerce .widget_shopping_cart .buttons a.btn-hover-11:hover:before,
  .woocommerce.widget_shopping_cart .buttons a.btn-hover-11:hover:before, .woocommerce #review_form #respond .form-submit input.btn-hover-11:hover:before, .woocommerce-cart-form .table.shop_table tr .btn-hover-11.button:hover:before, .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-11.checkout-button:hover:before, .woocommerce #respond input.btn-hover-11#submit:hover:before,
  .woocommerce a.btn-hover-11.button:hover:before,
  .woocommerce button.btn-hover-11.button:hover:before,
  .woocommerce input.btn-hover-11.button:hover:before,
  .woocommerce .btn-hover-11#place_order:hover:before {
    background-color: var(--primary-dark); }
  .btn-hover-11.btn-secondary:hover:before, .appointment-page-1 .wizard-form .btn-hover-11.sw-btn-prev.wp-block-button__link:hover:before, .appointment-page-1 .wizard-form .btn-hover-11.sw-btn-prev.btn:hover:before, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.btn-hover-11.sw-btn-prev:hover:before, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-11.sw-btn-prev:hover:before,
  .appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.btn-hover-11.sw-btn-prev:hover:before, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.btn-hover-11.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.btn-hover-11.sw-btn-prev:hover:before, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.btn-hover-11.sw-btn-prev:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .btn-hover-11.sw-btn-prev.button:hover:before, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .btn-hover-11.sw-btn-prev.button:hover:before, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.btn-hover-11.sw-btn-prev.checkout-button:hover:before, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.btn-hover-11.sw-btn-prev.checkout-button:hover:before, .appointment-page-1 .wizard-form .woocommerce #respond input.btn-hover-11.sw-btn-prev#submit:hover:before, .woocommerce #respond .appointment-page-1 .wizard-form input.btn-hover-11.sw-btn-prev#submit:hover:before,
  .appointment-page-1 .wizard-form .woocommerce a.btn-hover-11.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form a.btn-hover-11.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce button.btn-hover-11.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form button.btn-hover-11.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce input.btn-hover-11.sw-btn-prev.button:hover:before, .woocommerce .appointment-page-1 .wizard-form input.btn-hover-11.sw-btn-prev.button:hover:before,
  .appointment-page-1 .wizard-form .woocommerce .btn-hover-11.sw-btn-prev#place_order:hover:before, .woocommerce .appointment-page-1 .wizard-form .btn-hover-11.sw-btn-prev#place_order:hover:before {
    background-color: var(--secondary-hover); }
  .btn-hover-11:hover:before {
    opacity: 0;
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0); }

.btn-hover-12 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  overflow: hidden; }
  .btn-hover-12 span {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s; }
  .btn-hover-12:hover span {
    letter-spacing: 2px; }


@keyframes animationPlayBtn1 {
  /*Video Popup*/
  0% {
    opacity: 0.8;
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9); }
  100% {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0; } }

@-webkit-keyframes animationPlayBtn1 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9); }
  100% {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0; } }

.btn-check:checked + .btn-outline-primary, .is-style-outline .btn-check:checked + .wp-block-button__link {
  background-color: var(--primary);
  border-color: var(--primary); }

.btn-check:checked + .btn-outline-secondary {
  background-color: var(--secondary);
  border-color: var(--secondary); }

.btn-check + .btn-outline-primary:hover, .is-style-outline .btn-check + .wp-block-button__link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #fff; }

.btn-check + .btn-outline-secondary:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: #fff; }

.btn-skew-icon {
  display: flex;
  align-items: center;
  justify-content: center; }
  .btn-skew-icon .text {
    color: #fff;
    background: var(--secondary);
    padding: 10px 30px;
    transform: skewX(-12deg);
    display: inline-block;
    margin-right: 7px; }
    .btn-skew-icon .text span {
      transform: skewX(12deg);
      display: inline-block; }
  .btn-skew-icon i {
    background: #fff;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    color: #000;
    display: inline-block;
    transform: skewX(-12deg); }
    .btn-skew-icon i:before {
      transform: skewX(12deg);
      display: inline-block; }
  @media only screen and (max-width: 1199px) {
    .btn-skew-icon .text {
      padding: 8px 22px; }
    .btn-skew-icon i {
      height: 40px;
      width: 40px;
      line-height: 40px;
      font-size: 17px; } }
  @media only screen and (max-width: 575px) {
    .btn-skew-icon .text {
      padding: 8px 16px; } }
  .btn-skew-icon:hover i:before {
    animation: upToRight 0.5s forwards; }

.table-responsive-sm {
  min-width: 50rem; }

.table-responsive-md {
  min-width: 60rem; }

.table {
  margin-bottom: 0px;
  font-weight: 400; }
  .table th {
    color: var(--title);
    font-weight: 600; }
  .table tr td,
  .table tr th {
    padding: 10px 20px; }
    @media only screen and (max-width: 575px) {
      .table tr td,
      .table tr th {
        padding: 5px; } }

.table.book-overview tr th {
  color: #222222;
  font-size: 16px;
  font-weight: 500;
  width: 200px; }

.table-striped thead tr th {
  padding-bottom: 15px !important; }

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #ffffff; }

.table-striped tfoot {
  border-top: 2px solid #F2F2F2; }
  .table-striped tfoot tr th {
    padding-top: 10px; }

.table > :not(:first-child) {
  border-top: 1px solid #dee2e6; }

.check-tbl {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.125);
  vertical-align: middle;
  border-width: 0 0 1px 0; }
  .check-tbl thead th {
    font-size: 16px;
    font-weight: 500;
    padding: 0px 20px 20px;
    color: #24262b; }
    .check-tbl thead th:first-child {
      padding: 0 0 20px; }
  .check-tbl tbody td {
    padding: 20px;
    font-weight: 500;
    color: var(--body-color); }
    .check-tbl tbody td img {
      width: 80px; }
    .check-tbl tbody td:first-child, .check-tbl tbody td:last-child {
      padding: 20px 0px; }
  .check-tbl .product-item-close {
    text-align: right; }
    .check-tbl .product-item-close a {
      width: 40px;
      height: 40px;
      background: #F6F6F6;
      display: inline-block;
      color: var(--title);
      text-align: center;
      line-height: 40px;
      border-radius: 100%; }
      .check-tbl .product-item-close a i {
        color: var(--title);
        font-weight: 900;
        vertical-align: middle; }
  .check-tbl .product-item-name,
  .check-tbl .product-item-totle {
    color: var(--secondary); }
    .check-tbl .product-item-name a,
    .check-tbl .product-item-totle a {
      color: var(--secondary); }

.table-order {
  border: 1px solid #e7e7e7; }
  .table-order tbody td img {
    width: 45px; }
  .table-order tbody td {
    padding: 10px;
    font-size: 15px; }
  .table-order thead th {
    font-size: 15px;
    padding: 10px 10px; }

/* time-table */
.time-table table {
  margin-bottom: 30px;
  width: 100%; }
  .time-table table .weight-info {
    padding: 14px 20px; }
  .time-table table thead tr {
    background: rgba(0, 0, 0, 0.1); }
  .time-table table tr:nth-child(2n) {
    background: rgba(0, 0, 0, 0.1); }
  .time-table table th,
  .time-table table td {
    text-align: left;
    padding: 10px 30px 10px 20px;
    width: 50%;
    height: 50px; }
  .time-table table .day {
    color: var(--primary);
    font-family: var(--font-family-title);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase; }
  .time-table table .time {
    color: var(--title);
    font-family: var(--font-family-title);
    font-size: 20px;
    font-weight: 500;
    text-align: end; }
    @media only screen and (max-width: 1280px) {
      .time-table table .time {
        padding: 10px; } }
    @media only screen and (max-width: 767px) {
      .time-table table .time {
        font-size: 14px; } }

/* time-table */
.dz-separator {
  display: inline-block;
  margin-bottom: 10px;
  margin-top: 8px;
  position: relative; }
  .dz-separator.m-b0 {
    margin-bottom: 0; }
  .dz-separator.style-icon {
    width: 30px;
    height: auto;
    text-align: center;
    font-size: 20px;
    color: var(--primary); }
    .dz-separator.style-icon:after, .dz-separator.style-icon:before {
      content: "";
      position: absolute;
      top: 50%;
      left: 40px;
      width: 70px;
      height: 2px;
      background: #fff;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
      border-radius: 12px; }
    .dz-separator.style-icon:before {
      left: auto;
      right: 40px; }

.dz-separator-outer {
  overflow: hidden; }

.dz-separator.style-1 {
  height: 3px;
  width: 60px;
  background-color: var(--primary);
  border-radius: 8px; }

.dz-separator.style-2 {
  height: 10px;
  display: block;
  width: 82px; }
  .dz-separator.style-2:before, .dz-separator.style-2:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 89px;
    left: 0;
    border-radius: 8px;
    background: var(--primary); }
  .dz-separator.style-2:after {
    width: 80%;
    bottom: 0; }
  .dz-separator.style-2:before {
    width: 100%;
    top: 0; }

.dz-separator.style-3 img {
  width: 30px; }

.dz-separator.style-3 i {
  color: var(--primary); }

.dz-separator.style-3:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 40px;
  width: 45px;
  height: 2px;
  background-color: #fff;
  border-radius: 8px; }

.dz-separator.style-3:before {
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  width: 45px;
  height: 2px;
  background-color: #fff;
  border-radius: 8px; }

.dz-separator.style-4 img {
  width: 30px; }

.dz-separator.style-4:after, .dz-separator.style-4:before {
  content: '';
  position: absolute;
  bottom: 0;
  height: 6px;
  border-radius: 3px; }

.dz-separator.style-4:after {
  left: 0;
  width: 53px;
  height: 4px;
  background: var(--secondary); }

.dz-separator.style-4:before {
  left: 60px;
  width: 6px;
  border-radius: 30px;
  background: var(--primary); }

.dz-separator.style-5 .style-liner {
  width: 20px;
  height: 3px;
  background-color: var(--secondary);
  border-radius: 8px; }

.dz-separator.style-5:after, .dz-separator.style-5:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 70px;
  height: 3px;
  border-radius: 8px;
  background: var(--primary);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.dz-separator.style-5:before {
  left: auto;
  right: 30px;
  background: var(--primary); }

.site-filters {
  margin-bottom: 30px; }
  .site-filters ul {
    margin: 0;
    list-style: none; }
  .site-filters li {
    display: inline-block;
    padding: 0;
    margin-bottom: 3px; }
    .site-filters li.btn, .site-filters li.wp-block-button__link, .site-filters .appointment-page-1 .wizard-form li.btn.sw-btn-prev, .appointment-page-1 .wizard-form .site-filters li.btn.sw-btn-prev, .site-filters .appointment-page-1 .wizard-form li.btn.sw-btn-next, .appointment-page-1 .wizard-form .site-filters li.btn.sw-btn-next, .site-filters .woocommerce-cart-form .table.shop_table tr li.button, .woocommerce-cart-form .table.shop_table tr .site-filters li.button,
    .site-filters .woocommerce li#place_order, .woocommerce .site-filters li#place_order {
      box-shadow: none;
      -webkit-box-shadow: none;
      outline: none !important; }
    .site-filters li input {
      display: none; }
    .site-filters li a {
      margin: 0 5px 5px 0;
      display: block; }
  .site-filters.center {
    text-align: center; }
    .site-filters.center ul {
      display: inline-block;
      margin: auto; }
    .site-filters.center [class*="btn"] {
      display: inline-block;
      margin: 0 5px 10px;
      text-transform: uppercase; }
      @media only screen and (max-width: 575px) {
        .site-filters.center [class*="btn"] {
          margin: 0 1px 5px;
          padding: 5px 10px;
          font-size: 12px; } }
  .site-filters.style-1 {
    margin-bottom: 45px; }
    @media only screen and (max-width: 575px) {
      .site-filters.style-1 {
        margin-bottom: 20px; } }
    .site-filters.style-1 .filters li {
      text-transform: capitalize !important;
      margin: 0 15px -1px;
      border: 0;
      border-radius: 0; }
      .site-filters.style-1 .filters li:after {
        content: none; }
      .site-filters.style-1 .filters li a {
        color: #222222;
        font-size: 18px;
        margin: 0;
        border-bottom: 2px solid;
        border-color: transparent;
        padding: 0 2px 10px;
        font-weight: 500;
        text-transform: capitalize; }
      .site-filters.style-1 .filters li.active a {
        color: var(--primary);
        border-color: var(--primary); }
      .site-filters.style-1 .filters li:first-child {
        margin-left: 0; }
      .site-filters.style-1 .filters li:last-child {
        margin-right: 0; }
      @media only screen and (max-width: 991px) {
        .site-filters.style-1 .filters li {
          margin: 0 5px -1px; }
          .site-filters.style-1 .filters li a {
            font-size: 15px; } }
      @media only screen and (max-width: 575px) {
        .site-filters.style-1 .filters li {
          margin: 0 0px -6px; }
          .site-filters.style-1 .filters li a {
            font-size: 14px; } }
  .site-filters.style-2 {
    margin-bottom: 35px; }
    @media only screen and (max-width: 575px) {
      .site-filters.style-2 {
        margin-bottom: 20px; } }
    .site-filters.style-2 .filters li {
      text-transform: capitalize !important;
      margin: 0 15px;
      border: 0;
      border-radius: 0; }
      .site-filters.style-2 .filters li a {
        color: #bfbfbf;
        font-size: 18px;
        margin: 0;
        padding: 0 5px;
        font-weight: 500;
        text-transform: capitalize; }
        .site-filters.style-2 .filters li a:after {
          content: "";
          height: 50%;
          right: -18px;
          top: 6px;
          width: 2px;
          opacity: 0.3;
          position: absolute;
          background-color: #ffffff;
          transform: skew(-20deg, -20deg);
          -moz-transform: skew(-20deg, -20deg);
          -webkit-transform: skew(-20deg, -20deg);
          -o-transform: skew(-20deg, -20deg); }
      .site-filters.style-2 .filters li:hover a, .site-filters.style-2 .filters li.active a {
        color: var(--secondary); }
      .site-filters.style-2 .filters li:first-child {
        margin-left: 0; }
      .site-filters.style-2 .filters li:last-child {
        margin-right: 0; }
        .site-filters.style-2 .filters li:last-child a:after {
          display: none; }
      @media only screen and (max-width: 991px) {
        .site-filters.style-2 .filters li {
          margin: 0 10px 10px 0; }
          .site-filters.style-2 .filters li a {
            font-size: 15px; }
            .site-filters.style-2 .filters li a:after {
              right: -8px; } }
      @media only screen and (max-width: 575px) {
        .site-filters.style-2 .filters li a {
          font-size: 14px; } }
  .site-filters.style-3 {
    margin-bottom: 45px; }
    @media only screen and (max-width: 575px) {
      .site-filters.style-3 {
        margin-bottom: 20px; } }
    .site-filters.style-3 .filters li {
      text-transform: capitalize !important;
      margin: 0 5px -1px;
      border: 0;
      border-radius: 6px;
      background-color: #222222; }
      .site-filters.style-3 .filters li a {
        color: #fff;
        font-size: 15px;
        margin: 0;
        padding: 8px 15px;
        font-weight: 400;
        text-transform: capitalize;
        border-radius: 6px; }
      .site-filters.style-3 .filters li:hover a, .site-filters.style-3 .filters li.active a {
        background-color: var(--secondary); }
      .site-filters.style-3 .filters li:first-child {
        margin-left: 0; }
      .site-filters.style-3 .filters li:last-child {
        margin-right: 0; }
      @media only screen and (max-width: 991px) {
        .site-filters.style-3 .filters li {
          margin: 0 0px 5px 0; }
          .site-filters.style-3 .filters li a {
            font-size: 15px; } }
      @media only screen and (max-width: 575px) {
        .site-filters.style-3 .filters li a {
          font-size: 14px; } }
  .site-filters.style-4 {
    margin-bottom: 45px; }
    @media only screen and (max-width: 575px) {
      .site-filters.style-4 {
        margin-bottom: 20px; } }
    .site-filters.style-4 .filters li {
      text-transform: capitalize !important;
      margin: 0 5px -1px;
      background-color: transparent; }
      .site-filters.style-4 .filters li a {
        border-radius: var(--border-radius-base);
        border: 1px solid var(--primary);
        color: var(--primary);
        font-size: 15px;
        margin: 0;
        padding: 8px 16px;
        font-weight: 400;
        text-transform: capitalize; }
      .site-filters.style-4 .filters li:hover a, .site-filters.style-4 .filters li.active a {
        color: #fff;
        background-color: var(--primary); }
      .site-filters.style-4 .filters li:first-child {
        margin-left: 0; }
      .site-filters.style-4 .filters li:last-child {
        margin-right: 0; }
      @media only screen and (max-width: 991px) {
        .site-filters.style-4 .filters li {
          margin: 0 0px 5px; }
          .site-filters.style-4 .filters li a {
            font-size: 15px; } }
      @media only screen and (max-width: 575px) {
        .site-filters.style-4 .filters li a {
          font-size: 14px; } }
  .site-filters.style-5 {
    margin-bottom: 45px; }
    @media only screen and (max-width: 575px) {
      .site-filters.style-5 {
        margin-bottom: 20px; } }
    .site-filters.style-5 .filters li {
      text-transform: capitalize !important;
      margin: 0 5px -1px;
      background-color: #222222;
      border-radius: 20px;
      border: 0; }
      .site-filters.style-5 .filters li a {
        color: #fff;
        font-size: 15px;
        margin: 0;
        padding: 8px 20px;
        font-weight: 400;
        border-radius: 20px;
        text-transform: capitalize; }
      .site-filters.style-5 .filters li:hover a, .site-filters.style-5 .filters li.active a {
        background-color: var(--secondary); }
      .site-filters.style-5 .filters li:first-child {
        margin-left: 0; }
      .site-filters.style-5 .filters li:last-child {
        margin-right: 0; }
      @media only screen and (max-width: 991px) {
        .site-filters.style-5 .filters li {
          margin: 0 0px 5px; }
          .site-filters.style-5 .filters li a {
            font-size: 15px; } }
      @media only screen and (max-width: 575px) {
        .site-filters.style-5 .filters li a {
          font-size: 14px; } }
  .site-filters.style-6 {
    margin-bottom: 45px; }
    @media only screen and (max-width: 575px) {
      .site-filters.style-6 {
        margin-bottom: 20px; } }
    .site-filters.style-6 .filters li {
      text-transform: capitalize !important;
      margin: 0 5px -1px;
      background-color: var(--primary);
      border-radius: 8px;
      border: 0; }
      .site-filters.style-6 .filters li a {
        color: var(--theme-text-color);
        font-size: 15px;
        margin: 0;
        padding: 8px 16px;
        font-weight: 400;
        border-radius: 8px;
        text-transform: capitalize; }
      .site-filters.style-6 .filters li:hover, .site-filters.style-6 .filters li.active {
        background-color: var(--secondary); }
        .site-filters.style-6 .filters li:hover a, .site-filters.style-6 .filters li.active a {
          color: #fff; }
      .site-filters.style-6 .filters li:first-child {
        margin-left: 0; }
      .site-filters.style-6 .filters li:last-child {
        margin-right: 0; }
      @media only screen and (max-width: 991px) {
        .site-filters.style-6 .filters li {
          margin: 0 5px -1px; } }
      @media only screen and (max-width: 575px) {
        .site-filters.style-6 .filters li {
          margin: 0 0px 5px; }
          .site-filters.style-6 .filters li a {
            font-size: 14px; } }

/* Gallery Filters */
.gallery-filters .check-km i {
  font-size: 20px;
  color: #fff; }

.gallery-grid-8 li {
  width: 12.5%;
  overflow: hidden; }

@media only screen and (max-width: 768px) {
  .gallery-grid-8 li {
    width: 25%; } }

.dz-img-overlay1,
.dz-img-overlay2,
.dz-img-overlay3,
.dz-img-overlay4,
.dz-img-overlay5,
.dz-img-overlay6,
.dz-img-overlay7,
.dz-img-overlay8,
.dz-img-overlay9,
.dz-img-overlay11,
.dz-img-overlay12 {
  position: relative;
  overflow: hidden; }
  .dz-img-overlay1:before, .dz-img-overlay1:after,
  .dz-img-overlay2:before,
  .dz-img-overlay2:after,
  .dz-img-overlay3:before,
  .dz-img-overlay3:after,
  .dz-img-overlay4:before,
  .dz-img-overlay4:after,
  .dz-img-overlay5:before,
  .dz-img-overlay5:after,
  .dz-img-overlay6:before,
  .dz-img-overlay6:after,
  .dz-img-overlay7:before,
  .dz-img-overlay7:after,
  .dz-img-overlay8:before,
  .dz-img-overlay8:after,
  .dz-img-overlay9:before,
  .dz-img-overlay9:after,
  .dz-img-overlay11:before,
  .dz-img-overlay11:after,
  .dz-img-overlay12:before,
  .dz-img-overlay12:after {
    content: "";
    background: #282d32;
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 0;
    opacity: 0.6;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .dz-img-overlay1.overlay-primary,
  .dz-img-overlay2.overlay-primary,
  .dz-img-overlay3.overlay-primary,
  .dz-img-overlay4.overlay-primary,
  .dz-img-overlay5.overlay-primary,
  .dz-img-overlay6.overlay-primary,
  .dz-img-overlay7.overlay-primary,
  .dz-img-overlay8.overlay-primary,
  .dz-img-overlay9.overlay-primary,
  .dz-img-overlay11.overlay-primary,
  .dz-img-overlay12.overlay-primary {
    background: var(--primary); }

.dz-box:hover .dz-img-overlay1:before {
  opacity: 0.7; }

.dz-box:hover .dz-img-overlay2:before {
  opacity: 0.9; }

.dz-box:hover .dz-img-overlay3:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.dz-box:hover .dz-img-overlay4:before {
  width: 100%;
  left: 0; }

.dz-box:hover .dz-img-overlay5:before {
  height: 100%;
  top: 0; }

.dz-box:hover .dz-img-overlay6:before {
  height: 100%; }

.dz-box:hover .dz-img-overlay7:before,
.dz-box:hover .dz-img-overlay7:after {
  width: 50%; }

.dz-box:hover .dz-img-overlay8:before,
.dz-box:hover .dz-img-overlay8:after {
  width: 100%;
  opacity: 0.3; }

.dz-box:hover .dz-img-overlay9:before,
.dz-box:hover .dz-img-overlay9:after {
  width: 100%;
  height: 100%;
  opacity: 0.3; }

.dz-img-overlay1:before {
  width: 100%;
  height: 100%;
  opacity: 0; }

.dz-img-overlay1:hover:before {
  opacity: 0.5; }

.dz-img-overlay2:before {
  width: 100%;
  height: 100%;
  opacity: 0;
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 100%); }
  .dz-img-overlay2:before:hover:before {
    opacity: 0.9; }

.dz-img-overlay3:before {
  left: 50%;
  top: 50%; }

.dz-img-overlay3:hover:before {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0; }

.dz-img-overlay4:before {
  left: 50%;
  top: 0;
  height: 100%; }

.dz-img-overlay4:hover:before {
  width: 100%;
  left: 0; }

.dz-img-overlay5:before {
  left: 0;
  top: 50%;
  width: 100%; }

.dz-img-overlay5:hover:before {
  height: 100%;
  top: 0; }

.dz-img-overlay6:before {
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%; }

.dz-img-overlay6:hover:before {
  height: 100%; }

.dz-img-overlay7:before, .dz-img-overlay7:after {
  height: 100%; }

.dz-img-overlay7:after {
  left: auto;
  right: 0; }

.dz-img-overlay7:hover:before, .dz-img-overlay7:hover:after {
  width: 50%; }

.dz-img-overlay8:before, .dz-img-overlay8:after {
  height: 100%; }

.dz-img-overlay8:after {
  left: auto;
  right: 0; }

.dz-img-overlay8:hover:before, .dz-img-overlay8:hover:after {
  width: 100%;
  opacity: 0.3; }

.dz-img-overlay9:before:before, .dz-img-overlay9:before:after,
.dz-img-overlay9:after:before,
.dz-img-overlay9:after:after {
  left: auto;
  right: 0;
  top: auto;
  bottom: 0; }

.dz-img-overlay9:before:hover:before, .dz-img-overlay9:before:hover:after,
.dz-img-overlay9:after:hover:before,
.dz-img-overlay9:after:hover:after {
  width: 100%;
  height: 100%;
  opacity: 0.3; }

/*  */
.overlay-black-light,
.overlay-black-middle,
.overlay-black-dark,
.overlay-gradient-light,
.overlay-gradient-middle,
.overlay-gradient-dark,
.overlay-white-light,
.overlay-white-middle,
.overlay-white-dark,
.overlay-primary-light,
.overlay-primary-middle,
.overlay-primary-dark,
.overlay-primary {
  position: relative; }
  .overlay-black-light:before,
  .overlay-black-middle:before,
  .overlay-black-dark:before,
  .overlay-gradient-light:before,
  .overlay-gradient-middle:before,
  .overlay-gradient-dark:before,
  .overlay-white-light:before,
  .overlay-white-middle:before,
  .overlay-white-dark:before,
  .overlay-primary-light:before,
  .overlay-primary-middle:before,
  .overlay-primary-dark:before,
  .overlay-primary:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; }
  .overlay-black-light .container,
  .overlay-black-light .container-fluid,
  .overlay-black-light .container-sm,
  .overlay-black-light .container-md,
  .overlay-black-light .container-lg,
  .overlay-black-light .container-xl,
  .overlay-black-middle .container,
  .overlay-black-middle .container-fluid,
  .overlay-black-middle .container-sm,
  .overlay-black-middle .container-md,
  .overlay-black-middle .container-lg,
  .overlay-black-middle .container-xl,
  .overlay-black-dark .container,
  .overlay-black-dark .container-fluid,
  .overlay-black-dark .container-sm,
  .overlay-black-dark .container-md,
  .overlay-black-dark .container-lg,
  .overlay-black-dark .container-xl,
  .overlay-gradient-light .container,
  .overlay-gradient-light .container-fluid,
  .overlay-gradient-light .container-sm,
  .overlay-gradient-light .container-md,
  .overlay-gradient-light .container-lg,
  .overlay-gradient-light .container-xl,
  .overlay-gradient-middle .container,
  .overlay-gradient-middle .container-fluid,
  .overlay-gradient-middle .container-sm,
  .overlay-gradient-middle .container-md,
  .overlay-gradient-middle .container-lg,
  .overlay-gradient-middle .container-xl,
  .overlay-gradient-dark .container,
  .overlay-gradient-dark .container-fluid,
  .overlay-gradient-dark .container-sm,
  .overlay-gradient-dark .container-md,
  .overlay-gradient-dark .container-lg,
  .overlay-gradient-dark .container-xl,
  .overlay-white-light .container,
  .overlay-white-light .container-fluid,
  .overlay-white-light .container-sm,
  .overlay-white-light .container-md,
  .overlay-white-light .container-lg,
  .overlay-white-light .container-xl,
  .overlay-white-middle .container,
  .overlay-white-middle .container-fluid,
  .overlay-white-middle .container-sm,
  .overlay-white-middle .container-md,
  .overlay-white-middle .container-lg,
  .overlay-white-middle .container-xl,
  .overlay-white-dark .container,
  .overlay-white-dark .container-fluid,
  .overlay-white-dark .container-sm,
  .overlay-white-dark .container-md,
  .overlay-white-dark .container-lg,
  .overlay-white-dark .container-xl,
  .overlay-primary-light .container,
  .overlay-primary-light .container-fluid,
  .overlay-primary-light .container-sm,
  .overlay-primary-light .container-md,
  .overlay-primary-light .container-lg,
  .overlay-primary-light .container-xl,
  .overlay-primary-middle .container,
  .overlay-primary-middle .container-fluid,
  .overlay-primary-middle .container-sm,
  .overlay-primary-middle .container-md,
  .overlay-primary-middle .container-lg,
  .overlay-primary-middle .container-xl,
  .overlay-primary-dark .container,
  .overlay-primary-dark .container-fluid,
  .overlay-primary-dark .container-sm,
  .overlay-primary-dark .container-md,
  .overlay-primary-dark .container-lg,
  .overlay-primary-dark .container-xl,
  .overlay-primary .container,
  .overlay-primary .container-fluid,
  .overlay-primary .container-sm,
  .overlay-primary .container-md,
  .overlay-primary .container-lg,
  .overlay-primary .container-xl {
    position: relative;
    z-index: 1; }

.overlay-black-light:before,
.overlay-black-middle:before,
.overlay-black-dark:before {
  background: #050d36; }

.overlay-gradient-light:before,
.overlay-gradient-middle:before,
.overlay-gradient-dark:before {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.65) 100%); }

.overlay-white-light:before,
.overlay-white-middle:before,
.overlay-white-dark:before {
  background: #FFF; }

.overlay-primary-light:before,
.overlay-primary-middle:before,
.overlay-primary-dark:before,
.overlay-primary:before {
  background: var(--primary); }

.overlay-primary-light:before,
.overlay-white-light:before,
.overlay-gradient-light:before,
.overlay-black-light:before {
  opacity: 0.2; }

.overlay-primary-middle:before,
.overlay-white-middle:before,
.overlay-gradient-middle:before,
.overlay-black-middle:before {
  opacity: 0.5; }

.overlay-primary-dark:before,
.overlay-white-dark:before,
.overlay-gradient-dark:before,
.overlay-black-dark:before {
  opacity: 0.9; }

.overlay-bx {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s; }
  .overlay-bx .align-b {
    height: auto;
    left: 0;
    list-style: outside none none;
    margin: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    width: 100%;
    transform: translate(0);
    -o-transform: translate(0);
    -moz-transform: translate(0);
    -webkit-transform: translate(0); }
  .overlay-bx .align-m {
    height: auto;
    left: 50%;
    list-style: outside none none;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 10px; }

.overlay-icon {
  height: auto;
  left: 50%;
  list-style: outside none none;
  margin: 0;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 10px; }
  .overlay-icon a {
    display: inline-block;
    padding: 0;
    margin: 0 2px;
    background-color: #fff; }
    .overlay-icon a i {
      font-size: 18px; }

.overlay-bx:hover a > i,
.dz-media:hover .overlay-bx a > i,
.dz-box-bx:hover .overlay-bx a > i {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }

.overlay-bx:hover,
.dz-media:hover .overlay-bx,
.dz-box:hover .overlay-bx,
.ow-img:hover .overlay-bx,
.ow-portfolio-img:hover .overlay-bx {
  opacity: 1;
  visibility: visible; }

.gallery-box-1 .overlay-bx .overlay-icon span i,
.gallery-box-1 .overlay-bx .overlay-icon a i {
  background-color: #000;
  color: #fff;
  border-radius: 50px;
  font-size: 14px;
  cursor: pointer; }

.gallery-box-1 .overlay-bx .icon-bx-xs {
  width: 60px;
  height: 60px;
  line-height: 60px; }

.overlay-shine .dz-media {
  position: relative;
  overflow: hidden; }
  .overlay-shine .dz-media:before {
    position: absolute;
    top: 0;
    left: -85%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%);
    background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.2) 100%); }
  .overlay-shine .dz-media img {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }

.overlay-shine:hover .dz-media:before {
  -webkit-animation: shine .75s;
  animation: shine .75s; }

@-webkit-keyframes shine {
  100% {
    left: 125%; } }

@keyframes shine {
  100% {
    left: 125%; } }

.dz-overlay-effect1 {
  overflow: hidden; }
  .dz-overlay-effect1 .dz-media {
    position: relative;
    overflow: hidden; }
    .dz-overlay-effect1 .dz-media img {
      object-fit: cover;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
    .dz-overlay-effect1 .dz-media:before {
      content: "";
      position: absolute;
      opacity: 0;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      border-radius: 10px;
      transform: scale(0.8);
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      background: var(--secondary); }
  .dz-overlay-effect1 .overlay-bx {
    opacity: 0;
    position: absolute;
    text-align: center;
    margin: auto;
    z-index: 1;
    transform: translateY(42%);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    top: 50%;
    left: 50%;
    height: auto;
    width: 100%;
    bottom: auto;
    transform: translate(-50%, -50%); }
    .dz-overlay-effect1 .overlay-bx .title,
    .dz-overlay-effect1 .overlay-bx .title a {
      color: #fff; }
    .dz-overlay-effect1 .overlay-bx .sub-title {
      color: #fff; }
  .dz-overlay-effect1:hover .dz-media:before {
    opacity: 0.9;
    transform: scale(1.05); }
  .dz-overlay-effect1:hover .overlay-bx {
    opacity: 1; }

.dz-overlay-effect2 .dz-media {
  position: relative;
  overflow: hidden; }
  .dz-overlay-effect2 .dz-media img {
    object-fit: cover;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .dz-overlay-effect2 .dz-media:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: -100%;
    left: 0;
    background-color: var(--primary);
    opacity: 0.8;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s; }

.dz-overlay-effect2 .overlay-bx {
  opacity: 0;
  position: absolute;
  text-align: center;
  margin: auto;
  z-index: 1;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  .dz-overlay-effect2 .overlay-bx .btn, .dz-overlay-effect2 .overlay-bx .wp-block-button__link, .dz-overlay-effect2 .overlay-bx .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .dz-overlay-effect2 .overlay-bx .btn.sw-btn-prev, .dz-overlay-effect2 .overlay-bx .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .dz-overlay-effect2 .overlay-bx .btn.sw-btn-next, .dz-overlay-effect2 .overlay-bx .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .dz-overlay-effect2 .overlay-bx a,
  .dz-overlay-effect2 .overlay-bx .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .dz-overlay-effect2 .overlay-bx a, .dz-overlay-effect2 .overlay-bx .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .dz-overlay-effect2 .overlay-bx input, .dz-overlay-effect2 .overlay-bx .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .dz-overlay-effect2 .overlay-bx .button, .dz-overlay-effect2 .overlay-bx .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .dz-overlay-effect2 .overlay-bx a.checkout-button, .dz-overlay-effect2 .overlay-bx .woocommerce #respond input#submit, .woocommerce #respond .dz-overlay-effect2 .overlay-bx input#submit,
  .dz-overlay-effect2 .overlay-bx .woocommerce a.button, .woocommerce .dz-overlay-effect2 .overlay-bx a.button,
  .dz-overlay-effect2 .overlay-bx .woocommerce button.button, .woocommerce .dz-overlay-effect2 .overlay-bx button.button,
  .dz-overlay-effect2 .overlay-bx .woocommerce input.button, .woocommerce .dz-overlay-effect2 .overlay-bx input.button,
  .dz-overlay-effect2 .overlay-bx .woocommerce #place_order, .woocommerce .dz-overlay-effect2 .overlay-bx #place_order {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    z-index: 1; }

.dz-overlay-effect2:hover .dz-media:before {
  bottom: 0; }

.dz-overlay-effect2:hover .overlay-bx {
  opacity: 1; }
  .dz-overlay-effect2:hover .overlay-bx .btn, .dz-overlay-effect2:hover .overlay-bx .wp-block-button__link, .dz-overlay-effect2:hover .overlay-bx .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .dz-overlay-effect2:hover .overlay-bx a,
  .dz-overlay-effect2:hover .overlay-bx .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .dz-overlay-effect2:hover .overlay-bx a, .dz-overlay-effect2:hover .overlay-bx .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .dz-overlay-effect2:hover .overlay-bx input, .dz-overlay-effect2:hover .overlay-bx .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .dz-overlay-effect2:hover .overlay-bx .button, .dz-overlay-effect2:hover .overlay-bx .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .dz-overlay-effect2:hover .overlay-bx a.checkout-button, .dz-overlay-effect2:hover .overlay-bx .woocommerce #respond input#submit, .woocommerce #respond .dz-overlay-effect2:hover .overlay-bx input#submit,
  .dz-overlay-effect2:hover .overlay-bx .woocommerce a.button, .woocommerce .dz-overlay-effect2:hover .overlay-bx a.button,
  .dz-overlay-effect2:hover .overlay-bx .woocommerce button.button, .woocommerce .dz-overlay-effect2:hover .overlay-bx button.button,
  .dz-overlay-effect2:hover .overlay-bx .woocommerce input.button, .woocommerce .dz-overlay-effect2:hover .overlay-bx input.button,
  .dz-overlay-effect2:hover .overlay-bx .woocommerce #place_order, .woocommerce .dz-overlay-effect2:hover .overlay-bx #place_order {
    top: 50%; }

.dz-overlay-effect3 .dz-media {
  position: relative;
  overflow: hidden; }
  .dz-overlay-effect3 .dz-media img {
    object-fit: cover;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .dz-overlay-effect3 .dz-media:before, .dz-overlay-effect3 .dz-media:after {
    content: "";
    background: var(--secondary);
    width: 0;
    height: 0;
    opacity: 0.6;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.4s ease-in-out; }
  .dz-overlay-effect3 .dz-media:after {
    top: auto;
    left: auto;
    right: 0;
    bottom: 0; }

.dz-overlay-effect3 .overlay-bx {
  color: #fff;
  width: 85%;
  opacity: 0;
  height: auto;
  bottom: auto;
  top: 50%;
  left: 50%;
  z-index: 2;
  position: absolute;
  transition: all 0.6s ease;
  transform: translateX(-50%) translateY(-50%); }
  .dz-overlay-effect3 .overlay-bx .title {
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 3px; }
  .dz-overlay-effect3 .overlay-bx span {
    font-weight: 400;
    letter-spacing: 1px;
    margin: 0;
    display: block; }

.dz-overlay-effect3:hover .dz-media:before, .dz-overlay-effect3:hover .dz-media:after {
  width: 90%;
  height: 90%; }

.dz-overlay-effect3:hover .overlay-bx {
  opacity: 1; }

.dz-overlay-effect4 .dz-media {
  position: relative;
  overflow: hidden;
  background-color: var(--primary); }
  .dz-overlay-effect4 .dz-media img {
    object-fit: cover;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .dz-overlay-effect4 .dz-media:before, .dz-overlay-effect4 .dz-media:after {
    content: '';
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    opacity: 0;
    transform: scaleX(0);
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    transition: all 0.5s ease 0s; }
  .dz-overlay-effect4 .dz-media:after {
    border-top: none;
    border-bottom: none;
    border-left: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: scaleY(0); }

.dz-overlay-effect4 .overlay-bx {
  color: #fff;
  width: 100%;
  opacity: 0;
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  transition: all 0.5s ease 0s;
  height: auto;
  bottom: auto;
  padding: 30px; }
  .dz-overlay-effect4 .overlay-bx .title {
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 2px; }
  .dz-overlay-effect4 .overlay-bx span {
    letter-spacing: 2px;
    margin: 0;
    display: block; }

.dz-overlay-effect4:hover .dz-media img {
  opacity: .2;
  transform: scale(1.2); }

.dz-overlay-effect4:hover .dz-media:before, .dz-overlay-effect4:hover .dz-media:after {
  opacity: 1; }

.dz-overlay-effect4:hover .dz-media:before {
  transform: scaleX(1); }

.dz-overlay-effect4:hover .dz-media:after {
  transform: scaleY(1); }

.dz-overlay-effect4:hover .overlay-bx {
  opacity: 1; }

.dz-overlay-effect5 .dz-media {
  position: relative;
  overflow: hidden;
  background-color: var(--primary); }
  .dz-overlay-effect5 .dz-media img {
    object-fit: cover;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .dz-overlay-effect5 .dz-media:before {
    content: "";
    background: var(--rgba-primary-9);
    opacity: 0.5;
    transform: scale(0);
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    transition: all .4s ease-in-out; }

.dz-overlay-effect5 .overlay-bx {
  color: #fff;
  background: var(--primary);
  width: 85%;
  padding: 20px;
  opacity: 0;
  transform: translateX(-50%) translateY(0%);
  position: absolute;
  top: 50%;
  left: 50%;
  height: 30%;
  z-index: 1;
  transition: all .4s ease-in-out; }
  .dz-overlay-effect5 .overlay-bx .title {
    color: #fff;
    margin: 0 0 2px; }
  .dz-overlay-effect5 .overlay-bx span {
    letter-spacing: 1px;
    display: block; }

.dz-overlay-effect5:hover .dz-media:before {
  transform: scale(1); }

.dz-overlay-effect5:hover .overlay-bx {
  opacity: 1;
  transform: translateX(-50%) translateY(-50%); }

.dz-overlay-effect6 .dz-media {
  position: relative;
  overflow: hidden;
  background-color: var(--primary); }
  .dz-overlay-effect6 .dz-media img {
    object-fit: cover;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .dz-overlay-effect6 .dz-media:before, .dz-overlay-effect6 .dz-media:after {
    content: '';
    background: var(--rgba-primary-9);
    width: 100%;
    height: 0;
    opacity: 0.1;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 1;
    transition: all 0.4s ease-in-out; }
  .dz-overlay-effect6 .dz-media:after {
    top: 0;
    bottom: auto;
    left: 0;
    right: auto; }

.dz-overlay-effect6 .overlay-bx {
  color: #fff;
  width: 100%;
  padding: 0 20px;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%);
  position: absolute;
  top: 70%;
  left: 50%;
  z-index: 2;
  transition: all .5s ease; }
  .dz-overlay-effect6 .overlay-bx .title {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 2px; }
  .dz-overlay-effect6 .overlay-bx span {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    display: block; }

.dz-overlay-effect6:hover .dz-media:before, .dz-overlay-effect6:hover .dz-media:after {
  width: 100%;
  height: 100%;
  opacity: 0.5; }

.dz-overlay-effect6:hover .dz-media img {
  filter: hue-rotate(50deg); }

.dz-overlay-effect6:hover .overlay-bx {
  opacity: 1;
  top: 90%; }

.pricingtable-features {
  margin: 0;
  padding: 0;
  list-style: none; }
  .pricingtable-features li {
    padding: 12px; }
    .pricingtable-features li i {
      margin: 0 3px; }

.no-col-gap .pricingtable-wrapper {
  margin-left: -1px; }

.table-option {
  border: 2px solid #adadad;
  border-radius: 6px;
  padding: 50px 0px 30px 0; }
  .table-option .pricingtable-footer {
    border: 0;
    background-color: transparent; }
  .table-option .pricingtable-features {
    border: 0;
    background-color: transparent; }
    .table-option .pricingtable-features li {
      border: 0;
      background-color: transparent;
      color: #919191;
      font-size: 18px; }
  .table-option .pricingtable-title {
    border: 0;
    background-color: transparent;
    padding: 0; }
    .table-option .pricingtable-title * {
      color: #000; }
    .table-option .pricingtable-title h2, .table-option .pricingtable-title .h2 {
      font-size: 28px;
      line-height: 36px; }
  .table-option .pricingtable-price {
    padding: 0;
    border: 0;
    background-color: transparent; }
  .table-option .pricingtable-bx {
    color: #000;
    font-size: 63px;
    font-weight: 800; }
    .table-option .pricingtable-bx strong, .table-option .pricingtable-bx sup {
      font-size: 30px;
      font-weight: 700; }
  .table-option:hover, .table-option.active {
    background-color: #eeeeee;
    border: 2px solid #eeeeee; }
  .table-option.dark {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .table-option.dark:hover, .table-option.dark.active {
      background-color: #404040;
      border: 2px solid #404040;
      box-shadow: 0 0 10px 5px rgba(0, 0, 0, 0.3);
      transition: all 0.5s; }
      .table-option.dark:hover .pricingtable-features li,
      .table-option.dark:hover .pricingtable-title h2,
      .table-option.dark:hover .pricingtable-title .h2,
      .table-option.dark:hover .pricingtable-price .pricingtable-bx, .table-option.dark.active .pricingtable-features li,
      .table-option.dark.active .pricingtable-title h2,
      .table-option.dark.active .pricingtable-title .h2,
      .table-option.dark.active .pricingtable-price .pricingtable-bx {
        color: #fff;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s; }
      .table-option.dark:hover .pricingtable-footer .btn.black, .table-option.dark:hover .pricingtable-footer .black.wp-block-button__link, .table-option.dark:hover .pricingtable-footer .woocommerce .widget_shopping_cart .buttons a.black, .woocommerce .widget_shopping_cart .buttons .table-option.dark:hover .pricingtable-footer a.black,
      .table-option.dark:hover .pricingtable-footer .woocommerce.widget_shopping_cart .buttons a.black, .woocommerce.widget_shopping_cart .buttons .table-option.dark:hover .pricingtable-footer a.black, .table-option.dark:hover .pricingtable-footer .woocommerce #review_form #respond .form-submit input.black, .woocommerce #review_form #respond .form-submit .table-option.dark:hover .pricingtable-footer input.black, .table-option.dark:hover .pricingtable-footer .woocommerce-cart-form .table.shop_table tr .black.button, .woocommerce-cart-form .table.shop_table tr .table-option.dark:hover .pricingtable-footer .black.button, .table-option.dark:hover .pricingtable-footer .woocommerce-cart .wc-proceed-to-checkout a.black.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .table-option.dark:hover .pricingtable-footer a.black.checkout-button, .table-option.dark:hover .pricingtable-footer .woocommerce #respond input.black#submit, .woocommerce #respond .table-option.dark:hover .pricingtable-footer input.black#submit,
      .table-option.dark:hover .pricingtable-footer .woocommerce a.black.button, .woocommerce .table-option.dark:hover .pricingtable-footer a.black.button,
      .table-option.dark:hover .pricingtable-footer .woocommerce button.black.button, .woocommerce .table-option.dark:hover .pricingtable-footer button.black.button,
      .table-option.dark:hover .pricingtable-footer .woocommerce input.black.button, .woocommerce .table-option.dark:hover .pricingtable-footer input.black.button,
      .table-option.dark:hover .pricingtable-footer .woocommerce .black#place_order, .woocommerce .table-option.dark:hover .pricingtable-footer .black#place_order, .table-option.dark.active .pricingtable-footer .btn.black, .table-option.dark.active .pricingtable-footer .black.wp-block-button__link, .table-option.dark.active .pricingtable-footer .woocommerce .widget_shopping_cart .buttons a.black, .woocommerce .widget_shopping_cart .buttons .table-option.dark.active .pricingtable-footer a.black,
      .table-option.dark.active .pricingtable-footer .woocommerce.widget_shopping_cart .buttons a.black, .woocommerce.widget_shopping_cart .buttons .table-option.dark.active .pricingtable-footer a.black, .table-option.dark.active .pricingtable-footer .woocommerce #review_form #respond .form-submit input.black, .woocommerce #review_form #respond .form-submit .table-option.dark.active .pricingtable-footer input.black, .table-option.dark.active .pricingtable-footer .woocommerce-cart-form .table.shop_table tr .black.button, .woocommerce-cart-form .table.shop_table tr .table-option.dark.active .pricingtable-footer .black.button, .table-option.dark.active .pricingtable-footer .woocommerce-cart .wc-proceed-to-checkout a.black.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .table-option.dark.active .pricingtable-footer a.black.checkout-button, .table-option.dark.active .pricingtable-footer .woocommerce #respond input.black#submit, .woocommerce #respond .table-option.dark.active .pricingtable-footer input.black#submit,
      .table-option.dark.active .pricingtable-footer .woocommerce a.black.button, .woocommerce .table-option.dark.active .pricingtable-footer a.black.button,
      .table-option.dark.active .pricingtable-footer .woocommerce button.black.button, .woocommerce .table-option.dark.active .pricingtable-footer button.black.button,
      .table-option.dark.active .pricingtable-footer .woocommerce input.black.button, .woocommerce .table-option.dark.active .pricingtable-footer input.black.button,
      .table-option.dark.active .pricingtable-footer .woocommerce .black#place_order, .woocommerce .table-option.dark.active .pricingtable-footer .black#place_order {
        background-color: #fff;
        border-color: rgba(0, 0, 0, 0);
        color: #000; }

.pricingtable-toggle {
  display: flex;
  margin: auto;
  justify-content: center;
  padding: 0;
  margin-bottom: 10px; }
  .pricingtable-toggle span {
    font-size: 18px;
    margin-top: 5px;
    font-weight: 500; }
  .pricingtable-toggle .custom-control-label {
    margin: 0 35px 0 50px; }

.pricingtable-wrapper {
  box-shadow: 1px 0 50px rgba(0, 0, 0, 0.1);
  border-radius: var(--border-radius-base);
  overflow: hidden;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  background-color: #fff; }
  .pricingtable-wrapper.style-1 {
    position: relative;
    z-index: 1;
    border-radius: 0;
    height: 100%;
    transform: translateY(0px);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .pricingtable-wrapper.style-1 .pricingtable-inner {
      display: flex;
      flex-direction: column;
      height: 100%; }
    .pricingtable-wrapper.style-1 .pricingtable-footer {
      margin-top: auto; }
      .pricingtable-wrapper.style-1 .pricingtable-footer .btn, .pricingtable-wrapper.style-1 .pricingtable-footer .wp-block-button__link, .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-1 .pricingtable-footer a,
      .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-1 .pricingtable-footer a, .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-1 .pricingtable-footer input, .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-1 .pricingtable-footer .button, .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-1 .pricingtable-footer a.checkout-button, .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce #respond input#submit, .woocommerce #respond .pricingtable-wrapper.style-1 .pricingtable-footer input#submit,
      .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce a.button, .woocommerce .pricingtable-wrapper.style-1 .pricingtable-footer a.button,
      .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce button.button, .woocommerce .pricingtable-wrapper.style-1 .pricingtable-footer button.button,
      .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce input.button, .woocommerce .pricingtable-wrapper.style-1 .pricingtable-footer input.button,
      .pricingtable-wrapper.style-1 .pricingtable-footer .woocommerce #place_order, .woocommerce .pricingtable-wrapper.style-1 .pricingtable-footer #place_order {
        color: var(--theme-text-color);
        padding: 15px 20px; }
    .pricingtable-wrapper.style-1 .pricingtable-price {
      padding: 30px;
      padding-top: 50px;
      position: relative;
      z-index: 1;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      overflow: hidden; }
      .pricingtable-wrapper.style-1 .pricingtable-price .pricingtable-bx {
        font-weight: 700;
        font-size: 65px;
        margin: 0; }
        .pricingtable-wrapper.style-1 .pricingtable-price .pricingtable-bx small, .pricingtable-wrapper.style-1 .pricingtable-price .pricingtable-bx .small {
          font-size: 24px;
          color: #fff;
          font-weight: 500;
          margin-left: 7px; }
          @media only screen and (max-width: 767px) {
            .pricingtable-wrapper.style-1 .pricingtable-price .pricingtable-bx small, .pricingtable-wrapper.style-1 .pricingtable-price .pricingtable-bx .small {
              font-size: 20px; } }
        @media only screen and (max-width: 1200px) {
          .pricingtable-wrapper.style-1 .pricingtable-price .pricingtable-bx {
            font-size: 45px; } }
      .pricingtable-wrapper.style-1 .pricingtable-price p {
        margin: 0;
        margin-bottom: 15px;
        font-size: 15px;
        color: #ffffffcc;
        line-height: 1.9;
        font-weight: 500; }
      .pricingtable-wrapper.style-1 .pricingtable-price .pricingtable-type {
        color: #071c35;
        font-weight: 700;
        font-size: 26px;
        font-family: var(--font-family-title); }
      @media only screen and (max-width: 1199px) {
        .pricingtable-wrapper.style-1 .pricingtable-price {
          padding: 23px;
          padding-bottom: 30px;
          padding-top: 50px; } }
      .pricingtable-wrapper.style-1 .pricingtable-price::after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--secondary);
        opacity: 0.6;
        z-index: -1; }
    .pricingtable-wrapper.style-1 .pricingtable-features {
      border-top: 1px solid;
      border-color: rgba(255, 255, 255, 0.2);
      padding: 15px 30px;
      text-align: left; }
      .pricingtable-wrapper.style-1 .pricingtable-features li {
        padding: 5px 0 5px 30px;
        position: relative;
        font-weight: 500;
        color: #000;
        margin: 10px 0; }
        .pricingtable-wrapper.style-1 .pricingtable-features li:after {
          content: "\f120";
          font-family: 'dzpower_powerzone';
          font-size: 18px;
          display: block;
          position: absolute;
          left: 0;
          color: var(--primary);
          border-radius: 35px;
          text-align: center;
          top: 8px;
          line-height: 20px;
          -webkit-transition: all 1s;
          -ms-transition: all 1s;
          transition: all 1s; }
        @media only screen and (max-width: 1200px) {
          .pricingtable-wrapper.style-1 .pricingtable-features li {
            font-size: 15px; } }
        @media only screen and (max-width: 575px) {
          .pricingtable-wrapper.style-1 .pricingtable-features li {
            margin: 5px 0; } }
      @media only screen and (max-width: 1199px) {
        .pricingtable-wrapper.style-1 .pricingtable-features {
          padding: 15px 25px; } }
    .pricingtable-wrapper.style-1 .pricingtable-title {
      position: absolute;
      top: 0px;
      left: 0px;
      font-size: 18px;
      line-height: 1.2;
      color: var(--theme-text-color);
      padding: 6px 20px;
      background: var(--primary);
      z-index: 9;
      font-weight: 500; }
      @media only screen and (max-width: 1200px) {
        .pricingtable-wrapper.style-1 .pricingtable-title {
          font-size: 16px; } }
      .pricingtable-wrapper.style-1 .pricingtable-title:after {
        content: "";
        position: absolute;
        right: -7px;
        height: 100%;
        width: 15px;
        top: 0;
        background-color: var(--primary);
        transform: skew(-20deg);
        z-index: -1; }
    .pricingtable-wrapper.style-1:hover {
      transform: translateY(-10px); }
  .pricingtable-wrapper.style-2 {
    position: relative;
    z-index: 1;
    border-radius: 0;
    transition: 0.5s;
    height: 100%; }
    .pricingtable-wrapper.style-2 .pricingtable-inner {
      display: flex;
      flex-direction: column;
      height: 100%; }
    .pricingtable-wrapper.style-2 .pricingtable-footer {
      margin-top: auto; }
      .pricingtable-wrapper.style-2 .pricingtable-footer .btn, .pricingtable-wrapper.style-2 .pricingtable-footer .wp-block-button__link, .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-2 .pricingtable-footer a,
      .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-2 .pricingtable-footer a, .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-2 .pricingtable-footer input, .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-2 .pricingtable-footer .button, .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-2 .pricingtable-footer a.checkout-button, .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce #respond input#submit, .woocommerce #respond .pricingtable-wrapper.style-2 .pricingtable-footer input#submit,
      .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce a.button, .woocommerce .pricingtable-wrapper.style-2 .pricingtable-footer a.button,
      .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce button.button, .woocommerce .pricingtable-wrapper.style-2 .pricingtable-footer button.button,
      .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce input.button, .woocommerce .pricingtable-wrapper.style-2 .pricingtable-footer input.button,
      .pricingtable-wrapper.style-2 .pricingtable-footer .woocommerce #place_order, .woocommerce .pricingtable-wrapper.style-2 .pricingtable-footer #place_order {
        color: var(--theme-text-color);
        padding: 15px 20px; }
    .pricingtable-wrapper.style-2 .pricingtable-price {
      padding: 30px;
      padding-top: 50px;
      background: var(--secondary);
      transition: 0.5s;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      .pricingtable-wrapper.style-2 .pricingtable-price .pricingtable-bx {
        font-weight: 400;
        font-size: 60px;
        margin: 0;
        color: var(--primary); }
        .pricingtable-wrapper.style-2 .pricingtable-price .pricingtable-bx small, .pricingtable-wrapper.style-2 .pricingtable-price .pricingtable-bx .small {
          font-size: 24px;
          color: #fff;
          font-weight: 400;
          margin-left: 7px; }
          @media only screen and (max-width: 767px) {
            .pricingtable-wrapper.style-2 .pricingtable-price .pricingtable-bx small, .pricingtable-wrapper.style-2 .pricingtable-price .pricingtable-bx .small {
              font-size: 20px; } }
        @media only screen and (max-width: 1200px) {
          .pricingtable-wrapper.style-2 .pricingtable-price .pricingtable-bx {
            font-size: 45px; } }
      .pricingtable-wrapper.style-2 .pricingtable-price i {
        font-size: 90px;
        color: var(--rgba-primary-3); }
      .pricingtable-wrapper.style-2 .pricingtable-price p {
        margin: 0;
        margin-bottom: 15px;
        font-size: 15px;
        color: #ffffffcc;
        line-height: 1.9; }
      .pricingtable-wrapper.style-2 .pricingtable-price .pricingtable-type {
        color: #071c35;
        font-weight: 700;
        font-size: 26px;
        font-family: var(--font-family-title); }
      @media only screen and (max-width: 1199px) {
        .pricingtable-wrapper.style-2 .pricingtable-price {
          padding: 23px;
          padding-bottom: 30px;
          padding-top: 50px; } }
    .pricingtable-wrapper.style-2 .pricingtable-features {
      padding: 15px 30px;
      text-align: left; }
      .pricingtable-wrapper.style-2 .pricingtable-features li {
        padding: 5px 0 5px 30px;
        position: relative;
        font-weight: 500;
        color: #000;
        margin: 10px 0; }
        .pricingtable-wrapper.style-2 .pricingtable-features li:after {
          content: "\f120";
          font-family: 'dzpower_powerzone';
          font-size: 18px;
          display: block;
          position: absolute;
          left: 0;
          color: var(--primary);
          border-radius: 35px;
          text-align: center;
          top: 8px;
          line-height: 20px;
          -webkit-transition: all 1s;
          -ms-transition: all 1s;
          transition: all 1s; }
        @media only screen and (max-width: 1200px) {
          .pricingtable-wrapper.style-2 .pricingtable-features li {
            font-size: 15px; } }
        @media only screen and (max-width: 575px) {
          .pricingtable-wrapper.style-2 .pricingtable-features li {
            margin: 5px 0; } }
      @media only screen and (max-width: 1199px) {
        .pricingtable-wrapper.style-2 .pricingtable-features {
          padding: 15px 25px; } }
    .pricingtable-wrapper.style-2 .pricingtable-sub {
      position: absolute;
      top: 30px;
      left: 0px;
      font-size: 18px;
      line-height: 1.2;
      color: var(--theme-text-color);
      padding: 6px 20px;
      background: var(--primary);
      z-index: 1; }
      @media only screen and (max-width: 1200px) {
        .pricingtable-wrapper.style-2 .pricingtable-sub {
          font-size: 16px; } }
    .pricingtable-wrapper.style-2 .pricingtable-title {
      font-size: 40px;
      color: #FFF;
      font-weight: 500;
      margin-top: 15px; }
    .pricingtable-wrapper.style-2 .pricingtable-footer {
      padding: 30px;
      padding-top: 0; }
    .pricingtable-wrapper.style-2:hover .pricingtable-price {
      background: var(--primary); }
      .pricingtable-wrapper.style-2:hover .pricingtable-price i {
        color: var(--title); }
    .pricingtable-wrapper.style-2:hover .pricingtable-title,
    .pricingtable-wrapper.style-2:hover .pricingtable-bx {
      color: var(--title); }
    .pricingtable-wrapper.style-2:hover .pricingtable-sub {
      background: var(--secondary);
      color: #fff; }
  .pricingtable-wrapper.style-3 {
    position: relative;
    z-index: 1;
    border-radius: 0;
    border: 1px solid #AAAAAA;
    height: 100%;
    box-shadow: none;
    background: #FFFFFF; }
    .pricingtable-wrapper.style-3 .pricingtable-inner {
      display: flex;
      flex-direction: column;
      height: 100%; }
    .pricingtable-wrapper.style-3 .pricingtable-footer {
      margin-top: auto; }
      .pricingtable-wrapper.style-3 .pricingtable-footer .btn, .pricingtable-wrapper.style-3 .pricingtable-footer .wp-block-button__link, .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-3 .pricingtable-footer a,
      .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-3 .pricingtable-footer a, .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-3 .pricingtable-footer input, .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-3 .pricingtable-footer .button, .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-3 .pricingtable-footer a.checkout-button, .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce #respond input#submit, .woocommerce #respond .pricingtable-wrapper.style-3 .pricingtable-footer input#submit,
      .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce a.button, .woocommerce .pricingtable-wrapper.style-3 .pricingtable-footer a.button,
      .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce button.button, .woocommerce .pricingtable-wrapper.style-3 .pricingtable-footer button.button,
      .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce input.button, .woocommerce .pricingtable-wrapper.style-3 .pricingtable-footer input.button,
      .pricingtable-wrapper.style-3 .pricingtable-footer .woocommerce #place_order, .woocommerce .pricingtable-wrapper.style-3 .pricingtable-footer #place_order {
        color: var(--theme-text-color);
        padding: 15px 20px; }
    .pricingtable-wrapper.style-3 .pricingtable-price {
      padding: 30px; }
      .pricingtable-wrapper.style-3 .pricingtable-price .pricingtable-bx {
        font-weight: 700;
        font-size: 60px;
        margin: 0;
        color: var(--title);
        margin-bottom: 20px;
        display: flex;
        align-items: center; }
        .pricingtable-wrapper.style-3 .pricingtable-price .pricingtable-bx small, .pricingtable-wrapper.style-3 .pricingtable-price .pricingtable-bx .small {
          font-size: 15px;
          font-weight: 500;
          margin-left: 10px;
          color: var(--title);
          width: 20%;
          display: inline-block; }
          @media only screen and (max-width: 767px) {
            .pricingtable-wrapper.style-3 .pricingtable-price .pricingtable-bx small, .pricingtable-wrapper.style-3 .pricingtable-price .pricingtable-bx .small {
              font-size: 16px; } }
        @media only screen and (max-width: 1200px) {
          .pricingtable-wrapper.style-3 .pricingtable-price .pricingtable-bx {
            font-size: 45px; } }
      .pricingtable-wrapper.style-3 .pricingtable-price p {
        margin-bottom: 15px;
        font-size: 18px;
        color: var(--bs-body-color);
        font-family: var(--font-family-title);
        letter-spacing: 1.8px; }
      .pricingtable-wrapper.style-3 .pricingtable-price .pricingtable-type {
        color: #071c35;
        font-weight: 700;
        font-size: 26px;
        font-family: var(--font-family-title); }
      @media only screen and (max-width: 1199px) {
        .pricingtable-wrapper.style-3 .pricingtable-price {
          padding: 23px;
          padding-bottom: 30px;
          padding-top: 50px; } }
    .pricingtable-wrapper.style-3 .pricingtable-features {
      padding: 5px 30px;
      text-align: left;
      margin-bottom: 10px; }
      .pricingtable-wrapper.style-3 .pricingtable-features li {
        padding: 5px 0 5px 30px;
        position: relative;
        font-weight: 500;
        color: #000;
        margin: 10px 0; }
        .pricingtable-wrapper.style-3 .pricingtable-features li:after {
          content: "\f120";
          font-family: 'dzpower_powerzone';
          font-size: 23px;
          display: block;
          position: absolute;
          left: 0;
          color: var(--primary);
          border-radius: 35px;
          text-align: center;
          top: 8px;
          line-height: 20px;
          -webkit-transition: all 1s;
          -ms-transition: all 1s;
          transition: all 1s; }
        @media only screen and (max-width: 1200px) {
          .pricingtable-wrapper.style-3 .pricingtable-features li {
            font-size: 15px; } }
        @media only screen and (max-width: 575px) {
          .pricingtable-wrapper.style-3 .pricingtable-features li {
            margin: 5px 0; } }
      @media only screen and (max-width: 1199px) {
        .pricingtable-wrapper.style-3 .pricingtable-features {
          padding: 15px 25px; } }
    .pricingtable-wrapper.style-3 .pricingtable-sub-title {
      font-size: 24px;
      font-weight: 700;
      color: var(--title);
      line-height: 1; }
    .pricingtable-wrapper.style-3 .text {
      font-size: 14px;
      font-weight: 500; }
    .pricingtable-wrapper.style-3 .pricingtable-title {
      font-size: 24px;
      font-weight: 700;
      font-family: var(--font-family-title);
      color: var(--title); }
      .pricingtable-wrapper.style-3 .pricingtable-title.premium {
        position: absolute;
        top: 30px;
        right: 30px;
        padding: 5px 7px;
        font-size: 14px;
        background: var(--primary);
        display: none;
        font-weight: 500; }
    .pricingtable-wrapper.style-3 .effect {
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-radius: 50%;
      transition: width .4s ease-in-out,height .4s ease-in-out;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: -1;
      background: var(--secondary); }
    .pricingtable-wrapper.style-3.active p,
    .pricingtable-wrapper.style-3.active li,
    .pricingtable-wrapper.style-3.active .text,
    .pricingtable-wrapper.style-3.active .pricingtable-title,
    .pricingtable-wrapper.style-3.active .pricingtable-bx,
    .pricingtable-wrapper.style-3.active .pricingtable-sub-title, .pricingtable-wrapper.style-3:hover p,
    .pricingtable-wrapper.style-3:hover li,
    .pricingtable-wrapper.style-3:hover .text,
    .pricingtable-wrapper.style-3:hover .pricingtable-title,
    .pricingtable-wrapper.style-3:hover .pricingtable-bx,
    .pricingtable-wrapper.style-3:hover .pricingtable-sub-title {
      color: #fff; }
    .pricingtable-wrapper.style-3.active .btn.btn-dark, .pricingtable-wrapper.style-3.active .btn-dark.wp-block-button__link, .pricingtable-wrapper.style-3.active .woocommerce .widget_shopping_cart .buttons a.btn-dark, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-3.active a.btn-dark,
    .pricingtable-wrapper.style-3.active .woocommerce.widget_shopping_cart .buttons a.btn-dark, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-3.active a.btn-dark, .pricingtable-wrapper.style-3.active .woocommerce #review_form #respond .form-submit input.btn-dark, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-3.active input.btn-dark, .pricingtable-wrapper.style-3.active .woocommerce-cart-form .table.shop_table tr .btn-dark.button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-3.active .btn-dark.button, .pricingtable-wrapper.style-3.active .woocommerce-cart .wc-proceed-to-checkout a.btn-dark.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-3.active a.btn-dark.checkout-button, .pricingtable-wrapper.style-3.active .woocommerce #respond input.btn-dark#submit, .woocommerce #respond .pricingtable-wrapper.style-3.active input.btn-dark#submit,
    .pricingtable-wrapper.style-3.active .woocommerce a.btn-dark.button, .woocommerce .pricingtable-wrapper.style-3.active a.btn-dark.button,
    .pricingtable-wrapper.style-3.active .woocommerce button.btn-dark.button, .woocommerce .pricingtable-wrapper.style-3.active button.btn-dark.button,
    .pricingtable-wrapper.style-3.active .woocommerce input.btn-dark.button, .woocommerce .pricingtable-wrapper.style-3.active input.btn-dark.button,
    .pricingtable-wrapper.style-3.active .woocommerce .btn-dark#place_order, .woocommerce .pricingtable-wrapper.style-3.active .btn-dark#place_order, .pricingtable-wrapper.style-3:hover .btn.btn-dark, .pricingtable-wrapper.style-3:hover .btn-dark.wp-block-button__link, .pricingtable-wrapper.style-3:hover .woocommerce .widget_shopping_cart .buttons a.btn-dark, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-3:hover a.btn-dark,
    .pricingtable-wrapper.style-3:hover .woocommerce.widget_shopping_cart .buttons a.btn-dark, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-3:hover a.btn-dark, .pricingtable-wrapper.style-3:hover .woocommerce #review_form #respond .form-submit input.btn-dark, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-3:hover input.btn-dark, .pricingtable-wrapper.style-3:hover .woocommerce-cart-form .table.shop_table tr .btn-dark.button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-3:hover .btn-dark.button, .pricingtable-wrapper.style-3:hover .woocommerce-cart .wc-proceed-to-checkout a.btn-dark.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-3:hover a.btn-dark.checkout-button, .pricingtable-wrapper.style-3:hover .woocommerce #respond input.btn-dark#submit, .woocommerce #respond .pricingtable-wrapper.style-3:hover input.btn-dark#submit,
    .pricingtable-wrapper.style-3:hover .woocommerce a.btn-dark.button, .woocommerce .pricingtable-wrapper.style-3:hover a.btn-dark.button,
    .pricingtable-wrapper.style-3:hover .woocommerce button.btn-dark.button, .woocommerce .pricingtable-wrapper.style-3:hover button.btn-dark.button,
    .pricingtable-wrapper.style-3:hover .woocommerce input.btn-dark.button, .woocommerce .pricingtable-wrapper.style-3:hover input.btn-dark.button,
    .pricingtable-wrapper.style-3:hover .woocommerce .btn-dark#place_order, .woocommerce .pricingtable-wrapper.style-3:hover .btn-dark#place_order {
      background: var(--primary);
      border-color: var(--primary);
      color: var(--title) !important; }
    .pricingtable-wrapper.style-3.active .btn.btn-outline-dark, .pricingtable-wrapper.style-3.active .btn-outline-dark.wp-block-button__link, .pricingtable-wrapper.style-3.active .woocommerce .widget_shopping_cart .buttons a.btn-outline-dark, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-3.active a.btn-outline-dark,
    .pricingtable-wrapper.style-3.active .woocommerce.widget_shopping_cart .buttons a.btn-outline-dark, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-3.active a.btn-outline-dark, .pricingtable-wrapper.style-3.active .woocommerce #review_form #respond .form-submit input.btn-outline-dark, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-3.active input.btn-outline-dark, .pricingtable-wrapper.style-3.active .woocommerce-cart-form .table.shop_table tr .btn-outline-dark.button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-3.active .btn-outline-dark.button, .pricingtable-wrapper.style-3.active .woocommerce-cart .wc-proceed-to-checkout a.btn-outline-dark.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-3.active a.btn-outline-dark.checkout-button, .pricingtable-wrapper.style-3.active .woocommerce #respond input.btn-outline-dark#submit, .woocommerce #respond .pricingtable-wrapper.style-3.active input.btn-outline-dark#submit,
    .pricingtable-wrapper.style-3.active .woocommerce a.btn-outline-dark.button, .woocommerce .pricingtable-wrapper.style-3.active a.btn-outline-dark.button,
    .pricingtable-wrapper.style-3.active .woocommerce button.btn-outline-dark.button, .woocommerce .pricingtable-wrapper.style-3.active button.btn-outline-dark.button,
    .pricingtable-wrapper.style-3.active .woocommerce input.btn-outline-dark.button, .woocommerce .pricingtable-wrapper.style-3.active input.btn-outline-dark.button,
    .pricingtable-wrapper.style-3.active .woocommerce .btn-outline-dark#place_order, .woocommerce .pricingtable-wrapper.style-3.active .btn-outline-dark#place_order, .pricingtable-wrapper.style-3:hover .btn.btn-outline-dark, .pricingtable-wrapper.style-3:hover .btn-outline-dark.wp-block-button__link, .pricingtable-wrapper.style-3:hover .woocommerce .widget_shopping_cart .buttons a.btn-outline-dark, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-3:hover a.btn-outline-dark,
    .pricingtable-wrapper.style-3:hover .woocommerce.widget_shopping_cart .buttons a.btn-outline-dark, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-3:hover a.btn-outline-dark, .pricingtable-wrapper.style-3:hover .woocommerce #review_form #respond .form-submit input.btn-outline-dark, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-3:hover input.btn-outline-dark, .pricingtable-wrapper.style-3:hover .woocommerce-cart-form .table.shop_table tr .btn-outline-dark.button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-3:hover .btn-outline-dark.button, .pricingtable-wrapper.style-3:hover .woocommerce-cart .wc-proceed-to-checkout a.btn-outline-dark.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-3:hover a.btn-outline-dark.checkout-button, .pricingtable-wrapper.style-3:hover .woocommerce #respond input.btn-outline-dark#submit, .woocommerce #respond .pricingtable-wrapper.style-3:hover input.btn-outline-dark#submit,
    .pricingtable-wrapper.style-3:hover .woocommerce a.btn-outline-dark.button, .woocommerce .pricingtable-wrapper.style-3:hover a.btn-outline-dark.button,
    .pricingtable-wrapper.style-3:hover .woocommerce button.btn-outline-dark.button, .woocommerce .pricingtable-wrapper.style-3:hover button.btn-outline-dark.button,
    .pricingtable-wrapper.style-3:hover .woocommerce input.btn-outline-dark.button, .woocommerce .pricingtable-wrapper.style-3:hover input.btn-outline-dark.button,
    .pricingtable-wrapper.style-3:hover .woocommerce .btn-outline-dark#place_order, .woocommerce .pricingtable-wrapper.style-3:hover .btn-outline-dark#place_order {
      background: #fff;
      color: var(--title); }
      .pricingtable-wrapper.style-3.active .btn.btn-outline-dark:hover, .pricingtable-wrapper.style-3.active .btn-outline-dark.wp-block-button__link:hover, .pricingtable-wrapper.style-3.active .woocommerce .widget_shopping_cart .buttons a.btn-outline-dark:hover, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-3.active a.btn-outline-dark:hover,
      .pricingtable-wrapper.style-3.active .woocommerce.widget_shopping_cart .buttons a.btn-outline-dark:hover, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-3.active a.btn-outline-dark:hover, .pricingtable-wrapper.style-3.active .woocommerce #review_form #respond .form-submit input.btn-outline-dark:hover, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-3.active input.btn-outline-dark:hover, .pricingtable-wrapper.style-3.active .woocommerce-cart-form .table.shop_table tr .btn-outline-dark.button:hover, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-3.active .btn-outline-dark.button:hover, .pricingtable-wrapper.style-3.active .woocommerce-cart .wc-proceed-to-checkout a.btn-outline-dark.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-3.active a.btn-outline-dark.checkout-button:hover, .pricingtable-wrapper.style-3.active .woocommerce #respond input.btn-outline-dark#submit:hover, .woocommerce #respond .pricingtable-wrapper.style-3.active input.btn-outline-dark#submit:hover,
      .pricingtable-wrapper.style-3.active .woocommerce a.btn-outline-dark.button:hover, .woocommerce .pricingtable-wrapper.style-3.active a.btn-outline-dark.button:hover,
      .pricingtable-wrapper.style-3.active .woocommerce button.btn-outline-dark.button:hover, .woocommerce .pricingtable-wrapper.style-3.active button.btn-outline-dark.button:hover,
      .pricingtable-wrapper.style-3.active .woocommerce input.btn-outline-dark.button:hover, .woocommerce .pricingtable-wrapper.style-3.active input.btn-outline-dark.button:hover,
      .pricingtable-wrapper.style-3.active .woocommerce .btn-outline-dark#place_order:hover, .woocommerce .pricingtable-wrapper.style-3.active .btn-outline-dark#place_order:hover, .pricingtable-wrapper.style-3:hover .btn.btn-outline-dark:hover, .pricingtable-wrapper.style-3:hover .btn-outline-dark.wp-block-button__link:hover, .pricingtable-wrapper.style-3:hover .woocommerce .widget_shopping_cart .buttons a.btn-outline-dark:hover, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-3:hover a.btn-outline-dark:hover,
      .pricingtable-wrapper.style-3:hover .woocommerce.widget_shopping_cart .buttons a.btn-outline-dark:hover, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-3:hover a.btn-outline-dark:hover, .pricingtable-wrapper.style-3:hover .woocommerce #review_form #respond .form-submit input.btn-outline-dark:hover, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-3:hover input.btn-outline-dark:hover, .pricingtable-wrapper.style-3:hover .woocommerce-cart-form .table.shop_table tr .btn-outline-dark.button:hover, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-3:hover .btn-outline-dark.button:hover, .pricingtable-wrapper.style-3:hover .woocommerce-cart .wc-proceed-to-checkout a.btn-outline-dark.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-3:hover a.btn-outline-dark.checkout-button:hover, .pricingtable-wrapper.style-3:hover .woocommerce #respond input.btn-outline-dark#submit:hover, .woocommerce #respond .pricingtable-wrapper.style-3:hover input.btn-outline-dark#submit:hover,
      .pricingtable-wrapper.style-3:hover .woocommerce a.btn-outline-dark.button:hover, .woocommerce .pricingtable-wrapper.style-3:hover a.btn-outline-dark.button:hover,
      .pricingtable-wrapper.style-3:hover .woocommerce button.btn-outline-dark.button:hover, .woocommerce .pricingtable-wrapper.style-3:hover button.btn-outline-dark.button:hover,
      .pricingtable-wrapper.style-3:hover .woocommerce input.btn-outline-dark.button:hover, .woocommerce .pricingtable-wrapper.style-3:hover input.btn-outline-dark.button:hover,
      .pricingtable-wrapper.style-3:hover .woocommerce .btn-outline-dark#place_order:hover, .woocommerce .pricingtable-wrapper.style-3:hover .btn-outline-dark#place_order:hover {
        color: var(--title); }
    .pricingtable-wrapper.style-3.active .pricingtable-bx small, .pricingtable-wrapper.style-3.active .pricingtable-bx .small, .pricingtable-wrapper.style-3:hover .pricingtable-bx small, .pricingtable-wrapper.style-3:hover .pricingtable-bx .small {
      color: #fff; }
    .pricingtable-wrapper.style-3.active .pricingtable-title, .pricingtable-wrapper.style-3:hover .pricingtable-title {
      color: var(--primary); }
      .pricingtable-wrapper.style-3.active .pricingtable-title.premium, .pricingtable-wrapper.style-3:hover .pricingtable-title.premium {
        display: block;
        color: var(--title); }
    .pricingtable-wrapper.style-3.active .effect, .pricingtable-wrapper.style-3:hover .effect {
      width: 300%;
      height: 300%; }
    .pricingtable-wrapper.style-3 .btn, .pricingtable-wrapper.style-3 .wp-block-button__link, .pricingtable-wrapper.style-3 .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .pricingtable-wrapper.style-3 .btn.sw-btn-prev, .pricingtable-wrapper.style-3 .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .pricingtable-wrapper.style-3 .btn.sw-btn-next, .pricingtable-wrapper.style-3 .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-3 a,
    .pricingtable-wrapper.style-3 .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-3 a, .pricingtable-wrapper.style-3 .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-3 input, .pricingtable-wrapper.style-3 .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-3 .button, .pricingtable-wrapper.style-3 .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-3 a.checkout-button, .pricingtable-wrapper.style-3 .woocommerce #respond input#submit, .woocommerce #respond .pricingtable-wrapper.style-3 input#submit,
    .pricingtable-wrapper.style-3 .woocommerce a.button, .woocommerce .pricingtable-wrapper.style-3 a.button,
    .pricingtable-wrapper.style-3 .woocommerce button.button, .woocommerce .pricingtable-wrapper.style-3 button.button,
    .pricingtable-wrapper.style-3 .woocommerce input.button, .woocommerce .pricingtable-wrapper.style-3 input.button,
    .pricingtable-wrapper.style-3 .woocommerce #place_order, .woocommerce .pricingtable-wrapper.style-3 #place_order {
      font-family: var(--font-family-title); }
      .pricingtable-wrapper.style-3 .btn.btn-outline-dark, .pricingtable-wrapper.style-3 .btn-outline-dark.wp-block-button__link, .pricingtable-wrapper.style-3 .woocommerce .widget_shopping_cart .buttons a.btn-outline-dark, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-3 a.btn-outline-dark,
      .pricingtable-wrapper.style-3 .woocommerce.widget_shopping_cart .buttons a.btn-outline-dark, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-3 a.btn-outline-dark, .pricingtable-wrapper.style-3 .woocommerce #review_form #respond .form-submit input.btn-outline-dark, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-3 input.btn-outline-dark, .pricingtable-wrapper.style-3 .woocommerce-cart-form .table.shop_table tr .btn-outline-dark.button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-3 .btn-outline-dark.button, .pricingtable-wrapper.style-3 .woocommerce-cart .wc-proceed-to-checkout a.btn-outline-dark.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-3 a.btn-outline-dark.checkout-button, .pricingtable-wrapper.style-3 .woocommerce #respond input.btn-outline-dark#submit, .woocommerce #respond .pricingtable-wrapper.style-3 input.btn-outline-dark#submit,
      .pricingtable-wrapper.style-3 .woocommerce a.btn-outline-dark.button, .woocommerce .pricingtable-wrapper.style-3 a.btn-outline-dark.button,
      .pricingtable-wrapper.style-3 .woocommerce button.btn-outline-dark.button, .woocommerce .pricingtable-wrapper.style-3 button.btn-outline-dark.button,
      .pricingtable-wrapper.style-3 .woocommerce input.btn-outline-dark.button, .woocommerce .pricingtable-wrapper.style-3 input.btn-outline-dark.button,
      .pricingtable-wrapper.style-3 .woocommerce .btn-outline-dark#place_order, .woocommerce .pricingtable-wrapper.style-3 .btn-outline-dark#place_order {
        border: 1px solid #AAAAAA; }
  .pricingtable-wrapper.style-4 {
    position: relative;
    z-index: 1;
    border-radius: 0;
    height: 100%;
    border: 0.5px solid var(--secondary);
    box-shadow: 0px 4px 74px 0px rgba(35, 35, 35, 0.05); }
    .pricingtable-wrapper.style-4 .pricingtable-inner {
      display: flex;
      flex-direction: column;
      height: 100%; }
    .pricingtable-wrapper.style-4 .pricingtable-footer {
      margin-top: auto; }
      .pricingtable-wrapper.style-4 .pricingtable-footer .btn, .pricingtable-wrapper.style-4 .pricingtable-footer .wp-block-button__link, .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .pricingtable-wrapper.style-4 .pricingtable-footer a,
      .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .pricingtable-wrapper.style-4 .pricingtable-footer a, .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .pricingtable-wrapper.style-4 .pricingtable-footer input, .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .pricingtable-wrapper.style-4 .pricingtable-footer .button, .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .pricingtable-wrapper.style-4 .pricingtable-footer a.checkout-button, .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce #respond input#submit, .woocommerce #respond .pricingtable-wrapper.style-4 .pricingtable-footer input#submit,
      .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce a.button, .woocommerce .pricingtable-wrapper.style-4 .pricingtable-footer a.button,
      .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce button.button, .woocommerce .pricingtable-wrapper.style-4 .pricingtable-footer button.button,
      .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce input.button, .woocommerce .pricingtable-wrapper.style-4 .pricingtable-footer input.button,
      .pricingtable-wrapper.style-4 .pricingtable-footer .woocommerce #place_order, .woocommerce .pricingtable-wrapper.style-4 .pricingtable-footer #place_order {
        color: var(--theme-text-color);
        padding: 15px 20px; }
    .pricingtable-wrapper.style-4 .pricingtable-price {
      padding: 30px;
      display: flex;
      align-items: center;
      background: var(--secondary);
      justify-content: space-between; }
      .pricingtable-wrapper.style-4 .pricingtable-price .pricingtable-title {
        font-size: 40px;
        font-weight: 500;
        color: #FFF;
        line-height: 1.2; }
      .pricingtable-wrapper.style-4 .pricingtable-price .pricingtable-bx {
        font-weight: 700;
        font-size: 50px;
        color: var(--primary);
        margin: 0; }
        .pricingtable-wrapper.style-4 .pricingtable-price .pricingtable-bx small, .pricingtable-wrapper.style-4 .pricingtable-price .pricingtable-bx .small {
          font-size: 16px;
          color: #fff;
          font-weight: 500;
          margin-left: 7px; }
          @media only screen and (max-width: 767px) {
            .pricingtable-wrapper.style-4 .pricingtable-price .pricingtable-bx small, .pricingtable-wrapper.style-4 .pricingtable-price .pricingtable-bx .small {
              font-size: 20px; } }
        @media only screen and (max-width: 1200px) {
          .pricingtable-wrapper.style-4 .pricingtable-price .pricingtable-bx {
            font-size: 45px; } }
      .pricingtable-wrapper.style-4 .pricingtable-price p {
        margin: 0;
        margin-bottom: 15px;
        font-size: 15px;
        color: #ffffffcc;
        line-height: 1.9; }
      .pricingtable-wrapper.style-4 .pricingtable-price .pricingtable-type {
        color: #071c35;
        font-weight: 700;
        font-size: 26px;
        font-family: var(--font-family-title); }
      @media only screen and (max-width: 1199px) {
        .pricingtable-wrapper.style-4 .pricingtable-price {
          padding: 23px;
          padding-bottom: 30px;
          padding-top: 50px; } }
    .pricingtable-wrapper.style-4 .pricingtable-features {
      padding: 30px;
      text-align: left; }
      .pricingtable-wrapper.style-4 .pricingtable-features li {
        padding: 5px 0 5px 30px;
        position: relative;
        font-weight: 500;
        color: #000;
        margin: 10px 0; }
        .pricingtable-wrapper.style-4 .pricingtable-features li:after {
          content: "\f121";
          font-family: 'dzpower_powerzone';
          font-size: 18px;
          display: block;
          position: absolute;
          left: 0;
          color: var(--primary);
          border-radius: 35px;
          text-align: center;
          top: 8px;
          line-height: 20px;
          -webkit-transition: all 1s;
          -ms-transition: all 1s;
          transition: all 1s; }
        @media only screen and (max-width: 1200px) {
          .pricingtable-wrapper.style-4 .pricingtable-features li {
            font-size: 15px; } }
        @media only screen and (max-width: 575px) {
          .pricingtable-wrapper.style-4 .pricingtable-features li {
            margin: 5px 0; } }
      @media only screen and (max-width: 1199px) {
        .pricingtable-wrapper.style-4 .pricingtable-features {
          padding: 15px 25px; } }
    .pricingtable-wrapper.style-4 .pricingtable-footer {
      padding: 30px;
      padding-top: 0; }

.dz-img-effect {
  position: relative;
  overflow: hidden;
  display: block;
  vertical-align: middle; }
  .dz-img-effect img {
    display: block;
    margin: 0;
    width: 100%;
    height: auto;
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 0 rgba(0, 0, 0, 0);
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s; }
  .dz-img-effect.opacity img:hover {
    opacity: 0.8; }
  .dz-img-effect.zoom-slow img {
    transition: all 10s;
    -moz-transition: all 10s;
    -webkit-transition: all 10s;
    -o-transition: all 10s; }
  .dz-img-effect.zoom-slow:hover img {
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2); }
  .dz-img-effect.zoom:hover img {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5); }
  .dz-img-effect.shrink:hover img {
    transform: scale(0.8);
    -moz-transform: scale(0.8);
    -webkit-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8); }
  .dz-img-effect.side-pan:hover img {
    margin-left: -11%;
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2); }
  .dz-img-effect.vertical-pan:hover img {
    margin-top: -10%;
    transform: scale(1.2);
    -moz-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2); }
  .dz-img-effect.fade-in {
    background: #000; }
    .dz-img-effect.fade-in img {
      opacity: 0.65; }
    .dz-img-effect.fade-in:hover img {
      opacity: 1; }
  .dz-img-effect.fade-out {
    background: #000; }
    .dz-img-effect.fade-out:hover img {
      opacity: 0.7; }
  .dz-img-effect.rotate:hover img {
    -moz-transform: scale(1.5) rotate(-20deg);
    -webkit-transform: scale(1.5) rotate(-20deg);
    -o-transform: scale(1.5) rotate(-20deg);
    -ms-transform: scale(1.5) rotate(-20deg);
    transform: scale(1.5) rotate(-20deg); }
  .dz-img-effect.image-sepia img {
    -webkit-filter: sepia(100%);
    filter: sepia(100%); }
  .dz-img-effect.blurr img {
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s; }
  .dz-img-effect.blurr:hover img {
    filter: blur(3px);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px); }
  .dz-img-effect.blurr-invert img {
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    filter: blur(3px);
    -webkit-filter: blur(3px);
    -moz-filter: blur(3px);
    -o-filter: blur(3px);
    -ms-filter: blur(3px); }
  .dz-img-effect.blurr-invert:hover img {
    filter: blur(0px);
    -webkit-filter: blur(0px);
    -moz-filter: blur(0px);
    -o-filter: blur(0px);
    -ms-filter: blur(0px); }
  .dz-img-effect.off-color img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0); }
  .dz-img-effect.off-color:hover img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1); }
  .dz-img-effect.on-color img {
    filter: grayscale(1);
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1); }
  .dz-img-effect.on-color:hover img {
    filter: grayscale(0);
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0); }

.dz-box:hover .dz-img-effect.rotate img {
  -moz-transform: scale(1.5) rotate(-20deg);
  -webkit-transform: scale(1.5) rotate(-20deg);
  -o-transform: scale(1.5) rotate(-20deg);
  -ms-transform: scale(1.5) rotate(-20deg);
  transform: scale(1.5) rotate(-20deg); }

.faq-content-box.style-1 {
  background: #F6F6F6;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column; }
  .faq-content-box.style-1 .dz-title {
    font-family: var(--font-family-title);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px; }
  .faq-content-box.style-1 p {
    font-size: 15px; }
  .faq-content-box.style-1 .faq-link {
    margin-top: auto;
    color: var(--title); }
    .faq-content-box.style-1 .faq-link svg {
      margin-right: 8px; }

.faq-head {
  margin-bottom: 40px; }
  .faq-head .faq-head-section .title {
    font-family: var(--font-family-title);
    font-size: 45px;
    font-style: italic;
    font-weight: 900; }
    @media only screen and (max-width: 767px) {
      .faq-head .faq-head-section .title {
        font-size: 30px; } }
  .faq-head .faq-head-section .text {
    font-size: 15px;
    font-style: normal;
    font-weight: 400; }

.get-in-touch .inner-content {
  padding: 30px 35px;
  position: relative;
  z-index: 1; }
  .get-in-touch .inner-content .left-content {
    display: flex;
    align-items: center; }
    .get-in-touch .inner-content .left-content .pic {
      width: 70px;
      height: 70px; }
      @media only screen and (max-width: 767px) {
        .get-in-touch .inner-content .left-content .pic {
          display: none; } }
      .get-in-touch .inner-content .left-content .pic img {
        border-radius: 50%;
        border: 2px solid #FFF; }
    .get-in-touch .inner-content .left-content .info {
      margin-left: 15px; }
      @media only screen and (max-width: 767px) {
        .get-in-touch .inner-content .left-content .info {
          text-align: center; } }
      .get-in-touch .inner-content .left-content .info .title {
        font-family: Poppins;
        color: #fff;
        font-weight: 500; }
      .get-in-touch .inner-content .left-content .info .text {
        font-size: 16px;
        color: #fff;
        margin-bottom: 0; }
        @media only screen and (max-width: 575px) {
          .get-in-touch .inner-content .left-content .info .text {
            font-size: 14px; } }
  .get-in-touch .inner-content:after {
    content: "";
    box-shadow: 0px 14px 30px 0px rgba(225, 50, 0, 0.1);
    background-color: var(--secondary);
    position: absolute;
    left: 50%;
    top: 0;
    height: 100%;
    z-index: -1;
    width: calc(100% + 25px);
    transform: translateX(-50%) skewX(-12deg); }
    @media only screen and (max-width: 1024px) {
      .get-in-touch .inner-content:after {
        transform: translateX(-50%) skewX(-8deg);
        width: calc(100% + -25px); } }
  .get-in-touch .inner-content:before {
    content: "";
    box-shadow: 0px 14px 30px 0px rgba(225, 50, 0, 0.1);
    background-color: var(--primary);
    position: absolute;
    left: 0;
    top: -3px;
    height: 61%;
    z-index: -1;
    width: calc(100% + 20px);
    transform: skew(-15deg, -1deg); }
    @media only screen and (max-width: 1280px) {
      .get-in-touch .inner-content:before {
        width: 100%;
        left: 18px;
        transform: skew(-7deg, -2deg);
        top: 7px; } }
    @media only screen and (max-width: 991px) {
      .get-in-touch .inner-content:before {
        display: none; } }

.dz-accordion .accordion-item {
  background: #fff;
  margin-bottom: 20px;
  border: 0; }
  @media only screen and (max-width: 575px) {
    .dz-accordion .accordion-item {
      margin-bottom: 15px; } }

.dz-accordion .accordion-body {
  padding: 25px 30px;
  border-radius: 0;
  border: 1px solid #000;
  border-top: 0;
  margin-top: -9px;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  @media only screen and (max-width: 575px) {
    .dz-accordion .accordion-body {
      padding: 15px; } }

.dz-accordion .accordion-collapse {
  border: 0;
  border: 0;
  border-radius: 0 !important; }

.dz-accordion .accordion-header {
  background-color: var(--rgba-primary-2); }
  .dz-accordion .accordion-header .accordion-button {
    font-size: 18px;
    border: 0;
    font-weight: 500;
    padding: 20px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    color: black; }
    @media only screen and (max-width: 575px) {
      .dz-accordion .accordion-header .accordion-button {
        font-size: 12px !important;
        padding: 15px 10px; } }
    .dz-accordion .accordion-header .accordion-button:after {
      content: none; }
    .dz-accordion .accordion-header .accordion-button .toggle-close {
      background-color: transparent;
      height: 55px;
      width: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 5px;
      line-height: 55px;
      text-align: center;
      font-size: 24px;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      z-index: 1;
      overflow: hidden; }
      .dz-accordion .accordion-header .accordion-button .toggle-close:before {
        content: "\2b";
        color: var(--dark);
        font-size: 24px;
        font-family: 'Line Awesome Free';
        z-index: 99;
        opacity: 1;
        transition: all 0.5s;
        line-height: 55px;
        display: block;
        font-weight: 900; }
      @media only screen and (max-width: 575px) {
        .dz-accordion .accordion-header .accordion-button .toggle-close {
          height: 30px;
          width: 30px; }
          .dz-accordion .accordion-header .accordion-button .toggle-close:before {
            font-size: 20px; } }
    .dz-accordion .accordion-header .accordion-button.collapsed {
      background: transparent;
      color: inherit; }
      .dz-accordion .accordion-header .accordion-button.collapsed:after {
        opacity: 0; }
      .dz-accordion .accordion-header .accordion-button.collapsed .toggle-close {
        content: ""; }
        .dz-accordion .accordion-header .accordion-button.collapsed .toggle-close:after {
          opacity: 1; }
        .dz-accordion .accordion-header .accordion-button.collapsed .toggle-close:before {
          opacity: 1; }
    .dz-accordion .accordion-header .accordion-button:not(.collapsed) {
      background-color: var(--secondary);
      color: #fff; }
      .dz-accordion .accordion-header .accordion-button:not(.collapsed) .toggle-close:before {
        content: "\2b";
        color: #fff;
        transform: rotate(90deg); }
  @media only screen and (max-width: 768px) {
    .dz-accordion .accordion-header .accordion-button {
      font-size: 17px; } }

.dz-accordion.accordion-md .accordion-body {
  padding: 25px; }
  @media only screen and (max-width: 575px) {
    .dz-accordion.accordion-md .accordion-body {
      padding: 15px; } }

.dz-accordion.accordion-md .accordion-header .accordion-button {
  padding: 18px 60px 18px 25px; }
  .dz-accordion.accordion-md .accordion-header .accordion-button .toggle-close {
    height: 100%;
    width: 60px; }
    .dz-accordion.accordion-md .accordion-header .accordion-button .toggle-close:before {
      font-size: 25px;
      line-height: 60px; }
      @media only screen and (max-width: 575px) {
        .dz-accordion.accordion-md .accordion-header .accordion-button .toggle-close:before {
          font-size: 20px; } }
    @media only screen and (max-width: 767px) {
      .dz-accordion.accordion-md .accordion-header .accordion-button .toggle-close {
        width: 50px; } }

@media only screen and (max-width: 575px) {
  .dz-accordion.accordion-md .accordion-header .accordion-button {
    padding: 15px 55px 15px 15px; } }

.dz-accordion.accordion-primary .accordion-header {
  background: var(--rgba-primary-1);
  border: 1px solid var(--rgba-primary-1); }
  .dz-accordion.accordion-primary .accordion-header .accordion-button {
    color: var(--primary); }
    .dz-accordion.accordion-primary .accordion-header .accordion-button:after {
      content: none; }
    .dz-accordion.accordion-primary .accordion-header .accordion-button .toggle-close {
      background-color: transparent;
      height: 55px;
      width: 55px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      right: 0px;
      line-height: 55px;
      text-align: center;
      font-size: 24px;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      z-index: 1;
      overflow: hidden; }
      .dz-accordion.accordion-primary .accordion-header .accordion-button .toggle-close:before {
        content: "\2b";
        color: var(--primary);
        font-size: 24px;
        font-family: 'Line Awesome Free';
        z-index: 99;
        opacity: 1;
        transition: all 0.5s;
        line-height: 55px;
        display: block;
        font-weight: 900; }
      @media only screen and (max-width: 575px) {
        .dz-accordion.accordion-primary .accordion-header .accordion-button .toggle-close:before {
          font-size: 20px; } }
    .dz-accordion.accordion-primary .accordion-header .accordion-button.collapsed {
      background: transparent;
      color: #222222; }
      .dz-accordion.accordion-primary .accordion-header .accordion-button.collapsed:after {
        opacity: 0; }
      .dz-accordion.accordion-primary .accordion-header .accordion-button.collapsed .toggle-close {
        content: ""; }
        .dz-accordion.accordion-primary .accordion-header .accordion-button.collapsed .toggle-close:after {
          opacity: 1; }
        .dz-accordion.accordion-primary .accordion-header .accordion-button.collapsed .toggle-close:before {
          opacity: 1; }
    .dz-accordion.accordion-primary .accordion-header .accordion-button:not(.collapsed) {
      background-color: var(--primary);
      color: #fff;
      box-shadow: none; }
      .dz-accordion.accordion-primary .accordion-header .accordion-button:not(.collapsed) .toggle-close:before {
        color: #fff;
        transform: rotate(90deg); }

.dz-accordion.accordion-primary .accordion-body {
  border: 1px solid transparent; }

.dz-accordion.accordion-with-icon .accordion-header .accordion-header-icon {
  position: absolute;
  right: auto;
  left: 25px; }

.dz-accordion.accordion-with-icon .accordion-header .accordion-header-text {
  padding-left: 40px; }

.dz-accordion.vertical-border .accordion-header {
  background: var(--rgba-primary-1);
  border: 1px solid var(--rgba-primary-1);
  color: #222222;
  border-radius: 0px; }
  .dz-accordion.vertical-border .accordion-header .accordion-button {
    border-radius: 0;
    padding: 20px 50px 20px 25px; }
    .dz-accordion.vertical-border .accordion-header .accordion-button .vertical-line {
      position: absolute;
      width: 4px;
      height: 100%;
      z-index: 1;
      background-color: var(--primary);
      left: 0;
      opacity: 0;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
    .dz-accordion.vertical-border .accordion-header .accordion-button .accordion-header-text {
      color: #222222; }
    .dz-accordion.vertical-border .accordion-header .accordion-button.collapsed .accordion-header-text {
      color: #222222; }
    .dz-accordion.vertical-border .accordion-header .accordion-button.collapsed:after {
      opacity: 0; }
    .dz-accordion.vertical-border .accordion-header .accordion-button.collapsed .toggle-close {
      content: ""; }
      .dz-accordion.vertical-border .accordion-header .accordion-button.collapsed .toggle-close:after {
        opacity: 1; }
      .dz-accordion.vertical-border .accordion-header .accordion-button.collapsed .toggle-close:before {
        opacity: 1; }
    .dz-accordion.vertical-border .accordion-header .accordion-button:not(.collapsed) {
      background-color: var(--rgba-primary-1);
      box-shadow: none; }
      .dz-accordion.vertical-border .accordion-header .accordion-button:not(.collapsed) .vertical-line {
        opacity: 1; }
      .dz-accordion.vertical-border .accordion-header .accordion-button:not(.collapsed) .toggle-close:before {
        color: var(--primary);
        transform: rotate(90deg); }

.dz-accordion.vertical-border .accordion-body {
  border-radius: 0;
  margin-top: 0;
  border: 1px solid var(--rgba-primary-3);
  border-top: 0; }

.dz-accordion.head-border .accordion-item {
  background: #fff;
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2); }

.dz-accordion.head-border .accordion-header {
  background: #fff;
  border: #fff; }
  .dz-accordion.head-border .accordion-header .accordion-button {
    color: #222222;
    padding: 18px 60px 18px 25px; }
    .dz-accordion.head-border .accordion-header .accordion-button .horizontal-line {
      position: absolute;
      background-color: #efefef;
      bottom: 0;
      width: calc(100% - 50px);
      height: 2px;
      opacity: 0;
      left: 25px;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
    .dz-accordion.head-border .accordion-header .accordion-button:after {
      content: none; }
    .dz-accordion.head-border .accordion-header .accordion-button .toggle-close:before {
      content: "\2b";
      color: #222222; }
    .dz-accordion.head-border .accordion-header .accordion-button.collapsed {
      background: transparent;
      color: #222222; }
      .dz-accordion.head-border .accordion-header .accordion-button.collapsed:after {
        opacity: 0; }
      .dz-accordion.head-border .accordion-header .accordion-button.collapsed .toggle-close {
        content: ""; }
        .dz-accordion.head-border .accordion-header .accordion-button.collapsed .toggle-close:after {
          opacity: 1; }
        .dz-accordion.head-border .accordion-header .accordion-button.collapsed .toggle-close:before {
          opacity: 1; }
    .dz-accordion.head-border .accordion-header .accordion-button:not(.collapsed) {
      background-color: #fff;
      color: #222222;
      box-shadow: none; }
      .dz-accordion.head-border .accordion-header .accordion-button:not(.collapsed) .horizontal-line {
        opacity: 1; }
      .dz-accordion.head-border .accordion-header .accordion-button:not(.collapsed) .toggle-close:before {
        color: #222222;
        transform: rotate(90deg); }

.dz-accordion.head-border .accordion-body {
  border: 1px solid transparent;
  padding: 25px 25px; }

.dz-accordion.style-2 .accordion-item .accordion-header {
  background-color: transparent;
  border-radius: 0px; }
  .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button {
    font-size: 18px;
    border: 0;
    font-weight: 500;
    padding: 6px 6px 6px 40px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    color: #222;
    justify-content: space-between; }
    .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button:after {
      content: none; }
    .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button .toggle-close {
      background-color: var(--rgba-primary-2);
      height: 30px;
      width: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      left: 0px;
      line-height: 30px;
      text-align: center;
      font-size: 15px;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      z-index: 1;
      overflow: hidden; }
      .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button .toggle-close:before {
        content: "\2b";
        color: var(--title);
        font-size: 15px;
        font-family: 'Line Awesome Free';
        opacity: 1;
        transition: all 0.5s;
        line-height: 30px;
        display: block;
        font-weight: 900; }
    .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button.collapsed {
      background: transparent;
      color: #222; }
      .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button.collapsed:after {
        opacity: 0; }
      .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button.collapsed .toggle-close {
        content: ""; }
        .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button.collapsed .toggle-close:after {
          opacity: 1; }
        .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button.collapsed .toggle-close:before {
          opacity: 1; }
    .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button:not(.collapsed) {
      background-color: transparent;
      color: var(--primary);
      box-shadow: none;
      border-radius: 0px; }
      .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button:not(.collapsed) .toggle-close {
        background-color: var(--primary); }
        .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button:not(.collapsed) .toggle-close:before {
          color: #fff;
          transform: rotate(90deg); }
    .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button .accordion-header-text {
      white-space: nowrap; }
      @media only screen and (max-width: 1199px) {
        .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button .accordion-header-text {
          white-space: nowrap; } }
    .dz-accordion.style-2 .accordion-item .accordion-header .accordion-button .accordion-line {
      width: 100%;
      height: 1px;
      margin: 0 15px;
      background: #D9D9D9; }

.dz-accordion.style-2 .accordion-body {
  border: 0;
  padding: 20px 0 0; }
  .dz-accordion.style-2 .accordion-body p {
    font-size: 16px; }
  .dz-accordion.style-2 .accordion-body .list-square-check li {
    padding: 5px 0px 5px 40px; }
    .dz-accordion.style-2 .accordion-body .list-square-check li:before {
      content: "\f120";
      font-family: dzpower_powerzone; }

.dlab-divider {
  height: 1px;
  position: relative;
  margin: 30px 0; }
  .dlab-divider.tb20 {
    margin: 20px 0; }
  .dlab-divider.tb15 {
    margin: 15px 0; }
  .dlab-divider.tb10 {
    margin: 10px 0; }
  .dlab-divider.tb0 {
    margin: 0; }
  .dlab-divider.divider-2px {
    height: 2px; }
  .dlab-divider.divider-3px {
    height: 3px; }
  .dlab-divider.divider-4px {
    height: 4px; }
  .dlab-divider i {
    position: absolute;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    display: block;
    border-radius: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .dlab-divider.icon-left {
    margin-left: 40px; }
  .dlab-divider.icon-left i {
    left: -40px; }
  .dlab-divider.icon-right {
    margin-right: 40px; }
  .dlab-divider.icon-right i {
    left: auto;
    right: -40px; }
  .dlab-divider.icon-center i {
    left: 50%;
    margin-left: -5px; }

.pagination li {
  margin: 0; }
  .pagination li .page-numbers,
  .pagination li .page-link {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 0 !important;
    color: var(--secondary);
    text-align: center;
    border: 0;
    margin: 0 5px;
    transition: all 0.5s;
    font-size: 15px;
    padding: 10px 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 400;
    font-family: var(--font-family-base);
    background-color: #fff; }
    .pagination li .page-numbers span,
    .pagination li .page-link span {
      display: inline-block; }
    .pagination li .page-numbers.current, .pagination li .page-numbers.active, .pagination li .page-numbers:hover,
    .pagination li .page-link.current,
    .pagination li .page-link.active,
    .pagination li .page-link:hover {
      color: #fff;
      background-color: var(--secondary); }
  @media only screen and (max-width: 575px) {
    .pagination li {
      margin: 0 5px; } }
  .pagination li .prev.active, .pagination li .prev:hover,
  .pagination li .next.active,
  .pagination li .next:hover {
    background-color: var(--secondary);
    color: #fff; }

.pagination.text-center {
  justify-content: center; }

.pagination.rounded-0 .page-item .page-link {
  border-radius: 0; }

.pagination.style-1 {
  justify-content: end; }

.page {
  align-items: center; }
  .page .page-text {
    margin-bottom: 0; }

.post-pagination.style-1 {
  display: flex;
  position: relative;
  z-index: 1;
  padding: 15px 30px 15px 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 767px) {
    .post-pagination.style-1 {
      padding: 15px; } }
  @media only screen and (max-width: 575px) {
    .post-pagination.style-1 {
      padding: 10px 15px; } }
  .post-pagination.style-1 .post-prev,
  .post-pagination.style-1 .post-next {
    width: 50%;
    min-width: 50%; }
  .post-pagination.style-1 .post-inner {
    display: flex;
    align-items: center; }
  .post-pagination.style-1 .post-next .post-inner {
    justify-content: flex-end;
    text-align: right; }
    .post-pagination.style-1 .post-next .post-inner .dz-info .title {
      margin-left: auto; }
  .post-pagination.style-1 .post-next .dz-media {
    margin: 0 !important; }
  .post-pagination.style-1 .dz-media {
    width: 80px;
    min-width: 80px;
    height: 80px; }
    @media only screen and (max-width: 767px) {
      .post-pagination.style-1 .dz-media {
        margin-right: 10px !important; } }
    @media only screen and (max-width: 575px) {
      .post-pagination.style-1 .dz-media {
        display: none; } }
  .post-pagination.style-1 .dz-info {
    padding-right: 15px; }
    @media only screen and (max-width: 767px) {
      .post-pagination.style-1 .dz-info {
        padding-right: 10px; } }
    .post-pagination.style-1 .dz-info span {
      color: var(--primary);
      font-size: 13px;
      font-weight: 500; }
    .post-pagination.style-1 .dz-info .title {
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 1.6px;
      color: var(--title);
      text-transform: capitalize;
      width: 70%;
      line-height: 1.2;
      margin-bottom: 10px; }
      @media only screen and (max-width: 767px) {
        .post-pagination.style-1 .dz-info .title {
          width: 100%; } }
    @media only screen and (max-width: 575px) {
      .post-pagination.style-1 .dz-info {
        padding-right: 0; } }
  .post-pagination.style-1:after {
    content: "";
    height: 75%;
    width: 1px;
    background: rgba(0, 0, 0, 0.1);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .post-pagination.style-1 .post-button .btn-left,
  .post-pagination.style-1 .post-button .btn-right {
    position: absolute;
    top: 35%; }
    .post-pagination.style-1 .post-button .btn-left i,
    .post-pagination.style-1 .post-button .btn-right i {
      color: var(--bs-body-color); }
  .post-pagination.style-1 .post-button .btn-right {
    right: 0; }
  .post-pagination.style-1 .post-button .btn-left {
    left: 0; }

.pagination {
  justify-content: center; }
  .pagination .page-link {
    height: 45px;
    min-width: 45px;
    line-height: 45px;
    padding: 0;
    text-align: center; }
  .pagination.pagination-md .page-item .page-link {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-align: center; }
  .pagination.pagination-sm .page-item .page-link {
    padding: 12px;
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 14px;
    text-align: center; }
  .pagination.pagination-xs .page-item .page-link {
    padding: 10px;
    min-width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 12px;
    text-align: center; }
  .pagination-primary .page-item .page-link {
    background: var(--rgba-primary-1);
    border-color: var(--rgba-primary-1);
    color: #222222; }
    .pagination-primary .page-item .page-link:hover, .pagination-primary .page-item .page-link.active {
      color: #fff;
      background: var(--primary);
      border-color: var(--primary);
      box-shadow: 0 0.625rem 1.25rem 0rem rgba(255, 193, 180, 0.3); }
  .pagination-danger .page-item .page-link {
    background: rgba(255, 0, 3, 0.1);
    border-color: rgba(255, 0, 3, 0.1);
    color: #ff0003; }
    .pagination-danger .page-item .page-link:hover, .pagination-danger .page-item .page-link.active {
      background: #ff0003;
      border-color: #ff0003;
      color: #fff;
      box-shadow: 0 0.625rem 1.25rem 0rem rgba(255, 0, 3, 0.2); }
  .pagination-info .page-item .page-link {
    background: rgba(0, 174, 255, 0.1);
    border-color: rgba(0, 174, 255, 0.1);
    color: #00aeff; }
    .pagination-info .page-item .page-link:hover, .pagination-info .page-item .page-link.active {
      background: #00aeff;
      border-color: #00aeff;
      color: #fff;
      box-shadow: 0 0.625rem 1.25rem 0rem rgba(0, 174, 255, 0.2); }
  .pagination-warning .page-item .page-link {
    background: rgba(255, 189, 19, 0.1);
    border-color: rgba(255, 189, 19, 0.1);
    color: #FFBD13; }
    .pagination-warning .page-item .page-link:hover, .pagination-warning .page-item .page-link.active {
      background: #FFBD13;
      border-color: #FFBD13;
      color: #fff;
      box-shadow: 0 0.625rem 1.25rem 0rem rgba(255, 189, 19, 0.2); }
  .pagination-gutter .page-item {
    margin-right: 15px; }
    .pagination-gutter .page-item .page-link {
      border-radius: 6px !important; }
  .pagination-circle .page-item {
    margin-right: 7px; }
    .pagination-circle .page-item .page-link {
      border: 1px solid var(--rgba-secondary-8);
      border-radius: 50px !important;
      line-height: 43px;
      background: var(--rgba-secondary-8);
      color: #fff;
      text-align: center; }
      .pagination-circle .page-item .page-link:hover {
        color: #fff;
        background: var(--primary); }
  .pagination-square .page-item {
    margin-right: 7px; }
    .pagination-square .page-item .page-link {
      border: 1px solid var(--rgba-secondary-8);
      line-height: 43px;
      background: var(--rgba-secondary-8);
      color: #fff;
      text-align: center; }
      .pagination-square .page-item .page-link:hover {
        color: #fff;
        background: var(--primary); }
  .pagination.no-bg.pagination-primary li:not(.active):hover .page-link {
    background: var(--primary);
    border-color: var(--primary); }
  .pagination.no-bg.pagination-danger li:not(.active):hover .page-link {
    background: #ff0003;
    border-color: #ff0003; }
  .pagination.no-bg.pagination-danger .page-link.current, .pagination.no-bg.pagination-danger .page-link.active, .pagination.no-bg.pagination-danger .page-link:hover {
    background: #ff0003;
    border-color: #ff0003; }
  .pagination.no-bg.pagination-info li:not(.active):hover .page-link {
    background: #00aeff;
    border-color: #00aeff; }
  .pagination.no-bg.pagination-warning li:not(.active):hover .page-link {
    background: #FFBD13;
    border-color: #FFBD13; }
  .pagination.style-2 .page-item .page-link {
    z-index: 1;
    padding: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
    margin-left: 7px;
    color: #222222;
    border: 0; }
    .pagination.style-2 .page-item .page-link:focus {
      outline: 0;
      box-shadow: none; }
  .pagination.style-2 .page-item:last-child .page-link {
    margin-right: 0; }
  .pagination.style-2.pagination-md .page-item .page-link {
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 14px;
    text-align: center; }
  .pagination.style-2.pagination-sm .page-item .page-link {
    padding: 0;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 12px;
    text-align: center; }
  .pagination.style-2.pagination-xs .page-item .page-link {
    padding: 0;
    width: 25px;
    height: 25px;
    line-height: 25px;
    font-size: 10px;
    text-align: center; }

.post-pagination.style-1 {
  display: flex;
  position: relative;
  margin-top: 15px; }
  .post-pagination.style-1 .post-prev,
  .post-pagination.style-1 .post-next {
    width: 50%;
    min-width: 50%; }
  .post-pagination.style-1 .post-inner {
    display: flex;
    align-items: center; }
  .post-pagination.style-1 .post-next .post-inner {
    justify-content: flex-end;
    text-align: right; }
  .post-pagination.style-1 .dz-media {
    width: 80px;
    min-width: 80px;
    height: 60px; }
    @media only screen and (max-width: 575px) {
      .post-pagination.style-1 .dz-media {
        display: none; } }
  .post-pagination.style-1 .dz-info {
    padding-right: 15px; }
    .post-pagination.style-1 .dz-info span {
      color: var(--secondary);
      font-size: 14px;
      font-weight: 400; }
    @media only screen and (max-width: 575px) {
      .post-pagination.style-1 .dz-info {
        padding-right: 0; } }
  .post-pagination.style-1:after {
    content: "";
    height: 80%;
    width: 1px;
    background-color: #CCCCCC;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%); }
  .post-pagination.style-1 .post-next .title {
    text-align: right;
    width: 100%;
    margin-bottom: 0; }
  .post-pagination.style-1 .post-next .title + img {
    margin-left: 20px; }
  .post-pagination.style-1 .post-next .end {
    text-align: right; }
  .post-pagination.style-1 .post-next:after {
    content: "\f105";
    font-family: "FontAwesome";
    color: var(--title);
    position: absolute;
    right: 0;
    top: 50%;
    font-size: 18px;
    transform: translateY(-50%); }
  .post-pagination.style-1 .post-prev .title {
    margin-bottom: 0;
    width: 100%; }
  .post-pagination.style-1 .post-prev img {
    margin-right: 20px; }
  .post-pagination.style-1 .post-prev:after {
    content: "\f104";
    font-family: "FontAwesome";
    color: var(--title);
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 18px;
    transform: translateY(-50%); }

.list-circle li,
.list-angle-double li,
.list-square li,
.list-square-check li {
  position: relative;
  padding: 6px 5px 6px 22px; }
  .list-circle li:before,
  .list-angle-double li:before,
  .list-square li:before,
  .list-square-check li:before {
    position: absolute;
    left: 0;
    top: 7px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900; }

.list-circle.primary li:before,
.list-angle-double.primary li:before,
.list-square.primary li:before,
.list-square-check.primary li:before {
  color: var(--primary); }

.list-angle-double li {
  padding-left: 25px; }

ul.list-circle li:before {
  content: "\f111";
  font-size: 8px;
  font-weight: 900;
  top: 50%;
  color: var(--secondary);
  transform: translateY(-50%); }

ul.list-angle-double li:before {
  content: "\f101";
  font-size: 15px;
  color: var(--primary); }

ul.list-square li:before {
  content: "\f45c";
  top: 19px;
  transform: translateY(-50%);
  color: var(--secondary);
  font-size: 8px; }

.list-square-check li {
  padding: 10px 0px 10px 40px;
  font-weight: 500;
  color: var(--title);
  margin-bottom: 5px;
  position: relative; }
  @media only screen and (max-width: 575px) {
    .list-square-check li {
      margin-bottom: 0; } }
  .list-square-check li:before {
    content: "\f00c";
    font-family: 'Line Awesome Free';
    font-weight: 700;
    position: absolute;
    border-radius: 4px;
    top: 50%;
    height: 28px;
    width: 28px;
    line-height: 28px;
    font-size: 22px;
    color: var(--primary);
    text-align: center;
    padding: 0 0 0 0;
    -webkit-transition: all 0.2s;
    -ms-transition: all 0.2s;
    transition: all 0.2s;
    transform: translateY(-50%) scale(1); }

.list-square-check.square li:before {
  background-color: var(--secondary);
  color: #fff;
  font-size: 16px; }

.list-square-check.list-box li {
  border-radius: 10px;
  background-color: #fff;
  padding: 12px 20px 12px 45px;
  margin-bottom: 5px;
  box-shadow: 0px 10px 30px rgba(145, 80, 65, 0.15); }
  .list-square-check.list-box li:before {
    left: 8px; }

.list-square-check.circle li:before {
  border-radius: 35px;
  background-color: var(--primary);
  color: #fff;
  font-size: 16px; }

.list-check {
  margin-bottom: 40px; }
  .list-check li {
    padding: 10px;
    font-weight: 400;
    margin-bottom: 10px;
    color: #000000; }
    .list-check li svg {
      margin-right: 5px; }
    .list-check li i {
      font-size: 24px;
      margin-right: 5px; }
  .list-check.list-box li {
    border-radius: 10px;
    padding: 12px 20px;
    background-color: #fff;
    margin-bottom: 15px;
    box-shadow: 0px 10px 30px rgba(145, 80, 65, 0.15); }
    .list-check.list-box li i {
      font-size: 24px;
      margin-right: 6px; }
    .list-check.list-box li svg {
      margin-right: 10px; }
  @media only screen and (max-width: 1200px) {
    .list-check li {
      padding: 10px; }
      .list-check li svg {
        margin-right: 5px; } }
  @media only screen and (max-width: 1024px) {
    .list-check {
      margin-bottom: 25px; }
      .list-check li {
        margin-bottom: 10px; } }
  @media only screen and (max-width: 991px) {
    .list-check {
      margin-bottom: 40px; } }

.list-check-2 li {
  padding: 15px 30px 15px  68px;
  position: relative;
  margin: 0 5px;
  align-items: center;
  font-weight: 500;
  font-size: 18px;
  color: #222222;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  .list-check-2 li:before {
    position: absolute;
    left: 5px;
    top: 50%;
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--secondary);
    font-size: 18px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    transform: translateY(-50%); }
  .list-check-2 li:hover {
    color: #fff;
    background-color: var(--secondary); }
    .list-check-2 li:hover:before {
      color: #fff; }

.list-check-2.list-box li {
  border-radius: 10px;
  background-color: #fff;
  margin-bottom: 0 5px;
  box-shadow: 0px 15px 40px #dddddd; }
  .list-check-2.list-box li:hover {
    background-color: var(--secondary); }
    .list-check-2.list-box li:hover:before {
      color: var(--secondary);
      background-color: #fff; }

.list-check-2.circle li {
  margin-bottom: 10px;
  border-radius: 40px; }
  .list-check-2.circle li:before {
    border-radius: 35px;
    background-color: var(--secondary);
    color: #fff; }
  .list-check-2.circle li:hover:before {
    color: var(--secondary);
    background-color: #fff; }

.list-check-2.arrow li {
  margin-bottom: 10px;
  border-radius: 40px; }
  .list-check-2.arrow li:before {
    content: "\f061";
    border-radius: 35px;
    background-color: var(--secondary);
    color: #fff; }
  .list-check-2.arrow li:hover:before {
    color: var(--secondary);
    background-color: #fff; }

@media only screen and (max-width: 991px) {
  .list-check-2 li {
    padding: 15px 10px 15px 60px;
    font-size: 16px; }
  .list-check-2.arrow li:before, .list-check-2.circle li:before {
    font-size: 16px;
    width: 45px;
    height: 45px;
    line-height: 45px; } }

@media only screen and (max-width: 767px) {
  .list-check-2 li {
    padding: 8px 8px 8px  50px;
    font-size: 14px; }
  .list-check-2.arrow li:before, .list-check-2.circle li:before {
    width: 30px;
    height: 30px;
    line-height: 30px; } }

@media only screen and (max-width: 575px) {
  .list-check-2 {
    display: inline-block; }
    .list-check-2 li {
      padding: 8px 25px 8px 45px;
      font-size: 16px; }
    .list-check-2.arrow, .list-check-2.circle {
      display: inline-block; }
      .list-check-2.arrow li, .list-check-2.circle li {
        font-size: 15px; }
        .list-check-2.arrow li:before, .list-check-2.circle li:before {
          font-size: 16px;
          width: 30px;
          height: 30px;
          line-height: 30px; } }

.list-check-2.list-inline li {
  display: inline-block; }

@media only screen and (max-width: 991px) {
  .list-check-2.list-inline li {
    min-height: 50px;
    padding: 12px 20px 12px 60px; } }

@media only screen and (max-width: 767px) {
  .list-check-2.list-inline li {
    min-height: 38px;
    padding: 8px 18px 8px 45px; } }

.list-num-count {
  counter-reset: li;
  padding-left: 0; }
  .list-num-count li {
    position: relative;
    margin: 0 0 6px 30px;
    padding: 4px 8px;
    list-style: none; }
    .list-num-count li:before {
      content: counter(li, decimal);
      counter-increment: li;
      position: absolute;
      top: 2px;
      left: -28px;
      width: 28px;
      height: 28px;
      line-height: 28px;
      padding: 0;
      color: #222222;
      font-weight: 600;
      text-align: center;
      font-size: 12px; }
  .list-num-count.circle li:before {
    border-radius: 100px;
    color: #fff;
    background: var(--primary); }
  .list-num-count.lower-alpha > li:before {
    content: counter(li, lower-alpha); }
  .list-num-count.upper-alpha > li:before {
    content: counter(li, upper-alpha); }
  .list-num-count.border-before li {
    box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
    margin: 0 0 10px 0;
    padding: 10px 20px 10px 45px;
    border-radius: 6px; }
    .list-num-count.border-before li:before {
      border-radius: 100px;
      color: #fff;
      background: var(--primary);
      border: 5px solid var(--secondary);
      top: 0px;
      left: -15px;
      min-width: 45px;
      height: 45px;
      line-height: 25px;
      text-align: center; }
      @media only screen and (max-width: 575px) {
        .list-num-count.border-before li:before {
          left: -12px; } }

.calculator-listing {
  padding: 40px;
  background-color: var(--secondary);
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.2);
  margin-bottom: 30px;
  border-radius: 10px; }
  .calculator-listing ul {
    padding: 0;
    list-style-type: none;
    margin-bottom: 35px; }
    .calculator-listing ul li {
      display: block;
      padding: 17px 30px;
      border-radius: 8px;
      font-weight: 500;
      color: #fff;
      font-size: 18px;
      -webkit-transition: all 0.2s;
      -ms-transition: all 0.2s;
      transition: all 0.2s; }
      .calculator-listing ul li span {
        float: right; }
      .calculator-listing ul li:first-child {
        background-color: #fff;
        color: #222; }
    .calculator-listing ul .list-bg {
      background-color: rgba(255, 255, 255, 0.05); }
  .calculator-listing p {
    font-size: 18px;
    font-weight: 500;
    padding: 0 60px;
    line-height: 27px;
    color: #ffffff;
    text-align: center; }
  @media only screen and (max-width: 1024px) {
    .calculator-listing ul li {
      font-size: 16px; }
    .calculator-listing p {
      font-size: 16px; } }
  @media only screen and (max-width: 575px) {
    .calculator-listing {
      padding: 15px; }
      .calculator-listing ul li {
        font-size: 14px;
        padding: 17px 20px; }
      .calculator-listing p {
        font-size: 14px;
        padding: 0px 20px;
        line-height: 25px; } }

.counter-box.style-1 .title {
  font-size: 70px;
  font-style: normal !important;
  margin-bottom: 0; }
  @media only screen and (max-width: 1280px) {
    .counter-box.style-1 .title {
      font-size: 60px; } }
  @media only screen and (max-width: 991px) {
    .counter-box.style-1 .title {
      font-size: 45px; } }
  @media only screen and (max-width: 575px) {
    .counter-box.style-1 .title {
      font-size: 40px; } }

.counter-box.style-1 .text {
  font-size: 24px;
  font-weight: 500;
  font-family: Kuunari;
  color: var(--title);
  line-height: 1;
  margin-bottom: 0; }
  @media only screen and (max-width: 991px) {
    .counter-box.style-1 .text {
      font-size: 20px; } }
  @media only screen and (max-width: 575px) {
    .counter-box.style-1 .text {
      font-size: 18px; } }

.counter-box.style-2 .counter-r {
  position: relative; }
  .counter-box.style-2 .counter-r:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 73px;
    border-radius: 8px; }
  .counter-box.style-2 .counter-r:nth-child(2):after {
    border: 1px dashed  #222222; }
  .counter-box.style-2 .counter-r .title {
    margin-bottom: 0;
    font-weight: 700;
    color: transparent;
    font-size: 72px;
    -webkit-text-stroke: 2px var(--primary); }
  .counter-box.style-2 .counter-r .sub-title {
    margin-bottom: 0; }
  @media only screen and (max-width: 991px) {
    .counter-box.style-2 .counter-r .title {
      font-size: 42px; } }

.counter-box.style-3 {
  display: flex;
  align-items: center; }
  .counter-box.style-3 .icon-bx {
    margin-right: 20px; }
    .counter-box.style-3 .icon-bx i {
      font-size: 55px;
      color: var(--primary); }
  .counter-box.style-3 .counter-r {
    text-align: left; }
    .counter-box.style-3 .counter-r .title {
      margin-bottom: 0;
      font-weight: 700; }
    .counter-box.style-3 .counter-r p {
      margin-bottom: 0; }
  @media only screen and (max-width: 575px) {
    .counter-box.style-3 {
      justify-content: unset; }
      .counter-box.style-3 .icon-bx {
        margin-right: 15px; }
        .counter-box.style-3 .icon-bx i {
          font-size: 42px; } }

.counter-box.style-4 {
  background-color: var(--primary);
  border-radius: 6px; }
  .counter-box.style-4 .counter-r {
    text-align: left;
    padding: 50px 80px;
    color: #fff; }
    .counter-box.style-4 .counter-r .title {
      font-size: 70px;
      margin-bottom: 0;
      font-weight: 700;
      color: #fff; }
    .counter-box.style-4 .counter-r p {
      margin-bottom: 0;
      font-size: 30px;
      max-width: 270px;
      line-height: 1.4; }
  @media only screen and (max-width: 1200px) {
    .counter-box.style-4 .counter-r {
      padding: 50px; } }
  @media only screen and (max-width: 991px) {
    .counter-box.style-4 .counter-r .title {
      font-size: 55px; }
    .counter-box.style-4 .counter-r p {
      font-size: 26px; } }

/* Light Gallery */
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-sub-html,
.lg-toolbar {
  background-color: rgba(255, 255, 255, 0.9); }

.lg-outer {
  z-index: 1000000; }
  .lg-outer .lg-toogle-thumb,
  .lg-outer .lg-thumb-outer,
  .lg-outer .lg-img-wrap,
  .lg-outer .lg-item {
    background-color: transparent; }
  .lg-outer .lg-object {
    border: 1px solid rgba(0, 0, 0, 0.2); }

.lg-backdrop {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(15px);
  z-index: 999999; }

.lg-outer .lg-toogle-thumb,
.lg-actions .lg-next,
.lg-actions .lg-prev,
.lg-toolbar .lg-icon,
#lg-counter {
  color: #222222; }

.lg-next,
.lg-prev {
  background-color: var(--light);
  border-radius: 0;
  color: #999;
  padding: 10px 10px 10px; }
  .lg-next:hover,
  .lg-prev:hover {
    background-color: var(--secondary);
    color: #fff; }

.lg-outer .lg-thumb {
  width: auto !important; }

.lg-outer .lg-thumb-item {
  border-radius: 0px;
  width: 70px !important;
  height: 70px !important;
  margin-right: 5px !important; }
  .lg-outer .lg-thumb-item.active, .lg-outer .lg-thumb-item:hover {
    border-color: var(--secondary); }

.lightimg {
  cursor: pointer; }

.progress-bx {
  overflow: hidden; }
  .progress-bx .progress {
    overflow: unset; }
    .progress-bx .progress .progress-bar {
      position: relative;
      overflow: unset; }
  .progress-bx.style-1 .progress {
    height: 3px;
    background: #e4e3e3;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 30px;
    overflow: visible; }
    .progress-bx.style-1 .progress .progress-bar {
      box-shadow: none;
      -webkit-animation: myanimation 2s;
      animation: myanimation 2s; }
      .progress-bx.style-1 .progress .progress-bar:after {
        content: "";
        width: 20px;
        height: 20px;
        border: 4px solid #fff;
        position: absolute;
        top: -8px;
        right: 0px; }
    .progress-bx.style-1 .progress.pink .progress-bar {
      background: #f72754; }
      .progress-bx.style-1 .progress.pink .progress-bar:after {
        background: #f72754;
        outline: 2px solid #f72754; }
    .progress-bx.style-1 .progress.yellow .progress-bar {
      background: #ffae03; }
      .progress-bx.style-1 .progress.yellow .progress-bar:after {
        background: #ffae03;
        outline: 2px solid #ffae03; }
    .progress-bx.style-1 .progress.blue .progress-bar {
      background: #2272ff; }
      .progress-bx.style-1 .progress.blue .progress-bar:after {
        background: #2272ff;
        outline: 2px solid #2272ff; }
    .progress-bx.style-1 .progress.green .progress-bar {
      background: #00be69; }
      .progress-bx.style-1 .progress.green .progress-bar:after {
        background: #00be69;
        outline: 2px solid #00be69; }
  .progress-bx.style-1 .progress-title {
    display: block;
    margin-bottom: 5px;
    font-weight: 500; }
  .progress-bx.style-2 {
    overflow: unset; }
    .progress-bx.style-2 .progress {
      height: 10px;
      background: #f5f5f5;
      border-radius: 0;
      box-shadow: none;
      margin-bottom: 30px;
      overflow: visible; }
      .progress-bx.style-2 .progress .progress-bar {
        box-shadow: none;
        position: relative;
        -webkit-animation: myanimation 2s;
        animation: myanimation 2s; }
        .progress-bx.style-2 .progress .progress-bar:after {
          content: "";
          display: block;
          border: 15px solid transparent;
          border-bottom: 21px solid transparent;
          position: absolute;
          top: -26px;
          right: -12px; }
        .progress-bx.style-2 .progress .progress-bar .progress-value {
          font-size: 15px;
          font-weight: bold;
          color: #000;
          position: absolute;
          top: -40px;
          right: 0; }
      .progress-bx.style-2 .progress.pink .progress-bar {
        background: #f72754; }
        .progress-bx.style-2 .progress.pink .progress-bar:after {
          border-bottom-color: #f72754; }
      .progress-bx.style-2 .progress.yellow .progress-bar {
        background: #ffae03; }
        .progress-bx.style-2 .progress.yellow .progress-bar:after {
          border-bottom-color: #ffae03; }
      .progress-bx.style-2 .progress.blue .progress-bar {
        background: #2272ff; }
        .progress-bx.style-2 .progress.blue .progress-bar:after {
          border-bottom-color: #2272ff; }
      .progress-bx.style-2 .progress.green .progress-bar {
        background: #00be69; }
        .progress-bx.style-2 .progress.green .progress-bar:after {
          border-bottom-color: #00be69; }
  .progress-bx.style-3 {
    overflow: unset;
    padding-top: 20px; }
    .progress-bx.style-3 .progress {
      height: 5px;
      border-radius: 0;
      box-shadow: none;
      line-height: 35px;
      overflow: visible;
      background: #f5f5f5; }
      .progress-bx.style-3 .progress .progress-bar {
        box-shadow: none;
        position: relative;
        -webkit-animation: myanimation 2s;
        animation: myanimation 2s;
        background-color: var(--primary); }
        .progress-bx.style-3 .progress .progress-bar:after {
          content: "";
          display: block;
          border: 15px solid transparent;
          border-bottom: 21px solid transparent;
          position: absolute;
          top: -26px;
          right: -12px; }
        .progress-bx.style-3 .progress .progress-bar .progress-value {
          position: absolute;
          right: 0;
          top: -45px;
          background: var(--primary);
          color: #fff;
          padding: 0 8px;
          display: block;
          font-size: 11px;
          border-radius: 3px;
          text-align: center; }
          .progress-bx.style-3 .progress .progress-bar .progress-value:after {
            content: "";
            border-top: 6px solid var(--primary);
            border-left: 6px solid transparent;
            border-right: 6px solid transparent;
            position: absolute;
            bottom: -6px;
            left: 50%;
            margin-left: -5px; }
        .progress-bx.style-3 .progress .progress-bar.active {
          animation: reverse progress-bar-stripes 0.90s linear infinite; }
  .progress-bx.style-4 {
    overflow: unset; }
    .progress-bx.style-4 .progress {
      box-shadow: none;
      overflow: visible;
      background: #f5f5f5; }
      .progress-bx.style-4 .progress .pro-bar {
        background-color: white;
        border: 1px solid #e6e6e6;
        box-sizing: border-box;
        float: left;
        padding: 10px;
        position: relative;
        width: 100%; }
        .progress-bx.style-4 .progress .pro-bar .pro-bg {
          background-color: #f5f5f5;
          float: left;
          height: 10px;
          position: relative;
          width: 100%;
          top: -5px;
          z-index: 1; }
      .progress-bx.style-4 .progress .progress-bar {
        float: left;
        height: 10px;
        left: 0;
        top: -5px;
        z-index: 100;
        margin-top: -10px;
        position: relative;
        -webkit-animation: myanimation 2s;
        animation: myanimation 2s; }
  .progress-bx.style-5 .progress-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px; }
    .progress-bx.style-5 .progress-info .title {
      margin-bottom: 0; }
    .progress-bx.style-5 .progress-info .progress-value {
      margin-bottom: 0; }
  .progress-bx.style-5 .progress {
    margin-top: 5px;
    background-color: var(--rgba-primary-2);
    height: 16px;
    margin-top: 5px; }
    .progress-bx.style-5 .progress .progress-bar {
      background-color: var(--secondary); }
  .progress-bx.style-5 .progress-title {
    font-weight: 500;
    text-transform: uppercase; }

@keyframes myanimation {
  0% {
    width: 0; } }

@keyframes myanimation {
  0% {
    width: 0; } }

.scroltop {
  box-shadow: -4px 4px 24px -10px var(--primary) !important;
  background: var(--primary);
  border-color: var(--primary);
  border-style: solid;
  border-width: 0;
  bottom: 15px;
  color: var(--theme-text-color);
  cursor: pointer;
  display: none;
  height: 50px;
  line-height: 50px;
  margin: 0;
  position: fixed;
  right: 15px;
  text-align: center;
  width: 50px;
  z-index: 999;
  border-radius: 6px;
  box-shadow: -4px 4px 24px -10px;
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s; }
  @media only screen and (max-width: 575px) {
    .scroltop {
      height: 35px;
      width: 35px;
      line-height: 35px; } }

.scroltop-progress {
  position: fixed;
  cursor: pointer;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  border-radius: 50px;
  display: block;
  opacity: 0;
  box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.2);
  z-index: 999;
  visibility: hidden;
  transform: translateY(20px);
  -webkit-transition: all 200ms linear;
  transition: all 200ms linear; }
  .scroltop-progress:after {
    content: "\f062";
    font-size: 18px;
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    height: 50px;
    cursor: pointer;
    width: 50px;
    line-height: 50px;
    color: var(--dark);
    text-align: center;
    transition: all 200ms linear; }
  .scroltop-progress svg path {
    fill: none;
    stroke-width: 4;
    box-sizing: border-box;
    stroke: var(--dark);
    transition: all 200ms linear; }
  .scroltop-progress.active-progress {
    opacity: 1;
    visibility: visible;
    transform: translateY(0); }
  .scroltop-progress.scroltop-primary:after {
    color: var(--primary); }
  .scroltop-progress.scroltop-primary svg path {
    stroke: var(--primary); }
  .scroltop-progress.scroltop-secondary:after {
    color: var(--secondary); }
  .scroltop-progress.scroltop-secondary svg path {
    stroke: var(--secondary); }
  .scroltop-progress:hover:after {
    color: var(--primary); }
  .scroltop-progress:hover svg path {
    stroke: var(--primary); }

.scroltop-progress2 {
  transition: all linear 0.2s;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 3px;
  background-color: var(--primary); }

.video-bx1 {
  position: relative;
  min-width: 170px;
  width: 170px;
  height: 170px;
  border-radius: var(--border-radius-base);
  overflow: hidden; }
  .video-bx1 img {
    height: 100%;
    width: 100%;
    object-fit: cover; }
  .video-bx1 .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    .video-bx1 .video-btn .popup-youtube {
      display: inline-block;
      height: 60px;
      width: 60px;
      min-width: 60px;
      line-height: 60px;
      font-size: 20px;
      border-radius: 60px;
      background-color: #fff;
      color: var(--primary); }
      .video-bx1 .video-btn .popup-youtube:before, .video-bx1 .video-btn .popup-youtube:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        border: 1px solid #fff;
        z-index: -1;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -moz-transition: all 0.5;
        -o-transition: all 0.5;
        -webkit-transition: all 0.5;
        -ms-transition: all 0.5;
        transition: all 0.5; }
      .video-bx1 .video-btn .popup-youtube:before {
        -webkit-border-radius: 50%;
        -khtml-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 100%;
        animation: animationSignal1;
        animation-iteration-count: infinite;
        animation-duration: 3s;
        -webkit-animation: animationSignal1;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-duration: 3s; }
      .video-bx1 .video-btn .popup-youtube:after {
        -webkit-border-radius: 100%;
        -khtml-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
        border-radius: 100%;
        animation: animationSignal2;
        animation-iteration-count: infinite;
        animation-duration: 3s;
        -webkit-animation: animationSignal2;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-duration: 3s; }
  @media only screen and (max-width: 575px) {
    .video-bx1 {
      height: 120px;
      width: 120px;
      min-width: 120px; }
      .video-bx1 .video-btn .popup-youtube {
        height: 40px;
        width: 40px;
        min-width: 40px;
        line-height: 40px;
        font-size: 16px; } }

.video-bx2 {
  height: 500px; }
  .video-bx2.large {
    height: 615px;
    border-radius: var(--border-radius-base);
    overflow: hidden; }
    .video-bx2.large img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  .video-bx2 .video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center; }
    .video-bx2 .video-btn.sm .popup-youtube {
      height: 72px;
      width: 72px;
      min-width: 72px;
      line-height: 72px;
      font-size: 22px; }
    .video-bx2 .video-btn .popup-youtube {
      display: inline-block;
      height: 100px;
      width: 100px;
      min-width: 100px;
      line-height: 100px;
      font-size: 30px;
      border-radius: 100px;
      background-color: #fff;
      color: var(--primary); }
      .video-bx2 .video-btn .popup-youtube:before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        border: 1px solid #fff;
        -webkit-border-radius: 50%;
        -khtml-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        -o-border-radius: 50%;
        border-radius: 100%;
        animation: animationSignal1;
        animation-iteration-count: infinite;
        animation-duration: 3s;
        -webkit-animation: animationSignal1;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-duration: 3s;
        z-index: -1;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -moz-transition: all 0.5;
        -o-transition: all 0.5;
        -webkit-transition: all 0.5;
        -ms-transition: all 0.5;
        transition: all 0.5; }
      .video-bx2 .video-btn .popup-youtube:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: block;
        border: 1px solid #fff;
        -webkit-border-radius: 100%;
        -khtml-border-radius: 100%;
        -moz-border-radius: 100%;
        -ms-border-radius: 100%;
        -o-border-radius: 100%;
        border-radius: 100%;
        animation: animationSignal2;
        animation-iteration-count: infinite;
        animation-duration: 3s;
        -webkit-animation: animationSignal2;
        -webkit-animation-iteration-count: infinite;
        -webkit-animation-duration: 3s;
        z-index: -1;
        transform: scale(1);
        -moz-transform: scale(1);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        -moz-transition: all 0.5;
        -o-transition: all 0.5;
        -webkit-transition: all 0.5;
        -ms-transition: all 0.5;
        transition: all 0.5; }
  @media only screen and (max-width: 991px) {
    .video-bx2 {
      height: 330px; }
      .video-bx2.large {
        height: 380px; } }
  @media only screen and (max-width: 575px) {
    .video-bx2 {
      height: 200px; }
      .video-bx2.large {
        height: 250px; }
      .video-bx2 .video-btn .popup-youtube,
      .video-bx2 .video-btn.sm .popup-youtube {
        height: 60px;
        width: 60px;
        min-width: 60px;
        line-height: 60px;
        font-size: 20px; } }

.video {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 87px;
  height: 87px;
  line-height: 87px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 24px; }
  .video i {
    color: #fff; }
  @media only screen and (max-width: 1280px) {
    .video {
      width: 70px;
      height: 70px;
      line-height: 70px;
      font-size: 18px; } }
  @media only screen and (max-width: 767px) {
    .video {
      width: 55px;
      height: 55px;
      line-height: 55px;
      font-size: 16px; } }
  @media only screen and (max-width: 575px) {
    .video svg {
      width: 50px;
      height: 50px; } }
  .video.style-1 {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 18px; }

@keyframes animationSignal1 {
  /*Video Popup*/
  0% {
    opacity: 0.8;
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9); }
  100% {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0; } }

@-webkit-keyframes animationSignal1 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    -webkit-transform: scale(0.9); }
  100% {
    transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    -webkit-transform: scale(1.5);
    opacity: 0; } }

@keyframes animationSignal2 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9); }
  100% {
    transform: scale(1.9);
    -moz-transform: scale(1.9);
    -webkit-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -o-transform: scale(1.9);
    opacity: 0; } }

@-webkit-keyframes animationSignal2 {
  /*Video Popup*/
  0% {
    transform: scale(0.9);
    -moz-transform: scale(0.9);
    -webkit-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9); }
  100% {
    transform: scale(1.9);
    -moz-transform: scale(1.9);
    -webkit-transform: scale(1.9);
    -ms-transform: scale(1.9);
    -o-transform: scale(1.9);
    opacity: 0; } }

.video-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  padding-top: 280px;
  padding-bottom: 280px;
  background-size: cover;
  background-position: top; }
  @media only screen and (max-width: 1280px) {
    .video-wrapper {
      padding-top: 220px;
      padding-bottom: 220px; } }
  @media only screen and (max-width: 991px) {
    .video-wrapper {
      padding-top: 180px;
      padding-bottom: 180px; } }
  @media only screen and (max-width: 767px) {
    .video-wrapper {
      padding-top: 140px;
      padding-bottom: 140px; } }
  @media only screen and (max-width: 575px) {
    .video-wrapper {
      padding-top: 100px;
      padding-bottom: 100px; } }
  .video-wrapper:after {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: var(--rgba-secondary-4);
    z-index: -1; }

.animation-box {
  text-align: center;
  background-color: var(--primary);
  padding: 50px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-base);
  position: relative; }
  @media only screen and (max-width: 575px) {
    .animation-box {
      min-height: 180px; } }

.btn-next,
.btn-prev {
  position: static;
  width: 45px;
  height: 45px;
  line-height: 45px;
  border-radius: 0px;
  color: var(--theme-text-color);
  background: var(--primary);
  font-size: 15px;
  z-index: 1;
  text-align: center;
  margin: 0 10px;
  display: inline-block;
  transform: skewX(-12deg);
  box-shadow: 0px 10px 30px 0px var(--rgba-primary-3);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  .btn-next:hover,
  .btn-prev:hover {
    background: #000;
    color: var(--primary);
    box-shadow: 0px 10px 30px 0px rgba(34, 34, 34, 0.2); }
  .btn-next:after,
  .btn-prev:after {
    content: none; }
  .btn-next.dark:hover,
  .btn-prev.dark:hover {
    background: #fff;
    color: #000;
    box-shadow: 0px 10px 30px 0px rgba(34, 34, 34, 0.2); }
  .btn-next i,
  .btn-prev i {
    transform: skewX(12deg);
    font-size: 20px;
    line-height: inherit; }
  @media only screen and (max-width: 1199px) {
    .btn-next,
    .btn-prev {
      width: 35px;
      height: 35px;
      line-height: 35px; }
      .btn-next i,
      .btn-prev i {
        font-size: 16px; } }
  @media only screen and (max-width: 575px) {
    .btn-next,
    .btn-prev {
      width: 30px;
      height: 30px;
      line-height: 30px; }
      .btn-next i,
      .btn-prev i {
        font-size: 15px; } }

.num-pagination {
  display: flex;
  align-items: center; }
  .num-pagination .swiper-pagination {
    width: auto; }

.swiper-pagination {
  position: static;
  width: auto;
  display: flex;
  align-items: center; }
  .swiper-pagination.style-1 .swiper-pagination-bullet {
    height: auto;
    opacity: 1;
    width: auto;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 0%;
    margin: 0 15px;
    background-color: transparent; }
    .swiper-pagination.style-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
      color: var(--primary);
      transform: scale(1.7);
      font-weight: 600; }
  .swiper-pagination.style-1.dark {
    color: #fff; }
    .swiper-pagination.style-1.dark .swiper-pagination-bullet {
      color: #fff; }
      .swiper-pagination.style-1.dark .swiper-pagination-bullet.swiper-pagination-bullet-active {
        color: var(--primary); }
  @media only screen and (max-width: 1199px) {
    .swiper-pagination.style-1 .swiper-pagination-bullet {
      margin: 0 10px; }
      .swiper-pagination.style-1 .swiper-pagination-bullet.swiper-pagination-bullet-active {
        transform: scale(1.5); } }
  .swiper-pagination.style-1.m-lr-lg {
    margin: 0 70px; }
    @media only screen and (max-width: 1199px) {
      .swiper-pagination.style-1.m-lr-lg {
        margin: 0 50px; } }
    @media only screen and (max-width: 575px) {
      .swiper-pagination.style-1.m-lr-lg {
        margin: 0 20px; } }
  .swiper-pagination.style-2 .swiper-pagination-bullet {
    height: auto;
    font-size: 24px;
    color: var(--secondary);
    font-family: var(--font-family-title);
    opacity: 1;
    width: auto;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: 0%;
    margin: 0 15px !important;
    background-color: transparent; }
    .swiper-pagination.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
      color: var(--primary);
      transform: scale(1.7);
      font-weight: 500; }
  @media only screen and (max-width: 1199px) {
    .swiper-pagination.style-2 .swiper-pagination-bullet {
      margin: 0 10px; }
      .swiper-pagination.style-2 .swiper-pagination-bullet.swiper-pagination-bullet-active {
        transform: scale(1.5); } }
  @media only screen and (max-width: 767px) {
    .swiper-pagination.style-2 .swiper-pagination-bullet {
      font-size: 18px; } }

.progress-pagination {
  color: #fff;
  display: flex;
  align-items: center; }
  .progress-pagination .swiper-pagination-progressbar {
    height: 3px;
    width: 100px;
    overflow: hidden;
    position: unset;
    margin: 0 10px; }
    .progress-pagination .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
      background-color: #fff; }

.product-gallery-swiper.swiper-vertical {
  position: absolute;
  top: 30px;
  bottom: auto;
  left: 30px;
  transform: unset; }

.product-gallery-swiper .swiper-slide {
  height: 60px;
  width: 60px !important;
  min-width: 60px !important;
  margin-right: 0 !important;
  margin-bottom: 15px !important; }
  .product-gallery-swiper .swiper-slide img {
    box-shadow: unset;
    border: 1px solid #D7D7D7;
    border-radius: 0; }
  .product-gallery-swiper .swiper-slide.swiper-slide-thumb-active img {
    border-color: var(--secondary); }

@media only screen and (max-width: 1280px) {
  .product-gallery-swiper.swiper-vertical {
    top: 20px;
    left: 20px; } }

.widget {
  margin-bottom: 50px; }
  @media only screen and (max-width: 767px) {
    .widget {
      margin-bottom: 35px; } }

.widget-title {
  margin-bottom: 20px;
  position: relative; }
  @media only screen and (max-width: 1199px) {
    .widget-title {
      margin-bottom: 20px; } }
  .widget-title .title {
    position: relative;
    margin-bottom: 0px;
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px; }

.search-bx form {
  margin-bottom: 45px; }

.search-bx .form-control, .search-bx .wp-block-categories-dropdown select, .wp-block-categories-dropdown .search-bx select,
.search-bx .wp-block-archives-dropdown select, .wp-block-archives-dropdown .search-bx select, .search-bx .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .search-bx input[type="text"],
.search-bx .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .search-bx textarea,
.search-bx .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .search-bx input[type="email"], .search-bx .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .search-bx .input-text, .search-bx .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .search-bx input, .search-bx .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .search-bx textarea,
.search-bx .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .search-bx select,
.search-bx .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .search-bx input, .search-bx .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .search-bx input[type="text"],
.search-bx .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .search-bx input[type="email"],
.search-bx .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .search-bx input[type="password"],
.search-bx .login input[type="text"], .login .search-bx input[type="text"], .search-bx .login input[type="password"], .login .search-bx input[type="password"],
.search-bx .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .search-bx input[type="text"],
.search-bx .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .search-bx input[type="text"],
.search-bx .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .search-bx input[type="email"],
.search-bx .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .search-bx input[type="tel"],
.search-bx .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .search-bx .select2-choice,
.search-bx .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .search-bx textarea,
.search-bx .woocommerce form .form-row input.input-text, .woocommerce form .form-row .search-bx input.input-text,
.search-bx .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .search-bx .select2-selection,
.search-bx .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .search-bx .select2-choice {
  background-color: #F2F2F2;
  border: 0;
  border-radius: 0;
  z-index: 0 !important;
  height: 50px;
  color: #232;
  font-size: 16px; }

.search-bx .input-side {
  border-radius: 0;
  display: flex;
  margin: 0;
  align-items: center;
  width: 100%;
  height: 50px; }

.search-bx .input-group-btn {
  position: absolute;
  right: 5px; }
  .search-bx .input-group-btn .btn, .search-bx .input-group-btn .wp-block-button__link, .search-bx .input-group-btn .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .search-bx .input-group-btn .btn.sw-btn-prev, .search-bx .input-group-btn .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .search-bx .input-group-btn .btn.sw-btn-next, .search-bx .input-group-btn .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .search-bx .input-group-btn a,
  .search-bx .input-group-btn .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .search-bx .input-group-btn a, .search-bx .input-group-btn .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .search-bx .input-group-btn input, .search-bx .input-group-btn .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .search-bx .input-group-btn .button, .search-bx .input-group-btn .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .search-bx .input-group-btn a.checkout-button, .search-bx .input-group-btn .woocommerce #respond input#submit, .woocommerce #respond .search-bx .input-group-btn input#submit,
  .search-bx .input-group-btn .woocommerce a.button, .woocommerce .search-bx .input-group-btn a.button,
  .search-bx .input-group-btn .woocommerce button.button, .woocommerce .search-bx .input-group-btn button.button,
  .search-bx .input-group-btn .woocommerce input.button, .woocommerce .search-bx .input-group-btn input.button,
  .search-bx .input-group-btn .woocommerce #place_order, .woocommerce .search-bx .input-group-btn #place_order {
    margin-left: 0;
    height: 40px;
    width: 40px;
    padding: 0;
    display: flex;
    justify-content: center;
    min-width: 40px;
    border-radius: 0; }
    .search-bx .input-group-btn .btn i, .search-bx .input-group-btn .wp-block-button__link i, .search-bx .input-group-btn .appointment-page-1 .wizard-form .btn.sw-btn-prev i, .appointment-page-1 .wizard-form .search-bx .input-group-btn .btn.sw-btn-prev i, .search-bx .input-group-btn .appointment-page-1 .wizard-form .btn.sw-btn-next i, .appointment-page-1 .wizard-form .search-bx .input-group-btn .btn.sw-btn-next i, .search-bx .input-group-btn .woocommerce .widget_shopping_cart .buttons a i, .woocommerce .widget_shopping_cart .buttons .search-bx .input-group-btn a i, .search-bx .input-group-btn .woocommerce.widget_shopping_cart .buttons a i, .woocommerce.widget_shopping_cart .buttons .search-bx .input-group-btn a i, .search-bx .input-group-btn .woocommerce #review_form #respond .form-submit input i, .woocommerce #review_form #respond .form-submit .search-bx .input-group-btn input i, .search-bx .input-group-btn .woocommerce-cart-form .table.shop_table tr .button i, .woocommerce-cart-form .table.shop_table tr .search-bx .input-group-btn .button i, .search-bx .input-group-btn .woocommerce-cart .wc-proceed-to-checkout a.checkout-button i, .woocommerce-cart .wc-proceed-to-checkout .search-bx .input-group-btn a.checkout-button i, .search-bx .input-group-btn .woocommerce #respond input#submit i, .woocommerce #respond .search-bx .input-group-btn input#submit i, .search-bx .input-group-btn .woocommerce a.button i, .woocommerce .search-bx .input-group-btn a.button i, .search-bx .input-group-btn .woocommerce button.button i, .woocommerce .search-bx .input-group-btn button.button i, .search-bx .input-group-btn .woocommerce input.button i, .woocommerce .search-bx .input-group-btn input.button i, .search-bx .input-group-btn .woocommerce #place_order i, .woocommerce .search-bx .input-group-btn #place_order i {
      color: #232;
      font-size: 24px;
      margin-left: 0; }
    .search-bx .input-group-btn .btn:active, .search-bx .input-group-btn .wp-block-button__link:active, .search-bx .input-group-btn .woocommerce .widget_shopping_cart .buttons a:active, .woocommerce .widget_shopping_cart .buttons .search-bx .input-group-btn a:active,
    .search-bx .input-group-btn .woocommerce.widget_shopping_cart .buttons a:active, .woocommerce.widget_shopping_cart .buttons .search-bx .input-group-btn a:active, .search-bx .input-group-btn .woocommerce #review_form #respond .form-submit input:active, .woocommerce #review_form #respond .form-submit .search-bx .input-group-btn input:active, .search-bx .input-group-btn .woocommerce-cart-form .table.shop_table tr .button:active, .woocommerce-cart-form .table.shop_table tr .search-bx .input-group-btn .button:active, .search-bx .input-group-btn .woocommerce-cart .wc-proceed-to-checkout a.checkout-button:active, .woocommerce-cart .wc-proceed-to-checkout .search-bx .input-group-btn a.checkout-button:active, .search-bx .input-group-btn .woocommerce #respond input#submit:active, .woocommerce #respond .search-bx .input-group-btn input#submit:active,
    .search-bx .input-group-btn .woocommerce a.button:active, .woocommerce .search-bx .input-group-btn a.button:active,
    .search-bx .input-group-btn .woocommerce button.button:active, .woocommerce .search-bx .input-group-btn button.button:active,
    .search-bx .input-group-btn .woocommerce input.button:active, .woocommerce .search-bx .input-group-btn input.button:active,
    .search-bx .input-group-btn .woocommerce #place_order:active, .woocommerce .search-bx .input-group-btn #place_order:active {
      background-color: transparent;
      border-color: transparent; }

.widget.bg-white {
  border: 1px solid rgba(0, 0, 0, 0.1); }

.download-file {
  background-image: var(--gradient);
  color: #fff;
  padding: 25px 25px 20px 20px;
  border-radius: 4px; }
  .download-file .title {
    color: #fff;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
    font-size: 20px;
    font-weight: 600; }
  .download-file ul {
    list-style: none;
    margin: 0;
    padding: 0; }
    .download-file ul li a {
      background-color: #fff;
      color: #000;
      display: block;
      margin-bottom: 10px;
      border-radius: 4px;
      width: 100%;
      padding: 15px;
      text-transform: uppercase;
      font-size: 14px;
      font-weight: 600;
      text-align: left;
      align-items: center;
      display: flex;
      justify-content: space-between; }
      .download-file ul li a i {
        width: 18px;
        height: 18px;
        position: relative; }
        .download-file ul li a i:after, .download-file ul li a i:before {
          content: "";
          position: absolute;
          width: 100%;
          height: 100%;
          background-size: contain;
          background-repeat: no-repeat;
          left: 0;
          top: 0; }
        .download-file ul li a i:before {
          -webkit-animation: download1 2s ease infinite;
          animation: download1 2s ease infinite; }
      .download-file ul li a .text {
        display: inline;
        position: relative; }
      .download-file ul li a:hover .text {
        color: var(--primary); }

@-webkit-keyframes download1 {
  0%, 10%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  60% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); } }

@keyframes download1 {
  0%, 10%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  40% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); }
  60% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px); } }

.widget_contact {
  position: relative;
  padding: 50px 45px 45px;
  background-size: cover;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: var(--primary);
  overflow: hidden; }
  .widget_contact:before {
    content: '';
    position: absolute;
    width: 45%;
    height: 65%;
    bottom: 0;
    right: 0;
    z-index: -1;
    background-image: url(../images/background/bg-pricetable-2.png);
    background-size: cover;
    background-repeat: no-repeat; }
  .widget_contact .icon-bx i {
    font-size: 100px;
    color: var(--theme-text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 100px;
    margin-bottom: 15px; }
  .widget_contact img {
    margin-bottom: 20px; }
  .widget_contact h4, .widget_contact .h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--theme-text-color);
    padding-bottom: 20px; }
  .widget_contact .phone-number {
    position: relative;
    font-size: 28px;
    color: var(--theme-text-color);
    font-weight: 600;
    margin-bottom: 5px; }
    .widget_contact .phone-number a {
      color: var(--theme-text-color); }
  .widget_contact .email {
    position: relative;
    color: var(--theme-text-color);
    font-weight: 600;
    margin-bottom: 30px; }
    .widget_contact .email a {
      color: var(--theme-text-color); }

.service-carouse .item {
  overflow: hidden;
  border-radius: 6px; }

.list-2 {
  display: table; }
  .list-2 li {
    width: 50% !important;
    float: left; }
    @media only screen and (max-width: 1200px) {
      .list-2 li {
        width: 100% !important; } }
    @media only screen and (max-width: 991px) {
      .list-2 li {
        width: 50% !important; } }
    @media only screen and (max-width: 575px) {
      .list-2 li {
        width: 100% !important; } }

/* widget listing*/
.wp-block-page-list,
.wp-block-latest-posts,
.wp-block-categories-list,
.wp-block-archives-list,
.widget_categories ul,
.widget_archive ul,
.widget_meta ul,
.widget_pages ul,
.widget_recent_comments ul,
.widget_nav_menu ul,
.widget_recent_entries ul,
.widget_services ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0; }
  .wp-block-page-list li,
  .wp-block-latest-posts li,
  .wp-block-categories-list li,
  .wp-block-archives-list li,
  .widget_categories ul li,
  .widget_archive ul li,
  .widget_meta ul li,
  .widget_pages ul li,
  .widget_recent_comments ul li,
  .widget_nav_menu ul li,
  .widget_recent_entries ul li,
  .widget_services ul li {
    padding-bottom: 1.125rem;
    margin-bottom: 0.8125rem;
    position: relative;
    padding: 0.625rem 0rem 0.625rem 1rem;
    font-size: 15px !important;
    margin-bottom: 0;
    line-height: 1.25rem; }
    .wp-block-page-list li a,
    .wp-block-latest-posts li a,
    .wp-block-categories-list li a,
    .wp-block-archives-list li a,
    .widget_categories ul li a,
    .widget_archive ul li a,
    .widget_meta ul li a,
    .widget_pages ul li a,
    .widget_recent_comments ul li a,
    .widget_nav_menu ul li a,
    .widget_recent_entries ul li a,
    .widget_services ul li a {
      color: inherit;
      text-transform: capitalize;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
      .wp-block-page-list li a:hover,
      .wp-block-latest-posts li a:hover,
      .wp-block-categories-list li a:hover,
      .wp-block-archives-list li a:hover,
      .widget_categories ul li a:hover,
      .widget_archive ul li a:hover,
      .widget_meta ul li a:hover,
      .widget_pages ul li a:hover,
      .widget_recent_comments ul li a:hover,
      .widget_nav_menu ul li a:hover,
      .widget_recent_entries ul li a:hover,
      .widget_services ul li a:hover {
        color: var(--primary); }
      .wp-block-page-list li a:before,
      .wp-block-latest-posts li a:before,
      .wp-block-categories-list li a:before,
      .wp-block-archives-list li a:before,
      .widget_categories ul li a:before,
      .widget_archive ul li a:before,
      .widget_meta ul li a:before,
      .widget_pages ul li a:before,
      .widget_recent_comments ul li a:before,
      .widget_nav_menu ul li a:before,
      .widget_recent_entries ul li a:before,
      .widget_services ul li a:before {
        content: "\f054";
        font-family: "Font Awesome 5 Free";
        font-weight: 700;
        position: absolute;
        left: 0;
        display: block;
        left: -1rem;
        top: 1px;
        font-size: 0.75rem;
        line-height: 1.5;
        font-weight: 700;
        color: var(--primary); }
      .wp-block-page-list li a:last-child,
      .wp-block-latest-posts li a:last-child,
      .wp-block-categories-list li a:last-child,
      .wp-block-archives-list li a:last-child,
      .widget_categories ul li a:last-child,
      .widget_archive ul li a:last-child,
      .widget_meta ul li a:last-child,
      .widget_pages ul li a:last-child,
      .widget_recent_comments ul li a:last-child,
      .widget_nav_menu ul li a:last-child,
      .widget_recent_entries ul li a:last-child,
      .widget_services ul li a:last-child {
        border-bottom: 0;
        padding-bottom: 0; }
      .wp-block-page-list li a:before,
      .wp-block-latest-posts li a:before,
      .wp-block-categories-list li a:before,
      .wp-block-archives-list li a:before,
      .widget_categories ul li a:before,
      .widget_archive ul li a:before,
      .widget_meta ul li a:before,
      .widget_pages ul li a:before,
      .widget_recent_comments ul li a:before,
      .widget_nav_menu ul li a:before,
      .widget_recent_entries ul li a:before,
      .widget_services ul li a:before {
        top: 0.625rem;
        left: 0; }
  .wp-block-page-list ul,
  .wp-block-latest-posts ul,
  .wp-block-categories-list ul,
  .wp-block-archives-list ul,
  .widget_categories ul ul,
  .widget_archive ul ul,
  .widget_meta ul ul,
  .widget_pages ul ul,
  .widget_recent_comments ul ul,
  .widget_nav_menu ul ul,
  .widget_recent_entries ul ul,
  .widget_services ul ul {
    padding-left: 1.125rem;
    margin-top: 0.5rem;
    margin-left: -0.9375rem; }

.widget_nav_menu.style-1 ul li,
.widget_recent_entries.style-1 ul li,
.widget_meta.style-1 ul li,
.widget_pages.style-1 ul li,
.widget_archive.style-1 ul li,
.widget_categories.style-1 ul li,
.widget_services.style-1 ul li {
  padding: 10px 0 10px 20px; }
  .widget_nav_menu.style-1 ul li a:before,
  .widget_recent_entries.style-1 ul li a:before,
  .widget_meta.style-1 ul li a:before,
  .widget_pages.style-1 ul li a:before,
  .widget_archive.style-1 ul li a:before,
  .widget_categories.style-1 ul li a:before,
  .widget_services.style-1 ul li a:before {
    content: "\f0da";
    font-family: "Font Awesome 5 Free";
    background: transparent;
    width: auto;
    height: auto;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary); }

/*widget categories*/
.widget_archive li ul,
.wp-block-page-list li ul,
.wp-block-categories-list li ul,
.wp-block-archives-list li ul,
.wp-block-latest-posts li ul,
.widget_categories li ul {
  margin-bottom: -0.625rem; }

.wp-block-page-list li,
.widget_archive ul li,
.wp-block-categories-list li,
.wp-block-archives-list li,
.wp-block-latest-posts li,
.widget_categories ul li {
  text-align: right;
  display: table;
  width: 100%;
  padding: 0.5rem 0rem 0.5rem 1rem !important;
  line-height: 1.3 !important; }

.wp-block-page-list li:before,
.wp-block-categories-list li:before,
.wp-block-archives-list li:before,
.wp-block-latest-posts li:before {
  content: none !important; }

.wp-block-page-list li a,
.widget_archive li a,
.wp-block-latest-posts li a,
.wp-block-categories-list li a,
.wp-block-archives-list li a,
.widget_categories li a {
  float: left;
  text-transform: capitalize;
  text-align: left; }

.wp-block-page-list,
.wp-block-latest-posts,
.wp-block-categories-list,
.wp-block-archives-list {
  margin-bottom: 2.5rem;
  padding: 0 !important; }

.widget_recent_comments ul {
  margin-top: -0.625rem; }
  .widget_recent_comments ul li {
    padding-left: 1.875rem;
    line-height: 1.625rem; }
    .widget_recent_comments ul li a:hover {
      color: inherit; }
    .widget_recent_comments ul li a:before {
      content: none; }
    .widget_recent_comments ul li:before {
      content: "\f27a";
      font-family: "Font Awesome 5 Free";
      background: transparent;
      width: auto;
      height: auto;
      position: absolute;
      left: 0;
      top: 0.625rem;
      font-size: 1.125rem;
      font-weight: 500; }

.widget_meta ul li a abbr[title] {
  color: #333;
  border-bottom: none; }

.widget_calendar th,
.widget_calendar td {
  text-align: center;
  border: 0.0625rem solid var(--rgba-primary-1);
  padding: 0.4em; }

.widget_calendar th,
.widget_calendar tfoot td {
  border-color: rgba(0, 0, 0, 0.05); }
  .widget_calendar th:last-child,
  .widget_calendar tfoot td:last-child {
    border: 0; }

.widget_calendar tr {
  border-bottom: 0.0625rem solid var(--rgba-primary-1); }
  .widget_calendar tr:nth-child(2n+2) {
    background-color: var(--rgba-primary-05); }

.widget_calendar table {
  border-collapse: collapse;
  margin: 0;
  width: 100%; }

.widget_calendar .calendar_wrap th,
.widget_calendar tfoot td a {
  color: var(--theme-text-color);
  background: var(--primary); }

.widget_calendar .calendar_wrap td a {
  font-weight: 600;
  text-transform: uppercase;
  color: inherit; }

.widget_calendar caption {
  text-align: center;
  font-weight: 600;
  caption-side: top;
  background: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--theme-text-color);
  text-transform: uppercase;
  font-size: 0.9375rem; }

.wp-block-calendar table th {
  font-weight: 400;
  background: var(--primary);
  color: #fff; }

.wp-block-calendar table caption {
  color: #fff; }

footer .widget_calendar th,
footer .widget_calendar td {
  border-color: rgba(255, 255, 255, 0.1); }

footer .widget_calendar tr {
  border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.1); }
  footer .widget_calendar tr:nth-child(2n+2) {
    background-color: rgba(255, 255, 255, 0.05); }

.wp-calendar-nav {
  background: var(--primary);
  color: #fff;
  display: flex;
  justify-content: space-between;
  text-align: center; }
  .wp-calendar-nav span {
    padding: 0.3125rem 1.25rem;
    width: 44%;
    border-right: 0.0625rem solid rgba(255, 255, 255, 0.2); }
    .wp-calendar-nav span a {
      color: #fff; }

select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
  display: block;
  height: 50px;
  width: 100%;
  padding: 0.375rem 2.25rem 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--bs-body-color);
  background-color: #F3F3F3;
  background-image: var(--bs-form-select-bg-img), var(--bs-form-select-bg-icon, none);
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border: 0;
  border-radius: var(--bs-border-radius);
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
  color: #000;
  border: 1px solid transparent; }
  select:focus {
    box-shadow: 0 0 0 0.25rem var(--rgba-primary-3); }

.list-2-column ul {
  display: table; }
  .list-2-column ul li {
    width: 50%;
    float: left; }

.widget_text select {
  width: 100%;
  border: 0.0625rem solid #CCC; }
  .widget_text select option {
    width: 100%; }

.widget_text p {
  font-size: 0.9375rem;
  line-height: 1.75rem; }
  .widget_text p strong {
    font-weight: 500; }

/*widget rss  */
.rsswidget img {
  display: inherit; }

.widget-title .rsswidget {
  display: inline-block; }

ul a.rsswidget,
ul cite {
  font-weight: 600;
  color: var(--title); }

ul a.rsswidget {
  font-size: 1.125rem;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  ul a.rsswidget:hover {
    color: var(--primary); }

.rssSummary {
  margin: 1rem 0;
  line-height: 1.7;
  font-size: 15px; }

.rss-date {
  display: inline-block;
  margin-top: 0.3125rem;
  font-weight: 400; }

.widget_rss ul li {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 0; }
  .widget_rss ul li:last-child {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0; }

.widget_gallery ul {
  padding-left: 0;
  display: inline-block;
  margin-left: -0.3rem;
  margin-right: -0.3rem; }

.widget_gallery.gallery-grid-2 li {
  width: 50%; }

.widget_gallery.gallery-grid-4 li {
  width: 25%; }

.widget_gallery li {
  display: inline-block;
  width: 33.33%;
  float: left;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  padding: 5px; }
  .widget_gallery li img {
    display: inline-block;
    width: 100%; }
  .widget_gallery li:nth-child(3n-3) {
    margin-right: 0; }
  .widget_gallery li:hover {
    opacity: 0.7; }
  .widget_gallery li a {
    display: inline-block; }

.wp-block-tag-cloud.is-style-outline {
  gap: 0; }

.wp-block-tag-cloud.is-style-outline,
.wp-block-tag-cloud,
.tagcloud {
  clear: both;
  display: table; }
  .wp-block-tag-cloud.is-style-outline a,
  .wp-block-tag-cloud a,
  .tagcloud a {
    position: relative;
    padding: 8px 15px;
    display: inline-block;
    margin: 0 10px 10px 0;
    font-size: 13px;
    color: var(--secondary);
    background-color: #F2F2F2;
    line-height: 1.4;
    border: 0;
    font-weight: 400;
    border-radius: 0; }
    @media only screen and (max-width: 1480px) {
      .wp-block-tag-cloud.is-style-outline a,
      .wp-block-tag-cloud a,
      .tagcloud a {
        padding: 8px 12px;
        margin: 0 10px 10px 0; } }
    @media only screen and (max-width: 1199px) {
      .wp-block-tag-cloud.is-style-outline a,
      .wp-block-tag-cloud a,
      .tagcloud a {
        padding: 5px 14px;
        margin: 0 8px 8px 0; } }
    .wp-block-tag-cloud.is-style-outline a:hover,
    .wp-block-tag-cloud a:hover,
    .tagcloud a:hover {
      background-color: var(--secondary);
      color: #fff; }
    .wp-block-tag-cloud.is-style-outline a span,
    .wp-block-tag-cloud a span,
    .tagcloud a span {
      display: inline-block; }

.recent-posts-entry .dz-meta {
  margin-bottom: 0; }
  .recent-posts-entry .dz-meta ul {
    line-height: 1; }
    .recent-posts-entry .dz-meta ul li {
      color: #666666;
      position: relative;
      font-weight: 500;
      font-size: 12px;
      line-height: 20px;
      margin-right: 8px;
      padding-right: 8px; }
      .recent-posts-entry .dz-meta ul li i {
        color: var(--primary);
        margin-right: 4px; }
      .recent-posts-entry .dz-meta ul li:after {
        display: none; }

.recent-posts-entry.style-1 .widget-post-bx .widget-post {
  display: flex;
  align-items: center;
  margin-bottom: 10px; }
  .recent-posts-entry.style-1 .widget-post-bx .widget-post .dz-media {
    width: 68px;
    min-width: 68px;
    margin-right: 15px; }
  .recent-posts-entry.style-1 .widget-post-bx .widget-post .dz-info .title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
    font-family: var(--font-family-base); }
  .recent-posts-entry.style-1 .widget-post-bx .widget-post .dz-info p {
    font-size: 16px;
    font-weight: 500;
    color: #666;
    margin-bottom: 0;
    line-height: 1; }

.recent-posts-entry.style-2 .widget-post-bx .widget-post {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border: 1px solid #F2F2F2;
  padding: 10px; }
  .recent-posts-entry.style-2 .widget-post-bx .widget-post .dz-media {
    height: 80px;
    min-width: 100px;
    width: 100px;
    margin-right: 15px; }
  .recent-posts-entry.style-2 .widget-post-bx .widget-post .dz-info .title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
    font-family: var(--font-family-base);
    margin-bottom: 8px; }

.service_menu_nav {
  background: #222222;
  position: relative;
  padding: 40px 45px;
  z-index: 1;
  box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 767px) {
    .service_menu_nav {
      padding: 40px; } }
  .service_menu_nav:after, .service_menu_nav:before {
    content: '';
    position: absolute;
    height: 50%;
    z-index: -1;
    bottom: 0;
    right: 0;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    background-size: cover;
    background-repeat: no-repeat; }
  .service_menu_nav:after {
    width: 17%; }
  .service_menu_nav:before {
    width: 40%;
    opacity: 0.2; }
  .service_menu_nav ul li {
    padding: 0; }
    .service_menu_nav ul li a {
      display: block;
      position: relative;
      padding: 15px 0;
      margin-bottom: 10px;
      color: #fff;
      font-size: 18px;
      z-index: 1;
      font-weight: 500;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
      @media only screen and (max-width: 767px) {
        .service_menu_nav ul li a {
          padding: 12px 0;
          margin-bottom: 5px;
          font-size: 16px; } }
      .service_menu_nav ul li a:before, .service_menu_nav ul li a:after {
        content: '';
        position: absolute;
        top: 0;
        height: 100%;
        z-index: -1;
        background-color: var(--primary);
        opacity: 0;
        transform: translateX(15px) skewX(-10deg);
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s; }
      .service_menu_nav ul li a:after {
        width: 100%;
        width: calc( 100% + 70px);
        right: 0px; }
        @media only screen and (max-width: 767px) {
          .service_menu_nav ul li a:after {
            width: calc( 100% + 50px); } }
      .service_menu_nav ul li a:before {
        width: 7px;
        right: -15px; }
    .service_menu_nav ul li:hover a, .service_menu_nav ul li.current-menu-item a, .service_menu_nav ul li.active a {
      color: var(--theme-text-color); }
      .service_menu_nav ul li:hover a:after, .service_menu_nav ul li:hover a:before, .service_menu_nav ul li.current-menu-item a:after, .service_menu_nav ul li.current-menu-item a:before, .service_menu_nav ul li.active a:after, .service_menu_nav ul li.active a:before {
        transform: translateX(0px) skewX(-10deg);
        opacity: 1; }
  .service_menu_nav svg {
    position: absolute;
    bottom: -23px;
    left: -20px;
    transform: rotateY(180deg);
    height: 50px;
    width: 175px; }

.wp-block-categories-dropdown,
.wp-block-archives-dropdown {
  margin-bottom: 20px; }
  .wp-block-categories-dropdown select:after,
  .wp-block-archives-dropdown select:after {
    content: "\f078";
    font-weight: 900;
    font-family: 'Line Awesome Free';
    position: absolute;
    right: 50px;
    left: auto;
    top: 50%; }

.post-tags strong {
  font-weight: 700;
  color: #212529;
  margin-right: 10px; }

.post-tags a {
  margin-right: 10px;
  display: inline-block; }

.widget_profile .dz-media {
  width: 100%;
  min-width: 100%; }
  .widget_profile .dz-media img {
    border-radius: var(--border-radius-base); }

.widget_profile p {
  font-size: 16px; }

.widget-newslatter .form-control, .widget-newslatter .wp-block-categories-dropdown select, .wp-block-categories-dropdown .widget-newslatter select,
.widget-newslatter .wp-block-archives-dropdown select, .wp-block-archives-dropdown .widget-newslatter select, .widget-newslatter .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .widget-newslatter input[type="text"],
.widget-newslatter .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .widget-newslatter textarea,
.widget-newslatter .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .widget-newslatter input[type="email"], .widget-newslatter .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .widget-newslatter .input-text, .widget-newslatter .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .widget-newslatter input, .widget-newslatter .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .widget-newslatter textarea,
.widget-newslatter .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .widget-newslatter select,
.widget-newslatter .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .widget-newslatter input, .widget-newslatter .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .widget-newslatter input[type="text"],
.widget-newslatter .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .widget-newslatter input[type="email"],
.widget-newslatter .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .widget-newslatter input[type="password"],
.widget-newslatter .login input[type="text"], .login .widget-newslatter input[type="text"], .widget-newslatter .login input[type="password"], .login .widget-newslatter input[type="password"],
.widget-newslatter .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .widget-newslatter input[type="text"],
.widget-newslatter .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .widget-newslatter input[type="text"],
.widget-newslatter .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .widget-newslatter input[type="email"],
.widget-newslatter .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .widget-newslatter input[type="tel"],
.widget-newslatter .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .widget-newslatter .select2-choice,
.widget-newslatter .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .widget-newslatter textarea,
.widget-newslatter .woocommerce form .form-row input.input-text, .woocommerce form .form-row .widget-newslatter input.input-text,
.widget-newslatter .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .widget-newslatter .select2-selection,
.widget-newslatter .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .widget-newslatter .select2-choice {
  background-color: #f3f4f6;
  border-radius: var(--border-radius);
  border: 0; }

.widget-newslatter p {
  font-size: 16px; }

.widget-newslatter button {
  width: 50px;
  height: 50px;
  padding: 0;
  justify-content: center; }


.side-bar h1, .side-bar .h1 {
  font-size: 2rem;
  font-weight: 700; }

.side-bar h2, .side-bar .h2 {
  font-size: 1.625rem;
  font-weight: 700; }

.side-bar h3, .side-bar .h3 {
  font-size: 1.5rem;
  font-weight: 700; }

.side-bar h4, .side-bar .h4 {
  font-size: 1.25rem;
  font-weight: 700; }

.side-bar h5, .side-bar .h5 {
  font-size: 1.125rem;
  font-weight: 700; }

.side-bar h6, .side-bar .h6 {
  font-size: 1rem;
  font-weight: 500; }

.side-bar .widget-title .title {
  text-transform: uppercase;
  letter-spacing: 2px; }

.sidebar-widget .wp-block-woocommerce-attribute-filter > h1, .sidebar-widget .wp-block-woocommerce-attribute-filter > .h1,
.sidebar-widget .wp-block-woocommerce-attribute-filter > h2,
.sidebar-widget .wp-block-woocommerce-attribute-filter > .h2,
.sidebar-widget .wp-block-woocommerce-attribute-filter > h3,
.sidebar-widget .wp-block-woocommerce-attribute-filter > .h3,
.sidebar-widget .wp-block-woocommerce-attribute-filter > h4,
.sidebar-widget .wp-block-woocommerce-attribute-filter > .h4,
.sidebar-widget .wp-block-woocommerce-attribute-filter > h5,
.sidebar-widget .wp-block-woocommerce-attribute-filter > .h5,
.sidebar-widget .wp-block-woocommerce-attribute-filter > h6,
.sidebar-widget .wp-block-woocommerce-attribute-filter > .h6,
.sidebar-widget .wp-block-group__inner-container > h1,
.sidebar-widget .wp-block-group__inner-container > .h1,
.sidebar-widget .wp-block-group__inner-container > h2,
.sidebar-widget .wp-block-group__inner-container > .h2,
.sidebar-widget .wp-block-group__inner-container > h3,
.sidebar-widget .wp-block-group__inner-container > .h3,
.sidebar-widget .wp-block-group__inner-container > h4,
.sidebar-widget .wp-block-group__inner-container > .h4,
.sidebar-widget .wp-block-group__inner-container > h5,
.sidebar-widget .wp-block-group__inner-container > .h5,
.sidebar-widget .wp-block-group__inner-container > h6,
.sidebar-widget .wp-block-group__inner-container > .h6,
.shop-widget .wp-block-woocommerce-attribute-filter > h1,
.shop-widget .wp-block-woocommerce-attribute-filter > .h1,
.shop-widget .wp-block-woocommerce-attribute-filter > h2,
.shop-widget .wp-block-woocommerce-attribute-filter > .h2,
.shop-widget .wp-block-woocommerce-attribute-filter > h3,
.shop-widget .wp-block-woocommerce-attribute-filter > .h3,
.shop-widget .wp-block-woocommerce-attribute-filter > h4,
.shop-widget .wp-block-woocommerce-attribute-filter > .h4,
.shop-widget .wp-block-woocommerce-attribute-filter > h5,
.shop-widget .wp-block-woocommerce-attribute-filter > .h5,
.shop-widget .wp-block-woocommerce-attribute-filter > h6,
.shop-widget .wp-block-woocommerce-attribute-filter > .h6,
.shop-widget .wp-block-group__inner-container > h1,
.shop-widget .wp-block-group__inner-container > .h1,
.shop-widget .wp-block-group__inner-container > h2,
.shop-widget .wp-block-group__inner-container > .h2,
.shop-widget .wp-block-group__inner-container > h3,
.shop-widget .wp-block-group__inner-container > .h3,
.shop-widget .wp-block-group__inner-container > h4,
.shop-widget .wp-block-group__inner-container > .h4,
.shop-widget .wp-block-group__inner-container > h5,
.shop-widget .wp-block-group__inner-container > .h5,
.shop-widget .wp-block-group__inner-container > h6,
.shop-widget .wp-block-group__inner-container > .h6 {
  position: relative;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 10px;
  margin-bottom: 30px; }

.comments-title,
.blog-title,
.comment-reply-title,
.wp-block-search .wp-block-search__label {
  font-family: var(--font-family-title);
  color: var(--title);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 30px; }

.wp-block-group:where(.has-background) {
  padding: 1.25em 2.375em; }

.widget_working ul li {
  display: block;
  margin-bottom: 15px; }
  .widget_working ul li .time {
    font-weight: 600;
    color: var(--primary);
    display: block; }

.widget_getintuch ul li {
  position: relative;
  margin-bottom: 30px;
  padding-left: 45px;
  color: #222; }
  @media only screen and (max-width: 1280px) {
    .widget_getintuch ul li {
      padding-left: 35px; } }
  @media only screen and (max-width: 1199px) {
    .widget_getintuch ul li {
      margin-bottom: 25px;
      padding-left: 35px; } }
  .widget_getintuch ul li strong {
    font-weight: 600; }
  .widget_getintuch ul li h5, .widget_getintuch ul li .h5 {
    font-size: 20px;
    line-height: 1.33;
    margin-bottom: 5px; }
  .widget_getintuch ul li i {
    position: absolute;
    font-size: 24px;
    line-height: 1;
    left: 0;
    top: 2px;
    color: var(--primary); }
    @media only screen and (max-width: 575px) {
      .widget_getintuch ul li i {
        font-size: 20px; } }
  @media only screen and (max-width: 991px) {
    .widget_getintuch ul li p {
      font-size: 14px; } }

.widget_search .btn, .widget_search .wp-block-button__link, .widget_search .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .widget_search .btn.sw-btn-prev, .widget_search .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .widget_search .btn.sw-btn-next, .widget_search .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .widget_search a,
.widget_search .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .widget_search a, .widget_search .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .widget_search input, .widget_search .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .widget_search .button, .widget_search .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .widget_search a.checkout-button, .widget_search .woocommerce #respond input#submit, .woocommerce #respond .widget_search input#submit,
.widget_search .woocommerce a.button, .woocommerce .widget_search a.button,
.widget_search .woocommerce button.button, .woocommerce .widget_search button.button,
.widget_search .woocommerce input.button, .woocommerce .widget_search input.button,
.widget_search .woocommerce #place_order, .woocommerce .widget_search #place_order {
  height: 100%; }

.inquiry-modal {
  padding: 0 15px; }
  .inquiry-modal .modal-dialog {
    max-width: 700px;
    display: flex;
    min-height: auto;
    background-color: #fff;
    align-items: stretch;
    border-radius: var(--border-radius-base);
    overflow: hidden; }
  .inquiry-modal .inquiry-adv {
    flex: 0 0 50%;
    max-width: 50%; }
    @media only screen and (max-width: 767px) {
      .inquiry-modal .inquiry-adv {
        display: none; } }
    .inquiry-modal .inquiry-adv img {
      height: 100%;
      object-fit: cover;
      width: 100%; }
  .inquiry-modal .modal-content {
    border: 0;
    border-radius: 0;
    background: #fff;
    padding: 30px;
    flex: 0 0 50%;
    max-width: 50%; }
    @media only screen and (max-width: 767px) {
      .inquiry-modal .modal-content {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 20px; } }
    .inquiry-modal .modal-content .modal-header {
      border: 0;
      padding: 0;
      display: block;
      text-align: center; }
      .inquiry-modal .modal-content .modal-header .modal-title {
        font-size: 24px;
        margin-bottom: 25px;
        line-height: 1.3;
        font-family: var(--font-family-title);
        text-align: center;
        width: 100%; }
      .inquiry-modal .modal-content .modal-header i {
        color: var(--primary);
        font-size: 54px;
        line-height: 1;
        display: inline-block; }
    .inquiry-modal .modal-content .modal-body {
      padding: 0; }
  .inquiry-modal .btn-close {
    margin: 0;
    position: absolute;
    right: 5px;
    top: 0px;
    color: #000;
    font-weight: 100;
    text-shadow: none;
    opacity: 1;
    font-size: 40px;
    padding: 0;
    height: 40px;
    line-height: 40px;
    width: 40px;
    border: 0;
    background: transparent; }

.subscribe-modal .modal-content {
  min-width: 536px;
  display: flex;
  background-color: #fff;
  align-items: stretch;
  border-radius: var(--border-radius-base);
  overflow: hidden; }
  .subscribe-modal .modal-content .modal-body {
    padding: 50px 40px; }
    .subscribe-modal .modal-content .modal-body .icon-box {
      position: relative;
      z-index: 1;
      text-align: center;
      margin-bottom: 35px; }
      .subscribe-modal .modal-content .modal-body .icon-box.bg-shape:after {
        content: "";
        position: absolute;
        background-color: var(--primary);
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 95px;
        height: 95px;
        border-radius: 50%;
        z-index: -1; }
    .subscribe-modal .modal-content .modal-body .dz-title {
      font-size: 26px;
      font-weight: 600;
      color: #242424;
      margin-bottom: 15px; }
    .subscribe-modal .modal-content .modal-body p {
      color: rgba(0, 0, 0, 0.6);
      max-width: 450px;
      margin: 0 auto 25px; }
    .subscribe-modal .modal-content .modal-body .dzSubscribe .dzFormMsg,
    .subscribe-modal .modal-content .modal-body .dzSubscribe .dzSubscribeMsg {
      position: static;
      margin: 0 auto; }
    .subscribe-modal .modal-content .modal-body .dzSubscribe.dz-ajax-overlay:after {
      transform: none;
      height: 40%;
      background-color: var(--secondary); }
    .subscribe-modal .modal-content .modal-body .input-group .form-control, .subscribe-modal .modal-content .modal-body .input-group .wp-block-categories-dropdown select, .wp-block-categories-dropdown .subscribe-modal .modal-content .modal-body .input-group select,
    .subscribe-modal .modal-content .modal-body .input-group .wp-block-archives-dropdown select, .wp-block-archives-dropdown .subscribe-modal .modal-content .modal-body .input-group select, .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group input[type="text"],
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group textarea,
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group input[type="email"], .subscribe-modal .modal-content .modal-body .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .subscribe-modal .modal-content .modal-body .input-group .input-text, .subscribe-modal .modal-content .modal-body .input-group .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .subscribe-modal .modal-content .modal-body .input-group input,
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .subscribe-modal .modal-content .modal-body .input-group select,
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .subscribe-modal .modal-content .modal-body .input-group input, .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input[type="text"],
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input[type="email"],
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input[type="password"],
    .subscribe-modal .modal-content .modal-body .input-group .login input[type="text"], .login .subscribe-modal .modal-content .modal-body .input-group input[type="text"], .subscribe-modal .modal-content .modal-body .input-group .login input[type="password"], .login .subscribe-modal .modal-content .modal-body .input-group input[type="password"],
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .subscribe-modal .modal-content .modal-body .input-group input[type="text"],
    .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input[type="text"],
    .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input[type="email"],
    .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input[type="tel"],
    .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group .select2-choice,
    .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group textarea,
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row input.input-text, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group input.input-text,
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group .select2-selection,
    .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group .select2-choice {
      margin-bottom: 30px;
      color: #242424;
      width: 100%;
      border-radius: 0;
      height: 60px;
      border-color: #b3b3b3; }
      .subscribe-modal .modal-content .modal-body .input-group .form-control::placeholder, .subscribe-modal .modal-content .modal-body .input-group .wp-block-categories-dropdown select::placeholder, .wp-block-categories-dropdown .subscribe-modal .modal-content .modal-body .input-group select::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .wp-block-archives-dropdown select::placeholder, .wp-block-archives-dropdown .subscribe-modal .modal-content .modal-body .input-group select::placeholder, .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond input[type="text"]::placeholder, .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group input[type="text"]::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond textarea::placeholder, .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group textarea::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond input[type="email"]::placeholder, .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group input[type="email"]::placeholder, .subscribe-modal .modal-content .modal-body .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text::placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .subscribe-modal .modal-content .modal-body .input-group .input-text::placeholder, .subscribe-modal .modal-content .modal-body .input-group .woocommerce-cart-form .table.shop_table tr .quantity input::placeholder, .woocommerce-cart-form .table.shop_table tr .quantity .subscribe-modal .modal-content .modal-body .input-group input::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .subscribe-modal .modal-content .modal-body .input-group select::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input::placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .subscribe-modal .modal-content .modal-body .input-group input::placeholder, .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input[type="text"]::placeholder, .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input[type="text"]::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input[type="email"]::placeholder, .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input[type="email"]::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input[type="password"]::placeholder, .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input[type="password"]::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .login input[type="text"]::placeholder, .login .subscribe-modal .modal-content .modal-body .input-group input[type="text"]::placeholder, .subscribe-modal .modal-content .modal-body .input-group .login input[type="password"]::placeholder, .login .subscribe-modal .modal-content .modal-body .input-group input[type="password"]::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce-ResetPassword.lost_reset_password input[type="text"]::placeholder, .woocommerce-ResetPassword.lost_reset_password .subscribe-modal .modal-content .modal-body .input-group input[type="text"]::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input[type="text"]::placeholder, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input[type="text"]::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input[type="email"]::placeholder, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input[type="email"]::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input[type="tel"]::placeholder, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input[type="tel"]::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout .select2-choice::placeholder, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group .select2-choice::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout textarea::placeholder, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group textarea::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row input.input-text::placeholder, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group input.input-text::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row .select2-selection::placeholder, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group .select2-selection::placeholder,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row .select2-choice::placeholder, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group .select2-choice::placeholder {
        color: rgba(0, 0, 0, 0.5); }
      .subscribe-modal .modal-content .modal-body .input-group .form-control:focus, .subscribe-modal .modal-content .modal-body .input-group .wp-block-categories-dropdown select:focus, .wp-block-categories-dropdown .subscribe-modal .modal-content .modal-body .input-group select:focus,
      .subscribe-modal .modal-content .modal-body .input-group .wp-block-archives-dropdown select:focus, .wp-block-archives-dropdown .subscribe-modal .modal-content .modal-body .input-group select:focus, .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond input:focus[type="text"], .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group input:focus[type="text"],
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond textarea:focus, .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group textarea:focus,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond input:focus[type="email"], .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group input:focus[type="email"], .subscribe-modal .modal-content .modal-body .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:focus, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .subscribe-modal .modal-content .modal-body .input-group .input-text:focus, .subscribe-modal .modal-content .modal-body .input-group .woocommerce-cart-form .table.shop_table tr .quantity input:focus, .woocommerce-cart-form .table.shop_table tr .quantity .subscribe-modal .modal-content .modal-body .input-group input:focus,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .subscribe-modal .modal-content .modal-body .input-group select:focus,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input:focus, .woocommerce .woocommerce-checkout.checkout form .form-row .subscribe-modal .modal-content .modal-body .input-group input:focus, .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input:focus[type="text"], .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input:focus[type="text"],
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input:focus[type="email"], .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input:focus[type="email"],
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input:focus[type="password"], .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input:focus[type="password"],
      .subscribe-modal .modal-content .modal-body .input-group .login input:focus[type="text"], .login .subscribe-modal .modal-content .modal-body .input-group input:focus[type="text"], .subscribe-modal .modal-content .modal-body .input-group .login input:focus[type="password"], .login .subscribe-modal .modal-content .modal-body .input-group input:focus[type="password"],
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce-ResetPassword.lost_reset_password input:focus[type="text"], .woocommerce-ResetPassword.lost_reset_password .subscribe-modal .modal-content .modal-body .input-group input:focus[type="text"],
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input:focus[type="text"], .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input:focus[type="text"],
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input:focus[type="email"], .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input:focus[type="email"],
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input:focus[type="tel"], .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input:focus[type="tel"],
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout .select2-choice:focus, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group .select2-choice:focus,
      .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout textarea:focus, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group textarea:focus,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row input.input-text:focus, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group input.input-text:focus,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row .select2-selection:focus, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group .select2-selection:focus,
      .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row .select2-choice:focus, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group .select2-choice:focus {
        border-color: var(--primary); }
    .subscribe-modal .modal-content .modal-body .btn, .subscribe-modal .modal-content .modal-body .wp-block-button__link, .subscribe-modal .modal-content .modal-body .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .subscribe-modal .modal-content .modal-body a,
    .subscribe-modal .modal-content .modal-body .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .subscribe-modal .modal-content .modal-body a, .subscribe-modal .modal-content .modal-body .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .subscribe-modal .modal-content .modal-body input, .subscribe-modal .modal-content .modal-body .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .subscribe-modal .modal-content .modal-body .button, .subscribe-modal .modal-content .modal-body .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .subscribe-modal .modal-content .modal-body a.checkout-button, .subscribe-modal .modal-content .modal-body .woocommerce #respond input#submit, .woocommerce #respond .subscribe-modal .modal-content .modal-body input#submit,
    .subscribe-modal .modal-content .modal-body .woocommerce a.button, .woocommerce .subscribe-modal .modal-content .modal-body a.button,
    .subscribe-modal .modal-content .modal-body .woocommerce button.button, .woocommerce .subscribe-modal .modal-content .modal-body button.button,
    .subscribe-modal .modal-content .modal-body .woocommerce input.button, .woocommerce .subscribe-modal .modal-content .modal-body input.button,
    .subscribe-modal .modal-content .modal-body .woocommerce #place_order, .woocommerce .subscribe-modal .modal-content .modal-body #place_order {
      box-shadow: 0px 4px 44px 0px rgba(6, 198, 209, 0.33); }
    .subscribe-modal .modal-content .modal-body .pattern1 {
      position: absolute;
      top: 15px;
      right: 0;
      width: 100px;
      height: 100px;
      opacity: 0.5;
      animation: move4 5s infinite; }
    .subscribe-modal .modal-content .modal-body .pattern2 {
      position: absolute;
      bottom: 15px;
      left: 0;
      width: 100px;
      height: 100px;
      opacity: 0.5;
      animation: move4 3.5s infinite; }
  @media only screen and (max-width: 575px) {
    .subscribe-modal .modal-content {
      min-width: 300px; }
      .subscribe-modal .modal-content .modal-body {
        padding: 40px 20px; }
        .subscribe-modal .modal-content .modal-body .icon-box img {
          width: 50px;
          height: 50px; }
        .subscribe-modal .modal-content .modal-body .icon-box.bg-shape:after {
          width: 85px;
          height: 85px; }
        .subscribe-modal .modal-content .modal-body .dz-title {
          font-size: 20px; }
        .subscribe-modal .modal-content .modal-body p {
          margin: 0 auto 16px;
          font-size: 14px;
          max-width: 460px; }
        .subscribe-modal .modal-content .modal-body .input-group .form-control, .subscribe-modal .modal-content .modal-body .input-group .wp-block-categories-dropdown select, .wp-block-categories-dropdown .subscribe-modal .modal-content .modal-body .input-group select,
        .subscribe-modal .modal-content .modal-body .input-group .wp-block-archives-dropdown select, .wp-block-archives-dropdown .subscribe-modal .modal-content .modal-body .input-group select, .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group input[type="text"],
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group textarea,
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .subscribe-modal .modal-content .modal-body .input-group input[type="email"], .subscribe-modal .modal-content .modal-body .input-group .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .subscribe-modal .modal-content .modal-body .input-group .input-text, .subscribe-modal .modal-content .modal-body .input-group .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .subscribe-modal .modal-content .modal-body .input-group input,
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .subscribe-modal .modal-content .modal-body .input-group select,
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .subscribe-modal .modal-content .modal-body .input-group input, .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input[type="text"],
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input[type="email"],
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .subscribe-modal .modal-content .modal-body .input-group input[type="password"],
        .subscribe-modal .modal-content .modal-body .input-group .login input[type="text"], .login .subscribe-modal .modal-content .modal-body .input-group input[type="text"], .subscribe-modal .modal-content .modal-body .input-group .login input[type="password"], .login .subscribe-modal .modal-content .modal-body .input-group input[type="password"],
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .subscribe-modal .modal-content .modal-body .input-group input[type="text"],
        .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input[type="text"],
        .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input[type="email"],
        .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group input[type="tel"],
        .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group .select2-choice,
        .subscribe-modal .modal-content .modal-body .input-group .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .subscribe-modal .modal-content .modal-body .input-group textarea,
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row input.input-text, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group input.input-text,
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group .select2-selection,
        .subscribe-modal .modal-content .modal-body .input-group .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .subscribe-modal .modal-content .modal-body .input-group .select2-choice {
          margin-bottom: 20px;
          height: 45px; }
        .subscribe-modal .modal-content .modal-body .pattern1,
        .subscribe-modal .modal-content .modal-body .pattern2 {
          width: 50px;
          height: 50px; } }

.dzmove1 {
  animation: dzMove1 5s linear infinite; }

@keyframes dzMove1 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0); }
  50% {
    -webkit-transform: translate(25px, 25px);
    transform: translate(25px, 25px); }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0); } }

.dzmove2 {
  -webkit-animation: move1 5s infinite;
  animation: move1 5s infinite; }

@-webkit-keyframes dzmove2 {
  0% {
    -webkit-transform: rotate(-25deg) translate(-50px, -50px);
    transform: rotate(-25deg) translate(-50px, -50px); }
  50% {
    -webkit-transform: rotate(25deg) translate(50px, 50px);
    transform: rotate(25deg) translate(50px, 50px); }
  100% {
    -webkit-transform: rotate(-25deg) translate(-50px, -50px);
    transform: rotate(-25deg) translate(-50px, -50px); } }

.dzheart {
  animation: dzHeart 1s linear infinite; }

@keyframes dzHeart {
  0% {
    transform: scale(1); }
  50% {
    transform: scale(1.1); }
  100% {
    transform: scale(0.9); } }

.dz-tabs.style-1 .nav-tabs {
  margin-bottom: 30px;
  justify-content: center;
  border-bottom: 1px solid #D9D9D9; }
  .dz-tabs.style-1 .nav-tabs .nav-link {
    display: inline-block;
    padding: 15px 20px;
    border: 0;
    font-size: 15px;
    font-weight: 400;
    color: #777777;
    margin: 0 5px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    position: relative;
    background-color: transparent; }
    .dz-tabs.style-1 .nav-tabs .nav-link:after {
      content: "";
      background-color: var(--primary);
      width: 0;
      height: 3px;
      position: absolute;
      bottom: -2px;
      left: 50%;
      -webkit-transition: all 0.2s;
      -ms-transition: all 0.2s;
      transition: all 0.2s;
      transform: translateX(-50%); }
    .dz-tabs.style-1 .nav-tabs .nav-link.active:after, .dz-tabs.style-1 .nav-tabs .nav-link:hover:after {
      width: 100%; }

@media only screen and (max-width: 991px) {
  .dz-tabs.style-1 .nav-tabs .nav-link {
    padding: 14px 12px; } }

@media only screen and (max-width: 575px) {
  .dz-tabs.style-1 .nav-tabs {
    margin-bottom: 20px; }
    .dz-tabs.style-1 .nav-tabs .nav-link {
      padding: 12px 10px; } }

.dz-tabs.style-2 .nav-pills {
  margin-bottom: 30px;
  justify-content: center;
  border: none; }
  .dz-tabs.style-2 .nav-pills .nav-item {
    padding: 5px; }
    .dz-tabs.style-2 .nav-pills .nav-item .nav-link {
      background: var(--primary);
      border-radius: 8px;
      padding: 10px 24px; }
      .dz-tabs.style-2 .nav-pills .nav-item .nav-link.active, .dz-tabs.style-2 .nav-pills .nav-item .nav-link:hover {
        background: var(--secondary);
        border-color: transparent;
        color: #fff; }
  @media only screen and (max-width: 575px) {
    .dz-tabs.style-2 .nav-pills {
      margin-bottom: 20px; } }

.dz-tabs.style-3 .nav-pills {
  margin-bottom: 30px;
  justify-content: center;
  border: none; }
  .dz-tabs.style-3 .nav-pills .nav-item {
    padding: 5px; }
    .dz-tabs.style-3 .nav-pills .nav-item .nav-link {
      border: 1px solid var(--primary);
      border-radius: 8px;
      padding: 10px 24px;
      color: var(--primary); }
      .dz-tabs.style-3 .nav-pills .nav-item .nav-link.active, .dz-tabs.style-3 .nav-pills .nav-item .nav-link:hover {
        background: var(--primary);
        color: #fff; }
  @media only screen and (max-width: 575px) {
    .dz-tabs.style-3 .nav-pills {
      margin-bottom: 20px; } }

.dz-tabs.style-4 .nav-pills {
  margin-bottom: 30px;
  border-radius: 20px;
  border: none;
  justify-content: center; }
  .dz-tabs.style-4 .nav-pills .nav-item {
    padding: 5px; }
    .dz-tabs.style-4 .nav-pills .nav-item .nav-link {
      border: 1px solid var(--primary);
      color: var(--primary);
      border-radius: 50px;
      padding: 10px 24px; }
      .dz-tabs.style-4 .nav-pills .nav-item .nav-link.active, .dz-tabs.style-4 .nav-pills .nav-item .nav-link:hover {
        background: var(--primary);
        color: #fff; }
  @media only screen and (max-width: 575px) {
    .dz-tabs.style-4 .nav-pills {
      margin-bottom: 20px; } }

.dz-tabs.style-5 .nav-tabs {
  margin-bottom: 32px;
  justify-content: center;
  border-bottom: 0; }
  .dz-tabs.style-5 .nav-tabs .nav-link {
    display: inline-block;
    padding: 18px 30px;
    font-size: 15px;
    font-weight: 400;
    color: #777777;
    margin: 10px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
    box-shadow: 0px 7px 29px 0px rgba(100, 100, 111, 0.2);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    border-radius: var(--border-radius-base);
    border: 2px solid #fff; }
    .dz-tabs.style-5 .nav-tabs .nav-link img {
      width: 45px; }
    .dz-tabs.style-5 .nav-tabs .nav-link .title {
      display: block;
      font-weight: 500;
      margin-top: 10px;
      color: #222222; }
    .dz-tabs.style-5 .nav-tabs .nav-link i {
      display: block;
      font-size: 45px;
      margin-bottom: 10px;
      color: var(--secondary); }
    .dz-tabs.style-5 .nav-tabs .nav-link.active, .dz-tabs.style-5 .nav-tabs .nav-link:hover {
      background-color: #fff;
      border-color: transparent;
      border: 2px solid var(--secondary); }
      .dz-tabs.style-5 .nav-tabs .nav-link.active i, .dz-tabs.style-5 .nav-tabs .nav-link:hover i {
        color: var(--primary); }

@media only screen and (max-width: 767px) {
  .dz-tabs.style-5 .nav-link {
    width: 40%;
    padding: 18px 20px; } }

.tab-content > .tab-pane.fade {
  transition: all 0.2s; }

.nav-tabs.style-1 {
  border: 0;
  background: var(--gradient);
  position: relative;
  padding: 5px 7px;
  margin-left: 20px;
  display: inline-flex;
  transform: skewX(-10deg);
  box-shadow: 0px 10px 15px 0px rgba(255, 129, 57, 0.15); }
  .nav-tabs.style-1:after {
    content: '';
    position: absolute;
    height: 100%;
    width: 8px;
    left: -18px;
    top: 0;
    background: var(--primary-dark); }
  .nav-tabs.style-1 .nav-link {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    border-radius: 0;
    line-height: 25px;
    padding: 10px 25px;
    border: none;
    color: var(--theme-text-color);
    isolation: unset; }
    .nav-tabs.style-1 .nav-link span {
      transform: skewX(10deg);
      display: block; }
    .nav-tabs.style-1 .nav-link.active {
      color: #000; }
  @media only screen and (max-width: 1280px) {
    .nav-tabs.style-1 .nav-link {
      line-height: 1.1;
      padding: 10px 19px; } }
  @media only screen and (max-width: 991px) {
    .nav-tabs.style-1 {
      margin-left: 17px; }
      .nav-tabs.style-1:after {
        left: -15px; }
      .nav-tabs.style-1 .nav-link {
        font-size: 14px;
        padding: 10px 16px; } }
  .nav-tabs.style-1.dark {
    background: var(--secondary);
    box-shadow: none; }
    .nav-tabs.style-1.dark .nav-link {
      color: #fff; }
      .nav-tabs.style-1.dark .nav-link.active {
        color: #000; }
    .nav-tabs.style-1.dark:after {
      background: var(--secondary); }
  .nav-tabs.style-1.light {
    background: #fff;
    box-shadow: none; }
    .nav-tabs.style-1.light .nav-link {
      color: var(--title); }
      .nav-tabs.style-1.light .nav-link.active {
        color: #fff;
        background: var(--secondary); }
    .nav-tabs.style-1.light:after {
      background: #fff; }

.nav-tabs.style-2 {
  border-bottom: 0; }
  .nav-tabs.style-2 .nav-item {
    margin-right: 50px; }
    .nav-tabs.style-2 .nav-item:last-child {
      margin-right: 0; }
      @media only screen and (max-width: 575px) {
        .nav-tabs.style-2 .nav-item:last-child {
          margin-right: 30px; } }
  .nav-tabs.style-2 .nav-link {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--title);
    padding: 0 0 10px 0;
    font-family: var(--font-family-title);
    line-height: 1;
    font-style: italic;
    background: transparent;
    border: 0;
    border-bottom: 5px solid rgba(0, 0, 0, 0.1); }
    .nav-tabs.style-2 .nav-link.active {
      color: var(--primary);
      border-bottom: 5px solid var(--primary); }
    @media only screen and (max-width: 575px) {
      .nav-tabs.style-2 .nav-link {
        font-size: 20px; } }

.alert {
  padding: 15px 20px; }
  .alert svg {
    margin-right: 8px; }
  .alert.alert-dismissible {
    position: relative; }
    .alert.alert-dismissible .close {
      position: absolute;
      top: 0;
      right: 0;
      padding: 0.75rem 1.25rem;
      color: inherit;
      background-color: transparent;
      border: 0;
      appearance: none; }
    @media only screen and (max-width: 575px) {
      .alert.alert-dismissible {
        padding: 12px 45px 12px 15px;
        font-size: 14px; } }

.alert.alert-primary {
  color: var(--primary);
  border: 1px solid var(--rgba-primary-3);
  background-color: var(--rgba-primary-1); }

.alert.alert-secondary {
  color: var(--secondary);
  border: 1px solid var(--rgba-secondary-3);
  background-color: var(--rgba-secondary-1); }

.alert.alert-danger {
  color: #ff0003;
  border: 1px solid #ffd6d7;
  background-color: #ffe6e6; }

.alert.alert-info {
  color: #00aeff;
  border: 1px solid #c7edff;
  background-color: #e6f7ff; }

.alert.alert-success {
  color: #13c24d;
  border: 1px solid #c2f9d4;
  background-color: #f0fef4; }

.alert.alert-warning {
  color: #FFBD13;
  border: 1px solid #ffebb6;
  background-color: #fff3d5; }

.alert.alert-dark {
  color: #222222;
  border: 1px solid #d5d5d5;
  background-color: #e1e1e1; }

.alert-alt {
  padding-left: 25px; }
  @media only screen and (max-width: 575px) {
    .alert-alt {
      padding-left: 15px; } }
  .alert-alt.alert-primary {
    border-left: 4px solid var(--primary); }
  .alert-alt.alert-secondary {
    border-left: 4px solid var(--secondary); }
  .alert-alt.alert-danger {
    border-left: 4px solid #ff0003; }
  .alert-alt.alert-info {
    border-left: 4px solid #00aeff; }
  .alert-alt.alert-success {
    border-left: 4px solid #13c24d; }
  .alert-alt.alert-warning {
    border-left: 4px solid #FFBD13; }
  .alert-alt.alert-dark {
    border-left: 4px solid #222222; }

.alert-rounded {
  border-radius: 30px;
  padding-left: 25px; }
  @media only screen and (max-width: 575px) {
    .alert-rounded {
      padding-left: 15px; } }

.checkbox-info .form-check-input:focus {
  border-color: #00aeff;
  outline: 0; }

.checkbox-info .form-check-input:checked {
  background-color: #00aeff;
  border-color: #00aeff; }

.checkbox-danger .form-check-input:focus {
  border-color: #ff0003;
  outline: 0; }

.checkbox-danger .form-check-input:checked {
  background-color: #ff0003;
  border-color: #ff0003; }

.checkbox-success .form-check-input:focus {
  border-color: #13c24d;
  outline: 0; }

.checkbox-success .form-check-input:checked {
  background-color: #13c24d;
  border-color: #13c24d; }

.checkbox-warning .form-check-input:focus {
  border-color: #FFBD13;
  outline: 0; }

.checkbox-warning .form-check-input:checked {
  background-color: #FFBD13;
  border-color: #FFBD13; }

.checkbox-secondary .form-check-input:focus {
  border-color: #232323;
  outline: 0; }

.checkbox-secondary .form-check-input:checked {
  background-color: #232323;
  border-color: #232323; }

.form-check-input:checked {
  background-color: var(--primary); }

.dz-social-icon ul li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px; }
  .dz-social-icon ul li a {
    font-size: 18px;
    color: #fff;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .dz-social-icon ul li a:hover {
      color: var(--primary); }
  .dz-social-icon ul li:first-child {
    padding-left: 0;
    margin-left: 0; }

.dz-social-icon.dark ul li a {
  color: #222222; }

.dz-social-icon.style-1 ul li {
  display: inline-block; }
  .dz-social-icon.style-1 ul li a {
    display: inline-block;
    height: 40px;
    width: 40px;
    min-width: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    background-color: var(--primary);
    color: var(--theme-text-color);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    @media only screen and (max-width: 767px) {
      .dz-social-icon.style-1 ul li a {
        height: 32px;
        width: 32px;
        min-width: 32px;
        line-height: 32px;
        font-size: 14px; } }

.dz-social-icon.style-1.dark ul li a:hover {
  background-color: #fff;
  color: var(--title); }
  .dz-social-icon.style-1.dark ul li a:hover i {
    color: var(--title); }

.dz-social-icon.style-2 ul li a {
  height: 45px;
  min-width: 45px;
  line-height: 45px;
  font-size: 18px;
  text-align: center;
  border-radius: var(--border-radius-base);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  border: 1px solid black;
  color: black; }
  .dz-social-icon.style-2 ul li a:hover {
    border-color: var(--primary);
    background-color: var(--primary);
    color: white;
    box-shadow: 0px 12px 20px 0px var(--rgba-primary-3); }
  @media only screen and (max-width: 767px) {
    .dz-social-icon.style-2 ul li a {
      height: 40px;
      width: 40px;
      min-width: 40px;
      line-height: 40px;
      font-size: 16px; } }

.dz-social-icon.style-3 ul li {
  display: inline-block; }
  .dz-social-icon.style-3 ul li a {
    height: 40px;
    width: 40px;
    min-width: 40px;
    line-height: 40px;
    font-size: 16px;
    text-align: center;
    background-color: #373737;
    color: #fff;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .dz-social-icon.style-3 ul li a:hover {
      background-color: var(--primary); }
    @media only screen and (max-width: 767px) {
      .dz-social-icon.style-3 ul li a {
        height: 40px;
        width: 40px;
        min-width: 40px;
        line-height: 40px;
        font-size: 16px; } }

.dz-social-icon.style-3.dark ul li a:hover {
  background-color: #fff;
  color: #000; }

.call-action {
  position: relative;
  z-index: unset; }
  .call-action.style-2 {
    margin-top: 50px;
    z-index: 9; }
    .call-action.style-2 .inner-content {
      background: transparent;
      margin: 0;
      overflow: visible;
      box-shadow: none;
      padding: 50px 0 30px;
      padding-top: 0; }
      .call-action.style-2 .inner-content:after {
        content: none; }
      .call-action.style-2 .inner-content .title {
        font-size: 50px;
        font-style: italic;
        color: var(--theme-text-color); }
      @media only screen and (max-width: 991px) {
        .call-action.style-2 .inner-content .title {
          font-size: 40px; } }
      @media only screen and (max-width: 767px) {
        .call-action.style-2 .inner-content .title {
          font-size: 36px; } }
      @media only screen and (max-width: 575px) {
        .call-action.style-2 .inner-content .title {
          font-size: 35px; } }
    .call-action.style-2:after {
      content: "";
      background-image: var(--theme1-bg-pattern1);
      background-attachment: unset;
      background-size: cover;
      position: absolute;
      top: -48px;
      left: 0;
      width: 100%;
      height: 50px;
      z-index: -1; }
    .call-action.style-2 .input-skew .form-control, .call-action.style-2 .input-skew .wp-block-categories-dropdown select, .wp-block-categories-dropdown .call-action.style-2 .input-skew select,
    .call-action.style-2 .input-skew .wp-block-archives-dropdown select, .wp-block-archives-dropdown .call-action.style-2 .input-skew select, .call-action.style-2 .input-skew .woocommerce #review_form #respond input[type="text"], .woocommerce #review_form #respond .call-action.style-2 .input-skew input[type="text"],
    .call-action.style-2 .input-skew .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .call-action.style-2 .input-skew textarea,
    .call-action.style-2 .input-skew .woocommerce #review_form #respond input[type="email"], .woocommerce #review_form #respond .call-action.style-2 .input-skew input[type="email"], .call-action.style-2 .input-skew .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .call-action.style-2 .input-skew .input-text, .call-action.style-2 .input-skew .woocommerce-cart-form .table.shop_table tr .quantity input, .woocommerce-cart-form .table.shop_table tr .quantity .call-action.style-2 .input-skew input,
    .call-action.style-2 .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row select, .woocommerce .woocommerce-checkout.checkout form .form-row .call-action.style-2 .input-skew select,
    .call-action.style-2 .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row input, .woocommerce .woocommerce-checkout.checkout form .form-row .call-action.style-2 .input-skew input, .call-action.style-2 .input-skew .woocommerce-EditAccountForm.edit-account input[type="text"], .woocommerce-EditAccountForm.edit-account .call-action.style-2 .input-skew input[type="text"],
    .call-action.style-2 .input-skew .woocommerce-EditAccountForm.edit-account input[type="email"], .woocommerce-EditAccountForm.edit-account .call-action.style-2 .input-skew input[type="email"],
    .call-action.style-2 .input-skew .woocommerce-EditAccountForm.edit-account input[type="password"], .woocommerce-EditAccountForm.edit-account .call-action.style-2 .input-skew input[type="password"],
    .call-action.style-2 .input-skew .login input[type="text"], .login .call-action.style-2 .input-skew input[type="text"], .call-action.style-2 .input-skew .login input[type="password"], .login .call-action.style-2 .input-skew input[type="password"],
    .call-action.style-2 .input-skew .woocommerce-ResetPassword.lost_reset_password input[type="text"], .woocommerce-ResetPassword.lost_reset_password .call-action.style-2 .input-skew input[type="text"],
    .call-action.style-2 .input-skew .checkout.woocommerce-checkout input[type="text"], .checkout.woocommerce-checkout .call-action.style-2 .input-skew input[type="text"],
    .call-action.style-2 .input-skew .checkout.woocommerce-checkout input[type="email"], .checkout.woocommerce-checkout .call-action.style-2 .input-skew input[type="email"],
    .call-action.style-2 .input-skew .checkout.woocommerce-checkout input[type="tel"], .checkout.woocommerce-checkout .call-action.style-2 .input-skew input[type="tel"],
    .call-action.style-2 .input-skew .checkout.woocommerce-checkout .select2-choice, .checkout.woocommerce-checkout .call-action.style-2 .input-skew .select2-choice,
    .call-action.style-2 .input-skew .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .call-action.style-2 .input-skew textarea,
    .call-action.style-2 .input-skew .woocommerce form .form-row input.input-text, .woocommerce form .form-row .call-action.style-2 .input-skew input.input-text,
    .call-action.style-2 .input-skew .woocommerce form .form-row .select2-selection, .woocommerce form .form-row .call-action.style-2 .input-skew .select2-selection,
    .call-action.style-2 .input-skew .woocommerce form .form-row .select2-choice, .woocommerce form .form-row .call-action.style-2 .input-skew .select2-choice {
      height: 100%; }
      .call-action.style-2 .input-skew .form-control:placeholder, .call-action.style-2 .input-skew .wp-block-categories-dropdown select:placeholder, .wp-block-categories-dropdown .call-action.style-2 .input-skew select:placeholder,
      .call-action.style-2 .input-skew .wp-block-archives-dropdown select:placeholder, .wp-block-archives-dropdown .call-action.style-2 .input-skew select:placeholder, .call-action.style-2 .input-skew .woocommerce #review_form #respond input:placeholder[type="text"], .woocommerce #review_form #respond .call-action.style-2 .input-skew input:placeholder[type="text"],
      .call-action.style-2 .input-skew .woocommerce #review_form #respond textarea:placeholder, .woocommerce #review_form #respond .call-action.style-2 .input-skew textarea:placeholder,
      .call-action.style-2 .input-skew .woocommerce #review_form #respond input:placeholder[type="email"], .woocommerce #review_form #respond .call-action.style-2 .input-skew input:placeholder[type="email"], .call-action.style-2 .input-skew .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text:placeholder, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .call-action.style-2 .input-skew .input-text:placeholder, .call-action.style-2 .input-skew .woocommerce-cart-form .table.shop_table tr .quantity input:placeholder, .woocommerce-cart-form .table.shop_table tr .quantity .call-action.style-2 .input-skew input:placeholder,
      .call-action.style-2 .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row select:placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .call-action.style-2 .input-skew select:placeholder,
      .call-action.style-2 .input-skew .woocommerce .woocommerce-checkout.checkout form .form-row input:placeholder, .woocommerce .woocommerce-checkout.checkout form .form-row .call-action.style-2 .input-skew input:placeholder, .call-action.style-2 .input-skew .woocommerce-EditAccountForm.edit-account input:placeholder[type="text"], .woocommerce-EditAccountForm.edit-account .call-action.style-2 .input-skew input:placeholder[type="text"],
      .call-action.style-2 .input-skew .woocommerce-EditAccountForm.edit-account input:placeholder[type="email"], .woocommerce-EditAccountForm.edit-account .call-action.style-2 .input-skew input:placeholder[type="email"],
      .call-action.style-2 .input-skew .woocommerce-EditAccountForm.edit-account input:placeholder[type="password"], .woocommerce-EditAccountForm.edit-account .call-action.style-2 .input-skew input:placeholder[type="password"],
      .call-action.style-2 .input-skew .login input:placeholder[type="text"], .login .call-action.style-2 .input-skew input:placeholder[type="text"], .call-action.style-2 .input-skew .login input:placeholder[type="password"], .login .call-action.style-2 .input-skew input:placeholder[type="password"],
      .call-action.style-2 .input-skew .woocommerce-ResetPassword.lost_reset_password input:placeholder[type="text"], .woocommerce-ResetPassword.lost_reset_password .call-action.style-2 .input-skew input:placeholder[type="text"],
      .call-action.style-2 .input-skew .checkout.woocommerce-checkout input:placeholder[type="text"], .checkout.woocommerce-checkout .call-action.style-2 .input-skew input:placeholder[type="text"],
      .call-action.style-2 .input-skew .checkout.woocommerce-checkout input:placeholder[type="email"], .checkout.woocommerce-checkout .call-action.style-2 .input-skew input:placeholder[type="email"],
      .call-action.style-2 .input-skew .checkout.woocommerce-checkout input:placeholder[type="tel"], .checkout.woocommerce-checkout .call-action.style-2 .input-skew input:placeholder[type="tel"],
      .call-action.style-2 .input-skew .checkout.woocommerce-checkout .select2-choice:placeholder, .checkout.woocommerce-checkout .call-action.style-2 .input-skew .select2-choice:placeholder,
      .call-action.style-2 .input-skew .checkout.woocommerce-checkout textarea:placeholder, .checkout.woocommerce-checkout .call-action.style-2 .input-skew textarea:placeholder,
      .call-action.style-2 .input-skew .woocommerce form .form-row input.input-text:placeholder, .woocommerce form .form-row .call-action.style-2 .input-skew input.input-text:placeholder,
      .call-action.style-2 .input-skew .woocommerce form .form-row .select2-selection:placeholder, .woocommerce form .form-row .call-action.style-2 .input-skew .select2-selection:placeholder,
      .call-action.style-2 .input-skew .woocommerce form .form-row .select2-choice:placeholder, .woocommerce form .form-row .call-action.style-2 .input-skew .select2-choice:placeholder {
        transform: skewX(0deg); }
    @media only screen and (max-width: 575px) {
      .call-action.style-2 .input-group-addon {
        width: 100%; }
      .call-action.style-2 .input-skew {
        width: 100%;
        margin: 0 10px 15px; } }
    .call-action.style-2 .form-group {
      margin-bottom: 0; }
  .call-action.footer-action {
    margin-bottom: -100px;
    position: relative;
    z-index: 9; }
  .call-action.style-3 {
    z-index: 99;
    padding-top: 20px;
    padding-bottom: 30px;
    margin-top: 10px; }
    .call-action.style-3:after {
      content: "";
      background-image: var(--theme1-bg-pattern1);
      background-attachment: unset;
      background-size: cover;
      position: absolute;
      left: 0;
      width: 100%;
      top: -48px;
      height: 50px; }
      .call-action.style-3:after path {
        fill: #000; }
      @media only screen and (max-width: 767px) {
        .call-action.style-3:after {
          top: -33px;
          height: 35px; } }
    @media only screen and (max-width: 1480px) {
      .call-action.style-3 {
        padding-top: 10px;
        padding-bottom: 20px; } }
    @media only screen and (max-width: 575px) {
      .call-action.style-3 .action-title {
        text-align: center; } }
    .call-action.style-3 .action-title h2, .call-action.style-3 .action-title .h2 {
      margin: 0;
      line-height: 1;
      font-size: 50px;
      font-weight: 500;
      font-style: italic;
      color: var(--theme-text-color); }
      .call-action.style-3 .action-title h2 span, .call-action.style-3 .action-title .h2 span {
        font-weight: 900; }
    .call-action.style-3 .action-title h3, .call-action.style-3 .action-title .h3 {
      margin: 0;
      font-size: 30px;
      font-weight: 500;
      font-style: italic;
      color: var(--theme-text-color); }
    @media only screen and (max-width: 1480px) {
      .call-action.style-3 .action-title h2, .call-action.style-3 .action-title .h2 {
        font-size: 42px; }
      .call-action.style-3 .action-title h3, .call-action.style-3 .action-title .h3 {
        font-size: 25px; } }
    @media only screen and (max-width: 1199px) {
      .call-action.style-3 .action-title h2, .call-action.style-3 .action-title .h2 {
        font-size: 35px; }
      .call-action.style-3 .action-title h3, .call-action.style-3 .action-title .h3 {
        font-size: 21px; } }
    @media only screen and (max-width: 575px) {
      .call-action.style-3 .action-title h2, .call-action.style-3 .action-title .h2 {
        font-size: 28px; }
      .call-action.style-3 .action-title h3, .call-action.style-3 .action-title .h3 {
        font-size: 16px; } }
    .call-action.style-3 .contact {
      text-align: right; }
      @media only screen and (max-width: 991px) {
        .call-action.style-3 .contact {
          text-align: center; } }
      .call-action.style-3 .contact h2 a, .call-action.style-3 .contact .h2 a {
        font-size: 50px;
        font-style: italic;
        line-height: 1;
        margin: 0;
        color: var(--theme-text-color);
        font-weight: 900; }
        @media only screen and (max-width: 767px) {
          .call-action.style-3 .contact h2 a, .call-action.style-3 .contact .h2 a {
            font-size: 38px; } }
        @media only screen and (max-width: 575px) {
          .call-action.style-3 .contact h2 a, .call-action.style-3 .contact .h2 a {
            font-size: 26px; } }
      .call-action.style-3 .contact h4, .call-action.style-3 .contact .h4 {
        font-style: italic;
        font-weight: 500;
        margin-bottom: 0;
        font-size: 24px;
        color: var(--theme-text-color); }
      @media only screen and (max-width: 1480px) {
        .call-action.style-3 .contact h2, .call-action.style-3 .contact .h2 {
          font-size: 42px; }
        .call-action.style-3 .contact h4, .call-action.style-3 .contact .h4 {
          font-size: 20px; } }
      @media only screen and (max-width: 1199px) {
        .call-action.style-3 .contact h2, .call-action.style-3 .contact .h2 {
          font-size: 35px; }
        .call-action.style-3 .contact h4, .call-action.style-3 .contact .h4 {
          font-size: 18px;
          margin-bottom: 2px; } }
      @media only screen and (max-width: 575px) {
        .call-action.style-3 .contact h2, .call-action.style-3 .contact .h2 {
          font-size: 28px; }
        .call-action.style-3 .contact h4, .call-action.style-3 .contact .h4 {
          font-size: 17px; } }

@keyframes upToRight {
  49% {
    transform: translateX(100%); }
  50% {
    opacity: 0;
    transform: translateX(-100%); }
  51% {
    opacity: 1; } }

@keyframes upToDown {
  49% {
    transform: translateY(100%); }
  50% {
    opacity: 0;
    transform: translateY(-100%); }
  51% {
    opacity: 1; } }

.ps__rail-x:hover,
.ps__rail-y:hover,
.ps__rail-x:focus,
.ps__rail-y:focus,
.ps__rail-x.ps--clicking,
.ps__rail-y.ps--clicking {
  background-color: transparent;
  opacity: 0.9; }

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
  background-color: #DAE2F3;
  width: 4px; }

.ps__thumb-y {
  background-color: #DAE2F3;
  width: 4px; }

.dz-img-box {
  position: relative;
  overflow: hidden; }
  .dz-img-box.style-1 {
    background: #fff;
    position: relative;
    z-index: 1; }
    .dz-img-box.style-1 .dz-media .dz-meta {
      position: absolute;
      top: 8px;
      left: 12px; }
    .dz-img-box.style-1 .dz-media img {
      transition: 0.5s; }
    .dz-img-box.style-1 .dz-content {
      position: absolute;
      bottom: 0;
      padding: 15px 20px;
      background: #000000bf;
      margin: 0;
      transform: rotateX(-90deg);
      transition: 0.5s; }
      .dz-img-box.style-1 .dz-content .dz-meta {
        margin-bottom: 10px; }
        .dz-img-box.style-1 .dz-content .dz-meta ul li {
          background-color: var(--primary);
          color: var(--title);
          padding: 5px 7px;
          font-size: 13px;
          font-weight: 500;
          line-height: 1; }
      .dz-img-box.style-1 .dz-content .title {
        font-size: 18px;
        letter-spacing: 1.8px;
        font-weight: 700;
        line-height: 1.3;
        text-transform: uppercase; }
        .dz-img-box.style-1 .dz-content .title a {
          color: #fff; }
    .dz-img-box.style-1:hover .dz-content {
      transform: rotateX(0deg); }
    .dz-img-box.style-1:hover .dz-media img {
      transform: scale(1.2); }
  .dz-img-box.style-2 {
    margin-bottom: 30px; }
    .dz-img-box.style-2 .dz-content {
      position: absolute;
      z-index: 1;
      top: 50%;
      transform: translateY(-50%) translateX(-50%);
      left: 50%;
      text-align: center;
      width: 100%;
      padding: 0 43px; }
      .dz-img-box.style-2 .dz-content .title {
        font-family: var(--font-family-title);
        font-size: 45px;
        font-weight: 900;
        color: #fff;
        margin-bottom: 45px;
        line-height: 1.2; }
  .dz-img-box.style-3 {
    padding: 50px;
    height: 350px;
    max-height: 350px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    background-size: cover; }
    @media only screen and (max-width: 991px) {
      .dz-img-box.style-3 {
        padding: 30px;
        height: 300px;
        max-height: 300px; } }
    .dz-img-box.style-3 .effect {
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-radius: 50%;
      transition: width .4s ease-in-out,height .4s ease-in-out;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: -1;
      background: var(--secondary);
      opacity: 0.69; }
    .dz-img-box.style-3:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #EBF0F3;
      opacity: 1;
      z-index: -1;
      transition: 0.5s;
      left: 0%;
      transform-origin: left center; }
    .dz-img-box.style-3.active:before, .dz-img-box.style-3:hover:before {
      opacity: 0; }
    .dz-img-box.style-3.active .title,
    .dz-img-box.style-3.active .title a,
    .dz-img-box.style-3.active .read-more, .dz-img-box.style-3:hover .title,
    .dz-img-box.style-3:hover .title a,
    .dz-img-box.style-3:hover .read-more {
      color: #fff !important; }
    .dz-img-box.style-3.active .effect, .dz-img-box.style-3:hover .effect {
      width: 300%;
      height: 300%; }
    .dz-img-box.style-3 .dz-content .date {
      background: var(--primary);
      font-size: 13px;
      font-weight: 700;
      font-family: var(--font-family-title);
      padding: 5px 10px;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      color: var(--secondary); }
    .dz-img-box.style-3 .dz-content .title {
      font-size: 30px;
      font-weight: 700;
      font-family: var(--font-family-title);
      text-transform: uppercase;
      color: #053251;
      margin: 15px 0; }
    .dz-img-box.style-3 .dz-content .read-more {
      color: #053251;
      letter-spacing: 1.6px;
      font-size: 16px;
      font-weight: 700;
      text-transform: uppercase;
      font-family: var(--font-family-title);
      border-bottom: 3px solid var(--primary);
      padding-bottom: 5px;
      position: absolute;
      bottom: 50px;
      left: 50px; }
      @media only screen and (max-width: 991px) {
        .dz-img-box.style-3 .dz-content .read-more {
          bottom: 30px;
          left: 30px; } }

.main-bnr-one {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .main-bnr-one .banner-inner {
    height: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom left; }
  .main-bnr-one .banner-content {
    position: relative;
    z-index: 2; }
    .main-bnr-one .banner-content .title {
      line-height: 1.2;
      font-size: 60px;
      font-weight: 700;
      position: relative;
      margin-bottom: 20px;
      color: #fff;
      font-style: italic; }
      .main-bnr-one .banner-content .title .text1 {
        font-size: 80px;
        display: inline-block;
        font-weight: 700;
        line-height: 1; }
      .main-bnr-one .banner-content .title .text2 {
        font-size: 200px;
        margin-right: 7px;
        font-weight: 900;
        display: inline-block; }
    .main-bnr-one .banner-content .sub-title {
      font-style: italic;
      font-size: 35px;
      font-weight: 500;
      margin-right: -10px;
      margin-bottom: 2px;
      display: block;
      text-align: right; }
    .main-bnr-one .banner-content .para-1 {
      font-size: 25px;
      font-weight: 500;
      font-style: italic;
      color: #fff;
      display: block; }
    .main-bnr-one .banner-content .para-2 {
      font-style: italic;
      font-size: 45px;
      color: #fff;
      margin-right: 25px;
      font-weight: 500; }
      .main-bnr-one .banner-content .para-2 span {
        color: var(--primary);
        font-size: 55px;
        font-weight: 900; }
    .main-bnr-one .banner-content p {
      font-family: var(--font-family-title);
      margin-bottom: 0;
      line-height: 1;
      display: inline-block; }
    @media only screen and (max-width: 1480px) {
      .main-bnr-one .banner-content .title .text1 {
        font-size: 50px; }
      .main-bnr-one .banner-content .title .text2 {
        font-size: 130px; }
      .main-bnr-one .banner-content .sub-title {
        font-size: 24px; }
      .main-bnr-one .banner-content .para-1 {
        font-size: 24px; }
      .main-bnr-one .banner-content .para-2 {
        font-size: 32px; }
        .main-bnr-one .banner-content .para-2 span {
          font-size: 45px; } }
    @media only screen and (max-width: 1191px) {
      .main-bnr-one .banner-content .title {
        font-size: 45px;
        margin-bottom: 10px;
        width: 90%; }
        .main-bnr-one .banner-content .title .text1 {
          font-size: 36px; }
        .main-bnr-one .banner-content .title .text2 {
          font-size: 90px; }
      .main-bnr-one .banner-content .sub-title {
        font-size: 18px; }
      .main-bnr-one .banner-content .para-1 {
        font-size: 20px; }
      .main-bnr-one .banner-content .para-2 {
        font-size: 24px;
        margin-bottom: 20px; }
        .main-bnr-one .banner-content .para-2 span {
          font-size: 32px; }
      .main-bnr-one .banner-content p {
        display: block; } }
    @media only screen and (max-width: 767px) {
      .main-bnr-one .banner-content .title {
        font-size: 20px;
        margin-bottom: 5px;
        width: 100%; }
        .main-bnr-one .banner-content .title .text1 {
          font-size: 30px; }
        .main-bnr-one .banner-content .title .text2 {
          font-size: 60px;
          margin-left: 5px; }
      .main-bnr-one .banner-content .sub-title {
        font-size: 16px; }
      .main-bnr-one .banner-content .para-1 {
        font-size: 16px;
        margin-bottom: 5px; }
      .main-bnr-one .banner-content .para-2 {
        font-size: 16px; }
        .main-bnr-one .banner-content .para-2 span {
          font-size: 24px; } }
  .main-bnr-one .banner-media {
    text-align: center;
    max-width: 900px;
    width: 900px;
    height: 800px;
    margin-left: -130px;
    z-index: 2;
    position: relative; }
    @media only screen and (max-width: 1680px) {
      .main-bnr-one .banner-media {
        max-width: 800px;
        width: 800px; } }
    @media only screen and (max-width: 1480px) {
      .main-bnr-one .banner-media {
        max-width: 750px;
        width: 750px; } }
    @media only screen and (max-width: 1191px) {
      .main-bnr-one .banner-media {
        max-width: 600px;
        width: 600px;
        height: 600px;
        margin-left: -250px; } }
    @media only screen and (max-width: 767px) {
      .main-bnr-one .banner-media {
        max-width: 340px;
        width: 340px;
        height: 420px;
        display: flex;
        justify-content: flex-end;
        flex-direction: column;
        margin-left: -120px; } }
    @media only screen and (max-width: 575px) {
      .main-bnr-one .banner-media {
        max-width: 100%;
        width: 100%;
        height: 100%;
        margin-left: auto;
        margin-right: auto; } }
    .main-bnr-one .banner-media .main-img {
      height: auto;
      width: auto;
      height: auto;
      filter: grayscale(1);
      left: 0; }
    .main-bnr-one .banner-media ul {
      position: absolute;
      bottom: 100px;
      right: 70px;
      text-align: left;
      font-family: var(--font-family-title); }
      @media only screen and (max-width: 1680px) {
        .main-bnr-one .banner-media ul {
          right: 100px; } }
      @media only screen and (max-width: 1280px) {
        .main-bnr-one .banner-media ul {
          display: none; } }
      .main-bnr-one .banner-media ul li {
        transform: skewX(-12deg);
        display: table;
        margin-bottom: 4px;
        font-weight: 500; }
        .main-bnr-one .banner-media ul li:nth-child(1) {
          font-size: 33px;
          color: #fff;
          line-height: 1.1; }
        .main-bnr-one .banner-media ul li:nth-child(2) {
          padding: 0 15px;
          font-size: 28px;
          line-height: 1.4;
          letter-spacing: 2px;
          font-weight: 500;
          color: var(--theme-text-color);
          background-color: var(--primary); }
        .main-bnr-one .banner-media ul li:nth-child(3) {
          background-color: #fff;
          line-height: 1.4;
          padding: 0 15px;
          color: #000;
          font-size: 28px;
          font-weight: 500; }
        @media only screen and (max-width: 1191px) {
          .main-bnr-one .banner-media ul li:nth-child(1), .main-bnr-one .banner-media ul li:nth-child(2), .main-bnr-one .banner-media ul li:nth-child(3) {
            font-size: 20px; } }
        @media only screen and (max-width: 767px) {
          .main-bnr-one .banner-media ul li:nth-child(1), .main-bnr-one .banner-media ul li:nth-child(2), .main-bnr-one .banner-media ul li:nth-child(3) {
            font-size: 16px; } }
  .main-bnr-one .main-btn {
    position: absolute;
    top: 40%;
    left: 30px;
    z-index: 1; }
    .main-bnr-one .main-btn .btn-prev {
      display: block;
      transform: skewX(12deg); }
      .main-bnr-one .main-btn .btn-prev i {
        transform: skewX(-12deg); }
    .main-bnr-one .main-btn .btn-prev,
    .main-bnr-one .main-btn .btn-next {
      color: var(--theme-text-color);
      margin: 10px; }
      .main-bnr-one .main-btn .btn-prev:hover,
      .main-bnr-one .main-btn .btn-next:hover {
        background: #fff;
        color: var(--primary); }
    @media only screen and (max-width: 1280px) {
      .main-bnr-one .main-btn {
        bottom: 50px;
        left: auto;
        display: flex;
        right: 30px;
        top: auto; }
        .main-bnr-one .main-btn .btn-prev,
        .main-bnr-one .main-btn .btn-next {
          transform: unset;
          margin: 5px; }
          .main-bnr-one .main-btn .btn-prev i,
          .main-bnr-one .main-btn .btn-next i {
            transform: unset; } }
  .main-bnr-one .num-pagination {
    position: absolute;
    bottom: 60px; }
    .main-bnr-one .num-pagination .swiper-pagination-bullet {
      font-style: italic;
      color: #ffffff;
      font-weight: 700; }
      .main-bnr-one .num-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-weight: 700;
        transform: scale(1.5) translateY(-3px); }
    @media only screen and (max-width: 767px) {
      .main-bnr-one .num-pagination {
        bottom: 40px; } }
  .main-bnr-one .main-slider {
    overflow: unset; }

@keyframes fadeup {
  0% {
    opacity: 0.8;
    transform: scale(0.9); }
  100% {
    transform: scale(2);
    opacity: 0; } }

@keyframes fadeup2 {
  0% {
    opacity: 0.8;
    transform: scale(0.9); }
  100% {
    transform: scale(3);
    opacity: 0; } }

.main-slider .swiper-slide {
  height: 100%; }

.main-slider .swiper-wrapper {
  height: 800px; }
  @media only screen and (max-width: 1199px) {
    .main-slider .swiper-wrapper {
      height: 630px; } }
  @media only screen and (max-width: 767px) {
    .main-slider .swiper-wrapper {
      height: 410px; } }
  @media only screen and (max-width: 575px) {
    .main-slider .swiper-wrapper {
      height: 600px; } }

.main-slider .banner-inner {
  overflow: hidden; }
  @media only screen and (max-width: 575px) {
    .main-slider .banner-inner {
      padding-top: 70px; } }

.main-pagination.style-2 {
  left: 0; }

.main-bnr-two {
  position: relative;
  z-index: 1;
  overflow: hidden; }
  .main-bnr-two .banner-inner {
    height: 870px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #fff; }
    .main-bnr-two .banner-inner:after {
      content: "";
      background-image: var(--theme1-bg-pattern2);
      position: absolute;
      top: 0;
      left: 0;
      width: 55vw;
      height: 100%;
      z-index: 9;
      background-size: cover;
      background-position: bottom;
      transition: 0.5s; }
      @media only screen and (max-width: 991px) {
        .main-bnr-two .banner-inner:after {
          width: 62vw;
          background-position: top; } }
      @media only screen and (max-width: 767px) {
        .main-bnr-two .banner-inner:after {
          display: none; } }
    .main-bnr-two .banner-inner .shape1 {
      position: absolute;
      width: 300px;
      bottom: 0;
      left: 0;
      height: auto;
      z-index: 99; }
      @media only screen and (max-width: 1480px) {
        .main-bnr-two .banner-inner .shape1 {
          width: 230px; } }
      @media only screen and (max-width: 991px) {
        .main-bnr-two .banner-inner .shape1 {
          display: none; } }
    .main-bnr-two .banner-inner .shape2 {
      position: absolute;
      width: 200px;
      top: 0;
      left: 0;
      height: auto;
      z-index: 99; }
      @media only screen and (max-width: 1480px) {
        .main-bnr-two .banner-inner .shape2 {
          width: 170px; } }
      @media only screen and (max-width: 991px) {
        .main-bnr-two .banner-inner .shape2 {
          display: none; } }
    @media only screen and (max-width: 1480px) {
      .main-bnr-two .banner-inner {
        height: 700px; } }
    @media only screen and (max-width: 1191px) {
      .main-bnr-two .banner-inner {
        height: 600px; } }
    @media only screen and (max-width: 991px) {
      .main-bnr-two .banner-inner {
        height: auto; } }
  .main-bnr-two .banner-content {
    position: relative;
    z-index: 99;
    padding-left: 12rem;
    padding-top: 10rem;
    height: 100%; }
    @media only screen and (max-width: 1600px) {
      .main-bnr-two .banner-content {
        padding-left: 5rem; } }
    @media only screen and (max-width: 1280px) {
      .main-bnr-two .banner-content {
        padding-top: 5rem;
        padding-left: 3rem; } }
    @media only screen and (max-width: 991px) {
      .main-bnr-two .banner-content {
        padding-left: 15px; } }
    @media only screen and (max-width: 767px) {
      .main-bnr-two .banner-content {
        padding-top: 2rem; } }
    .main-bnr-two .banner-content .title {
      line-height: 1.2;
      font-size: 80px;
      font-weight: 900;
      position: relative;
      margin-bottom: 20px;
      text-transform: uppercase;
      color: var(--secondary);
      font-style: italic; }
      .main-bnr-two .banner-content .title .text1 {
        font-size: 46px;
        display: inline-block;
        font-weight: 900; }
    .main-bnr-two .banner-content .sub-title {
      font-style: italic;
      font-size: 35px;
      font-weight: 500;
      margin-right: -10px;
      display: block;
      text-align: right; }
    .main-bnr-two .banner-content .para-1 {
      font-size: 40px;
      font-weight: 500;
      font-style: italic;
      color: var(--secondary);
      letter-spacing: 4px;
      display: block;
      text-transform: uppercase;
      margin-right: -40px;
      margin-bottom: 5px; }
    .main-bnr-two .banner-content .para-2 {
      font-style: italic;
      font-size: 40px;
      color: var(--secondary);
      margin-right: 25px;
      font-weight: 500;
      letter-spacing: 4px;
      text-transform: uppercase;
      margin-bottom: 50px;
      display: block; }
      .main-bnr-two .banner-content .para-2 span {
        color: var(--primary);
        font-size: 40px;
        font-weight: 900; }
    .main-bnr-two .banner-content p {
      font-family: var(--font-family-title);
      margin-bottom: 0;
      line-height: 1;
      display: inline-block; }
    @media only screen and (max-width: 1480px) {
      .main-bnr-two .banner-content .title {
        font-size: 60px; }
        .main-bnr-two .banner-content .title .text1 {
          font-size: 50px; }
        .main-bnr-two .banner-content .title .text2 {
          font-size: 150px; }
      .main-bnr-two .banner-content .sub-title {
        font-size: 24px; }
      .main-bnr-two .banner-content .para-1 {
        font-size: 24px; }
      .main-bnr-two .banner-content .para-2 {
        font-size: 32px; }
        .main-bnr-two .banner-content .para-2 span {
          font-size: 45px; } }
    @media only screen and (max-width: 1280px) {
      .main-bnr-two .banner-content .para-2 {
        font-size: 30px; }
        .main-bnr-two .banner-content .para-2 span {
          font-size: 35px; } }
    @media only screen and (max-width: 1191px) {
      .main-bnr-two .banner-content .title {
        font-size: 45px;
        margin-bottom: 10px; }
        .main-bnr-two .banner-content .title .text1 {
          font-size: 36px; }
        .main-bnr-two .banner-content .title .text2 {
          font-size: 90px; }
      .main-bnr-two .banner-content .sub-title {
        font-size: 18px; }
      .main-bnr-two .banner-content .para-1 {
        font-size: 20px; }
      .main-bnr-two .banner-content .para-2 {
        font-size: 24px;
        margin-bottom: 20px; }
        .main-bnr-two .banner-content .para-2 span {
          font-size: 32px; }
      .main-bnr-two .banner-content p {
        display: block; } }
    @media only screen and (max-width: 767px) {
      .main-bnr-two .banner-content .title {
        font-size: 45px;
        margin-bottom: 5px; }
        .main-bnr-two .banner-content .title .text1 {
          font-size: 40px; }
        .main-bnr-two .banner-content .title .text2 {
          font-size: 60px;
          margin-left: 5px; }
      .main-bnr-two .banner-content .sub-title {
        font-size: 16px; }
      .main-bnr-two .banner-content .para-1 {
        font-size: 30px;
        margin-bottom: 5px; }
      .main-bnr-two .banner-content .para-2 {
        font-size: 30px; }
        .main-bnr-two .banner-content .para-2 span {
          font-size: 24px; } }
    @media only screen and (max-width: 575px) {
      .main-bnr-two .banner-content .para-1 {
        font-size: 16px; }
      .main-bnr-two .banner-content .para-2 {
        font-size: 20px; }
      .main-bnr-two .banner-content .title {
        font-size: 30px; }
        .main-bnr-two .banner-content .title .text1 {
          font-size: 25px; } }
    .main-bnr-two .banner-content .bottom-content {
      position: absolute;
      bottom: 150px;
      z-index: 99999; }
      @media only screen and (max-width: 1480px) {
        .main-bnr-two .banner-content .bottom-content {
          position: unset; } }
      @media only screen and (max-width: 767px) {
        .main-bnr-two .banner-content .bottom-content {
          margin-bottom: 30px; } }
      .main-bnr-two .banner-content .bottom-content .para-1 {
        font-size: 41px;
        font-weight: 700;
        letter-spacing: 4.1px;
        font-style: italic;
        color: var(--secondary);
        letter-spacing: 4px;
        font-family: var(--font-family-title);
        display: block;
        text-transform: uppercase; }
        @media only screen and (max-width: 1280px) {
          .main-bnr-two .banner-content .bottom-content .para-1 {
            font-size: 30px; } }
        .main-bnr-two .banner-content .bottom-content .para-1 span {
          color: var(--primary); }
        @media only screen and (max-width: 767px) {
          .main-bnr-two .banner-content .bottom-content .para-1 {
            font-size: 30px; } }
      .main-bnr-two .banner-content .bottom-content .para-2 {
        font-size: 19px;
        font-weight: 700;
        font-style: italic;
        color: var(--secondary);
        letter-spacing: 1.9px;
        font-family: var(--font-family-title);
        display: block;
        text-transform: uppercase;
        margin-bottom: 0; }
      @media only screen and (max-width: 991px) {
        .main-bnr-two .banner-content .bottom-content {
          display: none; } }
  .main-bnr-two .banner-media {
    text-align: center;
    width: 60vw;
    max-height: 900px;
    z-index: 2;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .main-bnr-two .banner-media {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
        background-color: #fff; } }
    .main-bnr-two .banner-media:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: #00111D;
      mix-blend-mode: color; }
    .main-bnr-two .banner-media .main-img {
      height: auto;
      width: 100%;
      left: 0; }
  .main-bnr-two .main-btn {
    position: absolute;
    top: 40%;
    z-index: 1;
    width: 100%; }
    .main-bnr-two .main-btn .btn-prev {
      display: block;
      left: -53px; }
      .main-bnr-two .main-btn .btn-prev i {
        transform: rotate(-45deg) translate(20px, 0); }
        @media only screen and (max-width: 991px) {
          .main-bnr-two .main-btn .btn-prev i {
            transform: rotate(-45deg) translate(30px, -7px); } }
    .main-bnr-two .main-btn .btn-next {
      left: auto;
      right: -53px; }
      .main-bnr-two .main-btn .btn-next i {
        transform: rotate(-45deg) translate(-20px, 0); }
        @media only screen and (max-width: 991px) {
          .main-bnr-two .main-btn .btn-next i {
            transform: rotate(-45deg) translate(-15px, -7px); } }
    .main-bnr-two .main-btn .btn-prev,
    .main-bnr-two .main-btn .btn-next {
      color: var(--secondary);
      display: block;
      width: 80px;
      height: 80px;
      line-height: 80px;
      transform: rotate(45deg);
      position: absolute;
      z-index: 9; }
      .main-bnr-two .main-btn .btn-prev:hover,
      .main-bnr-two .main-btn .btn-next:hover {
        background: #fff;
        color: var(--primary); }
      @media only screen and (max-width: 991px) {
        .main-bnr-two .main-btn .btn-prev,
        .main-bnr-two .main-btn .btn-next {
          width: 60px;
          height: 60px; } }
  .main-bnr-two .num-pagination {
    position: absolute;
    bottom: 60px; }
    .main-bnr-two .num-pagination .swiper-pagination-bullet {
      font-style: italic;
      color: #ffffff;
      font-weight: 700; }
      .main-bnr-two .num-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        font-weight: 700;
        transform: scale(1.5) translateY(-3px); }
    @media only screen and (max-width: 767px) {
      .main-bnr-two .num-pagination {
        bottom: 40px; } }
  .main-bnr-two .main-slider {
    overflow: unset; }

@keyframes fadeup {
  0% {
    opacity: 0.8;
    transform: scale(0.9); }
  100% {
    transform: scale(2);
    opacity: 0; } }

@keyframes fadeup2 {
  0% {
    opacity: 0.8;
    transform: scale(0.9); }
  100% {
    transform: scale(3);
    opacity: 0; } }

.main-slider-2 .swiper-slide {
  position: relative;
  overflow: hidden; }
  .main-slider-2 .swiper-slide .banner-media img {
    transform: translatex(50%) scalex(2);
    opacity: 0;
    filter: blur(10px);
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s; }
  .main-slider-2 .swiper-slide.swiper-slide-active .banner-media img {
    transform: translatex(0) scalex(1);
    opacity: 1;
    filter: blur(0); }

.main-bnr-three {
  position: relative;
  overflow: hidden;
  z-index: 1; }
  .main-bnr-three .banner-inner {
    height: 640px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    padding-top: 99px;
    background-blend-mode: color-dodge;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (max-width: 991px) {
      .main-bnr-three .banner-inner {
        height: 500px;
        padding-top: 140px; } }
    @media only screen and (max-width: 767px) {
      .main-bnr-three .banner-inner {
        padding-top: 140px; } }
    @media only screen and (max-width: 575px) {
      .main-bnr-three .banner-inner {
        padding-top: 100px;
        padding-bottom: 50px;
        height: 400px; } }
    .main-bnr-three .banner-inner .banner-content .title {
      font-style: italic;
      text-transform: uppercase;
      color: var(--title); }
    .main-bnr-three .banner-inner .banner-content .para {
      color: var(--title);
      font-family: var(--font-family-title);
      font-size: 28px;
      font-style: italic;
      font-weight: 400;
      letter-spacing: 2.8px;
      text-transform: uppercase;
      margin-bottom: 0; }
      @media only screen and (max-width: 575px) {
        .main-bnr-three .banner-inner .banner-content .para {
          font-size: 22px; } }
      .main-bnr-three .banner-inner .banner-content .para span {
        color: var(--primary);
        font-weight: 600; }
    .main-bnr-three .banner-inner .banner-media {
      margin-bottom: 70px; }
      @media only screen and (max-width: 991px) {
        .main-bnr-three .banner-inner .banner-media {
          margin-bottom: 50px; }
          .main-bnr-three .banner-inner .banner-media img {
            width: 100px; } }
      @media only screen and (max-width: 767px) {
        .main-bnr-three .banner-inner .banner-media {
          margin-bottom: 15px;
          position: absolute;
          right: 15%; }
          .main-bnr-three .banner-inner .banner-media img {
            width: 50px; } }
    .main-bnr-three .banner-inner .side-line-content {
      color: #FFF;
      font-family: var(--font-family-title);
      font-size: 18px;
      font-weight: 500;
      letter-spacing: 3.6px;
      transform: rotate(-90deg);
      text-transform: uppercase;
      position: absolute;
      right: -40px;
      bottom: 105px;
      margin-bottom: 0;
      line-height: 1; }
      @media only screen and (max-width: 991px) {
        .main-bnr-three .banner-inner .side-line-content {
          right: -55px;
          bottom: 80px; } }
      @media only screen and (max-width: 575px) {
        .main-bnr-three .banner-inner .side-line-content {
          display: none; } }
      .main-bnr-three .banner-inner .side-line-content i {
        font-size: 24px;
        font-weight: 500;
        vertical-align: middle; }

.move-1 {
  -webkit-animation: move1 5s infinite;
  animation: move1 5s infinite; }

.move-2 {
  -webkit-animation: move2 5s infinite;
  animation: move2 5s infinite; }

.move-3 {
  -webkit-animation: move3 5s infinite;
  animation: move3 5s infinite; }

.move-4 {
  -webkit-animation: move4 5s infinite;
  animation: move4 5s infinite; }

.move-5 {
  -webkit-animation: move5 5s infinite;
  animation: move5 5s infinite; }

.move-6 {
  -webkit-animation: move6 5s infinite;
  animation: move6 5s infinite; }

.move-7 {
  -webkit-animation: move7 5s infinite;
  animation: move7 5s infinite; }

.move-lr {
  animation: move-lr 3s infinite linear; }

.rotate-360 {
  animation: rotate-360 20s infinite linear; }

@keyframes rotate-360 {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(359deg); } }

@-webkit-keyframes move1 {
  0% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px); }
  50% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px); }
  100% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px); } }

@-webkit-keyframes move2 {
  0% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px); }
  50% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px); }
  100% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px); } }

@-webkit-keyframes move3 {
  0% {
    transform: translate(0, 0); }
  20% {
    transform: translate(5px, 0); }
  40% {
    transform: translate(5px, 5px); }
  65% {
    transform: translate(0, 5px); }
  65% {
    transform: translate(5px, 0); }
  100% {
    transform: translate(0, 0); } }

@keyframes move4 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0); }
  25% {
    -webkit-transform: translate(10px, 10px);
    transform: translate(10px, 10px); }
  50% {
    -webkit-transform: translate(5px, 5px);
    transform: translate(5px, 5px); }
  75% {
    -webkit-transform: translate(10px, -5px);
    transform: translate(10px, -5px); }
  to {
    -webkit-transform: translate(0);
    transform: translate(0); } }

@keyframes move5 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0); }
  25% {
    -webkit-transform: translate(-10px, -10px);
    transform: translate(-10px, -10px); }
  50% {
    -webkit-transform: translate(-5px, -5px);
    transform: translate(-5px, -5px); }
  75% {
    -webkit-transform: translate(-10px, 5px);
    transform: translate(-10px, 5px); }
  to {
    -webkit-transform: translate(0);
    transform: translate(0); } }

@keyframes move6 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0); }
  25% {
    -webkit-transform: translate(15px, 15px);
    transform: translate(15px, 15px); }
  50% {
    -webkit-transform: translate(8px, 8px);
    transform: translate(8px, 8px); }
  75% {
    -webkit-transform: translate(15px, -8px);
    transform: translate(15px, -8px); }
  to {
    -webkit-transform: translate(0);
    transform: translate(0); } }

@keyframes move7 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0); }
  25% {
    -webkit-transform: translate(-15px, -15px);
    transform: translate(-15px, -15px); }
  50% {
    -webkit-transform: translate(-8px, -8px);
    transform: translate(-8px, -8px); }
  75% {
    -webkit-transform: translate(-15px, 8px);
    transform: translate(-15px, 8px); }
  to {
    -webkit-transform: translate(0);
    transform: translate(0); } }

@keyframes move-lr {
  0% {
    transform: rotate(0); }
  10% {
    transform: rotate(-15deg); }
  20% {
    transform: rotate(20deg); }
  30% {
    transform: rotate(-24deg); }
  40% {
    transform: rotate(21deg); }
  50% {
    transform: rotate(-18deg); }
  60% {
    transform: rotate(14deg); }
  70% {
    transform: rotate(-11deg); }
  80% {
    transform: rotate(7deg); }
  90% {
    transform: rotate(-3deg); }
  100% {
    transform: rotate(1deg); } }

.about-bx1 {
  position: relative; }
  .about-bx1 .dz-media {
    overflow: visible;
    margin-top: 80px; }
    .about-bx1 .dz-media > img {
      height: 100%;
      width: 100%;
      object-fit: cover;
      object-position: center;
      clip-path: polygon(50% 0%, 100% 0, 100% 80%, 85% 100%, 51% 100%, 0 100%, 0 0); }
    .about-bx1 .dz-media .image-box {
      position: absolute;
      height: 330px;
      width: 330px;
      top: -80px;
      left: -90px;
      z-index: 999; }
      .about-bx1 .dz-media .image-box #about-video {
        width: 100%;
        height: 100%;
        object-fit: cover; }
      .about-bx1 .dz-media .image-box .tag {
        text-align: center;
        display: inline-block;
        position: absolute;
        padding: 15px;
        bottom: 0;
        right: 0;
        font-size: 20px;
        background: var(--primary);
        text-transform: uppercase;
        z-index: 9999; }
        .about-bx1 .dz-media .image-box .tag h5, .about-bx1 .dz-media .image-box .tag .h5 {
          letter-spacing: 1px;
          margin: 0;
          color: var(--theme-text-color);
          font-family: var(--font-family-title);
          font-weight: 700; }
        .about-bx1 .dz-media .image-box .tag h2, .about-bx1 .dz-media .image-box .tag .h2 {
          margin: 0;
          letter-spacing: -5px;
          line-height: 1;
          font-size: 100px;
          color: var(--theme-text-color);
          font-family: var(--font-family-title);
          font-weight: 700;
          letter-spacing: 10px;
          text-align: center;
          width: fit-content;
          margin: auto; }
      .about-bx1 .dz-media .image-box:after {
        content: "";
        position: absolute;
        top: 20px;
        left: 20px;
        height: 100%;
        width: 100%;
        z-index: -1;
        background: #fff; }
        @media only screen and (max-width: 991px) {
          .about-bx1 .dz-media .image-box:after {
            top: 15px;
            left: 15px; } }
        @media only screen and (max-width: 575px) {
          .about-bx1 .dz-media .image-box:after {
            top: 10px;
            left: 10px; } }
      @media only screen and (max-width: 1480px) {
        .about-bx1 .dz-media .image-box {
          height: 270px;
          width: 270px;
          top: -60px;
          left: -70px; }
          .about-bx1 .dz-media .image-box .tag h2, .about-bx1 .dz-media .image-box .tag .h2 {
            font-size: 70px; } }
      @media only screen and (max-width: 1280px) {
        .about-bx1 .dz-media .image-box {
          height: 200px;
          width: 200px;
          top: -30px;
          left: -10px; }
          .about-bx1 .dz-media .image-box .tag {
            display: none; } }
      @media only screen and (max-width: 1199px) {
        .about-bx1 .dz-media .image-box {
          top: -60px;
          left: -35px; } }
      @media only screen and (max-width: 575px) {
        .about-bx1 .dz-media .image-box {
          height: 150px;
          width: 150px;
          top: -50px;
          left: 0; } }
  .about-bx1 .about-content {
    padding-top: 25px; }
    @media only screen and (max-width: 991px) {
      .about-bx1 .about-content {
        padding-top: 0; } }
    .about-bx1 .about-content h3.title, .about-bx1 .about-content .title.h3 {
      font-size: 60px; }
      @media only screen and (max-width: 1280px) {
        .about-bx1 .about-content h3.title, .about-bx1 .about-content .title.h3 {
          font-size: 50px; } }
      @media only screen and (max-width: 991px) {
        .about-bx1 .about-content h3.title, .about-bx1 .about-content .title.h3 {
          font-size: 40px; } }
    .about-bx1 .about-content .sub-title {
      font-size: 28px;
      line-height: 1.3;
      background: var(--primary);
      font-weight: 700;
      letter-spacing: 1px;
      display: inline-block;
      transform: skewX(-12deg);
      padding: 0 12px;
      color: var(--theme-text-color);
      font-family: var(--font-family-title); }
    .about-bx1 .about-content .title {
      font-size: 85px;
      font-family: var(--font-family-title);
      font-weight: 900;
      margin-left: -5px !important;
      font-style: italic; }
    .about-bx1 .about-content .description {
      font-size: 28px;
      font-family: var(--font-family-title);
      color: #000;
      font-style: italic;
      letter-spacing: 1px;
      font-weight: 500;
      text-transform: capitalize; }
      @media only screen and (max-width: 1280px) {
        .about-bx1 .about-content .description {
          margin-bottom: 30px; } }
      @media only screen and (max-width: 575px) {
        .about-bx1 .about-content .description {
          margin-bottom: 15px; } }
    .about-bx1 .about-content .pr-list {
      display: flow-root; }
      .about-bx1 .about-content .pr-list li {
        font-family: var(--font-family-title);
        font-size: 24px;
        font-style: italic;
        font-weight: 500;
        letter-spacing: 2.4px;
        padding: 3px 0;
        width: 50%;
        float: left; }
        .about-bx1 .about-content .pr-list li i {
          color: var(--primary); }
    @media only screen and (max-width: 1480px) {
      .about-bx1 .about-content .sub-title,
      .about-bx1 .about-content .description {
        font-size: 24px; }
      .about-bx1 .about-content .title {
        font-size: 72px; }
      .about-bx1 .about-content .pr-list li {
        font-size: 20px;
        padding: 1px 0; } }
    @media only screen and (max-width: 1199px) {
      .about-bx1 .about-content .description,
      .about-bx1 .about-content .sub-title {
        font-size: 20px; }
      .about-bx1 .about-content .title {
        font-size: 65px; }
      .about-bx1 .about-content p {
        font-size: 15px; }
      .about-bx1 .about-content .pr-list li {
        font-size: 18px;
        padding: 1px 0; } }
    @media only screen and (max-width: 575px) {
      .about-bx1 .about-content .sub-title,
      .about-bx1 .about-content .description {
        font-size: 18px; }
      .about-bx1 .about-content .title {
        font-size: 45px; }
      .about-bx1 .about-content .pr-list li {
        width: 100%; } }

.membership-box-2 {
  position: relative;
  max-height: 555px;
  padding-top: 40px; }
  .membership-box-2:before {
    content: "";
    position: absolute;
    background-image: url(../images/background/bg10.png);
    z-index: -2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%; }
  @media only screen and (max-width: 991px) {
    .membership-box-2 {
      max-height: fit-content;
      height: auto; } }
  .membership-box-2:after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 45vw;
    z-index: -1;
    background: var(--bs-body-color);
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%); }
    @media only screen and (max-width: 991px) {
      .membership-box-2:after {
        display: none; } }
  .membership-box-2 .dz-media {
    top: -112px;
    left: -35px;
    transform: scale(1.1);
    overflow: visible;
    margin: 0; }
    @media only screen and (max-width: 1280px) {
      .membership-box-2 .dz-media {
        transform: scale(1.1);
        left: -100px; } }
    @media only screen and (max-width: 1024px) {
      .membership-box-2 .dz-media {
        top: auto;
        transform: scale(1);
        left: -35px; } }
    @media only screen and (max-width: 991px) {
      .membership-box-2 .dz-media {
        margin: auto; } }

.gym-text,
.gym-text-2 {
  margin: 0;
  position: absolute;
  bottom: 1%;
  right: -43%;
  line-height: 0.5;
  z-index: -1; }
  @media only screen and (max-width: 1600px) {
    .gym-text,
    .gym-text-2 {
      right: -12%; } }
  @media only screen and (max-width: 1280px) {
    .gym-text,
    .gym-text-2 {
      right: -5%; } }
  @media only screen and (max-width: 991px) {
    .gym-text,
    .gym-text-2 {
      right: 10%; } }
  .gym-text span,
  .gym-text-2 span {
    font-weight: 700;
    font-size: 270px;
    font-family: Kuunari;
    width: auto;
    color: var(--primary);
    line-height: 1;
    height: auto;
    position: relative;
    font-style: italic;
    z-index: 0;
    line-height: 0;
    letter-spacing: -13px; }
    .gym-text span:nth-child(1),
    .gym-text-2 span:nth-child(1) {
      animation: animateBGText 3s infinite 0.2s ease-in-out; }
    .gym-text span:nth-child(2),
    .gym-text-2 span:nth-child(2) {
      animation: animateBGText 3s infinite 0.4s ease-in-out; }
    .gym-text span:nth-child(3),
    .gym-text-2 span:nth-child(3) {
      animation: animateBGText 3s infinite 0.6s ease-in-out; }
    .gym-text span:nth-child(4),
    .gym-text-2 span:nth-child(4) {
      animation: animateBGText 3s infinite 0.8s ease-in-out; }
    .gym-text span:nth-child(5),
    .gym-text-2 span:nth-child(5) {
      animation: animateBGText 3s infinite 1s ease-in-out; }
    .gym-text span:nth-child(6),
    .gym-text-2 span:nth-child(6) {
      animation: animateBGText 3s infinite 1.2s ease-in-out; }
    .gym-text span:nth-child(7),
    .gym-text-2 span:nth-child(7) {
      animation: animateBGText 3s infinite 1.4s ease-in-out; }
    @media only screen and (max-width: 1600px) {
      .gym-text span,
      .gym-text-2 span {
        font-size: 235px; } }
    @media only screen and (max-width: 1480px) {
      .gym-text span,
      .gym-text-2 span {
        font-size: 220px; } }
    @media only screen and (max-width: 1280px) {
      .gym-text span,
      .gym-text-2 span {
        font-size: 180px; } }
    @media only screen and (max-width: 991px) {
      .gym-text span,
      .gym-text-2 span {
        font-size: 150px; } }
    @media only screen and (max-width: 575px) {
      .gym-text span,
      .gym-text-2 span {
        font-size: 120px; } }

.gym-text-2 {
  z-index: 1; }
  .gym-text-2 span {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary-dark); }

@keyframes animateBGText {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(12px);
    opacity: 0.4; } }

.bg-data-text.style-1 {
  font-weight: 600;
  font-size: 120px;
  line-height: 1.1;
  letter-spacing: 18px;
  color: transparent;
  -webkit-text-stroke: 4px #fff;
  display: flex;
  font-style: italic; }
  .bg-data-text.style-1 span:nth-child(4) {
    margin-right: 40px; }
  @media only screen and (max-width: 1280px) {
    .bg-data-text.style-1 {
      font-size: 100px; } }
  @media only screen and (max-width: 767px) {
    .bg-data-text.style-1 {
      font-size: 80px; }
      .bg-data-text.style-1 span:nth-child(4) {
        margin-right: 15px; } }
  @media only screen and (max-width: 575px) {
    .bg-data-text.style-1 {
      font-size: 50px;
      -webkit-text-stroke: 2px #fff; } }

.bg-data-text.style-2 {
  font-size: 60px;
  font-style: italic;
  font-weight: 900;
  display: flex;
  -webkit-text-stroke: 2px #fff;
  color: transparent;
  letter-spacing: 12px;
  text-transform: uppercase;
  justify-content: center;
  line-height: 1; }
  @media only screen and (max-width: 767px) {
    .bg-data-text.style-2 {
      font-size: 50px; } }
  @media only screen and (max-width: 575px) {
    .bg-data-text.style-2 {
      font-size: 35px; } }

.bg-data-text.style-1 span:nth-child(1) {
  animation: animateBGText 3s infinite 0.2s ease-in-out; }

.bg-data-text.style-1 span:nth-child(2) {
  animation: animateBGText 3s infinite 0.4s ease-in-out; }

.bg-data-text.style-1 span:nth-child(3) {
  animation: animateBGText 3s infinite 0.6s ease-in-out; }

.bg-data-text.style-1 span:nth-child(4) {
  animation: animateBGText 3s infinite 0.8s ease-in-out; }

.bg-data-text.style-1 span:nth-child(5) {
  animation: animateBGText 3s infinite 1s ease-in-out; }

.bg-data-text.style-1 span:nth-child(6) {
  animation: animateBGText 3s infinite 1.2s ease-in-out; }

.bg-data-text.style-1 span:nth-child(7) {
  animation: animateBGText 3s infinite 1.4s ease-in-out; }

@keyframes animateBGText {
  0% {
    transform: translateY(0); }
  50% {
    transform: translateY(12px); } }

.text-wrapper {
  position: relative;
  z-index: 1;
  padding: 10px 20px 10px; }
  .text-wrapper .title {
    color: #FFF;
    font-size: 60px;
    font-style: italic;
    font-weight: 900;
    display: flex;
    letter-spacing: 12px;
    text-transform: uppercase;
    justify-content: center;
    line-height: 1; }
    @media only screen and (max-width: 767px) {
      .text-wrapper .title {
        font-size: 50px; } }
    @media only screen and (max-width: 575px) {
      .text-wrapper .title {
        font-size: 35px; } }

.about-bx2 .dz-media {
  height: 100%;
  clip-path: polygon(10% 0, 100% 0, 100% 0, 100% 91%, 92% 100%, 0 100%, 0 100%, 0 9%); }
  .about-bx2 .dz-media img {
    height: 100%;
    object-fit: cover; }

.about-bx3 {
  position: relative;
  z-index: 1; }
  .about-bx3 .dz-media:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    opacity: 0.1;
    z-index: 0; }
  .about-bx3 .dz-media img {
    max-width: 450px;
    float: right; }
    @media only screen and (max-width: 575px) {
      .about-bx3 .dz-media img {
        width: 100%;
        max-width: 100%; } }
  .about-bx3 .dz-media .title {
    color: var(--title);
    font-family: var(--font-family-title);
    font-size: 85px;
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    position: absolute;
    top: 50px;
    left: 5%;
    max-width: 540px;
    z-index: 99; }
    @media only screen and (max-width: 1280px) {
      .about-bx3 .dz-media .title {
        font-size: 60px; } }
    @media only screen and (max-width: 767px) {
      .about-bx3 .dz-media .title {
        font-size: 40px; } }
    @media only screen and (max-width: 575px) {
      .about-bx3 .dz-media .title {
        font-size: 36px;
        left: 0; } }
  .about-bx3 .dz-content {
    position: absolute;
    bottom: 0; }
    @media only screen and (max-width: 991px) {
      .about-bx3 .dz-content {
        position: unset; } }
    .about-bx3 .dz-content .sub-title {
      color: var(--primary);
      font-family: var(--font-family-title);
      font-size: 28px;
      font-style: italic;
      font-weight: 900;
      letter-spacing: 2.8px;
      text-transform: uppercase;
      line-height: 1.2;
      max-width: 315px; }
      @media only screen and (max-width: 1280px) {
        .about-bx3 .dz-content .sub-title {
          width: 100%;
          max-width: 100%; } }
    .about-bx3 .dz-content .list-italic li {
      color: var(--title);
      letter-spacing: 1.8px;
      padding: 10px 0;
      font-family: Kuunari;
      font-size: 18px;
      font-style: italic; }
      .about-bx3 .dz-content .list-italic li i {
        font-size: 20px;
        color: var(--primary);
        margin-right: 10px; }
      @media only screen and (max-width: 575px) {
        .about-bx3 .dz-content .list-italic li {
          font-size: 15px; }
          .about-bx3 .dz-content .list-italic li i {
            font-size: 15px; } }

.testimonial-pic {
  background: #FFF;
  width: 100px;
  height: 100px;
  position: relative;
  display: inline-block;
  border: 5px solid #FFF; }
  .testimonial-pic.radius {
    border-radius: 100%;
    -webkit-border-radius: 100%; }
    .testimonial-pic.radius img {
      width: 100%;
      height: 100%;
      border-radius: 100%;
      -webkit-border-radius: 100%; }
  .testimonial-pic.shadow {
    -webkit-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
    -moz-box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35);
    box-shadow: 2px 3px 6px -3px rgba(0, 0, 0, 0.35); }

.quote-left,
.quote-right {
  position: relative; }
  .quote-left:before,
  .quote-right:before {
    font-family: "DZpower";
    position: absolute;
    z-index: 10;
    height: 36px;
    width: 36px;
    line-height: 36px;
    background-color: var(--primary);
    color: #fff;
    border-radius: 30px;
    text-align: center;
    font-size: 18px; }

.quote-left:before {
  top: 15px;
  content: "\f115";
  left: 0; }

.quote-right:before {
  top: 15px;
  content: "\f11e";
  right: 0; }

.testimonial-text {
  position: relative;
  font-size: 16px;
  font-weight: 400; }
  .testimonial-text p:last-child {
    margin: 0; }

.testimonial-detail {
  padding: 5px; }

.testimonial-position {
  font-size: 15px; }

.testimonial-name,
.testimonial-position {
  display: block; }

.star-rating li {
  display: inline-block; }

.testimonial-1 {
  background-color: transparent;
  padding: 40px;
  position: relative;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: 0px 10px 30px 0px rgba(0, 0, 0, 0.1);
  overflow: hidden; }
  .testimonial-1:after {
    content: '';
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: transparent;
    transform: scale(0);
    transition: 1s; }
  .testimonial-1 .quotes-icon {
    color: var(--primary);
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 10px;
    display: block; }
    @media only screen and (max-width: 575px) {
      .testimonial-1 .quotes-icon {
        font-size: 36px;
        line-height: 36px; } }
  .testimonial-1 .testimonial-text {
    font-size: 18px;
    color: #363848;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 1.7; }
  .testimonial-1 .testimonial-name {
    margin-bottom: 3px;
    letter-spacing: 1px;
    color: var(--secondary);
    line-height: 1.2;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .testimonial-1 .testimonial-position {
    color: #717579;
    font-weight: 400;
    font-family: var(--font-family-base);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .testimonial-1 .testimonial-rating {
    display: flex;
    margin-top: 8px;
    justify-content: center; }
    .testimonial-1 .testimonial-rating i {
      color: var(--primary);
      font-size: 27px;
      margin: 0 4px; }
      .testimonial-1 .testimonial-rating i.text-muted {
        opacity: 0.2; }
    @media only screen and (max-width: 1480px) {
      .testimonial-1 .testimonial-rating i {
        font-size: 20px; } }
    @media only screen and (max-width: 575px) {
      .testimonial-1 .testimonial-rating {
        margin-top: 0;
        margin-bottom: 15px; }
        .testimonial-1 .testimonial-rating i {
          font-size: 16px; } }
  .testimonial-1 .testimonial-review {
    font-size: 14px;
    margin-top: 8px; }
  .testimonial-1 .testimonial-details {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .testimonial-1 .testimonial-details .testimonial-pic {
      height: 70px;
      width: 70px;
      min-width: 70px;
      overflow: hidden;
      border-radius: 100%;
      margin-right: 15px;
      border: 2px solid #fff;
      transform: rotateY(0deg);
      transition: 2s; }
      .testimonial-1 .testimonial-details .testimonial-pic img {
        border-radius: 100%; }
      @media only screen and (max-width: 991px) {
        .testimonial-1 .testimonial-details .testimonial-pic {
          height: 50px;
          width: 50px;
          min-width: 50px;
          margin-right: 23px; } }
      @media only screen and (max-width: 575px) {
        .testimonial-1 .testimonial-details .testimonial-pic {
          margin-right: 15px; } }
    @media only screen and (max-width: 575px) {
      .testimonial-1 .testimonial-details {
        flex-direction: column-reverse;
        align-items: self-start;
        justify-content: flex-start; } }
  .testimonial-1:hover .testimonial-pic:after {
    border-color: var(--primary); }
  @media only screen and (max-width: 1480px) {
    .testimonial-1 {
      padding: 35px; }
      .testimonial-1 .testimonial-text {
        font-size: 16px;
        color: #363848;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s; } }
  @media only screen and (max-width: 575px) {
    .testimonial-1 .testimonial-text {
      font-size: 15px; } }
  @media only screen and (max-width: 991px) {
    .testimonial-1 {
      padding: 30px; } }

.testimonial-2 {
  background-color: transparent;
  position: relative;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  padding: 30px; }
  .testimonial-2 .quotes-icon {
    color: var(--primary);
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 10px;
    display: block; }
    @media only screen and (max-width: 575px) {
      .testimonial-2 .quotes-icon {
        font-size: 36px;
        line-height: 36px; } }
  .testimonial-2 .testimonial-text {
    font-size: 25px;
    color: var(--title);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 1.2;
    font-family: Kuunari; }
  .testimonial-2 .testimonial-name {
    margin-bottom: 3px;
    letter-spacing: 1px;
    color: var(--secondary);
    line-height: 1.2;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .testimonial-2 .testimonial-position {
    color: #717579;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .testimonial-2 .testimonial-rating {
    display: flex;
    margin-top: 8px;
    justify-content: center; }
    .testimonial-2 .testimonial-rating i {
      color: var(--primary);
      font-size: 27px;
      margin: 0 4px; }
      .testimonial-2 .testimonial-rating i.text-muted {
        opacity: 0.2; }
    @media only screen and (max-width: 1480px) {
      .testimonial-2 .testimonial-rating i {
        font-size: 20px; } }
    @media only screen and (max-width: 575px) {
      .testimonial-2 .testimonial-rating {
        margin-top: 0;
        margin-bottom: 15px; }
        .testimonial-2 .testimonial-rating i {
          font-size: 16px; } }
  .testimonial-2 .testimonial-review {
    font-size: 14px;
    margin-top: 8px; }
  .testimonial-2 .testimonial-details {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .testimonial-2 .testimonial-details .testimonial-pic {
      height: 70px;
      width: 70px;
      min-width: 70px;
      overflow: hidden;
      border-radius: 100%;
      margin-right: 15px;
      border: 2px solid #fff; }
      .testimonial-2 .testimonial-details .testimonial-pic img {
        border-radius: 100%; }
      @media only screen and (max-width: 991px) {
        .testimonial-2 .testimonial-details .testimonial-pic {
          height: 50px;
          width: 50px;
          min-width: 50px;
          margin-right: 23px; } }
      @media only screen and (max-width: 575px) {
        .testimonial-2 .testimonial-details .testimonial-pic {
          margin-right: 15px; } }
    @media only screen and (max-width: 575px) {
      .testimonial-2 .testimonial-details {
        flex-direction: column-reverse;
        align-items: self-start;
        justify-content: flex-start; } }
  .testimonial-2:hover .testimonial-pic:after {
    border-color: var(--primary); }
  @media only screen and (max-width: 1480px) {
    .testimonial-2 {
      padding: 35px; }
      .testimonial-2 .testimonial-text {
        font-size: 16px;
        color: #363848;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s; } }
  @media only screen and (max-width: 575px) {
    .testimonial-2 .testimonial-text {
      font-size: 15px; } }
  @media only screen and (max-width: 991px) {
    .testimonial-2 {
      padding: 30px; } }
  .testimonial-2:hover {
    background: var(--primary); }
    .testimonial-2:hover p,
    .testimonial-2:hover .testimonial-name,
    .testimonial-2:hover .testimonial-position,
    .testimonial-2:hover .quotes-icon {
      color: #fff; }

.testimonial-3 {
  background-color: transparent;
  position: relative;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  padding: 30px; }
  .testimonial-3 .quotes-icon {
    color: var(--primary);
    font-size: 60px;
    line-height: 60px;
    margin-bottom: 10px;
    display: block; }
    @media only screen and (max-width: 575px) {
      .testimonial-3 .quotes-icon {
        font-size: 36px;
        line-height: 36px; } }
  .testimonial-3 .testimonial-text {
    color: #fff;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    line-height: 1.2;
    font-size: 20px;
    font-family: Poppins; }
  .testimonial-3 .testimonial-name {
    margin-bottom: 3px;
    letter-spacing: 1px;
    color: var(--primary);
    line-height: 1.2;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    font-style: italic; }
  .testimonial-3 .testimonial-position {
    color: #fff;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    font-style: italic; }
  .testimonial-3 .testimonial-rating {
    display: flex;
    margin-top: 8px;
    justify-content: center; }
    .testimonial-3 .testimonial-rating i {
      color: var(--primary);
      font-size: 27px;
      margin: 0 4px; }
      .testimonial-3 .testimonial-rating i.text-muted {
        opacity: 0.2; }
    @media only screen and (max-width: 1480px) {
      .testimonial-3 .testimonial-rating i {
        font-size: 20px; } }
    @media only screen and (max-width: 575px) {
      .testimonial-3 .testimonial-rating {
        margin-top: 0;
        margin-bottom: 15px; }
        .testimonial-3 .testimonial-rating i {
          font-size: 16px; } }
  .testimonial-3 .testimonial-review {
    font-size: 14px;
    margin-top: 8px; }
  .testimonial-3 .testimonial-details {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .testimonial-3 .testimonial-details .testimonial-pic {
      height: 70px;
      width: 70px;
      min-width: 70px;
      overflow: hidden;
      border-radius: 100%;
      margin-right: 15px;
      border: 2px solid #fff; }
      .testimonial-3 .testimonial-details .testimonial-pic img {
        border-radius: 100%; }
      @media only screen and (max-width: 991px) {
        .testimonial-3 .testimonial-details .testimonial-pic {
          height: 50px;
          width: 50px;
          min-width: 50px;
          margin-right: 23px; } }
      @media only screen and (max-width: 575px) {
        .testimonial-3 .testimonial-details .testimonial-pic {
          margin-right: 15px; } }
    @media only screen and (max-width: 575px) {
      .testimonial-3 .testimonial-details {
        flex-direction: column-reverse;
        align-items: self-start;
        justify-content: flex-start; } }
  .testimonial-3:hover .testimonial-pic:after {
    border-color: var(--primary); }
  @media only screen and (max-width: 1480px) {
    .testimonial-3 {
      padding: 35px; }
      .testimonial-3 .testimonial-text {
        font-size: 16px;
        color: #363848;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s; } }
  @media only screen and (max-width: 575px) {
    .testimonial-3 .testimonial-text {
      font-size: 15px; } }
  @media only screen and (max-width: 991px) {
    .testimonial-3 {
      padding: 30px; } }

.testimonial-wrapper1 {
  position: relative;
  overflow: hidden; }
  .testimonial-wrapper1 .swiper-slide {
    max-width: 745px;
    opacity: 0.3;
    margin: 0 15px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    @media only screen and (max-width: 1280px) {
      .testimonial-wrapper1 .swiper-slide {
        max-width: 600px; } }
    @media only screen and (max-width: 991px) {
      .testimonial-wrapper1 .swiper-slide {
        max-width: 500px; } }
    @media only screen and (max-width: 767px) {
      .testimonial-wrapper1 .swiper-slide {
        max-width: 100%;
        padding: 0 15px; } }
    .testimonial-wrapper1 .swiper-slide.swiper-slide-active {
      opacity: 1; }
      .testimonial-wrapper1 .swiper-slide.swiper-slide-active .testimonial-1:after {
        background: var(--secondary);
        transform: scale(1.2); }
      .testimonial-wrapper1 .swiper-slide.swiper-slide-active .testimonial-1 .testimonial-details .testimonial-pic {
        transform: rotateY(180deg); }
      .testimonial-wrapper1 .swiper-slide.swiper-slide-active .testimonial-1 .testimonial-text {
        color: #fff; }
      .testimonial-wrapper1 .swiper-slide.swiper-slide-active .testimonial-1 .testimonial-name {
        color: var(--primary); }
      .testimonial-wrapper1 .swiper-slide.swiper-slide-active .testimonial-1 .testimonial-position {
        color: rgba(255, 255, 255, 0.7); }

.testimonial-swiper-1 .btn-next,
.testimonial-swiper-1 .btn-prev {
  position: absolute;
  top: 50%;
  left: 10%;
  color: var(--theme-text-color);
  transform: translateY(-50%) skewX(-12deg);
  /* 		&:hover {
			color: var(--primary);			
		} */ }
  @media only screen and (max-width: 991px) {
    .testimonial-swiper-1 .btn-next,
    .testimonial-swiper-1 .btn-prev {
      position: static; } }

.testimonial-swiper-1 .btn-next {
  right: 10%;
  left: auto; }

.testimonial-swiper-1:hover .btn-prev {
  left: 15%; }

.testimonial-swiper-1:hover .btn-next {
  right: 15%; }

.testimonial-swiper-2 {
  overflow: visible !important; }
  .testimonial-swiper-2 .btn-next,
  .testimonial-swiper-2 .btn-prev {
    position: absolute;
    top: 50%;
    left: -20%;
    color: #fff;
    transform: translateY(-50%) skewX(-12deg);
    /* 		&:hover {
			color: var(--primary);			
		} */ }
    @media only screen and (max-width: 991px) {
      .testimonial-swiper-2 .btn-next,
      .testimonial-swiper-2 .btn-prev {
        position: static; } }
  .testimonial-swiper-2 .btn-next {
    right: -20%;
    left: auto; }
  .testimonial-swiper-2:hover .btn-prev {
    left: -10%; }
  .testimonial-swiper-2:hover .btn-next {
    right: -10%; }

.section-head.style-2 h2, .section-head.style-2 .h2 {
  font-size: 2.8125rem; }
  .section-head.style-2 h2 span, .section-head.style-2 .h2 span {
    color: var(--primary); }
  @media only screen and (max-width: 1280px) {
    .section-head.style-2 h2, .section-head.style-2 .h2 {
      font-size: 2.25rem; } }
  @media only screen and (max-width: 767px) {
    .section-head.style-2 h2, .section-head.style-2 .h2 {
      font-size: 1.875rem; } }

.section-head.style-2 .sub-title {
  display: inline-flex;
  align-items: center; }
  .section-head.style-2 .sub-title:before, .section-head.style-2 .sub-title:after {
    content: "";
    height: 1px;
    width: 55px;
    background-color: #000;
    display: inline-block;
    margin-right: 10px; }
    @media only screen and (max-width: 575px) {
      .section-head.style-2 .sub-title:before, .section-head.style-2 .sub-title:after {
        width: 35px; } }
  .section-head.style-2 .sub-title:before {
    margin-right: 10px; }
  .section-head.style-2 .sub-title:after {
    content: none;
    margin-left: 10px; }
  .section-head.style-2 .sub-title.text-primary:before, .section-head.style-2 .sub-title.text-primary:after {
    background-color: var(--primary); }
  .section-head.style-2 .sub-title.text-secondary:before, .section-head.style-2 .sub-title.text-secondary:after {
    background-color: var(--secondary); }
  .section-head.style-2 .sub-title.text-white:before, .section-head.style-2 .sub-title.text-white:after {
    background-color: #fff; }

.section-head.style-2.text-end .sub-title:before {
  content: none; }

.section-head.style-2.text-end .sub-title:after {
  content: ""; }

.icon-bx-xl {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 150px;
  height: 150px;
  line-height: 150px; }
  .icon-bx-xl.radius {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%; }
  .icon-bx-xl i {
    font-size: 80px;
    vertical-align: middle; }
  .icon-bx-xl img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 80px; }

.icon-bx-lg {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 120px;
  height: 120px;
  line-height: 120px; }
  .icon-bx-lg.radius {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%; }
  .icon-bx-lg i {
    font-size: 60px;
    vertical-align: middle; }
  .icon-bx-lg img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 55px; }

.icon-bx-md {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 100px;
  height: 100px;
  line-height: 100px; }
  .icon-bx-md.radius {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%; }
  .icon-bx-md i {
    font-size: 45px;
    vertical-align: middle; }
  .icon-bx-md img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 40px; }

.icon-bx-sm {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 67px;
  height: 67px;
  min-width: 67px;
  line-height: 67px; }
  .icon-bx-sm.radius {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%; }
  .icon-bx-sm i {
    font-size: 35px;
    vertical-align: middle; }
  .icon-bx-sm img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 35px; }

.icon-bx-xs {
  display: inline-block;
  text-align: center;
  border-radius: 3px;
  width: 60px;
  height: 60px;
  line-height: 60px; }
  .icon-bx-xs.radius {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%; }
  .icon-bx-xs i {
    font-size: 30px;
    vertical-align: middle; }
  .icon-bx-xs img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 20px; }

.icon-xl {
  display: inline-block;
  text-align: center;
  width: 100px;
  line-height: 1; }
  .icon-xl i {
    vertical-align: middle;
    font-size: 80px; }
  .icon-xl img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 80px; }

.icon-lg {
  display: inline-block;
  text-align: center;
  line-height: 1; }
  .icon-lg i {
    vertical-align: middle;
    font-size: 60px; }
    @media only screen and (max-width: 767px) {
      .icon-lg i {
        font-size: 50px;
        line-height: 1.2; } }
  .icon-lg img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 70px; }

.icon-md {
  display: inline-block;
  text-align: center;
  line-height: 1; }
  .icon-md i {
    vertical-align: middle;
    font-size: 45px; }
  .icon-md img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 50px; }

.icon-sm {
  display: inline-block;
  text-align: center;
  width: 40px;
  line-height: 1; }
  .icon-sm i {
    vertical-align: middle;
    font-size: 30px; }
  .icon-sm img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 30px; }

.icon-xs {
  display: inline-block;
  text-align: center;
  width: 30px;
  line-height: 1; }
  .icon-xs i {
    vertical-align: middle;
    font-size: 20px; }
  .icon-xs img {
    vertical-align: middle;
    max-width: 100%;
    width: auto;
    height: 20px; }

.icon-bx-wraper {
  position: relative; }
  .icon-bx-wraper .dz-tilte {
    margin-top: 0;
    font-weight: 600; }
  .icon-bx-wraper .after-titile-line {
    margin-bottom: 10px; }
  .icon-bx-wraper p:last-child {
    margin: 0; }
  .icon-bx-wraper.center {
    text-align: center; }
  .icon-bx-wraper.left .icon-bx-xl,
  .icon-bx-wraper.left .icon-bx-lg,
  .icon-bx-wraper.left .icon-bx-md,
  .icon-bx-wraper.left .icon-bx-sm,
  .icon-bx-wraper.left .icon-bx-xs {
    float: left;
    margin-right: 15px; }
  .icon-bx-wraper.left .icon-xl,
  .icon-bx-wraper.left .icon-lg,
  .icon-bx-wraper.left .icon-md,
  .icon-bx-wraper.left .icon-sm,
  .icon-bx-wraper.left .icon-xs {
    line-height: 1;
    float: left;
    margin-right: 10px; }
  .icon-bx-wraper.right {
    text-align: right; }
    .icon-bx-wraper.right .icon-bx-xl,
    .icon-bx-wraper.right .icon-bx-lg,
    .icon-bx-wraper.right .icon-bx-md,
    .icon-bx-wraper.right .icon-bx-sm,
    .icon-bx-wraper.right .icon-bx-xs {
      float: right;
      margin-left: 20px; }
    .icon-bx-wraper.right .icon-xl,
    .icon-bx-wraper.right .icon-lg,
    .icon-bx-wraper.right .icon-md,
    .icon-bx-wraper.right .icon-sm,
    .icon-bx-wraper.right .icon-xs {
      line-height: 1;
      float: right;
      margin-left: 10px; }
  .icon-bx-wraper.bx-style-1, .icon-bx-wraper.bx-style-2 {
    border-width: 1px;
    border-style: solid;
    border-color: #ebedf2; }
  .icon-bx-wraper.bx-style-2.center [class*="icon-bx-"] {
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }
  .icon-bx-wraper.bx-style-2.center .icon-bx-xl {
    margin-left: -75px; }
  .icon-bx-wraper.bx-style-2.center .icon-bx-lg {
    margin-left: -60px; }
  .icon-bx-wraper.bx-style-2.center .icon-bx-md {
    margin-left: -50px; }
  .icon-bx-wraper.bx-style-2.center .icon-bx-sm {
    margin-left: -40px; }
  .icon-bx-wraper.bx-style-2.center .icon-bx-xs {
    margin-left: -20px; }
  .icon-bx-wraper.bx-style-2.left [class*="icon-bx-"] {
    position: absolute;
    top: auto;
    left: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }
  .icon-bx-wraper.bx-style-2.right [class*="icon-bx-"] {
    position: absolute;
    top: auto;
    right: 0;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%); }

.icon-content {
  overflow: hidden; }

[class*="icon-bx-"][class*="bg-"] a,
[class*="icon-bx-"][class*="bg-"] span {
  color: #fff; }

[class*="icon-bx-"].bg-white a {
  color: inherit; }

[class*="icon-bx-"][class*="border-"] {
  display: table;
  line-height: normal;
  margin-left: auto;
  margin-right: auto; }

[class*="icon-bx-"][class*="border-"] .icon-cell {
  display: table-cell;
  vertical-align: middle; }

.dz-box,
.dz-info,
.dz-tilte,
.dz-tilte-inner {
  position: relative; }

.dz-tilte-inner {
  display: inline-block; }

.dz-box[class*="border-"],
.dz-info[class*="border-"] {
  border-color: #eee; }

.dz-info.border-1,
.dz-info.border-2,
.dz-info.border-3,
.dz-info.border-4,
.dz-info.border-5 {
  border-top: none; }

.border-1,
.border-2,
.border-3,
.border-4,
.border-5 {
  border-style: solid; }

.border-1 {
  border-width: 1px; }

.border-2 {
  border-width: 2px; }

.border-3 {
  border-width: 3px; }

.border-4 {
  border-width: 4px; }

.border-5 {
  border-width: 5px; }

.left-border,
.right-border {
  position: relative; }
  .left-border:before,
  .right-border:before {
    content: "";
    position: absolute;
    top: 5px;
    width: 1px;
    height: 90%;
    background: #CCC; }

.right-border:before {
  right: 0; }

.dz-media,
.dz-post-media {
  position: relative;
  overflow: hidden; }
  .dz-media img,
  .dz-post-media img {
    width: 100%;
    height: auto; }

.dz-box-bg {
  overflow: hidden;
  background-size: cover; }
  .dz-box-bg .btn, .dz-box-bg .wp-block-button__link, .dz-box-bg .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .dz-box-bg .btn.sw-btn-prev, .dz-box-bg .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .dz-box-bg .btn.sw-btn-next, .dz-box-bg .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .dz-box-bg a,
  .dz-box-bg .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .dz-box-bg a, .dz-box-bg .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .dz-box-bg input, .dz-box-bg .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .dz-box-bg .button, .dz-box-bg .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .dz-box-bg a.checkout-button, .dz-box-bg .woocommerce #respond input#submit, .woocommerce #respond .dz-box-bg input#submit,
  .dz-box-bg .woocommerce a.button, .woocommerce .dz-box-bg a.button,
  .dz-box-bg .woocommerce button.button, .woocommerce .dz-box-bg button.button,
  .dz-box-bg .woocommerce input.button, .woocommerce .dz-box-bg input.button,
  .dz-box-bg .woocommerce #place_order, .woocommerce .dz-box-bg #place_order {
    overflow: unset; }
  .dz-box-bg .glyph-icon {
    font-size: 50px; }
  .dz-box-bg .icon-bx-wraper {
    background-color: #f8f8f8; }
  .dz-box-bg .text-primary,
  .dz-box-bg .icon-content .dz-tilte,
  .dz-box-bg .icon-content p,
  .dz-box-bg .icon-box-btn .btn,
  .dz-box-bg .icon-box-btn .wp-block-button__link,
  .dz-box-bg .icon-box-btn .appointment-page-1 .wizard-form .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form .dz-box-bg .icon-box-btn .btn.sw-btn-prev,
  .dz-box-bg .icon-box-btn .appointment-page-1 .wizard-form .btn.sw-btn-next,
  .appointment-page-1 .wizard-form .dz-box-bg .icon-box-btn .btn.sw-btn-next,
  .dz-box-bg .icon-box-btn .woocommerce .widget_shopping_cart .buttons a,
  .woocommerce .widget_shopping_cart .buttons .dz-box-bg .icon-box-btn a,
  .dz-box-bg .icon-box-btn .woocommerce.widget_shopping_cart .buttons a,
  .woocommerce.widget_shopping_cart .buttons .dz-box-bg .icon-box-btn a,
  .dz-box-bg .icon-box-btn .woocommerce #review_form #respond .form-submit input,
  .woocommerce #review_form #respond .form-submit .dz-box-bg .icon-box-btn input,
  .dz-box-bg .icon-box-btn .woocommerce-cart-form .table.shop_table tr .button,
  .woocommerce-cart-form .table.shop_table tr .dz-box-bg .icon-box-btn .button,
  .dz-box-bg .icon-box-btn .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
  .woocommerce-cart .wc-proceed-to-checkout .dz-box-bg .icon-box-btn a.checkout-button,
  .dz-box-bg .icon-box-btn .woocommerce #respond input#submit,
  .woocommerce #respond .dz-box-bg .icon-box-btn input#submit,
  .dz-box-bg .icon-box-btn .woocommerce a.button,
  .woocommerce .dz-box-bg .icon-box-btn a.button,
  .dz-box-bg .icon-box-btn .woocommerce button.button,
  .woocommerce .dz-box-bg .icon-box-btn button.button,
  .dz-box-bg .icon-box-btn .woocommerce input.button,
  .woocommerce .dz-box-bg .icon-box-btn input.button,
  .dz-box-bg .icon-box-btn .woocommerce #place_order,
  .woocommerce .dz-box-bg .icon-box-btn #place_order {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .dz-box-bg.active .icon-bx-wraper {
    background-color: rgba(0, 0, 0, 0.7); }
  .dz-box-bg.active .text-primary,
  .dz-box-bg.active .icon-content .dz-tilte,
  .dz-box-bg.active .icon-content p,
  .dz-box-bg.active .icon-box-btn .btn,
  .dz-box-bg.active .icon-box-btn .wp-block-button__link,
  .dz-box-bg.active .icon-box-btn .woocommerce .widget_shopping_cart .buttons a,
  .woocommerce .widget_shopping_cart .buttons .dz-box-bg.active .icon-box-btn a,
  .dz-box-bg.active .icon-box-btn .woocommerce.widget_shopping_cart .buttons a,
  .woocommerce.widget_shopping_cart .buttons .dz-box-bg.active .icon-box-btn a,
  .dz-box-bg.active .icon-box-btn .woocommerce #review_form #respond .form-submit input,
  .woocommerce #review_form #respond .form-submit .dz-box-bg.active .icon-box-btn input,
  .dz-box-bg.active .icon-box-btn .woocommerce-cart-form .table.shop_table tr .button,
  .woocommerce-cart-form .table.shop_table tr .dz-box-bg.active .icon-box-btn .button,
  .dz-box-bg.active .icon-box-btn .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
  .woocommerce-cart .wc-proceed-to-checkout .dz-box-bg.active .icon-box-btn a.checkout-button,
  .dz-box-bg.active .icon-box-btn .woocommerce #respond input#submit,
  .woocommerce #respond .dz-box-bg.active .icon-box-btn input#submit,
  .dz-box-bg.active .icon-box-btn .woocommerce a.button,
  .woocommerce .dz-box-bg.active .icon-box-btn a.button,
  .dz-box-bg.active .icon-box-btn .woocommerce button.button,
  .woocommerce .dz-box-bg.active .icon-box-btn button.button,
  .dz-box-bg.active .icon-box-btn .woocommerce input.button,
  .woocommerce .dz-box-bg.active .icon-box-btn input.button,
  .dz-box-bg.active .icon-box-btn .woocommerce #place_order,
  .woocommerce .dz-box-bg.active .icon-box-btn #place_order {
    color: #fff;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  
  .dz-box-bg .icon-box-btn .btn,
  .dz-box-bg .icon-box-btn .wp-block-button__link,
  .dz-box-bg .icon-box-btn .appointment-page-1 .wizard-form .btn.sw-btn-prev,
  .appointment-page-1 .wizard-form .dz-box-bg .icon-box-btn .btn.sw-btn-prev,
  .dz-box-bg .icon-box-btn .appointment-page-1 .wizard-form .btn.sw-btn-next,
  .appointment-page-1 .wizard-form .dz-box-bg .icon-box-btn .btn.sw-btn-next,
  .dz-box-bg .icon-box-btn .woocommerce .widget_shopping_cart .buttons a,
  .woocommerce .widget_shopping_cart .buttons .dz-box-bg .icon-box-btn a,
  .dz-box-bg .icon-box-btn .woocommerce.widget_shopping_cart .buttons a,
  .woocommerce.widget_shopping_cart .buttons .dz-box-bg .icon-box-btn a,
  .dz-box-bg .icon-box-btn .woocommerce #review_form #respond .form-submit input,
  .woocommerce #review_form #respond .form-submit .dz-box-bg .icon-box-btn input,
  .dz-box-bg .icon-box-btn .woocommerce-cart-form .table.shop_table tr .button,
  .woocommerce-cart-form .table.shop_table tr .dz-box-bg .icon-box-btn .button,
  .dz-box-bg .icon-box-btn .woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
  .woocommerce-cart .wc-proceed-to-checkout .dz-box-bg .icon-box-btn a.checkout-button,
  .dz-box-bg .icon-box-btn .woocommerce #respond input#submit,
  .woocommerce #respond .dz-box-bg .icon-box-btn input#submit,
  .dz-box-bg .icon-box-btn .woocommerce a.button,
  .woocommerce .dz-box-bg .icon-box-btn a.button,
  .dz-box-bg .icon-box-btn .woocommerce button.button,
  .woocommerce .dz-box-bg .icon-box-btn button.button,
  .dz-box-bg .icon-box-btn .woocommerce input.button,
  .woocommerce .dz-box-bg .icon-box-btn input.button,
  .dz-box-bg .icon-box-btn .woocommerce #place_order,
  .woocommerce .dz-box-bg .icon-box-btn #place_order {
    background-color: #eeeeee;
    padding: 15px 20px;
    text-transform: uppercase;
    font-size: 15px;
    border-radius: 0;
    color: #1abc9c;
    font-weight: 600;
    margin-bottom: 0; }

.icon-bx-wraper.style-1 {
  padding: 30px;
  background-color: var(--secondary);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%; }
  .icon-bx-wraper.style-1 .icon-bx {
    display: flex; }
  .icon-bx-wraper.style-1 .icon-cell {
    display: inline-block; }
    .icon-bx-wraper.style-1 .icon-cell i {
      font-size: 60px;
      line-height: 1;
      display: flex;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
    .icon-bx-wraper.style-1 .icon-cell img {
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
  .icon-bx-wraper.style-1 .icon-content {
    overflow: visible; }
  .icon-bx-wraper.style-1 .effect {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-radius: 50%;
    transition: width .4s ease-in-out,height .4s ease-in-out;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: -1;
    background: var(--primary); }
  .icon-bx-wraper.style-1 .dz-title,
  .icon-bx-wraper.style-1 .dz-title a {
    color: #fff;
    font-weight: 700;
    font-size: 28px; }
    @media only screen and (max-width: 991px) {
      .icon-bx-wraper.style-1 .dz-title,
      .icon-bx-wraper.style-1 .dz-title a {
        font-size: 24px; } }
  .icon-bx-wraper.style-1 p {
    font-size: 15px;
    color: #E0E0E0;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 15px; }
  .icon-bx-wraper.style-1 .btn-link {
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: auto; }
  .icon-bx-wraper.style-1:hover, .icon-bx-wraper.style-1.active {
    color: var(--theme-text-color);
    transform: translateY(-10px); }
    .icon-bx-wraper.style-1:hover p,
    .icon-bx-wraper.style-1:hover .dz-title,
    .icon-bx-wraper.style-1:hover .dz-title a,
    .icon-bx-wraper.style-1:hover .btn-link, .icon-bx-wraper.style-1.active p,
    .icon-bx-wraper.style-1.active .dz-title,
    .icon-bx-wraper.style-1.active .dz-title a,
    .icon-bx-wraper.style-1.active .btn-link {
      color: var(--theme-text-color); }
    .icon-bx-wraper.style-1:hover .icon-cell, .icon-bx-wraper.style-1.active .icon-cell {
      display: inline-block;
      animation: move-lr 1.2s linear; }
      .icon-bx-wraper.style-1:hover .icon-cell i, .icon-bx-wraper.style-1.active .icon-cell i {
        color: var(--theme-text-color); }
      .icon-bx-wraper.style-1:hover .icon-cell img, .icon-bx-wraper.style-1.active .icon-cell img {
        filter: brightness(0); }
    .icon-bx-wraper.style-1:hover .btn, .icon-bx-wraper.style-1:hover .wp-block-button__link, .icon-bx-wraper.style-1:hover .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .icon-bx-wraper.style-1:hover a,
    .icon-bx-wraper.style-1:hover .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .icon-bx-wraper.style-1:hover a, .icon-bx-wraper.style-1:hover .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .icon-bx-wraper.style-1:hover input, .icon-bx-wraper.style-1:hover .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .icon-bx-wraper.style-1:hover .button, .icon-bx-wraper.style-1:hover .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .icon-bx-wraper.style-1:hover a.checkout-button, .icon-bx-wraper.style-1:hover .woocommerce #respond input#submit, .woocommerce #respond .icon-bx-wraper.style-1:hover input#submit,
    .icon-bx-wraper.style-1:hover .woocommerce a.button, .woocommerce .icon-bx-wraper.style-1:hover a.button,
    .icon-bx-wraper.style-1:hover .woocommerce button.button, .woocommerce .icon-bx-wraper.style-1:hover button.button,
    .icon-bx-wraper.style-1:hover .woocommerce input.button, .woocommerce .icon-bx-wraper.style-1:hover input.button,
    .icon-bx-wraper.style-1:hover .woocommerce #place_order, .woocommerce .icon-bx-wraper.style-1:hover #place_order, .icon-bx-wraper.style-1.active .btn, .icon-bx-wraper.style-1.active .wp-block-button__link, .icon-bx-wraper.style-1.active .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .icon-bx-wraper.style-1.active a,
    .icon-bx-wraper.style-1.active .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .icon-bx-wraper.style-1.active a, .icon-bx-wraper.style-1.active .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .icon-bx-wraper.style-1.active input, .icon-bx-wraper.style-1.active .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .icon-bx-wraper.style-1.active .button, .icon-bx-wraper.style-1.active .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .icon-bx-wraper.style-1.active a.checkout-button, .icon-bx-wraper.style-1.active .woocommerce #respond input#submit, .woocommerce #respond .icon-bx-wraper.style-1.active input#submit,
    .icon-bx-wraper.style-1.active .woocommerce a.button, .woocommerce .icon-bx-wraper.style-1.active a.button,
    .icon-bx-wraper.style-1.active .woocommerce button.button, .woocommerce .icon-bx-wraper.style-1.active button.button,
    .icon-bx-wraper.style-1.active .woocommerce input.button, .woocommerce .icon-bx-wraper.style-1.active input.button,
    .icon-bx-wraper.style-1.active .woocommerce #place_order, .woocommerce .icon-bx-wraper.style-1.active #place_order {
      background-color: #fff;
      color: #000; }
    .icon-bx-wraper.style-1:hover .effect, .icon-bx-wraper.style-1.active .effect {
      width: 300%;
      height: 300%; }
  @media only screen and (max-width: 991px) {
    .icon-bx-wraper.style-1 .icon-bx img {
      width: auto; } }
  @media only screen and (max-width: 767px) {
    .icon-bx-wraper.style-1 {
      padding: 25px; } }

.icon-bx-wraper.style-2 {
  padding: 30px;
  background-color: var(--secondary);
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
  z-index: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  clip-path: polygon(0 0, 87% 0, 100% 14%, 100% 80%, 100% 100%, 0 100%, 0% 80%, 0% 20%);
  height: 100%; }
  .icon-bx-wraper.style-2 .icon-bx {
    display: flex;
    align-items: center; }
  .icon-bx-wraper.style-2 .icon-cell {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--primary); }
    .icon-bx-wraper.style-2 .icon-cell i {
      font-size: 50px;
      line-height: 1;
      display: flex;
      transition: all 0.5s;
      justify-content: center;
      align-items: center;
      height: 100%;
      color: var(--secondary);
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
    .icon-bx-wraper.style-2 .icon-cell img {
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
  .icon-bx-wraper.style-2 .icon-content {
    overflow: visible; }
  .icon-bx-wraper.style-2:after {
    content: "";
    position: absolute;
    display: inline-block;
    background-color: var(--primary);
    width: 0%;
    height: 100%;
    top: 0;
    z-index: -1;
    right: 0%;
    transform-origin: right center;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .icon-bx-wraper.style-2 .dz-title,
  .icon-bx-wraper.style-2 .dz-title a {
    color: #fff;
    font-weight: 700; }
    @media only screen and (max-width: 991px) {
      .icon-bx-wraper.style-2 .dz-title,
      .icon-bx-wraper.style-2 .dz-title a {
        font-size: 24px; } }
  .icon-bx-wraper.style-2 .dz-title {
    margin-left: 20px; }
  .icon-bx-wraper.style-2 p {
    font-size: 15px;
    color: #fff;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 15px; }
  .icon-bx-wraper.style-2 .btn-link {
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: auto; }
  @media only screen and (max-width: 991px) {
    .icon-bx-wraper.style-2 .icon-bx img {
      width: 50px; } }
  @media only screen and (max-width: 575px) {
    .icon-bx-wraper.style-2 {
      padding: 25px; }
      .icon-bx-wraper.style-2 .icon-bx img {
        width: 45px; } }

.icon-bx-wraper.style-3 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  color: var(--title);
  z-index: 1;
  position: relative;
  display: flex;
  clip-path: polygon(0 0, 80% 0%, 100% 20%, 100% 80%, 100% 100%, 20% 100%, 0 100%, 0% 20%);
  height: 100%; }
  .icon-bx-wraper.style-3 .icon-cell {
    display: inline-block;
    width: 70px;
    height: 70px;
    background: var(--primary); }
    .icon-bx-wraper.style-3 .icon-cell i {
      font-size: 40px;
      line-height: 1;
      display: flex;
      transition: all 0.5s;
      justify-content: center;
      align-items: center;
      height: 100%;
      color: var(--secondary);
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
    .icon-bx-wraper.style-3 .icon-cell img {
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
  .icon-bx-wraper.style-3 .icon-content {
    overflow: visible;
    padding-left: 20px; }
  .icon-bx-wraper.style-3:after {
    content: "";
    position: absolute;
    display: inline-block;
    background-color: var(--primary);
    width: 0%;
    height: 100%;
    top: 0;
    z-index: -1;
    right: 0%;
    transform-origin: right center;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .icon-bx-wraper.style-3 .dz-title,
  .icon-bx-wraper.style-3 .dz-title a {
    color: var(--title);
    font-weight: 700;
    font-size: 24px; }
    @media only screen and (max-width: 991px) {
      .icon-bx-wraper.style-3 .dz-title,
      .icon-bx-wraper.style-3 .dz-title a {
        font-size: 24px; } }
  .icon-bx-wraper.style-3 .dz-title {
    margin-bottom: 10px; }
  .icon-bx-wraper.style-3 p {
    font-size: 14px;
    color: var(--bs-body-color);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 15px; }
  .icon-bx-wraper.style-3 .btn-link {
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: auto; }
  @media only screen and (max-width: 991px) {
    .icon-bx-wraper.style-3 .icon-bx img {
      width: 50px; } }
  @media only screen and (max-width: 575px) {
    .icon-bx-wraper.style-3 {
      padding: 25px; }
      .icon-bx-wraper.style-3 .icon-bx img {
        width: 45px; } }
  .icon-bx-wraper.style-3:hover .icon-cell {
    display: inline-block; }
    .icon-bx-wraper.style-3:hover .icon-cell i {
      color: var(--theme-text-color);
      animation: move-lr 1.2s linear; }

.icon-bx-wraper.style-4 {
  padding: 40px;
  border: 3px solid transparent;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  color: #fff;
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  background: transparent;
  height: 100%;
  clip-path: polygon(12% 0, 100% 0, 100% 13%, 100% 88%, 89% 100%, 13% 100%, 0 100%, 0 13%); }
  .icon-bx-wraper.style-4:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary);
    clip-path: polygon(12% 0, 100% 0, 100% 13%, 100% 88%, 89% 100%, 13% 100%, 0 100%, 0 13%);
    z-index: -1; }
  .icon-bx-wraper.style-4.shap-2 {
    clip-path: polygon(0 0, 89% 0, 100% 13%, 100% 100%, 80% 100%, 13% 100%, 0 88%, 0% 20%); }
    .icon-bx-wraper.style-4.shap-2:before {
      clip-path: polygon(0 0, 89% 0, 100% 13%, 100% 100%, 80% 100%, 13% 100%, 0 88%, 0% 20%); }
  .icon-bx-wraper.style-4:hover, .icon-bx-wraper.style-4.active {
    background: var(--primary); }
  .icon-bx-wraper.style-4 .icon-bx {
    display: flex; }
  .icon-bx-wraper.style-4 .icon-cell {
    display: inline-block; }
    .icon-bx-wraper.style-4 .icon-cell i {
      font-size: 60px;
      line-height: 1;
      display: flex;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
    .icon-bx-wraper.style-4 .icon-cell img {
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
  .icon-bx-wraper.style-4 .icon-content {
    overflow: visible; }
  .icon-bx-wraper.style-4 .dz-title,
  .icon-bx-wraper.style-4 .dz-title a {
    color: #fff;
    font-weight: 700;
    font-size: 28px;
    letter-spacing: 2.8px;
    text-transform: uppercase; }
    @media only screen and (max-width: 991px) {
      .icon-bx-wraper.style-4 .dz-title,
      .icon-bx-wraper.style-4 .dz-title a {
        font-size: 24px; } }
  .icon-bx-wraper.style-4 p {
    font-size: 15px;
    color: #E0E0E0;
    font-weight: 400;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin-bottom: 15px;
    text-transform: capitalize; }
  .icon-bx-wraper.style-4 .btn-link {
    color: var(--primary);
    letter-spacing: 2px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: var(--font-family-title);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin-top: auto; }

.icon-bx-wraper.pad-t {
  margin-top: 100px; }
  @media only screen and (max-width: 1280px) {
    .icon-bx-wraper.pad-t {
      margin-top: 0; } }

.pad-m {
  margin-top: -86px; }
  @media only screen and (max-width: 1280px) {
    .pad-m {
      margin-top: 0; } }

@keyframes toTopFromBottom {
  49% {
    transform: translateY(-100%); }
  50% {
    opacity: 0;
    transform: translateY(100%); }
  51% {
    opacity: 1; } }

@keyframes left-right {
  20% {
    transform: translateX(-5px) rotate(-5deg); }
  40% {
    transform: translateX(5px) rotate(5deg); }
  60% {
    transform: translateX(-5px) rotate(-5deg); }
  80% {
    transform: translateX(5px) rotate(5deg); }
  100% {
    transform: translateX(-5px) rotate(-5deg); } }

.dz-team {
  transition: all 0.5s; }
  .dz-team .dz-name a {
    transition: all 0.5s; }
  .dz-team .dz-content {
    transition: all 0.5s;
    position: relative; }
  .dz-team .dz-media img {
    width: 100%; }
  .dz-team .dz-position {
    display: block; }

.dz-team.style-1 {
  position: relative;
  margin-bottom: 100px; }
  .dz-team.style-1 .dz-media {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .dz-team.style-1 .dz-media img {
      padding-bottom: 20px;
      height: 100%;
      object-fit: cover;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
      @media only screen and (max-width: 1199px) {
        .dz-team.style-1 .dz-media img {
          padding-bottom: 10px; } }
      @media only screen and (max-width: 991px) {
        .dz-team.style-1 .dz-media img {
          padding-bottom: 0px; } }
    .dz-team.style-1 .dz-media .overlay-content {
      position: absolute; }
    .dz-team.style-1 .dz-media:after {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 5px;
      height: 100%;
      background: transparent;
      transition: 0.5s; }
  .dz-team.style-1 .team-social {
    position: absolute;
    right: 0;
    top: 25px;
    z-index: 3; }
    .dz-team.style-1 .team-social li {
      position: relative; }
      .dz-team.style-1 .team-social li a {
        font-size: 16px;
        width: 100%;
        height: 100%;
        transform: skewY(12deg);
        display: inline-block;
        color: var(--title);
        opacity: 0;
        margin-bottom: 5px;
        background-color: var(--primary);
        height: 45px;
        line-height: 45px;
        width: 45px;
        text-align: center;
        transform: translateX(50px) skewY(-12deg); }
        .dz-team.style-1 .team-social li a:nth-child(1) {
          transition: 0.2s; }
        .dz-team.style-1 .team-social li a:nth-child(2) {
          transition: 0.4s; }
        .dz-team.style-1 .team-social li a:nth-child(3) {
          transition: 0.6s; }
  .dz-team.style-1 .dz-position {
    margin-bottom: 0;
    font-size: 21px;
    font-weight: 500;
    padding: 12px 0;
    padding-right: 25px;
    text-align: end;
    width: 75%;
    position: absolute;
    bottom: -60px;
    right: 0px;
    text-transform: uppercase;
    z-index: 2;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    color: white !important;
    background-color: var(--secondary); }
    @media only screen and (max-width: 1199px) {
      .dz-team.style-1 .dz-position {
        font-size: 16px;
        padding: 8px 25px;
        bottom: -50px; } }
    @media only screen and (max-width: 767px) {
      .dz-team.style-1 .dz-position {
        padding-right: 18px;
        padding-left: 0; } }
  .dz-team.style-1 .dz-name {
    text-transform: uppercase;
    background-color: var(--primary);
    margin-bottom: 0px;
    padding: 25px 25px 25px 0;
    text-align: right;
    width: 100%;
    font-size: 40px;
    font-weight: 900;
    position: absolute;
    letter-spacing: 4.4px;
    bottom: -15px;
    right: 0px;
    z-index: 1; }
    @media only screen and (max-width: 1480px) {
      .dz-team.style-1 .dz-name {
        font-size: 32px; } }
    @media only screen and (max-width: 1199px) {
      .dz-team.style-1 .dz-name {
        font-size: 28px;
        padding: 17px 25px;
        padding-left: 0;
        font-weight: 600; } }
    @media only screen and (max-width: 767px) {
      .dz-team.style-1 .dz-name {
        padding-right: 18px;
        padding-left: 0; } }
  .dz-team.style-1 .dz-content {
    position: absolute;
    width: 100%;
    transform: skewY(-17deg); }
  .dz-team.style-1:hover .team-social li a, .dz-team.style-1.active .team-social li a {
    transform: translateY(0px) skewY(-12deg);
    opacity: 1; }
  .dz-team.style-1:hover .dz-media img, .dz-team.style-1.active .dz-media img {
    transform: scale(1.1); }
  .dz-team.style-1:hover .dz-media:after, .dz-team.style-1.active .dz-media:after {
    background: var(--primary); }

.dz-team.style-2 {
  position: relative;
  margin-bottom: 100px; }
  .dz-team.style-2 .dz-media {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .dz-team.style-2 .dz-media img {
      height: 100%;
      object-fit: cover; }
      @media only screen and (max-width: 1199px) {
        .dz-team.style-2 .dz-media img {
          padding-bottom: 10px; } }
      @media only screen and (max-width: 991px) {
        .dz-team.style-2 .dz-media img {
          padding-bottom: 0px; } }
    .dz-team.style-2 .dz-media .overlay-content {
      position: absolute; }
  .dz-team.style-2 .team-social {
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 3; }
    .dz-team.style-2 .team-social li {
      position: relative; }
      .dz-team.style-2 .team-social li a {
        font-size: 16px;
        display: inline-block;
        color: var(--primary);
        background: #fff;
        height: 35px;
        line-height: 35px;
        width: 35px;
        opacity: 0;
        margin-bottom: 5px;
        text-align: center;
        transform: translateX(50px); }
        .dz-team.style-2 .team-social li a:nth-child(1) {
          transition: 0.2s; }
        .dz-team.style-2 .team-social li a:nth-child(2) {
          transition: 0.4s; }
        .dz-team.style-2 .team-social li a:nth-child(3) {
          transition: 0.6s; }
  .dz-team.style-2 .dz-position {
    font-size: 16px;
    font-weight: 500;
    color: #fff; }
  .dz-team.style-2 .dz-name {
    font-size: 30px;
    font-weight: 500;
    color: #fff; }
  .dz-team.style-2 .dz-content {
    position: absolute;
    width: 100%;
    background: var(--primary);
    padding: 15px;
    text-align: center; }
  .dz-team.style-2:hover .team-social li a, .dz-team.style-2.active .team-social li a {
    transform: translateY(0px);
    opacity: 1; }

.dz-team.style-3 {
  position: relative;
  overflow: hidden; }
  .dz-team.style-3 .dz-media {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    margin: 0; }
    .dz-team.style-3 .dz-media img {
      height: 100%;
      object-fit: cover; }
      @media only screen and (max-width: 1199px) {
        .dz-team.style-3 .dz-media img {
          padding-bottom: 10px; } }
      @media only screen and (max-width: 991px) {
        .dz-team.style-3 .dz-media img {
          padding-bottom: 0px; } }
    .dz-team.style-3 .dz-media .overlay-content {
      position: absolute; }
  .dz-team.style-3 .team-social {
    position: absolute;
    left: 0px;
    top: 20px;
    z-index: 3;
    display: flex;
    gap: 8px; }
    .dz-team.style-3 .team-social li {
      position: relative; }
      .dz-team.style-3 .team-social li a {
        font-size: 16px;
        display: inline-block;
        color: var(--title);
        background: #fff;
        height: 35px;
        line-height: 35px;
        width: 35px;
        opacity: 0;
        margin-bottom: 5px;
        text-align: center;
        transform: translateX(-50px); }
        .dz-team.style-3 .team-social li a:nth-child(1) {
          transition: 0.2s; }
        .dz-team.style-3 .team-social li a:nth-child(2) {
          transition: 0.4s; }
        .dz-team.style-3 .team-social li a:nth-child(3) {
          transition: 0.6s; }
  .dz-team.style-3 .dz-position {
    font-size: 13px;
    font-weight: 500;
    color: var(--bs-body-color); }
  .dz-team.style-3 .dz-name {
    font-size: 30px;
    font-weight: 700;
    color: var(--title);
    margin-bottom: 0;
    font-style: italic; }
  .dz-team.style-3 .dz-content {
    position: absolute;
    width: fit-content;
    background: var(--primary);
    padding: 15px;
    bottom: 5%; }
    .dz-team.style-3 .dz-content:after {
      content: '';
      position: absolute;
      right: -9px;
      top: 0;
      width: 20px;
      height: 100%;
      background: var(--primary);
      transform: skew(-10deg, 1deg);
      z-index: 0; }
  .dz-team.style-3:hover .team-social li a, .dz-team.style-3.active .team-social li a {
    transform: translateY(0px);
    opacity: 1; }

.dz-team.style-4 {
  position: relative;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  @media only screen and (max-width: 991px) {
    .dz-team.style-4 {
      margin-bottom: 40px; } }
  .dz-team.style-4 .dz-media {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    max-height: 270px;
    z-index: 1; }
    .dz-team.style-4 .dz-media:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--secondary);
      mix-blend-mode: lighten;
      z-index: 0; }
    .dz-team.style-4 .dz-media img {
      height: 100%;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      object-fit: cover; }
      @media only screen and (max-width: 1199px) {
        .dz-team.style-4 .dz-media img {
          padding-bottom: 10px; } }
      @media only screen and (max-width: 991px) {
        .dz-team.style-4 .dz-media img {
          padding-bottom: 0px; } }
    .dz-team.style-4 .dz-media .overlay-content {
      position: absolute; }
  .dz-team.style-4 .dz-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--title);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: var(--primary);
    width: fit-content;
    padding: 5px 10px;
    font-family: var(--font-family-title);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    transform: translate(-100%, 0%);
    margin: 0; }
  .dz-team.style-4 .dz-position {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: var(--secondary);
    width: fit-content;
    padding: 10px;
    font-family: var(--font-family-title);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    transform: translate(0%, 130%);
    margin-bottom: 0; }
  .dz-team.style-4 .dz-content {
    position: absolute;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
    bottom: -40px;
    z-index: 99; }
  .dz-team.style-4:hover .dz-content .dz-position, .dz-team.style-4.active .dz-content .dz-position {
    transform: translate(0%, 0%); }
  .dz-team.style-4:hover .dz-content .dz-name, .dz-team.style-4.active .dz-content .dz-name {
    transform: translate(0%, 0%); }
  .dz-team.style-4:hover .dz-media img, .dz-team.style-4.active .dz-media img {
    transform: scale(1.1); }

.team-slider .dz-team {
  margin-bottom: 90px; }
  @media only screen and (max-width: 767px) {
    .team-slider .dz-team {
      margin-bottom: 70px; } }
  @media only screen and (max-width: 575px) {
    .team-slider .dz-team {
      margin-bottom: 80px;
      margin-left: 15px;
      margin-right: 15px; } }

.team-slider-wrapper .btn-next,
.team-slider-wrapper .btn-prev {
  position: absolute;
  top: 50%;
  left: 8%;
  color: #fff; }

.team-slider-wrapper .btn-next {
  right: 8%;
  left: auto; }

.team-slider-wrapper .num-pagination {
  margin-top: 50px; }
  @media only screen and (max-width: 767px) {
    .team-slider-wrapper .num-pagination {
      margin-top: 30px; } }
  @media only screen and (max-width: 575px) {
    .team-slider-wrapper .num-pagination {
      margin-top: 20px; } }

.team-slider-wrapper:hover .btn-prev {
  left: 12%; }

.team-slider-wrapper:hover .btn-next {
  right: 12%; }

@media only screen and (max-width: 1680px) {
  .team-slider-wrapper .btn-prev {
    left: 50px; }
  .team-slider-wrapper .btn-next {
    right: 50px; }
  .team-slider-wrapper:hover .btn-prev {
    left: 100px; }
  .team-slider-wrapper:hover .btn-next {
    right: 100px; } }

@media only screen and (max-width: 1480px) {
  .team-slider-wrapper .btn-prev {
    left: 50px; }
  .team-slider-wrapper .btn-next {
    right: 50px; }
  .team-slider-wrapper:hover .btn-prev {
    left: 50px; }
  .team-slider-wrapper:hover .btn-next {
    right: 50px; } }

.team-slider-wrapper .team-slider-pagination.style-2 {
  position: unset;
  justify-content: center; }

.dz-card {
  position: relative;
  background-color: #fff; }
  .dz-card .dz-info {
    padding: 30px;
    position: relative; }
  .dz-card .dz-title {
    margin-bottom: 15px;
    word-break: break-word; }
    @media only screen and (max-width: 575px) {
      .dz-card .dz-title {
        margin-bottom: 15px; } }
  .dz-card.blog-half {
    display: flex; }
    @media only screen and (max-width: 575px) {
      .dz-card.blog-half {
        display: block; } }
    .dz-card.blog-half .dz-info {
      padding: 30px;
      position: relative;
      flex: 1; }
    .dz-card.blog-half .dz-media {
      margin-bottom: 0;
      max-width: 250px;
      min-width: 250px; }
      .dz-card.blog-half .dz-media a {
        display: block;
        height: 100%; }
      .dz-card.blog-half .dz-media img {
        height: 100%;
        object-fit: cover;
        min-height: 215px; }
        @media only screen and (max-width: 575px) {
          .dz-card.blog-half .dz-media img {
            min-height: auto; } }
    .dz-card.blog-half.post-video .post-video-icon {
      width: 60px;
      height: 60px;
      font-size: 20px; }
    .dz-card.blog-half .swiper {
      height: 100%; }

.dz-media.height-sm {
  height: 220px; }
  .dz-media.height-sm img {
    height: 100%;
    object-fit: cover; }

.dz-media.height-md {
  height: 265px; }
  .dz-media.height-md img {
    height: 100%;
    object-fit: cover; }
  @media only screen and (max-width: 1199px) {
    .dz-media.height-md {
      height: 220px; } }
  @media only screen and (max-width: 767px) {
    .dz-media.height-md {
      height: 200px; } }
  .dz-media.height-md .post-swiper {
    height: 100%; }

.dz-media.height-lg {
  height: 350px; }
  @media only screen and (max-width: 1199px) {
    .dz-media.height-lg {
      height: 300px; } }
  @media only screen and (max-width: 767px) {
    .dz-media.height-lg {
      height: 220px; }
      .dz-media.height-lg img {
        height: 100%;
        object-fit: cover; } }

.dz-meta {
  margin-bottom: 8px; }
  .dz-meta ul {
    margin: 0;
    padding: 0; }
    .dz-meta ul li {
      display: inline-block;
      position: relative;
      font-size: 14px;
      font-weight: 500;
      margin-right: 15px;
      color: #666666; }
      .dz-meta ul li i {
        font-size: 16px;
        margin-right: 2px;
        color: var(--primary);
        position: relative;
        top: 1px; }
      .dz-meta ul li a {
        color: inherit; }
      @media only screen and (max-width: 575px) {
        .dz-meta ul li {
          margin-right: 10px; } }

.dz-badge {
  background-color: var(--primary);
  color: #fff;
  border-radius: 3px;
  padding: 6px 15px;
  font-size: 15px; }
  .dz-badge:hover {
    color: white; }

.post-video .post-video-icon {
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100px;
  position: absolute;
  top: 50%;
  left: 50%;
  color: var(--primary);
  font-size: 30px;
  margin: 0 auto;
  background-color: #fff;
  transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transition: all 1s;
  -ms-transition: all 1s;
  transition: all 1s;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.5);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5px; }
  @media only screen and (max-width: 575px) {
    .post-video .post-video-icon {
      height: 50px;
      width: 50px;
      line-height: 50px;
      font-size: 14px; } }
  .post-video .post-video-icon:before, .post-video .post-video-icon:after {
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    border: 1px solid #fff;
    z-index: -1;
    transform: scale(1);
    -moz-transform: scale(1);
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    -moz-transition: all 0.5;
    -o-transition: all 0.5;
    -webkit-transition: all 0.5;
    -ms-transition: all 0.5;
    transition: all 0.5;
    animation-duration: 3s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-duration: 3s; }
  .post-video .post-video-icon:before {
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    animation: animationSignal1;
    animation-iteration-count: infinite;
    -webkit-animation: animationSignal1; }
  .post-video .post-video-icon:after {
    -webkit-border-radius: 100%;
    -khtml-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    animation: animationSignal2;
    animation-iteration-count: infinite;
    -webkit-animation: animationSignal2; }

.dz-card.blog-half.sticky {
  position: relative;
  border: 0.375rem solid var(--primary);
  overflow: hidden; }
  .dz-card.blog-half.sticky .sticky-icon {
    background: var(--primary);
    width: 3.125rem;
    height: 3.125rem;
    position: absolute;
    transform: rotate(45deg);
    top: -1.563rem;
    right: -1.563rem;
    z-index: 1;
    color: #fff; }
    .dz-card.blog-half.sticky .sticky-icon i {
      position: absolute;
      bottom: 0.1875rem;
      right: 1.125rem;
      transform: rotate(5deg);
      color: #fff;
      font-size: 1rem; }

.type-post.sticky,
.type-post.tag-sticky-2.post {
  position: relative;
  border: 0.375rem solid var(--secondary);
  overflow: hidden; }
  .type-post.sticky .dz-card,
  .type-post.tag-sticky-2.post .dz-card {
    margin-bottom: 0; }
  .type-post.sticky .dz-info,
  .type-post.tag-sticky-2.post .dz-info {
    border: 0; }
  .type-post.sticky .sticky-icon,
  .type-post.tag-sticky-2.post .sticky-icon {
    background: var(--secondary);
    width: 3.125rem;
    height: 3.125rem;
    position: absolute;
    transform: rotate(45deg);
    top: -1.563rem;
    right: -1.563rem;
    z-index: 1;
    color: #fff; }
    .type-post.sticky .sticky-icon i,
    .type-post.tag-sticky-2.post .sticky-icon i {
      position: absolute;
      bottom: 0.1875rem;
      right: 1.125rem;
      transform: rotate(5deg);
      color: #fff;
      font-size: 1rem; }

.dz-card {
  position: relative; }
  .dz-card.style-1 {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    background-color: #fff; }
    .dz-card.style-1 .dz-meta ul li.dz-date {
      padding: 15px 10px;
      background-color: var(--secondary);
      position: absolute;
      left: 0;
      top: 0;
      margin: 0;
      text-align: center;
      margin-bottom: 10px;
      color: #fff;
      font-family: var(--font-family-title);
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 1.6px;
      text-transform: uppercase;
      display: block;
      min-width: 60px;
      width: 60px;
      z-index: 1; }
      .dz-card.style-1 .dz-meta ul li.dz-date span {
        text-align: center;
        font-family: var(--font-family-title);
        font-size: 40px;
        font-weight: 700;
        letter-spacing: 4px;
        text-transform: uppercase;
        color: var(--primary);
        line-height: 1; }
    .dz-card.style-1 .dz-meta ul li.dz-time {
      padding: 5px 7px;
      background-color: var(--primary);
      font-size: 13px;
      font-weight: 500;
      text-transform: capitalize;
      line-height: 1; }
      .dz-card.style-1 .dz-meta ul li.dz-time a {
        color: var(--secondary); }
        .dz-card.style-1 .dz-meta ul li.dz-time a i {
          color: var(--secondary); }
    .dz-card.style-1 .dz-meta ul li:after {
      display: none; }
    .dz-card.style-1 .dz-media {
      height: 280px; }
      .dz-card.style-1 .dz-media img {
        object-fit: cover;
        height: 100%; }
    .dz-card.style-1 .dz-info {
      position: static;
      border: 1px solid rgba(0, 0, 0, 0.1);
      padding: 25px; }
      .dz-card.style-1 .dz-info .dz-title {
        text-transform: capitalize;
        font-weight: 700;
        margin-bottom: 7px;
        letter-spacing: 1.2px;
        line-height: 1.3; }
      .dz-card.style-1 .dz-info p {
        font-size: 14px;
        font-weight: 400;
        color: #666; }
      .dz-card.style-1 .dz-info .read-btn {
        font-style: italic;
        font-weight: 500;
        letter-spacing: 1.6px;
        text-transform: uppercase;
        font-family: var(--font-family-title);
        color: #000;
        margin-top: auto; }
    .dz-card.style-1.blog-half .dz-media {
      min-width: 270px;
      width: 270px;
      height: auto; }
    .dz-card.style-1.blog-half .dz-media + .dz-info {
      padding: 25px 25px 17px 30px;
      border-left: 0; }
    @media only screen and (max-width: 767px) {
      .dz-card.style-1.blog-half {
        display: block; }
        .dz-card.style-1.blog-half .dz-media {
          width: 100%;
          min-width: 100%;
          height: 280px; }
          .dz-card.style-1.blog-half .dz-media img {
            object-fit: cover; }
        .dz-card.style-1.blog-half .dz-info {
          border-left: 1px solid rgba(0, 0, 0, 0.1);
          border-top: 0;
          padding: 25px; } }
  .dz-card.style-2 {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .dz-card.style-2 .dz-info {
      position: relative;
      border: 1px solid rgba(0, 0, 0, 0.1);
      padding: 25px;
      display: flex;
      flex-direction: column;
      flex: 1; }
      .dz-card.style-2 .dz-info .dz-title {
        text-transform: capitalize;
        font-weight: 700;
        margin-bottom: 7px;
        letter-spacing: 1.2px;
        line-height: 1.3; }
      .dz-card.style-2 .dz-info .read-btn {
        margin-top: auto; }
    .dz-card.style-2 .dz-media {
      height: 280px; }
      .dz-card.style-2 .dz-media img {
        object-fit: cover;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        height: 100%; }
    .dz-card.style-2:hover .dz-media img {
      transform: scale(1.1);
      -moz-transform: scale(1.1);
      -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
      -o-transform: scale(1.1); }
    .dz-card.style-2.blog-half {
      flex-direction: row; }
      .dz-card.style-2.blog-half .dz-media {
        min-width: 240px;
        width: 240px;
        height: auto; }
      .dz-card.style-2.blog-half .dz-info {
        padding: 30px;
        border-left: 0; }
      @media only screen and (max-width: 767px) {
        .dz-card.style-2.blog-half {
          display: block; }
          .dz-card.style-2.blog-half .dz-media {
            width: 100%;
            min-width: 100%;
            height: 280px; }
            .dz-card.style-2.blog-half .dz-media img {
              object-fit: cover; }
          .dz-card.style-2.blog-half .dz-info {
            border-left: 1px solid rgba(0, 0, 0, 0.1);
            border-top: 0;
            padding: 25px; } }
  .dz-card.style-3 {
    position: relative;
    z-index: 1;
    display: block;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
    @media only screen and (max-width: 991px) {
      .dz-card.style-3 {
        margin: 15px 0; } }
    .dz-card.style-3 .dz-content {
      display: flex;
      flex-direction: row;
      -webkit-box-align: center;
      align-items: center;
      position: relative;
      gap: 95px; }
      @media only screen and (max-width: 991px) {
        .dz-card.style-3 .dz-content {
          display: flex;
          flex-direction: column;
          align-items: start;
          gap: 5px; } }
      .dz-card.style-3 .dz-content .dz-date {
        min-width: 100px;
        width: 100px;
        line-height: 1;
        font-size: 60px;
        font-weight: 700;
        font-family: var(--font-family-title);
        color: var(--title); }
        @media only screen and (max-width: 767px) {
          .dz-card.style-3 .dz-content .dz-date {
            font-size: 50px; } }
        .dz-card.style-3 .dz-content .dz-date span {
          color: var(--primary);
          font-family: var(--font-family-base);
          font-size: 16px;
          font-weight: 500;
          margin-left: 5px; }
      .dz-card.style-3 .dz-content .title {
        font-size: 28px;
        font-style: italic;
        font-weight: 900;
        text-transform: uppercase;
        margin-bottom: 0;
        max-width: 180px;
        line-height: 1.3; }
        @media only screen and (max-width: 767px) {
          .dz-card.style-3 .dz-content .title {
            font-size: 24px;
            max-width: 100%; } }
      .dz-card.style-3 .dz-content .dz-body {
        display: flex;
        flex-direction: row;
        align-items: center;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        justify-content: space-between; }
        .dz-card.style-3 .dz-content .dz-body .img-bx {
          position: relative;
          z-index: 1; }
        .dz-card.style-3 .dz-content .dz-body p {
          padding: 40px 0;
          color: var(--title);
          font-size: 15px;
          font-weight: 400;
          opacity: 1;
          margin-bottom: 0;
          margin-right: 125px;
          line-height: 1.8; }
          @media only screen and (max-width: 991px) {
            .dz-card.style-3 .dz-content .dz-body p {
              margin-right: 0px;
              padding: 15px 0; } }
          @media only screen and (max-width: 767px) {
            .dz-card.style-3 .dz-content .dz-body p {
              padding: 10px 0; } }
        .dz-card.style-3 .dz-content .dz-body .dz-media {
          position: absolute;
          left: 0;
          top: 0;
          z-index: -1;
          height: 100%;
          width: 100%;
          opacity: 0;
          -webkit-transition: 0.4s;
          transition: 0.4s; }
          .dz-card.style-3 .dz-content .dz-body .dz-media:after {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            right: 0;
            bottom: 0;
            background: var(--rgba-primary-4);
            opacity: 0.4;
            -webkit-transition: 0.4s;
            transition: 0.4s; }
          .dz-card.style-3 .dz-content .dz-body .dz-media img {
            width: 100%;
            height: 100%;
            object-fit: cover; }
        .dz-card.style-3 .dz-content .dz-body .read-btn {
          padding: 0 13px; }
          .dz-card.style-3 .dz-content .dz-body .read-btn i {
            font-size: 24px;
            vertical-align: middle; }
    .dz-card.style-3:hover .dz-content .dz-body {
      background: var(--primary); }
      .dz-card.style-3:hover .dz-content .dz-body p {
        opacity: 0; }
      .dz-card.style-3:hover .dz-content .dz-body .dz-media {
        opacity: 1; }
      .dz-card.style-3:hover .dz-content .dz-body .read-btn i {
        color: #fff; }

.dz-box {
  position: relative; }

.portfolio-slider .swiper-wrapper .swiper-slide {
  transform: skewX(-8deg); }

.portfolio-wrapper {
  position: relative;
  z-index: 2; }
  .portfolio-wrapper .portfolio-wrapper-inner {
    z-index: 1;
    position: relative;
    overflow: hidden;
    padding-bottom: 20px; }

.portfolio-bx .dz-box {
  overflow: hidden;
  border-radius: 10px; }
  @media only screen and (max-width: 991px) {
    .portfolio-bx .dz-box img {
      width: 100%; } }

.dz-box.style-1 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: relative;
  z-index: 99;
  height: fit-content;
  margin-bottom: 15px; }
  @media only screen and (max-width: 991px) {
    .dz-box.style-1 {
      margin-bottom: 10px; } }
  .dz-box.style-1 .dz-media {
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    z-index: 1; }
    .dz-box.style-1 .dz-media img {
      height: 100%;
      width: 100%;
      object-fit: cover; }
    .dz-box.style-1 .dz-media .overlay-content {
      position: absolute; }
  .dz-box.style-1 .dz-position {
    font-size: 14px;
    font-weight: 700;
    color: var(--title);
    letter-spacing: 1.4px;
    text-transform: uppercase;
    background: var(--primary);
    width: fit-content;
    padding: 5px 10px;
    font-family: var(--font-family-title);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    transform: translate(-100%, 0%);
    display: block; }
  .dz-box.style-1 .dz-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--title);
    letter-spacing: 2px;
    text-transform: uppercase;
    background: #fff;
    width: fit-content;
    padding: 10px;
    font-family: var(--font-family-title);
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    transform: translate(0%, 130%);
    margin: 0; }
  .dz-box.style-1 .dz-content {
    position: absolute;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    overflow: hidden;
    bottom: 0;
    z-index: 9;
    left: -25px; }
  .dz-box.style-1:hover, .dz-box.style-1.active {
    transform: rotate(-20deg);
    filter: blur(0px);
    z-index: 999999; }
    .dz-box.style-1:hover .dz-content, .dz-box.style-1.active .dz-content {
      overflow: visible; }
      .dz-box.style-1:hover .dz-content .dz-position, .dz-box.style-1.active .dz-content .dz-position {
        transform: translate(0%, 0%); }
      .dz-box.style-1:hover .dz-content .dz-name, .dz-box.style-1.active .dz-content .dz-name {
        transform: translate(0%, 0%); }

.dz-box.style-3 {
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  overflow: hidden;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.15); }
  .dz-box.style-3 .view-btn {
    width: 75px;
    height: 75px;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transition: background 0.5s ease;
    -moz-transition: background 0.5s ease;
    -webkit-transition: background 0.5s ease;
    -ms-transition: background 0.5s ease;
    -o-transition: background 0.5s ease;
    transition-delay: 0.5s;
    -moz-transition-delay: 0.5s;
    -ms-transition-delay: 0.5s;
    -o-transition-delay: 0.5s;
    -webkit-transition-delay: 0.5s; }
    .dz-box.style-3 .view-btn:after, .dz-box.style-3 .view-btn:before {
      content: "";
      position: absolute;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      background: #fff;
      opacity: 0; }
    .dz-box.style-3 .view-btn:after {
      height: 4px;
      width: 26px;
      top: 50%;
      left: 50%;
      transform: translate(-500px, 50%);
      -moz-transform: translate(-500px, 50%);
      -webkit-transform: translate(-500px, 50%);
      -ms-transform: translate(-500px, 50%);
      -o-transform: translate(-500px, 50%); }
    .dz-box.style-3 .view-btn:before {
      height: 26px;
      width: 4px;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -500px);
      -moz-transform: translate(-50%, -500px);
      -webkit-transform: translate(-50%, -500px);
      -ms-transform: translate(-50%, -500px);
      -o-transform: translate(-50%, -500px); }
  .dz-box.style-3:hover {
    transform: scale(1.05);
    -moz-transform: scale(1.05);
    -webkit-transform: scale(1.05);
    -ms-transform: scale(1.05);
    -o-transform: scale(1.05);
    z-index: 1;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.35); }
    .dz-box.style-3:hover .view-btn {
      background: var(--primary);
      transition-delay: 0s; }
      .dz-box.style-3:hover .view-btn:after, .dz-box.style-3:hover .view-btn:before {
        transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        opacity: 1; }

.portfolio-slider-1 {
  overflow: visible !important; }
  .portfolio-slider-1 .swiper-wrapper {
    flex-direction: row !important; }
    .portfolio-slider-1 .swiper-wrapper .swiper-slide {
      transform: rotate(20deg);
      margin: 0 20px; }
      @media only screen and (max-width: 1280px) {
        .portfolio-slider-1 .swiper-wrapper .swiper-slide {
          margin: 0 15px; } }
    .portfolio-slider-1 .swiper-wrapper:hover .dz-box {
      filter: blur(15px); }
      .portfolio-slider-1 .swiper-wrapper:hover .dz-box:hover {
        filter: blur(0px); }

/*=== Pages ===*/
.clients-logo {
  height: 50px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center; }
  .clients-logo img {
    width: 135px; }
  .clients-logo:hover img {
    -webkit-animation: logoUpToDown 0.4s forwards;
    -moz-animation: logoUpToDown 0.4s forwards;
    animation: logoUpToDown 0.4s forwards; }
  @media only screen and (max-width: 575px) {
    .clients-logo {
      margin: 0 25px; } }

@keyframes logoUpToDown {
  49% {
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  50% {
    opacity: 0;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  51% {
    opacity: 1; } }

.dropdown-item.active, .dropdown-item:active {
  background-color: var(--primary); }

.dzFormMsg,
.dzSubscribeMsg {
  position: fixed;
  right: 6%;
  z-index: 999;
  bottom: 17px; }
  .dzFormMsg .alert,
  .dzSubscribeMsg .alert {
    padding: 10px 15px;
    background: transparent;
    border: 0;
    margin: 0;
    position: relative; }
    .dzFormMsg .alert:after,
    .dzSubscribeMsg .alert:after {
      content: '';
      position: absolute;
      z-index: -1;
      left: 0;
      top: 0;
      height: 100%;
      width: 100%;
      transform: skewX(-12deg);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); }
    .dzFormMsg .alert.alert-danger:after,
    .dzSubscribeMsg .alert.alert-danger:after {
      background-color: #ffcccd; }
    .dzFormMsg .alert.alert-success:after,
    .dzSubscribeMsg .alert.alert-success:after {
      background-color: #d0f3db; }
  @media only screen and (max-width: 1199px) {
    .dzFormMsg,
    .dzSubscribeMsg {
      right: 9%;
      bottom: 17px; } }
  @media only screen and (max-width: 767px) {
    .dzFormMsg,
    .dzSubscribeMsg {
      right: 5%;
      bottom: 18%;
      width: 90%; } }
  @media only screen and (max-width: 575px) {
    .dzFormMsg,
    .dzSubscribeMsg {
      bottom: 15%; } }

.calculate-table {
  background: var(--primary);
  padding: 15px 0; }
  .calculate-table table {
    margin-bottom: 10px;
    width: 100%; }
    .calculate-table table th,
    .calculate-table table td {
      text-align: left;
      padding: 14px 30px;
      padding-right: 0;
      width: 50%;
      color: var(--title); }
      .calculate-table table th:last-child,
      .calculate-table table td:last-child {
        border: none;
        width: 100%; }
      @media only screen and (max-width: 767px) {
        .calculate-table table th,
        .calculate-table table td {
          width: 50%; } }
      @media only screen and (max-width: 575px) {
        .calculate-table table th,
        .calculate-table table td {
          padding: 10px 15px; } }
    .calculate-table table tbody tr:nth-child(2n) {
      background: rgba(0, 0, 0, 0.1); }
    .calculate-table table thead th {
      color: var(--title);
      font-size: 24px;
      font-weight: 500;
      font-family: Kuunari; }
  .calculate-table .weight-info {
    padding: 14px 20px; }
    .calculate-table .weight-info span {
      font-size: 14px;
      color: var(--title); }
      .calculate-table .weight-info span b {
        font-weight: 700; }
  .calculate-table .weight-info b {
    color: var(--title); }
  @media only screen and (max-width: 991px) {
    .calculate-table {
      padding-left: 0px; } }

.z-index-none {
  z-index: unset; }

.pr-list {
  background: #fff;
  border-left: 5px solid var(--primary);
  padding: 15px 25px; }
  .pr-list.white li {
    color: #fff; }
  .pr-list.list-italic {
    font-family: var(--font-family-title);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 2.4px;
    color: var(--title); }
    @media only screen and (max-width: 575px) {
      .pr-list.list-italic {
        font-size: 16px; } }
    .pr-list.list-italic li i {
      color: var(--primary);
      margin-right: 8px;
      font-size: 24px;
      display: inline-flex; }
  .pr-list li {
    padding: 2px 0px; }
    .pr-list li i {
      font-size: 24px;
      color: var(--primary); }
  .pr-list.style-1 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: none; }
    .pr-list.style-1 li {
      width: 50%; }
  .pr-list.style-2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    padding: 0;
    border: 0;
    background: none; }
    .pr-list.style-2 li {
      width: 50%;
      color: var(--title);
      font-family: var(--font-family-title);
      font-size: 20px;
      font-weight: 700; }
      .pr-list.style-2 li i {
        margin-right: 15px; }
      @media only screen and (max-width: 575px) {
        .pr-list.style-2 li {
          width: 100%;
          font-size: 18px; } }

.list-italic \	li {
  font-family: var(--font-family-title);
  font-size: 20px;
  font-style: italic;
  letter-spacing: 2px;
  color: #000;
  font-weight: 500;
  padding: 2px 0; }
  .list-italic \	li i {
    color: var(--primary);
    margin-right: 8px;
    font-size: 24px;
    display: inline-flex; }
  @media only screen and (max-width: 575px) {
    .list-italic \	li {
      font-size: 15px; } }

.map {
  margin-top: -50px;
  position: relative;
  z-index: 1; }
  @media only screen and (max-width: 1199px) {
    .map {
      margin-top: -20px; } }
  @media only screen and (max-width: 991px) {
    .map {
      margin: 0; } }

.section-wrapper1 {
  position: relative; }

.section-wrapper2 {
  position: relative;
  z-index: 999;
  overflow: hidden; }
  .section-wrapper2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--rgba-secondary-4);
    width: 100%;
    height: 100%;
    z-index: -1; }
  .section-wrapper2:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary);
    background-image: linear-gradient(to right, rgba(255, 255, 255, 0.1), var(--secondary));
    width: 50%;
    height: 100%;
    filter: blur(55px); }
  .section-wrapper2 video#video-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    position: absolute;
    top: 0;
    z-index: -1;
    left: 0; }

/* Google Recaptcha */
.g-recaptcha,
#rc-imageselect {
  transform: scale(0.9);
  -webkit-transform: scale(0.9);
  -moz-transform: scale(0.9);
  -o-transform: scale(0.9);
  transform-origin: 0 0;
  -o-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -webkit-transform-origin: 0 0; }

@media only screen and (max-width: 1280px) {
  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.7);
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0; } }

@media only screen and (max-width: 575px) {
  #rc-imageselect,
  .g-recaptcha {
    transform: scale(0.7);
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0; } }

.shop-account form {
  padding: 30px; }
  @media only screen and (max-width: 1280px) {
    .shop-account form {
      padding: 15px; } }

.split-box {
  position: relative;
  overflow: hidden; }
  .split-box > div {
    opacity: 0;
    -webkit-transition: 0s .8s;
    -o-transition: 0s .8s;
    transition: 0s .8s; }
  .split-box:after, .split-box:before {
    content: "";
    position: absolute;
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
  .split-box:before {
    background-color: var(--primary);
    z-index: 1;
    -webkit-transform: translateX(-101%);
    -ms-transform: translateX(-101%);
    transform: translateX(-101%); }
  .split-box:after {
    background-color: var(--secondary);
    z-index: 2;
    -webkit-transform: translateX(-101%);
    -ms-transform: translateX(-101%);
    transform: translateX(-101%); }
  .split-box.split-active > div {
    opacity: 1; }
  .split-box.split-active:after {
    -webkit-animation: split-box-animation 1.2s 0.2s cubic-bezier(1, 0, 0.54, 0.99) forwards;
    animation: split-box-animation 1.2s 0.2s cubic-bezier(1, 0, 0.54, 0.99) forwards; }
  .split-box.split-active:before {
    -webkit-animation: split-box-animation 1.5s cubic-bezier(0.86, 0, 0.07, 1) forwards;
    animation: split-box-animation 1.5s cubic-bezier(0.86, 0, 0.07, 1) forwards; }

@-webkit-keyframes split-box-animation {
  0% {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(101%);
    transform: translateX(101%); } }

@keyframes split-box-animation {
  0% {
    -webkit-transform: translateX(-101%);
    transform: translateX(-101%); }
  50% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(101%);
    transform: translateX(101%); } }

/*  Trainer-silder */
.trainer-box {
  padding-left: 60px;
  position: relative;
  z-index: 1; }
  @media only screen and (max-width: 767px) {
    .trainer-box {
      padding-left: 0px; } }
  .trainer-box .dz-content {
    position: absolute;
    bottom: 55px;
    left: -15px;
    z-index: 9999; }
    @media only screen and (max-width: 575px) {
      .trainer-box .dz-content {
        left: 0px;
        bottom: 20px; } }
    .trainer-box .dz-content .dz-position {
      color: var(--secondary);
      font-family: var(--font-family-title);
      font-size: 28px;
      font-style: italic;
      font-weight: 700;
      letter-spacing: 2.8px;
      text-transform: uppercase;
      background: var(--primary);
      padding: 5px 10px; }
      @media only screen and (max-width: 767px) {
        .trainer-box .dz-content .dz-position {
          font-size: 20px; } }
      @media only screen and (max-width: 575px) {
        .trainer-box .dz-content .dz-position {
          font-size: 18px; } }
    .trainer-box .dz-content .dz-workout {
      color: var(--secondary);
      font-family: var(--font-family-title);
      font-size: 40px;
      font-style: italic;
      font-weight: 900;
      letter-spacing: 4px;
      text-transform: uppercase;
      background: #FFF;
      padding: 15px 10px;
      width: fit-content; }
      @media only screen and (max-width: 767px) {
        .trainer-box .dz-content .dz-workout {
          font-size: 30px; } }
      @media only screen and (max-width: 575px) {
        .trainer-box .dz-content .dz-workout {
          font-size: 24px; } }

.trainer-wrapper-inner .swiper {
  overflow: visible !important; }

.trainer-wrapper-inner .trainer-slider .swiper-slide .dz-media img {
  transform: scale(1.4);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s; }

.trainer-wrapper-inner .trainer-slider .swiper-slide.swiper-slide-active .dz-media img {
  transform: scale(1);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s; }

.trainer-wrapper-inner .swiper-btn {
  position: absolute;
  top: 10px;
  z-index: 1;
  width: auto;
  right: 0; }
  @media only screen and (max-width: 1024px) {
    .trainer-wrapper-inner .swiper-btn {
      top: -50px; } }
  .trainer-wrapper-inner .swiper-btn .btn-prev {
    left: -50px;
    top: 50px; }
    @media only screen and (max-width: 1024px) {
      .trainer-wrapper-inner .swiper-btn .btn-prev {
        left: -100px; } }
  .trainer-wrapper-inner .swiper-btn .btn-next {
    left: auto;
    right: -50px; }
    @media only screen and (max-width: 1024px) {
      .trainer-wrapper-inner .swiper-btn .btn-next {
        right: 0px;
        top: 0px; } }
  .trainer-wrapper-inner .swiper-btn .btn-prev,
  .trainer-wrapper-inner .swiper-btn .btn-next {
    color: var(--secondary);
    display: block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    position: absolute;
    z-index: 9;
    margin: 0;
    transform: skewX(0deg);
    background: #fff; }
    .trainer-wrapper-inner .swiper-btn .btn-prev.active, .trainer-wrapper-inner .swiper-btn .btn-prev:hover,
    .trainer-wrapper-inner .swiper-btn .btn-next.active,
    .trainer-wrapper-inner .swiper-btn .btn-next:hover {
      background: var(--primary); }
    .trainer-wrapper-inner .swiper-btn .btn-prev i,
    .trainer-wrapper-inner .swiper-btn .btn-next i {
      transform: skewX(0deg); }

/*  Trainer-silder */
.dz-features-wrapper {
  overflow: hidden;
  position: relative;
  z-index: 1; }
  .dz-features-wrapper .dz-features {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    animation: ticker 0s linear infinite 0s normal;
    animation-duration: 0s;
    animation-duration: 32.9528s; }
    .dz-features-wrapper .dz-features .item {
      padding: 15px 50px;
      display: -ms-flexbox;
      display: flex;
      align-items: center;
      background-color: var(--primary);
      text-transform: uppercase; }
      @media only screen and (max-width: 1280px) {
        .dz-features-wrapper .dz-features .item {
          padding: 10px 25px; } }
      @media only screen and (max-width: 767px) {
        .dz-features-wrapper .dz-features .item {
          padding: 10px 20px; } }
      @media only screen and (max-width: 575px) {
        .dz-features-wrapper .dz-features .item {
          padding: 10px; } }
  .dz-features-wrapper:hover .dz-features {
    animation-play-state: paused; }

@keyframes ticker {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0); }
  100% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%); } }

.instagram-text a {
  color: var(--secondary);
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 700;
  line-height: 24px;
  letter-spacing: 2px; }
  .instagram-text a i {
    margin-right: 10px; }

.product-size {
  display: inline-table;
  margin-bottom: 30px;
  font-size: 0; }
  .product-size .btn-check:hover,
  .product-size .btn-check:checked + .btn,
  .product-size .btn-check:checked + .wp-block-button__link,
  .product-size .appointment-page-1 .wizard-form .btn-check:checked + .btn.sw-btn-prev,
  .product-size .appointment-page-1 .wizard-form .btn-check:checked + .btn.sw-btn-next,
  .product-size .woocommerce .widget_shopping_cart .buttons .btn-check:checked + a,
  .woocommerce .widget_shopping_cart .buttons .product-size .btn-check:checked + a,
  .product-size .woocommerce.widget_shopping_cart .buttons .btn-check:checked + a,
  .woocommerce.widget_shopping_cart .buttons .product-size .btn-check:checked + a,
  .product-size .woocommerce #review_form #respond .form-submit .btn-check:checked + input,
  .woocommerce #review_form #respond .form-submit .product-size .btn-check:checked + input,
  .product-size .woocommerce-cart-form .table.shop_table tr .btn-check:checked + .button,
  .woocommerce-cart-form .table.shop_table tr .product-size .btn-check:checked + .button,
  .product-size .woocommerce-cart .wc-proceed-to-checkout .btn-check:checked + a.checkout-button,
  .woocommerce-cart .wc-proceed-to-checkout .product-size .btn-check:checked + a.checkout-button,
  .product-size .woocommerce #respond .btn-check:checked + input#submit,
  .woocommerce #respond .product-size .btn-check:checked + input#submit,
  .product-size .woocommerce .btn-check:checked + a.button,
  .woocommerce .product-size .btn-check:checked + a.button,
  .product-size .woocommerce .btn-check:checked + button.button,
  .woocommerce .product-size .btn-check:checked + button.button,
  .product-size .woocommerce .btn-check:checked + input.button,
  .woocommerce .product-size .btn-check:checked + input.button,
  .product-size .woocommerce .btn-check:checked + #place_order,
  .woocommerce .product-size .btn-check:checked + #place_order {
    background: var(--primary) !important;
    color: #fff;
    border-color: var(--primary); }
  .product-size .btn-check + .btn:hover, .product-size .btn-check + .wp-block-button__link:hover, .product-size .appointment-page-1 .wizard-form .btn-check + .btn.sw-btn-prev:hover, .product-size .appointment-page-1 .wizard-form .btn-check + .btn.sw-btn-next:hover, .product-size .woocommerce .widget_shopping_cart .buttons .btn-check + a:hover, .woocommerce .widget_shopping_cart .buttons .product-size .btn-check + a:hover,
  .product-size .woocommerce.widget_shopping_cart .buttons .btn-check + a:hover, .woocommerce.widget_shopping_cart .buttons .product-size .btn-check + a:hover, .product-size .woocommerce #review_form #respond .form-submit .btn-check + input:hover, .woocommerce #review_form #respond .form-submit .product-size .btn-check + input:hover, .product-size .woocommerce-cart-form .table.shop_table tr .btn-check + .button:hover, .woocommerce-cart-form .table.shop_table tr .product-size .btn-check + .button:hover, .product-size .woocommerce-cart .wc-proceed-to-checkout .btn-check + a.checkout-button:hover, .woocommerce-cart .wc-proceed-to-checkout .product-size .btn-check + a.checkout-button:hover, .product-size .woocommerce #respond .btn-check + input#submit:hover, .woocommerce #respond .product-size .btn-check + input#submit:hover,
  .product-size .woocommerce .btn-check + a.button:hover, .woocommerce .product-size .btn-check + a.button:hover,
  .product-size .woocommerce .btn-check + button.button:hover, .woocommerce .product-size .btn-check + button.button:hover,
  .product-size .woocommerce .btn-check + input.button:hover, .woocommerce .product-size .btn-check + input.button:hover,
  .product-size .woocommerce .btn-check + #place_order:hover, .woocommerce .product-size .btn-check + #place_order:hover {
    background: var(--primary) !important;
    color: #fff;
    border-color: var(--primary); }
  .product-size .btn, .product-size .wp-block-button__link, .product-size .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .product-size .btn.sw-btn-prev, .product-size .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .product-size .btn.sw-btn-next, .product-size .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .product-size a,
  .product-size .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .product-size a, .product-size .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .product-size input, .product-size .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .product-size .button, .product-size .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .product-size a.checkout-button, .product-size .woocommerce #respond input#submit, .woocommerce #respond .product-size input#submit,
  .product-size .woocommerce a.button, .woocommerce .product-size a.button,
  .product-size .woocommerce button.button, .woocommerce .product-size button.button,
  .product-size .woocommerce input.button, .woocommerce .product-size input.button,
  .product-size .woocommerce #place_order, .woocommerce .product-size #place_order {
    font-weight: 500;
    background: var(--secondary-dark);
    color: #fff;
    padding: 5px 10px;
    margin: 0 5px 5px 0;
    font-family: Poppins;
    font-size: 13px; }

.slide-horizontal .char {
  overflow: hidden;
  color: transparent; }
  .slide-horizontal .char:before, .slide-horizontal .char:after {
    color: #fff;
    visibility: visible;
    transition: transform 0.5s cubic-bezier(0.9, 0, 0.2, 1);
    transition-delay: calc( 0.2s + ( 0.02s * ( var(--char-index)) )); }
  .slide-horizontal .char:before {
    transition-delay: calc( 0.02s * ( var(--char-index)));
    transform: translateX(110%); }

.slide-horizontal.active .char:before {
  transition-delay: calc( 0.2s + ( 0.02s * ( var(--char-index)) ));
  transform: translateX(0%); }

.slide-horizontal.active .char:after {
  transition-delay: calc( 0.02s * ( var(--char-index)));
  transform: translateX(-110%); }

.membership-box:after {
  content: '';
  z-index: -1;
  top: 0;
  right: 0;
  width: 59%;
  position: absolute;
  height: calc( 100% - 175px);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url(../images/background/bg6.png);
  background-attachment: fixed; }
  @media only screen and (max-width: 1480px) {
    .membership-box:after {
      width: 62%; } }
  @media only screen and (max-width: 1199px) {
    .membership-box:after {
      width: 63%; } }
  @media only screen and (max-width: 991px) {
    .membership-box:after {
      display: none; } }

.membership-box .pricing-content {
  padding-left: 70px;
  padding-right: 15px; }
  @media only screen and (max-width: 1199px) {
    .membership-box .pricing-content {
      padding-left: 40px;
      padding-right: 0px; } }
  @media only screen and (max-width: 991px) {
    .membership-box .pricing-content {
      padding: 0; } }

.membership-box .tab-content .content {
  font-size: 18px; }
  @media only screen and (max-width: 767px) {
    .membership-box .tab-content .content {
      font-size: 15px; } }

.dz-box.style-2 {
  overflow: hidden;
  transition: all 0.8s ease 0s; }
  .dz-box.style-2 .dz-media {
    background-size: cover;
    display: block;
    transition: all 0.8s ease 0s; }
  .dz-box.style-2 .dz-info {
    position: absolute;
    bottom: 0px;
    left: 0px;
    visibility: hidden;
    opacity: 0;
    padding: 20px; }

.image-workout {
  position: absolute;
  background: var(--secondary);
  padding: 20px;
  z-index: 999;
  width: 0px; }
  .image-workout .title {
    color: #fff;
    white-space: nowrap; }
  .image-workout .dz-name {
    white-space: nowrap;
    color: var(--primary);
    margin-bottom: 0; }

.img-box {
  position: relative;
  overflow: hidden;
  height: 460px;
  display: block;
  max-height: 460px; }
  .img-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.5s;
    background-size: cover; }
    .img-box img:nth-child(1) {
      transform: translatex(50%) scalex(2) scale(1);
      opacity: 0;
      filter: blur(10px); }
  .img-box:hover img:nth-child(1) {
    transform: translatex(0) scale(1);
    opacity: 1;
    filter: blur(0); }
  .img-box:hover img:nth-child(2) {
    transform: translatex(-50%) scale(1.1);
    opacity: 0;
    filter: blur(10px); }

.slide-horizontal .char {
  overflow: hidden;
  color: transparent; }

.slide-horizontal .char:before, .slide-horizontal .char:after {
  visibility: visible;
  color: #FFF;
  transition: transform 0.5s cubic-bezier(0.9, 0, 0.2, 1);
  transition-delay: calc( 0.2s + ( 0.02s * ( var(--char-index)) )); }

.slide-horizontal .char:before {
  transition-delay: calc( 0.02s * ( var(--char-index))); }

.slide-horizontal .char:before {
  transform: translateX(110%); }

.slide-horizontal.active .char:before {
  transition-delay: calc( 0.2s + ( 0.02s * ( var(--char-index)) )); }

.slide-horizontal.active .char:after {
  transition-delay: calc( 0.02s * ( var(--char-index))); }

.slide-horizontal.active .char:before {
  transform: translateX(0%); }

.slide-horizontal.active .char:after {
  transform: translateX(-110%); }

.animation-text {
  overflow: visible; }
  .animation-text text {
    text-transform: uppercase;
    animation: stroke 5s infinite alternate;
    stroke-width: 2;
    stroke: #fff;
    font-size: 140px;
    font-weight: 600;
    font-family: var(--font-family-title); }
    @media only screen and (max-width: 1280px) {
      .animation-text text {
        font-size: 120px; } }
    @media only screen and (max-width: 991px) {
      .animation-text text {
        font-size: 140px; } }

@keyframes stroke {
  0% {
    fill: rgba(255, 255, 255, 0);
    stroke: white;
    stroke-dashoffset: 25%;
    stroke-dasharray: 0 50%;
    stroke-width: 2; }
  70% {
    fill: rgba(255, 255, 255, 0);
    stroke: white; }
  80% {
    fill: rgba(255, 255, 255, 0);
    stroke: white;
    stroke-width: 3; }
  100% {
    fill: white;
    stroke: rgba(255, 255, 255, 0);
    stroke-dashoffset: -25%;
    stroke-dasharray: 50% 0;
    stroke-width: 0; } }

.wc-block-components-price-slider--is-input-inline .wc-block-components-price-slider__controls .wc-block-components-price-slider__amount {
  padding: 0;
  border: 0;
  color: var(--title);
  font-weight: 500;
  background: transparent; }

.wc-block-components-price-slider__controls {
  width: 100%;
  flex-wrap: wrap;
  margin-bottom: 0 !important; }

.wc-block-components-price-slider__controls .wc-block-components-price-slider__amount:last-child {
  text-align: right; }

.blog-single {
  margin-bottom: 60px; }
  @media only screen and (max-width: 767px) {
    .blog-single {
      margin-bottom: 40px; } }
  @media only screen and (max-width: 575px) {
    .blog-single {
      margin-bottom: 30px; } }
  .blog-single .dz-post-meta {
    margin-bottom: 1.25rem; }
  .blog-single .post-author img {
    height: 35px;
    width: 35px;
    border-radius: 100%;
    margin-right: 10px; }
  .blog-single .dz-post-text {
    padding-bottom: 5px; }
    .blog-single .dz-post-text:after {
      content: "";
      display: block;
      width: 100%;
      clear: both; }
    .blog-single .dz-post-text p {
      margin-bottom: 30px; }
      @media only screen and (max-width: 575px) {
        .blog-single .dz-post-text p {
          margin-bottom: 15px; } }
  .blog-single .dz-post-tags {
    margin-top: 1.25rem; }
  .blog-single .dz-social-icon {
    display: flex;
    align-items: center; }
    .blog-single .dz-social-icon .title {
      margin-right: 18px;
      margin-bottom: 0;
      line-height: 1.35; }
    .blog-single .dz-social-icon ul {
      margin: 0 -5px 0 -5px; }
      .blog-single .dz-social-icon ul li a {
        width: 30px;
        height: 30px;
        line-height: 30px;
        font-size: 16px;
        text-align: center;
        color: var(--title); }
        .blog-single .dz-social-icon ul li a:hover {
          color: var(--primary); }
      .blog-single .dz-social-icon ul li:last-child {
        padding-right: 0; }
  .blog-single .dz-info {
    padding: 0; }
    .blog-single .dz-info h1, .blog-single .dz-info .h1 {
      font-weight: 700;
      text-transform: capitalize; }
    .blog-single .dz-info .dz-meta {
      margin-bottom: 5px; }
      .blog-single .dz-info .dz-meta ul li {
        font-size: 13px;
        font-weight: 500; }
        .blog-single .dz-info .dz-meta ul li:after {
          display: none; }
        .blog-single .dz-info .dz-meta ul li i {
          margin-right: 4px; }
      .blog-single .dz-info .dz-meta ul .post-category a {
        margin-right: 5px; }
  .blog-single .type-post.sticky,
  .blog-single .type-post.tag-sticky-2.post {
    padding: 20px;
    margin-bottom: 30px;
    position: relative; }
    .blog-single .type-post.sticky > *:last-child,
    .blog-single .type-post.tag-sticky-2.post > *:last-child {
      margin-bottom: 0; }
    .blog-single .type-post.sticky:before,
    .blog-single .type-post.tag-sticky-2.post:before {
      content: "\f08d";
      font-size: 1rem;
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      background: var(--secondary);
      width: 3.125rem;
      height: 3.125rem;
      position: absolute;
      transform: rotate(45deg);
      top: -1.563rem;
      right: -1.563rem;
      z-index: 1;
      padding-top: 25px;
      color: #fff;
      text-align: center; }
  .blog-single .dz-post-media {
    border-radius: 0.25rem; }
  .blog-single .dz-media,
  .blog-single .dz-post-media {
    text-align: center; }

.wp-block-code > code {
  color: #fff; }

.dz-post-text .widget_archive li a,
.dz-post-text .wp-block-latest-posts li a,
.dz-post-text .wp-block-categories-list li a,
.dz-post-text .wp-block-archives-list li a,
.dz-post-text .widget_categories li a,
.dz-post-text blockquote a,
.dz-post-text .wp-block-button__link {
  box-shadow: none;
  text-decoration: none; }

.dz-post-text iframe {
  max-width: 100%; }

.post-header {
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 575px) {
    .post-header {
      margin-bottom: 1.25rem; } }
  .post-header.dz-post-banner .dz-title {
    color: var(--title); }
  .post-header.dz-post-banner .dz-meta ul li {
    color: var(--title); }
  .post-header .dz-media img {
    min-height: 250px;
    object-fit: cover;
    width: 100% !important; }
  .post-header .dz-meta {
    margin-bottom: 25px; }
    .post-header .dz-meta ul li {
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      position: relative;
      margin-right: 30px; }
      .post-header .dz-meta ul li i {
        color: var(--primary);
        font-size: 13px; }
      .post-header .dz-meta ul li.post-date {
        padding: 4px 10px;
        font-weight: 500;
        display: inline-block;
        background: var(--primary);
        color: #000; }
      .post-header .dz-meta ul li.dz-user {
        color: var(--title); }
        .post-header .dz-meta ul li.dz-user span {
          color: var(--primary); }
      .post-header .dz-meta ul li.dz-comment {
        color: var(--title); }
      .post-header .dz-meta ul li:last-child {
        margin-right: 0; }
      .post-header .dz-meta ul li:not(:last-child):after {
        content: "";
        height: 6px;
        width: 6px;
        position: absolute;
        right: -17px;
        top: 50%;
        border-radius: 50%;
        background-color: var(--primary);
        transform: translate(0%, -50%); }
    @media only screen and (max-width: 575px) {
      .post-header .dz-meta ul li {
        margin-right: 9px; }
        .post-header .dz-meta ul li:not(:last-child):after {
          display: none; } }
  .post-header h1, .post-header .h1 {
    text-align: center; }
    @media only screen and (max-width: 1280px) {
      .post-header h1, .post-header .h1 {
        font-size: 2.2rem;
        text-align: center;
        max-width: 600px;
        margin: 0 auto 10px; } }
    @media only screen and (max-width: 991px) {
      .post-header h1, .post-header .h1 {
        font-size: 2rem; } }
    @media only screen and (max-width: 767px) {
      .post-header h1, .post-header .h1 {
        font-size: 1.7rem; } }
  .post-header .dz-info {
    position: absolute;
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.6) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 1%, rgba(0, 0, 0, 0.6) 100%);
    position: absolute;
    bottom: 0;
    text-align: center;
    padding: 100px 30px 30px 30px !important;
    width: 100%; }
    @media only screen and (max-width: 575px) {
      .post-header .dz-info {
        padding: 40px 15px 15px 15px !important; } }
  .post-header .dz-title {
    color: #fff; }

.post-link-in {
  padding: 15px 50px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 22px;
  font-weight: 400;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s; }
  .post-link-in:hover {
    background: var(--primary);
    color: #fff; }

.side-bar {
  padding-left: 20px;
  padding-bottom: 1px; }
  .side-bar .wp-block-search,
  .side-bar .wp-block-archives,
  .side-bar .wp-block-latest-posts,
  .side-bar .wp-block-latest-comments,
  .side-bar .wp-block-categories,
  .side-bar .wp-block-calendar {
    margin-bottom: 0; }
  .side-bar.left {
    padding-left: 0;
    padding-right: 20px; }
    @media only screen and (max-width: 991px) {
      .side-bar.left {
        padding-right: 0;
        padding-left: 0; } }

.alignnone {
  margin: 0.3125rem 0 1.563rem 0; }
  .alignnoneimg, .alignnone.wp-caption, .alignnone.is-resized {
    margin: 0.3125rem 0 1.563rem 0; }

.aligncenter {
  display: block;
  margin: 0.3125rem auto 0.938rem;
  text-align: center; }
  .aligncenterimg, .aligncenter.wp-caption, .aligncenter.is-resized {
    display: block;
    margin: 0.3125rem auto 0.938rem;
    text-align: center; }

.alignright {
  float: right;
  margin: 0.3125rem 0 1.563rem 1.563rem; }
  .alignrightimg, .alignright.wp-caption, .alignright.is-resized {
    margin: 0.3125rem 0 1.563rem 1.563rem;
    float: right; }

.alignleft {
  float: left;
  margin: 0.3125rem 1.563rem 1.563rem 0; }
  .alignleftimg, .alignleft.wp-caption, .alignleft.is-resized, .alignleft.is-cropped {
    margin: 0.3125rem 1.563rem 1.563rem 0;
    float: left; }

.wp-caption {
  max-width: 100%;
  text-align: center; }
  .wp-caption img[class*="wp-image-"] {
    display: block;
    margin: 0; }
  .wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: auto; }
  .wp-caption p.wp-caption-text {
    font-size: 0.813rem;
    line-height: 1.125rem;
    margin: 0;
    padding: 0.625rem 0;
    text-align: left; }

.wp-block-quote.is-large,
.wp-block-quote.is-style-large,
blockquote.wp-block-quote,
blockquote.wp-block-pullquote,
blockquote.wp-block-pullquote.alignright,
blockquote.wp-block-pullquote.alignleft,
blockquote {
  padding: 1.5rem 2rem 1.5rem 2.5rem;
  font-size: 0.938rem;
  color: #fff;
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
  line-height: 1.875rem;
  position: relative;
  clear: both;
  font-weight: 700;
  z-index: 1;
  border: 0;
  background-color: var(--title); }
  @media only screen and (max-width: 991px) {
    .wp-block-quote.is-large,
    .wp-block-quote.is-style-large,
    blockquote.wp-block-quote,
    blockquote.wp-block-pullquote,
    blockquote.wp-block-pullquote.alignright,
    blockquote.wp-block-pullquote.alignleft,
    blockquote {
      padding: 1.25rem 1.25rem 1.25rem 2.25rem;
      font-size: 0.813rem; } }
  @media only screen and (max-width: 575px) {
    .wp-block-quote.is-large,
    .wp-block-quote.is-style-large,
    blockquote.wp-block-quote,
    blockquote.wp-block-pullquote,
    blockquote.wp-block-pullquote.alignright,
    blockquote.wp-block-pullquote.alignleft,
    blockquote {
      margin-top: 1.5rem;
      margin-bottom: 1.5rem; } }
  .wp-block-quote.is-large cite,
  .wp-block-quote.is-style-large cite,
  blockquote.wp-block-quote cite,
  blockquote.wp-block-pullquote cite,
  blockquote.wp-block-pullquote.alignright cite,
  blockquote.wp-block-pullquote.alignleft cite,
  blockquote cite {
    font-style: normal;
    position: relative;
    display: block;
    margin-top: -0.3125rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    font-size: 15px; }
    .wp-block-quote.is-large cite:before,
    .wp-block-quote.is-style-large cite:before,
    blockquote.wp-block-quote cite:before,
    blockquote.wp-block-pullquote cite:before,
    blockquote.wp-block-pullquote.alignright cite:before,
    blockquote.wp-block-pullquote.alignleft cite:before,
    blockquote cite:before {
      content: "";
      margin-right: 0.625rem;
      width: 36px;
      height: 2px;
      background: var(--primary);
      display: inline-block;
      vertical-align: middle; }
  .wp-block-quote.is-large b, .wp-block-quote.is-large strong, .wp-block-quote.is-large .strong,
  .wp-block-quote.is-style-large b,
  .wp-block-quote.is-style-large strong,
  .wp-block-quote.is-style-large .strong,
  blockquote.wp-block-quote b,
  blockquote.wp-block-quote strong,
  blockquote.wp-block-quote .strong,
  blockquote.wp-block-pullquote b,
  blockquote.wp-block-pullquote strong,
  blockquote.wp-block-pullquote .strong,
  blockquote.wp-block-pullquote.alignright b,
  blockquote.wp-block-pullquote.alignright strong,
  blockquote.wp-block-pullquote.alignright .strong,
  blockquote.wp-block-pullquote.alignleft b,
  blockquote.wp-block-pullquote.alignleft strong,
  blockquote.wp-block-pullquote.alignleft .strong,
  blockquote b,
  blockquote strong,
  blockquote .strong {
    color: inherit; }
  .wp-block-quote.is-large:after,
  .wp-block-quote.is-style-large:after,
  blockquote.wp-block-quote:after,
  blockquote.wp-block-pullquote:after,
  blockquote.wp-block-pullquote.alignright:after,
  blockquote.wp-block-pullquote.alignleft:after,
  blockquote:after {
    content: "";
    width: 5px;
    height: 110px;
    border-radius: 50px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary);
    position: absolute;
    box-shadow: 0 0 30px 0 var(--rgba-primary-2); }
  .wp-block-quote.is-large .quotes,
  .wp-block-quote.is-style-large .quotes,
  blockquote.wp-block-quote .quotes,
  blockquote.wp-block-pullquote .quotes,
  blockquote.wp-block-pullquote.alignright .quotes,
  blockquote.wp-block-pullquote.alignleft .quotes,
  blockquote .quotes {
    position: absolute;
    right: 24px;
    bottom: 16px;
    font-size: 64px;
    color: var(--primary); }
    @media only screen and (max-width: 1280px) {
      .wp-block-quote.is-large .quotes,
      .wp-block-quote.is-style-large .quotes,
      blockquote.wp-block-quote .quotes,
      blockquote.wp-block-pullquote .quotes,
      blockquote.wp-block-pullquote.alignright .quotes,
      blockquote.wp-block-pullquote.alignleft .quotes,
      blockquote .quotes {
        bottom: 5px; } }
    @media only screen and (max-width: 575px) {
      .wp-block-quote.is-large .quotes,
      .wp-block-quote.is-style-large .quotes,
      blockquote.wp-block-quote .quotes,
      blockquote.wp-block-pullquote .quotes,
      blockquote.wp-block-pullquote.alignright .quotes,
      blockquote.wp-block-pullquote.alignleft .quotes,
      blockquote .quotes {
        display: none; } }
  .wp-block-quote.is-large.wp-block-pullquote.alignleft,
  .wp-block-quote.is-style-large.wp-block-pullquote.alignleft,
  blockquote.wp-block-quote.wp-block-pullquote.alignleft,
  blockquote.wp-block-pullquote.wp-block-pullquote.alignleft,
  blockquote.wp-block-pullquote.alignright.wp-block-pullquote.alignleft,
  blockquote.wp-block-pullquote.alignleft.wp-block-pullquote.alignleft,
  blockquote.wp-block-pullquote.alignleft {
    margin: 0rem 1.563rem 1.563rem 0rem; }
  .wp-block-quote.is-large.wp-block-pullquote.alignright,
  .wp-block-quote.is-style-large.wp-block-pullquote.alignright,
  blockquote.wp-block-quote.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.alignright.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.alignleft.wp-block-pullquote.alignright,
  blockquote.wp-block-pullquote.alignright {
    margin: 0rem 0 1.563rem 1.563rem; }

blockquote.wp-block-pullquote:not(.is-style-solid-color) {
  background: #5608e0; }

.wp-caption-text {
  font-size: 0.875rem;
  line-height: 1.3; }

.dz-card.blog-single .dz-post-text blockquote p,
.dz-page-text blockquote p,
blockquote p {
  font-size: 22px;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 600; }
  .dz-card.blog-single .dz-post-text blockquote p cite,
  .dz-page-text blockquote p cite,
  blockquote p cite {
    margin-top: 20px; }
  @media only screen and (max-width: 1280px) {
    .dz-card.blog-single .dz-post-text blockquote p,
    .dz-page-text blockquote p,
    blockquote p {
      font-size: 1.125rem; } }
  @media only screen and (max-width: 575px) {
    .dz-card.blog-single .dz-post-text blockquote p,
    .dz-page-text blockquote p,
    blockquote p {
      font-size: 1rem;
      margin-bottom: 1rem; } }

.dz-page-text {
  padding-bottom: 30px !important; }

.dz-card.blog-single .dz-post-text blockquote.style-1 p,
.dz-page-text blockquote.style-1 p,
blockquote.style-1 p {
  margin-bottom: 1.5rem; }

.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto; }

.blog-single .dz-media img,
.blog-single .dz-post-media img {
  width: auto; }

/* Gutenberg Gallery */
/* Gutenberg Css */
/* .dz-card.blog-single,
.dz-card.blog-single + #comment-list */
.min-container,
.dz-page-text,
.dz-page-text + #comment-list,
.dz-page-text + .paginate-links,
.dz-page-text + #comment-list + .paginate-links {
  max-width: 50rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0.938rem;
  padding-right: 0.938rem; }

.dz-card.blog-single.sidebar + #comment-list {
  padding: 0;
  max-width: 100%; }

.max-container {
  max-width: 93.75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 3.4375rem;
  padding-right: 3.4375rem; }

.dz-page-text + #comment-list + .paginate-links,
.dz-page-text + #comment-list,
.dz-page-text {
  padding: 0; }

.dz-page-text.sidebar {
  width: 100%;
  padding: 0;
  max-width: 100%; }

.dz-page-text > ol,
.dz-page-text > ul,
.dz-card.blog-single .dz-post-text > ol,
.dz-card.blog-single .dz-post-text > ul,
.dz-card.blog-single .dz-post-text.text > ol,
.dz-card.blog-single .dz-post-text.text > ul {
  padding-left: 1.25rem; }
  .dz-page-text > ol ol,
  .dz-page-text > ol ul,
  .dz-page-text > ul ol,
  .dz-page-text > ul ul,
  .dz-card.blog-single .dz-post-text > ol ol,
  .dz-card.blog-single .dz-post-text > ol ul,
  .dz-card.blog-single .dz-post-text > ul ol,
  .dz-card.blog-single .dz-post-text > ul ul,
  .dz-card.blog-single .dz-post-text.text > ol ol,
  .dz-card.blog-single .dz-post-text.text > ol ul,
  .dz-card.blog-single .dz-post-text.text > ul ol,
  .dz-card.blog-single .dz-post-text.text > ul ul {
    padding-left: 1.563rem; }
  .dz-page-text > ol.wp-block-social-links,
  .dz-page-text > ul.wp-block-social-links,
  .dz-card.blog-single .dz-post-text > ol.wp-block-social-links,
  .dz-card.blog-single .dz-post-text > ul.wp-block-social-links,
  .dz-card.blog-single .dz-post-text.text > ol.wp-block-social-links,
  .dz-card.blog-single .dz-post-text.text > ul.wp-block-social-links {
    padding-left: 0; }

.dz-page-text > ol li,
.dz-page-text > ul li,
.dz-card.blog-single .dz-post-text > ol li,
.dz-card.blog-single .dz-post-text > ul li,
.dz-card.blog-single .dz-post-text > ol li,
.dz-card.blog-single .dz-post-text > ul li,
.dz-card.blog-single .dz-post-text.text > ol li,
.dz-card.blog-single .dz-post-text.text > ul li {
  padding: 0.5rem 0.5rem;
  position: relative;
  list-style: inherit; }

.dz-page-text > .wp-block-gallery,
.dz-card.blog-single .dz-post-text > .wp-block-gallery,
.dz-card.blog-single .dz-post-text.text > .wp-block-gallery {
  padding: 0;
  list-style: none; }

.dz-post-text > .wp-block-gallery .wp-block-image,
.dz-page-text > .wp-block-gallery .wp-block-image,
.dz-page-text > .wp-block-gallery li,
.dz-card.blog-single .dz-post-text > .wp-block-gallery li,
.dz-card.blog-single .dz-post-text.text > .wp-block-gallery li {
  padding: 0;
  list-style: none;
  margin: 0.25rem; }

.dz-page-text > .wp-block-gallery li:before,
.dz-card.blog-single .dz-post-text > .wp-block-gallery li:before,
.dz-card.blog-single .dz-post-text.text > .wp-block-gallery li:before {
  content: none; }

.wp-block-gallery .wp-block-image,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  margin: 0 0.5rem 0.5rem 0; }

.wp-block-gallery.columns-4 .blocks-gallery-image,
.wp-block-gallery.columns-4 .wp-block-image,
.wp-block-gallery.columns-4 .blocks-gallery-item,
.wp-block-gallery.columns-3 .blocks-gallery-image,
.wp-block-gallery.columns-3 .wp-block-image,
.wp-block-gallery.columns-3 .blocks-gallery-item {
  margin-right: 0.5rem; }

.content-full .wp-block-gallery {
  margin-left: calc(-12.5rem - (0.313rem/2));
  margin-right: calc(-12.5rem - (0.313rem/2));
  width: calc(100% + 25rem + 0.313rem);
  max-width: initial; }

.wp-block-gallery.alignwide,
.alignwide {
  margin-left: calc(-9.25rem - (0.313rem/2));
  margin-right: calc(-9.25rem - (0.313rem/2));
  width: calc(100% + 18.5rem + 0.313rem);
  max-width: initial; }

.wp-block-gallery.alignfull,
.wp-block-gallery.alignfullwide,
.alignfull,
.alignfullwide {
  margin-left: calc(50% - 15px - calc(50vw - 30px) - (var(--content-share-ml,0px)/2));
  width: calc(100vw - 30px);
  max-width: calc(100vw - 30px);
  box-sizing: border-box; }

.dz-page-text h1, .dz-page-text .h1,
.dz-post-text h1,
.dz-post-text .h1,
.thm-unit-test .dz-post-text h1,
.thm-unit-test .dz-post-text .h1 {
  margin-bottom: 1rem;
  font-weight: 700; }

.dz-page-text h2, .dz-page-text .h2,
.dz-post-text h2,
.dz-post-text .h2,
.thm-unit-test .dz-post-text h2,
.thm-unit-test .dz-post-text .h2 {
  margin-bottom: 1rem;
  font-weight: 700; }

.dz-page-text h3, .dz-page-text .h3,
.dz-post-text h3,
.dz-post-text .h3,
.thm-unit-test .dz-post-text h3,
.thm-unit-test .dz-post-text .h3 {
  margin-bottom: 1rem;
  font-weight: 700; }

.dz-page-text h4, .dz-page-text .h4,
.dz-post-text h4,
.dz-post-text .h4,
.thm-unit-test .dz-post-text h4,
.thm-unit-test .dz-post-text .h4 {
  margin-bottom: 0.75rem;
  font-weight: 600; }

.dz-page-text h5, .dz-page-text .h5,
.dz-post-text h5,
.dz-post-text .h5,
.thm-unit-test .dz-post-text h5,
.thm-unit-test .dz-post-text .h5 {
  margin-bottom: 0.75rem; }

.dz-page-text h6, .dz-page-text .h6,
.dz-post-text h6,
.dz-post-text .h6,
.thm-unit-test .dz-post-text h6,
.thm-unit-test .dz-post-text .h6 {
  margin-bottom: 0.625rem; }

.wp-block-code,
pre.wp-block-code,
pre {
  margin: 0 0 1.563rem;
  padding: 1.25rem;
  color: #fff;
  background-color: #212326;
  white-space: pre;
  font-size: 0.938rem;
  border-radius: 0.1875rem; }

.wp-block-code > code {
  font-family: inherit;
  color: unset;
  padding: unset;
  border: unset;
  border-radius: unset; }

.dz-page-text,
.dz-page-text ul li,
.dz-page-text ol li,
.dz-card.blog-single .dz-post-text,
.dz-card.blog-single .dz-post-text ul li,
.dz-card.blog-single .dz-post-text ol li,
.dz-card.blog-single .dz-card.blog-single .dz-post-text p:not(.has-text-color):not(.has-text-align-center):not(.has-text-align-left):not(.has-text-align-right) {
  font-size: 1rem;
  line-height: 1.7; }

.wp-block-cover,
.wp-block-cover-image {
  color: #fff; }

.wp-block-cover p:last-child,
.wp-block-cover-image p:last-child {
  margin-bottom: 0; }

.wp-block-quote.has-text-align-right {
  border-right: 0; }

.dz-page-text ul li,
.dz-page-text ol li,
.dz-card.blog-single .dz-post-text ul li,
.dz-card.blog-single .dz-post-text ol li {
  position: relative; }

.dz-page-text ul > li li:before,
.dz-page-text ol > li li:before,
.dz-card.blog-single .dz-post-text ul > li li:before,
.dz-card.blog-single .dz-post-text ol > li li:before {
  content: none; }

.dz-page-text p,
.dz-card.blog-single .dz-post-text p {
  margin-bottom: 1.65rem; }

.paginate-links {
  display: flex;
  align-items: center;
  margin: 1.5rem 0 4rem 0; }
  .paginate-links > a,
  .paginate-links > span {
    margin: 0 0 0 0.625rem;
    position: relative;
    border: 0rem solid #6cc000;
    color: #777777;
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    line-height: 50px;
    min-width: 50px;
    height: 50px;
    text-align: center;
    text-transform: capitalize;
    transition: all 500ms ease 0s;
    background: #f3f4f6;
    border-radius: 0; }
  .paginate-links .current,
  .paginate-links > a:hover,
  .paginate-links > span:hover {
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary);
    box-shadow: 0px 5px 12px var(--rgba-primary-4); }

.wp-block-columns {
  margin-bottom: 0; }

/* Gutenberg Gallery */
.wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  padding: 0; }

.wp-block-gallery .wp-block-image,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: center;
  margin: 0 1rem 1rem 0;
  position: relative; }

.wp-block-gallery .wp-block-image figure,
.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure {
  height: 100%;
  margin: 0; }

@supports (position: -webkit-sticky) or (position: sticky) {
  .wp-block-gallery .wp-block-image figure,
  .wp-block-gallery .blocks-gallery-image figure,
  .wp-block-gallery .blocks-gallery-item figure {
    align-items: flex-end;
    display: flex;
    justify-content: flex-start; } }

.wp-block-gallery .wp-block-image img,
.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .wp-block-image img,
.wp-block-gallery .blocks-gallery-item img {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
  border-radius: 0; }

@supports (position: -webkit-sticky) or (position: sticky) {
  .wp-block-gallery .wp-block-image img,
  .wp-block-gallery .blocks-gallery-image img,
  .wp-block-gallery .blocks-gallery-item img {
    width: auto; } }

.wp-block-gallery .wp-block-image figcaption,
.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3) 60%, transparent);
  bottom: 0;
  color: #fff;
  font-size: 0.813rem;
  max-height: 100%;
  overflow: auto;
  padding: 2.5rem 0.625rem 0.3125rem;
  position: absolute;
  text-align: center;
  width: 100%; }

.wp-block-gallery .wp-block-image figcaption img,
.wp-block-gallery .blocks-gallery-image figcaption img,
.wp-block-gallery .blocks-gallery-item figcaption img {
  display: inline; }

.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .wp-block-image a,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .wp-block-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item img {
  width: 100%; }

@supports (position: -webkit-sticky) or (position: sticky) {
  .wp-block-gallery.is-cropped .blocks-gallery-image a,
  .wp-block-gallery.is-cropped .blocks-gallery-image img,
  .wp-block-gallery.is-cropped .wp-block-image img,
  .wp-block-gallery.is-cropped .wp-block-image a,
  .wp-block-gallery.is-cropped .blocks-gallery-item a,
  .wp-block-gallery.is-cropped .blocks-gallery-item img {
    -o-object-fit: cover;
    flex: 1;
    height: 100%;
    object-fit: cover; } }

.wp-block-gallery .wp-block-image,
.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
  width: calc(50% - 30px); }
  @media only screen and (max-width: 1280px) {
    .wp-block-gallery .wp-block-image,
    .wp-block-gallery .blocks-gallery-image,
    .wp-block-gallery .blocks-gallery-item {
      width: calc(50% - 10px); } }

.wp-block-gallery .wp-block-image:nth-of-type(2n),
.wp-block-gallery .blocks-gallery-image:nth-of-type(2n),
.wp-block-gallery .blocks-gallery-item:nth-of-type(2n) {
  margin-right: 0; }

.wp-block-gallery.columns-1 .wp-block-image,
.wp-block-gallery.columns-1 .blocks-gallery-image,
.wp-block-gallery.columns-1 .blocks-gallery-item {
  margin-right: 0;
  width: 100%; }

@media only screen and (max-width: 1280px) {
  .alignwide {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%; }
  .alignwide .alignleft img {
    width: 100%; }
  .alignwide .alignleft {
    margin: 0.3125rem 0rem 1.563rem 0;
    float: none; } }

@media (min-width: 37.5rem) {
  .wp-block-gallery.columns-2 .wp-block-image,
  .wp-block-gallery.columns-2 .blocks-gallery-image,
  .wp-block-gallery.columns-2 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(50% - 1.875rem); }
  .wp-block-gallery.columns-3 .wp-block-image,
  .wp-block-gallery.columns-3 .blocks-gallery-image,
  .wp-block-gallery.columns-3 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(33.33333% - 1.875rem); }
  .wp-block-gallery.columns-4 .wp-block-image,
  .wp-block-gallery.columns-4 .blocks-gallery-image,
  .wp-block-gallery.columns-4 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(25% - 1.875rem); }
  .wp-block-gallery.columns-5 .wp-block-image,
  .wp-block-gallery.columns-5 .blocks-gallery-image,
  .wp-block-gallery.columns-5 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(20% - 1.875rem); }
  .wp-block-gallery.columns-6 .wp-block-image,
  .wp-block-gallery.columns-6 .blocks-gallery-image,
  .wp-block-gallery.columns-6 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(16.66667% - 1.875rem); }
  .wp-block-gallery.columns-7 .wp-block-image,
  .wp-block-gallery.columns-7 .blocks-gallery-image,
  .wp-block-gallery.columns-7 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(14.28571% - 1.875rem); }
  .wp-block-gallery.columns-8 .wp-block-image,
  .wp-block-gallery.columns-8 .blocks-gallery-image,
  .wp-block-gallery.columns-8 .blocks-gallery-item {
    margin-right: 1rem;
    width: calc(12.5% - 1.875rem); }
  .wp-block-gallery.columns-1 .wp-block-image:nth-of-type(1n),
  .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
  .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n),
  .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
  .wp-block-gallery.columns-2 .wp-block-image:nth-of-type(2n),
  .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n),
  .wp-block-gallery.columns-3 .wp-block-image:nth-of-type(3n),
  .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
  .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n),
  .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
  .wp-block-gallery.columns-4 .wp-block-image:nth-of-type(4n),
  .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n),
  .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
  .wp-block-gallery.columns-5 .wp-block-image:nth-of-type(5n),
  .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n),
  .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
  .wp-block-gallery.columns-6 .wp-block-image:nth-of-type(6n),
  .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n),
  .wp-block-gallery.columns-7 .wp-block-image:nth-of-type(7n),
  .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
  .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n),
  .wp-block-gallery.columns-8 .wp-block-image:nth-of-type(8n),
  .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
  .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
    margin-right: 0; } }

.dz-post-text .wp-block-gallery.wp-block-gallery-1,
.dz-post-text .wp-block-gallery.wp-block-gallery-2,
.dz-post-text .wp-block-gallery.wp-block-gallery-3,
.dz-post-text .wp-block-gallery.wp-block-gallery-4,
.dz-post-text .wp-block-gallery.wp-block-gallery-5,
.dz-post-text .wp-block-gallery.wp-block-gallery-6,
.dz-post-text .wp-block-gallery.wp-block-gallery-7 {
  --wp--style--unstable-gallery-gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 30px) ) );
  gap: var(--wp--style--gallery-gap-default, var(--gallery-block--gutter-size, var(--wp--style--block-gap, 30px))); }

.wp-block-gallery .wp-block-image:last-child,
.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
  margin-right: 0; }

.wp-block-gallery .wp-block-image.has-add-item-button,
.wp-block-gallery .blocks-gallery-item.has-add-item-button {
  width: 100%; }

.wp-block-image.alignfullwide img {
  border-radius: 0; }

.wp-block-image img {
  border-radius: var(--border-radius-base); }

.wp-block-cover,
.wp-block-cover-image,
.wp-block-embed,
.wp-block-image {
  margin-bottom: 1.875rem;
  margin-top: 1.875rem; }

.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
  max-width: 19.0625rem;
  width: 100%; }

.wp-block-gallery.aligncenter,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
  display: flex; }

.wp-block-gallery.aligncenter .wp-block-image figure,
.wp-block-gallery.aligncenter .blocks-gallery-item figure {
  justify-content: center; }

.wp-block-gallery.alignwide,
.alignwide {
  margin-left: calc(-14.375rem - (0.313rem/2));
  margin-right: calc(-14.375rem - (0.313rem/2));
  width: calc(100% + 28.75rem + 0.313rem);
  max-width: initial; }
  @media only screen and (max-width: 1680px) {
    .wp-block-gallery.alignwide,
    .alignwide {
      margin-left: 0;
      margin-right: 0;
      width: 100%;
      max-width: initial; } }

.wp-block-gallery.alignfull,
.wp-block-gallery.alignfullwide,
.alignfull,
.alignfullwide {
  margin-left: calc(50% - 15px - calc(50vw - 30px) - (var(--content-share-ml,0px)/2));
  width: calc(100vw - 30px);
  max-width: calc(100vw - 30px);
  box-sizing: border-box; }

/* .dz-page-text.sidebar .alignfull,
.dz-page-text.sidebar .alignfullwide,
.dz-page-text.sidebar .alignwide,
.dz-page-text.sidebar .wp-block-gallery,
.blog-single.dz-blog.sidebar .alignfullwide,
.blog-single.dz-blog.sidebar .alignwide,
.blog-single.dz-blog.sidebar .dz-post-text .wp-block-gallery {
    margin-left:0;
    margin-right:0;
    width: 100%;
    max-width: initial;
}  */
.blog-overlap {
  background: #fff;
  margin-top: -8.75rem;
  padding: 1.25rem 1.25rem 0;
  border-radius: 0.25rem 0.25rem 0rem 0rem; }

.blog-single.dz-card.sidebar {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0; }

.dz-blog .dz-meta > ul > li {
  display: inline; }

.dz-post-text table,
.dz-page-text table,
.wp-block-table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 1rem;
  background-color: transparent;
  font-size: 1rem;
  margin-bottom: 1.875rem; }
  @media only screen and (max-width: 575px) {
    .dz-post-text table,
    .dz-page-text table,
    .wp-block-table {
      font-size: 0.875rem; } }

.wp-block-image figcaption,
.dz-post-text figcaption,
.dz-page-text figcaption {
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif;
  font-style: normal;
  margin-top: 0.625rem; }

.dz-post-text table tbody tr:nth-of-type(odd),
.dz-page-text table tbody tr:nth-of-type(odd),
.wp-block-table tbody tr:nth-of-type(odd) {
  background-color: #fafafa; }

.dz-post-text td,
.dz-post-text th,
.dz-page-text td,
.dz-page-text th,
.wp-block-table td,
.wp-block-table th {
  padding: 0.625rem 0.938rem;
  border: 0.0625rem solid #e4e4e4;
  border-right: 0;
  border-left: 0; }
  @media only screen and (max-width: 575px) {
    .dz-post-text td,
    .dz-post-text th,
    .dz-page-text td,
    .dz-page-text th,
    .wp-block-table td,
    .wp-block-table th {
      padding: 0.5rem 0.5rem; } }

.wp-block-media-text {
  margin-bottom: 30px; }
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0 1.875rem; }

.wp-block-column ol li:before,
.wp-block-column ul li:before {
  content: none !important; }

.wp-block-pullquote {
  padding: 1em 0;
  border-top: 0;
  border-bottom: 0; }
  .wp-block-pullquote.alignright, .wp-block-pullquote.alignleft {
    padding: 0;
    border-top: 0;
    border-bottom: 0; }
    .wp-block-pullquote.alignright blockquote, .wp-block-pullquote.alignleft blockquote {
      margin: 0; }

.dz-post-text .wp-block-cover-image-text,
.dz-post-text .wp-block-cover-text,
.dz-post-text section.wp-block-cover-image h2,
.dz-post-text section.wp-block-cover-image .h2,
.dz-page-text .wp-block-cover-image-text,
.dz-page-text .wp-block-cover-text,
.dz-page-text section.wp-block-cover-image h2,
.dz-page-text section.wp-block-cover-image .h2 {
  color: #fff; }

.dz-post-text .bootstrap-select .dropdown-menu li a,
.dz-page-text .bootstrap-select .dropdown-menu li a {
  box-shadow: none;
  font-size: 0.875rem;
  font-family: 'Poppins', sans-serif; }

.dz-post-text .wp-block-calendar a {
  box-shadow: none !important;
  text-decoration: unset; }

.wp-block-search,
.wp-block-archives,
.wp-block-latest-posts,
.wp-block-latest-comments,
.wp-block-categories,
.wp-block-calendar {
  margin-bottom: 2.5rem; }

/* Admin Bar */
.admin-bar .is-fixed .main-bar {
  top: 1.875rem; }

.wp-block-quote.is-style-large cite:before {
  display: none; }

/* Theme Unit Test */
.post-password-form label {
  font-size: 1rem; }

.post-password-form p input[type="submit"],
.post-password-form input[type="submit"] {
  padding: 0.625rem 1.563rem;
  background-color: var(--primary);
  border: none;
  height: 3.075rem;
  font-weight: 600;
  font-size: 0.875rem;
  outline: none;
  position: absolute !important; }

.post-password-form input[type="submit"]:hover {
  background-color: var(--primary); }

.post-password-form input[type="password"] {
  height: 3.075rem;
  border: 0.0625rem solid #ced4da; }

.wp-block-search {
  position: relative; }
  .wp-block-search .wp-block-search__button {
    -webkit-transition: all 1s;
    -ms-transition: all 1s;
    transition: all 1s;
    background: transparent;
    border: 0;
    color: var(--secondary);
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 0 var(--border-radius-base) var(--border-radius-base) 0;
    position: absolute;
    right: 0;
    height: 100%;
    min-width: 50px;
    border: 0;
    padding: 0 10px;
    margin-left: 0; }
  .wp-block-search .wp-block-search__input {
    height: 50px;
    font-size: 15px;
    outline: none;
    background-color: #F2F2F2;
    padding: 10px 55px 10px 20px !important;
    width: 100%;
    border: 0; }

.wp-block-tag-cloud a {
  position: relative;
  padding: 10px 20px;
  display: inline-block;
  margin: 0 10px 10px 0;
  font-size: 14px;
  color: inherit;
  line-height: 1.4;
  border-color: rgba(0, 0, 0, 0.1);
  border-radius: 0; }
  .wp-block-tag-cloud a:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    color: #fff; }

.wp-block-latest-comments {
  list-style: none;
  padding: 0 !important; }
  .wp-block-latest-comments .avatar {
    width: 3.4375rem;
    height: 3.4375rem;
    border-radius: 3.4375rem; }
  .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt {
    margin-left: 4.375rem; }
  .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    color: inherit;
    font-size: 1.063rem;
    line-height: 1.7;
    margin-bottom: 0; }
    .wp-block-latest-comments .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta a {
      color: inherit;
      box-shadow: none;
      text-decoration: none; }
  .wp-block-latest-comments img + article .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    margin-left: 4.375rem; }
  .wp-block-latest-comments .wp-block-latest-comments__comment-meta time {
    display: block;
    width: 100%;
    color: #9fa1a4;
    font-size: 0.813rem;
    font-weight: 400; }
  .wp-block-latest-comments .wp-block-latest-comments__comment-excerpt p {
    font-size: 1rem !important;
    line-height: 1.5 !important;
    margin-bottom: 0.625rem !important; }
  .wp-block-latest-comments li {
    padding: 0 !important;
    border-bottom: 0.0625rem solid #eee;
    padding-bottom: 0.625rem !important;
    margin-bottom: 0.625rem; }
    .wp-block-latest-comments li:before {
      content: none !important; }

.wp-block-latest-comments__comment-avatar {
  width: 3.4375rem;
  height: 3.4375rem;
  border-radius: 3.4375rem; }

.comment-content.dz-page-text {
  max-width: 100%; }
  .comment-content.dz-page-text > :last-child {
    margin-bottom: 0; }

.wp-block-rss {
  padding: 0 !important; }
  .wp-block-rss .wp-block-rss__item {
    padding: 0.3125rem 0 !important;
    border-bottom: 0.0625rem solid #eee; }
    .wp-block-rss .wp-block-rss__item:before {
      content: none !important; }
    .wp-block-rss .wp-block-rss__item a {
      font-family: 'Poppins', sans-serif;
      font-size: 1.125rem;
      box-shadow: unset !important;
      font-weight: 600;
      color: var(--title);
      text-decoration: none; }

@media only screen and (max-width: 1480px) {
  .portfolio-single .wp-block-gallery {
    margin-left: calc(-3rem - (0.3rem/2));
    margin-right: calc(-3rem - (0.3rem/2));
    width: calc(100% + 0rem + 0.3rem); } }

@media only screen and (max-width: 1280px) {
  .portfolio-single .wp-block-gallery {
    margin-left: calc(-1rem - (0.1rem/2));
    margin-right: calc(-1rem - (0.1rem/2));
    width: calc(100% + 2rem + 0.1rem); } }

@media only screen and (max-width: 76.2rem) {
  .portfolio-single .wp-block-gallery {
    margin-left: 0;
    margin-right: 0;
    width: 100%; } }

@media only screen and (max-width: 82.5rem) {
  .dz-page-text .wp-block-gallery,
  .dz-blog.blog-single .dz-post-text .wp-block-gallery {
    margin-left: calc(-6.25rem - (0.625rem/2));
    margin-right: calc(-6.25rem - (0.625rem/2));
    width: calc(100% + 12.5rem + 0.625rem); } }

@media only screen and (max-width: 1280px) {
  .dz-page-text .wp-block-gallery,
  .dz-blog.blog-single .dz-post-text .wp-block-gallery {
    margin-left: calc(-5rem - (0.625rem/2));
    margin-right: calc(-5rem - (0.625rem/2));
    width: calc(100% + 10rem + 0.625rem); } }

@media only screen and (max-width: 61.9375rem) {
  .admin-bar .mo-left .header-nav {
    top: 1.875rem;
    height: calc(100vh - 1.875rem) !important; }
  .dz-page-text .wp-block-gallery,
  .dz-blog.blog-single .dz-post-text .wp-block-gallery,
  .portfolio-single .wp-block-gallery {
    margin-left: 0;
    margin-right: 0;
    width: 100%; }
  .dz-page-text,
  .dz-page-text ul li,
  .dz-page-text ol li,
  .dz-page-text p,
  .dz-blog.blog-single .dz-post-text,
  .dz-blog.blog-single .dz-post-text ul li,
  .dz-blog.blog-single .dz-post-text ol li,
  .dz-blog.blog-single .dz-post-text p {
    font-size: 16px; } }

@media only screen and (max-width: 48.875rem) {
  .admin-bar .is-fixed .main-bar {
    top: 2.8125rem; }
  .admin-bar .mo-left .header-nav {
    top: 2.8125rem;
    height: calc(100vh - 2.812rem) !important; }
  .wp-block-media-text {
    display: block; }
  .wp-block-media-text .wp-block-media-text__media {
    margin-bottom: 0.938rem; }
  .wp-block-media-text .wp-block-media-text__content {
    padding: 0; } }

@media only screen and (max-width: 37.5rem) {
  .admin-bar .is-fixed .main-bar {
    top: 0; }
  .admin-bar .mo-left .header-nav {
    top: 2.8125rem;
    height: calc(100vh - 2.812rem) !important; }
  .admin-bar .mo-left .is-fixed .header-nav {
    top: 0;
    height: 100vh !important; } }

.post-footer {
  border-top: 0.0625rem solid rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.938rem 0 0; }
  .post-footer .dz-meta .tag-list {
    padding-bottom: 0;
    text-align: left;
    margin: 0;
    padding: 0;
    list-style: none;
    text-transform: capitalize;
    display: inline; }
  .post-footer .dz-meta ul li {
    margin-right: 0.3125rem;
    padding: 0;
    display: inline-block;
    color: #333333;
    font-weight: 500;
    font-size: 0.938rem;
    font-style: italic; }
  .post-footer .post-tag a {
    text-transform: capitalize;
    font-size: 0.938rem;
    color: #999;
    background: transparent;
    padding: 0;
    border: 0;
    line-height: 0.875rem;
    font-weight: 500; }

.share-post li {
  display: inline-block; }

.share-post a {
  width: 2.1875rem;
  height: 2.1875rem;
  border-radius: 2.1875rem;
  border: 0.0625rem solid #eee;
  display: block;
  text-align: center;
  line-height: 2.0625rem;
  color: #222222; }

.extra-blog {
  margin-bottom: 60px; }

.default-form.comment-respond .comment-reply-title,
.comments-area .comments-title,
.extra-blog .blog-title {
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-family-title);
  letter-spacing: 2px;
  text-transform: uppercase; }

@media only screen and (max-width: 991px) {
  .default-form {
    margin-bottom: 40px; } }

@media only screen and (max-width: 767px) {
  .default-form {
    margin-bottom: 30px; } }

.dz-title-text {
  font-size: 14px;
  margin-bottom: 20px;
  text-transform: capitalize; }

.comments-area .comment-list {
  margin-bottom: 60px;
  padding: 0; }
  @media only screen and (max-width: 767px) {
    .comments-area .comment-list {
      margin-bottom: 40px; } }
  .comments-area .comment-list .default-form {
    margin-top: 3.5rem;
    margin-bottom: 3.5rem; }
    .comments-area .comment-list .default-form small, .comments-area .comment-list .default-form .small {
      font-size: 12px;
      font-weight: 400;
      letter-spacing: 1px; }
      .comments-area .comment-list .default-form small a, .comments-area .comment-list .default-form .small a {
        color: #e10000; }
  .comments-area .comment-list .dz-page-text {
    padding-bottom: 0 !important; }
  .comments-area .comment-list > .comment .comment-body {
    position: relative;
    padding: 2px 0 25px 100px;
    margin-bottom: 30px;
    min-height: 95px;
    border-bottom: 1px solid rgba(34, 34, 34, 0.1); }
    @media only screen and (max-width: 575px) {
      .comments-area .comment-list > .comment .comment-body {
        padding: 0 0 20px 75px; } }
    .comments-area .comment-list > .comment .comment-body .comment-author .avatar {
      border-radius: 100%;
      position: absolute;
      left: 0;
      height: 85px;
      width: 85px;
      top: 0; }
      @media only screen and (max-width: 767px) {
        .comments-area .comment-list > .comment .comment-body .comment-author .avatar {
          width: 60px;
          height: 60px; } }
    .comments-area .comment-list > .comment .comment-body .comment-author .fn {
      font-size: 16px;
      line-height: 1;
      color: var(--title);
      font-weight: 700;
      font-style: normal;
      margin-bottom: 10px;
      display: block;
      letter-spacing: 1.6px;
      font-family: var(--font-family-title); }
      @media only screen and (max-width: 767px) {
        .comments-area .comment-list > .comment .comment-body .comment-author .fn {
          margin-bottom: 15px; } }
    .comments-area .comment-list > .comment .comment-body .comment-content .dz-page-text {
      max-width: 100%;
      padding-bottom: 0 !important; }
    .comments-area .comment-list > .comment .comment-body .comment-content p {
      font-size: 14px;
      font-family: var(--font-family-base);
      margin-bottom: 10px;
      color: #666666; }
      .comments-area .comment-list > .comment .comment-body .comment-content p:last-child {
        margin-bottom: 0; }
    .comments-area .comment-list > .comment .comment-body .reply .comment-reply-link {
      font-weight: 400;
      font-size: 14px;
      background: var(--primary);
      color: var(--title);
      padding: 3px 10px;
      display: inline-block;
      line-height: 1.2;
      -webkit-transition: all 0.8s;
      -ms-transition: all 0.8s;
      transition: all 0.8s;
      position: absolute;
      right: 0;
      top: 0;
      font-family: var(--font-family-base); }
      .comments-area .comment-list > .comment .comment-body .reply .comment-reply-link:hover {
        background: var(--primary-hover); }
      .comments-area .comment-list > .comment .comment-body .reply .comment-reply-link i {
        margin-right: 8px;
        font-size: 14px; }
  .comments-area .comment-list > .comment:last-child {
    border-bottom: 0;
    margin-bottom: 0; }
  .comments-area .comment-list > .comment > .children {
    padding-left: 50px; }
    @media only screen and (max-width: 991px) {
      .comments-area .comment-list > .comment > .children {
        padding-left: 30px; } }
    @media only screen and (max-width: 575px) {
      .comments-area .comment-list > .comment > .children {
        padding-left: 15px; } }
  .comments-area .comment-list .comment-form {
    margin-bottom: 40px; }

.comment-reply-title a {
  font-size: 14px;
  font-weight: 400; }

.comment-respond small, .comment-respond .small {
  font-size: 14px;
  margin-left: 7px; }
  .comment-respond small a, .comment-respond .small a {
    color: #ef060f; }

.comment-respond .comment-form {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px; }
  .comment-respond .comment-form p {
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
    width: 50%; }
    @media only screen and (max-width: 575px) {
      .comment-respond .comment-form p {
        margin-bottom: 15px; } }
    .comment-respond .comment-form p.comment-form-author input,
    .comment-respond .comment-form p.comment-form-email input,
    .comment-respond .comment-form p.comment-form-url input,
    .comment-respond .comment-form p textarea {
      width: 100%;
      height: 50px;
      padding: 10px 20px;
      position: relative;
      font-size: 15px;
      border: 1px solid #F6F6F6;
      background: #F6F6F6; }
      .comment-respond .comment-form p.comment-form-author input:focus, .comment-respond .comment-form p.comment-form-author input:active,
      .comment-respond .comment-form p.comment-form-email input:focus,
      .comment-respond .comment-form p.comment-form-email input:active,
      .comment-respond .comment-form p.comment-form-url input:focus,
      .comment-respond .comment-form p.comment-form-url input:active,
      .comment-respond .comment-form p textarea:focus,
      .comment-respond .comment-form p textarea:active {
        background: #fff;
        border-color: var(--primary); }
      @media only screen and (max-width: 575px) {
        .comment-respond .comment-form p.comment-form-author input,
        .comment-respond .comment-form p.comment-form-email input,
        .comment-respond .comment-form p.comment-form-url input,
        .comment-respond .comment-form p textarea {
          font-size: 16px; } }
    .comment-respond .comment-form p.comment-form-comment textarea {
      height: 150px !important; }
    .comment-respond .comment-form p.form-submit {
      margin-bottom: 0; }
    .comment-respond .comment-form p.comment-form-cookies-consent, .comment-respond .comment-form p.comment-notes, .comment-respond .comment-form p.comment-form-url {
      width: 100%; }
    .comment-respond .comment-form p.comment-form-url {
      width: 100%; }
  .comment-respond .comment-form .comment-form-comment {
    width: 100%;
    padding-left: 10px;
    padding-right: 10px; }

@media only screen and (max-width: 575px) {
  .comment-respond .comment-form .comment-form-author,
  .comment-respond .comment-form .comment-form-email,
  .comment-respond .comment-form .comment-form-url {
    width: 100% !important; } }

.dz-page-text [class*="galleryid-"],
.dz-post-text [class*="galleryid-"] {
  clear: both;
  margin: 0 auto;
  overflow: hidden; }

.gallery .gallery-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding: 0.3125rem;
  position: relative;
  box-sizing: border-box; }
  .gallery .gallery-item img {
    float: left;
    padding: 0 0rem;
    width: 100%;
    border: none !important; }

.gallery .gallery-caption {
  font-size: 0.813rem;
  color: #707070;
  display: block;
  font-family: "Noto Sans", sans-serif;
  line-height: 1.5;
  padding: 0.5em 0;
  clear: both; }

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

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

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

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

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

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

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

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

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

.gallery-icon img {
  margin: 0 auto; }

.post-password-form {
  position: relative;
  clear: both; }
  .post-password-form label {
    display: block;
    font-size: 1rem; }
  .post-password-form input[type="password"] {
    width: 100%;
    border: 0.0625rem solid #ebedf2;
    padding: 0.625rem 6.25rem 0.625rem 0.938rem;
    height: 2.8125rem;
    border: 0.0625rem solid #ced4da; }
  .post-password-form input[type="submit"] {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0.625rem 1.25rem;
    background: var(--primary);
    color: #FFF;
    border: none;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 0.875rem;
    outline: none;
    height: 2.8125rem; }
    .post-password-form input[type="submit"]:hover {
      background: var(--primary-hover); }

@media only screen and (max-width: 991px) {
  .side-bar.sticky-top {
    position: unset;
    padding: 0; } }

.blog-post-banner {
  min-height: 300px;
  padding-top: 70px;
  padding-bottom: 70px; }
  .blog-post-banner .dz-title {
    color: #fff;
    font-size: 32px;
    margin-bottom: 20px; }
  .blog-post-banner .dz-meta {
    color: #fff; }
    .blog-post-banner .dz-meta ul {
      display: flex;
      opacity: 0.7; }
      .blog-post-banner .dz-meta ul li {
        margin-right: 20px; }
        .blog-post-banner .dz-meta ul li a {
          color: #fff; }

.post-outside {
  margin-top: -120px; }

.single-post .main-bar {
  border-bottom: 1px solid #eee; }

.dz-load-more i:before,
.loadmore-btn i:before {
  -webkit-animation: unset !important;
  -moz-animation: unset !important;
  animation: unset !important; }

.dz-share-post {
  border-top: 1px solid rgba(34, 34, 34, 0.1);
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0; }
  .dz-share-post .post-tags a {
    position: relative;
    padding: 3px;
    display: inline-block;
    margin: 3px;
    font-size: 14px;
    color: inherit;
    line-height: 1.3;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .dz-share-post .post-tags a span {
      display: inline-block; }
    .dz-share-post .post-tags a:hover {
      color: var(--primary); }
  @media only screen and (max-width: 575px) {
    .dz-share-post .post-tags a {
      margin-right: 5px; } }
  .dz-share-post .dz-social .post-social-icons-wrap ul {
    display: flex;
    gap: 15px; }

#comment-list:empty + .paginate-links {
  margin-top: -30px; }

.post-swiper {
  width: 100%; }

.post-swiper,
.post-swiper-thumb,
.service-swiper {
  position: relative; }
  .post-swiper .btn-prev,
  .post-swiper .btn-next,
  .post-swiper .prev-post-swiper-btn,
  .post-swiper .next-post-swiper-btn,
  .post-swiper .prev-service-swiper-btn,
  .post-swiper .next-service-swiper-btn,
  .post-swiper-thumb .btn-prev,
  .post-swiper-thumb .btn-next,
  .post-swiper-thumb .prev-post-swiper-btn,
  .post-swiper-thumb .next-post-swiper-btn,
  .post-swiper-thumb .prev-service-swiper-btn,
  .post-swiper-thumb .next-service-swiper-btn,
  .service-swiper .btn-prev,
  .service-swiper .btn-next,
  .service-swiper .prev-post-swiper-btn,
  .service-swiper .next-post-swiper-btn,
  .service-swiper .prev-service-swiper-btn,
  .service-swiper .next-service-swiper-btn {
    position: absolute;
    top: 50%;
    height: 45px;
    width: 45px;
    line-height: 45px;
    text-align: center;
    font-size: 20px;
    background-color: #fff;
    color: var(--primary);
    z-index: 1;
    margin: 0 10px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    transform: none; }
    .post-swiper .btn-prev:hover,
    .post-swiper .btn-next:hover,
    .post-swiper .prev-post-swiper-btn:hover,
    .post-swiper .next-post-swiper-btn:hover,
    .post-swiper .prev-service-swiper-btn:hover,
    .post-swiper .next-service-swiper-btn:hover,
    .post-swiper-thumb .btn-prev:hover,
    .post-swiper-thumb .btn-next:hover,
    .post-swiper-thumb .prev-post-swiper-btn:hover,
    .post-swiper-thumb .next-post-swiper-btn:hover,
    .post-swiper-thumb .prev-service-swiper-btn:hover,
    .post-swiper-thumb .next-service-swiper-btn:hover,
    .service-swiper .btn-prev:hover,
    .service-swiper .btn-next:hover,
    .service-swiper .prev-post-swiper-btn:hover,
    .service-swiper .next-post-swiper-btn:hover,
    .service-swiper .prev-service-swiper-btn:hover,
    .service-swiper .next-service-swiper-btn:hover {
      background-color: var(--primary);
      color: #fff; }
  .post-swiper .btn-prev,
  .post-swiper .prev-post-swiper-btn,
  .post-swiper .prev-service-swiper-btn,
  .post-swiper-thumb .btn-prev,
  .post-swiper-thumb .prev-post-swiper-btn,
  .post-swiper-thumb .prev-service-swiper-btn,
  .service-swiper .btn-prev,
  .service-swiper .prev-post-swiper-btn,
  .service-swiper .prev-service-swiper-btn {
    left: 0; }
  .post-swiper .btn-next,
  .post-swiper .next-post-swiper-btn,
  .post-swiper .next-service-swiper-btn,
  .post-swiper-thumb .btn-next,
  .post-swiper-thumb .next-post-swiper-btn,
  .post-swiper-thumb .next-service-swiper-btn,
  .service-swiper .btn-next,
  .service-swiper .next-post-swiper-btn,
  .service-swiper .next-service-swiper-btn {
    right: 0; }
  .post-swiper .swiper-slide img,
  .post-swiper-thumb .swiper-slide img,
  .service-swiper .swiper-slide img {
    width: 100%; }

.post-swiper-thumb .swiper-button-next::after,
.post-swiper-thumb .swiper-button-prev::after {
  display: none; }

.service-swiper img {
  border-radius: var(--border-radius-base); }

.blog-single .dz-media + .dz-info {
  padding: 30px 0 0; }

.author-box {
  padding: 50px 30px;
  text-align: center;
  background: #F8F8F8; }
  .author-box .author-profile-info {
    align-items: center; }
    .author-box .author-profile-info .author-profile-pic {
      width: 150px;
      height: 150px;
      overflow: hidden;
      min-width: 150px;
      margin-left: auto;
      margin-right: auto;
      margin-bottom: 30px; }
      @media only screen and (max-width: 575px) {
        .author-box .author-profile-info .author-profile-pic {
          width: 100px;
          height: 100px;
          min-width: 100px;
          margin-bottom: 20px; } }
      .author-box .author-profile-info .author-profile-pic img {
        width: 100%; }
    .author-box .author-profile-info .author-profile-content p {
      margin-bottom: 15px; }
    .author-box .author-profile-info .author-profile-content img {
      width: 180px;
      margin-bottom: 15px;
      display: block;
      margin-left: auto;
      margin-right: auto; }
    .author-box .author-profile-info .author-profile-content ul {
      padding: 0;
      margin: 0;
      margin-right: 5px;
      display: flex;
      justify-content: center; }
      @media only screen and (max-width: 575px) {
        .author-box .author-profile-info .author-profile-content ul {
          display: inline-block;
          float: none;
          margin-right: 0; } }
      .author-box .author-profile-info .author-profile-content ul li {
        padding: 0;
        margin: 0;
        margin-right: 10px;
        float: left; }
        @media only screen and (max-width: 575px) {
          .author-box .author-profile-info .author-profile-content ul li {
            margin-right: 5px;
            margin-left: 5px; } }
        .author-box .author-profile-info .author-profile-content ul li a {
          height: 40px;
          width: 40px;
          line-height: 40px;
          text-align: center;
          font-size: 14px;
          background: var(--primary);
          color: #000;
          vertical-align: middle;
          display: block;
          -webkit-transition: all 0.5s;
          -ms-transition: all 0.5s;
          transition: all 0.5s;
          border-radius: var(--border-radius-sm); }
          .author-box .author-profile-info .author-profile-content ul li a:hover {
            background: var(-secondary);
            color: #fff; }

#comment-list:empty + .paginate-links {
  margin-top: -30px; }

.bypostauthor {
  font-size: normal; }

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important; }
  .screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000; }

.wp-block-columns.alignfull,
.alignfull:not(.has-background) .wp-block-columns {
  padding-left: 1rem;
  padding-right: 1rem; }

.wp-block-post-comments-form {
  margin-bottom: 30px; }
  .wp-block-post-comments-form .comment-reply-title {
    margin-bottom: 30px; }
  .wp-block-post-comments-form input[type=submit] {
    font-size: 16px;
    padding: 12px 30px;
    line-height: 24px;
    display: inline-flex;
    border-radius: var(--bs-border-radius);
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    font-family: "DM Sans",sans-serif;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    -webkit-transition: all .2s;
    -ms-transition: all .2s;
    transition: all .2s;
    text-decoration: none;
    vertical-align: middle;
    justify-content: center;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    color: #fff;
    background-color: var(--primary);
    border-color: var(--primary); }
    .wp-block-post-comments-form input[type=submit]:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
      opacity: 0.8;
      -webkit-transform: translate(-105%, 0);
      transform: translate(-105%, 0);
      border-right-width: 2px;
      border-right-style: solid;
      border-right-color: white;
      background-color: rgba(255, 255, 255, 0.5); }
    .wp-block-post-comments-form input[type=submit]:hover {
      box-shadow: none;
      text-decoration: none; }
      .wp-block-post-comments-form input[type=submit]:hover:after {
        opacity: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0); }
    .wp-block-post-comments-form input[type=submit]:hover {
      color: #fff;
      background-color: var(--primary-hover);
      border-color: var(--primary-hover); }

.wp-block-group__inner-container p {
  margin-bottom: 0;
  margin: 1rem 0; }

:where(.wp-block-columns.has-background) {
  padding: 1.25em 2.375em; }

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
  border: none; }

.wp-block-image figcaption {
  text-align: unset; }

.wp-block-code,
pre.wp-block-code,
pre {
  margin: 0 0 1.563rem;
  padding: 1.25rem;
  color: #fff;
  background-color: #212326;
  white-space: pre;
  font-size: 0.938rem;
  border-radius: 0.1875rem; }

.wp-block-code > code {
  background: transparent;
  font-family: inherit;
  color: unset;
  padding: unset;
  border: unset;
  border-radius: unset; }

.wp-block-buttons {
  margin-bottom: 1.75em; }

.dz-post-text form input[type="reset"],
.dz-post-text form input[type="submit"] {
  font-size: 16px;
  padding: 12px 30px;
  line-height: 24px;
  display: inline-flex;
  border-radius: var(--bs-border-radius);
  font-weight: 500;
  position: relative;
  text-transform: capitalize;
  font-family: "DM Sans",sans-serif;
  align-items: center;
  overflow: hidden;
  z-index: 1;
  text-align: center;
  -webkit-transition: all .2s;
  -ms-transition: all .2s;
  transition: all .2s;
  text-decoration: none;
  vertical-align: middle;
  justify-content: center;
  border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
  color: #fff;
  background-color: var(--primary);
  border-color: var(--primary); }
  .dz-post-text form input[type="reset"]:after,
  .dz-post-text form input[type="submit"]:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    opacity: 0.8;
    -webkit-transform: translate(-105%, 0);
    transform: translate(-105%, 0);
    border-right-width: 2px;
    border-right-style: solid;
    border-right-color: white;
    background-color: rgba(255, 255, 255, 0.5); }
  .dz-post-text form input[type="reset"]:hover,
  .dz-post-text form input[type="submit"]:hover {
    box-shadow: none;
    text-decoration: none; }
    .dz-post-text form input[type="reset"]:hover:after,
    .dz-post-text form input[type="submit"]:hover:after {
      opacity: 0;
      -webkit-transform: translate(0, 0);
      transform: translate(0, 0); }
  .dz-post-text form input[type="reset"]:hover,
  .dz-post-text form input[type="submit"]:hover {
    color: #fff;
    background-color: var(--primary-hover);
    border-color: var(--primary-hover); }

.dz-post-text form textarea,
.dz-post-text form input[type="file"],
.dz-post-text form input[type="text"],
.dz-post-text form input[type="password"] {
  height: 50px;
  border: 0;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 400;
  color: #24262B;
  transition: all 0.3s ease-in-out;
  background: #F3F3F3;
  border-radius: var(--bs-border-radius);
  display: block;
  width: 100%;
  line-height: 1.6;
  background-clip: padding-box;
  border: var(--bs-border-width) solid var(--bs-border-color);
  appearance: none;
  border: 0;
  color: #000;
  border: 1px solid transparent; }
  .dz-post-text form textarea:focus,
  .dz-post-text form input[type="file"]:focus,
  .dz-post-text form input[type="text"]:focus,
  .dz-post-text form input[type="password"]:focus {
    box-shadow: 0 0 0 0.25rem var(--rgba-primary-3); }

.dz-post-text form textarea {
  min-height: 120px; }

.dz-post-text form label {
  color: var(--title);
  font-weight: 500; }

.wp-block-cover:not([class*=background-color]) .wp-block-cover__inner-container,
.wp-block-cover:not([class*=background-color]) .wp-block-cover-image-text,
.wp-block-cover:not([class*=background-color]) .wp-block-cover-text,
.wp-block-cover-image:not([class*=background-color]) .wp-block-cover__inner-container, .wp-block-cover-image:not([class*=background-color]) .wp-block-cover-image-text,
.wp-block-cover-image:not([class*=background-color]) .wp-block-cover-text {
  color: #fff; }

.wp-block-navigation__responsive-container-content .wp-block-page-list li {
  padding: 10px 20px !important; }
  .wp-block-navigation__responsive-container-content .wp-block-page-list li ul {
    margin: 0; }

.extra-blog h5, .extra-blog .h5 {
  font-size: 18px; }

.wp-block-group:where(.has-background) {
  padding: 1.25em 2.375em;
  margin: 20px 0; }

.wp-block-navigation .wp-block-navigation-item__content.wp-block-navigation-item__content {
  color: var(--title); }

.blog-slideshow {
  overflow: hidden;
  border-radius: 20px; }

.wp-block-post-template > li .wp-block-post-title {
  margin-bottom: 5px; }

.wp-block-post-template > li .wp-block-post-date {
  margin-bottom: 5px;
  color: var(--primary); }

.wp-block-file__button {
  padding: 0 8px; }

.wp-block-media-text__media {
  border-radius: 20px; }

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

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

.embed-responsive .ytp-impression-link {
  opacity: 0; }

.ytp-impression-link {
  opacity: 0; }

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

.wp-block-search__inside-wrapper {
  position: relative; }

.widget_powerzone_dz_recent_post .recent-posts-entry .widget-post-bx .widget-post {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border: 1px solid #F2F2F2;
  padding: 10px; }
  .widget_powerzone_dz_recent_post .recent-posts-entry .widget-post-bx .widget-post .dz-media {
    height: 80px;
    min-width: 100px;
    width: 100px;
    margin-right: 15px; }
  .widget_powerzone_dz_recent_post .recent-posts-entry .widget-post-bx .widget-post .dz-info .title {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 15px;
    font-family: var(--font-family-base);
    margin-bottom: 8px; }
  .widget_powerzone_dz_recent_post .recent-posts-entry .widget-post-bx .widget-post .dz-info .post-date {
    color: #666666;
    position: relative;
    font-weight: 500;
    font-size: 12px;
    line-height: 20px;
    margin-right: 8px;
    padding-right: 8px; }
    .widget_powerzone_dz_recent_post .recent-posts-entry .widget-post-bx .widget-post .dz-info .post-date i {
      color: var(--primary);
      margin-right: 4px; }
    .widget_powerzone_dz_recent_post .recent-posts-entry .widget-post-bx .widget-post .dz-info .post-date:after {
      display: none; }

.widget_powerzone_dz_recent_post.footer-sidebar-1 .recent-posts-entry .widget-post-bx .widget-post {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  border: 0;
  padding: 0; }
  .widget_powerzone_dz_recent_post.footer-sidebar-1 .recent-posts-entry .widget-post-bx .widget-post .dz-media {
    height: 80px;
    min-width: 100px;
    width: 100px;
    margin-right: 15px; }
  .widget_powerzone_dz_recent_post.footer-sidebar-1 .recent-posts-entry .widget-post-bx .widget-post .dz-info .title {
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 18px;
    font-family: var(--font-family-base);
    line-height: 1.2; }
  .widget_powerzone_dz_recent_post.footer-sidebar-1 .recent-posts-entry .widget-post-bx .widget-post .dz-info .post-date {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary); }
    .widget_powerzone_dz_recent_post.footer-sidebar-1 .recent-posts-entry .widget-post-bx .widget-post .dz-info .post-date i {
      display: none; }

.post-btn {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #ededee;
  border-bottom: 1px solid #ededee;
  padding: 15px 0;
  margin: 50px 0px;
  position: relative; }
  .post-btn:after {
    content: "";
    height: calc(100% - 30px);
    width: 1px;
    background: #ededee;
    position: absolute;
    left: 50%;
    top: 15px; }
  .post-btn .prev-post,
  .post-btn .next-post {
    max-width: 50%;
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    position: relative; }
    .post-btn .prev-post img,
    .post-btn .next-post img {
      height: 70px;
      width: 85px;
      object-fit: cover; }
      @media only screen and (max-width: 767px) {
        .post-btn .prev-post img,
        .post-btn .next-post img {
          display: none; } }
    .post-btn .prev-post .start,
    .post-btn .prev-post .end,
    .post-btn .next-post .start,
    .post-btn .next-post .end {
      color: #b5b5b5;
      cursor: not-allowed;
      width: 100%;
      padding: 0;
      margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      .post-btn .prev-post .title,
      .post-btn .next-post .title {
        font-size: 14px; } }
    .post-btn .prev-post .title a,
    .post-btn .next-post .title a {
      display: block;
      margin-bottom: 5px; }
    .post-btn .prev-post .title .post-date,
    .post-btn .next-post .title .post-date {
      display: block;
      font-size: 13px;
      font-weight: 400;
      color: #666; }
      @media only screen and (max-width: 767px) {
        .post-btn .prev-post .title .post-date,
        .post-btn .next-post .title .post-date {
          font-size: 12px; } }
  .post-btn .next-post {
    padding-right: 30px;
    padding-left: 10px; }
    @media only screen and (max-width: 767px) {
      .post-btn .next-post {
        padding-right: 30px; } }
    .post-btn .next-post .title {
      text-align: right;
      width: 100%;
      margin-bottom: 0; }
    .post-btn .next-post .title + img {
      margin-left: 20px; }
    .post-btn .next-post .end {
      text-align: right; }
    .post-btn .next-post:after {
      content: "\f105";
      font-family: "FontAwesome";
      color: var(--title);
      position: absolute;
      right: 0;
      top: 50%;
      font-size: 18px;
      transform: translateY(-50%); }
  .post-btn .prev-post {
    padding-left: 30px;
    padding-right: 10px; }
    @media only screen and (max-width: 767px) {
      .post-btn .prev-post {
        padding-left: 30px; } }
    .post-btn .prev-post .title {
      margin-bottom: 0;
      width: 100%; }
    .post-btn .prev-post img {
      margin-right: 20px; }
    .post-btn .prev-post:after {
      content: "\f104";
      font-family: "FontAwesome";
      color: var(--title);
      position: absolute;
      left: 0;
      top: 50%;
      font-size: 18px;
      transform: translateY(-50%); }

.error-page-1 {
  position: relative;
  height: 100vh;
  min-height: 900px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center; }
  .error-page-1 .inner-content {
    padding-top: 100px; }
  .error-page-1:after {
    content: "";
    position: absolute;
    background-image: url(../images/background/bg9.png);
    z-index: -2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9; }
  .error-page-1 .dz_error {
    position: relative;
    display: inline-block;
    font-size: 320px;
    font-weight: 700;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-family: var(--font-family-title);
    margin-bottom: 25px;
    line-height: 1; }
    .error-page-1 .dz_error span {
      line-height: 1; }
      .error-page-1 .dz_error span i {
        font-size: 250px;
        color: var(--primary); }
    @media only screen and (max-width: 1680px) {
      .error-page-1 .dz_error {
        font-size: 250px;
        height: 250px;
        margin-bottom: 10px; }
        .error-page-1 .dz_error span i {
          font-size: 200px; } }
    @media only screen and (max-width: 991px) {
      .error-page-1 .dz_error {
        font-size: 240px; } }
    @media only screen and (max-width: 767px) {
      .error-page-1 .dz_error span i {
        font-size: 180px; } }
    @media only screen and (max-width: 575px) {
      .error-page-1 .dz_error {
        font-size: 160px;
        height: 165px; }
        .error-page-1 .dz_error span i {
          font-size: 125px; } }
  .error-page-1 .error-head {
    font-size: 80px;
    color: #fff;
    font-weight: 700;
    font-style: italic;
    letter-spacing: 1.6px; }
    @media only screen and (max-width: 1280px) {
      .error-page-1 .error-head {
        font-size: 55px; } }
    @media only screen and (max-width: 767px) {
      .error-page-1 .error-head {
        font-size: 45px; } }
    @media only screen and (max-width: 575px) {
      .error-page-1 .error-head {
        font-size: 35px; } }
  .error-page-1 .text {
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    max-width: 505px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto; }
  @media only screen and (max-width: 1480px) {
    .error-page-1 {
      min-height: 750px; }
      .error-page-1 .inner-content {
        padding-top: 80px; } }
  @media only screen and (max-width: 991px) {
    .error-page-1 .inner-content {
      padding-top: 50px; } }
  @media only screen and (max-width: 767px) {
    .error-page-1 .inner-content {
      padding-top: 0px; } }
  @media only screen and (max-width: 575px) {
    .error-page-1 .text {
      font-size: 16px;
      margin-bottom: 15px; } }

/* Appointment Page 2 */
.appointment-page-1 .wizard-form .nav {
  border: 1px solid rgba(0, 0, 0, 0.1); }
  .appointment-page-1 .wizard-form .nav .nav-item .nav-link {
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--theme-text-color); }
    @media only screen and (max-width: 767px) {
      .appointment-page-1 .wizard-form .nav .nav-item .nav-link {
        justify-content: left; } }
    @media only screen and (max-width: 575px) {
      .appointment-page-1 .wizard-form .nav .nav-item .nav-link {
        justify-content: left; } }
    .appointment-page-1 .wizard-form .nav .nav-item .nav-link .num {
      display: inline-block;
      font-size: 16px;
      background-color: var(--primary);
      color: var(--theme-text-color);
      height: 35px;
      width: 35px;
      line-height: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      margin-right: 10px; }
      .appointment-page-1 .wizard-form .nav .nav-item .nav-link .num i {
        font-size: 0; }
    .appointment-page-1 .wizard-form .nav .nav-item .nav-link.default {
      cursor: not-allowed; }
    .appointment-page-1 .wizard-form .nav .nav-item .nav-link.active {
      background-color: var(--primary);
      color: var(--theme-text-color);
      cursor: pointer; }
      .appointment-page-1 .wizard-form .nav .nav-item .nav-link.active .num {
        background-color: var(--secondary);
        color: #fff; }
        .appointment-page-1 .wizard-form .nav .nav-item .nav-link.active .num strong {
          font-size: 16px; }
        .appointment-page-1 .wizard-form .nav .nav-item .nav-link.active .num i {
          font-size: 0; }
    .appointment-page-1 .wizard-form .nav .nav-item .nav-link.done {
      background-color: var(--secondary);
      color: #fff;
      cursor: pointer; }
      .appointment-page-1 .wizard-form .nav .nav-item .nav-link.done .num {
        background-color: var(--primary);
        color: var(--theme-text-color); }
        .appointment-page-1 .wizard-form .nav .nav-item .nav-link.done .num strong {
          font-size: 0; }
        .appointment-page-1 .wizard-form .nav .nav-item .nav-link.done .num i {
          font-size: 16px; }

.appointment-page-1 .wizard-form .tab-content {
  overflow: unset;
  margin-bottom: 30px; }
  .appointment-page-1 .wizard-form .tab-content .tab-pane {
    padding: 20px;
    border: 5px solid #F4F4F4;
    background-color: #fff;
    margin: 30px 0;
    text-align: left; }
    .appointment-page-1 .wizard-form .tab-content .tab-pane .form-label {
      font-size: 16px;
      color: var(--primary); }

.appointment-page-1 .wizard-form .default-select .btn.dropdown-toggle:after, .appointment-page-1 .wizard-form .default-select .dropdown-toggle.wp-block-button__link:after, .appointment-page-1 .wizard-form .default-select .woocommerce .widget_shopping_cart .buttons a.dropdown-toggle:after, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .default-select a.dropdown-toggle:after,
.appointment-page-1 .wizard-form .default-select .woocommerce.widget_shopping_cart .buttons a.dropdown-toggle:after, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .default-select a.dropdown-toggle:after, .appointment-page-1 .wizard-form .default-select .woocommerce #review_form #respond .form-submit input.dropdown-toggle:after, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .default-select input.dropdown-toggle:after, .appointment-page-1 .wizard-form .default-select .woocommerce-cart-form .table.shop_table tr .dropdown-toggle.button:after, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .default-select .dropdown-toggle.button:after, .appointment-page-1 .wizard-form .default-select .woocommerce-cart .wc-proceed-to-checkout a.dropdown-toggle.checkout-button:after, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .default-select a.dropdown-toggle.checkout-button:after, .appointment-page-1 .wizard-form .default-select .woocommerce #respond input.dropdown-toggle#submit:after, .woocommerce #respond .appointment-page-1 .wizard-form .default-select input.dropdown-toggle#submit:after,
.appointment-page-1 .wizard-form .default-select .woocommerce a.dropdown-toggle.button:after, .woocommerce .appointment-page-1 .wizard-form .default-select a.dropdown-toggle.button:after,
.appointment-page-1 .wizard-form .default-select .woocommerce button.dropdown-toggle.button:after, .woocommerce .appointment-page-1 .wizard-form .default-select button.dropdown-toggle.button:after,
.appointment-page-1 .wizard-form .default-select .woocommerce input.dropdown-toggle.button:after, .woocommerce .appointment-page-1 .wizard-form .default-select input.dropdown-toggle.button:after,
.appointment-page-1 .wizard-form .default-select .woocommerce .dropdown-toggle#place_order:after, .woocommerce .appointment-page-1 .wizard-form .default-select .dropdown-toggle#place_order:after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  right: 15px;
  top: 6px;
  font-size: 16px;
  border: 0; }

.appointment-page-1 .wizard-form .book-time ul li {
  margin: 0 0 12px; }

.appointment-page-1 .wizard-form .book-time .btn, .appointment-page-1 .wizard-form .book-time .wp-block-button__link, .appointment-page-1 .wizard-form .book-time .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .book-time a,
.appointment-page-1 .wizard-form .book-time .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .book-time a, .appointment-page-1 .wizard-form .book-time .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .book-time input, .appointment-page-1 .wizard-form .book-time .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .book-time .button, .appointment-page-1 .wizard-form .book-time .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .book-time a.checkout-button, .appointment-page-1 .wizard-form .book-time .woocommerce #respond input#submit, .woocommerce #respond .appointment-page-1 .wizard-form .book-time input#submit,
.appointment-page-1 .wizard-form .book-time .woocommerce a.button, .woocommerce .appointment-page-1 .wizard-form .book-time a.button,
.appointment-page-1 .wizard-form .book-time .woocommerce button.button, .woocommerce .appointment-page-1 .wizard-form .book-time button.button,
.appointment-page-1 .wizard-form .book-time .woocommerce input.button, .woocommerce .appointment-page-1 .wizard-form .book-time input.button,
.appointment-page-1 .wizard-form .book-time .woocommerce #place_order, .woocommerce .appointment-page-1 .wizard-form .book-time #place_order {
  width: 100%;
  border-radius: 0 !important;
  background-color: #f5f5f5;
  color: var(--title); }
  .appointment-page-1 .wizard-form .book-time .btn.active-time, .appointment-page-1 .wizard-form .book-time .active-time.wp-block-button__link, .appointment-page-1 .wizard-form .book-time .woocommerce .widget_shopping_cart .buttons a.active-time, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .book-time a.active-time,
  .appointment-page-1 .wizard-form .book-time .woocommerce.widget_shopping_cart .buttons a.active-time, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .book-time a.active-time, .appointment-page-1 .wizard-form .book-time .woocommerce #review_form #respond .form-submit input.active-time, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .book-time input.active-time, .appointment-page-1 .wizard-form .book-time .woocommerce-cart-form .table.shop_table tr .active-time.button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .book-time .active-time.button, .appointment-page-1 .wizard-form .book-time .woocommerce-cart .wc-proceed-to-checkout a.active-time.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .book-time a.active-time.checkout-button, .appointment-page-1 .wizard-form .book-time .woocommerce #respond input.active-time#submit, .woocommerce #respond .appointment-page-1 .wizard-form .book-time input.active-time#submit,
  .appointment-page-1 .wizard-form .book-time .woocommerce a.active-time.button, .woocommerce .appointment-page-1 .wizard-form .book-time a.active-time.button,
  .appointment-page-1 .wizard-form .book-time .woocommerce button.active-time.button, .woocommerce .appointment-page-1 .wizard-form .book-time button.active-time.button,
  .appointment-page-1 .wizard-form .book-time .woocommerce input.active-time.button, .woocommerce .appointment-page-1 .wizard-form .book-time input.active-time.button,
  .appointment-page-1 .wizard-form .book-time .woocommerce .active-time#place_order, .woocommerce .appointment-page-1 .wizard-form .book-time .active-time#place_order {
    background-color: var(--secondary);
    color: #fff; }

.appointment-page-1 .wizard-form .book-time input {
  display: none; }
  .appointment-page-1 .wizard-form .book-time input:checked + .btn.active-time, .appointment-page-1 .wizard-form .book-time input:checked + .active-time.wp-block-button__link, .appointment-page-1 .wizard-form .book-time .woocommerce .widget_shopping_cart .buttons input:checked + a.active-time, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .book-time input:checked + a.active-time,
  .appointment-page-1 .wizard-form .book-time .woocommerce.widget_shopping_cart .buttons input:checked + a.active-time, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .book-time input:checked + a.active-time, .appointment-page-1 .wizard-form .book-time .woocommerce #review_form #respond .form-submit input:checked + input.active-time, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .book-time input:checked + input.active-time, .appointment-page-1 .wizard-form .book-time .woocommerce-cart-form .table.shop_table tr input:checked + .active-time.button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .book-time input:checked + .active-time.button, .appointment-page-1 .wizard-form .book-time .woocommerce-cart .wc-proceed-to-checkout input:checked + a.active-time.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .book-time input:checked + a.active-time.checkout-button, .appointment-page-1 .wizard-form .book-time .woocommerce #respond input:checked + input.active-time#submit, .woocommerce #respond .appointment-page-1 .wizard-form .book-time input:checked + input.active-time#submit,
  .appointment-page-1 .wizard-form .book-time .woocommerce input:checked + a.active-time.button, .woocommerce .appointment-page-1 .wizard-form .book-time input:checked + a.active-time.button,
  .appointment-page-1 .wizard-form .book-time .woocommerce input:checked + button.active-time.button, .woocommerce .appointment-page-1 .wizard-form .book-time input:checked + button.active-time.button,
  .appointment-page-1 .wizard-form .book-time .woocommerce input:checked + input.active-time.button, .woocommerce .appointment-page-1 .wizard-form .book-time input:checked + input.active-time.button,
  .appointment-page-1 .wizard-form .book-time .woocommerce input:checked + .active-time#place_order, .woocommerce .appointment-page-1 .wizard-form .book-time input:checked + .active-time#place_order {
    background-color: var(--secondary);
    box-shadow: 0 0 0 0.2rem #fcde3b;
    color: #fff; }
  .appointment-page-1 .wizard-form .book-time input:checked + .btn, .appointment-page-1 .wizard-form .book-time input:checked + .wp-block-button__link, .appointment-page-1 .wizard-form .book-time .woocommerce .widget_shopping_cart .buttons input:checked + a, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form .book-time input:checked + a,
  .appointment-page-1 .wizard-form .book-time .woocommerce.widget_shopping_cart .buttons input:checked + a, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form .book-time input:checked + a, .appointment-page-1 .wizard-form .book-time .woocommerce #review_form #respond .form-submit input:checked + input, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form .book-time input:checked + input, .appointment-page-1 .wizard-form .book-time .woocommerce-cart-form .table.shop_table tr input:checked + .button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .book-time input:checked + .button, .appointment-page-1 .wizard-form .book-time .woocommerce-cart .wc-proceed-to-checkout input:checked + a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form .book-time input:checked + a.checkout-button, .appointment-page-1 .wizard-form .book-time .woocommerce #respond input:checked + input#submit, .woocommerce #respond .appointment-page-1 .wizard-form .book-time input:checked + input#submit,
  .appointment-page-1 .wizard-form .book-time .woocommerce input:checked + a.button, .woocommerce .appointment-page-1 .wizard-form .book-time input:checked + a.button,
  .appointment-page-1 .wizard-form .book-time .woocommerce input:checked + button.button, .woocommerce .appointment-page-1 .wizard-form .book-time input:checked + button.button,
  .appointment-page-1 .wizard-form .book-time .woocommerce input:checked + input.button, .woocommerce .appointment-page-1 .wizard-form .book-time input:checked + input.button,
  .appointment-page-1 .wizard-form .book-time .woocommerce input:checked + #place_order, .woocommerce .appointment-page-1 .wizard-form .book-time input:checked + #place_order {
    background-color: var(--primary);
    color: var(--theme-text-color); }

.appointment-page-1 .wizard-form .successful-check {
  width: 200px;
  height: 200px;
  border: 7px solid #00bb27;
  font-size: 100px;
  color: #00bb27;
  border-radius: 200px;
  line-height: 185px;
  margin: 0 auto 20px; }
  .appointment-page-1 .wizard-form .successful-check .successful-box h2, .appointment-page-1 .wizard-form .successful-check .successful-box .h2 {
    font-size: 84px;
    line-height: 100px;
    margin-bottom: 0;
    font-weight: 500; }

.appointment-page-1 .wizard-form .sw-btn-prev.wp-block-button__link, .appointment-page-1 .wizard-form .sw-btn-prev.btn, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.sw-btn-prev, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev,
.appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.sw-btn-prev, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.sw-btn-prev, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .sw-btn-prev.button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .sw-btn-prev.button, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.sw-btn-prev.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.sw-btn-prev.checkout-button, .appointment-page-1 .wizard-form .woocommerce #respond input.sw-btn-prev#submit, .woocommerce #respond .appointment-page-1 .wizard-form input.sw-btn-prev#submit,
.appointment-page-1 .wizard-form .woocommerce a.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form a.sw-btn-prev.button,
.appointment-page-1 .wizard-form .woocommerce button.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form button.sw-btn-prev.button,
.appointment-page-1 .wizard-form .woocommerce input.sw-btn-prev.button, .woocommerce .appointment-page-1 .wizard-form input.sw-btn-prev.button,
.appointment-page-1 .wizard-form .woocommerce .sw-btn-prev#place_order, .woocommerce .appointment-page-1 .wizard-form .sw-btn-prev#place_order {
  margin: 0; }

.appointment-page-1 .wizard-form .sw-btn-next.wp-block-button__link, .appointment-page-1 .wizard-form .sw-btn-next.btn, .appointment-page-1 .wizard-form .woocommerce .widget_shopping_cart .buttons a.sw-btn-next, .woocommerce .widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-next,
.appointment-page-1 .wizard-form .woocommerce.widget_shopping_cart .buttons a.sw-btn-next, .woocommerce.widget_shopping_cart .buttons .appointment-page-1 .wizard-form a.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce #review_form #respond .form-submit input.sw-btn-next, .woocommerce #review_form #respond .form-submit .appointment-page-1 .wizard-form input.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce-cart-form .table.shop_table tr .sw-btn-next.button, .woocommerce-cart-form .table.shop_table tr .appointment-page-1 .wizard-form .sw-btn-next.button, .appointment-page-1 .wizard-form .woocommerce-cart .wc-proceed-to-checkout a.sw-btn-next.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .appointment-page-1 .wizard-form a.sw-btn-next.checkout-button, .appointment-page-1 .wizard-form .woocommerce #respond input.sw-btn-next#submit, .woocommerce #respond .appointment-page-1 .wizard-form input.sw-btn-next#submit,
.appointment-page-1 .wizard-form .woocommerce a.sw-btn-next.button, .woocommerce .appointment-page-1 .wizard-form a.sw-btn-next.button,
.appointment-page-1 .wizard-form .woocommerce button.sw-btn-next.button, .woocommerce .appointment-page-1 .wizard-form button.sw-btn-next.button,
.appointment-page-1 .wizard-form .woocommerce input.sw-btn-next.button, .woocommerce .appointment-page-1 .wizard-form input.sw-btn-next.button,
.appointment-page-1 .wizard-form .woocommerce .sw-btn-next#place_order, .woocommerce .appointment-page-1 .wizard-form .sw-btn-next#place_order {
  margin: 0; }

.appointment-page-1 .wizard-form .toolbar-bottom {
  background-color: #f5f5f5;
  display: flex;
  justify-content: space-between;
  padding: 10px; }

.schedule-table table {
  width: 100%;
  text-align: center;
  background: var(--rgba-primary-05); }
  .schedule-table table thead tr {
    border: none; }
  .schedule-table table thead th {
    height: 75px;
    font-family: var(--font-family-title);
    background: var(--secondary) !important;
    color: #fff !important;
    font-weight: 400;
    border: none !important; }
  .schedule-table table td {
    height: 55px !important;
    width: 12.5%;
    vertical-align: middle;
    padding: 15px;
    position: relative;
    background: var(--secondary);
    border-color: #343434 !important; }
    .schedule-table table td.mptt-shortcode-event {
      border: 1px solid #343434 !important; }
    .schedule-table table td .mptt-event-container {
      justify-content: center;
      overflow: visible !important;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      background-color: var(--primary); }
    .schedule-table table td:hover .mptt-event-container {
      background-color: var(--primary) !important;
      color: #000 !important; }
      .schedule-table table td:hover .mptt-event-container:before,
      .schedule-table table td:hover .mptt-event-container .event-tag {
        opacity: 1; }
    .schedule-table table td.event {
      background-color: transparent !important; }
  .schedule-table table tr {
    border: 1px solid var(--rgba-primary-2); }
  .schedule-table table tbody td.event {
    background: none; }

.schedule-table.table-responsive {
  overflow-y: unset;
  overflow-x: unset; }

@media only screen and (max-width: 991px) {
  .schedule-table.table-responsive {
    overflow-y: scroll;
    overflow-x: scroll; }
  .schedule-table table {
    width: 150vw; } }

.mptt-shortcode-wrapper .mptt-shortcode-table tbody tr:nth-child(2n+2) {
  background-color: transparent; }

.table-responsive {
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch; }
  .table-responsive.table-responsive-md {
    min-width: 70rem !important; }
  .table-responsive.table-responsive-sm {
    min-width: 50rem !important; }

.table-responsive-lg {
  min-width: 50rem !important; }

.event-time,
.mptt-shortcode-hours {
  font-size: 14px;
  letter-spacing: 1px;
  background: var(--secondary) !important;
  color: rgba(255, 255, 255, 0.8);
  border-bottom: 1px solid rgba(0, 0, 0, 0.7) !important;
  border-top: 1px solid rgba(0, 0, 0, 0.7) !important; }

.mptt-event-container {
  background: #fff;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  position: absolute;
  outline: none !important; }
  .mptt-event-container .event-description {
    font-weight: 500;
    display: block;
    position: static;
    font-size: 1rem !important; }
  .mptt-event-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 0;
    opacity: 0;
    border-left: 0px solid transparent;
    border-right: 150px solid transparent;
    border-top: 10px solid var(--primary);
    clear: both;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .mptt-event-container .event-tag {
    position: absolute;
    opacity: 0;
    top: 0px;
    transform: translateY(-100%);
    left: 0;
    width: 100%;
    background: #000;
    color: #fff;
    font-size: 13px;
    padding: 4px 0;
    margin: 0 !important;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .mptt-event-container .subtitle {
    display: inline-block;
    font-size: 14px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
  .mptt-event-container .title {
    display: block;
    font-weight: 500; }

@media only screen and (max-width: 767px) {
  .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list {
    margin: 15px; }
    .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event {
      padding: 0 0 0 15px; } }

.mptt-menu {
  border: 0 solid var(--primary); }

.mptt-navigation-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 50px !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
  .mptt-navigation-tabs li {
    padding: 20px 0 !important; }
    .mptt-navigation-tabs li.active {
      border-color: transparent;
      border-bottom: 3px solid var(--primary);
      background-color: transparent; }
      .mptt-navigation-tabs li.active a {
        color: var(--primary); }
    .mptt-navigation-tabs li a {
      color: #555; }

@media only screen and (max-width: 767px) {
  .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column {
    margin-top: 0;
    margin-bottom: 10px; }
    .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-column-title {
      font-size: 16px;
      margin-bottom: 15px;
      margin-top: 8px; }
    .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list {
      margin: 0;
      display: flex;
      flex-wrap: wrap; }
      .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .mptt-list-event {
        width: 50%;
        border-left-color: var(--primary) !important; }
      .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .event-subtitle {
        font-weight: 500;
        color: var(--primary);
        font-size: 13px; }
      .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .event-description {
        color: #444;
        font-size: 14px; }
      .mptt-shortcode-wrapper .mptt-shortcode-list .mptt-column .mptt-events-list .event-user {
        font-size: 14px;
        color: #000;
        font-weight: 500; } }

.mptt-shortcode-wrapper .mptt-shortcode-table tbody .mptt-event-container {
  background-color: var(--secondary) !important;
  color: #fff !important;
  font-size: 14px !important; }

.coming-soon-1 {
  overflow: hidden;
  height: 100vh;
  position: relative;
  z-index: 1; }
  .coming-soon-1 .banner-img {
    position: relative;
    z-index: 1;
    height: 100%; }
    .coming-soon-1 .banner-img #video-background {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .coming-soon-1 .banner-img:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: var(--secondary);
      z-index: 1;
      opacity: 0.4; }
  .coming-soon-1 .coming-soon-detail {
    height: 100vh;
    width: 100%;
    background-color: #fff;
    z-index: 1;
    overflow: hidden;
    position: relative;
    display: flex;
    padding: 80px; }
    .coming-soon-1 .coming-soon-detail .inner-content {
      display: flex;
      flex-direction: column; }
    .coming-soon-1 .coming-soon-detail .title {
      font-size: 60px;
      font-weight: 700;
      margin-bottom: 20px;
      letter-spacing: 6px;
      text-transform: uppercase;
      font-style: italic; }
    .coming-soon-1 .coming-soon-detail p {
      font-size: 18px;
      max-width: 530px;
      margin: 0; }
    .coming-soon-1 .coming-soon-detail .countdown {
      margin-top: auto; }
      .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .items-days {
        height: 80px;
        position: relative;
        margin-bottom: 10px; }
        .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .items-days .val {
          position: absolute;
          left: 50%;
          top: 50%;
          transform: translate(-50%, -50%);
          font-size: 80px;
          font-weight: 900;
          color: var(--secondary);
          font-family: Kuunari; }
      .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .kineticjs-content canvas {
        display: none; }
      .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .kineticjs-content:after {
        content: none; }
      @media only screen and (max-width: 1280px) {
        .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .items-days .val {
          font-size: 65px; } }
      @media only screen and (max-width: 991px) {
        .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .items-days {
          height: 70px; } }
      @media only screen and (max-width: 767px) {
        .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .items-days {
          height: 50px; }
          .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .items-days .val {
            font-size: 55px;
            margin-bottom: 5px; } }
      @media only screen and (max-width: 575px) {
        .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .items-days {
          height: 35px; }
          .coming-soon-1 .coming-soon-detail .countdown.countdown-timer .items-days .val {
            font-size: 45px; } }
      .coming-soon-1 .coming-soon-detail .countdown .date {
        margin: 0 30px;
        display: inline-block;
        width: 75px;
        border-radius: 0;
        text-align: center; }
        .coming-soon-1 .coming-soon-detail .countdown .date:first-child {
          margin-left: 0; }
        .coming-soon-1 .coming-soon-detail .countdown .date span {
          display: block;
          font-weight: 500;
          color: var(--bs-body-color);
          border-radius: 6px;
          padding: 2px;
          font-size: 15px;
          font-weight: 500;
          text-transform: uppercase; }
        .coming-soon-1 .coming-soon-detail .countdown .date .time {
          margin: 0;
          font-weight: 700;
          font-size: 82px;
          line-height: 82px; }
      @media only screen and (max-width: 1280px) {
        .coming-soon-1 .coming-soon-detail .countdown .date {
          margin: 0 20px;
          width: 65px; } }
      @media only screen and (max-width: 991px) {
        .coming-soon-1 .coming-soon-detail .countdown .date span {
          font-size: 16px; }
        .coming-soon-1 .coming-soon-detail .countdown .date .time {
          font-size: 75px; } }
      @media only screen and (max-width: 767px) {
        .coming-soon-1 .coming-soon-detail .countdown .date span {
          font-size: 14px; } }
      @media only screen and (max-width: 575px) {
        .coming-soon-1 .coming-soon-detail .countdown .date {
          margin: 0 5px;
          width: 58px; }
          .coming-soon-1 .coming-soon-detail .countdown .date .time {
            font-size: 35px;
            line-height: 1; } }
    .coming-soon-1 .coming-soon-detail .logo-header {
      width: 100%;
      height: auto;
      margin-bottom: 30px; }
      .coming-soon-1 .coming-soon-detail .logo-header img {
        max-width: 250px; }
      @media only screen and (max-width: 575px) {
        .coming-soon-1 .coming-soon-detail .logo-header {
          margin-bottom: 20px; } }
    @media only screen and (max-width: 1480px) {
      .coming-soon-1 .coming-soon-detail {
        padding: 50px; }
        .coming-soon-1 .coming-soon-detail .title {
          font-size: 45px; } }
    @media only screen and (max-width: 1280px) {
      .coming-soon-1 .coming-soon-detail {
        padding: 30px; }
        .coming-soon-1 .coming-soon-detail .title {
          max-width: 650px; } }
    @media only screen and (max-width: 991px) {
      .coming-soon-1 .coming-soon-detail {
        padding: 40px;
        height: 100%; }
        .coming-soon-1 .coming-soon-detail .title {
          font-size: 32px; } }
    @media only screen and (max-width: 767px) {
      .coming-soon-1 .coming-soon-detail {
        padding-top: 30px; }
        .coming-soon-1 .coming-soon-detail .title {
          font-size: 35px; } }
    @media only screen and (max-width: 575px) {
      .coming-soon-1 .coming-soon-detail {
        padding: 40px 20px; }
        .coming-soon-1 .coming-soon-detail .title {
          font-size: 30px;
          letter-spacing: 1px; }
        .coming-soon-1 .coming-soon-detail p {
          font-size: 16px; } }

.contact-wraper1 {
  position: relative; }
  .contact-wraper1 .contact-info {
    padding: 50px 30px; }
    .contact-wraper1 .contact-info .icon-md {
      width: 50px;
      height: 50px;
      line-height: 50px; }
  .contact-wraper1 .contact-area1.style-1 {
    position: absolute;
    bottom: -189px;
    right: 15%;
    z-index: 999; }
  .contact-wraper1 .contact-area1 .wpcf7-spinner {
    display: none; }
  @media only screen and (max-width: 1280px) {
    .contact-wraper1 .contact-info {
      padding: 50px 0px; } }
  @media only screen and (max-width: 991px) {
    .contact-wraper1 {
      background-position: center;
      background-size: cover;
      margin-bottom: 0; }
      .contact-wraper1:after {
        content: none; }
      .contact-wraper1:before {
        height: 100%;
        width: 100%; }
      .contact-wraper1 .contact-area1 {
        margin-top: 0;
        margin-bottom: 0; }
      .contact-wraper1 .contact-info {
        padding: 50px 0px 20px; } }

.contact-area1 {
  padding: 50px 40px;
  background: #fff;
  box-shadow: 0px 3px 29px 0px rgba(0, 0, 0, 0.07);
  max-width: 520px;
  margin-bottom: -215px;
  position: relative;
  z-index: 9; }
  .contact-area1.style-1 {
    margin: 0 0 -215px auto; }
    @media only screen and (max-width: 991px) {
      .contact-area1.style-1 {
        margin: 0; } }
  @media only screen and (max-width: 1280px) {
    .contact-area1 {
      padding: 45px 35px; } }
  @media only screen and (max-width: 991px) {
    .contact-area1 {
      max-width: 100%; } }
  @media only screen and (max-width: 575px) {
    .contact-area1 {
      padding: 25px; } }

.map-iframe {
  height: 450px; }
  @media only screen and (max-width: 575px) {
    .map-iframe {
      height: 250px; } }

@media only screen and (max-width: 575px) {
  form .g-recaptcha {
    transform: scale(0.7);
    -moz-transform: scale(0.7);
    -o-transform: scale(0.7);
    -webkit-transform: scale(0.7);
    transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    -webkit-transform-origin: 0 0; } }

body .working-location {
  margin-bottom: 15px; }
  body .working-location img {
    border-radius: var(--border-radius-base); }

.map {
  position: relative;
  z-index: 1; }
  .map:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #24262B;
    mix-blend-mode: color;
    z-index: 0;
    pointer-events: none; }

.contact-info.style-1 {
  margin-bottom: 60px;
  min-height: 335px;
  padding-top: 30px; }
  .contact-info.style-1 .title {
    font-weight: 700;
    font-size: 60px;
    letter-spacing: 6px;
    color: #fff; }
    @media only screen and (max-width: 1280px) {
      .contact-info.style-1 .title {
        font-size: 32px; } }
    @media only screen and (max-width: 767px) {
      .contact-info.style-1 .title {
        font-size: 28px; } }
    @media only screen and (max-width: 575px) {
      .contact-info.style-1 .title {
        font-size: 32px; } }
  .contact-info.style-1 .text {
    color: #fff;
    font-weight: 400;
    font-size: 24px;
    margin-left: unset;
    margin-right: unset;
    max-width: 540px;
    margin-bottom: 50px;
    font-family: var(--font-family-base); }
    @media only screen and (max-width: 1280px) {
      .contact-info.style-1 .text {
        font-size: 26px;
        margin-bottom: 30px; } }
    @media only screen and (max-width: 767px) {
      .contact-info.style-1 .text {
        font-size: 22px;
        margin-bottom: 15px;
        width: 100%; } }
    @media only screen and (max-width: 575px) {
      .contact-info.style-1 .text {
        font-size: 20px; } }
    .contact-info.style-1 .text span {
      color: #FFF066; }
  .contact-info.style-1 .contact-bottom {
    display: flex;
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px 0 0; }
    .contact-info.style-1 .contact-bottom h3, .contact-info.style-1 .contact-bottom .h3 {
      color: #fff;
      font-weight: 700;
      font-size: 24px;
      letter-spacing: 2.4px;
      text-transform: uppercase; }
      @media only screen and (max-width: 767px) {
        .contact-info.style-1 .contact-bottom h3, .contact-info.style-1 .contact-bottom .h3 {
          font-size: 22px; } }
    .contact-info.style-1 .contact-bottom .contact-left {
      margin-right: 190px; }
      @media only screen and (min-width: 1024px) and (max-width: 1199px) {
        .contact-info.style-1 .contact-bottom .contact-left {
          margin-right: 100px; } }
    .contact-info.style-1 .contact-bottom ul li {
      font-weight: 400;
      font-size: 16px; }
      @media only screen and (max-width: 767px) {
        .contact-info.style-1 .contact-bottom ul li {
          font-size: 15px; } }
      .contact-info.style-1 .contact-bottom ul li a {
        color: #fff; }
  @media only screen and (max-width: 767px) {
    .contact-info.style-1 {
      margin-bottom: 40px;
      min-height: auto; } }
  @media only screen and (max-width: 575px) {
    .contact-info.style-1 .contact-bottom .contact-left {
      margin-right: 0;
      flex: 1; } }

.contact-heading h2, .contact-heading .h2 {
  font-weight: 700;
  font-size: 72px; }
  @media only screen and (max-width: 1480px) {
    .contact-heading h2, .contact-heading .h2 {
      font-size: 60px; } }
  @media only screen and (max-width: 1280px) {
    .contact-heading h2, .contact-heading .h2 {
      font-size: 50px; } }
  @media only screen and (max-width: 991px) {
    .contact-heading h2, .contact-heading .h2 {
      font-size: 40px; } }
  @media only screen and (max-width: 575px) {
    .contact-heading h2, .contact-heading .h2 {
      font-size: 24px; } }

.dz-text {
  font-weight: 700;
  font-size: 150px;
  position: absolute;
  bottom: 0;
  right: 30px;
  line-height: 1;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.1);
  color: transparent;
  z-index: -1; }
  @media only screen and (max-width: 991px) {
    .dz-text {
      font-size: 120px;
      right: 20px; } }
  @media only screen and (max-width: 767px) {
    .dz-text {
      font-size: 100px;
      right: 10px; } }
  @media only screen and (max-width: 575px) {
    .dz-text {
      font-size: 60px;
      right: 0px; } }

.contact-bnr {
  padding-top: 220px;
  padding-bottom: 80px; }
  @media only screen and (max-width: 1480px) {
    .contact-bnr {
      padding-top: 200px;
      padding-bottom: 50px; } }
  @media only screen and (max-width: 991px) {
    .contact-bnr {
      padding-top: 130px;
      padding-bottom: 50px; } }
  @media only screen and (max-width: 767px) {
    .contact-bnr {
      padding-top: 80px;
      padding-bottom: 40px; } }

.middle-border {
  border: 1px solid rgba(255, 255, 255, 0.1); }

.contact-us2 .map-fixed {
  position: absolute;
  left: 48vw;
  height: 75%;
  padding-right: 0;
  top: 100px;
  width: 76vw; }
  @media only screen and (max-width: 767px) {
    .contact-us2 .map-fixed {
      position: relative;
      left: auto;
      height: auto;
      padding-right: 0;
      top: auto;
      width: 100%;
      margin-bottom: 20px;
      padding: 0; } }
  .contact-us2 .map-fixed .contact-map {
    position: relative; }
    .contact-us2 .map-fixed .contact-map img {
      width: 100%; }
  .contact-us2 .map-fixed .map-point {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .contact-us2 .map-fixed .map-point .point {
      display: block;
      width: 8px;
      height: 8px;
      position: absolute;
      border-radius: 50%;
      background-color: #FFF; }
      .contact-us2 .map-fixed .map-point .point i {
        font-size: 18px;
        color: #fff;
        position: absolute;
        top: -8px;
        left: -3px;
        opacity: 0;
        -webkit-transition: all 0.2s;
        -ms-transition: all 0.2s;
        transition: all 0.2s; }
      .contact-us2 .map-fixed .map-point .point.active {
        background-color: #FFF066; }
        .contact-us2 .map-fixed .map-point .point.active:after {
          background-color: rgba(255, 240, 102, 0.4); }
      .contact-us2 .map-fixed .map-point .point:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        background-color: rgba(255, 255, 255, 0.4);
        width: 40px;
        height: 40px;
        transform: translate(-50%, -50%) scale(1);
        border-radius: 50%;
        animation: 2s ease 0s infinite normal none running pointZoom; }
      .contact-us2 .map-fixed .map-point .point.point-1 {
        left: 13%;
        top: 20%; }
      .contact-us2 .map-fixed .map-point .point.point-2 {
        left: 60%;
        top: 15%; }
      .contact-us2 .map-fixed .map-point .point.point-3 {
        left: 50%;
        top: 50%; }

.contact-us2 .dz-text {
  font-weight: 700;
  font-size: 190px;
  position: absolute;
  font-family: var(--font-family-title);
  bottom: 0px;
  right: 250px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.1);
  color: transparent;
  z-index: 1;
  text-transform: uppercase; }
  @media only screen and (max-width: 991px) {
    .contact-us2 .dz-text {
      display: none; } }

.contact-us2 .contact-area1 {
  margin-bottom: unset; }

.contact-us2 .contact-info.style-1 .contact-bottom .contact-left {
  margin-right: 100px; }
  @media only screen and (max-width: 991px) {
    .contact-us2 .contact-info.style-1 .contact-bottom .contact-left {
      margin-right: 40px; } }

@keyframes pointZoom {
  0% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 1; }
  75% {
    transform: translate(-50%, -50%) scale(2);
    opacity: 0; }
  100% {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0; } }

.locations-box {
  position: relative; }
  .locations-box:after {
    content: "";
    position: absolute;
    top: 0px;
    right: 0px;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, black 50%, rgba(0, 0, 0, 0) 100%);
    width: 1px;
    height: 100%;
    opacity: 20%; }
    @media only screen and (max-width: 991px) {
      .locations-box:after {
        top: auto;
        bottom: 0px;
        width: 100%;
        height: 1px;
        background: linear-gradient(270deg, rgba(0, 0, 0, 0) -1.52%, black 59.42%, rgba(0, 0, 0, 0) 98.48%); } }
  .locations-box:last-child:after {
    content: none; }
  @media only screen and (max-width: 991px) {
    .locations-box:last-child {
      margin-bottom: 0;
      padding-bottom: 0; }
      .locations-box:last-child:after {
        content: none; } }
  .locations-box .locations-box-inner {
    padding: 20px; }
    @media only screen and (max-width: 991px) {
      .locations-box .locations-box-inner {
        padding: 10px; } }
    .locations-box .locations-box-inner .country-media {
      padding: 5px;
      background: #f6f6f6;
      display: flex;
      align-items: center;
      width: fit-content;
      border-radius: 40px;
      margin-bottom: 20px;
      padding-right: 30px; }
      .locations-box .locations-box-inner .country-media .title {
        font-size: 18px;
        font-weight: 500;
        margin-bottom: 0; }
      .locations-box .locations-box-inner .country-media img {
        border-radius: 50%;
        margin-right: 15px;
        border: 2px solid #fff; }
    .locations-box .locations-box-inner .dz-content .title {
      font-size: 22px;
      font-weight: 500;
      margin-bottom: 30px; }
    .locations-box .locations-box-inner .dz-content .contact-info {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 8px; }
      .locations-box .locations-box-inner .dz-content .contact-info ul li {
        color: var(--title); }
    @media only screen and (min-width: 1024px) and (max-width: 1199px) {
      .locations-box .locations-box-inner .dz-content .title {
        font-size: 20px;
        margin-bottom: 20px; } }

.contact-bx {
  margin-top: 60px; }
  .contact-bx span {
    font-size: 14px;
    color: var(--primary);
    font-family: var(--font-family-title);
    font-weight: 500;
    letter-spacing: 1.4px;
    text-transform: uppercase; }
  .contact-bx .title {
    color: #FFF;
    font-size: 40px;
    font-weight: 500;
    text-transform: uppercase; }
    @media only screen and (max-width: 575px) {
      .contact-bx .title {
        font-size: 28px; } }

.map-iframe iframe {
  width: 100%; }

.map-iframe.style-1 iframe {
  height: 450px;
  border: 10px solid #fff;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.1); }
  @media only screen and (max-width: 991px) {
    .map-iframe.style-1 iframe {
      height: 370px; } }
  @media only screen and (max-width: 575px) {
    .map-iframe.style-1 iframe {
      height: 320px;
      border-width: 5px; } }

.map-iframe.style-2 {
  position: relative;
  height: 100%;
  margin-bottom: 30px; }
  .map-iframe.style-2 iframe {
    height: 100%;
    position: absolute;
    left: 0;
    top: 0; }
  .map-iframe.style-2 .contact-area1 {
    background-color: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.1);
    max-width: 480px;
    position: relative;
    z-index: 9;
    margin-left: 50px; }
    .map-iframe.style-2 .contact-area1 .form-label {
      color: var(--primary); }
  @media only screen and (max-width: 991px) {
    .map-iframe.style-2 .contact-info {
      padding: 30px;
      border-radius: 12px;
      max-width: 350px;
      margin-left: 20px; } }
  @media only screen and (max-width: 575px) {
    .map-iframe.style-2 {
      padding: 0; }
      .map-iframe.style-2 .contact-info {
        border-radius: 12px;
        max-width: 100%;
        margin: -50px 20px 0; }
      .map-iframe.style-2 iframe {
        height: 380px;
        position: static; } }

.map-iframe.style-3 {
  height: 100%; }
  .map-iframe.style-3 iframe {
    height: 100%; }
  @media only screen and (max-width: 767px) {
    .map-iframe.style-3 {
      height: 450px; } }
  @media only screen and (max-width: 575px) {
    .map-iframe.style-3 {
      height: 350px; } }

.map-iframe.style-1 {
  position: relative;
  z-index: 1; }
  .map-iframe.style-1:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary);
    mix-blend-mode: color;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none; }

.contact-area1.style-1 textarea.form-control,
.contact-area1.style-1 .woocommerce #review_form #respond textarea, .woocommerce #review_form #respond .contact-area1.style-1 textarea, .contact-area1.style-1 .woocommerce-cart-form .table.shop_table tr td.actions .coupon textarea.input-text, .woocommerce-cart-form .table.shop_table tr td.actions .coupon .contact-area1.style-1 textarea.input-text, .contact-area1.style-1 .woocommerce .woocommerce-checkout.checkout form .form-row textarea, .woocommerce .woocommerce-checkout.checkout form .form-row .contact-area1.style-1 textarea,
.contact-area1.style-1 .checkout.woocommerce-checkout textarea, .checkout.woocommerce-checkout .contact-area1.style-1 textarea,
.contact-area1.style-1 .woocommerce form .form-row textarea.select2-selection, .woocommerce form .form-row .contact-area1.style-1 textarea.select2-selection,
.contact-area1.style-1 .woocommerce form .form-row textarea.select2-choice, .woocommerce form .form-row .contact-area1.style-1 textarea.select2-choice {
  height: 120px; }

.under-construction-1 {
  overflow: hidden;
  padding: 20px;
  height: 100vh;
  min-height: 700px;
  display: flex;
  vertical-align: middle;
  position: relative;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background-repeat: no-repeat;
  background-size: cover; }
  .under-construction-1:after {
    content: "";
    position: absolute;
    background-image: url(../images/background/bg9.png);
    z-index: -2;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.9; }
  .under-construction-1 p {
    font-size: 24px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    text-transform: capitalize;
    color: #FFF; }
  .under-construction-1 .dz-head {
    margin-bottom: 15px;
    line-height: 1.1;
    font-size: 110px;
    font-family: 'Kuunari', sans-serif;
    font-weight: 700;
    font-style: italic;
    color: #fff; }
    @media only screen and (max-width: 1280px) {
      .under-construction-1 .dz-head {
        font-size: 80px; } }
    @media only screen and (max-width: 991px) {
      .under-construction-1 .dz-head {
        font-size: 70px; } }
    @media only screen and (max-width: 767px) {
      .under-construction-1 .dz-head {
        font-size: 50px; } }
    @media only screen and (max-width: 575px) {
      .under-construction-1 .dz-head {
        font-size: 35px; } }
  .under-construction-1 .warning-img {
    width: 185px;
    margin-bottom: 15px; }
  @media only screen and (max-width: 767px) {
    .under-construction-1 {
      min-height: 500px; } }
  @media only screen and (max-width: 575px) {
    .under-construction-1 {
      padding: 30px; }
      .under-construction-1 .warning-img {
        width: 120px;
        margin-bottom: 20px; }
      .under-construction-1 p {
        font-size: 16px;
        letter-spacing: 2px; } }

.portfolio-single .head-section span {
  color: var(--secondary);
  background-color: var(--primary);
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  padding: 5px 7px;
  margin-bottom: 10px; }

.portfolio-single .head-section h1, .portfolio-single .head-section .h1 {
  font-size: 45px;
  font-style: italic;
  font-weight: 700; }
  @media only screen and (max-width: 991px) {
    .portfolio-single .head-section h1, .portfolio-single .head-section .h1 {
      font-size: 40px; } }
  @media only screen and (max-width: 767px) {
    .portfolio-single .head-section h1, .portfolio-single .head-section .h1 {
      margin-bottom: 20px; } }
  @media only screen and (max-width: 575px) {
    .portfolio-single .head-section h1, .portfolio-single .head-section .h1 {
      font-size: 30px; } }

.portfolio-single-wrapper {
  padding-top: 65px; }

.portfolio-nav ul {
  display: flex;
  width: 100%;
  flex-wrap: wrap; }
  .portfolio-nav ul li {
    width: 33%;
    margin-bottom: 32px; }
    @media only screen and (max-width: 1280px) {
      .portfolio-nav ul li {
        margin-bottom: 20px; } }
    .portfolio-nav ul li h6, .portfolio-nav ul li .h6 {
      color: var(--secondry-color, #232323);
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      margin-bottom: 5px; }
    .portfolio-nav ul li .text {
      font-size: 16px;
      font-weight: 400; }
      @media only screen and (max-width: 991px) {
        .portfolio-nav ul li .text {
          font-size: 14px;
          font-weight: 400; } }

.shop-card {
  position: relative;
  overflow: hidden; }
  .shop-card.style-1 {
    margin-bottom: 30px;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    transform: translateY(0px); }
    .shop-card.style-1 .dz-media .shop-meta {
      position: absolute;
      bottom: -46px;
      left: 0;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s;
      z-index: 99; }
      .shop-card.style-1 .dz-media .shop-meta ul {
        display: flex;
        align-items: center;
        gap: 10px; }
        .shop-card.style-1 .dz-media .shop-meta ul li a {
          background: var(--secondary);
          color: #fff;
          text-align: center;
          display: block;
          font-size: 0;
          -webkit-transition: all .8s;
          -ms-transition: all .8s;
          transition: all .8s;
          width: 45px;
          height: 45px;
          display: flex;
          align-items: center;
          justify-content: center; }
          .shop-card.style-1 .dz-media .shop-meta ul li a i {
            margin-right: 0;
            font-size: 16px; }
          .shop-card.style-1 .dz-media .shop-meta ul li a.added_to_cart {
            display: none !important; }
      .shop-card.style-1 .dz-media .shop-meta .add_to_cart_button.added i:before {
        content: "\f00c";
        font-family: "Font Awesome 5 Free" !important;
        left: 0;
        margin: 0;
        transform: none;
        background: no-repeat;
        border: 0;
        font-weight: 700;
        font-size: 14px;
        opacity: 1;
        line-height: 45px; }
    .shop-card.style-1 .dz-media .effect {
      position: absolute;
      display: block;
      width: 0;
      height: 0;
      border-radius: 50%;
      transition: width .4s ease-in-out,height .4s ease-in-out;
      -webkit-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
      z-index: 0;
      background: var(--secondary);
      opacity: 0.4; }
    .shop-card.style-1 .dz-content {
      padding: 20px 0 10px; }
      .shop-card.style-1 .dz-content .title {
        font-weight: 600;
        margin-bottom: 15px;
        font-size: 24px; }
      .shop-card.style-1 .dz-content p {
        margin-bottom: 0;
        line-height: 1;
        font-size: 16px;
        font-weight: 500; }
        .shop-card.style-1 .dz-content p del {
          color: #666;
          font-family: var(--font-family-base);
          font-weight: 300; }
    .shop-card.style-1:hover .dz-media .effect {
      width: 300%;
      height: 300%; }
    .shop-card.style-1:hover .dz-media .shop-meta {
      bottom: 26px; }
  .shop-card .price, .shop-card ins span {
    font-size: 16px !important; }

.range-slider.style-1 .noUi-horizontal {
  height: 4px; }
  .range-slider.style-1 .noUi-horizontal .noUi-handle {
    width: 12px;
    height: 12px;
    border-radius: 2px;
    border: 3px solid var(--secondary);
    background-color: #ffffff;
    box-shadow: none;
    top: -4px;
    right: 0;
    cursor: pointer; }
    .range-slider.style-1 .noUi-horizontal .noUi-handle:before, .range-slider.style-1 .noUi-horizontal .noUi-handle:after {
      content: none; }
    .range-slider.style-1 .noUi-horizontal .noUi-handle .noUi-tooltip {
      display: none;
      border: 0px;
      background: var(--primary);
      color: white;
      border-radius: 4px;
      font-size: 13px;
      bottom: -35px;
      font-weight: 600;
      padding: 2px 5px; }

.range-slider.style-1 .noUi-target {
  background: #D7D7D7;
  border-radius: 0;
  border: 0;
  box-shadow: none; }
  .range-slider.style-1 .noUi-target .noUi-connect {
    background: var(--secondary); }

.range-slider.style-1 span {
  margin-right: 30px; }

.range-slider.style-1 .example-val {
  font-size: 14px;
  color: var(--title);
  font-weight: 400; }

.price-slider {
  margin-bottom: 60px; }

.btn-quantity {
  margin-right: 45px; }
  .btn-quantity .bootstrap-touchspin {
    width: 140px;
    min-width: 140px;
    position: relative;
    height: 40px;
    display: block; }
  .btn-quantity label {
    font-size: 15px;
    font-family: var(--font-family-base);
    font-weight: 600;
    text-transform: capitalize;
    color: var(--title); }
  .btn-quantity input {
    padding: 0px;
    text-align: center;
    z-index: 1;
    border: 1px solid #D7D7D7;
    background-color: transparent;
    font-size: 15px;
    color: var(--title);
    height: 40px !important;
    border-radius: 0px !important;
    width: 42px !important;
    margin-left: auto !important;
    margin-right: auto !important; }
    .btn-quantity input:focus {
      box-shadow: unset; }
  .btn-quantity .input-group-btn-vertical {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    padding: 0;
    margin-left: 0 !important; }
    .btn-quantity .input-group-btn-vertical .btn, .btn-quantity .input-group-btn-vertical .wp-block-button__link, .btn-quantity .input-group-btn-vertical .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .btn-quantity .input-group-btn-vertical .btn.sw-btn-prev, .btn-quantity .input-group-btn-vertical .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .btn-quantity .input-group-btn-vertical .btn.sw-btn-next, .btn-quantity .input-group-btn-vertical .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .btn-quantity .input-group-btn-vertical a,
    .btn-quantity .input-group-btn-vertical .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .btn-quantity .input-group-btn-vertical a, .btn-quantity .input-group-btn-vertical .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .btn-quantity .input-group-btn-vertical input, .btn-quantity .input-group-btn-vertical .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .btn-quantity .input-group-btn-vertical .button, .btn-quantity .input-group-btn-vertical .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .btn-quantity .input-group-btn-vertical a.checkout-button, .btn-quantity .input-group-btn-vertical .woocommerce #respond input#submit, .woocommerce #respond .btn-quantity .input-group-btn-vertical input#submit,
    .btn-quantity .input-group-btn-vertical .woocommerce a.button, .woocommerce .btn-quantity .input-group-btn-vertical a.button,
    .btn-quantity .input-group-btn-vertical .woocommerce button.button, .woocommerce .btn-quantity .input-group-btn-vertical button.button,
    .btn-quantity .input-group-btn-vertical .woocommerce input.button, .woocommerce .btn-quantity .input-group-btn-vertical input.button,
    .btn-quantity .input-group-btn-vertical .woocommerce #place_order, .woocommerce .btn-quantity .input-group-btn-vertical #place_order {
      background-color: #f3f3f3;
      color: var(--title);
      padding: 0px;
      min-width: 30px;
      justify-content: center;
      z-index: 1;
      border-radius: 0px;
      position: relative;
      line-height: 30px; }
  .btn-quantity.style-1 .bootstrap-touchspin {
    width: 125px;
    min-width: 125px;
    height: 30px;
    margin-bottom: 0; }
  .btn-quantity.style-1 input {
    border: 0;
    background-color: #F6F6F6;
    height: 30px !important;
    width: 40px !important; }
  .btn-quantity.style-1 .input-group-btn-vertical .btn, .btn-quantity.style-1 .input-group-btn-vertical .wp-block-button__link, .btn-quantity.style-1 .input-group-btn-vertical .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .btn-quantity.style-1 .input-group-btn-vertical a,
  .btn-quantity.style-1 .input-group-btn-vertical .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .btn-quantity.style-1 .input-group-btn-vertical a, .btn-quantity.style-1 .input-group-btn-vertical .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .btn-quantity.style-1 .input-group-btn-vertical input, .btn-quantity.style-1 .input-group-btn-vertical .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .btn-quantity.style-1 .input-group-btn-vertical .button, .btn-quantity.style-1 .input-group-btn-vertical .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .btn-quantity.style-1 .input-group-btn-vertical a.checkout-button, .btn-quantity.style-1 .input-group-btn-vertical .woocommerce #respond input#submit, .woocommerce #respond .btn-quantity.style-1 .input-group-btn-vertical input#submit,
  .btn-quantity.style-1 .input-group-btn-vertical .woocommerce a.button, .woocommerce .btn-quantity.style-1 .input-group-btn-vertical a.button,
  .btn-quantity.style-1 .input-group-btn-vertical .woocommerce button.button, .woocommerce .btn-quantity.style-1 .input-group-btn-vertical button.button,
  .btn-quantity.style-1 .input-group-btn-vertical .woocommerce input.button, .woocommerce .btn-quantity.style-1 .input-group-btn-vertical input.button,
  .btn-quantity.style-1 .input-group-btn-vertical .woocommerce #place_order, .woocommerce .btn-quantity.style-1 .input-group-btn-vertical #place_order {
    background-color: var(--secondary);
    color: #fff;
    min-width: 30px;
    line-height: 30px; }

.dz-product-detail {
  background-color: #ffffff; }
  .dz-product-detail .dz-media {
    margin-bottom: 30px; }
    .dz-product-detail .dz-media .dz-maximize {
      opacity: 0; }
    .dz-product-detail .dz-media:hover .dz-maximize {
      opacity: 1; }
  .dz-product-detail.style-1 .dz-content {
    flex: 1 1 0%; }
    .dz-product-detail.style-1 .dz-content .badge {
      background-color: #DAFF0D;
      font-family: var(--font-family-base);
      font-size: 11px;
      font-weight: 500;
      text-transform: capitalize;
      color: var(--title);
      line-height: 1.1;
      border-radius: 0;
      padding: 2px 4px; }
    .dz-product-detail.style-1 .dz-content .title {
      font-size: 35px;
      font-weight: 700; }
    @media only screen and (max-width: 1280px) {
      .dz-product-detail.style-1 .dz-content .dz-content-start .title {
        font-size: 30px; } }
    .dz-product-detail.style-1 .dz-content .review-num {
      display: flex; }
      .dz-product-detail.style-1 .dz-content .review-num span {
        font-size: 14px;
        line-height: 20px; }
      .dz-product-detail.style-1 .dz-content .review-num a {
        font-size: 14px;
        color: #5E626F;
        line-height: 20px; }
      .dz-product-detail.style-1 .dz-content .review-num .dz-rating {
        display: flex;
        justify-content: left;
        line-height: 20px;
        margin-bottom: 15px; }
    .dz-product-detail.style-1 .dz-content .para-text {
      font-size: 14px;
      color: #222; }
    .dz-product-detail.style-1 .dz-content .cart-btn {
      margin-bottom: 40px; }
      .dz-product-detail.style-1 .dz-content .cart-btn > a {
        margin-right: 20px; }
      @media only screen and (max-width: 1280px) {
        .dz-product-detail.style-1 .dz-content .cart-btn {
          margin: 0 -5px 30px; }
          .dz-product-detail.style-1 .dz-content .cart-btn a {
            margin: 5px; } }
    .dz-product-detail.style-1 .dz-content .meta-content {
      text-align: left;
      margin-right: 0;
      display: flex;
      justify-content: space-between;
      margin-bottom: 30px; }
      .dz-product-detail.style-1 .dz-content .meta-content .price-name {
        font-size: 15px;
        font-weight: 600;
        color: var(--title);
        font-family: var(--font-family-base);
        display: block; }
      .dz-product-detail.style-1 .dz-content .meta-content .price-num {
        margin-bottom: 0px;
        font-size: 24px;
        font-weight: 600;
        color: var(--secondary); }
        .dz-product-detail.style-1 .dz-content .meta-content .price-num del {
          font-size: 18px;
          opacity: 0.6;
          color: #666;
          font-weight: 400; }
      .dz-product-detail.style-1 .dz-content .meta-content .price {
        margin-bottom: 0; }
      @media only screen and (max-width: 1280px) {
        .dz-product-detail.style-1 .dz-content .meta-content {
          margin-bottom: 10px; } }
  .dz-product-detail.style-1 .dz-simple-product {
    margin-bottom: 0; }

.dz-product-meta {
  visibility: visible !important; }
  .dz-product-meta ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px; }
    .dz-product-meta ul li {
      color: var(--secondary);
      font-size: 14px;
      margin-bottom: 10px; }
      .dz-product-meta ul li strong {
        font-size: 15px;
        font-weight: 600;
        margin-right: 10px; }
      .dz-product-meta ul li span {
        padding: 0px 5px; }
      .dz-product-meta ul li a {
        color: var(--secondary);
        font-size: 16px;
        position: relative; }
        .dz-product-meta ul li a:hover {
          color: var(--primary); }
      .dz-product-meta ul li:last-child span {
        padding: 0px 10px; }
  .dz-product-meta .dz-meta-link li a::after {
    content: "";
    height: 1px;
    background: var(--primary);
    width: 0;
    position: absolute;
    bottom: 0;
    right: -1px;
    transition: all 0.4s; }
  .dz-product-meta .dz-meta-link li a:hover::after {
    width: 100%;
    transform-origin: right;
    -moz-transform-origin: right;
    -webkit-transform-origin: right;
    -ms-transform-origin: right;
    -o-transform-origin: right;
    right: auto;
    left: 0; }

.dz-product-detail.side-bar.sticky-top {
  position: sticky; }

.dz-product-detail .price del {
  font-size: 16px; }

.dz-maximize {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  font-size: 24px;
  color: var(--title);
  -webkit-transition: all 0.8s;
  -ms-transition: all 0.8s;
  transition: all 0.8s; }
  .dz-maximize.top-left {
    position: absolute;
    top: 20px;
    left: 20px; }
  .dz-maximize.top-right {
    position: absolute;
    top: 20px;
    right: 20px; }
  .dz-maximize.bottom-left {
    position: absolute;
    bottom: 20px;
    left: 20px; }
  .dz-maximize.bottom-right {
    position: absolute;
    bottom: 20px;
    right: 20px; }
  @media only screen and (max-width: 575px) {
    .dz-maximize {
      width: 30px;
      height: 30px;
      font-size: 18px; }
      .dz-maximize.top-left {
        top: 10px;
        left: 10px; }
      .dz-maximize.top-right {
        top: 10px;
        right: 10px; }
      .dz-maximize.bottom-left {
        bottom: 10px;
        left: 10px; }
      .dz-maximize.bottom-right {
        bottom: 10px;
        right: 10px; } }

.detail-bx {
  padding-left: 30px;
  padding-right: 30px; }
  .detail-bx .title {
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-family-base);
    margin-bottom: 15px;
    line-height: 1.3; }
  .detail-bx .para-text {
    margin-bottom: 20px;
    font-size: 14px; }
  .detail-bx .feature-detail {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    justify-content: center; }
    .detail-bx .feature-detail li {
      display: flex;
      align-items: center;
      padding: 10px 30px 10px 0;
      text-align: left; }
      .detail-bx .feature-detail li i {
        font-size: 22px;
        height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--primary);
        border-radius: 50%;
        width: 40px;
        min-width: 40px;
        margin-right: 10px;
        color: var(--primary); }
      .detail-bx .feature-detail li h5, .detail-bx .feature-detail li .h5 {
        font-weight: 400;
        margin-bottom: 0;
        font-size: 18px;
        font-family: var(--font-family-base); }
  @media only screen and (max-width: 767px) {
    .detail-bx {
      padding-left: 10px;
      padding-right: 10px; }
      .detail-bx .feature-detail li {
        padding: 5px 0 5px 0; }
        .detail-bx .feature-detail li h5, .detail-bx .feature-detail li .h5 {
          font-size: 15px; }
        .detail-bx .feature-detail li i {
          width: 30px;
          min-width: 30px;
          height: 30px;
          font-size: 16px; } }

.related-product .dz-title {
  font-size: 28px; }

.filter-wrapper {
  margin-bottom: 20px;
  align-items: center;
  justify-content: space-between; }
  .filter-wrapper .para {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary); }

.cart-sidebar .title {
  font-family: var(--font-family-base);
  font-weight: 500;
  margin-bottom: 10px; }

.cart-sidebar .cart-detail {
  background: #F6F6F6;
  padding: 30px; }
  .cart-sidebar .cart-detail table {
    background: #F6F6F6;
    width: 100%; }
    .cart-sidebar .cart-detail table tbody tr {
      border-bottom: 1px solid #D9D9D9; }
      .cart-sidebar .cart-detail table tbody tr:last-child {
        border: 0; }
    .cart-sidebar .cart-detail table tbody td {
      padding: 20px 0; }
      .cart-sidebar .cart-detail table tbody td h6, .cart-sidebar .cart-detail table tbody td .h6 {
        font-weight: 600;
        font-family: var(--font-family-base); }
    .cart-sidebar .cart-detail table tbody .price {
      font-family: var(--font-family-base);
      font-weight: 400;
      float: right; }
      .cart-sidebar .cart-detail table tbody .price a {
        color: var(--bs-body-color); }
        .cart-sidebar .cart-detail table tbody .price a:hover {
          color: var(--primary); }

.rating-filter ul li {
  display: inline-block; }
  .rating-filter ul li span {
    font-size: 16px;
    font-weight: 500;
    color: var(--title); }
  .rating-filter ul li i {
    color: #FE9F10;
    font-family: feather;
    font-style: normal;
    vertical-align: middle; }
  .rating-filter ul li:first-child {
    margin-right: 8px; }

.rating-stars ul {
  list-style-type: none;
  padding: 0;
  -moz-user-select: none;
  -webkit-user-select: none; }

.rating-stars ul > li.star {
  display: inline-block; }

/* Idle State of the stars */
.rating-stars ul > li.star > i.fas {
  font-size: 14px;
  /* Change the size of the stars */
  color: #ccc;
  /* Color on idle state */ }

/* Hover state of the stars */
.rating-stars ul > li.star.hover > i.fas {
  color: #FFCC36; }

/* Selected state of the stars */
.rating-stars ul > li.star.selected > i.fas {
  color: #FF912C; }

.woocommerce div.product div.images {
  float: none;
  width: 100%; }

.shop-checkout .form-select {
  padding: 8px 0px;
  border: none;
  border-radius: 0; }

.shop-checkout .form-group .form-check-input {
  margin: 10px 5px 0 0;
  border: 1px solid var(--secondary);
  border-radius: 0; }
  .shop-checkout .form-group .form-check-input:checked {
    border-color: var(--primary); }

.shop-checkout .form-group .form-check-label {
  font-weight: 500;
  font-size: 14px;
  color: #24262B;
  margin-top: 7px; }

.shop-checkout .label-title {
  color: var(--secondary);
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 10px; }

.shop-checkout .form-check-input.radio {
  border: 1px solid var(--secondary); }
  .shop-checkout .form-check-input.radio:checked {
    border-color: var(--secondary); }

.shop-checkout .dz-accordion .accordion-item {
  margin-bottom: 15px; }
  .shop-checkout .dz-accordion .accordion-item .accordion-header {
    background: #F2F2F2;
    border: none;
    border-radius: 0; }
    .shop-checkout .dz-accordion .accordion-item .accordion-header .accordion-button {
      font-family: var(--font-family-base);
      font-size: 14px; }
      .shop-checkout .dz-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) .toggle-close:before {
        transform: rotate(-90deg); }
      .shop-checkout .dz-accordion .accordion-item .accordion-header .accordion-button .toggle-close {
        right: 10px; }
        .shop-checkout .dz-accordion .accordion-item .accordion-header .accordion-button .toggle-close:before {
          color: var(--primary);
          -webkit-transition: all 0.8s;
          -ms-transition: all 0.8s;
          transition: all 0.8s;
          font-size: 16px;
          content: "\f107";
          font-family: "Font Awesome 6 Free";
          font-weight: 900; }
      .shop-checkout .dz-accordion .accordion-item .accordion-header .accordion-button.collapsed .toggle-close:before {
        content: "\f107"; }
      .shop-checkout .dz-accordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
        border: none;
        border-radius: 0;
        color: var(--title);
        background: transparent;
        box-shadow: none; }
  .shop-checkout .dz-accordion .accordion-item .accordion-body {
    padding: 20px 0;
    border: 0;
    margin: 0; }

.order-detail {
  padding: 30px;
  border: 1px solid #F2F2F2; }
  @media only screen and (max-width: 575px) {
    .order-detail {
      padding: 15px; } }
  .order-detail .dz-accordion .accordion-item {
    background: transparent; }
    .order-detail .dz-accordion .accordion-item .accordion-header {
      background-color: transparent; }
      .order-detail .dz-accordion .accordion-item .accordion-header .accordion-button {
        padding: 0;
        font-family: var(--font-family-title);
        background-color: transparent;
        box-shadow: none; }
        .order-detail .dz-accordion .accordion-item .accordion-header .accordion-button .form-check-input {
          margin-right: 10px;
          margin-top: 0px; }
          .order-detail .dz-accordion .accordion-item .accordion-header .accordion-button .form-check-input.radio {
            width: 16px;
            height: 16px; }
        .order-detail .dz-accordion .accordion-item .accordion-header .accordion-button .form-check-label {
          font-family: var(--font-family-base);
          font-weight: 500;
          font-size: 14px;
          color: var(--title); }
        .order-detail .dz-accordion .accordion-item .accordion-header .accordion-button img {
          margin: 0 12px; }
        .order-detail .dz-accordion .accordion-item .accordion-header .accordion-button a {
          font-weight: 400;
          font-size: 12px;
          text-decoration: underline;
          color: #5E626F;
          font-family: var(--font-family-base); }
    .order-detail .dz-accordion .accordion-item .accordion-body {
      padding: 8px 0;
      border: 0; }
      .order-detail .dz-accordion .accordion-item .accordion-body p {
        font-weight: 400;
        font-size: 13px; }
  .order-detail .text {
    font-weight: 400;
    font-size: 12px;
    line-height: 20px;
    padding-top: 15px;
    border-top: 1px solid #D7D7D7; }
    .order-detail .text a {
      text-decoration: underline;
      color: var(--primary); }
  .order-detail .form-group .form-check-input {
    margin-right: 10px; }
    .order-detail .form-group .form-check-input.square {
      width: 20px;
      height: 15px; }
    @media only screen and (max-width: 1024px) {
      .order-detail .form-group .form-check-input.square {
        width: 16px;
        height: 16px; } }
  .order-detail .form-group .form-check-label {
    font-weight: 400;
    font-size: 13px;
    color: #5E626F; }
  .order-detail table {
    width: 100%; }
    .order-detail table tr {
      border-bottom: 1px solid rgba(0, 0, 0, 0.1); }
      .order-detail table tr td {
        padding: 12px 0;
        font-weight: 500;
        font-size: 16px;
        line-height: 20px;
        color: var(--title); }
        .order-detail table tr td.price {
          text-align: end; }
        .order-detail table tr td h6, .order-detail table tr td .h6 {
          font-family: var(--font-family-base); }
      .order-detail table tr.title {
        border-bottom: none; }
        .order-detail table tr.title td {
          padding-bottom: 0;
          padding-top: 20px; }
      .order-detail table tr.shipping td .custom-checkbox .form-check-label {
        font-size: 14px;
        line-height: 26px;
        margin-left: 10px; }
      .order-detail table tr.shipping td.price {
        vertical-align: bottom; }
      .order-detail table tr.total {
        border-bottom: none; }
        .order-detail table tr.total td {
          padding: 24px 0; }
          .order-detail table tr.total td.price {
            font-size: 24px;
            font-weight: 600; }

.cart-item.style-1 {
  display: flex;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #F2F2F2; }
  .cart-item.style-1 .dz-media {
    min-width: 60px;
    width: 60px;
    height: 60px; }
  .cart-item.style-1 .dz-content {
    margin-left: 15px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    .cart-item.style-1 .dz-content .title {
      font-weight: 500;
      font-family: var(--font-family-base); }
    .cart-item.style-1 .dz-content .price {
      font-size: 16px;
      font-weight: 500;
      color: #24262B; }

.registration-media {
  text-align: right;
  position: relative;
  z-index: -1;
  margin: auto;
  margin-top: -90px; }
  @media only screen and (max-width: 1480px) {
    .registration-media {
      margin-top: 0; } }
  @media only screen and (min-width: 300px) and (max-width: 991px) {
    .registration-media {
      position: absolute;
      margin-top: 0px;
      right: 10%;
      bottom: 0; } }
  @media only screen and (max-width: 575px) {
    .registration-media {
      right: 5%; } }
  @media only screen and (max-width: 1480px) {
    .registration-media img {
      height: 600px;
      width: 100%;
      object-fit: contain;
      object-position: bottom; } }
  @media only screen and (max-width: 991px) {
    .registration-media img {
      height: auto; } }
  @media only screen and (min-width: 300px) and (max-width: 991px) {
    .registration-media img {
      height: 280px;
      object-fit: contain; } }
  @media only screen and (max-width: 767px) {
    .registration-media img {
      height: 240px; } }

.end-side-content {
  padding: 200px 80px;
  display: flex;
  flex-direction: column; }
  @media only screen and (max-width: 1480px) {
    .end-side-content {
      padding: 100px 60px; } }
  @media only screen and (max-width: 1280px) {
    .end-side-content {
      padding: 60px 40px; } }
  @media only screen and (max-width: 575px) {
    .end-side-content {
      padding: 30px 20px; } }

.login-area {
  border: 1px solid var(--border-color);
  padding: 80px;
  max-width: 522px;
  margin: auto;
  background: var(--secondary);
  width: 100%; }
  @media only screen and (max-width: 1280px) {
    .login-area {
      padding: 40px;
      max-width: 430px; } }
  @media only screen and (max-width: 575px) {
    .login-area {
      padding: 30px;
      max-width: 100%; } }
  .login-area form .label-title {
    margin-bottom: 10px;
    font-weight: 500;
    font-family: var(--font-family-base);
    font-size: 14px;
    color: #fff; }
  .login-area .title {
    font-family: var(--font-family-title);
    font-size: 40px;
    font-weight: 700;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #fff;
    text-align: center; }
    @media only screen and (max-width: 575px) {
      .login-area .title {
        font-size: 30px; } }
  @media only screen and (max-width: 575px) {
    .login-area p {
      font-size: 14px; } }
  .login-area .form-check-input {
    border-radius: 1px;
    margin-right: 5px; }
  .login-area .form-check-label {
    color: #fff; }
  .login-area .btn-link {
    font-size: 14px;
    text-align: center;
    color: #fff;
    font-weight: 500; }
    .login-area .btn-link span {
      color: var(--primary); }
  .login-area h4, .login-area .h4 {
    font-family: var(--font-family-base);
    font-weight: 400;
    font-size: 20px; }
  .login-area .secure-input {
    position: relative;
    z-index: 1; }
    .login-area .secure-input .show-pass {
      cursor: pointer;
      position: absolute;
      right: 0;
      height: auto;
      width: 40px;
      top: 50%;
      transform: translate(-20%, -50%);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px; }
      .login-area .secure-input .show-pass i {
        color: #000; }
      .login-area .secure-input .show-pass:after {
        content: "";
        height: 2px;
        width: 24px;
        background-color: #000;
        position: absolute;
        border-radius: 5px;
        transform: rotate(15deg);
        opacity: 0; }
      .login-area .secure-input .show-pass.active:after {
        opacity: 1; }

.login-slider {
  height: 100%; }
  .login-slider .banner-login {
    position: relative;
    z-index: 1;
    height: 100%;
    background-size: cover;
    background-color: #fff; }
    @media only screen and (max-width: 991px) {
      .login-slider .banner-login {
        height: 100vh; } }
    @media only screen and (max-width: 767px) {
      .login-slider .banner-login {
        height: 60vh; } }
    .login-slider .banner-login .banner-content {
      position: absolute;
      bottom: 120px;
      padding: 0 30px 0 90px; }
      @media only screen and (max-width: 1480px) {
        .login-slider .banner-login .banner-content {
          padding: 0 30px 0 70px; } }
      @media only screen and (max-width: 991px) {
        .login-slider .banner-login .banner-content {
          bottom: 100px;
          padding: 0 90px 0 70px; } }
      @media only screen and (max-width: 767px) {
        .login-slider .banner-login .banner-content {
          bottom: 100px;
          padding: 0 50px 0 50px; } }
      @media only screen and (max-width: 575px) {
        .login-slider .banner-login .banner-content {
          bottom: 80px;
          padding: 0 30px 0 30px; } }
      .login-slider .banner-login .banner-content .title {
        color: #fff;
        font-family: var(--font-family-title);
        font-size: 60px;
        font-style: italic;
        font-weight: 900;
        max-width: 625px; }
        @media only screen and (max-width: 1480px) {
          .login-slider .banner-login .banner-content .title {
            font-size: 50px; } }
        @media only screen and (max-width: 1280px) {
          .login-slider .banner-login .banner-content .title {
            font-size: 40px; } }
        @media only screen and (max-width: 767px) {
          .login-slider .banner-login .banner-content .title {
            font-size: 28px; } }
      .login-slider .banner-login .banner-content .text {
        color: #fff;
        max-width: 755px;
        margin-bottom: 20px; }
        @media only screen and (max-width: 1280px) {
          .login-slider .banner-login .banner-content .text {
            font-size: 14px; } }
        @media only screen and (max-width: 767px) {
          .login-slider .banner-login .banner-content .text {
            font-size: 13px; } }
    .login-slider .banner-login:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 70%;
      background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000 100%);
      z-index: -2; }

.login-slider .num-pagination {
  position: absolute;
  bottom: 55px;
  right: 20%; }
  .login-slider .num-pagination .swiper-pagination-bullet {
    color: #ffffff;
    font-weight: 500;
    font-size: 20px; }
    .login-slider .num-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
      transform: scale(1.5) translateY(-3px); }
  @media only screen and (max-width: 1280px) {
    .login-slider .num-pagination {
      right: 30%; } }
  @media only screen and (max-width: 767px) {
    .login-slider .num-pagination {
      right: 30%; } }
  @media only screen and (max-width: 575px) {
    .login-slider .num-pagination {
      right: 50%;
      bottom: 40px; } }

.login-slider .main-btn {
  position: absolute;
  bottom: 60px;
  left: 90px;
  z-index: 1; }
  .login-slider .main-btn .btn-prev,
  .login-slider .main-btn .btn-next {
    margin: 0 5px; }
    .login-slider .main-btn .btn-prev.active, .login-slider .main-btn .btn-prev:hover,
    .login-slider .main-btn .btn-next.active,
    .login-slider .main-btn .btn-next:hover {
      background: #fff;
      color: var(--title); }
  @media only screen and (max-width: 1480px) {
    .login-slider .main-btn {
      left: 70px; } }
  @media only screen and (max-width: 767px) {
    .login-slider .main-btn {
      left: 50px; } }
  @media only screen and (max-width: 575px) {
    .login-slider .main-btn {
      left: 30px;
      bottom: 40px; } }

.event-single .dz-media {
  margin-bottom: 30px; }

.event-single .dz-info h1, .event-single .dz-info .h1 {
  font-size: 40px;
  font-style: italic;
  margin-bottom: 10px;
  font-weight: 700; }

.event-single .event-text {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400; }

.event-single .event-text {
  margin-bottom: 30px;
  font-size: 16px;
  font-weight: 400; }

.event-single .title {
  font-size: 24px;
  font-style: italic;
  margin-bottom: 10px;
  font-weight: 700; }

.sidebar-title {
  font-size: 24px;
  color: #000;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  margin-bottom: 25px; }

.dz-box.product {
  margin-bottom: 30px !important;
  -webkit-transition: all 0.5s;
  -ms-transition: all 0.5s;
  transition: all 0.5s;
  height: calc(100% - 30px);
  background: #fff; }
  .dz-box.product .item-box .item-img {
    position: relative;
    overflow: hidden;
    z-index: 1; }
    .dz-box.product .item-box .item-img > img {
      width: 100%; }
    .dz-box.product .item-box .item-img:after {
      content: "";
      position: absolute;
      width: 100%;
      height: 100%;
      left: 0;
      z-index: 0;
      background: #212529;
      top: 0;
      opacity: 0;
      -webkit-transition: all 0.5s;
      -ms-transition: all 0.5s;
      transition: all 0.5s; }
  .dz-box.product .item-box .item-info {
    padding: 20px;
    text-align: center; }
    .dz-box.product .item-box .item-info .item-title {
      font-size: 20px;
      margin-bottom: 0;
      line-height: 1.2; }
    .dz-box.product .item-box .item-info .item-price {
      line-height: 1.2;
      margin-bottom: 0; }
      .dz-box.product .item-box .item-info .item-price .price {
        color: var(--primary);
        font-size: 16px !important;
        font-weight: 600;
        margin-bottom: 0; }
      .dz-box.product .item-box .item-info .item-price .woocommerce-Price-currencySymbol {
        font-size: 16px !important; }
    .dz-box.product .item-box .item-info .woocommerce-product-rating {
      margin: 0; }
      .dz-box.product .item-box .item-info .woocommerce-product-rating .woocommerce-review-link {
        margin: 0; }
  .dz-box.product .item-box .item-info-in {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 30px 20px;
    z-index: 1;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s;
    transform: translateY(100px);
    -moz-transform: translateY(100px);
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    opacity: 0; }
    .dz-box.product .item-box .item-info-in ul {
      margin: 0;
      padding: 0;
      text-align: center; }
      .dz-box.product .item-box .item-info-in ul li {
        list-style: none;
        display: inline-block;
        margin: 0 5px; }
        .dz-box.product .item-box .item-info-in ul li a {
          background: var(--primary);
          color: #fff;
          width: 45px;
          text-align: center;
          display: block;
          font-size: 16px;
          height: 45px;
          line-height: 45px;
          box-shadow: 0 5px 15px -10px var(--primary);
          -webkit-transition: all 0.5s;
          -ms-transition: all 0.5s;
          transition: all 0.5s;
          border-radius: var(--border-radius-base);
          display: flex;
          align-items: center;
          justify-content: center; }
          .dz-box.product .item-box .item-info-in ul li a .fa-heart:before {
            font-weight: 500; }
          .dz-box.product .item-box .item-info-in ul li a i {
            margin: 0;
            padding: 0;
            -webkit-transition: all 0.5s;
            -ms-transition: all 0.5s;
            transition: all 0.5s;
            display: inline-block; }
          .dz-box.product .item-box .item-info-in ul li a:hover {
            background: var(--primary-hover); }
            .dz-box.product .item-box .item-info-in ul li a:hover i {
              transform: scale(1.25);
              -moz-transform: scale(1.25);
              -webkit-transform: scale(1.25);
              -ms-transform: scale(1.25);
              -o-transform: scale(1.25); }
          .dz-box.product .item-box .item-info-in ul li a.add_to_cart_button.added i:before {
            content: "\f217"; }
          .dz-box.product .item-box .item-info-in ul li a.add_to_cart_button.loading i:before {
            content: "\f110"; }
        .dz-box.product .item-box .item-info-in ul li .add_to_cart_button:before {
          content: none; }
        .dz-box.product .item-box .item-info-in ul li .yith-wcwl-add-to-wishlist {
          margin-top: 0; }
  .dz-box.product .item-review {
    display: flex;
    justify-content: center; }
  .dz-box.product:hover {
    box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.15);
    transform: translateY(-15px);
    -moz-transform: translateY(-15px);
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    -o-transform: translateY(-15px); }
    .dz-box.product:hover .item-box .item-img:after {
      opacity: 0.7; }
    .dz-box.product:hover .item-box .item-img .item-info-in {
      transform: translateY(0);
      -moz-transform: translateY(0);
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      -o-transform: translateY(0);
      opacity: 1; }

.woocommerce div.product .dz-box .woocommerce-product-rating {
  display: block; }
  .woocommerce div.product .dz-box .woocommerce-product-rating .star-rating {
    float: none;
    position: relative;
    display: inline-block;
    font-size: 13px;
    top: 2px; }
    .woocommerce div.product .dz-box .woocommerce-product-rating .star-rating span {
      font-size: 13px; }
  .woocommerce div.product .dz-box .woocommerce-product-rating .woocommerce-review-link {
    display: inline-block; }
    .woocommerce div.product .dz-box .woocommerce-product-rating .woocommerce-review-link .count {
      margin-right: 4px; }

.woocommerce .dz_product_single_button {
  display: flex;
  gap: 10px;
  margin-bottom: 40px; }
  .woocommerce .dz_product_single_button .compare,
  .woocommerce .dz_product_single_button .yith-wcwl-wishlistaddedbrowse,
  .woocommerce .dz_product_single_button .yith-wcwl-wishlistexistsbrowse,
  .woocommerce .dz_product_single_button .yith-wcwl-add-button a {
    font-size: 16px;
    padding: 12px 30px;
    line-height: 24px;
    display: inline-flex;
    border-radius: var(--bs-border-radius);
    font-weight: 500;
    position: relative;
    text-transform: capitalize;
    font-family: "DM Sans",sans-serif;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    text-align: center;
    -webkit-transition: all .2s;
    -ms-transition: all .2s;
    transition: all .2s;
    text-decoration: none;
    vertical-align: middle;
    justify-content: center;
    border: var(--bs-btn-border-width) solid var(--bs-btn-border-color);
    color: var(--title);
    background-color: var(--light);
    border-color: var(--light);
    font-size: 16px !important;
    gap: 5px; }
    .woocommerce .dz_product_single_button .compare:after,
    .woocommerce .dz_product_single_button .yith-wcwl-wishlistaddedbrowse:after,
    .woocommerce .dz_product_single_button .yith-wcwl-wishlistexistsbrowse:after,
    .woocommerce .dz_product_single_button .yith-wcwl-add-button a:after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      -webkit-transition: all 0.5s;
      -moz-transition: all 0.5s;
      -o-transition: all 0.5s;
      transition: all 0.5s;
      opacity: 0.8;
      -webkit-transform: translate(-105%, 0);
      transform: translate(-105%, 0);
      border-right-width: 2px;
      border-right-style: solid;
      border-right-color: white;
      background-color: rgba(255, 255, 255, 0.5); }
    .woocommerce .dz_product_single_button .compare:hover,
    .woocommerce .dz_product_single_button .yith-wcwl-wishlistaddedbrowse:hover,
    .woocommerce .dz_product_single_button .yith-wcwl-wishlistexistsbrowse:hover,
    .woocommerce .dz_product_single_button .yith-wcwl-add-button a:hover {
      box-shadow: none;
      text-decoration: none; }
      .woocommerce .dz_product_single_button .compare:hover:after,
      .woocommerce .dz_product_single_button .yith-wcwl-wishlistaddedbrowse:hover:after,
      .woocommerce .dz_product_single_button .yith-wcwl-wishlistexistsbrowse:hover:after,
      .woocommerce .dz_product_single_button .yith-wcwl-add-button a:hover:after {
        opacity: 0;
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0); }
    .woocommerce .dz_product_single_button .compare:hover,
    .woocommerce .dz_product_single_button .yith-wcwl-wishlistaddedbrowse:hover,
    .woocommerce .dz_product_single_button .yith-wcwl-wishlistexistsbrowse:hover,
    .woocommerce .dz_product_single_button .yith-wcwl-add-button a:hover {
      color: var(--title);
      background-color: #cfcfcf;
      border-color: #cfcfcf; }
    @media only screen and (max-width: 575px) {
      .woocommerce .dz_product_single_button .compare,
      .woocommerce .dz_product_single_button .yith-wcwl-wishlistaddedbrowse,
      .woocommerce .dz_product_single_button .yith-wcwl-wishlistexistsbrowse,
      .woocommerce .dz_product_single_button .yith-wcwl-add-button a {
        padding-left: 20px;
        padding-right: 20px; } }
  .woocommerce .dz_product_single_button .yith-wcwl-wishlistaddedbrowse,
  .woocommerce .dz_product_single_button .yith-wcwl-wishlistexistsbrowse {
    color: #fff;
    color: #ffffff;
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    font-weight: 700;
    font-size: 0 !important;
    padding: 0;
    width: 45px;
    gap: 0;
    height: 45px; }
    .woocommerce .dz_product_single_button .yith-wcwl-wishlistaddedbrowse i,
    .woocommerce .dz_product_single_button .yith-wcwl-wishlistexistsbrowse i {
      font-size: 16px;
      line-height: 45px; }
  .woocommerce .dz_product_single_button .compare.added {
    background-color: var(--secondary);
    border: 1px solid var(--secondary);
    color: #fff; }

.dz-simple-product {
  display: flex;
  margin-bottom: 15px;
  gap: 20px; }
  @media only screen and (max-width: 575px) {
    .dz-simple-product {
      gap: 10px; } }
  .dz-simple-product .btn-quantity input,
  .dz-simple-product .btn-quantity .bootstrap-touchspin {
    height: 40px; }
  .dz-simple-product .disabled {
    border-color: transparent; }

.woocommerce nav.woocommerce-pagination ul {
  border: 0; }
  .woocommerce nav.woocommerce-pagination ul li {
    border: 0;
    overflow: unset; }
    .woocommerce nav.woocommerce-pagination ul li span,
    .woocommerce nav.woocommerce-pagination ul li a {
      min-width: 40px;
      height: 40px;
      line-height: 40px;
      border-radius: 0 !important;
      color: var(--secondary);
      text-align: center;
      border: 0;
      margin: 0 5px;
      transition: all 0.5s;
      font-size: 15px;
      padding: 10px 15px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 400;
      font-family: var(--font-family-base);
      background-color: #fff;
      box-shadow: unset !important; }
      .woocommerce nav.woocommerce-pagination ul li span:focus, .woocommerce nav.woocommerce-pagination ul li span:hover, .woocommerce nav.woocommerce-pagination ul li span.current,
      .woocommerce nav.woocommerce-pagination ul li a:focus,
      .woocommerce nav.woocommerce-pagination ul li a:hover,
      .woocommerce nav.woocommerce-pagination ul li a.current {
        color: #fff;
        background-color: var(--secondary);
        border-color: var(--secondary);
        box-shadow: 0px 5px 12px var(--rgba-primary-4); }

.woocommerce a.remove {
  width: 40px;
  height: 40px;
  background: #F6F6F6;
  display: inline-block;
  color: var(--title) !important;
  text-align: center;
  line-height: 40px;
  border-radius: 100%; }
  .woocommerce a.remove i {
    color: var(--title);
    font-weight: 900;
    vertical-align: middle;
    font-size: 16px; }

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  font-family: var(--font-family-base);
  font-size: 15px;
  line-height: 18px;
  font-weight: 600;
  color: var(--title);
  margin-bottom: 5px; }

.woocommerce .product_list_widget .star-rating {
  position: relative;
  font-size: 13px; }
  .woocommerce .product_list_widget .star-rating span {
    font-size: 13px; }

.woocommerce .widget_shopping_cart .cart_list li a.remove,
.woocommerce.widget_shopping_cart .cart_list li a.remove {
  left: auto;
  right: 0; }

.woocommerce .widget_shopping_cart .cart_list li, .woocommerce.widget_shopping_cart .cart_list li {
  padding-left: 0; }

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  padding: 0  0 15px 0;
  border-bottom: 1px solid #eee;
  margin-bottom: 15px; }
  .woocommerce ul.cart_list li:last-child,
  .woocommerce ul.product_list_widget li:last-child {
    border: 0;
    margin-bottom: 0; }

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li .amount {
  color: var(--primary);
  font-size: 16px;
  font-weight: 500; }

.woocommerce ul.cart_list li bdi,
.woocommerce ul.product_list_widget li del bdi {
  color: #666;
  opacity: 0.9;
  font-size: 14px;
  font-weight: 400; }

.woocommerce .widget_shopping_cart .total strong,
.woocommerce.widget_shopping_cart .total strong {
  margin-right: 10px; }

.woocommerce-mini-cart__buttons.buttons {
  justify-content: center; }

.woocommerce .widget_shopping_cart .buttons a,
.woocommerce.widget_shopping_cart .buttons a {
  margin-right: 5px;
  margin-bottom: 5px;
  padding: 10px 15px;
  text-transform: uppercase; }

.woocommerce .widget_shopping_cart .total, .woocommerce.widget_shopping_cart .total {
  border-top: 3px solid #ebe9eb;
  padding: 10px 0 10px; }

.widget_shopping_cart_content p strong {
  margin-right: 10px;
  color: var(--title); }

.widget_shopping_cart_content p .amount {
  color: var(--primary); }

.woocommerce .widget_price_filter .price_slider_amount .button {
  background: var(--primary);
  border-radius: 0;
  text-transform: uppercase;
  font-weight: 600;
  width: auto; }

.woocommerce .widget_rating_filter ul li {
  position: relative; }

.woocommerce .woocommerce.widget_price_filter .ui-slider .ui-slider-range {
  background-color: var(--primary) !important; }

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  border: 2px solid var(--primary); }

.woocommerce .widget_price_filter .price_slider_amount .price_label {
  font-weight: 700;
  color: var(--title); }

.widget_product_categories ul li {
  border: 0;
  color: inherit;
  font-family: inherit;
  text-align: right;
  display: table;
  width: 100%;
  padding: 0.5rem 0rem 0.5rem 1.25rem !important;
  line-height: 1.3 !important; }
  .widget_product_categories ul li a {
    color: inherit;
    float: left;
    text-transform: capitalize;
    text-align: left;
    position: relative;
    -webkit-transition: all 0.5s;
    -ms-transition: all 0.5s;
    transition: all 0.5s; }
    .widget_product_categories ul li a:after {
      content: "\f101";
      font-family: "Font Awesome 5 Free";
      position: absolute;
      display: block;
      left: -1.25rem;
      top: 0.063rem;
      font-size: 14px;
      font-weight: 900; }
    .widget_product_categories ul li a:hover {
      color: var(--primary);
      transform: translateX(10px); }
  .widget_product_categories ul li ul {
    margin-bottom: -0.625rem; }

.widget_product_categories ul ul {
  padding-left: 1.125rem;
  margin-top: 0.5rem;
  margin-left: -0.9375rem; }

.woocommerce div.product p.price,
.woocommerce div.product span.price,
.woocommerce div.product .price ins span {
  font-weight: 600;
  font-size: 1.4rem;
  color: var(--title);
  display: inline-block;
  font-family: inherit;
  line-height: inherit;
  margin: 0 0 15px; }
  .woocommerce div.product p.price .woocommerce-Price-amount.amount,
  .woocommerce div.product span.price .woocommerce-Price-amount.amount,
  .woocommerce div.product .price ins span .woocommerce-Price-amount.amount {
    font-size: inherit !important;
    margin-bottom: 0; }
  .woocommerce div.product p.price .woocommerce-Price-currencySymbol,
  .woocommerce div.product span.price .woocommerce-Price-currencySymbol,
  .woocommerce div.product .price ins span .woocommerce-Price-currencySymbol {
    margin-bottom: 0; }
  @media only screen and (max-width: 575px) {
    .woocommerce div.product p.price,
    .woocommerce div.product span.price,
    .woocommerce div.product .price ins span {
      font-size: 18px !important; }
      .woocommerce div.product p.price .woocommerce-Price-currencySymbol,
      .woocommerce div.product span.price .woocommerce-Price-currencySymbol,
      .woocommerce div.product .price ins span .woocommerce-Price-currencySymbol {
        font-size: 14px; } }

.single-product.woocommerce .price ins span.woocommerce-Price-amount.amount,
.single-product.woocommerce .price ins span.woocommerce-Price-amount.amount .woocommerce-Price-currencySymbol {
  font-size: inherit !important; }

.woocommerce div.product .price ins {
  margin-bottom: 0; }

.woocommerce-product-details__short-description {
  margin-bottom: 20px;
  display: block;
  clear: both; }

.product_meta {
  color: var(--title);
  margin-bottom: 20px;
  font-weight: 500; }
  .product_meta a {
    margin: 0 4px;
    font-weight: 500; }

.woocommerce-review-link {
  color: inherit;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  padding: 0; }

.woocommerce div.product .woocommerce-product-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  position: relative;
  text-align: right;
  float: right;
  margin: -10px 0 20px; }
  @media only screen and (max-width: 575px) {
    .woocommerce div.product .woocommerce-product-rating {
      display: block;
      float: left;
      margin: 0 0 10px; } }

.price-rating-area {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border: 1px solid #eee;
  border-width: 1px 0 1px 0;
  align-items: center;
  margin-bottom: 20px; }
  .price-rating-area .main-price {
    margin-bottom: 0; }
  .price-rating-area .star-rating {
    margin: 0;
    float: right;
    position: relative !important; }

.woocommerce .woocommerce-product-rating .star-rating {
  margin: 0;
  float: right; }
  @media only screen and (max-width: 575px) {
    .woocommerce .woocommerce-product-rating .star-rating {
      float: left;
      position: relative; } }

.woocommerce div.product form.cart .variations label {
  font-weight: 500;
  color: var(--title);
  margin: 0; }

.cart .quantity input.input-text {
  font-size: 18px;
  height: 40px !important; }
  @media only screen and (max-width: 767px) {
    .cart .quantity input.input-text {
      height: 40px !important; } }

.woocommerce.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item {
  border-radius: 0; }

.woocommerce.woo-variation-swatches .variable-items-wrapper .variable-item:not(.radio-variable-item) {
  background-color: var(--primary);
  color: #fff;
  font-size: 14px;
  box-shadow: none;
  padding: 0px;
  box-shadow: none; }

.woocommerce .button-variable-item span {
  font-size: 13px;
  font-weight: 600;
  background: #eee;
  padding: 0 10px !important;
  color: #000;
  color: #000; }

.woocommerce .button-variable-item.selected span {
  background: var(--primary);
  color: #fff; }

.woo-variation-items-wrapper .variable-items-wrapper li {
  margin: 0 4px 4px 0px !important; }

.woocommerce-variation-add-to-cart .btn, .woocommerce-variation-add-to-cart .wp-block-button__link, .woocommerce-variation-add-to-cart .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce-variation-add-to-cart .btn.sw-btn-prev, .woocommerce-variation-add-to-cart .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce-variation-add-to-cart .btn.sw-btn-next, .woocommerce-variation-add-to-cart .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .woocommerce-variation-add-to-cart a,
.woocommerce-variation-add-to-cart .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .woocommerce-variation-add-to-cart a, .woocommerce-variation-add-to-cart .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .woocommerce-variation-add-to-cart input, .woocommerce-variation-add-to-cart .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .woocommerce-variation-add-to-cart .button, .woocommerce-variation-add-to-cart .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce-variation-add-to-cart a.checkout-button, .woocommerce-variation-add-to-cart .woocommerce #respond input#submit, .woocommerce #respond .woocommerce-variation-add-to-cart input#submit,
.woocommerce-variation-add-to-cart .woocommerce a.button, .woocommerce .woocommerce-variation-add-to-cart a.button,
.woocommerce-variation-add-to-cart .woocommerce button.button, .woocommerce .woocommerce-variation-add-to-cart button.button,
.woocommerce-variation-add-to-cart .woocommerce input.button, .woocommerce .woocommerce-variation-add-to-cart input.button,
.woocommerce-variation-add-to-cart .woocommerce #place_order, .woocommerce .woocommerce-variation-add-to-cart #place_order {
  text-transform: uppercase; }

@media only screen and (max-width: 767px) {
  .woocommerce div.product .woocommerce-tabs {
    margin-top: 0; } }

.woocommerce.woo-variation-swatches .variable-items-wrapper {
  margin-bottom: 10px !important; }

.woocommerce div.product form.cart {
  margin-bottom: 1rem;
  margin-top: 1rem; }

#tab-reviews, #tab-description {
  background: transparent !important;
  margin-top: 0px;
  padding: 0;
  border: 0; }

.woocommerce div.product .woocommerce-tabs .panel {
  padding: 0;
  background: transparent; }

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0px !important;
  margin: 0px 0px 30px !important;
  border: none !important;
  border-bottom: 1px solid #eee !important;
  overflow: unset; }
  .woocommerce div.product .woocommerce-tabs ul.tabs li {
    margin-bottom: 0;
    background: transparent !important;
    border: 0; }
    .woocommerce div.product .woocommerce-tabs ul.tabs li a {
      color: var(--title);
      border: 0;
      margin: 0;
      padding: 10px 20px;
      position: relative;
      background: transparent; }
      .woocommerce div.product .woocommerce-tabs ul.tabs li a:before {
        bottom: 0;
        background: var(--primary);
        top: auto;
        width: 0;
        -webkit-transition: all 0.5s;
        -ms-transition: all 0.5s;
        transition: all 0.5s;
        opacity: 1; }
    .woocommerce div.product .woocommerce-tabs ul.tabs li:hover a,
    .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
      background: transparent;
      color: var(--primary); }
      .woocommerce div.product .woocommerce-tabs ul.tabs li:hover a:before,
      .woocommerce div.product .woocommerce-tabs ul.tabs li.active a:before {
        width: 100%;
        opacity: 1; }

.woocommerce #review_form #respond p {
  width: 100%; }

.comment-reply-title {
  position: relative;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--font-family-title);
  letter-spacing: 4px;
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--title);
  padding-bottom: 20px;
  display: block;
  margin-bottom: 15px; }
  .comment-reply-title:after {
    content: "\f078";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 14px;
    line-height: 12px;
    text-shadow: 10px 0px 0 var(--primary), 20px 0px 0 var(--primary), 30px 0px 0 var(--primary), 40px 0px 0 var(--primary), 50px 0px 0 var(--primary), 60px 0px 0 var(--primary), 70px 0px 0 var(--primary), 80px 0px 0 var(--primary);
    color: var(--primary);
    position: absolute;
    bottom: 0;
    left: 0; }

.woocommerce #review_form #respond p {
  margin: 0px 0px 20px !important;
  display: inline-block; }

#review_form {
  padding: 30px;
  border: 1px solid var(--secondary);
  margin: 30px 0; }
  @media only screen and (max-width: 767px) {
    #review_form {
      padding: 20px; } }
  #review_form .comment-form-rating {
    margin-bottom: 0;
    display: block;
    width: 100%;
    padding: 0 10px; }
    #review_form .comment-form-rating p {
      display: inline-block !important;
      width: auto !important;
      top: 5px;
      position: relative; }
  #review_form .comment-respond .comment-form p label {
    display: inline-block; }
  #review_form #respond .comment-form-email,
  #review_form #respond .comment-form-author {
    width: 50% !important; }

.woocommerce #reviews #comments ol.commentlist {
  padding: 0; }
  .woocommerce #reviews #comments ol.commentlist li {
    margin-bottom: 0; }
    .woocommerce #reviews #comments ol.commentlist li img.avatar {
      width: 80px;
      border: 0;
      padding: 0;
      border-radius: var(--border-radius-base); }
    .woocommerce #reviews #comments ol.commentlist li cite {
      font-size: 1rem;
      font-family: var(--font-family-title);
      color: var(--title);
      font-weight: 600;
      font-style: normal; }
    .woocommerce #reviews #comments ol.commentlist li time {
      font-size: 13px; }
    .woocommerce #reviews #comments ol.commentlist li .comment_container {
      padding-left: 105px;
      min-height: 105px;
      border-bottom: 1px solid var(--light);
      margin-bottom: 30px;
      padding-bottom: 30px; }
    .woocommerce #reviews #comments ol.commentlist li .comment-text {
      margin: 0 0 0 95px;
      padding: 0;
      border: 0;
      border-radius: 0; }
      .woocommerce #reviews #comments ol.commentlist li .comment-text p {
        font-size: 16px;
        font-weight: 400; }
        .woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
          color: var(--primary);
          font-weight: 500; }
          .woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong {
            color: var(--title);
            font-size: 20px;
            display: block;
            font-family: var(--font-family-title);
            text-transform: uppercase;
            line-height: 1.2;
            font-weight: 600;
            margin-bottom: 5px; }

.woocommerce .star-rating {
  font-size: 14px;
  color: var(--primary);
  width: 5.75em;
  display: inline-block;
  float: none; }
  .woocommerce .star-rating span {
    font-size: inherit;
    color: var(--primary); }
    .woocommerce .star-rating span:before {
      line-height: 1; }

.woocommerce #reviews #comments h2, .woocommerce #reviews #comments .h2,
#tab-description h2,
#tab-description .h2,
.woocommerce div.product .woocommerce-tabs .panel h2,
.woocommerce div.product .woocommerce-tabs .panel .h2 {
  font-family: var(--font-family-title);
  color: var(--title);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px; }

.woocommerce-cart-form {
  overflow: auto; }
  .woocommerce-cart-form .table.shop_table tr {
    vertical-align: middle; }
    .woocommerce-cart-form .table.shop_table tr .product-item-price .amount,
    .woocommerce-cart-form .table.shop_table tr .product-item-totle .amount {
      font-size: 16px; }
    .woocommerce-cart-form .table.shop_table tr .product-quantity .quantity input {
      border: 0;
      background-color: #F6F6F6;
      height: 30px !important;
      width: 42px !important; }
    .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical .btn, .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical .wp-block-button__link, .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical a,
    .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical a, .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical input, .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical .button, .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical a.checkout-button, .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical .woocommerce #respond input#submit, .woocommerce #respond .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical input#submit,
    .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical .woocommerce #place_order, .woocommerce .woocommerce-cart-form .table.shop_table tr .product-quantity .input-group-btn-vertical #place_order {
      background-color: var(--secondary);
      color: #fff;
      min-width: 30px;
      line-height: 30px;
      width: 30px;
      height: 30px; }
    .woocommerce-cart-form .table.shop_table tr .product-quantity .bootstrap-touchspin {
      width: 125px;
      min-width: 125px;
      height: 30px;
      margin-bottom: 0; }
    .woocommerce-cart-form .table.shop_table tr td.actions .coupon .input-text {
      height: 50px;
      width: 180px;
      display: inline-block;
      margin-right: 10px; }
    .woocommerce-cart-form .table.shop_table tr th {
      color: var(--title);
      font-weight: 500;
      font-size: 16px;
      font-family: var(--font-faimly-base);
      background: transparent; }
      @media only screen and (max-width: 575px) {
        .woocommerce-cart-form .table.shop_table tr th {
          font-size: 14px; } }
      .woocommerce-cart-form .table.shop_table tr th.product-thumbnail {
        width: 100px; }
      .woocommerce-cart-form .table.shop_table tr th.product-remove {
        width: 40px; }
    .woocommerce-cart-form .table.shop_table tr img {
      width: 80px; }
    .woocommerce-cart-form .table.shop_table tr .product-item-name {
      font-weight: 500;
      font-size: 16px; }
      .woocommerce-cart-form .table.shop_table tr .product-item-name a {
        color: var(--title); }
    .woocommerce-cart-form .table.shop_table tr .quantity input {
      height: 50px;
      width: 70px;
      padding: 0 10px 0 15px;
      text-align: left; }
    .woocommerce-cart-form .table.shop_table tr .button {
      padding: 14px 20px;
      font-size: 13px;
      text-transform: uppercase;
      color: #fff; }

.woocommerce .cart_totals h2, .woocommerce .cart_totals .h2 {
  font-family: var(--font-family-title);
  background: var(--primary);
  font-size: 18px;
  color: #fff;
  text-transform: uppercase;
  padding: 15px 20px;
  font-weight: 500;
  letter-spacing: 2px; }

.woocommerce table.shop_table {
  font-size: 14px;
  border-radius: 0;
  border: 0; }
  .woocommerce table.shop_table th {
    padding: 10px 15px;
    border: 0;
    color: var(--title);
    font-size: 16px;
    font-weight: 700; }
    .woocommerce table.shop_table th:first-child {
      padding-left: 0; }
    .woocommerce table.shop_table th:last-child {
      padding-right: 0; }
  .woocommerce table.shop_table .woocommerce-shipping-totals .woocommerce-shipping-methods li {
    font-weight: 500;
    color: var(--secondary); }
  .woocommerce table.shop_table td {
    padding: 10px 15px;
    border-color: rgba(0, 0, 0, 0.1); }
    .woocommerce table.shop_table td:first-child {
      padding-left: 0; }
    .woocommerce table.shop_table td:last-child {
      padding-right: 0; }
    .woocommerce table.shop_table td.product-price, .woocommerce table.shop_table td.product-subtotal,
    .woocommerce table.shop_table td ins,
    .woocommerce table.shop_table td del {
      font-family: var(--font-family-base);
      font-size: 16px; }
    .woocommerce table.shop_table td del {
      font-size: 85%; }
    .woocommerce table.shop_table td ins {
      text-decoration: none; }
    .woocommerce table.shop_table td.product-quantity:before {
      font-family: var(--font-family-title);
      font-size: 16px; }
    @media only screen and (max-width: 767px) {
      .woocommerce table.shop_table td.product-quantity {
        display: flex;
        justify-content: space-between;
        align-items: center; }
        .woocommerce table.shop_table td.product-quantity .btn-quantity {
          margin-right: 0; } }
    .woocommerce table.shop_table td.product-subtotal {
      color: var(--title); }

.woocommerce nav.woocommerce-pagination {
  text-align: right; }

.cart_totals {
  color: var(--title); }

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  width: 100%;
  text-transform: uppercase;
  text-align: center;
  padding: 13px 30px;
  display: block; }

.woocommerce .woocommerce-checkout.checkout form .form-row textarea,
.woocommerce .woocommerce-checkout.checkout form .form-row input[type="text"],
.woocommerce .woocommerce-checkout.checkout form .form-row input[type="email"],
.woocommerce .woocommerce-checkout.checkout form .form-row input[type="tel"],
.woocommerce .woocommerce-checkout.checkout form .form-row select,
.woocommerce .woocommerce-checkout.checkout form .form-row input.input-text,
.woocommerce .woocommerce-checkout.checkout form .form-row input {
  height: 50px; }

.woocommerce .woocommerce-checkout.checkout .col-2,
.woocommerce .woocommerce-checkout.checkout .col-1 {
  padding-left: 15px;
  padding-right: 15px; }

.woocommerce-EditAccountForm.edit-account input[type="text"],
.woocommerce-EditAccountForm.edit-account input[type="email"],
.woocommerce-EditAccountForm.edit-account input[type="password"],
.login input[type="text"], .login input[type="password"],
.woocommerce-ResetPassword.lost_reset_password input[type="text"],
.checkout.woocommerce-checkout input[type="text"],
.checkout.woocommerce-checkout input[type="email"],
.checkout.woocommerce-checkout input[type="tel"],
.checkout.woocommerce-checkout .select2-choice,
.checkout.woocommerce-checkout textarea,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row .select2-selection,
.woocommerce form .form-row .select2-choice {
  height: 50px; }

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 48%; }

.lost_reset_password .button {
  display: block;
  width: 100%;
  text-align: center; }

.woocommerce .woocommerce-message {
  border-top-color: var(--primary); }

.woocommerce form .form-row label {
  font-family: var(--font-family-base);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 2px; }

.woocommerce .col2-set, .woocommerce-page .col2-set {
  width: auto;
  margin-left: -15px !important;
  margin-right: -15px !important; }
  @media only screen and (max-width: 767px) {
    .woocommerce .col2-set, .woocommerce-page .col2-set {
      margin-left: 0 !important;
      margin-right: 0 !important; } }

.woocommerce form .form-row {
  margin: 0 0 15px;
  padding: 0; }

.woocommerce-additional-fields h3, .woocommerce-additional-fields .h3 {
  color: var(--title);
  font-family: var(--font-family-title);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4em;
  margin: 0 0 20px;
  text-transform: uppercase; }

.woocommerce table.shop_table thead th {
  color: var(--title);
  background: transparent;
  font-family: var(--font-family-base);
  font-weight: 500; }

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order {
  text-transform: uppercase;
  text-align: center;
  padding: 13px 30px; }

.woocommerce-form-coupon-toggle {
  display: none; }

.payment_methods input + label {
  font-weight: 600;
  color: var(--title);
  padding-left: 30px;
  line-height: 1.2;
  position: relative; }
  .payment_methods input + label:after {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 18px;
    background: #fff;
    border: 2px solid var(--primary);
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transition: all 0.8s;
    -ms-transition: all 0.8s;
    transition: all 0.8s;
    transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%); }

.payment_methods input:checked + label:after {
  border-width: 2px;
  background: var(--primary);
  box-shadow: inset 0px 0 0px 3px #fff;
  border-color: var(--primary); }

.woocommerce-checkout #payment div.payment_box::after {
  content: none; }

.yith-wcwl-wishlistexistsbrowse,
.yith-wcwl-wishlistaddedbrowse {
  position: relative;
  top: 0; }
  .yith-wcwl-wishlistexistsbrowse .feedback,
  .yith-wcwl-wishlistaddedbrowse .feedback {
    display: inline-block;
    padding: 0 !important;
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
    height: 100%;
    line-height: 45px;
    text-align: center; }
  .yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon,
  .yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon {
    margin-right: 0 !important; }
    .yith-wcwl-wishlistexistsbrowse .yith-wcwl-icon:before,
    .yith-wcwl-wishlistaddedbrowse .yith-wcwl-icon:before {
      font-weight: 900; }

.woocommerce form.woocommerce-form.checkout_coupon,
.woocommerce-ResetPassword,
.woocommerce form.woocommerce-form.login,
.woocommerce form.woocommerce-form.register {
  border: 0;
  box-shadow: 0 10px 60px 0 rgba(0, 0, 0, 0.1);
  padding: 30px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto; }

.woocommerce-ResetPassword .form-row-first {
  width: 100% !important; }

.woocommerce-Addresses .col-2,
.woocommerce-Addresses .col-1 {
  padding-left: 15px;
  padding-right: 15px; }

.product-details .product_meta > span {
  display: block; }

.pswp {
  z-index: 9999; }

.shop-item-rating .woocommerce-product-rating .count {
  margin-left: 2px;
  margin-right: 5px; }

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  float: unset;
  margin-right: 0;
  display: block;
  margin-top: 10px; }

.woocommerce-cart-form .button:disabled {
  color: #fff !important; }

.minicart .widget_shopping_cart .woocommerce-Price-amount.amount {
  text-align: right;
  float: right; }

.minicart .widget_shopping_cart .total span {
  margin-right: 5px;
  float: unset; }

.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 25%;
  padding-right: 30px; }
  @media only screen and (max-width: 767px) {
    .woocommerce-account .woocommerce-MyAccount-navigation {
      width: 100%;
      padding-right: 0; } }

.woocommerce-MyAccount-navigation ul {
  width: 100%;
  display: block;
  padding: 0; }
  @media only screen and (max-width: 767px) {
    .woocommerce-MyAccount-navigation ul {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 5px;
      text-align: center;
      margin-bottom: 10px; } }

.woocommerce-MyAccount-navigation ul li {
  list-style: none; }
  @media only screen and (max-width: 767px) {
    .woocommerce-MyAccount-navigation ul li {
      flex: auto; }
      .woocommerce-MyAccount-navigation ul li a {
        margin: 0  !important; } }

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
  background: #fff;
  color: #000;
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
  padding: 12px 20px;
  width: 100%; }

.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:hover a {
  background: var(--secondary);
  border-left-color: var(--secondary);
  color: #fff; }

.woocommerce-account .woocommerce-MyAccount-content {
  border: 1px solid #000;
  min-height: 307px;
  padding: 20px;
  width: 75%;
  font-size: 15px;
  line-height: 1.45;
  overflow-x: auto; }
  @media only screen and (max-width: 767px) {
    .woocommerce-account .woocommerce-MyAccount-content {
      width: 100%; } }
  .woocommerce-account .woocommerce-MyAccount-content .show-password-input {
    top: 16px !important; }
  .woocommerce-account .woocommerce-MyAccount-content legend {
    font-size: 1.25rem;
    font-weight: 700; }

.woocommerce-account .addresses .title h3, .woocommerce-account .addresses .title .h3 {
  font-size: 18px; }

.woocommerce-account .woocommerce-MyAccount-content .form-row {
  padding: 0; }

.woocommerce-account .end-side-content .woocommerce-MyAccount-content,
.woocommerce-account .end-side-content .woocommerce-MyAccount-navigation {
  width: 100%; }

.woocommerce-account .end-side-content .woocommerce-MyAccount-navigation {
  padding: 0; }
  .woocommerce-account .end-side-content .woocommerce-MyAccount-navigation ul {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 5px;
    text-align: center;
    margin-bottom: 10px; }
    .woocommerce-account .end-side-content .woocommerce-MyAccount-navigation ul li {
      display: inline-block;
      flex: auto; }
      .woocommerce-account .end-side-content .woocommerce-MyAccount-navigation ul li a {
        margin: 0; }

.woocommerce-order-details table {
  font-size: 16px;
  font-family: var(--font-family-title);
  color: var(--title); }
  .woocommerce-order-details table tr th,
  .woocommerce-order-details table tr td {
    padding: 15px 15px; }

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox] {
  border-width: 1px;
  outline: none !important;
  box-shadow: none !important;
  border-color: #000;
  border-radius: 6px;
  transition: all 0.3s; }

.wc-block-components-checkbox .wc-block-components-checkbox__mark {
  fill: #000;
  height: 13px;
  margin-left: 0;
  margin-top: 0;
  position: absolute;
  width: 13px;
  border-radius: 4px;
  background: #000;
  left: 4px;
  top: 4px;
  transform: scale(0);
  transition: all 0.3s;
  display: block !important; }

.wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked {
  border-color: #000; }
  .wc-block-components-checkbox .wc-block-components-checkbox__input[type=checkbox]:checked + .wc-block-components-checkbox__mark {
    transform: scale(1);
    transition: all 0.3s; }

.price-num del {
  font-size: 85%; }

.woocommerce div.product.m-b30 {
  margin-bottom: 20px;
  margin-top: 0; }

@media only screen and (max-width: 991px) {
  .woocommerce div.product.m-md-b15 {
    margin-bottom: 15px; } }

#yith-wcwl-popup-message {
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  background: var(--secondary);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  position: fixed;
  right: 30px;
  left: auto;
  padding: 10px 30px;
  color: #fff;
  z-index: 10000;
  font-family: 'DM Sans', sans-serif;
  bottom: 30px;
  display: flex;
  top: auto; }

#yith-wcwl-popup-message:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  display: inline-block;
  margin-right: 10px;
  color: #61CE70; }

.woocommerce-info {
  border-top-color: var(--primary); }
  .woocommerce-info:before {
    color: var(--primary); }

.yith-wcan-filters {
  background-color: transparent; }

.filter-items .checkbox label {
  position: relative; }
  .filter-items .checkbox label input {
    position: absolute;
    opacity: 0;
    left: 0; }
  .filter-items .checkbox label .term-label {
    padding-left: 30px;
    color: #000;
    position: relative;
    line-height: 20px; }
    .filter-items .checkbox label .term-label:before, .filter-items .checkbox label .term-label:after {
      content: "";
      width: 1.25em;
      height: 1.25em;
      border: 1px solid #000;
      border-radius: 6px;
      position: absolute;
      left: 0;
      top: 0;
      background: #fff; }
    .filter-items .checkbox label .term-label:before {
      height: 12px;
      width: 12px;
      left: 4px;
      top: 4px;
      background: #000;
      transform: scale(0);
      transition: all 0.3s;
      border-radius: 4px;
      z-index: 1; }
  .filter-items .checkbox label input:checked + .term-label:before {
    transform: scale(1); }

.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active > a:hover,
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active > a,
.yith-wcan-filters .yith-wcan-filter .filter-items .filter-item.active > label > a {
  color: #000; }

.yith-wcan-filters .yith-wcan-filter .yith-wcan-tooltip {
  background-color: #000; }
  .yith-wcan-filters .yith-wcan-filter .yith-wcan-tooltip:before {
    border-right: 5px solid #000; }

.wc-block-grid__products .wc-block-grid__product-image {
  border-radius: 10px;
  overflow: hidden; }

.wc-block-components-review-list-item__image {
  overflow: hidden;
  border-radius: 10px; }

.wc-block-components-sort-select__select {
  width: 100%; }

:root {
  --yith-wcan-filters_colors_titles: #000;
  --yith-wcan-anchors_style_text: #000;
  --yith-wcan-labels_style_text: #000; }

.woocommerce-shipping-calculator .select2 {
  text-align: left !important; }

/* Extra css */
.woocommerce .product-details .product form .woo-selected-variation-item-name {
  display: none !important; }

.woocommerce .product-details .product form .reset_variations {
  display: none !important; }

.woocommerce .product-details .product form.cart .button {
  background-color: var(--primary);
  border-color: var(--primary); }

.woocommerce .product-details .product .yith-wcwl-wishlistexistsbrowse {
  position: unset; }
  .woocommerce .product-details .product .yith-wcwl-wishlistexistsbrowse .feedback {
    display: block !important;
    margin-bottom: 15px;
    position: unset;
    background-color: var(--primary);
    color: #fff;
    border-radius: var(--border-radius-base); }
    .woocommerce .product-details .product .yith-wcwl-wishlistexistsbrowse .feedback .yith-wcwl-icon {
      margin-right: 8px !important; }
  .woocommerce .product-details .product .yith-wcwl-wishlistexistsbrowse a {
    display: none; }

.woocommerce .product-details .product .yith-wcwl-add-button {
  display: none; }

.woocommerce .product-details .product .related-product .yith-wcwl-wishlistexistsbrowse {
  position: relative; }
  .woocommerce .product-details .product .related-product .yith-wcwl-wishlistexistsbrowse .feedback {
    position: absolute; }
    .woocommerce .product-details .product .related-product .yith-wcwl-wishlistexistsbrowse .feedback .yith-wcwl-icon {
      margin-right: 0 !important; }

.woocommerce .product-details .product .related-product .yith-wcwl-add-button {
  display: block; }

.woocommerce .woocommerce-product-rating .woocommerce-review-link .count {
  margin-right: 4px; }

.woo-variation-swatches.wvs-style-squared .variable-items-wrapper .variable-item.button-variable-item {
  width: auto;
  padding: 0px 5px; }

.woocommerce.single-product .product .summary-content .badge,
.woocommerce.single-product .product .summary-content .title {
  visibility: visible !important; }

.woocommerce.single-product .product .summary-content .badge {
  background-color: #DAFF0D;
  color: var(--secondary); }

.woocommerce.single-product .product .summary-content .single_add_to_cart_button.button {
  background-color: var(--primary);
  border-color: var(--primary); }

.woocommerce.single-product .product .summary-content .product_meta > span {
  display: block; }

#yith-quick-view-modal {
  z-index: 999999; }

#yith-quick-view-modal .yith-wcqv-wrapper {
  height: auto !important;
  max-height: calc(100vh - 30px); }

@media only screen and (max-width: 767px) {
  #yith-quick-view-modal .yith-wcqv-wrapper {
    overflow-y: scroll; } }

#yith-quick-view-modal .yith-wcqv-wrapper .type-product.product {
  display: flex; }

@media only screen and (max-width: 767px) {
  #yith-quick-view-modal .yith-wcqv-wrapper .type-product.product {
    display: block; } }

#yith-quick-view-modal .yith-wcqv-wrapper #yith-quick-view-content div.images {
  width: 100%;
  float: none;
  padding-right: 0; }

#yith-quick-view-modal .yith-wcqv-wrapper .dz-product-detail {
  margin-bottom: 0;
  width: 50%;
  flex: 0 0 50%; }
  #yith-quick-view-modal .yith-wcqv-wrapper .dz-product-detail .dz-media {
    margin-bottom: 0; }

@media only screen and (max-width: 767px) {
  #yith-quick-view-modal .yith-wcqv-wrapper .dz-product-detail {
    width: 100%;
    flex: 0 0 100%;
    position: unset !important; } }

#yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-close {
  background-color: var(--light);
  color: var(--secondary);
  font-size: 0;
  border-radius: 0;
  transition: all 0.5s;
  border: 0;
  width: 30px;
  height: 30px;
  top: 15px;
  line-height: 30px;
  right: 15px;
  opacity: 1; }

#yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-close:after {
  content: "\f00d";
  font-family: "Font Awesome 6 Free";
  font-weight: 700;
  font-size: 18px; }

#yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-close:hover {
  background-color: var(--secondary);
  color: #fff; }

#yith-quick-view-modal .yith-wcqv-wrapper div.summary {
  padding: 30px;
  width: 50%;
  flex: 0 0 50%;
  height: 500px;
  scrollbar-width: thin;
  overflow-y: scroll; }
  #yith-quick-view-modal .yith-wcqv-wrapper div.summary .meta-content .price {
    margin-bottom: 0;
    font-size: 20px; }

#yith-quick-view-modal .yith-wcqv-wrapper div.summary::-webkit-scrollbar {
  width: 6px;
  display: block; }

#yith-quick-view-modal .yith-wcqv-wrapper div.summary .dz-product-meta {
  margin-bottom: 0; }

@media only screen and (max-width: 991px) {
  #yith-quick-view-modal .yith-wcqv-wrapper div.summary {
    padding: 30px 15px; }
  #yith-quick-view-modal .yith-wcqv-wrapper div.summary .dz-simple-product {
    gap: 10px;
    display: inline-flex;
    flex-wrap: wrap; } }

@media only screen and (max-width: 767px) {
  #yith-quick-view-modal .yith-wcqv-wrapper div.summary {
    width: 100%;
    flex: 0 0 100%;
    height: auto; } }

@media only screen and (max-width: 991px) {
  #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-close {
    top: 0;
    right: 0; } }

#yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main {
  padding: 0;
  overflow: unset; }

@media only screen and (max-width: 767px) {
  #yith-quick-view-modal .yith-wcqv-wrapper .yith-wcqv-main {
    padding: 0; } }

@media only screen and (max-width: 767px) {
  #yith-quick-view-modal .yith-wcqv-wrapper div.summary, #yith-quick-view-modal .yith-wcqv-wrapper div.images {
    width: 100%;
    float: none; } }

.yith-wcqv-wrapper #yith-quick-view-close {
  border: 0;
  width: 30px;
  height: 30px;
  line-height: 30px;
  opacity: 1;
  background-color: var(--primary);
  color: #fff; }

#ship-to-different-address label {
  font-weight: 600 !important;
  color: var(--title); }

.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted[data-selected] {
  background-color: var(--primary); }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 12px; }

ul.minicart {
  margin-top: 0;
  max-height: 450px;
  overflow-y: auto; }

.woocommerce-product-search .input-group-append .btn, .woocommerce-product-search .input-group-append .wp-block-button__link, .woocommerce-product-search .input-group-append .appointment-page-1 .wizard-form .btn.sw-btn-prev, .appointment-page-1 .wizard-form .woocommerce-product-search .input-group-append .btn.sw-btn-prev, .woocommerce-product-search .input-group-append .appointment-page-1 .wizard-form .btn.sw-btn-next, .appointment-page-1 .wizard-form .woocommerce-product-search .input-group-append .btn.sw-btn-next, .woocommerce-product-search .input-group-append .woocommerce .widget_shopping_cart .buttons a, .woocommerce .widget_shopping_cart .buttons .woocommerce-product-search .input-group-append a,
.woocommerce-product-search .input-group-append .woocommerce.widget_shopping_cart .buttons a, .woocommerce.widget_shopping_cart .buttons .woocommerce-product-search .input-group-append a, .woocommerce-product-search .input-group-append .woocommerce #review_form #respond .form-submit input, .woocommerce #review_form #respond .form-submit .woocommerce-product-search .input-group-append input, .woocommerce-product-search .input-group-append .woocommerce-cart-form .table.shop_table tr .button, .woocommerce-cart-form .table.shop_table tr .woocommerce-product-search .input-group-append .button, .woocommerce-product-search .input-group-append .woocommerce-cart .wc-proceed-to-checkout a.checkout-button, .woocommerce-cart .wc-proceed-to-checkout .woocommerce-product-search .input-group-append a.checkout-button, .woocommerce-product-search .input-group-append .woocommerce #respond input#submit, .woocommerce #respond .woocommerce-product-search .input-group-append input#submit,
.woocommerce-product-search .input-group-append .woocommerce a.button, .woocommerce .woocommerce-product-search .input-group-append a.button,
.woocommerce-product-search .input-group-append .woocommerce button.button, .woocommerce .woocommerce-product-search .input-group-append button.button,
.woocommerce-product-search .input-group-append .woocommerce input.button, .woocommerce .woocommerce-product-search .input-group-append input.button,
.woocommerce-product-search .input-group-append .woocommerce #place_order, .woocommerce .woocommerce-product-search .input-group-append #place_order {
  box-shadow: unset; }

.dz-box.product .yith-wcwl-wishlistaddedbrowse,
.dz-box.product .yith-wcwl-wishlistexistsbrowse {
  overflow: hidden; }
  .dz-box.product .yith-wcwl-wishlistaddedbrowse span,
  .dz-box.product .yith-wcwl-wishlistexistsbrowse span {
    font-size: 0;
    line-height: 55px; }
    .dz-box.product .yith-wcwl-wishlistaddedbrowse span i,
    .dz-box.product .yith-wcwl-wishlistexistsbrowse span i {
      font-size: 15px; }
  .dz-box.product .yith-wcwl-wishlistaddedbrowse a,
  .dz-box.product .yith-wcwl-wishlistexistsbrowse a {
    font-size: 0 !important; }

.dz-box.product .yith-wcwl-wishlistaddedbrowse a,
.dz-box.product .yith-wcwl-add-button span {
  font-size: 0; }

#yith-wcwl-popup-message {
  font-weight: 500;
  line-height: 30px;
  text-align: center;
  background: var(--secondary);
  -webkit-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
  position: fixed;
  right: 30px;
  left: auto;
  padding: 10px 30px;
  color: #fff;
  z-index: 9999999;
  font-family: 'DM Sans', sans-serif;
  bottom: 30px;
  display: flex;
  top: auto; }

#yith-wcwl-popup-message:before {
  content: "\f00c";
  font-family: "Font Awesome 5 Free";
  font-weight: 700;
  display: inline-block;
  margin-right: 10px;
  color: #61CE70; }

.yith-wcwl-share .fa, .yith-wcwl-share .far {
  font-weight: 700; }

.yith-wcwl-share .fa, .yith-wcwl-share .far, .yith-wcwl-share .fas {
  font-family: "FontAwesome"; }

.woocommerce #content table.wishlist_table.cart a.remove:hover {
  background-color: red;
  color: #fff;
  border-color: red; }

.woocommerce table.shop_table td.product-add-to-cart a,
.woocommerce table.shop_table td.product-add-to-cart a.button {
  padding: 8px 15px !important;
  margin: 5px !important;
  font-size: 14px; }
  .woocommerce table.shop_table td.product-add-to-cart a:hover,
  .woocommerce table.shop_table td.product-add-to-cart a.button:hover {
    color: #fff; }

.woocommerce table.shop_table td {
  text-align: left; }

@media only screen and (max-width: 991px) {
  .woocommerce-cart-form .table tr .quantity {
    display: flex;
    justify-content: end;
    margin-right: 0; } }

ul.shop_table.images_grid li .item-details table.item-details-table td,
ul.shop_table.mobile li .item-details table.item-details-table td,
ul.shop_table.mobile li table.additional-info td,
ul.shop_table.modern_grid li .item-details table.item-details-table td {
  font-size: 14px;
  padding: 3px 0; }
  ul.shop_table.images_grid li .item-details table.item-details-table td:nth-child(2),
  ul.shop_table.mobile li .item-details table.item-details-table td:nth-child(2),
  ul.shop_table.mobile li table.additional-info td:nth-child(2),
  ul.shop_table.modern_grid li .item-details table.item-details-table td:nth-child(2) {
    padding-left: 15px; }

ul.shop_table.mobile li .item-wrapper .product-thumbnail {
  max-width: 100px;
  margin-right: 15px; }

ul.shop_table.mobile li {
  margin-bottom: 30px;
  border-bottom: 1px solid var(--light);
  padding-bottom: 30px; }
  ul.shop_table.mobile li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 15px; }
  ul.shop_table.mobile li .item-wrapper {
    width: 100%;
    display: flex;
    align-items: center; }

ul.shop_table li {
  font-family: var(--font-family-title); }
  ul.shop_table li .item-wrapper {
    display: flex;
    align-items: center; }
    ul.shop_table li .item-wrapper .yith-wcqv-button {
      display: none; }
    ul.shop_table li .item-wrapper h3, ul.shop_table li .item-wrapper .h3 {
      font-size: 16px; }
  ul.shop_table li .item-details-table {
    width: 100%; }
  ul.shop_table li .woocommerce-Price-amount {
    font-size: 14px;
    text-decoration: none;
    font-weight: 600;
    color: var(--title); }
  ul.shop_table li .value {
    color: var(--primary); }
    ul.shop_table li .value ins {
      text-decoration: none; }
  ul.shop_table li .label {
    font-size: 14px !important;
    color: var(--title);
    font-family: var(--font-family-title); }
  ul.shop_table li .additional-info-wrapper {
    display: flex;
    flex-wrap: wrap; }
    ul.shop_table li .additional-info-wrapper .product-add-to-cart {
      margin-bottom: 0 !important;
      flex: 1; }
      ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button {
        padding: 10px 15px;
        display: inline-flex;
        border-radius: var(--border-radius-base);
        font-size: 15px;
        font-weight: 500;
        position: relative;
        line-height: 1.5;
        box-shadow: 0 5px 15px -10px var(--primary);
        align-items: center;
        overflow: hidden;
        justify-content: center;
        width: 100%;
        display: block;
        border-color: var(--primary);
        background-color: var(--primary);
        color: #fff; }
        ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button.disabled, ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button:disabled, ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button:not(:disabled):not(.disabled).active, ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button:not(:disabled):not(.disabled):active, ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button:active, ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button:focus, ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button:hover {
          border-color: var(--primary-hover);
          background-color: var(--primary-hover); }
        ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button:after {
          content: "";
          background: #fff;
          -webkit-transition: all 0.5s;
          -ms-transition: all 0.5s;
          transition: all 0.5s;
          position: absolute;
          height: 120%;
          width: 15px;
          opacity: 0.2;
          left: -45%;
          top: -10%;
          transform: rotate(15deg);
          -moz-transform: rotate(15deg);
          -webkit-transform: rotate(15deg);
          -o-transform: rotate(15deg); }
        ul.shop_table li .additional-info-wrapper .product-add-to-cart .add_to_cart_button:hover:after {
          left: 130%; }
    ul.shop_table li .additional-info-wrapper .product-remove {
      flex: 1; }
      ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist {
        padding: 10px 15px;
        display: inline-flex;
        border-radius: var(--border-radius-base);
        font-size: 15px;
        font-weight: 500;
        position: relative;
        line-height: 1.5;
        box-shadow: 0 5px 15px -10px var(--bs-danger);
        align-items: center;
        overflow: hidden;
        justify-content: center;
        color: #fff;
        height: 50px;
        width: 100%;
        min-height: 50px;
        border-color: var(--bs-danger);
        background-color: var(--bs-danger); }
        ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist.disabled, ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist:disabled, ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist:not(:disabled):not(.disabled).active, ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist:not(:disabled):not(.disabled):active, ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist:active, ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist:focus, ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist:hover {
          border-color: var(--bs-danger);
          background-color: var(--bs-danger); }
        ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist:after {
          content: "";
          background: #fff;
          -webkit-transition: all 0.5s;
          -ms-transition: all 0.5s;
          transition: all 0.5s;
          position: absolute;
          height: 120%;
          width: 15px;
          opacity: 0.2;
          left: -45%;
          top: -10%;
          transform: rotate(15deg);
          -moz-transform: rotate(15deg);
          -webkit-transform: rotate(15deg);
          -o-transform: rotate(15deg); }
        ul.shop_table li .additional-info-wrapper .product-remove .remove_from_wishlist:hover:after {
          left: 130%; }
    ul.shop_table li .additional-info-wrapper .product-add-to-cart + .product-remove {
      flex: none; }
      ul.shop_table li .additional-info-wrapper .product-add-to-cart + .product-remove .remove_from_wishlist {
        margin-left: 10px;
        width: 50px; }
    ul.shop_table li .additional-info-wrapper .additional-info {
      flex: 0 0 100%; }
  ul.shop_table li .wishlist-in-stock {
    color: #13c24d; }
  ul.shop_table li .wishlist-out-stock {
    color: #ff0003; }

.shop-cart .site-button-link {
  display: block; }

.wishlist-title a.show-title-form {
  visibility: visible; }

.woocommerce table.shop_table {
  border: 0;
  font-weight: 500; }
  .woocommerce table.shop_table td .woocommerce-Price-amount .amount {
    font-size: 16px; }

.wishlist_table .product-stock-status span.wishlist-in-stock {
  color: var(--primary); }

.check-tbl tbody tr td {
  padding: 15px;
  font-weight: 500;
  font-size: 16px;
  color: var(--secondary);
  border: none;
  font-family: var(--font-family-base); }

.check-tbl thead th:first-child {
  padding: 9px 12px; }

.check-tbl.style-1 tbody tr td.product-name a {
  color: var(--secondary); }

.woocommerce-wishlist .yith-wcwl-add-to-wishlist .yith-wcwl-wishlistexistsbrowse .feedback i {
  color: red; }

.yith-wcwl-wishlistaddedbrowse {
  top: 0; }
  .yith-wcwl-wishlistaddedbrowse .feedback i {
    color: red; }

.yith-wcwl-add-to-wishlist {
  margin-top: 0;
  overflow: hidden; }

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  width: 68px;
  min-width: 68px;
  margin-left: 15px; }

.wc-block-product-categories-list .wc-block-product-categories-list-item {
  display: flex;
  justify-content: space-between;
  padding: 0.5rem 0rem; }
  .wc-block-product-categories-list .wc-block-product-categories-list-item a {
    color: var(--body-color); }

ins {
  text-decoration: none; }

.woocommerce-checkout-review-order {
  padding: 30px;
  border: 1px solid #F2F2F2;
  font-family: var(--font-family-base); }

.powerzone_order_detail .powerzone_order_detail {
  padding: 0;
  margin: 0; }

.powerzone_order_detail .dz-product-media {
  display: flex;
  gap: 10px;
  align-items: center; }

.powerzone_order_detail .dz-product-media .dz-content .title {
  font-weight: 500;
  font-family: var(--font-family-base);
  font-size: 14px;
  line-height: 1.35; }

.powerzone_order_detail .dz-product-media .dz-media {
  min-width: 60px;
  width: 60px; }

.powerzone_order_detail .dz-product-media .dz-info {
  min-width: 100px;
  font-weight: 500;
  color: var(--title);
  font-size: 15px; }

.powerzone_order_detail .product-total {
  color: var(--title);
  font-size: 14px;
  font-weight: 500; }

#ship-to-different-address {
  font-size: 18px; }

.powerzone_order_detail table.shop_table {
  margin-bottom: 0; }

.powerzone_order_detail strong {
  color: var(--title); }

#add_payment_method #payment, .woocommerce-cart #payment, .woocommerce-checkout #payment {
  background: transparent;
  font-size: 14px; }

.woocommerce-checkout-review-order .woocommerce-checkout-payment li {
  position: relative; }

.woocommerce-checkout-review-order .woocommerce-checkout-payment li input {
  position: absolute;
  opacity: 0;
  left: 0;
  top: 0; }

.woocommerce-checkout-review-order .woocommerce-checkout-payment .payment_methods input + label:after {
  border: 1px solid var(--secondary); }

.woocommerce-checkout-review-order .woocommerce-checkout-payment .payment_methods input + label {
  font-weight: 500;
  font-size: 14px; }

.woocommerce-checkout-review-order .woocommerce-checkout-payment .wc_payment_methods, .form-row {
  padding: 16px 0 !important; }

.woocommerce-checkout-review-order .woocommerce-checkout-payment .wc_payment_methods, .form-row:last-child {
  padding-bottom: 0 !important; }

.woocommerce table.shop_table td:last-child {
  padding-right: 0; }

.widget_post ul .dz-content .name {
  font-size: 15px !important; }

.sticky-top {
  position: sticky !important; }

/*# sourceMappingURL=style.css.map */