/* ===== Common Styles ===== */
:root {
    --motix-primary-font: "Big Shoulders Text", sans-serif;
    --motix-secondary-font: "K2D", sans-serif;
    --motix-primary-color: #e22834;
    --motix-white-color: #fff;
    --motix-dark-color: #000000;
    --motix-grey-color: #555555;
    --motix-grey-light-color: #dddddd;
    --motix-bg-white: #fff;
    --motix-bg-dark: #1a2020;
    --motix-bg-grey: #f8f5f1;
    --motix-border-color: #eee;
    --motix-shadow: 0 5px 15px rgba(0, 0, 0, .05);
}

/* ===== Document ===== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

/**
 * Remove the margin in all browsers.
 */
body {
    margin: 0;
}

@media screen and (-webkit-min-device-pixel-ratio:0) and (min-resolution:.001dpcm) {
    ::-webkit-scrollbar {
        background: var(--motix-bg-dark);
        width: 8px;
        height: 10px;
    }

    ::-webkit-scrollbar-thumb {
        background: var(--motix-primary-color);
        cursor: pointer;
    }
}

::selection {
    background-color: var(--motix-primary-color);
    color: var(--motix-white-color);
}

-webkit-::selection {
    background-color: var(--motix-primary-color);
    color: var(--motix-white-color);
}

::-moz-selection {
    background-color: var(--motix-primary-color);
    color: var(--motix-white-color);
}

/**
 * Render the `main` element consistently in IE.
 */
