/*
* MHTema V1.0.4
* Copyright 2019, Ahmet Üreme
* www.muhiku.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 01/11/2019
*/

/*** Normalize **/
/* HTML5 display definitions
     ========================================================================== */

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

/**
   * 1. Correct `inline-block` display not defined in IE 8/9.
   * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
   */

audio,
canvas,
progress,
video {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
}

/**
   * Prevent modern browsers from displaying `audio` without controls.
   * Remove excess height in iOS 5 devices.
   */

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

/**
   * Address `[hidden]` styling not present in IE 8/9/10.
   * Hide the `template` element in IE 8/9/11, Safari, and Firefox < 22.
   */

[hidden],
template {
    display: none;
}

/* Links
     ========================================================================== */

/**
   * Remove the gray background color from active links in IE 10.
   */

a {
    background-color: transparent;
}

/**
   * Improve readability when focused and also mouse hovered in all browsers.
   */

a:active,
a:hover {
    outline: 0;
}

/* Text-level semantics
     ========================================================================== */

/**
   * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
   */

abbr[title] {
    border-bottom: 1px dotted;
}

/**
   * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
   */

b,
strong {
    font-weight: bold;
}

/**
   * Address styling not present in Safari and Chrome.
   */

dfn {
    font-style: italic;
}

/**
   * Address variable `h1` font-size and margin within `section` and `article`
   * contexts in Firefox 4+, Safari, and Chrome.
   */


/**
   * Address styling not present in IE 8/9.
   */

mark {
    background: #ff0;
    color: #000;
}

/**
   * Address inconsistent and variable font size in all browsers.
   */

small {
    font-size: 80%;
}

/**
   * Prevent `sub` and `sup` affecting `line-height` in all browsers.
   */

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

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

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

/**
   * Remove border when inside `a` element in IE 8/9/10.
   */

img {
    border: 0;
}

/**
   * Correct overflow not hidden in IE 9/10/11.
   */

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

/* Grouping content
     ========================================================================== */

/**
   * Address margin not present in IE 8/9 and Safari.
   */

figure {
    margin: 1em 40px;
}

/**
   * Address differences between Firefox and other browsers.
   */

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

/**
   * Contain overflow in all browsers.
   */

pre {
    overflow: auto;
}

/**
   * Address odd `em`-unit font size rendering in all browsers.
   */

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

/* Forms
     ========================================================================== */

/**
   * Known limitation: by default, Chrome and Safari on OS X allow very limited
   * styling of `select`, unless a `border` property is set.
   */

/**
   * 1. Correct color not being inherited.
   *    Known issue: affects color of disabled elements.
   * 2. Correct font properties not being inherited.
   * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
   */

button,
input,
optgroup,
select,
textarea {
    color: inherit; /* 1 */
    font: inherit; /* 2 */
    margin: 0; /* 3 */
}

/**
   * Address `overflow` set to `hidden` in IE 8/9/10/11.
   */

button {
    overflow: visible;
}

/**
   * Address inconsistent `text-transform` inheritance for `button` and `select`.
   * All other form control elements do not inherit `text-transform` values.
   * Correct `button` style inheritance in Firefox, IE 8/9/10/11, and Opera.
   * Correct `select` style inheritance in Firefox.
   */

button,
select {
    text-transform: none;
}

/**
   * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
   *    and `video` controls.
   * 2. Correct inability to style clickable `input` types in iOS.
   * 3. Improve usability and consistency of cursor style between image-type
   *    `input` and others.
   */

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

/**
   * Re-set default cursor for disabled elements.
   */

button[disabled],
html input[disabled] {
    cursor: default;
}

/**
   * Remove inner padding and border in Firefox 4+.
   */

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

/**
   * Address Firefox 4+ setting `line-height` on `input` using `!important` in
   * the UA stylesheet.
   */

input {
    line-height: normal;
}

/**
   * It's recommended that you don't attempt to style these elements.
   * Firefox's implementation doesn't respect box-sizing, padding, or width.
   *
   * 1. Address box sizing set to `content-box` in IE 8/9/10.
   * 2. Remove excess padding in IE 8/9/10.
   */

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

/**
   * Fix the cursor style for Chrome's increment/decrement buttons. For certain
   * `font-size` values of the `input`, it causes the cursor style of the
   * decrement button to change from `default` to `text`.
   */

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

/**
   * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
   * 2. Address `box-sizing` set to `border-box` in Safari and Chrome
   *    (include `-moz` to future-proof).
   */

input[type="search"] {
    -webkit-appearance: textfield; /* 1 */
    appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box; /* 2 */
    box-sizing: content-box;
}

/**
   * Remove inner padding and search cancel button in Safari and Chrome on OS X.
   * Safari (but not Chrome) clips the cancel button when the search input has
   * padding (and `textfield` appearance).
   */

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

/**
   * Define consistent border, margin, and padding.
   */

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

/**
   * 1. Correct `color` not being inherited in IE 8/9/10/11.
   * 2. Remove padding so people aren't caught out if they zero out fieldsets.
   */

legend {
    border: 0; /* 1 */
    padding: 0; /* 2 */
}

/**
   * Remove default vertical scrollbar in IE 8/9/10/11.
   */

textarea {
    overflow: auto;
}

/**
   * Don't inherit the `font-weight` (applied by a rule above).
   * NOTE: the default cannot safely be changed in Chrome and Safari on OS X.
   */

optgroup {
    font-weight: bold;
}

/* Tables
     ========================================================================== */

/**
   * Remove most spacing between table cells.
   */

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

td,
th {
    padding: 0;
}

/** Base Styles **/
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-behavior: smooth;
}

body,
html {
    font-size: 100%;
}

.urm_container {
  min-height: calc(100% - 504px);
}

body {
    background: #fff;
    color: #333;
    cursor: auto;
    font-family: "HelveticaNow", sans-serif !important;
    font-style: normal;
    font-weight: normal;
    line-height: 150%;
    margin: 0;
    padding: 0;
    position: relative;
}


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

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

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

[hidden],
template {
    display: none
}

a {
    background-color: transparent
}

a:active,
a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

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

sup {
    top: -0.5em
}

sub {
    bottom: -0.25em
}

img {
    border: 0
}

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

figure {
    margin: 1em 40px
}

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

pre {
    overflow: auto
}

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

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

}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

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

button[disabled],
html input[disabled] {
    cursor: default
}

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

input {
    line-height: normal;
    touch-action: manipulation;
}


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

input[type=search] {
    -webkit-appearance: textfield;
    appearance: textfield;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

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

fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: bold
}

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

td,
th {
    padding: 0
}

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


a:hover {
    cursor: pointer
}

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

img {
    -ms-interpolation-mode: bicubic
}

img {
    display: inline-block;
    vertical-align: middle
}

textarea {
    height: auto;
    min-height: 50px
}

select {
    width: 100%
}

blockquote,
dd,
div,
dl,
dt,
form,
h1,
h2,
h3,
h4,
h5,
h6,
li,
ol,
p,
pre,
td,
th,
ul {
    margin: 0;
    padding: 0
}

/** Customs **/
.text-left {
    text-align: left !important
}

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

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

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

/** Links **/
a {
    color: #7278ff;
    line-height: inherit;
    text-decoration: none
}

a:focus,
a:hover {
    color: #7278ff;
    text-decoration: underline;
}

a:visited {
    color: #7278ff;
    text-decoration: underline;
}

a img {
    border: none
}

a {
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

p a {
    line-height: 0.85;
    background-image: linear-gradient(0deg, rgba(243, 208, 46, .5), rgba(243, 208, 46, .5));
    background-size: 5px 5px;
    background-repeat: repeat-x;
    background-position: bottom;color: #000!important; 
    font-weight: bold;
    text-decoration: none!important;
    color: inherit;
    text-decoration: none;
    transition: background-size .125s ease-in;
}

p a:hover {
    background-size: 100% 100%;
    border-color: #fc0;
    color: #000;
}

/* Typography   **/

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
    color: #a6a6a6;
}

p {
    font-size: 16px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
    font-family: inherit;
    line-height: 1.6;
    margin-bottom: 1.11111rem;
    text-rendering: optimizeLegibility
}

@media screen and (max-width: 780px) {
    p {
        font-size: 14px;
        line-height: 1.43;
    }
}

p.bigger {
    font-size: 18px;
}

@media screen and (max-width: 780px) {
    p.bigger {
        font-size: 18px;
        line-height: 1.56;
    }
}

p aside {
    font-size: 0.77778rem;
    font-style: italic;
    line-height: 1.35
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "HelveticaNow", sans-serif !important;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 0rem;
    line-height: 1.33;
    text-rendering: optimizeLegibility;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    color: #2b2d37;
    font-size: 60%;
    line-height: 0;
}

h1 {
  font-size: 30px;
}

@media screen and (max-width: 780px) {
  h1 {
    font-size: 25px;
  }
}


h2 {
  font-size: 25px;
}

@media screen and (max-width: 780px) {
  h2 {
    font-size: 22px;
  }
}

h3 {
  font-size: 23px;
}

@media screen and (max-width: 780px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 22px;
}

@media screen and (max-width: 780px) {
  h4 {
    font-size: 20px;
  }
}

h5 {
  font-size: 21px;
}

@media screen and (max-width: 780px) {
  h5 {
    font-size: 19px;
  }
}

h6 {
  font-size: 20px;
}

@media screen and (max-width: 780px) {
  h6 {
    font-size: 18px;
  }
}

hr {
    border: solid #DDDDDD;
    border-width: 1px 0 0;
    clear: both;
    height: 0;
    margin: 1.11111rem 0 1.05556rem
}

em,
i {
    font-style: italic;
    line-height: inherit
}

b,
strong {
    font-weight: bold;
    line-height: inherit;
    color: #000;
}

small {
    font-size: 60%;
    line-height: inherit
}

code {
    background-color: #c2c2c2;
    border-color: #aeaeae;
    border-style: solid;
    border-width: 1px;
    color: #333333;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: normal;
    padding: 0.11111rem 0.27778rem 0.05556rem
}

dl,
ol,
ul {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.6;
    list-style-position: outside;
    margin-bottom: 1.11111rem
}

@media screen and (max-width: 780px) {
    dl,
    ol,
    ul {
        font-size: 14px;
        line-height: 1.43;
    }
}

ul {
    margin-left: 1.1rem
}

ul.no-bullet {
    margin-left: 0
}

ul.no-bullet li ol,
ul.no-bullet li ul {
    margin-left: 1.11111rem;
    margin-bottom: 0;
    list-style: none
}

ul li ol,
ul li ul {
    margin-left: 1.11111rem;
    margin-bottom: 0
}

ul.circle li ul,
ul.disc li ul,
ul.square li ul {
    list-style: inherit
}

ul.square {
    list-style-type: square;
    margin-left: 1.1rem
}

ul.circle {
    list-style-type: circle;
    margin-left: 1.1rem
}

ul.disc {
    list-style-type: disc;
    margin-left: 1.1rem
}

ul.no-bullet {
    list-style: none
}

ol {
    margin-left: 1.4rem
}

u {
  background: url("data:image/svg+xml;charset=utf-8,%3Csvg preserveAspectRatio='none' width='119' height='6' viewBox='0 0 119 6' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M117.43 0.853C555.027 6.933 90.78-0.46 1.566 3.436' stroke='%23fc0' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") bottom left/100% 0.55rem no-repeat;
  padding-bottom: 0.2rem;
  text-decoration: none;
}

ol li ol,
ol li ul {
    margin-left: 1.11111rem;
    margin-bottom: 0
}

dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold
}

dl dd {
    margin-bottom: 0.66667rem
}

abbr,
acronym {
    text-transform: uppercase;
    font-size: 90%;
    color: #000;
    cursor: help
}

abbr {
    text-transform: none
}

abbr[title] {
    border-bottom: 1px dotted #DDDDDD
}

blockquote {
    margin: 0 0 1.11111rem;
    padding: 0.5rem 1.11111rem 0 1.05556rem;
    border-left: 1px solid #DDDDDD
}

blockquote cite {
    display: block;
    font-size: 0.72222rem;
    color: #3b3b3b
}

blockquote cite:before {
    content: "\2014 \0020"
}

blockquote cite a,
blockquote cite a:visited {
    color: #3b3b3b
}

blockquote,
blockquote p {
    line-height: 1.6;
    color: #595959
}

/* Buttons */
input[type=submit],
.button,
button {
    -webkit-appearance: none;
    appearance: none;
    -moz-appearance: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #333792;
    border-color: #333792;
    font-family: "HelveticaNow", sans-serif !important;
    border-style: solid;
    border-width: 1px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    margin: 0 0 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    padding: 10px 45px;
    color: #fff;
    -webkit-transition: background-color 300ms ease-out;
    -o-transition: background-color 300ms ease-out;
    transition: background-color 300ms ease-out;
    outline: none;
}

@media screen and (max-width: 780px) {
    input[type=submit],
    .button,
    button {
        padding: 0.51111rem 2.22222rem 0.51111rem 2.22222rem;
    }
}

input[type=submit]:focus,
input[type=submit]:hover,
input[type=submit]:visited,
.button:focus,
.button:hover,
.button:visited,
button:focus,
button:hover,
button:visited {
    color: #fff;
    border: solid 1px #070253;
    background-color: #070253;
}

input[type=submit]:focus,
input[type=submit]:hover,
.button:focus,
.button:hover,
button:focus,
button:hover {
    color: #fff;
    text-decoration: none;
}

input[type=submit].cornflower,
input[type=submit].cornflower,
.button.cornflower,
button.cornflower {
    background-color: #7278ff;
    border-color: #7278ff;
    color: #fff
}

input[type=submit].cornflower:focus,
input[type=submit].cornflower:hover,
.button.cornflower:focus,
.button.cornflower:hover,
button.cornflower:focus,
button.cornflower:hover {
    color: #7278ff;
    background-color: #00000000;
}

input[type=submit].tangerine,
.button.tangerine,
button.tangerine {
  background-color: #f56c23;
  border-color: #f56c23;
  color: #fff
}

input[type=submit].tangerine:focus,
input[type=submit].tangerine:hover,
.button.tangerine:focus,
.button.tangerine:hover,
button.tangerine:focus,
button.tangerine:hover {
    background-color: #ff9802
}

input[type=submit].moderateblue,
.button.moderateblue,
button.moderateblue {
  background-color: #5a53bd;
  border-color: #5a53bd;
  color: #fff
}

input[type=submit].moderateblue:focus,
input[type=submit].moderateblue:hover,
.button.moderateblue:focus,
.button.moderateblue:hover,
button.moderateblue:focus,
button.moderateblue:hover {
    background-color: #fff;
    color: #5a53bd;
}


input[type=submit].moderateblack,
.button.moderateblack,
button.moderateblack {
  background-color: #333;
  border-color: #333;
  color: #fff
}

input[type=submit].moderateblack:focus,
input[type=submit].moderateblack:hover,
.button.moderateblack:focus,
.button.moderateblack:hover,
button.moderateblack:focus,
button.moderateblack:hover {
    background-color: #fff;
    color: #333;
}

input[type=submit].button-secondary,
.button.button-secondary,
button.button-secondary {
    border: solid 2px #323394;
    color: #323394;
    background-color: unset;
}

input[type=submit].button-secondary:focus,
input[type=submit].button-secondary:hover,
.button.button-secondary:focus,
.button.button-secondary:hover,
button.button-secondary:focus,
button.button-secondary:hover {
    background-color: #323394;
}

input[type=submit].button-secondary:focus,
input[type=submit].button-secondary:hover,
.button.button-secondary:focus,
.button.button-secondary:hover,
button.button-secondary:focus,
button.button-secondary:hover {
    color: #fff
}


input[type=submit].button-secondary.cornflower,
.button.button-secondary.cornflower,
button.button-secondary.cornflower {
    border: solid 1px #7278ff;
    color: #7278ff;
    background-color: unset;
}

input[type=submit].button-secondary.cornflower:focus,
input[type=submit].button-secondary.cornflower:hover,
.button.button-secondary.cornflower:focus,
.button.button-secondary.cornflower:hover,
button.button-secondary.cornflower:focus,
button.button-secondary.cornflower:hover {
    background-color: #7278ff;
}

input[type=submit].button-secondary.cornflower:focus,
input[type=submit].button-secondary.cornflower:hover,
.button.button-secondary.cornflower:focus,
.button.button-secondary.cornflower:hover,
button.button-secondary.cornflower:focus,
button.button-secondary.cornflower:hover {
    color: #fff
}


input[type=submit].button-secondary.tangerine,
.button.button-secondary.tangerine,
button.button-secondary.tangerine {
    border: solid 2px #ff9802;
    color: #ff9802;
    background-color: unset;
}

input[type=submit].button-secondary.tangerine:focus,
input[type=submit].button-secondary.tangerine:hover,
.button.button-secondary.tangerine:focus,
.button.button-secondary.tangerine:hover,
button.button-secondary.tangerine:focus,
button.button-secondary.tangerine:hover {
    background-color: #ff9802;
}

input[type=submit].button-secondary.tangerine:focus,
input[type=submit].button-secondary.tangerine:hover,
.button.button-secondary.tangerine:focus,
.button.button-secondary.tangerine:hover,
button.button-secondary.tangerine:focus,
button.button-secondary.tangerine:hover {
    color: #fff
}


input[type=submit].button-secondary.moderateblue,
.button.button-secondary.moderateblue,
button.button-secondary.moderateblue {
    border: solid 2px #5a53bd;
    color: #5a53bd;
    background-color: unset;
}

input[type=submit].button-secondary.moderateblue:focus,
input[type=submit].button-secondary.moderateblue:hover,
.button.button-secondary.moderateblue:focus,
.button.button-secondary.moderateblue:hover,
button.button-secondary.moderateblue:focus,
button.button-secondary.moderateblue:hover {
    background-color: #5a53bd;
}

input[type=submit].button-secondary.moderateblue:focus,
input[type=submit].button-secondary.moderateblue:hover,
.button.button-secondary.moderateblue:focus,
.button.button-secondary.moderateblue:hover,
button.button-secondary.moderateblue:focus,
button.button-secondary.moderateblue:hover {
    background-color: #5a53bd;
    color: #fff;
}

input[type=submit].button-secondary.moderateblack,
.button.button-secondary.moderateblack,
button.button-secondary.moderateblack {
    border: solid 2px #333;
    color: #333;
    background-color: unset;
}

input[type=submit].button-secondary.moderateblack:focus,
input[type=submit].button-secondary.moderateblack:hover,
.button.button-secondary.moderateblack:focus,
.button.button-secondary.moderateblack:hover,
button.button-secondary.moderateblack:focus,
button.button-secondary.moderateblack:hover {
    background-color: #333;
}

input[type=submit].button-secondary.moderateblack:focus,
input[type=submit].button-secondary.moderateblack:hover,
.button.button-secondary.moderateblack:focus,
.button.button-secondary.moderateblack:hover,
button.button-secondary.moderateblack:focus,
button.button-secondary.moderateblack:hover {
    background-color: #333;
    color: #fff;
}





input[type=submit].large,
.button.large,
button.large {
    font-size: 24px;
}

input[type=submit].medium,
.button.medium,
button.medium {
    padding: 0.75rem 1.75rem 0.75rem 1.75rem;
    font-size: .9rem;
}

input[type=submit].small,
.button.small,
button.small {
    padding: 0.5rem 1rem 0.55556rem 1rem;
    font-size: 0.66667rem
}

input[type=submit].tiny,
.button.tiny,
button.tiny {
    padding: 0.38889rem 0.77778rem 0.44444rem 0.77778rem;
    font-size: 0.5rem
}

input[type=submit].expand,
.button.expand,
button.expand {
    padding-left: 0;
    padding-right: 0;
    width: 100%
}

input[type=submit].left-align,
.button.left-align,
button.left-align {
    text-align: left;
    text-indent: -1rem;
}

input[type=submit].right-align,
.button.right-align,
button.right-align {
    text-align: right;
    padding-right: 1rem;
}

input[type=submit].round,
.button.round,
button.round {
    -webkit-border-radius: 1000px;
    border-radius: 1000px
}


input[type=submit].disabled,
input[type=submit][disabled],
.button.disabled,
.button[disabled],
button.disabled,
button[disabled] {
    background-color: #cecece;
    border-color: #cecece;
    color: #fff;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: not-allowed;
}

input[type=submit].disabled:focus,
input[type=submit].disabled:hover,
input[type=submit][disabled]:focus,
input[type=submit][disabled]:hover,
.button.disabled:focus,
.button.disabled:hover,
.button[disabled]:focus,
.button[disabled]:hover,
button.disabled:focus,
button.disabled:hover,
button[disabled]:focus,
button[disabled]:hover {
    background-color: #cecece;
}

input[type=submit].disabled:focus,
input[type=submit].disabled:hover,
input[type=submit][disabled]:focus,
input[type=submit][disabled]:hover,
.button.disabled:focus,
.button.disabled:hover,
.button[disabled]:focus,
.button[disabled]:hover,
button.disabled:focus,
button.disabled:hover,
button[disabled]:focus,
button[disabled]:hover {
    background-color: #cecece;
}

input[type=submit].disabled.button-secondary,
input[type=submit][disabled].button-secondary,
.button.disabled.button-secondary,
.button[disabled].button-secondary,
button.disabled.button-secondary,
button[disabled].button-secondary {
    border: solid 2px #cecece;
    color: #cecece;
    -webkit-box-shadow: none;
    box-shadow: none;
    cursor: not-allowed;
}

input[type=submit].disabled.button-secondary:focus,
input[type=submit].disabled.button-secondary:hover,
input[type=submit][disabled].button-secondary:focus,
input[type=submit][disabled].button-secondary:hover,
.button.disabled.button-secondary:focus,
.button.disabled.button-secondary:hover,
.button[disabled].button-secondary:focus,
.button[disabled].button-secondary:hover,
button.disabled.button-secondary:focus,
button.disabled.button-secondary:hover,
button[disabled].button-secondary:focus,
button[disabled].button-secondary:hover {
    color: #cecece;
    background-color: unset;
}


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

@media only screen and (min-width: 40em) {
    .button,
    button {
        display: inline-block
    }
}

/* Forms */
form {
    margin: 0 0 1.11111rem
}

label {
    color: #333;
    cursor: pointer;
    display: block;
    font-size: 0.66667rem;
    font-weight: bold;
    line-height: 2;
    margin-bottom: 0
}

label.right {
    float: none !important;
    text-align: right
}

label.inline {
    margin: 0 0 1.11111rem 0;
    padding: 0.55556rem 0
}

label small {
    text-transform: capitalize;
    color: #7d7d7d
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
textarea {
    font-family: "HelveticaNow", sans-serif;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-color: #fff;
    border-style: solid;
    border-width: 1;
    border-color: #dfe6ee;
    min-height: 36px;
    width: 280px;
    font-size: 14px;
    color: #313541;
    -webkit-box-shadow: none;
    box-shadow: none;
    display: block;
    height: 36px;
    margin: 0 0 1.11111rem 0;
    padding: 0.55556rem;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: border-color 0.15s linear, background 0.15s linear;
    -moz-transition: border-color 0.15s linear, background 0.15s linear;
    -ms-transition: border-color 0.15s linear, background 0.15s linear;
    -o-transition: border-color 0.15s linear, background 0.15s linear;
    transition: border-color 0.15s linear, background 0.15s linear
}

@media screen and (max-width: 780px) {
    input[type=color],
    input[type=date],
    input[type=datetime],
    input[type=datetime-local],
    input[type=email],
    input[type=month],
    input[type=number],
    input[type=password],
    input[type=search],
    input[type=tel],
    input[type=text],
    input[type=time],
    input[type=url],
    input[type=week],
    textarea { 
        font-size: 16px;
    }
}

input[type=color],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=email],
input[type=month],
input[type=number],
input[type=password],
input[type=search],
input[type=tel],
input[type=text],
input[type=time],
input[type=url],
input[type=week],
select,
textarea {
    padding: 0px 10px;
}

textarea {
    padding-top: 5px;
}

input[type=password].error {
    color: #f73732;
}

input[type=password]:focus {
    border-color: #7278ff;
    /*background: url("../../../themes/mhtema/inc/icons/password_eye.svg"); */
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(0.75em + .375rem);
}



.title1,
.title2,
.title3,
.title4,
.title5,
.title6 {
    font-family: "HelveticaNow", sans-serif !important;
    color: #333;
    margin-bottom: 0.5rem;
    margin-top: 0rem;
    line-height: 1.33;
    text-rendering: optimizeLegibility;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    letter-spacing: normal;
}

.title1 small,
.title2 small,
.title3 small,
.title4 small,
.title5 small,
.title6 small {
    color: #2b2d37;
    font-size: 60%;
    line-height: 0;
}

.title1 {
  font-size: 30px;
}

@media screen and (max-width: 780px) {
  .title1 {
    font-size: 25px;
  }
}


.title2 {
  font-size: 25px;
}

@media screen and (max-width: 780px) {
  .title2 {
    font-size: 22px;
  }
}

.title3 {
  font-size: 23px;
}

@media screen and (max-width: 780px) {
  .title3 {
    font-size: 20px;
  }
}

.title4 {
  font-size: 22px;
}

@media screen and (max-width: 780px) {
  .title4 {
    font-size: 20px;
  }
}

.title5 {
  font-size: 21px;
}

@media screen and (max-width: 780px) {
  .title5 {
    font-size: 19px;
  }
}

.title6 {
  font-size: 20px;
}

@media screen and (max-width: 780px) {
  .title6 {
    font-size: 18px;
  }
}

input[type=color]::placeholder, input[type=color]:-ms-input-placeholder, input[type=color]::-ms-input-placeholder,
input[type=date]::placeholder, input[type=date]:-ms-input-placeholder, input[type=date]::-ms-input-placeholder,
input[type=datetime]::placeholder, input[type=datetime]:-ms-input-placeholder, input[type=datetime]::-ms-input-placeholder,
input[type=datetime-local]::placeholder, input[type=datetime-local]:-ms-input-placeholder, input[type=datetime-local]::-ms-input-placeholder,
input[type=email]::placeholder, input[type=email]:-ms-input-placeholder, input[type=email]::-ms-input-placeholder,
input[type=month]::placeholder, input[type=month]:-ms-input-placeholder, input[type=month]::-ms-input-placeholder,
input[type=number]::placeholder, input[type=number]:-ms-input-placeholder, input[type=number]::-ms-input-placeholder,
input[type=password]::placeholder, input[type=password]:-ms-input-placeholder, input[type=password]::-ms-input-placeholder,
input[type=search]::placeholder, input[type=search]:-ms-input-placeholder, input[type=search]::-ms-input-placeholder,
input[type=tel]::placeholder, input[type=tel]:-ms-input-placeholder, input[type=tel]::-ms-input-placeholder,
input[type=text]::placeholder, input[type=text]:-ms-input-placeholder, input[type=text]::-ms-input-placeholder,
input[type=time]::placeholder, input[type=time]:-ms-input-placeholder, input[type=time]::-ms-input-placeholder,
input[type=url]::placeholder, input[type=url]:-ms-input-placeholder, input[type=url]::-ms-input-placeholder,
input[type=week]::placeholder, input[type=week]:-ms-input-placeholder, input[type=week]::-ms-input-placeholder,
textarea::placeholder, textarea:-ms-input-placeholder, textarea::-ms-input-placeholder {
    color: #b0bac5;
}


input[type=color]:hover,
input[type=date]:hover,
input[type=datetime]:hover,
input[type=datetime-local]:hover,
input[type=email]:hover,
input[type=month]:hover,
input[type=number]:hover,
input[type=password]:hover,
input[type=search]:hover,
input[type=tel]:hover,
input[type=text]:hover,
input[type=time]:hover,
input[type=url]:hover,
input[type=week]:hover,
textarea:hover {
    border-color: #7278ff;
    background-color: #fff;
    outline: none
}

input[type=color]:focus,
input[type=date]:focus,
input[type=datetime]:focus,
input[type=datetime-local]:focus,
input[type=email]:focus,
input[type=month]:focus,
input[type=number]:focus,
input[type=password]:focus,
input[type=search]:focus,
input[type=tel]:focus,
input[type=text]:focus,
input[type=time]:focus,
input[type=url]:focus,
input[type=week]:focus,
textarea:focus {
    box-shadow: inset 0 0 0 3px #f2f4f7;
    border-color: #7278ff;
    background-color: #fff;
    outline: none
}

input[type=color]:disabled,
input[type=date]:disabled,
input[type=datetime]:disabled,
input[type=datetime-local]:disabled,
input[type=email]:disabled,
input[type=month]:disabled,
input[type=number]:disabled,
input[type=password]:disabled,
input[type=search]:disabled,
input[type=tel]:disabled,
input[type=text]:disabled,
input[type=time]:disabled,
input[type=url]:disabled,
input[type=week]:disabled,
textarea:disabled {
    background-color: #fff;
    cursor: not-allowed;
}

input[type=color]:disabled:hover,
input[type=date]:disabled:hover,
input[type=datetime]:disabled:hover,
input[type=datetime-local]:disabled:hover,
input[type=email]:disabled:hover,
input[type=month]:disabled:hover,
input[type=number]:disabled:hover,
input[type=password]:disabled:hover,
input[type=search]:disabled:hover,
input[type=tel]:disabled:hover,
input[type=text]:disabled:hover,
input[type=time]:disabled:hover,
input[type=url]:disabled:hover,
input[type=week]:disabled:hover,
textarea:disabled {
    border-color: #dfe6ee;
}

fieldset[disabled] input[type=color],
fieldset[disabled] input[type=date],
fieldset[disabled] input[type=datetime],
fieldset[disabled] input[type=datetime-local],
fieldset[disabled] input[type=email],
fieldset[disabled] input[type=month],
fieldset[disabled] input[type=number],
fieldset[disabled] input[type=password],
fieldset[disabled] input[type=search],
fieldset[disabled] input[type=tel],
fieldset[disabled] input[type=text],
fieldset[disabled] input[type=time],
fieldset[disabled] input[type=url],
fieldset[disabled] input[type=week],
fieldset[disabled] textarea,
input[type=color][disabled],
input[type=color][readonly],
input[type=date][disabled],
input[type=date][readonly],
input[type=datetime][disabled],
input[type=datetime][readonly],
input[type=datetime-local][disabled],
input[type=datetime-local][readonly],
input[type=email][disabled],
input[type=email][readonly],
input[type=month][disabled],
input[type=month][readonly],
input[type=number][disabled],
input[type=number][readonly],
input[type=password][disabled],
input[type=password][readonly],
input[type=search][disabled],
input[type=search][readonly],
input[type=tel][disabled],
input[type=tel][readonly],
input[type=text][disabled],
input[type=text][readonly],
input[type=time][disabled],
input[type=time][readonly],
input[type=url][disabled],
input[type=url][readonly],
input[type=week][disabled],
input[type=week][readonly],
textarea[disabled],
textarea[readonly] {
    background-color: #fff;
    cursor: not-allowed;
}

input[type=color].success,
input[type=date].success,
input[type=datetime].success,
input[type=datetime-local].success,
input[type=email].success,
input[type=month].success,
input[type=number].success,
input[type=password].success,
input[type=search].success,
input[type=tel].success,
input[type=text].success,
input[type=time].success,
input[type=url].success,
input[type=week].success,
textarea.success {
    border-color: #22ba32;
    background: url("../../../themes/mhtema/inc/icons/success.svg");
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(0.75em + .375rem);
}

input[type=color].error,
input[type=date].error,
input[type=datetime].error,
input[type=datetime-local].error,
input[type=email].error,
input[type=month].error,
input[type=number].error,
input[type=password].error,
input[type=search].error,
input[type=tel].error,
input[type=text].error,
input[type=time].error,
input[type=url].error,
input[type=week].error,
textarea.error {
    border-color: #f73732;
    background: url("../../../themes/mhtema/inc/icons/error.svg");
    background-repeat: no-repeat;
    background-position: center right calc(.375em + .1875rem);
    background-size: calc(.75em + .375rem) calc(0.75em + .375rem);
}

input[type=submit] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    border-radius: 4px;
}

textarea {
    max-width: 100%
}

select {
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    appearance: none !important;
    background-color: #fff;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZlcnNpb249IjEuMSIgeD0iMTJweCIgeT0iMHB4IiB3aWR0aD0iMjRweCIgaGVpZ2h0PSIzcHgiIHZpZXdCb3g9IjAgMCA2IDMiIGVuYWJsZS1iYWNrZ3JvdW5kPSJuZXcgMCAwIDYgMyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSI+PHBvbHlnb24gcG9pbnRzPSI1Ljk5MiwwIDIuOTkyLDMgLTAuMDA4LDAgIi8+PC9zdmc+);
    background-position: 100% center;
    background-repeat: no-repeat;
    border-style: solid;
    border-width: 1px;
    border-color: #dfe6ee;
    color: #737373;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    font-family: "HelveticaNow", sans-serif;
    padding: 0.55556rem;
    height: 36px;
}

select:hover {
    border-color: #737373;
    color: #8091a5;
}

select:focus {
    border-color: #7278ff;
    box-shadow: inset 0 0 0 3px #f2f4f7;
    color: #313541;
    outline: none;
}