main {
    display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

/* ===== Grouping content ===== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
    box-sizing: content-box;
    height: 0;
    overflow: visible;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

/* ===== Text-level semantics ===== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
    background-color: transparent;
    text-decoration: none;
    border: none;
}

a:hover,
a:active,
a:focus-visible,
a:focus {
    outline: none;
    box-shadow: none;
    border: none;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
    font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

/**
 * Add the correct font size in all browsers.
 */
small {
    font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* ===== Embedded content ===== */

/**
 * Remove the border on images inside links in IE 10.
 */
img {
    border-style: none;
}

svg {
    fill: currentColor;
    width: auto;
    height: 20px;
}

/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
    overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
    text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
    appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
    padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *		`fieldset` elements in all browsers.
 */
legend {
    box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
    overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type="checkbox"],
[type="radio"] {
    box-sizing: border-box;
    padding: 0;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
    -webkit-appearance: textfield;
    appearance: textfield;
    outline-offset: -2px;
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

/* ===== Interactive ===== */

/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
    display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
    display: list-item;
}

/* ===== Misc ===== */

/**
 * Add the correct display in IE 10+.
 */
template {
    display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
    display: none;
}

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

html {
    box-sizing: border-box;
}


/* ===== Typography ===== */
body {
    font-family: var(--motix-secondary-font);
    font-size: 17px;
    line-height: 27px;
    font-weight: 400;
    letter-spacing: -0.2px;
    color: var(--motix-grey-color);
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: transparent;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

button,
input,
select,
optgroup,
textarea {
    color: #fff;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 1rem;
    line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--motix-primary-font);
    color: var(--motix-dark-color);
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 20px;
    clear: both;
}

h1,
.h1 {
    font-size: 48px;
    letter-spacing: 0;
}

h2,
.h2 {
    font-size: 32px;
    letter-spacing: 0;
}

h3,
.h3 {
    font-size: 28px;
    letter-spacing: 0;
}

h4,
.h4 {
    font-size: 24px;
    letter-spacing: 0;
}

h5,
.h5 {
    font-size: 18px;
    letter-spacing: 0;
}

h6,
.h6 {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0;
}

p {
    margin-bottom: 0;
}

dfn,
cite,
em,
i {
    font-style: italic;
}

blockquote {
    margin: 0 1.5em;
}

address {
    margin: 0 0 1.5em;
}

pre {
    background-color: var(--motix-bg-light-color);
    font-family: "Courier 10 Pitch", courier, monospace;
    line-height: 1.6;
    margin-bottom: 1.6em;
    max-width: 100%;
    overflow: auto;
    padding: 1.6em;
}

code,
kbd,
tt,
var {
    font-family: monaco, consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
}

abbr,
acronym {
    border-bottom: 1px dotted #eee;
    cursor: help;
}

mark,
ins {
    background: transparent;
    text-decoration: none;
}

big {
    font-size: 125%;
}

/* ===== Elements ===== */
hr {
    background-color: #eee;
    border: 0;
    height: 1px;
    margin-bottom: 1.5em;
}

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

ul {
    list-style: inside;

}

li::marker {
    color: var(--motix-primary-color);
}

ul li a {
    font-family: var(--motix-secondary-font);
    color: var(--motix-grey-color);
    text-decoration: none;
}

ul li a:hover {
    color: var(--motix-primary-color);
}

ol {
    list-style: decimal;
}

@media (max-width: 767px) {
    .content-area ol {
        list-style: inside;
    }
}

li > ul,
li > ol {
    margin-bottom: 0;
    margin-left: 1.5em;
}

ul li li li > ul {
    margin-left: 0;
}

dt {
    font-weight: 700;
}

dd {
    margin: 0 1.5em 1.5em;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
    max-width: 100%;
}

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

figure {
    margin: 1em 0;
}

/* Table Style */
table {
    width: 100%;
    border-collapse: collapse;
}

/* Zebra striping */
tr:nth-of-type(odd) {
    background-color: var(--motix-bg-white);
}

tr:nth-of-type(even) {
    background-color: #eee;
}

thead th {
    font-family: var(--motix-primary-font);
    background: var(--motix-primary-color);
    color: var(--motix-white-color);
    font-weight: 600;
    font-size: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

tbody th {
    font-family: var(--motix-primary-font);
    font-size: 15px;
}

tbody th a {
    color: var(--motix-dark-color);
    text-decoration: none;
}

tbody td a:hover,
tbody th a:hover {
    color: var(--motix-primary-color);
}

tbody td a {
    font-family: var(--motix-primary-font);
    font-size: 15px;
    font-weight: 600;
    color: var(--motix-dark-color);
    text-decoration: none;
}

td,
th {
    padding: 10px;
    border: 1px solid var(--motix-border-color);
    text-align: left;
    font-size: 18px;
}

/* ===== Links ===== */
a {
    color: var(--motix-primary-color);
}

a:visited {
    color: var(--motix-dark-color);
}

a:hover,
a:focus,
a:active {
    color: var(--motix-primary-color);
    text-decoration: none;
}

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

a,
a:hover {
    transition: all 0.3s ease-in-out;
}

/* ===== Forms and Buttons ===== */

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
a.button {
    background-color: var(--motix-primary-color);
    font-family: var(--motix-primary-font);
    font-size: 16px;
    color: #fff;
    font-weight: 700;
    line-height: 45px;
    display: inline-block;
    letter-spacing: 0px;
    padding: 0 35px;
    position: relative;
    border: none;
    border-radius: 0;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 92% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 70%, 92% 100%, 0% 100%);
}

.post-password-form button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    min-height: 45px;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover,
a.button:hover {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
    border-color: #aaa #bbb #bbb;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
    background-color: var(--motix-bg-light-color);
    border: 1px solid var(--motix-border-color);
    color: var(--motix-grey-color);
    border-radius: 0;
    padding: 10px;
    outline: none;
    box-shadow: none;
    line-height: 1;
    min-height: 50px;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
    color: var(--motix-grey-color);
}

select {
    border: 1px solid #ccc;
}

textarea {
    width: 100%;
    height: 150px;
    line-height: 28px;
}

textarea::placeholder,
input[type="search"]::placeholder,
input[type="number"]::placeholder,
input[type="password"]::placeholder,
input[type="email"]::placeholder,
input[type="text"]::placeholder {
    color: #bbb;
    opacity: 1;
}

textarea:-ms-input-placeholder,
input[type="search"]:-ms-input-placeholder,
input[type="number"]:-ms-input-placeholder,
input[type="password"]:-ms-input-placeholder,
input[type="email"]:-ms-input-placeholder,
input[type="text"]:-ms-input-placeholder {
    color: #bbb;
}

textarea::-ms-input-placeholder,
input[type="search"]::-ms-input-placeholder,
input[type="number"]::-ms-input-placeholder,
input[type="password"]::-ms-input-placeholder,
input[type="email"]::-ms-input-placeholder,
input[type="text"]::-ms-input-placeholder {
    color: #bbb;
}

/* Radio */
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block !important;
}

[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 18px;
    height: 18px;
    border: 2px solid var(--motix-primary-color);
    border-radius: 100%;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--motix-primary-color);
    position: absolute;
    top: 5px;
    left: 5px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

[type="radio"]:checked + label:before {
    border-color: var(--motix-primary-color);
}

/* ===== Button Style ===== */

.wp-block-search__button,
button,
.dl-btn {
    background-color: var(--motix-primary-color);
    color: var(--motix-white-color);
    font-family: var(--motix-primary-font);
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    letter-spacing: -0.3px;
    text-align: center;
    height: 45px;
    line-height: 45px;
    padding: 0 35px;
    letter-spacing: 0;
    border-radius: 0;
    display: inline-block;
    overflow: hidden;
    position: relative;
    transition: all ease 500ms;
    z-index: 1;
}

.wp-block-search__button {
    height: 50px;
    line-height: 50px;
}

:where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) {
    border: 1px solid var(--motix-border-color);
}

/* ===== Checkbox ===== */
input[type=checkbox] {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    cursor: pointer;
    border: 2px solid rgba(152, 65, 255, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease-in-out;
}

input[type=checkbox]:hover {
    transition: all 0.2s ease-in-out;
}

input[type=checkbox]:before {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 0;
    transform: scale(0);
    box-shadow: inset 1em 1em var(--motix-primary-color);
    transition: all 0.3s ease-in-out;
}

input[type=checkbox]:checked:before {
    transform: scale(1);
    transition: all 0.3s ease-in-out;
}

/* ===== Comments ===== */
.comment-content a {
    word-wrap: break-word;
}

.bypostauthor {
    display: block;
}

/* ===== Useful Classes ===== */
.flex {
    display: flex;
}

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

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

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

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

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

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

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

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

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

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

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

@media (min-width: 992px) {
    .d-lg-block {
        display: block !important;
    }
}

@media only screen and (max-width: 992px) and (min-width: 768px) {
    .d-md-block {
        display: block !important;
    }
}

@media (max-width: 767px) {
    .d-sm-block {
        display: block !important;
    }
}


/* ===== Widgets ===== */
.widget {
    margin: 0;
}

.widget select {
    max-width: 100%;
}

/* ===== Media ===== */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
    border: none;
    margin-bottom: 0;
    margin-top: 0;
    padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
    display: inline-block;
}

/* ===== Captions ===== */
.wp-caption {
    margin-bottom: 1.5em;
    max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption .wp-caption-text {
    margin: 0;
    padding: 10px 15px;
    background-color: rgba(152, 65, 255, 0.1);
}

.wp-caption-text {
    text-align: center;
}

/* ===== Galleries ===== */
body:not(.elementor-page) .gallery {
    margin-bottom: 1.5em;
    display: grid;
    grid-gap: 1.5em;
}

body:not(.elementor-page) .gallery-item {
    display: inline-block;
    text-align: center;
    width: 100%;
}

body:not(.elementor-page) .gallery-columns-2 {
    grid-template-columns: repeat(2, 1fr);
}

body:not(.elementor-page) .gallery-columns-3 {
    grid-template-columns: repeat(3, 1fr);
}

body:not(.elementor-page) .gallery-columns-4 {
    grid-template-columns: repeat(4, 1fr);
}

body:not(.elementor-page) .gallery-columns-5 {
    grid-template-columns: repeat(5, 1fr);
}

body:not(.elementor-page) .gallery-columns-6 {
    grid-template-columns: repeat(6, 1fr);
}

body:not(.elementor-page) .gallery-columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

body:not(.elementor-page) .gallery-columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

body:not(.elementor-page) .gallery-columns-9 {
    grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
    display: block;
}

/* ===== Text meant only for screen readers ===== */
.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 !important;
    width: 1px;
    word-wrap: normal !important;
}

.screen-reader-text:focus {
    background-color: #f1f1f1;
    border-radius: 3px;
    box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
    clip: auto !important;
    clip-path: none;
    color: #21759b;
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
    outline: 0;
}