select {
    background-position: 98% center
}

select::-ms-expand {
    display: none
}

select.radius {
    -webkit-border-radius: 3px;
    border-radius: 3px
}

select:disabled {
    background-color: #DDDDDD;
    cursor: default
}

select[multiple] {
    height: auto
}

input[type=file],
select {
    margin: 0 0 1.11111rem 0
}

input[type="radio"],
input[type="checkbox"] {
    height: 20px;
    width: 20px;
    vertical-align: middle;
    border: 1px solid #dfe6ee;
    background: -webkit-linear-gradient(#ffffff, #ffffff);
    -webkit-appearance: none;
    appearance: none;
    -webkit-transition: box-shadow 200ms;
    transition: box-shadow 200ms;
    box-shadow: inset 1px 1px 0 #fff, 0 1px 1px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* border radius for radio*/
input[type="radio"] {
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

/* border radius for checkbox */
input[type="checkbox"] {
    -webkit-border-radius: 4px;
    border-radius: 4px;
}

/* hover state */
input[type="radio"]:not(:disabled):hover,
input[type="checkbox"]:not(:disabled):hover {
    border-color: #eb52af;
}

/* active state */
input[type="radio"]:active:not(:disabled),
input[type="checkbox"]:active:not(:disabled) {
    background-image: -webkit-linear-gradient(#ffffff, #ffffff);
    box-shadow: inset 1px 1px 0 rgba(0, 0, 0, 0.2), inset -1px -1px 0 rgba(255, 255, 255, 0.6);
    border-color: rgba(0, 0, 0, 0.5);
}

/* focus state */
input[type="radio"]:focus,
input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 1px 2px #eb52af;
}

/* input checked border color */
input[type="radio"]:checked,
input[type="checkbox"]:checked {
    border-color: #eb52af;
}

/* radio checked */
input[type="radio"]:checked:before {
    display: block;
    height: 45%;
    width: 45%;
    position: relative;
    left: 28%;
    top: 28%;
    box-shadow: 0 2px 6px 0 #afafaf;
    background: #eb52af;
    border-radius: 100%;
    content: '';
}

/* checkbox checked */
input[type="checkbox"]:checked:before {
    background-color: #eb52af;
    content: "";
    cursor: pointer;
    -webkit-mask-image: url(../../../themes/mhtema/inc/icons/urm-times.svg);
    mask-image: url(../../../themes/mhtema/inc/icons/urm-tick_bold.svg);
    width: 70%;
    display: block;
    height: 70%;
    background-size: cover;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
    margin: 15%;
}

/* disabled input */
input[type='radio']:disabled,
input[type='checkbox']:disabled {
    opacity: .6;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.1);
}

/* style label for disabled input */
input:disabled + label {
    opacity: .6;
    cursor: default;
    -webkit-user-select: none;
    user-select: none;
}

input[type=checkbox] + label,
input[type=radio] + label {
    display: inline-block;
    margin-left: 0.55556rem;
    margin-right: 1.11111rem;
    margin-bottom: 0;
    vertical-align: baseline
}

input[type=file] {
    width: 100%
}

/* Extras */
fieldset {
    border: 1px solid #DDDDDD;
    margin: 1rem 0;
    padding: 1.11111rem
}

fieldset legend {
    background: #FFFFFF;
    font-weight: bold;
    margin-left: -0.16667rem;
    margin: 0;
    padding: 0 0.16667rem
}

blockquote {
    padding-left: 2.22222rem
}

blockquote > p {
    font-size: 1.77778rem;
    line-height: 1.4
}

blockquote cite {
    margin-top: 0.55556rem
}

figure {
    max-width: 100%;
    margin: 0
}

figcaption {
    font-size: 0.66667rem;
    margin: 0.55556rem 0
}

dl dd p {
    margin: 0
}

iframe {
    border: 0
}

.speech-bubbly {
    border: 1px solid #fff;
    border-radius: 6px;
    box-shadow: 0 2px 7px 0 rgba(162, 162, 162, 0.5);
    background-color: #fff;
    width: 200px;
    min-height: 80px;
    margin: 10px;
    padding: 10px;
    position: relative;
}

.speech-bubbly:after {
    content: '';
    position: absolute;
    border: 16px solid transparent;
    border-left-color: #fff;
    border-top: 0;
    box-shadow: 0 2px 7px 0 rgba(162, 162, 162, 0);
    left: 45%;
    transform: rotate(45deg);
    top: 0;
}

.speech-bubbly.top:after {
    transform: rotate(45deg);
}

.speech-bubbly.right:after {
    transform: rotate(135deg);
    left: 88%;
    top: 46%;
}

.speech-bubbly.left:after {
    transform: rotate(-45deg);
    left: -4%;
    top: 30%;
}

.speech-bubbly.bottom::after {
    transform: rotate(-135deg);
    left: 40%;
    top: 81%;
}

/* Toggles */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
    margin: 4px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f4f7fa;
    -webkit-transition: .4s;
    transition: .4s;
}

.toggle-switch .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    border-radius: 3px;
    background-color: #fff;
    -webkit-transition: .4s;
    transition: .4s;
    box-shadow: 0 1px 3px 0 #b0bac5;
}

.toggle-switch input:checked + .slider {
    background-color: #eb52af;
}

.toggle-switch input:focus + .slider {
    box-shadow: 0 0 1px #eb52af;
}

.toggle-switch input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
    box-shadow: 0 2px 6px 0 #a5a5a5;
}

/* Rounded sliders */
.toggle-switch .slider.round {
    border-radius: 34px;
}

.toggle-switch .slider.round:before {
    border-radius: 50%;
}

/* Messages */

    .message {
        border-radius: 4px;
        padding: 16px;
        font-size: 14px;
        font-weight: 500;
        font-stretch: normal;
        font-style: normal;
        line-height: normal;
        letter-spacing: normal;
        color: #fff;
        padding-left: 60px;
        position: relative;
        list-style: none;
        position: fixed;
        top: 10%;
        right: 5%;
        z-index: 3;
        max-width: 400px;
        margin:0;   
        width: 400px;
        display: flex;
        align-items: self-start;
        flex-direction: column;
        justify-content: center;
    }



    @media screen and (max-width: 768px) {
        .message {
            top: 13%;
            left: 50%;
            right: unset;
            width: 90%;
            margin: auto;
            transform: translateX(-50%);
            transition: all 0.5s;
        }
    }
    
    .message strong {
        color: inherit;
    }

    .message.success {
        border: solid 1.5px #cff9bb;
        background-color: #ecfff1;
        color: #41b00c;
    }

    .message.info {
        border: solid 1.5px #c4d8fe;
        background-color: #e1f0fc;
        color: #3c79f1;
    }

    .message.error {
        border: solid 1.5px #f5cccc;
        background-color: #ffecec;
        color: #fa4646;
    }

    .message.help {
        border: solid 1.5px #fde5c9;
        background-color: #ffefe0;
        color: #ff8744;
    }

    .message.warning {
        border: solid 1.5px #ffdf6f80;
        background-color: #fffcdd;
        color: #ffbe3f;
    }

    .message:before {
        content: "";
        position: absolute;
        background-color: #333;
        height: 100%;
        width: 29px;
        top: 0%;
        left: calc(1%);
        display: flex;
        justify-content: center;
        align-items: center;
        color: #fff;
        font-weight: bold;
        background-repeat: no-repeat;
        background-position: center;
        margin: 0px 8px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        -webkit-mask-size: contain;
        mask-size: contain;
        -webkit-mask-position: center;
        mask-position: center;
        z-index: -1;
    }


    .message.success:before {
        mask-image: url(../../../themes/mhtema/inc/icons/message-success.svg);
        background-color: #41b00c;
    }

    .message.info:before {
        mask-image: url(../../../themes/mhtema/inc/icons/message-info.svg);
        background-color: #3c79f1;
    }

    .message.error:before {
        mask-image: url(../../../themes/mhtema/inc/icons/warning.svg);
        background-color: #f73732;
    }

    .message.help:before {
        mask-image: url(../../../themes/mhtema/inc/icons/message-help.svg);
        background-color: #ff8744;
    }

    .message.warning:before {
        mask-image: url(../../../themes/mhtema/inc/icons/message-warning.svg);
        background-color: #ffbe3f;
    }

    
    .message a.restore-item {
        font-size: 12px;
        font-weight: bold;
        color: #41b00c;
        margin-left: 10px;
    }

    .message .removed_product_detail {
        margin-left: -16%;
        display: flex;
        align-items: flex-start;
        gap: 8px;
    }
    
    @media screen and (max-width: 768px) {
        .message .removed_product_detail {
            margin-left: -19%;
        }
    }

    .message .removed_product_detail span {
        font-weight: 500;
        color: #333;
    }
    .message .removed_product_detail img {
        width: 55px;
        height: 55px;
        border-radius: 5px;
        border: unset!important;
    }

/* Tables */
table {
    width: 100%
}

table th {
    font-weight: normal;
    text-transform: uppercase;
    font-size: 0.8125rem;
    text-align: left;
    color: #aaa;
    padding: 1.11111rem 0
}

table td {
    padding: 1.11111rem 0
}

table thead th {
    padding: 1.11111rem 0
}

/* Breadcrumbs */
ul.breadcrumb {
    list-style: none;
    font-family: "HelveticaNow", sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #9b9b9b;
    margin: 0px;
    display: flex;
}

ul.breadcrumb li {
    display: inline;
    font-size: 15px;
    font-family: Circular;
}

@media screen and (max-width: 780px) {
    ul.breadcrumb li {
        font-size: 12px;
    }
}

ul.breadcrumb li:last-child {
    color: #eb52af;
}

ul.breadcrumb li.active a {
    background-color: #eb52af;
}