/* ===== Alignments ===== */

.alignleft.wp-block-gallery:not(.has-nested-images),
.alignleft {

    /*rtl:ignore*/
    float: left;

    /*rtl:ignore*/
    margin-right: 1.5em;
    margin-bottom: 1.5em;
}

.alignright.wp-block-gallery:not(.has-nested-images),
.alignright {

    /*rtl:ignore*/
    float: right;

    /*rtl:ignore*/
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

.aligncenter {
    clear: both;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5em;
}

.alignleft.wp-block-gallery:not(.has-nested-images),
.alignright.wp-block-gallery:not(.has-nested-images) {
    margin-top: 1em;
}

.content-area .wp-block-gallery:not(.has-nested-images):last-child {
    margin-bottom: 30px;
}

/* ===== Page Links ===== */
.page-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    column-gap: 10px;
}

.page-links span {
    background-color: var(--motix-primary-color);
    color: var(--motix-white-color);
    font-family: var(--motix-secondary-font);
    font-size: 18px;
    font-weight: 600;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease-in-out;
}

.page-links a:hover {
    text-decoration: none !important;
}

.page-links a span {
    background-color: var(--motix-bg-light-color);
    color: var(--motix-dark-color);
    border: none;
}

.page-links a:hover span {
    background-color: var(--motix-primary-color);
    color: var(--motix-white-color);
}

/* ===== WooCommerce Loader ===== */
.blockUI.blockOverlay,
.loader {
    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
    background: rgba(12, 12, 53, 0.03) !important;
}

.woocommerce-order-wrapper .blockUI.blockOverlay,
.woocommerce-order-wrapper .loader {
    background: rgba(12, 12, 53, 0.03) !important;
}

.blockUI.blockOverlay:before,
.loader:before {
    -moz-animation: none !important;
    -webkit-animation: none !important;
    animation: none !important;
    background: url("../img/loaders.svg") center center !important;
    background-size: 35px !important;
    width: 5em !important;
    height: 1em !important;
    margin-top: -0.5em !important;
    background-repeat: no-repeat !important;
    margin-left: -2.5em !important;
    -webkit-opacity: 1 !important;
    -moz-opacity: 1 !important;
    opacity: 1 !important;
    filter: alpha(opacity=100) !important;
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
}

/* Keyframes Animations */
@keyframes motix_scale_up_down {
    0% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.lf-scale-up-down {
    animation: motix_scale_up_down 4s forwards infinite alternate;
}

@keyframes motix_up_down {
    0% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px);
    }

    100% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px);
    }
}

.lf-up-down {
    animation: motix_up_down 4s forwards infinite alternate;
}

@keyframes motix_left_right {
    0% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(5px);
        transform: translateX(5px);
    }
}

.lf-left-right {
    animation: motix_left_right 4s forwards infinite alternate;
}

@keyframes motix_rotate_center {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
    }

    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.lf-rotate-center {
    animation: motix_rotate_center 10s forwards infinite alternate;
}

@keyframes motix_from_bottom_corner {
    0% {
        -webkit-transform: translate(-5px, -5px);
        transform: translate(-5px, -5px);
    }

    to {
        -webkit-transform: translate(10px, 10px);
        transform: translate(10px, 10px);
    }
}

.lf-bottom-corner {
    animation: motix_from_bottom_corner 4s forwards infinite alternate;
}

/* SVG Bar Icon */
.svg-bar-icon {
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-miterlimit: 10;
}

.svg-bar-icon line {
    stroke-dasharray: 17;
}

.svg-bar-icon line:nth-of-type(2) {
    stroke-dashoffset: 7;
    transition: stroke-dashoffset .4s cubic-bezier(.5, 1, .89, 1);
}

.svg-bar-icon line:nth-of-type(3) {
    stroke-dashoffset: 4;
    transition: stroke-dashoffset .2s cubic-bezier(.5, 1, .89, 1);
}

.svg-bar-icon:hover line:nth-of-type(2),
.svg-bar-icon:hover line:nth-of-type(3) {
    stroke-dashoffset: 0;
}