ul.breadcrumb li + li:before {
    padding: 0px 12px;
    content: "";
    -webkit-mask-image: url(https://cdn.muhiku.com/wp-content/themes/mhtema/inc/icons/urm-next.svg?x70835);
    mask-image: url(https://cdn.muhiku.com/wp-content/themes/mhtema/inc/icons/urm-next.svg?x70835);
    display: inline-block;
    width: 10px;
    height: 10px;
    background-color: #9b9b9b;
    background-size: cover;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
    -webkit-mask-position: center;
    mask-position: center;
}

.woocommerce-breadcrumb ul.breadcrumb li:first-child {
    display: flex;
    align-items: center;
}

.woocommerce-breadcrumb ul.breadcrumb li .icon {
    display: flex !important;
    width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    background-color: #9b9b9b;
}

.woocommerce-breadcrumb ul.breadcrumb li a:hover .icon {
    background: #333;
}


.woocommerce-breadcrumb ul.breadcrumb li:last-child:before { 
    background-color: #333; 
}

ul.breadcrumb li.active:before {
    color: #eb52af !important;
}


ul.breadcrumb li:last-child:before {
    color: #eb52af !important;
}

ul.breadcrumb li a {
    text-decoration: none;
    font-family: "HelveticaNow", sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #9b9b9b;
}

ul.breadcrumb li a:hover {
    color: #eb52af;
}

ul.breadcrumb li.active a:hover {
    color: #9b9b9b;
}

ul.breadcrumb li:hover:before {
    color: #eb52af;
}

ul.breadcrumb li.active:hover:before {
    color: #9b9b9b !important;
}

/* Tabs */
ul.tabs {
    list-style: none;
    border-bottom: solid 1px #dedede;
    display: inline-block;
    margin: 0px;
}

ul.tabs li {
    display: inline-block;
    cursor: pointer;
}

ul.tabs li a {
    font-family: "HelveticaNow", sans-serif !important;
    font-size: 16px;
    font-weight: 500;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #9b9b9b;
}

ul.tabs li:hover a {
    text-decoration: none;
    color: #e5418f;
}

ul.tabs li a:hover {
    text-decoration: none;
}

ul.tabs li:hover {
    border-bottom: 2px solid #e5418f;
}

ul.tabs li.active:hover a {
    text-decoration: none;
    color: #e5418f;
}

ul.tabs li.active a {
    color: #333;
}

ul.tabs li.active {
    border-bottom: 2px solid #e5418f;
}

/* Grid */
/* Uncomment and set these variables to customize the grid. */

.row {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: -webkit-box;
    display: flex;
    -ms-flex: 0 1 auto;
    -webkit-box-flex: 0;
    flex: 0 1 auto;
    -ms-flex-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: auto;
}

.row {
    max-width: 1260px;
}

.row.full-width {
    max-width: 100%;
}

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

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

.col,
.col-1,
.col-2,
.col-3,
.col-4,
.col-5,
.col-6,
.col-7,
.col-8,
.col-9,
.col-10,
.col-11,
.col-12 {
    box-sizing: border-box;
    -ms-flex: 0 0 auto;
    -webkit-box-flex: 0;
    flex: 0 0 auto;
    padding-right: 1rem;
    padding-left: 1rem;
}

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

.col-1 {
    -ms-flex-preferred-size: 8.333%;
    flex-basis: 8.333%;
    max-width: 8.333%;
}

.col-2 {
    -ms-flex-preferred-size: 16.667%;
    flex-basis: 16.667%;
    max-width: 16.667%;
}

.col-3 {
    -ms-flex-preferred-size: 25%;
    flex-basis: 25%;
    max-width: 25%;
}

.col-4 {
    -ms-flex-preferred-size: 33.333%;
    flex-basis: 33.333%;
    max-width: 33.333%;
}

.col-5 {
    -ms-flex-preferred-size: 41.667%;
    flex-basis: 41.667%;
    max-width: 41.667%;
}

.col-6 {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
}

.col-7 {
    -ms-flex-preferred-size: 58.333%;
    flex-basis: 58.333%;
    max-width: 58.333%;
}

.col-8 {
    -ms-flex-preferred-size: 66.667%;
    flex-basis: 66.667%;
    max-width: 66.667%;
}

.col-9 {
    -ms-flex-preferred-size: 75%;
    flex-basis: 75%;
    max-width: 75%;
}

.col-10 {
    -ms-flex-preferred-size: 83.333%;
    flex-basis: 83.333%;
    max-width: 83.333%;
}

.col-11 {
    -ms-flex-preferred-size: 91.667%;
    flex-basis: 91.667%;
    max-width: 91.667%;
}

.col-12 {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    max-width: 100%;
}

.col-offset-1 {
    margin-left: 8.333%;
}

.col-offset-2 {
    margin-left: 16.667%;
}

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

.col-offset-4 {
    margin-left: 33.333%;
}

.col-offset-5 {
    margin-left: 41.667%;
}

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

.col-offset-7 {
    margin-left: 58.333%;
}

.col-offset-8 {
    margin-left: 66.667%;
}

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

.col-offset-10 {
    margin-left: 83.333%;
}

.col-offset-11 {
    margin-left: 91.667%;
}

.start {
    -ms-flex-pack: start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    text-align: start;
}

.center {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    text-align: center;
}

.end {
    -ms-flex-pack: end;
    -webkit-box-pack: end;
    justify-content: flex-end;
    text-align: end;
}

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

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

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

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

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

/*** xs **/
@media only screen and (max-width: 375px) {

    .col-xs,
    .col-xs-1,
    .col-xs-2,
    .col-xs-3,
    .col-xs-4,
    .col-xs-5,
    .col-xs-6,
    .col-xs-7,
    .col-xs-8,
    .col-xs-9,
    .col-xs-10,
    .col-xs-11,
    .col-xs-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

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

    .col-xs-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%;
    }

    .col-xs-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%;
    }

    .col-xs-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-xs-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }

    .col-xs-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%;
    }

    .col-xs-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-xs-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%;
    }

    .col-xs-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%;
    }

    .col-xs-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-xs-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%;
    }

    .col-xs-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%;
    }

    .col-xs-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-xs-offset-1 {
        margin-left: 8.333%;
    }

    .col-xs-offset-2 {
        margin-left: 16.667%;
    }

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

    .col-xs-offset-4 {
        margin-left: 33.333%;
    }

    .col-xs-offset-5 {
        margin-left: 41.667%;
    }

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

    .col-xs-offset-7 {
        margin-left: 58.333%;
    }

    .col-xs-offset-8 {
        margin-left: 66.667%;
    }

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

    .col-xs-offset-10 {
        margin-left: 83.333%;
    }

    .col-xs-offset-11 {
        margin-left: 91.667%;
    }

    .start-xs {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-xs {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-xs {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-xs {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }

    .middle-xs {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }

    .bottom-xs {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }

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

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

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

    .last-xs {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

/*** sm **/
@media only screen and (min-width: 375px) and (max-width: 600px) {
    .row.full-width-sm {
        max-width: 100%;
    }

    .col-sm,
    .col-sm-1,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

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

    .col-sm-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%;
    }

    .col-sm-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%;
    }

    .col-sm-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-sm-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }

    .col-sm-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%;
    }

    .col-sm-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-sm-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%;
    }

    .col-sm-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%;
    }

    .col-sm-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-sm-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%;
    }

    .col-sm-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%;
    }

    .col-sm-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-sm-offset-1 {
        margin-left: 8.333%;
    }

    .col-sm-offset-2 {
        margin-left: 16.667%;
    }

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

    .col-sm-offset-4 {
        margin-left: 33.333%;
    }

    .col-sm-offset-5 {
        margin-left: 41.667%;
    }

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

    .col-sm-offset-7 {
        margin-left: 58.333%;
    }

    .col-sm-offset-8 {
        margin-left: 66.667%;
    }

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

    .col-sm-offset-10 {
        margin-left: 83.333%;
    }

    .col-sm-offset-11 {
        margin-left: 91.667%;
    }

    .start-sm {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-sm {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-sm {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-sm {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }

    .middle-sm {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }

    .bottom-sm {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }

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

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

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

    .last-sm {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

/*** md **/
@media only screen and (min-width: 600px) and (max-width: 1200px) {
    .row.full-width-md {
        max-width: 100%;
    }

    .col-md,
    .col-md-1,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9,
    .col-md-10,
    .col-md-11,
    .col-md-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

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

    .col-md-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%;
    }

    .col-md-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%;
    }

    .col-md-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-md-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }

    .col-md-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%;
    }

    .col-md-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-md-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%;
    }

    .col-md-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%;
    }

    .col-md-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-md-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%;
    }

    .col-md-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%;
    }

    .col-md-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-md-offset-1 {
        margin-left: 8.333%;
    }

    .col-md-offset-2 {
        margin-left: 16.667%;
    }

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

    .col-md-offset-4 {
        margin-left: 33.333%;
    }

    .col-md-offset-5 {
        margin-left: 41.667%;
    }

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

    .col-md-offset-7 {
        margin-left: 58.333%;
    }

    .col-md-offset-8 {
        margin-left: 66.667%;
    }

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

    .col-md-offset-10 {
        margin-left: 83.333%;
    }

    .col-md-offset-11 {
        margin-left: 91.667%;
    }

    .start-md {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-md {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-md {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-md {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }

    .middle-md {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }

    .bottom-md {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }

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

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

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

    .last-md {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

/*** lg **/
@media only screen and (min-width: 1200px) and (max-width: 1500px) {

    .row.full-width-lg {
        max-width: 100%;
    }

    .col-lg,
    .col-lg-1,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

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

    .col-lg-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%;
    }

    .col-lg-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%;
    }

    .col-lg-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-lg-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }

    .col-lg-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%;
    }

    .col-lg-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-lg-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%;
    }

    .col-lg-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%;
    }

    .col-lg-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-lg-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%;
    }

    .col-lg-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%;
    }

    .col-lg-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-lg-offset-1 {
        margin-left: 8.333%;
    }

    .col-lg-offset-2 {
        margin-left: 16.667%;
    }

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

    .col-lg-offset-4 {
        margin-left: 33.333%;
    }

    .col-lg-offset-5 {
        margin-left: 41.667%;
    }

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

    .col-lg-offset-7 {
        margin-left: 58.333%;
    }

    .col-lg-offset-8 {
        margin-left: 66.667%;
    }

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

    .col-lg-offset-10 {
        margin-left: 83.333%;
    }

    .col-lg-offset-11 {
        margin-left: 91.667%;
    }

    .start-lg {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-lg {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-lg {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-lg {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }

    .middle-lg {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }

    .bottom-lg {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }

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

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

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

    .last-lg {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

/*** xl **/
@media only screen and (min-width: 1500px) {

    .row.full-width-xl {
        max-width: 100%;
    }

    .col-xl,
    .col-xl-1,
    .col-xl-2,
    .col-xl-3,
    .col-xl-4,
    .col-xl-5,
    .col-xl-6,
    .col-xl-7,
    .col-xl-8,
    .col-xl-9,
    .col-xl-10,
    .col-xl-11,
    .col-xl-12 {
        box-sizing: border-box;
        -ms-flex: 0 0 auto;
        -webkit-box-flex: 0;
        flex: 0 0 auto;
        padding-right: 1rem;
        padding-left: 1rem;
    }

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

    .col-xl-1 {
        -ms-flex-preferred-size: 8.333%;
        flex-basis: 8.333%;
        max-width: 8.333%;
    }

    .col-xl-2 {
        -ms-flex-preferred-size: 16.667%;
        flex-basis: 16.667%;
        max-width: 16.667%;
    }

    .col-xl-3 {
        -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
        max-width: 25%;
    }

    .col-xl-4 {
        -ms-flex-preferred-size: 33.333%;
        flex-basis: 33.333%;
        max-width: 33.333%;
    }

    .col-xl-5 {
        -ms-flex-preferred-size: 41.667%;
        flex-basis: 41.667%;
        max-width: 41.667%;
    }

    .col-xl-6 {
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
        max-width: 50%;
    }

    .col-xl-7 {
        -ms-flex-preferred-size: 58.333%;
        flex-basis: 58.333%;
        max-width: 58.333%;
    }

    .col-xl-8 {
        -ms-flex-preferred-size: 66.667%;
        flex-basis: 66.667%;
        max-width: 66.667%;
    }

    .col-xl-9 {
        -ms-flex-preferred-size: 75%;
        flex-basis: 75%;
        max-width: 75%;
    }

    .col-xl-10 {
        -ms-flex-preferred-size: 83.333%;
        flex-basis: 83.333%;
        max-width: 83.333%;
    }

    .col-xl-11 {
        -ms-flex-preferred-size: 91.667%;
        flex-basis: 91.667%;
        max-width: 91.667%;
    }

    .col-xl-12 {
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }

    .col-xl-offset-1 {
        margin-left: 8.333%;
    }

    .col-xl-offset-2 {
        margin-left: 16.667%;
    }

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

    .col-xl-offset-4 {
        margin-left: 33.333%;
    }

    .col-xl-offset-5 {
        margin-left: 41.667%;
    }

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

    .col-xl-offset-7 {
        margin-left: 58.333%;
    }

    .col-xl-offset-8 {
        margin-left: 66.667%;
    }

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

    .col-xl-offset-10 {
        margin-left: 83.333%;
    }

    .col-xl-offset-11 {
        margin-left: 91.667%;
    }

    .start-xl {
        -ms-flex-pack: start;
        -webkit-box-pack: start;
        justify-content: flex-start;
        text-align: start;
    }

    .center-xl {
        -ms-flex-pack: center;
        -webkit-box-pack: center;
        justify-content: center;
        text-align: center;
    }

    .end-xl {
        -ms-flex-pack: end;
        -webkit-box-pack: end;
        justify-content: flex-end;
        text-align: end;
    }

    .top-xl {
        -ms-flex-align: start;
        -webkit-box-align: start;
        align-items: flex-start;
    }

    .middle-xl {
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }

    .bottom-xl {
        -ms-flex-align: end;
        -webkit-box-align: end;
        align-items: flex-end;
    }

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

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

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

    .last-xl {
        -ms-flex-order: 1;
        -webkit-box-ordinal-group: 2;
        order: 1;
    }
}

/** Empty Rows **/
.empty-row {
    min-height: 8px;
    max-height: 8px;
}

.empty-row-8 {
    min-height: 8px;
    max-height: 8px;
}

.empty-row-16 {
    min-height: 16px;
    max-height: 16px;
}

.empty-row-24 {
    min-height: 24px;
    max-height: 24px;
}

.empty-row-40 {
    min-height: 40px;
    max-height: 40px;
}


/*** xs **/
@media only screen and (max-width: 375px) {
    .empty-row-xs {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-xs-8 {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-xs-16 {
        min-height: 16px;
        max-height: 16px;
    }

    .empty-row-xs-24 {
        min-height: 24px;
        max-height: 24px;
    }

    .empty-row-xs-40 {
        min-height: 40px;
        max-height: 40px;
    }

}

/*** sm **/
@media only screen and (min-width: 375px) and (max-width: 600px) {
    .empty-row-sm {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-sm-8 {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-sm-16 {
        min-height: 16px;
        max-height: 16px;
    }

    .empty-row-sm-24 {
        min-height: 24px;
        max-height: 24px;
    }

    .empty-row-sm-40 {
        min-height: 40px;
        max-height: 40px;
    }
}

/*** md **/
@media only screen and (min-width: 600px) and (max-width: 1200px) {
    .empty-row-md {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-md-8 {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-md-16 {
        min-height: 16px;
        max-height: 16px;
    }

    .empty-row-md-24 {
        min-height: 24px;
        max-height: 24px;
    }

    .empty-row-md-40 {
        min-height: 40px;
        max-height: 40px;
    }
}

/*** lg **/
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .empty-row-lg {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-lg-8 {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-lg-16 {
        min-height: 16px;
        max-height: 16px;
    }

    .empty-row-lg-24 {
        min-height: 24px;
        max-height: 24px;
    }

    .empty-row-lg-40 {
        min-height: 40px;
        max-height: 40px;
    }
}

/*** xl **/
@media only screen and (min-width: 1500px) {
    .empty-row-xl {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-xl-8 {
        min-height: 8px;
        max-height: 8px;
    }

    .empty-row-xl-16 {
        min-height: 16px;
        max-height: 16px;
    }

    .empty-row-xl-24 {
        min-height: 24px;
        max-height: 24px;
    }

    .empty-row-xl-40 {
        min-height: 40px;
        max-height: 40px;
    }
}

/*** outside **/
.outside-8 {
    padding-left: 8px;
    padding-right: 8px;
}

.outside-16 {
    padding-left: 8px;
    padding-right: 8px;
}

.outside-24 {
    padding-left: 8px;
    padding-right: 8px;
}

.outside-32 {
    padding-left: 8px;
    padding-right: 8px;
}

.outside-40 {
    padding-left: 8px;
    padding-right: 8px;
}

/*** xs **/
@media only screen and (max-width: 375px) {
    .outside-xs-8 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-xs-16 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-xs-24 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-xs-32 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-xs-40 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/*** sm **/
@media only screen and (min-width: 375px) and (max-width: 600px) {
    .outside-sm-8 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-sm-16 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-sm-24 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-sm-32 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-sm-40 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/*** md **/
@media only screen and (min-width: 600px) and (max-width: 1200px) {
    .outside-md-8 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-md-16 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-md-md-24 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-md-32 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-md-40 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/*** lg **/
@media only screen and (min-width: 1200px) and (max-width: 1500px) {
    .outside-lg-8 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-lg-16 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-lg-24 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-lg-32 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-lg-40 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/*** xl **/
@media only screen and (min-width: 1500px) {
    .outside-xl-8 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-xl-16 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-xl-xl-24 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-xl-32 {
        padding-left: 8px;
        padding-right: 8px;
    }

    .outside-xl-40 {
        padding-left: 8px;
        padding-right: 8px;
    }
}

/*  Header */

.site-header {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    position: relative;
    z-index: 3;
    top: 0;
    -webkit-transition: background 0.3s ease, -webkit-transform 0.5s cubic-bezier(1, 0, 0.5, 1) 0.3s;
    transition: background 0.3s ease, -webkit-transform 0.5s cubic-bezier(1, 0, 0.5, 1) 0.3s;
    -o-transition: transform 0.5s cubic-bezier(1, 0, 0.5, 1) 0.3s, background 0.3s ease;
    transition: transform 0.5s cubic-bezier(1, 0, 0.5, 1) 0.3s, background 0.3s ease;
    transition: transform 0.5s cubic-bezier(1, 0, 0.5, 1) 0.3s, background 0.3s ease, -webkit-transform 0.5s cubic-bezier(1, 0, 0.5, 1) 0.3s;
}


@media screen and (max-width: 782px) {
  .site-header.secondary {
    border-bottom: 1px solid #eff0f1;
  }
}

.site-header .head-nav {
    width: 100%;
    height: 40px;
    padding: 0px 55px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: solid 0.2px #efefef;
    background-color: #fff;
}

.site-header .head-nav .head-nav-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1260px;
  margin: auto;
  justify-content: space-between;
}

.site-header .head-nav .head-nav-second nav ul {
    list-style: none;
    margin: 0;
    display: flex;
}

.site-header .head-nav .head-nav-second nav ul > li {
    padding-right: 10px;
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.site-header .head-nav .head-nav-second nav ul li .sub-menu {
    position: absolute;
    flex-direction: column;
    top: 100%;
    background: #fff;
    z-index: 100;
    padding: 0px 5px;
    display: none;
    border: 1px solid #efefef;
}

.site-header .head-nav .head-nav-second nav ul li .sub-menu li {
    border-bottom: 1px solid #efefef;
    padding: 0px 16px;
}

.site-header .head-nav .head-nav-second nav ul > li a {
    font-family: "HelveticaNow", sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12px;
    color: #9b9b9b;
}

.site-header .head-nav .head-nav-second nav ul > li:hover > a {
    text-decoration: unset;
    color: #7278ff;
}

.site-header .head-nav .head-nav-second nav ul > li:hover .sub-menu {
    display: flex;
}

.site-header .main-header .main-header-wrapper {
  display: flex;
  align-items: center;
  padding: 18px 10px;
  width: 100%;
  max-width: 1260px;
  margin: auto;
  background-color: #fff;
}

@media only screen and (min-width: 780px) and (max-width: 1280px) {
  .site-header .main-header .main-header-wrapper {
    max-width: 1080px;
    padding-left: 3%;
  padding-right: 3%;
  }
}

.site-header .main-header .main-header-wrapper .site-branding {
    flex: 2;
}

.site-header .main-header .main-header-wrapper .site-branding img {
max-width: 150px;
}


.site-header.secondary .main-header .main-header-wrapper .site-branding {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.site-header .main-header .main-header-wrapper .search_wrapper{
  flex: 3;
  z-index: 1;
}

.site-header .main-header .main-header-wrapper .woocommerce-tools-button {
    flex: 2;
    display: flex;
    justify-content: flex-end;
}

.site-header .main-header .search_wrapper .search-bar form {
    margin: 0px;
    position: relative;
}

.site-header .main-header .search_wrapper .search-bar input {
    border-radius: 5px;
    border: solid 1px #e1e4ff;
    min-width: 430px;
    margin: 0px;
    padding-left: 36px;
    position: relative;
    z-index: 1;
    background-color: #f2f3ff;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    font-style: normal;
    line-height: normal;
    letter-spacing: 0.72px;
    text-align: left;
    color: #02196b;
}

.site-header .main-header .search_wrapper .search-bar input::placeholder {
   text-align: center;
   font-size: 18px;
   font-weight: normal;
   font-stretch: normal;
   font-style: normal;
   line-height: normal;
   letter-spacing: 0.72px;
   color: #02196b;
}

.site-header .main-header .search_wrapper .search-bar input:focus {
    box-shadow: unset;
    border: solid 1px #7278ff;
}

.site-header .main-header .search_wrapper .search-bar input:focus::placeholder {
   visibility: hidden;
}

.site-header .main-header .search_wrapper .search-bar form .screen-reader-text {
    display: none;
}

.site-header .main-header .search_wrapper .search-bar form button {
    position: absolute;
    top: 23%;
    left: 93%;
    background: unset;
    border: unset;
    color: #000;
    font-size: 0;
    padding: 0;
}

.site-header .main-header .search_wrapper .search-bar form button:after {
    content: "";
    background-color: #02196b;
    -webkit-mask-image: url("../../../themes/mhtema/inc/icons/magnifying-glass.svg");
    mask-image: url("../../../themes/mhtema/inc/icons/magnifying-glass.svg");
    background-size: cover;
    width: 21px;
    height: 21px;
    display: inline-block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.site-header .main-header .search_wrapper .search-bar input:focus + button:after {
    background-color: #7278ff;
}

.site-header .main-header .search_wrapper .search-bar form button:hover:after {
    background-color: #7278ff;
}

.site-header .main-header .woocommerce-tools-button .wishlist_buttons {
    display: flex;
}

.site-header .main-header .woocommerce-tools-button .wishlist_buttons .myaccount-popup {
    display: none;
    padding-top: 0px;
}

@media screen and (max-width: 782px) {
  .site-header .main-header .woocommerce-tools-button .wishlist_buttons .myaccount-popup {
    height: unset;
  }
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper {
    margin: 0px 8px;
    position: relative;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper.search_button {
  display: none;
}

@media screen and (max-width: 782px) {
  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.search_button {
    display: none;
  }
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
    border: 1px solid #1a1a1a;
    border-radius: 22px;
    padding: 0px 12px;
  }
  
  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button span {
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 500;
  }
  
  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button .icon {
    background-color: #1a1a1a;
    width: 25px;
    height: 25px;
  }
  
  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button:hover {
    background: #1a1a1a;
  }

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 8px;
    border: 1px solid #1a1a1a;
    border-radius: 22px;
    padding: 0px 12px;
  }

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button:hover {
    background: #1a1a1a;
  }

  @media screen and (max-width: 782px) {
    .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button {
      padding: 4px 12px;
    }
  }
  
  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button span {
    font-size: 12px;
    color: #1a1a1a;
    font-weight: 500;
  }

  @media screen and (max-width: 782px) {
    .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button span {
      font-size: 10px;
      white-space: nowrap;
    }
  }


  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button:hover span {
    color: #fff;
  }
  
  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button .icon {
    background-color: #1a1a1a;
    width: 25px;
    height: 25px;
  }
  
@media screen and (max-width: 782px) {
    .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button .icon {
    width: 18px;
    height: 18px;
    }
}


  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper.shipment_tracking .tools_button:hover .icon {
    background-color: #fff;
  }


.site-header .main-header .woocommerce-tools-button .tools_button_wrapper > a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper i.urm_cart_icon {
    position: relative;
    font-style: normal;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
}


@media screen and (max-width: 780px) {
    .site-header .main-header .woocommerce-tools-button .tools_button_wrapper i.urm_cart_icon {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
  
  
.site-header .main-header .woocommerce-tools-button .tools_button_wrapper i:before {
    background-size: cover;
    width: 24px;
    height: 23px;
    display: inline-block;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper i.urm_account_icon:before {
    content: "";
    background-color: #4A4A4A;
    -webkit-mask-image: url("../../../themes/mhtema/inc/icons/avatar.svg");
    mask-image: url("../../../themes/mhtema/inc/icons/avatar.svg");
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper i.urm_favorities_icon:before {
    content: "";
    background-color: #4A4A4A;
    -webkit-mask-image: url("../../../themes/mhtema/inc/icons/heart.svg");
    mask-image: url("../../../themes/mhtema/inc/icons/heart.svg");
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper i.urm_search_icon:before {
    content: "";
    background-color: #4A4A4A;
    -webkit-mask-image: url("../../../themes/mhtema/inc/icons/magnifying-glass.svg");
    mask-image: url("../../../themes/mhtema/inc/icons/magnifying-glass.svg");
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper:hover i:before {
    background-color: #7278ff;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper:hover > a {
    color: #7278ff;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper i.urm_cart_icon:before {
    content: "";
  background: url(../../../themes/mhtema/inc/icons/urm-cart-trolley.svg) no-repeat;
  background-size: cover;
}

@media screen and (max-width: 780px) {
    .site-header .main-header .woocommerce-tools-button .tools_button_wrapper i.urm_cart_icon:before {
        width: 16px;
        height: 16px;
    }
  }


.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .tools_button {

    font-size: 12px;
    line-height: normal;
    letter-spacing: 0.18px;
    text-align: center;
    color: #333;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .tools_button:hover {
    text-decoration: none;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .tools_button.cart {
    font-weight: 500;
    color: #333;
    font-size: 16px;
    flex-direction: row;
    gap: 12px;
    border-radius: 22px;
    border: solid 1.5px #333;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .tools_button.cart.cart-active {
    border: solid 1.5px #a4a8ff;
    background-color: #e1e4ff;
  }

  @media screen and (max-width: 780px) {    
    .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .tools_button.cart {
        flex-direction: row;
        gap: 4px;
        font-size: 12px;
        width: 25px;
        height: 25px;
    }
  }



.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .tools_button.cart .total_qty {
    position: absolute;
    top: -5px;
    left: calc(100% - 12px);
    font-size: 12px;
    border: 1px solid #7278FF;
    border-radius: 100%;
    width: 16px;
    height: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    display: none;
    background: #7278ff;
    color: #fff;
}

@media screen and (max-width: 782px) {
    .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .tools_button.cart .total_qty {
        top: -6px;
        left: calc(100% - 10px);
    }
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper:hover .tools_button.cart {
    opacity: 0.7;
}


.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .tools_button.livechat .icon {
  height: 24px;
  width: 24px;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper:hover .tools_button.livechat .icon {
  background: #7278ff;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper:hover > .my-account-menu {
    display: block;
    z-index: 1;
}

@media screen and (max-width: 782px) {
  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper:hover > .my-account-menu {
      display: none;
  }
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu {
    position: absolute;
    right: -30%;
    display: none;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul {
        margin: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #efefef;
    width: 205px;
    margin-top: 16px;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 14%);
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul li {
    border-bottom: 1px solid #efefef;
    padding: 8px 10px;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul li a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12px;
  color: #333;
  display: flex;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul li a i {
    margin-right: 10px;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul li:hover a {
    text-decoration: none;
    color: #7278ff;
}

.site-header .main-header .woocommerce-tools-button .tools_button_wrapper.myaccount .my-account-menu .translateSquare {
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    border-radius: 4px;
    zoom: 1;
    position: absolute;
    top: 5px;
    left: 85%;
    border-color: #efefef;
    border-width: 1px 0px 0px 1px;
    z-index: 0;
    background-color: #fff;
    border: 1px solid #efefef;
}

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul.login_select {
    display: flex;
    justify-content: center;
    align-items: center;
    /* left: calc(-50% + 25px); */
    width: unset;
    flex-direction: column;
    padding: 8px 8px;
  }

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul.login_select li {
    border: unset;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 16px;
  }

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul.login_select li a {
    text-align: center;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    color:  #fff;
    padding: 0.4rem 1.3rem 0.4rem 1.3rem;
  }

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul.login_select li a.button-secondary {
    color:  #7278ff;
  }

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul.login_select li a .icon {
    background: #fff;
    width: 15px;
    height: 15px;
  }

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul.login_select li a.button-secondary .icon {
  background: #7278ff;
  }

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul.login_select li a.button-secondary:hover {
  color: #fff;
  }

  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul.login_select li a.button-secondary:hover .icon {
  background: #fff;
  }
  .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .my-account-menu ul.login_select li a:hover {
    border-color: #333792;
  }



.site-header .main-menu {
  height: 48px;
  border-bottom: solid 1px #efefef;
  display: flex;
  align-items: center;
  width: 100%;
    background-color: #fff;
    transition: top 100ms linear;
}

.site-header .main-menu .navigation {
    display: flex;
    white-space: nowrap;
    overflow: auto;
    width: 100%;
    margin: 0 auto;
    max-width: 1320px;
    padding: 0px 0px;
    height: 100%;
}

@media only screen and (min-width: 780px) and (max-width: 1280px) {
  .site-header .main-menu .navigation {
    max-width: 1080px;
    padding-left: 3%;
    padding-right: 3%;
    height: 100dvh;
  }
}

.site-header .main-menu nav > ul {
  list-style: none;
  margin: 0;
  flex-wrap: nowrap;
  display: flex;
  overflow: scroll;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.site-header .main-menu nav > ul::-webkit-scrollbar {
  display: none;
}

.site-header .main-menu nav > ul > li {
    display: flex;
    padding: 12px 10px;
    white-space: nowrap;
    align-items: center;
  }


.site-header .main-menu nav > ul > li .link_title {
   position: relative;
  }


  .site-header .main-menu nav > ul > li:first-child {
    padding-left: 0px;
  }

.site-header .main-menu nav > ul > li div> .sub-button {
  display: none;
}

@media screen and (max-width: 782px) {
  .site-header .main-menu nav > ul > li.menu-item-has-children .sub-button {
      display: inline-flex;
      order: 2;
      width: 12px;
      height: 12px;
      transform: rotate(180deg);
      float: right;
      display: none;
  }
}

@media screen and (max-width: 782px) {
  .site-header .main-menu nav > ul > li.menu-item-has-children .sub-menu .sub-button {
    display: none;
  }
}


.site-header .main-menu nav > ul > li .sub-mega-menu {
    position: absolute !important;
    top: 100%;
    margin: auto;
    display: none;
    background-color: #fff;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    -webkit-box-shadow: 0 2px 4px 0 rgba(142, 138, 138, 0.5);
    -moz-box-shadow: 0 2px 4px 0 rgba(142, 138, 138, 0.5);
    box-shadow: 0 2px 4px 0 rgba(142, 138, 138, 0.5);
    width: 100%;
    left: 0;
    justify-content: center;
}

@media screen and (max-width: 782px) {
  .site-header .main-menu nav > ul > li .sub-mega-menu {
    display: none!important;
  }
}
.site-header .main-menu nav > ul > li div > a {
    font-family: "HelveticaNow", sans-serif;
    font-size: 14px;
    text-align: center;
    color: #1a1a1a;
    white-space: nowrap;
    text-decoration: unset!important;
}

.site-header .main-menu nav > ul > li:hover > a {
    text-decoration: unset;
    color: #7278ff
}

.site-header.corporate .main-menu nav > ul > li div > a {
    font-family: "HelveticaNow", sans-serif;
    white-space: nowrap;
    text-decoration: unset!important;
    font-size: 15px;
    color: #1a1a1a;
}

@media screen and (max-width: 782px) {
    .site-header.corporate .main-menu nav > ul > li div > a {
        font-size: 16px;
        color: #6d7278;
    }
}

.site-header.corporate .main-menu nav > ul > li:hover div > a {
    font-weight: bold;
}

.site-header.corporate .main-menu nav > ul > li:hover > a {
    text-decoration: unset;
    color: #7278ff
}

.site-header .main-menu nav > ul > li:hover > .sub-mega-menu {
  display: flex;
  justify-content: flex-start;
  padding: 0px;
}

.site-header .main-menu nav > ul .sub-menu {
    display: none;
}
.site-header .main-menu nav .mobile_navigation_login_actions {
  display: none;
}

.navigation-branding {
    display: none;
  align-items: center;
  justify-content: center;
}

.navigation-branding .close-nav {
  display: none;
} 

.tools-button.menu-open {
    display: none;
}

.site-header .main-menu nav > ul > li > div a i {
  display: none;
}

.site-header .main-menu nav > ul > li > div a i.desktop {
  display: table-caption;
  margin: 0px 7px 0px 0px;
  width: 22px;
  height: 22px;
}

.site-header .main-menu nav > ul > li .link_title > a {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 782px) {
  .site-header .main-menu nav > ul > li > div a i.desktop {
    
        margin: 0px 0px 0px 7px;

      width: 20px;
      height: 20px;
  } 
}

.site-header .main-menu nav .support-center {
  display: none;
}

@media screen and (max-width: 782px) {
  .site-header .main-menu nav .support-center {
    display: flex;
    align-items: center;
  }
}

@media screen and (max-width: 782px) {
  .site-header .main-menu nav .support-center a {
    font-family: "HelveticaNow",sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: normal;
    color: #2b2d37;
    margin-left: 12px;
    text-decoration: unset!important;
  }
}

.site-header.corporate {
    width: 100%;
    background: unset;
    box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.02);
}

@media screen and (max-width: 782px) {
    .site-header.corporate {
        box-shadow: unset;
    }
}

.site-header.corporate .main-header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

@media screen and (max-width: 782px) {
  .site-header.corporate .main-header {
    border: unset;
    height: 50px;
  }
}

.site-header.corporate .main-header .main-header-wrapper {
    margin: 0px 9px;
    padding: 0;
    background-color: unset;
}


.site-header.corporate .main-header .main-header-wrapper {
  max-width: 1140px;
}


.site-header.corporate .main-header .main-header-wrapper .main-menu {
    border: unset;
    background-color: unset;
    justify-content: space-between;
}

@media screen and (max-width: 782px) {
    .site-header.corporate .main-header .main-header-wrapper .main-menu {
        background-color: #fff;
        flex-direction: column;
        overflow: auto;
        justify-content: flex-start;
    }
}

@media screen and (max-width: 782px) {
    .admin-bar .site-header.corporate .main-header .main-header-wrapper .main-menu #navigation {
        height: unset;
    }
}

@media screen and (max-width: 782px) {
    .site-header.corporate .main-header .main-header-wrapper .main-menu .navigation .navigation-branding {
        justify-content: flex-start;
        padding: 8px 17px;
        height: 65px;
    }
}


.site-header.corporate .main-menu nav ul {
    margin: 0;
    justify-content: center;
}

.site-header.corporate .main-menu nav ul li {
    padding: 10px 20px;
}

@media screen and (max-width: 782px) {
  .site-header.corporate .main-menu nav ul li {
    width: 100%;
    padding: 8px 8px;
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: solid 2px #fafafa;
  }
}

.site-header .main-menu nav ul li .link_title>a:after {
    content: "";
  border-bottom: 2px solid;
  width: 0;
  position: absolute;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  transition: width 0.5s;
}

.site-header .main-menu nav ul li:hover .link_title>a:after {
    width: 120%;
}

.site-header.corporate .main-header .close_header {
    display: none;
}

@media screen and (max-width: 782px) {
    .site-header.corporate .main-header .close_header {
      display: block;
      position: absolute;
      top: 8%;
      right: 12%;
    }
}

@media screen and (max-width: 782px) {
  .site-header.corporate .main-header .site-branding {
    position: absolute;
  }
}

.site-header.corporate .main-header .main-header-wrapper .main-menu .navigation {
  width: 100%;
  margin: unset;
}

@media screen and (max-width: 782px) {
    .site-header.corporate .main-header .main-header-wrapper .main-menu .navigation {
        width: 100%;
        position: unset;
        height: unset;
    }
}

.site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions {
    display: flex;
    gap: 8px;
}

@media screen and (max-width: 782px) {
    .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions {
        flex-direction: column;
        width: 100%;
        padding: 17px;
    }
}

.site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions a {
    white-space: nowrap;
    padding: 0.4rem 0.8rem 0.4rem 0.8rem;
    font-size: 0.9rem;
}

@media screen and (max-width: 782px) {
    .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions a {
        font-size: 16px;
        padding: 0.8rem 1rem 0.8rem 1rem;
    }
}

.site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector {
    padding: 5px 5px 5px 4px;
    border-radius: 6px;
    background-color: #f2f3ff;
    display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

@media screen and (max-width: 782px) {
    .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector {
        height: 51px;
        gap: 8px;
    }
}

.site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector > span {
    display: none;
}

@media screen and (max-width: 782px) {
    .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector > span {
        color: #7278ff;
        font-size: 16px;
        font-weight: 500;
        display: block;
    }
}

.site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector i.flag {
    width: 25px;
    height: 25px;
    border-radius: 15px;
}

.site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector i:not(.flag) {
    transform: rotate(90deg);
    width: 15px;
    height: 15px;
    background-color: #1a1a1a;
}

.site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages {
    display: none;
    top: 100%;
    background: #fff;
    position: absolute;
    right: 0;
  }

  @media screen and (max-width: 782px) {
    .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages {
        left: 0;
        width: 100%;
    }
  }

  .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages a {
    color: #1a1a1a;
  }

  .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector:hover .languages {
    display: flex;
  }

  .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages ul {
    margin: 0;
    list-style: none;
    background-color: #fff;
    border: 1px solid #efefef;
    width: 205px;
    margin-top: 16px;
    position: relative;
    border-radius: 5px;
    box-shadow: 0 3px 10px 0 rgb(0 0 0 / 14%);
  }

    @media screen and (max-width: 782px) {
        .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages ul {
            width: 100%;
        }
    }
  
  .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages .translateSquare {
    width: 20px;
    height: 20px;
    transform: rotate(45deg);
    border-radius: 4px;
    zoom: 1;
    position: absolute;
    top: 5px;
    left: 85%;
    border-color: #efefef;
    border-width: 1px 0px 0px 1px;
    z-index: 0;
    background-color: #fff;
    border: 1px solid #efefef;
  }
  
  .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages ul li {
    border-bottom: 1px solid #efefef;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    gap: 7px;
    cursor: pointer;
  }
  
  .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages ul li i {
    transform: unset;
    width: 20px;
    height: 20px;
    border-radius: 15px;
  }
  
  .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages ul li span {
    font-family: "HelveticaNow", sans-serif;
    font-size: 14px;
    }

    .site-header.corporate .main-header .main-header-wrapper .main-menu .menu_actions .language_selector .languages ul li:hover span {
        color: #7278ff;
    }

/** Mobile General CSS**/

 @media screen and (max-width: 782px) {
          
      .site-header .main-header .main-header-wrapper {
          flex-wrap: wrap;
          order: 3;
          padding: 0;
      }

      .site-header .main-header .main-header-wrapper .tools-button{
        flex:1;
        display: block
      }

      .site-header .main-header .main-header-wrapper .search_wrapper .tools-button {
        flex: unset;
        padding: 0px 12px;
      }

      .site-header .main-header .main-header-wrapper .site-branding {
          order: 1;
          flex: 1;
          width: 50%;
          height: 48px;
          padding-left: 18px;
      }

      .site-header .main-header .main-header-wrapper .search_wrapper {
          order: 3;
          min-width: 100%;
          display: flex;
          justify-content: center;
          align-items: center;
          border: 1px solid #e1e4ff;
          border-width: 1px 0px;
      }

        .site-header .main-header .main-header-wrapper .search_wrapper .search-bar {
            width: 100%;
        }

      .site-header .main-header .search_wrapper .search-bar form {
        
          margin: auto;
      }

      .site-header .main-header .search_wrapper .search-bar input {
        min-width: unset;
        min-height: 46px;
        background: unset;
        border-radius: 0;
        border-width: 0 0 0 1px;
        padding-left: 12px;
      }

        .site-header .main-header .search_wrapper .search-bar input::placeholder {
            font-size: 16px;
            font-weight: normal;
            font-stretch: normal;
            font-style: normal;
            line-height: normal;
            letter-spacing: 0.64px;
            text-align: left;
            color: #02196b;
        }

      .site-header .main-header .search_wrapper .search-bar form button {
          left: 90%;
          z-index: 2;
            top: 50%;
            transform: translateY(-50%);
      }


      .site-header .main-header .main-header-wrapper .woocommerce-tools-button {
          order: 2;
          flex:1;
      }


      .site-header .main-header .woocommerce-tools-button .tools_button_wrapper .translateSquare {
          display: none;
      }


      .site-header .main-header .woocommerce-tools-button .tools_button_wrapper i:before {
          -webkit-mask-size: contain;
          mask-size: contain;
      }


      .site-header .main-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #0000008a;
        border: 0;
        z-index: 99999;      
      }

      .admin-bar .site-header .main-menu {
        height: calc(100vh - 46px);
        top: 46px;
      }

      .site-header .main-header {
          padding: 0px 0px 0px 0px;
      }

      .site-header .main-header .open_nav_icon,
      .site-header .main-header .site-branding,
      .site-header .main-header .woocommerce-tools-button {
          flex: 1;
          display: flex;
      }

      .site-header .main-header .open_nav_icon {
          justify-content: flex-start;
      }

      .site-header .main-header .site-branding {
          justify-content: left;
      }

      .site-header .main-header .site-branding img {
          margin: 10px 0;
      }


      .menu-main-menu-1 {
          display: flex;
          flex-wrap: nowrap;
          overflow: scroll;
          text-align: center;
          margin: 10px 10px;
          left: 0;
      }

      .menu-main-menu-1 li {
          list-style: none;
          white-space: nowrap;
          margin-left: 10px;
      }

      .sub-mega-menu {
          display: none;
      }

      .quick_nav {
          width: 100%
      }

      .navigation {
          width: 100%;
          position: absolute;
          top: 0;
          left: 0;
          height: 100%;
          background: #fff;
          flex-direction: column;
      }

      .admin-bar #navigation {
        height: calc(100dvh - 46px);
      }


      .navigation div img {
          max-width: 100px;
          padding-top: 0;
          margin-bottom: 0;
      }


      .site-header .main-menu nav > ul {
          flex-direction: column;
          margin: 0;
          width: 100%;
          position: relative;
          height: 100%;
          max-width: 25%;
          border-right: 1px solid #eceaea;
          padding: 4px 6px;
          justify-content: flex-start;
      }

      .site-header.corporate .main-menu nav > ul {
        max-width: 100%;
        align-items: flex-start;
        justify-content: center;
        border: unset;
        padding: 0;
      }


      .site-header .main-menu nav > ul > li:after {
          float: right;
          -webkit-mask: url("../../../themes/mhtema/inc/icons/urm-next.svg");
          mask: url("../../../themes/mhtema/inc/icons/urm-next.svg");
          background-color: #333;
          -webkit-mask-size: contain;
          mask-size: contain;
          height: 12px;
          width: 6px;
          -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
          transform: rotate(90deg);
          order:2;
      }

      .site-header .main-menu nav > ul > li {
          display: flex;
          align-items: center;
          justify-content: center;
          padding: 0;
          flex-wrap: wrap;
          white-space: normal;
      }

      .site-header .main-menu nav > ul > li.active {
        border-radius: 12px;
        background-color: #ecf1ff;
      }

      .site-header .main-menu nav > ul > li.active > div {
          display: flex;
          align-items: center;
          justify-content: flex-start;
      }

      .site-header .main-menu nav > ul > li.active > div i.sub-button {
          transform: rotate(0deg);
          width: 18px;
          height: 18px;
          order: 1;
          margin: 0px 14px 0px 0px;
      }

      .site-header .main-menu nav > ul > li.active > div a {
          color: #7278ff;
      }

      .site-header .main-menu nav > ul > li > .link_title {
        padding: 8px;
          display: flex;
          align-items: center;
          justify-content: space-between;
      }

      .site-header .main-menu nav > ul > li > .link_title a {
        text-transform: unset;
        font-size: 14px;
        font-weight: 500;
        color: #6d7278;
        display: flex;
        align-items: center;
        flex-direction: row-reverse;
        text-align: center;
        white-space: normal;
      }

      .site-header .main-menu nav > ul > li > .link_title a i {
        width: 25px;
        height: 25px;
        margin-right: 6px;
        display: none!important;
      }

      .site-header .main-menu nav > ul > li > a {
          text-align: left;
          font-size: 14px;
          order:1;
      }

      .site-header .main-menu nav .mobile_navigation_login_actions {
          padding: 4px 22px;
          background-color: #fafafa;
          display: flex;
          flex-direction: column;
          min-height: 100px;
          justify-content: space-around;
      }

      .site-header .main-menu nav .mobile_navigation_login_actions .login {
          display: flex;
          align-items: center;
          width: 100%;
      }

      .site-header .main-menu nav .mobile_navigation_login_actions .login a {
          font-family: "HelveticaNow",sans-serif;
          font-size: 15px;
          font-weight: 500;
          letter-spacing: normal;
          color: #2b2d37;
          margin-left: 12px;
          text-decoration: unset!important;
      }

      .navigation-branding {
          display: flex;
          align-items: center;
          justify-content: center;
          border-bottom: 1px solid #eceaea;
          position: relative;
          padding: 8px 0px;
      }

      .navigation-branding a.close-nav {
        color: #1e201d;
        -webkit-mask: url("../../../themes/mhtema/inc/icons/close.svg");
        mask: url("../../../themes/mhtema/inc/icons/close.svg");
        background-color: #1e201d;
        -webkit-mask-size: contain;
        mask-size: contain;
        height: 6px;
        width: 6px;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
        height: 16px;
        width: 16px;
        position: absolute;
        right: 5%;
        display: block;
      }

      .site-header .main-menu nav > ul > li .sub-menu li:after {
          content: unset;
      }

      .site-header .main-menu nav > ul > li .sub-menu {
          order:3;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu {
        display: flex!important;
        position: fixed!important;
        top: 0;
        left: 25%;
        width: 75%;
        background: unset;
        box-shadow: unset;
        border-radius: unset;
        height: calc(100vh - 150px);
        top: 50px;
        align-items: flex-start;
        padding: 10px;
        overflow: auto;
      }
      .admin-bar .site-header .main-menu nav > ul > li.active .sub-mega-menu {
            top: 96px;
            height: calc(100vh - 150px - 46px);
        }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .desktop {
        display: none;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile {
        display: flex!important;
        width: 100%;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul {
        margin: 0;
        list-style: unset;
        width: 100%;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul.list {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 12px 30px;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li {
       display: none;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul.list li {
        margin: 0;
        list-style: unset;
        display: flex;
        align-items: flex-start;
        justify-content: center;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li .tab_title {
        display: flex;
        align-items: center;
        justify-content: space-between;
        font-weight: bold;
        font-size: 14px;
        color: #6d7278;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li > .tab_title {
        flex-direction: column;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active {
        display: flex;
        flex-direction: column;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_title {
        color: #7278ff;
        flex-direction: row-reverse;
        align-items: center;
        justify-content: flex-end;
        gap: 8px;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_title .close_tab {
        background-color: #ecf1ff;
        border-radius: 50%;
        padding: 4px;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li .tab_title .close_tab i {
        width: 10px;
        height: 10px;
        transform: rotate(90deg);
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_title .close_tab i {
        background: #7278ff;
        transform: rotate(-90deg);
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li .tab_content {
        display: none;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_content {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 20px 15%;
        padding: 16px 0px;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_content .menu_element .menu_icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        border: solid 1px #eceaea;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_content .menu_element .menu_title {
        font-size: 12px;
        color: #6d7278;
        max-width: 60px;
        text-align: center;
        font-weight: bold;
        margin-top: 6px;
        white-space: normal;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_content .menu_element .menu_icon .icon {
        width: 40px;
        height: 40px;
        display: block;
        background-color: #6d7278;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_content .menu_element .menu_icon img {
        max-width: unset;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile .title {
        font-size: 15px;
        font-weight: bold;
        color: #7278ff;
        margin-bottom: 10px;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .kurumsal-mega .mobile {
        flex-direction: column;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .kurumsal-mega .mobile img {
        max-width: unset;
        width: 100%;
        padding: 20px;
        background-color: #eff2f3;
        margin-bottom: 10px;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .kurumsal-mega .mobile .text {
        font-size: 13px;
        color: #74797e;
        display: flex;
        flex-direction: column;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .kurumsal-mega .mobile .text a {
        width: 100%;
        text-align: left;
        margin: 10px 0px;
        color: #74797e;
        font-weight: bold;
        text-decoration: underline!important;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li > .tab_title span, 
      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li > .tab_title a {
        font-size: 12px;
        color: #6d7278;
        max-width: 65px;
        text-align: center;
        font-weight: bold;
        margin-top: 6px;
        white-space: normal;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li > .tab_title .close_tab {
        display: none;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li > .tab_title .menu_icon {
        width: 60px;
        height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 6px;
        border: solid 1px #eceaea;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li > .tab_title .menu_icon .icon {
        width: 40px;
        height: 40px;
        display: block;
        background-color: #6d7278;
      }

      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_title .menu_icon {
        display: none;
      }
      
      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_title span {
        color: #7278ff;
        font-size: 14px;
        font-style: normal;
        font-weight: 500;
        line-height: 20px;
        margin-top: 0;
        max-width: unset;
      }
      
      .site-header .main-menu nav > ul > li.active .sub-mega-menu .mobile > ul > li.active .tab_title .close_tab {
        display: block;
        transform: rotate(-90deg);
      }

  }

/*** Search Form ****/

  .search_box .icon {
    display: none;
  }

  .site-header .main-header .search_wrapper .search-bar .search_box .icon.urm-search {
    display: block;
    position: absolute;
    top: 50%;
    z-index: 1;
    left: 2%;
    transform: translateY(-50%);
    background-color: #02196b;
  }

  @media screen and (max-width: 782px) {
    .site-header .main-header .search_wrapper .search-bar .search_box .icon.urm-search {
        display: none;
    }
    }

  form.woocommerce-product-search .results {
    display: none;
    position: absolute;
    border: 1px solid;
    border-top: 0px;
    border-color: #7278ff;
    width: 100%;
    left: 0%;
    top: 50%;
    min-height: 200px;
    background-color: #fff;
    margin: 0 auto;
    padding: 10px;
    overflow: scroll;
    border-radius: 5px;
    -webkit-box-shadow: -1px 23px 23px -4px rgba(0, 0, 0, 0.75);
    -moz-box-shadow: -1px 23px 23px -4px rgba(0, 0, 0, 0.75);
    box-shadow: -1px 23px 23px -4px rgba(0, 0, 0, 0.75);
    z-index: 0;
    padding-top: 24px;
    z-index: 2;
  }

  form.woocommerce-product-search .results.data_loading {
    background-image: url("../../../themes/mhtema/inc/icons/puff.svg");
    background-repeat: no-repeat;
    background-size: 10%;
    background-position: center;
  }


  @media screen and (max-width: 782px) {
      form.woocommerce-product-search .results.data_loading {
        background-size: 15%;
        height: calc(100vh - 40px)!important;
      }
  }

  .results ul li {
      list-style: none;
      padding: 6px 2px;
  }

  .results ul li:not(:last-child) {
      border-bottom: 1px solid #f7f7f7;
  }

  .results ul li:hover {
      background: #f7f7f7;
  }

  .results ul li a {
    color: #333;
    font-family: "HelveticaNow",sans-serif;
    font-size: 15px;
    text-decoration: none;
    width: 100%;
    display: flex;
    align-items: center;
    line-height: normal;
    justify-content: space-between;
    padding: 0px 8px;
  }

  .results ul li a span {
      font-size: 10px;
      color: #333;
      text-transform: uppercase;
      line-height: normal;
  }

  .results ul {
      margin: 0;
  }


  @media screen and (max-width: 782px) {
    .site-header .main-header .main-header-wrapper .search_wrapper.open {
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 9999;
        top: 0;
        left: 0;
        max-height: unset;
        background: #ffffff;
        display: block;
    }

    .admin-bar .site-header .main-header .main-header-wrapper .search_wrapper.open {
        top: 46px;
    }

    .search_wrapper.open form.woocommerce-product-search .results {
        position: static;
        min-height: 100%;
        max-height: unset;
        box-shadow: unset;
        border: unset;
        height: 100%;
        display: block;
        padding-top: 10px;
    }

    .search_wrapper.open form.woocommerce-product-search .results ul li {
      padding: 14px 2px;
    }

    .site-header .main-header .search_wrapper.open .search-bar form button {
      display: none;
    }

    .site-header .main-header .search_wrapper.open .search-bar input {
        border: unset;
        padding-left: 16px;
    }

    .search_wrapper.open .search_box {
      display: flex;
      justify-content: center;
      align-items: center;
      border-bottom: 1px solid #dedece;
    }

    .search_wrapper.open .search_box .icon {
      display: block;
      width: 10%;
    }
  }


.page-wrapper {
    position: relative;
}


footer {
    background-color: #070253;
    color: #fff;
}


#wpadminbar {
    -webkit-transform: translateZ(0);
    transform: translateZ(0)
}

@media screen and (max-width: 782px) {
    #wpadminbar {
        position: fixed !important
    }
}


/* Tooltips */

/* Styles for elements having a data-tooltip attribute - using the star
   selector sucks so you may wish to change this to predefined list of HTML
   tags instead */
*[data-tooltip] {
    /* position:relative the tooltip launcher to enable us to position:absolute
     the generated content */
    position: relative;
    /* Change cursor - you may want to remove this if you don't like the
     effect */
    cursor: help;
}

/* Default ::before & ::after values */
*[data-tooltip]::before,
*[data-tooltip]::after {
    pointer-events: none;
    outline: none;
    display: block;
    z-index: 999;
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin: 0;
    padding: 0;
    /* Set-up the animation */
    opacity: 0;
    -webkit-transition: all 0.4s ease-out 0.2s;
    -moz-transition: all 0.4s ease-out 0.2s;
    -o-transition: all 0.4s ease-out 0.2s;
    transition: all 0.4s ease-out 0.2s;
    -webkit-transform: translate(-50%, -1rem);
    -moz-transform: translate(-50%, -1rem);
    -ms-transform: translate(-50%, -1rem);
    -o-transform: translate(-50%, -1rem);
    transform: translate(-50%, -1rem);
}

/* Tooltip arrow */
*[data-tooltip]::before {
    content: "";
    /* Borders are used to create the arrow so no height or width required */
    width: 0;
    height: 0;
    line-height: 0;
    /* This sets the tooptip arrow color */
    border-top: 5px solid #000;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: transparent;
    overflow: hidden;
}

/* Tooltip bubble */
*[data-tooltip]::after {
    /* Use the data-tooltip attribute to set the content */
    content: attr(data-tooltip);
    /* Set a default width */
    width: 248px;
    /* Use a margin to create the space required for displaying the tooltip
     arrow */
    margin-bottom: 5px;
    /* Defensive font reset as we inherit */
    letter-spacing: normal;
    text-align: center;
    /* (older) Moz doesn't seem to recognise the following */
    text-decoration: none;
    word-spacing: normal;
    word-wrap: normal;
    word-break: normal;
    line-height: 1.2;
    -webkit-font-smoothing: antialiased;
    font-weight: normal;
    font-family: "HelveticaNow", sans-serif !important;;
    /* webkit has problems using rem units on generated content so i'm falling
    back to old school pixels */
    font-size: 13px;
    padding: 6px;
    min-height: 18px;
    color: #fcfcfc;

    /* Default 'dark' theme */
    background-color: #222;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));
    background-image: -moz-linear-gradient(top, #222, #000);
    background-image: linear-gradient(top, #222, #000);
    -webkit-border-radius: 0.2em;
    -moz-border-radius: 0.2em;
    border-radius: 0.2em;
    -webkit-box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0 -2px 2px rgba(0, 0, 0, 0.2);
    text-shadow: rgba(0, 0, 0, 0.2) 0 1px 0px;
}

/* :hover & :focus states */
*[data-tooltip]:hover::before,
*[data-tooltip]:focus::before,
*[data-tooltip]:hover::after,
*[data-tooltip]:focus::after {
    /* http://www.useragentman.com/blog/2014/05/04/fixing-typography-inside-of-2-d-css-transforms/ */
    -webkit-transform: perspective(1px) translate(-50%, 0);
    -moz-transform: perspective(1px) translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0);
    transform: perspective(1px) translate(-50%, 0);
    /* Reset pointer events or things go all strange... */
    pointer-events: auto;
    /* Set the final opacity */
    opacity: 0.96;
}

/* Monospace font */
*[data-tooltip][data-tooltip-theme~="mono"]::after,
[data-tooltip-theme~="mono"] *[data-tooltip]::after {
    font-family: monospace;
}

/* Left align text */
*[data-tooltip][data-tooltip-theme~="lft"]::after,
[data-tooltip-theme~="lft"] *[data-tooltip]::after {
    text-align: left;
}

/* Right align text */
*[data-tooltip][data-tooltip-theme~="rht"]::after,
[data-tooltip-theme~="rht"] *[data-tooltip]::after {
    text-align: right;
}

/* Right to left writing direction */
*[data-tooltip][data-tooltip-theme~="rtl"]::after,
[data-tooltip-theme~="rtl"] *[data-tooltip]::after {
    direction: rtl;
}

/* Blue theme */
*[data-tooltip][data-tooltip-theme~="blue"]::after,
[data-tooltip-theme~="blue"] *[data-tooltip]::after {
    background-color: #3498db;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3498db), to(#3198dd));
    background-image: -moz-linear-gradient(top, #3498db, #3198dd);
    background-image: linear-gradient(top, #3498db, #3198dd);
}

*[data-tooltip][data-tooltip-theme~="blue"]::before,
[data-tooltip-theme~="blue"] *[data-tooltip]::before {
    border-top-color: #3198dd;
}

/* Red theme */
*[data-tooltip][data-tooltip-theme~="red"]::after,
[data-tooltip-theme~="red"] *[data-tooltip]::after {
    background-color: #c0392b;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#c0392b), to(#e74c3c));
    background-image: -moz-linear-gradient(top, #c0392b, #e74c3c);
    background-image: linear-gradient(top, #c0392b, #e74c3c);
}

*[data-tooltip][data-tooltip-theme~="red"]::before,
[data-tooltip-theme~="red"] *[data-tooltip]::before {
    border-top-color: #e74c3c;
}

/* Green theme */
*[data-tooltip][data-tooltip-theme~="green"]::after,
[data-tooltip-theme~="green"] *[data-tooltip]::after {
    background-color: #3FC380;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#3FC380), to(#2ECC71));
    background-image: -moz-linear-gradient(top, #3FC380, #2ECC71);
    background-image: linear-gradient(top, #3FC380, #2ECC71);
}

*[data-tooltip][data-tooltip-theme~="green"]::before,
[data-tooltip-theme~="green"] *[data-tooltip]::before {
    border-top-color: #2ECC71;
}

/* Orange theme */
*[data-tooltip][data-tooltip-theme~="orange"]::after,
[data-tooltip-theme~="orange"] *[data-tooltip]::after {
    background-color: #F9690E;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#F9690E), to(#D35400));
    background-image: -moz-linear-gradient(top, #F9690E, #D35400);
    background-image: linear-gradient(top, #F9690E, #D35400);
}

*[data-tooltip][data-tooltip-theme~="orange"]::before,
[data-tooltip-theme~="orange"] *[data-tooltip]::before {
    border-top-color: #D35400;
}

/* Make tooltip "links" have a different pointer (as the tooltip uses the
 "help" cursor) */
a[data-tooltip] {
    cursor: pointer;
}


/* Media Queries
–––––––––––––––––––––––––––––––––––––––––––––––––– */
/*
Note: The best way to structure the use of media queries is to create the queries
near the relevant code. For example, if you wanted to change the styles for buttons
on small devices, paste the mobile query code up in the buttons section and style it
there.
*/

/* Larger than mobile */
@media (min-width: 400px) {
}

/* Larger than phablet (also point when grid becomes active) */
@media (min-width: 550px) {
}

/* Larger than tablet */
@media (min-width: 750px) {
}

/* Larger than desktop */
@media (min-width: 1000px) {
}

/* Larger than Desktop HD */
@media (min-width: 1200px) {
}


/* Login and Register Form */
.login-form-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.login-form-wrapper .form-illustration {
    flex: 1;
    background: #ECEDFF;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.login-form-wrapper .form-illustration picture {
    display: flex;
    align-items: center;
    justify-content: center;
}


.login-form-wrapper .form-illustration img {
    width: 90%;
    margin: auto;
}
@media screen and (max-width: 780px) {
    .login-form-wrapper .form-illustration img {
        width: 75%;
    }
}

.login-form-wrapper .forms {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 780px) {
  .login-form-wrapper .forms {
    min-width: auto;
    box-shadow: unset;
    margin: auto;
    overflow: unset;
  }
}

.login-form-wrapper .forms .form_title {
  text-align: center;
  line-height: 2.1;
}

.login-form-wrapper .forms .form_title span {
    font-size: 20px;
    color: #2b2d37;
    letter-spacing: 0px;
    font-weight: 300;
}


.login-form-wrapper .forms h2 {
  padding: 0px;
  font-size: 35px;
  font-weight: bold;
  color: #2b2d37;
  text-align: center;
}

.login-form-wrapper .forms form {
    padding: 86px 30px;
}

.login-form-wrapper .forms form.register {
    padding: 0 24%;
    width: 100%;
}

.login-form-wrapper .forms form.login {
    padding: 0 24%;
}

#login {
    display: none;
}

.login-form-wrapper .forms .tab-group {
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #dedede;
}

.login-form-wrapper .forms .tab-group:after {
    content: "";
    display: table;
    clear: both;
}

.login-form-wrapper .forms .tab-group li a {
    display: block;
    text-decoration: none;
    padding: 15px;
    background: #fff;
    color: #888;
    font-size: 16px;
    float: left;
    width: 50%;
    min-height: 61px;
    text-align: center;
    border-top: 3px solid transparent;
    -moz-transition: all 0.4s ease-in-out;
    -o-transition: all 0.4s ease-in-out;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}



.login-form-wrapper .forms .button {
    margin: 5px 0px 11px 0px;
    border-radius: 20px;
    height: 45px;
    width: 100%;
}

.login-form-wrapper .forms form .input-field .form-row-half {
    width: calc(50% - 5px);
    float: left;
    margin: 0;
}

.login-form-wrapper .forms form .input-field .form-row-half:first-child {
    margin-right: 10px;
}

.login-form-wrapper .forms input[type="text"],
.login-form-wrapper .forms input[type="password"],
.login-form-wrapper .forms input[type="email"] {
  border-radius: 20px;
  border: solid 1px #dfe6ee;
  background-color: #fff;
  transition: all 0.4s ease-in-out;
  height: 40px;
  margin: 25px 0px;
  padding: 0px 25px;
}

.login-form-wrapper .forms input::placeholder {
  color: #313541;
  font-size: 16px;
  font-weight: bold;
  opacity: 1; /* Firefox */
}

.login-form-wrapper .forms input::placeholder :-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #313541;
  font-size: 16px;
  font-weight: bold;
  opacity: 1; /* Firefox */
}

.login-form-wrapper .forms input::placeholder ::-ms-input-placeholder { /* Microsoft Edge */
  color: #313541;
  font-size: 16px;
  font-weight: bold;
  opacity: 1; /* Firefox */
}

.login-form-wrapper .forms input#rememberme {
    width: 23px;
    padding: 0;
    margin: 0 10px 0 0;    
    float: left;
}

.login-form-wrapper .forms input:focus {
    outline: 0;
    border-color: #7278ff;
}

.login-form-wrapper .forms label {
    font-size: 16px;
    font-weight: normal;
    color: #333;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    display: none;
}

.login-form-wrapper .forms label.woocommerce-form-login__rememberme {
    display: flex;
}

.login-form-wrapper .forms .password-input .woocommerce-password-strength.short {
    display: none;
}

.login-form-wrapper .forms .password-input small.woocommerce-password-hint {
    display: none;
}

.login-form-wrapper .text-p {
    text-align: center;
    font-size: 17px;
    font-weight: bold;
}

.login-form-wrapper .text-head {
    padding: 0px 10px;
    text-align: center;
}

.login-form-wrapper .text-p a {
    color: #7278ff!important;
    text-decoration: unset!important;
    font-weight: bold;
    background: unset;
}

.login-form-wrapper .text-head a {
    color: #1383ea;
}


.passshow {
    position: absolute;
    display: none;
    right: 30px;
    width: 50px;
    height: 25px;
    background: #1da1f2;
    border: 1px solid #fff;
    border-radius: 2px;
    font: 12px arial, bold;
    color: #fff;
    cursor: pointer;
    padding: 1px
}

.login-form-wrapper .forms input:focus + .passshow {
    display: block;
}

.login-form-wrapper .end_message {
    text-align: center;
    width: 100%;
    color: #313541;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 0px;
}
form.woocommerce-ResetPassword {
    display: flex;
    flex-direction: column;
}

.login-form-wrapper .close {
    border: solid 1px #5c5c5c;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
}

.login-form-wrapper .close:before {
    color: #5c5c5c!important;
    font-size: 20px!important;
}

.myaccount-popup .login-form-wrapper .forms .button.continue_wo_sign {
    margin-top: 20px;
}
@media screen and (max-width: 780px) {

    .login-form-wrapper {
        flex-direction: column;
        background-color: #ECEDFF;
    }

    .login-form-wrapper .form-illustration {
        flex: 0.5;
        padding: 6% 0;
    }

    .login-form-wrapper .form-illustration img {
        margin:0;
    }

    .login-form-wrapper .forms form.register {
        padding: 20px 7%;
        margin: 0;
    }

    .login-form-wrapper .forms form.login {
        padding: 20px 7%;
        margin: 0;
    }

    .login-form-wrapper .forms h1 {
        font-size: 25px;
        margin: 0;
    }

    .login-form-wrapper .forms .form_title span {
        font-size: 16px;
    }

    .login-form-wrapper .forms form .input-field .form-row-half {
        width: 100%;
        margin-right: 0;
    }

    .login-form-wrapper .forms input[type="text"], .login-form-wrapper .forms input[type="password"], .login-form-wrapper .forms input[type="email"] {
        margin: 0px 0px 24px 0px;
    }

    .login-form-wrapper .forms form {
        padding: 10px;
        background: #fff;
        border-radius: 30px 30px 0 0;
    }

    .login-form-wrapper .forms .input-field {
        margin-top: 28px;
    }

    .login-form-wrapper .forms label.woocommerce-form-login__rememberme {
      font-size: 13px;
      font-weight: 300;
      margin-left: 2px;
      margin-bottom: 20px;
      margin-top: -7px;
    }

    .login-form-wrapper .forms input#rememberme {
      width: 20px;
      margin: 0px 6px 0px 0px;
    }

    .login-form-wrapper .end_message {
        float: left;
        margin-top: 16px;
    }

    .login-form-wrapper .text-p {
        font-size: 14px;
        color: #313541;
        font-weight: 400;
        text-decoration: revert;
        float: center;
        margin: 12px 0px 0px 0px;
    }

    .login-form-wrapper .close {
      top: 2vh!important;
      right: 2%!important;
    }

}
/** My Address **/

.woocommerce-MyAccount-content .address-container .address-wrapper {
    display: flex;
    flex-direction: column;
    padding: 20px 25px;
    border-radius: 6px;
    border: solid 1px #dedcdf;
    margin: 16px 0px;
    border-radius: 6px;
    box-shadow: 0 2px 30px 0 rgba(181, 169, 169, 0.5);
    border: solid 1px #dedcdf;
    background-color: #ffffff;
}

.woocommerce-MyAccount-content .address-container .address-wrapper .card-area {
    background-color: #f4f7fa;
    padding: 10px 15px;

}

.woocommerce-MyAccount-conte.cart-list ul lint .address-container h2.page_title {
    font-size: 24px;
    font-family: "HelveticaNow", sans-serif;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #000000;
}

.cart-list ul {
    display: flex;
}


.cart-list ul li {
    list-style: none;
    padding: 30px 10px;
}

.cart-list ul li .card-wrapper {

    width: 330px;
    display: flex;
    flex-wrap: wrap;
    height: 190px;
    border-radius: 6px;
    border: solid 2px #7278ff;
    background-color: #ffffff;
    padding: 10px 20px;
}

.card-brand {
    flex: 1 0 60%;
    text-align: left;
    padding-top: 25px;
}

.card-edit {
    flex: 1 0 40%;
    text-align: right;
    padding-top: 25px;
    max-width: 40px;
}

.card-number {
    flex: 0 0 100%;
    text-align: right;
    padding-top: 25px;
}

.card-valid-date {
    text-align: right;
    flex: 0 0 100%;
    padding-top: 10px;
}

.address-area {
    background-color: #f4f7fa;
    padding: 10px 40px;
}

.address-area .shipping-address-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.address-area .shipping-address-wrapper .shipping-address-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.23px;
    color: #333;
    margin: 20px 0 0 0;
    flex-basis: 100%;
}

.address-area .shipping-address-wrapper .shipping-address-item {
    margin: 15px 0 0 0;
    flex-basis: 80%;
}

.address-area .shipping-address-wrapper .address-add-btn {
    flex-basis: 20%;
    align-self: center;
}

.shipping-address-item ul {
    display: flex;
    margin: 0px;
    flex-wrap: wrap;
}

.shipping-address-item ul li {
    list-style: none;
    padding: 10px;
}

.shipping-address-item ul li:first-child {
    padding-left: 0px;
}

.shipping-address-item ul li:nth-child(1n+1) {
    padding-left: 0px;
}

.shipping-address-item ul li .address-item-wrapper {
    width: 330px;
    display: flex;
    flex-wrap: wrap;
    height: 190px;
    border-radius: 6px;
    background-color: #ffffff;
    padding: 10px 20px;
}

.shipping-address-item ul li .address-item-wrapper .address-title {
    flex: 1 0 60%;
    text-align: left;
    padding-top: 25px;
}

.shipping-address-item ul li .address-item-wrapper .address-edit {
    flex: 1 0 40%;
    text-align: right;
    padding-top: 25px;
    max-width: 40px;
}

.shipping-address-item ul li .address-item-wrapper .address-detail {
    flex: 0 0 100%;
    text-align: left;
    padding-top: 15px;
    font-size: 12px;
}

.shipping-address-item ul li .address-item-wrapper .address-detail p {
    font-size: 14px;
    margin: 0 0 5px 0;
}

.shipping-address-item ul li .address-item-wrapper .address-detail .address-desc {
    font-size: 12px;
}


.address-area .billing-address-wrapper {
    display: flex;
    flex-wrap: wrap;
}

.address-area .billing-address-wrapper .billing-address-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: 0.23px;
    color: #333;
    margin: 20px 0 0 0;
    flex-basis: 100%;
}

.address-area .billing-address-wrapper .billing-address-item {
    margin: 15px 0 0 0;
    flex-basis: 80%;
}

.address-area .billing-address-wrapper .address-add-btn {
    flex-basis: 20%;
    align-self: center;
}

.billing-address-item ul {
    display: flex;
    margin: 0px;
    flex-wrap: wrap;
}

.billing-address-item ul li {
    list-style: none;
    padding: 10px;
}

.billing-address-item ul li:first-child {
    padding-left: 0px;
}

.billing-address-item ul li .address-item-wrapper {
    width: 330px;
    display: flex;
    flex-wrap: wrap;
    height: 190px;
    border-radius: 6px;
    background-color: #ffffff;
    padding: 10px 20px;
}

.billing-address-item ul li .address-item-wrapper .address-title {
    flex: 1 0 60%;
    text-align: left;
    padding-top: 25px;
}

.billing-address-item ul li .address-item-wrapper .address-edit {
    flex: 1 0 40%;
    text-align: right;
    padding-top: 25px;
    max-width: 40px;
}

.billing-address-item ul li .address-item-wrapper .address-detail {
    flex: 0 0 100%;
    text-align: left;
    padding-top: 15px;
    font-size: 12px;
}

.billing-address-item ul li .address-item-wrapper .address-detail p {
    font-size: 14px;
    margin: 0 0 5px 0;
}

.billing-address-item ul li .address-item-wrapper .address-detail .address-desc {
    font-size: 12px;
}

/*Forms*/
.form-style-1 {
    margin: 10px auto;
    max-width: 400px;
    padding: 20px 12px 10px 20px;
    font: 13px "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

.form-style-1 li {
    padding: 0;
    display: block;
    list-style: none;
    margin: 10px 0 0 0;
}

.form-style-1 label {
    margin: 0 0 3px 0;
    padding: 0px;
    display: block;
    font-weight: bold;
}

.form-style-1 input[type=text],
.form-style-1 input[type=date],
.form-style-1 input[type=datetime],
.form-style-1 input[type=number],
.form-style-1 input[type=search],
.form-style-1 input[type=time],
.form-style-1 input[type=url],
.form-style-1 input[type=email],
textarea,
select {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    border: 1px solid #BEBEBE;
    padding: 7px;
    margin: 0px;
    -webkit-transition: all 0.30s ease-in-out;
    transition: all 0.30s ease-in-out;
    -moz-transition: all 0.30s ease-in-out;
    -ms-transition: all 0.30s ease-in-out;
    -o-transition: all 0.30s ease-in-out;
    outline: none;
}

.form-style-1 input[type=text]:focus,
.form-style-1 input[type=date]:focus,
.form-style-1 input[type=datetime]:focus,
.form-style-1 input[type=number]:focus,
.form-style-1 input[type=search]:focus,
.form-style-1 input[type=time]:focus,
.form-style-1 input[type=url]:focus,
.form-style-1 input[type=email]:focus,
.form-style-1 textarea:focus,
.form-style-1 select:focus {
    -moz-box-shadow: 0 0 8px #88D5E9;
    -webkit-box-shadow: 0 0 8px #88D5E9;
    box-shadow: 0 0 8px #88D5E9;
    border: 1px solid #88D5E9;
}

.form-style-1 .field-divided {
    width: 49%;
}

.form-style-1 .field-long {
    width: 100%;
}

.form-style-1 .field-select {
    width: 100%;
}

.form-style-1 .field-textarea {
    height: 100px;
}

.form-style-1 input[type=submit], .form-style-1 input[type=button] {
    background: #4B99AD;
    padding: 8px 15px 8px 15px;
    border: none;
    color: #fff;
}

.form-style-1 input[type=submit]:hover, .form-style-1 input[type=button]:hover {
    background: #4691A4;
    box-shadow: none;
    -moz-box-shadow: none;
    -webkit-box-shadow: none;
}

.form-style-1 .required {
    color: red;
}

/** MODAL **/

.modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 99999; /* Sit on top */
  padding-top: 50px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  background-color: rgba(0, 0, 0, 0.51); /* Black w/ opacity */
  z-index: 99999999;
}

@media screen and (max-width: 780px) {
  .modal {
    z-index: 999;
    top: 0;
    left: 0;
    padding: 0;
  }
}

.admin-bar .modal {
  top: 32px;
  height: calc(100% - 32px);
}

@media screen and (max-width: 780px) {
  .admin-bar .modal {
    top: 46px;    
    height: calc(100% - 46px);
  }
}


/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  box-shadow: 0 2px 30px 0 rgba(181, 169, 169, 0.5);
  border: solid 1px #dedcdf;
  width: 50%;
  max-height: auto;
  overflow-y: auto;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: calc(100vh - 100px);
}


/* The Close Button */
.modal-content .close {
  cursor: pointer;
  z-index: 9999;
  position: absolute;
  top: 3%;
  right: 2%;
}

.modal-content .close:before {
    content: "";
    cursor: pointer;
    -webkit-mask-image: url(../../../themes/mhtema/inc/icons/urm-times.svg);
    mask-image: url(../../../themes/mhtema/inc/icons/urm-times.svg);
    width: 12px;
    display: block;
    height: 12px;
    background-color: #333;
    background-size: cover;
    mask-repeat: no-repeat;
    mask-size: contain;
    mask-position: center;
}

.modal-content .close:before:hover,
.modal-content .close:before:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

/** Modal END**/

/*** Image lightbox Modal ***/

  .image_lightbox {
    display: none;
    background-color: rgba(0, 0, 0, 0.95);
    padding-top: 0;
    justify-content: center;
    align-items: center;
  }

  .image_wrapper {
    margin: 0 auto;
    max-width: 70%;
    height: 80%;
    width: 50%;
  }
/***** End *****/ 
.modal-content form {
    display: flex;
    flex-wrap: wrap;
    margin: 0px;
}

.modal-content form div.full {
    flex: 0 0 100%;
    padding: 0px 5px;
}

.modal-content form div.half  {
    flex: 0 0 50%;
    padding: 0px 5px;
}

.modal-content form .full.submit-btn {
    text-align: right;
    margin: 10px 0px
}

.modal-content form .full.textarea {
    margin: 10px 0px;
}
.modal-content form .full textarea {
    height:80px;
}
/***** ToolTip *****/

.urm-tooltip {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 0px 2px;
}

.urm-tooltip .tooltip-text {
  visibility: hidden;
  width: 180px;
  background-color: rgb(132, 132, 132);
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;

  /* Position the tooltip */
  position: absolute;
  z-index: 1;
  top:120%;
  left: unset;
  right: unset;
  bottom: unset;
}

.urm-tooltip:hover .tooltip-text {
  visibility: visible;
}



@media screen and (max-width: 780px) { 
    .urm-tooltip .tooltip-text {
      display: none;
    }

}

.urm-tooltip.left .tooltip-text {
  right:105%;
  top: unset;
  bottom: unset;
  left: unset;
}

.urm-tooltip.top .tooltip-text {
  bottom: 120%;
  top: unset;
  right: unset;
  left: unset;
}

.urm-tooltip.bottom .tooltip-text {
 top:150%;
  bottom: unset;
  right: -10%;
}

.urm-tooltip.right .tooltip-text {
  left: 120%;
  top: unset;
  bottom: unset;
  right: unset;
}


@media screen and (max-width: 780px) {
  .urm-tooltip.mobile-left .tooltip-text {
    right:105%;
    top: unset;
    bottom:unset;
    left:unset;
  }

  .urm-tooltip.mobile-top .tooltip-text {
    bottom: 120%;
    top: unset;
    right:unset;
    left:unset;
  }

  .urm-tooltip.mobile-bottom .tooltip-text {
   top:120%;
    right:unset;
    left:unset;
    bottom:unset;
  }

  .urm-tooltip.mobile-right .tooltip-text {
    left: 120%;
    top: unset;
    bottom:unset;
    right: unset;
  }
}


/******* 404 *******/
    .error-content {
      display: flex;
      justify-content: center;
      margin-top: 75px;
    }

    .error-content p {
      line-height: 150%;
      font-size: 21px;
      font-weight: 500;
      color: #7b7b7b;
      margin-top: 40px;
      padding: 0px 50px;
    }

    .error-content h1 {
      font-size: 48px;
      font-weight: 700;
      color: #333;
      font-family: "HelveticaNow", sans-serif !important;
      padding: 0px 50px;
    }

    .error-content h2 {
      font-size: 24px;
      font-weight: 700;
      color: #333;
      font-family: "HelveticaNow", sans-serif !important;
      padding: 0px 50px;
    }

    .error-content p.home_url {
        display: flex;
        align-items: center;
    }

    .error-content p.home_url .icon {
        width: 40px;
        height: 30px;
        background-color: #333;
    }

    .error-content p.home_url a {
        color: #4a4a4a;
    }

    .error-content .background-icon img {
        padding: 0px 50px;
    }

    .error-content form.woocommerce-product-search {
      width: 50%;
      position: relative;
      margin:auto;
    }


    .error-content form.woocommerce-product-search label.screen-reader-text {
        display: none;
    }

    .error-content form.woocommerce-product-search button {
        display: none;
    }

    .error-content form.woocommerce-product-search input {
        height: 43px;
        margin: 0;
        border-radius: 20px;
        padding-left: 24px;
    }

    form.woocommerce-product-search .search_box {
      z-index: 99999999;
      position: relative;
    }

    .error-content form.woocommerce-product-search .search_box {
        z-index: 2;
    }

    .error-content .categories_wrapper {
      margin: 40px 0px;
    }

    .error-content .categories {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        flex-wrap: wrap;
        padding: 0px 50px;
    }

    .error-content .categories .single_category {
        flex: 1;
        min-width: calc(20% - 20px);
        max-width: calc(20% - 20px);
        margin: 10px;
    }

    .error-content .categories .single_category a {
        font-size: 17px;
        font-weight: 500;
        line-height: 1.41;
        text-align: center;
        text-decoration: none;
        color: #484848;
        border: 1px solid #eee;
        border-radius: 8px;
        box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.08);
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
        padding: 20px 24px 18px 24px;
        height: 88px;
        -webkit-transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
        transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    }

    .error-content .categories .single_category a:hover {
      border-color: #7278ff;
    }

  
    @media screen and (max-width: 780px) {
      .row.error-content {
          flex-direction: column-reverse;
          margin-top: 30px;
      }

      .error-content .background-icon img {
          width: 75%;
          padding: 0;
      }

      .error-content .background-icon {
          display: flex;
          justify-content: center;
      }

      .error-content h1 {
          font-size: 20px;
          margin-top: 32px;
          padding: 0;
          text-align: center;
      }

     .error-content h2 {
          padding: 0;
      }

      .error-content p {
          font-size: 14px;
          padding: 0;
          text-align: center;
          margin: 0;
      }

      .error-content p.home_url {
          justify-content: center;
          margin: 10px;
      }


      .error-content form.woocommerce-product-search {
          display: none;
      }

      .error-content .categories_wrapper {
        margin: 0px;
      }

      .error-content .categories {
          margin: 0;
          padding: 0;
      }

      .error-content .categories .single_category {
          min-width: calc(50% - 10px);
          margin: 5px;
      }
    }

/******* No products found *******/
  .no-products-found_wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #dedede;
    min-height: 400px;
  }

  .no-products-found_wrapper .icon.urm-noresult {
    width: 100px;
    height: 100px;
    margin: 10px 0px;
  }

  .noresult_title {
    margin: 10px 0px;
  }

  .final_list {
    margin: 10px 0px;
  }

/* Absolute Center Spinner */
  .loading {
    position: absolute;
    z-index: 999;
    height: 2em;
    width: 2em;
    overflow: visible;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    display: none;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  /* Transparent Overlay */
  .loading:before {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(204, 204, 204, 0.43);
  }

  /* :not(:required) hides these rules from IE9 and below */
  .loading:not(:required) {
    /* hide "loading..." text */
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
  }

  .loading:not(:required):after {
    content: '';
    display: block;
    font-size: 10px;
    width: 1em;
    height: 1em;
    margin-top: -0.5em;
    -webkit-animation: spinner 1500ms infinite linear;
    -moz-animation: spinner 1500ms infinite linear;
    -ms-animation: spinner 1500ms infinite linear;
    -o-animation: spinner 1500ms infinite linear;
    animation: spinner 1500ms infinite linear;
    border-radius: 0.5em;
    -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
    box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  }

  /* Animation */

  @-webkit-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-moz-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @-o-keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }
  @keyframes spinner {
    0% {
      -webkit-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
    }
    100% {
      -webkit-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -ms-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
    }
  }




@media screen and (max-width: 780px) {
  .site-header .main-menu nav > ul > li.active ul.sub-menu ul.sub-menu {
    display: none;
  }

  .site-header .main-menu nav > ul > li.active ul.sub-menu li.menu-item-has-children .sub-button {
      display: inline-flex;
  }

  .site-header .main-menu nav > ul > li.active ul.sub-menu li.active ul.sub-menu {
    display: flex;
  }

  .site-header .main-menu nav > ul .sub-menu {
    position: static;
  }

  .site-header .main-menu nav > ul > li.active ul.sub-menu li.active ul.sub-menu li .sub-button {
      display: none;
  }
}



/******** MHK Alert ********/

    .mhk_alert {
      display:none;
      width: 100%;
      height: 100%;
      position: fixed;
      top: 0;
      left: 0;
      background-color:rgba(0, 0, 0, 0.2);
      z-index: 200;
    }

    .mhk_alert .outer {
      float: left;
      left: 50%;
      top: 30%;
      position: relative; 
      width:400px;
    }

    @media screen and (max-width: 780px) {
      .mhk_alert .outer  {
        width: 100%;
      }
    }

    .mhk_alert .outer .inner {
      float: left;
      position: relative;
      right: 50%;
      bottom: 50%;
      background: radial-gradient();
    }

    @media screen and (max-width: 780px) {
      .mhk_alert .outer .inner {
        width: 100%;
      }

    }

    .mhk_alert .box {
      background-color: #fff;
      padding: 24px 36px;
      text-align: center;
      color: #3a3a3a;
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
      border-radius: 5px;
    }


    @media screen and (max-width: 780px) {
      .mhk_alert .box {
        margin: 0 5%;
        font-size: 14px;
        line-height: 1.4;
      }
    }

    .mhk_alert a {
      text-align: center;
      display: block;
      margin: 0 auto;
      margin-top: 20px;
      line-height: 36px;
      border-radius: 4rem;
      width: auto;
      padding: 0 2rem;
      border: solid #fff .1rem;
      -moz-background-clip: padding;
      -webkit-background-clip: padding-box;
      background-clip: padding-box;
      color: #fff;
      font-size: 14px;
      font-weight: 500;
      -webkit-transition: .3s;
      transition: .3s;text-decoration: unset;
      background: #333792;
      border-radius: 4px;
      border: 1px solid #333792;
    }

    .mhk_alert a:hover {
        color: #333792;
      font-size: 14px;
      background-color: #fff;
    }

    .mhk_alert .close-modal {
        width: 12rem!important;
    }

    .mhk_alert a.close-modal:first-child {
      background: #fff;
      color: #333792;
    }

    .mhk_alert a.close-modal:first-child:hover {
      background-color: #333792;
      color: #fff;
    }

    .mhk_alert .close-modal.top {
      background: #EEF3FA;
      top: 2%;
      position: absolute;
      left: calc(98% - 30px);
      height: 30px;
      border-radius: 50%;
      border: unset;
      width: 30px!important;
      padding: 0;
      color: #7278FF;
      display: flex;
      align-items: center;
      justify-content: center;
      text-transform: uppercase;
      font-weight: 900;
    }

    @media screen and (max-width: 780px) {
      .mhk_alert .close-modal.top {
        left: 82%;
      }
    }

    .mhk_alert a:hover {
      color: #333792;
      font-size: 14px;
      background-color: #fff;
    }

    .mhk_alert b {
      color: #333792;
      font-size: 32px;
      font-weight: 600;
      text-align: center;
      width: 100%;
      line-height: 32px;
      padding-bottom: 20px;
      display: block;
    }

    .mhk_alert .box .msg li {
      text-align: left; 
      list-style: circle;
    }

    .mhk_alert .box .msg strong {
      color: #fff;
      text-decoration: underline;
    }

    .mhk_alert .box .msg h6 {
      font-size: 18px;
    }

    @media screen and (max-width: 780px) {
      .mhk_alert .box .msg h6 {
        font-size: 16px;
      }
    }
    

/*
* Craftgate 
* Payment Gateway
* Order css for checkout page
* 12 Mar 2021 
**/
    [class="wc_payment_method payment_method_craftgate_gateway"] img {
        float: none !important;
        margin: 1rem 0 0;
        display: block;
        max-height: 32px !important;
    }

    .craftgate-alert {
        text-align: center;
        padding: 1rem;
        color: #a94442;
        background-color: #f2dede;
        border-color: #ebccd1;
    }

    #craftgate_payment_form {
        /*height:calc(100vh + 100px)*/
        height: 858px;
    }

    #craftgate_payment_form iframe {
        border: 0;
        width: 100%;
        height: 100%;
    }


/****** Scroll Navigation ********/
    .urm_navigation {
        width: 45px;
        height: 45px;
        cursor: pointer;
        border: solid 1px #02196b;
        background-color: #f2f3ff;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translatey(-50%);
        right: calc(50% - 620px);
        opacity: .9;
        z-index: 1;
    }
    
    
    @media only screen and (max-width: 780px) {
        .urm_navigation {
            right: 1%;
            visibility: hidden;
        }
    }
    
    .urm_navigation.list_prev {
        left: calc(50% - 620px);
    }
    
    @media only screen and (max-width: 780px) {
        .urm_navigation.list_prev {
            left: 1%;
        }
    }
/* Hide Google Recaptcha */
.grecaptcha-badge { 
    visibility: hidden;
}
