@charset "UTF-8";
/******************************************************************

Stylesheet: Main Stylesheet

Here's where the magic happens. Here is where you import
all of your Sass files so they can compile into one
CSS file.

******************************************************************/
/******************************************************************

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of Sass' great features:
Mixins & Constants.

******************************************************************/
/*********************
TOOLS
*********************/

/*@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800;900&display=swap");*/

.image-replacement {
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

/*********************
COLORS
*********************/
/*********************
TYPOGRAPHY
*********************/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('assets/fonts/font-name.eot');
    	src: url('assets/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('assets/fonts/font-name.woff') format('woff'),
             url('assets/fonts/font-name.ttf') format('truetype'),
             url('assets/fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
span.amp {
    font-family: Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", serif !important;
    font-style: italic;
}

/*********************
CSS3 GRADIENTS.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/**
 * Foundation for Sites by ZURB
 * Version 6.3.0
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
.slide-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

.body.single-product.product__footer {
    margin-bottom: 38px;
    /* padding-left: 30px; */
}

.slide-in-down.mui-enter.mui-enter-active {
    transform: translateY(0);
}

.slide-in-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(-100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

.slide-in-left.mui-enter.mui-enter-active {
    transform: translateX(0);
}

.slide-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

.slide-in-up.mui-enter.mui-enter-active {
    transform: translateY(0);
}

.slide-in-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(100%);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

.slide-in-right.mui-enter.mui-enter-active {
    transform: translateX(0);
}

.slide-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

.slide-out-down.mui-leave.mui-leave-active {
    transform: translateY(100%);
}

.slide-out-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

.slide-out-right.mui-leave.mui-leave-active {
    transform: translateX(100%);
}

.slide-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateY(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

.slide-out-up.mui-leave.mui-leave-active {
    transform: translateY(-100%);
}

.slide-out-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: translateX(0);
    transition-property: transform, opacity;
    backface-visibility: hidden;
}

.slide-out-left.mui-leave.mui-leave-active {
    transform: translateX(-100%);
}

.fade-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 0;
    transition-property: opacity;
}

.fade-in.mui-enter.mui-enter-active {
    opacity: 1;
}

.fade-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    opacity: 1;
    transition-property: opacity;
}

.fade-out.mui-leave.mui-leave-active {
    opacity: 0;
}

.hinge-in-from-top.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 0;
}

.hinge-in-from-top.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1;
}

.hinge-in-from-right.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 0;
}

.hinge-in-from-right.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1;
}

.hinge-in-from-bottom.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(90deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 0;
}

.hinge-in-from-bottom.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1;
}

.hinge-in-from-left.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(90deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 0;
}

.hinge-in-from-left.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1;
}

.hinge-in-from-middle-x.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateX(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0;
}

.hinge-in-from-middle-x.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1;
}

.hinge-in-from-middle-y.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotateY(-90deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 0;
}

.hinge-in-from-middle-y.mui-enter.mui-enter-active {
    transform: perspective(2000px) rotate(0deg);
    opacity: 1;
}

.hinge-out-from-top.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: top;
    transition-property: transform, opacity;
    opacity: 1;
}

.hinge-out-from-top.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
}

.hinge-out-from-right.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: right;
    transition-property: transform, opacity;
    opacity: 1;
}

.hinge-out-from-right.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0;
}

.hinge-out-from-bottom.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: bottom;
    transition-property: transform, opacity;
    opacity: 1;
}

.hinge-out-from-bottom.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(90deg);
    opacity: 0;
}

.hinge-out-from-left.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: left;
    transition-property: transform, opacity;
    opacity: 1;
}

.hinge-out-from-left.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(90deg);
    opacity: 0;
}

.hinge-out-from-middle-x.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1;
}

.hinge-out-from-middle-x.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateX(-90deg);
    opacity: 0;
}

.hinge-out-from-middle-y.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: perspective(2000px) rotate(0deg);
    transform-origin: center;
    transition-property: transform, opacity;
    opacity: 1;
}

.hinge-out-from-middle-y.mui-leave.mui-leave-active {
    transform: perspective(2000px) rotateY(-90deg);
    opacity: 0;
}

.scale-in-up.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(0.5);
    transition-property: transform, opacity;
    opacity: 0;
}

.scale-in-up.mui-enter.mui-enter-active {
    transform: scale(1);
    opacity: 1;
}

.scale-in-down.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1.5);
    transition-property: transform, opacity;
    opacity: 0;
}

.scale-in-down.mui-enter.mui-enter-active {
    transform: scale(1);
    opacity: 1;
}

.scale-out-up.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1;
}

.scale-out-up.mui-leave.mui-leave-active {
    transform: scale(1.5);
    opacity: 0;
}

.scale-out-down.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: scale(1);
    transition-property: transform, opacity;
    opacity: 1;
}

.scale-out-down.mui-leave.mui-leave-active {
    transform: scale(0.5);
    opacity: 0;
}

.spin-in.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(-0.75turn);
    transition-property: transform, opacity;
    opacity: 0;
}

.spin-in.mui-enter.mui-enter-active {
    transform: rotate(0);
    opacity: 1;
}

.spin-out.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1;
}

.spin-out.mui-leave.mui-leave-active {
    transform: rotate(0.75turn);
    opacity: 0;
}

.spin-in-ccw.mui-enter {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0.75turn);
    transition-property: transform, opacity;
    opacity: 0;
}

.spin-in-ccw.mui-enter.mui-enter-active {
    transform: rotate(0);
    opacity: 1;
}

.spin-out-ccw.mui-leave {
    transition-duration: 500ms;
    transition-timing-function: linear;
    transform: rotate(0);
    transition-property: transform, opacity;
    opacity: 1;
}

.spin-out-ccw.mui-leave.mui-leave-active {
    transform: rotate(-0.75turn);
    opacity: 0;
}

.slow {
    transition-duration: 750ms !important;
}

.fast {
    transition-duration: 250ms !important;
}

.linear {
    transition-timing-function: linear !important;
}

.ease {
    transition-timing-function: ease !important;
}

.ease-in {
    transition-timing-function: ease-in !important;
}

.ease-out {
    transition-timing-function: ease-out !important;
}

.ease-in-out {
    transition-timing-function: ease-in-out !important;
}

.bounce-in {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
    transition-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
    transition-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
    transition-delay: 300ms !important;
}

.long-delay {
    transition-delay: 700ms !important;
}

.shake {
    animation-name: shake-7;
}

@keyframes shake-7 {
    0%, 10%, 20%, 30%, 40%, 50%, 60%, 70%, 80%, 90% {
        transform: translateX(7%);
    }
    5%, 15%, 25%, 35%, 45%, 55%, 65%, 75%, 85%, 95% {
        transform: translateX(-7%);
    }
}

.spin-cw {
    animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(-1turn);
    }
    100% {
        transform: rotate(0);
    }
}

.spin-ccw {
    animation-name: spin-cw-1turn;
}

@keyframes spin-cw-1turn {
    0% {
        transform: rotate(0);
    }
    100% {
        transform: rotate(1turn);
    }
}

.wiggle {
    animation-name: wiggle-7deg;
}

@keyframes wiggle-7deg {
    40%, 50%, 60% {
        transform: rotate(7deg);
    }
    35%, 45%, 55%, 65% {
        transform: rotate(-7deg);
    }
    0%, 30%, 70%, 100% {
        transform: rotate(0);
    }
}

.shake,
.spin-cw,
.spin-ccw,
.wiggle {
    animation-duration: 500ms;
}

.infinite {
    animation-iteration-count: infinite;
}

.slow {
    animation-duration: 750ms !important;
}

.fast {
    animation-duration: 250ms !important;
}

.linear {
    animation-timing-function: linear !important;
}

.ease {
    animation-timing-function: ease !important;
}

.ease-in {
    animation-timing-function: ease-in !important;
}

.ease-out {
    animation-timing-function: ease-out !important;
}

.ease-in-out {
    animation-timing-function: ease-in-out !important;
}

.bounce-in {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.24, 1.245) !important;
}

.bounce-out {
    animation-timing-function: cubic-bezier(0.485, 0.155, 0.515, 0.845) !important;
}

.bounce-in-out {
    animation-timing-function: cubic-bezier(0.76, -0.245, 0.24, 1.245) !important;
}

.short-delay {
    animation-delay: 300ms !important;
}

.long-delay {
    animation-delay: 700ms !important;
}

/*! normalize-scss | MIT/GPLv2 License | bit.ly/normalize-scss */
/* Document
   ========================================================================== */
/**
 * 1. Change the default font family in all browsers (opinionated).
 * 2. Correct the line height in all browsers.
 * 3. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
    font-family: sans-serif; /* 1 */
    line-height: 1.15; /* 2 */
    -ms-text-size-adjust: 100%; /* 3 */
    -webkit-text-size-adjust: 100%; /* 3 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
    margin: 0;
}

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
    display: block;
}

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

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
figcaption,
figure {
    display: block;
}

/**
 * Add the correct margin in IE 8.
 */
figure {
    margin: 1em 40px;
}

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

/**
 * Add the correct display in IE.
 */
main {
    display: block;
}

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

/* Links
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
    background-color: transparent; /* 1 */
    -webkit-text-decoration-skip: objects; /* 2 */
}

/**
 * Remove the outline on focused links when they are also active or hovered
 * in all browsers (opinionated).
 */
a:active,
a:hover {
    outline-width: 0;
}

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

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
    font-weight: inherit;
}

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

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

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
    font-style: italic;
}

/**
 * Add the correct background and color in IE 9-.
 */
mark {
    background-color: #ff0;
    color: #000;
}

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

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

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
    display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
    display: none;
    height: 0;
}

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

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
    overflow: hidden;
}

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

/**
 * Show the overflow in IE.
 */
button {
    overflow: visible;
}

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

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type=button],
[type=reset],
[type=submit] {
    -webkit-appearance: button; /* 2 */
}

button,
[type=button],
[type=reset],
[type=submit] {
    /**
   * Remove the inner border and padding in Firefox.
   */
    /**
   * Restore the focus styles unset by the previous rule.
   */
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

/**
 * Show the overflow in Edge.
 */
input {
    overflow: visible;
}

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

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

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
    -webkit-appearance: textfield; /* 1 */
    outline-offset: -2px; /* 2 */
    /**
   * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
   */
}

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

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

/**
 * Change the border, margin, and padding in all browsers (opinionated).
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
}

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

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
    display: inline-block; /* 1 */
    vertical-align: baseline; /* 2 */
}

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

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

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

/*
 * Add the correct display in IE 9-.
 */
menu {
    display: block;
}

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
    display: inline-block;
}

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

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

.foundation-mq {
    font-family: "small=0em&medium=40em&large=80em&xlarge=75em&xxlarge=90em";
}

html {
    box-sizing: border-box;
    font-size: 100%;
}

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

body {
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: normal;
    line-height: 1.5;
    color: #27274d;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}

textarea {
    height: auto;
    min-height: 50px;
    border-radius: 0;
}

select {
    width: 100%;
    border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
    max-width: none !important;
}

button {
    padding: 0;
    appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1;
}

[data-whatinput=mouse] button {
    outline: 0;
}

.is-visible {
    display: block !important;
}

.is-hidden {
    display: none !important;
}

.row {
    max-width: 88.75rem;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-flow: row wrap;
}

.row .row {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

@media print, screen and (min-width: 40em) {
    .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem;
    }
}

@media print, screen and (min-width: 80em) {
    .row .row {
        margin-right: -0.9375rem;
        margin-left: -0.9375rem;
    }
}

.row.expanded {
    max-width: none;
}

.row.collapse > .column, .row.collapse > .columns {
    padding-right: 0;
    padding-left: 0;
}

.row.is-collapse-child, .row.collapse > .column > .row, .row.collapse > .columns > .row {
    margin-right: 0;
    margin-left: 0;
}

.column, .columns {
    flex: 1 1 0;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
    min-width: initial;
}

@media print, screen and (min-width: 40em) {
    .column, .columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

.column.row.row, .row.row.columns {
    display: flex;
}

.row .column.row.row, .row .row.row.columns {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.flex-container {
    display: flex;
}

.flex-child-auto {
    flex: 1 1 auto;
}

.flex-child-grow {
    flex: 1 0 auto;
}

.flex-child-shrink {
    flex: 0 1 auto;
}

.flex-dir-row {
    flex-direction: row;
}

.flex-dir-row-reverse {
    flex-direction: row-reverse;
}

.flex-dir-column {
    flex-direction: column;
}

.flex-dir-column-reverse {
    flex-direction: column-reverse;
}

.small-1 {
    flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
}

.small-offset-0 {
    margin-left: 0;
}

.small-2 {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.small-offset-1 {
    margin-left: 8.3333333333%;
}

.small-3 {
    flex: 0 0 25%;
    max-width: 25%;
}

.small-offset-2 {
    margin-left: 16.6666666667%;
}

.small-4 {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

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

.small-5 {
    flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
}

.small-offset-4 {
    margin-left: 33.3333333333%;
}

.small-6 {
    flex: 0 0 50%;
    max-width: 50%;
}

.small-offset-5 {
    margin-left: 41.6666666667%;
}

.small-7 {
    flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
}

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

.small-8 {
    flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
}

.small-offset-7 {
    margin-left: 58.3333333333%;
}

.small-9 {
    flex: 0 0 75%;
    max-width: 75%;
}

.small-offset-8 {
    margin-left: 66.6666666667%;
}

.small-10 {
    flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
}

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

.small-11 {
    flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
}

.small-offset-10 {
    margin-left: 83.3333333333%;
}

.small-12 {
    flex: 0 0 100%;
    max-width: 100%;
}

.small-offset-11 {
    margin-left: 91.6666666667%;
}

.small-order-1 {
    order: 1;
}

.small-order-2 {
    order: 2;
}

.small-order-3 {
    order: 3;
}

.small-order-4 {
    order: 4;
}

.small-order-5 {
    order: 5;
}

.small-order-6 {
    order: 6;
}

.small-up-1 {
    flex-wrap: wrap;
}

.small-up-1 > .column, .small-up-1 > .columns {
    flex: 0 0 100%;
    max-width: 100%;
}

.small-up-2 {
    flex-wrap: wrap;
}

.small-up-2 > .column, .small-up-2 > .columns {
    flex: 0 0 50%;
    max-width: 50%;
}

.small-up-3 {
    flex-wrap: wrap;
}

.small-up-3 > .column, .small-up-3 > .columns {
    flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
}

.small-up-4 {
    flex-wrap: wrap;
}

.small-up-4 > .column, .small-up-4 > .columns {
    flex: 0 0 25%;
    max-width: 25%;
}

.small-up-5 {
    flex-wrap: wrap;
}

.small-up-5 > .column, .small-up-5 > .columns {
    flex: 0 0 20%;
    max-width: 20%;
}

.small-up-6 {
    flex-wrap: wrap;
}

.small-up-6 > .column, .small-up-6 > .columns {
    flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
}

.small-up-7 {
    flex-wrap: wrap;
}

.small-up-7 > .column, .small-up-7 > .columns {
    flex: 0 0 14.2857142857%;
    max-width: 14.2857142857%;
}

.small-up-8 {
    flex-wrap: wrap;
}

.small-up-8 > .column, .small-up-8 > .columns {
    flex: 0 0 12.5%;
    max-width: 12.5%;
}

.small-collapse > .column, .small-collapse > .columns {
    padding-right: 0;
    padding-left: 0;
}

.small-uncollapse > .column, .small-uncollapse > .columns {
    padding-right: 0.625rem;
    padding-left: 0.625rem;
}

@media print, screen and (min-width: 40em) {
    .medium-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .medium-offset-0 {
        margin-left: 0;
    }

    .medium-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .medium-offset-1 {
        margin-left: 8.3333333333%;
    }

    .medium-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .medium-offset-2 {
        margin-left: 16.6666666667%;
    }

    .medium-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

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

    .medium-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .medium-offset-4 {
        margin-left: 33.3333333333%;
    }

    .medium-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .medium-offset-5 {
        margin-left: 41.6666666667%;
    }

    .medium-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

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

    .medium-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .medium-offset-7 {
        margin-left: 58.3333333333%;
    }

    .medium-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .medium-offset-8 {
        margin-left: 66.6666666667%;
    }

    .medium-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

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

    .medium-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .medium-offset-10 {
        margin-left: 83.3333333333%;
    }

    .medium-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .medium-offset-11 {
        margin-left: 91.6666666667%;
    }

    .medium-order-1 {
        order: 1;
    }

    .medium-order-2 {
        order: 2;
    }

    .medium-order-3 {
        order: 3;
    }

    .medium-order-4 {
        order: 4;
    }

    .medium-order-5 {
        order: 5;
    }

    .medium-order-6 {
        order: 6;
    }

    .medium-up-1 {
        flex-wrap: wrap;
    }

    .medium-up-1 > .column, .medium-up-1 > .columns {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .medium-up-2 {
        flex-wrap: wrap;
    }

    .medium-up-2 > .column, .medium-up-2 > .columns {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .medium-up-3 {
        flex-wrap: wrap;
    }

    .medium-up-3 > .column, .medium-up-3 > .columns {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .medium-up-4 {
        flex-wrap: wrap;
    }

    .medium-up-4 > .column, .medium-up-4 > .columns {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .medium-up-5 {
        flex-wrap: wrap;
    }

    .medium-up-5 > .column, .medium-up-5 > .columns {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .medium-up-6 {
        flex-wrap: wrap;
    }

    .medium-up-6 > .column, .medium-up-6 > .columns {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .medium-up-7 {
        flex-wrap: wrap;
    }

    .medium-up-7 > .column, .medium-up-7 > .columns {
        flex: 0 0 14.2857142857%;
        max-width: 14.2857142857%;
    }

    .medium-up-8 {
        flex-wrap: wrap;
    }

    .medium-up-8 > .column, .medium-up-8 > .columns {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}

@media print, screen and (min-width: 40em) and (min-width: 40em) {
    .medium-expand {
        flex: 1 1 0;
    }
}

@media print, screen and (min-width: 40em) {
    .medium-flex-dir-row {
        flex-direction: row;
    }
}

@media print, screen and (min-width: 40em) {
    .medium-flex-dir-row-reverse {
        flex-direction: row-reverse;
    }
}

@media print, screen and (min-width: 40em) {
    .medium-flex-dir-column {
        flex-direction: column;
    }
}

@media print, screen and (min-width: 40em) {
    .medium-flex-dir-column-reverse {
        flex-direction: column-reverse;
    }
}

@media print, screen and (min-width: 40em) {
    .medium-flex-child-auto {
        flex: 1 1 auto;
    }
}

@media print, screen and (min-width: 40em) {
    .medium-flex-child-grow {
        flex: 1 0 auto;
    }
}

@media print, screen and (min-width: 40em) {
    .medium-flex-child-shrink {
        flex: 0 1 auto;
    }
}

.row.medium-unstack > .column, .row.medium-unstack > .columns {
    flex: 0 0 100%;
}

@media print, screen and (min-width: 40em) {
    .row.medium-unstack > .column, .row.medium-unstack > .columns {
        flex: 1 1 0;
    }
}

@media print, screen and (min-width: 40em) {
    .medium-collapse > .column, .medium-collapse > .columns {
        padding-right: 0;
        padding-left: 0;
    }
}

@media print, screen and (min-width: 40em) {
    .medium-uncollapse > .column, .medium-uncollapse > .columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

@media print, screen and (min-width: 80em) {
    .large-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%;
    }

    .large-offset-0 {
        margin-left: 0;
    }

    .large-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .large-offset-1 {
        margin-left: 8.3333333333%;
    }

    .large-3 {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .large-offset-2 {
        margin-left: 16.6666666667%;
    }

    .large-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

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

    .large-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%;
    }

    .large-offset-4 {
        margin-left: 33.3333333333%;
    }

    .large-6 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .large-offset-5 {
        margin-left: 41.6666666667%;
    }

    .large-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%;
    }

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

    .large-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%;
    }

    .large-offset-7 {
        margin-left: 58.3333333333%;
    }

    .large-9 {
        flex: 0 0 75%;
        max-width: 75%;
    }

    .large-offset-8 {
        margin-left: 66.6666666667%;
    }

    .large-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%;
    }

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

    .large-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%;
    }

    .large-offset-10 {
        margin-left: 83.3333333333%;
    }

    .large-12 {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .large-offset-11 {
        margin-left: 91.6666666667%;
    }

    .large-order-1 {
        order: 1;
    }

    .large-order-2 {
        order: 2;
    }

    .large-order-3 {
        order: 3;
    }

    .large-order-4 {
        order: 4;
    }

    .large-order-5 {
        order: 5;
    }

    .large-order-6 {
        order: 6;
    }

    .large-up-1 {
        flex-wrap: wrap;
    }

    .large-up-1 > .column, .large-up-1 > .columns {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .large-up-2 {
        flex-wrap: wrap;
    }

    .large-up-2 > .column, .large-up-2 > .columns {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .large-up-3 {
        flex-wrap: wrap;
    }

    .large-up-3 > .column, .large-up-3 > .columns {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%;
    }

    .large-up-4 {
        flex-wrap: wrap;
    }

    .large-up-4 > .column, .large-up-4 > .columns {
        flex: 0 0 25%;
        max-width: 25%;
    }

    .large-up-5 {
        flex-wrap: wrap;
    }

    .large-up-5 > .column, .large-up-5 > .columns {
        flex: 0 0 20%;
        max-width: 20%;
    }

    .large-up-6 {
        flex-wrap: wrap;
    }

    .large-up-6 > .column, .large-up-6 > .columns {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%;
    }

    .large-up-7 {
        flex-wrap: wrap;
    }

    .large-up-7 > .column, .large-up-7 > .columns {
        flex: 0 0 14.2857142857%;
        max-width: 14.2857142857%;
    }

    .large-up-8 {
        flex-wrap: wrap;
    }

    .large-up-8 > .column, .large-up-8 > .columns {
        flex: 0 0 12.5%;
        max-width: 12.5%;
    }
}

@media print, screen and (min-width: 80em) and (min-width: 80em) {
    .large-expand {
        flex: 1 1 0;
    }
}

@media print, screen and (min-width: 80em) {
    .large-flex-dir-row {
        flex-direction: row;
    }
}

@media print, screen and (min-width: 80em) {
    .large-flex-dir-row-reverse {
        flex-direction: row-reverse;
    }
}

@media print, screen and (min-width: 80em) {
    .large-flex-dir-column {
        flex-direction: column;
    }
}

@media print, screen and (min-width: 80em) {
    .large-flex-dir-column-reverse {
        flex-direction: column-reverse;
    }
}

@media print, screen and (min-width: 80em) {
    .large-flex-child-auto {
        flex: 1 1 auto;
    }
}

@media print, screen and (min-width: 80em) {
    .large-flex-child-grow {
        flex: 1 0 auto;
    }
}

@media print, screen and (min-width: 80em) {
    .large-flex-child-shrink {
        flex: 0 1 auto;
    }
}

.row.large-unstack > .column, .row.large-unstack > .columns {
    flex: 0 0 100%;
}

@media print, screen and (min-width: 80em) {
    .row.large-unstack > .column, .row.large-unstack > .columns {
        flex: 1 1 0px;
    }
}

@media print, screen and (min-width: 80em) {
    .large-collapse > .column, .large-collapse > .columns {
        padding-right: 0;
        padding-left: 0;
    }
}

@media print, screen and (min-width: 80em) {
    .large-uncollapse > .column, .large-uncollapse > .columns {
        padding-right: 0.9375rem;
        padding-left: 0.9375rem;
    }
}

.shrink {
    flex: 0 0 auto;
    max-width: 100%;
}

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

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

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

.align-spaced {
    justify-content: space-around;
}

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

.align-self-top {
    align-self: flex-start;
}

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

.align-self-bottom {
    align-self: flex-end;
}

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

.align-self-middle {
    align-self: center;
}

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

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

.small-order-1 {
    order: 1;
}

.small-order-2 {
    order: 2;
}

.small-order-3 {
    order: 3;
}

.small-order-4 {
    order: 4;
}

.small-order-5 {
    order: 5;
}

.small-order-6 {
    order: 6;
}

@media print, screen and (min-width: 40em) {
    .medium-order-1 {
        order: 1;
    }

    .medium-order-2 {
        order: 2;
    }

    .medium-order-3 {
        order: 3;
    }

    .medium-order-4 {
        order: 4;
    }

    .medium-order-5 {
        order: 5;
    }

    .medium-order-6 {
        order: 6;
    }
}

@media print, screen and (min-width: 80em) {
    .large-order-1 {
        order: 1;
    }

    .large-order-2 {
        order: 2;
    }

    .large-order-3 {
        order: 3;
    }

    .large-order-4 {
        order: 4;
    }

    .large-order-5 {
        order: 5;
    }

    .large-order-6 {
        order: 6;
    }
}

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

p {
    margin-bottom: 1rem;
    font-size: inherit;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

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

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Montserrat", sans-serif;
    font-style: normal;
    font-weight: normal;
    color: inherit;
    text-rendering: optimizeLegibility;
}

h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
    line-height: 0;
    color: #ececf0;
}

h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h2 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h3 {
    font-size: 1.1875rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h4 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h5 {
    font-size: 1.0625rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h6 {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 40em) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.9375rem;
    }

    h4 {
        font-size: 1.5625rem;
    }

    h5 {
        font-size: 1.25rem;
    }

    h6 {
        font-size: 1rem;
    }
}

a {
    line-height: inherit;
    color: #1779ba;
    text-decoration: none;
    cursor: pointer;
}

a:hover, a:focus {
    color: #1468a0;
}

a img {
    border: 0;
}

hr {
    clear: both;
    max-width: 88.75rem;
    height: 0;
    margin: 1.25rem auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #ececf0;
    border-left: 0;
}

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

li {
    font-size: inherit;
}

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

ol {
    margin-left: 1.25rem;
}

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

dl {
    margin-bottom: 1rem;
}

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

blockquote {
    margin: 0 0 1rem;
    padding: 0.5625rem 1.25rem 0 1.1875rem;
    border-left: 1px solid #ececf0;
}

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

cite {
    display: block;
    font-size: 0.8125rem;
    color: #363636;
}

cite:before {
    content: "— ";
}

abbr {
    border-bottom: 1px dotted #000;
    color: #27274d;
    cursor: help;
}

figure {
    margin: 0;
}

code {
    padding: 0.125rem 0.3125rem 0.0625rem;
    border: 1px solid #ececf0;
    background-color: #a2a2b3;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: normal;
    color: #000;
}

kbd {
    margin: 0;
    padding: 0.125rem 0.25rem 0;
    background-color: #a2a2b3;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    color: #000;
}

.subheader {
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
    line-height: 1.4;
    color: #363636;
}

.lead {
    font-size: 125%;
    line-height: 1.6;
}

.stat {
    font-size: 2.5rem;
    line-height: 1;
}

p + .stat {
    margin-top: -1rem;
}

.no-bullet {
    margin-left: 0;
    list-style: none;
}

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

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

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

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

@media print, screen and (min-width: 40em) {
    .medium-text-left {
        text-align: left;
    }

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

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

    .medium-text-justify {
        text-align: justify;
    }
}

@media print, screen and (min-width: 80em) {
    .large-text-left {
        text-align: left;
    }

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

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

    .large-text-justify {
        text-align: justify;
    }
}

.show-for-print {
    display: none !important;
}

@media print {
    * {
        background: transparent !important;
        box-shadow: none !important;
        color: black !important;
        text-shadow: none !important;
    }

    .show-for-print {
        display: block !important;
    }

    .hide-for-print {
        display: none !important;
    }

    table.show-for-print {
        display: table !important;
    }

    thead.show-for-print {
        display: table-header-group !important;
    }

    tbody.show-for-print {
        display: table-row-group !important;
    }

    tr.show-for-print {
        display: table-row !important;
    }

    td.show-for-print {
        display: table-cell !important;
    }

    th.show-for-print {
        display: table-cell !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

    a[href]:after {
        content: " (" attr(href) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    pre,
    blockquote {
        border: 1px solid #363636;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}

[type=text], [type=password], [type=date], [type=datetime], [type=datetime-local], [type=month], [type=week], [type=email], [type=number], [type=search], [type=tel], [type=time], [type=url], [type=color],
textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    border: 1px solid #ececf0;
    border-radius: 0;
    background-color: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    color: #000;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    appearance: none;
}

[type=text]:focus, [type=password]:focus, [type=date]:focus, [type=datetime]:focus, [type=datetime-local]:focus, [type=month]:focus, [type=week]:focus, [type=email]:focus, [type=number]:focus, [type=search]:focus, [type=tel]:focus, [type=time]:focus, [type=url]:focus, [type=color]:focus,
textarea:focus {
    outline: none;
    border: 1px solid #363636;
    background-color: #fff;
    box-shadow: 0 0 5px #ececf0;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

textarea {
    max-width: 100%;
}

textarea[rows] {
    height: auto;
}

input::placeholder,
textarea::placeholder {
    color: #ececf0;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
    background-color: #a2a2b3;
    cursor: not-allowed;
}

[type=submit],
[type=button] {
    appearance: none;
    border-radius: 0;
}

input[type=search] {
    box-sizing: border-box;
}

[type=file],
[type=checkbox],
[type=radio] {
    margin: 0 0 1rem;
}

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

[type=checkbox] + label[for],
[type=radio] + label[for] {
    cursor: pointer;
}

label > [type=checkbox],
label > [type=radio] {
    margin-right: 0.5rem;
    margin-bottom: 0;
}

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

label {
    display: block;
    margin: 0;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.8;
    color: #000;
}

label.middle {
    margin: 0 0 1rem;
    padding: 0.5625rem 0;
}

.help-text {
    margin-top: -0.5rem;
    font-size: 0.8125rem;
    font-style: italic;
    color: #000;
}

.input-group {
    display: table;
    width: 100%;
    margin-bottom: 1rem;
}

.input-group > :first-child {
    border-radius: 0 0 0 0;
}

.input-group > :last-child > * {
    border-radius: 0 0 0 0;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label, .input-group-button, .input-group-field, .input-group-label {
    margin: 0;
    white-space: nowrap;
    display: table-cell;
    vertical-align: middle;
}

.input-group-label {
    padding: 0 1rem;
    border: 1px solid #ececf0;
    background: #a2a2b3;
    color: #000;
    text-align: center;
    white-space: nowrap;
    width: 1%;
    height: 100%;
}

.input-group-label:first-child {
    border-right: 0;
}

.input-group-label:last-child {
    border-left: 0;
}

.input-group-field {
    border-radius: 0;
    height: 2.5rem;
}

.input-group-button {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    width: 1%;
    height: 100%;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
    height: 2.5rem;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem;
}

.input-group .input-group-button {
    display: table-cell;
}

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

legend {
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.fieldset {
    margin: 1.125rem 0;
    padding: 1.25rem;
    border: 1px solid #ececf0;
}

.fieldset legend {
    margin: 0;
    margin-left: -0.1875rem;
    padding: 0 0.1875rem;
    background: #fff;
}

select {
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    appearance: none;
    border: 1px solid #ececf0;
    border-radius: 0;
    background-color: #fff;
    font-family: inherit;
    font-size: 1rem;
    line-height: normal;
    color: #000;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%2854, 54, 54%29'></polygon></svg>");
    background-origin: content-box;
    background-position: right -1rem center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    padding-right: 1.5rem;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

@media screen and (min-width: 0\0
) {
    select {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
    }
}

select:focus {
    outline: none;
    border: 1px solid #363636;
    background-color: #fff;
    box-shadow: 0 0 5px #ececf0;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
}

select:disabled {
    background-color: #a2a2b3;
    cursor: not-allowed;
}

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

select[multiple] {
    height: auto;
    background-image: none;
}

.is-invalid-input:not(:focus) {
    border-color: #cc4b37;
    background-color: #faedeb;
}

.is-invalid-input:not(:focus)::placeholder {
    color: #cc4b37;
}

.is-invalid-label {
    color: #cc4b37;
}

.form-error {
    display: none;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: #cc4b37;
}

.form-error.is-visible {
    display: block;
}

.button, .button--gray, .button--white, .button--outline {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    padding: 0.85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 0.9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #1779ba;
    color: #fff;
}

[data-whatinput=mouse] .button, [data-whatinput=mouse] .button--gray, [data-whatinput=mouse] .button--white, [data-whatinput=mouse] .button--outline {
    outline: 0;
}

.button:hover, .button--gray:hover, .button--white:hover, .button--outline:hover, .button:focus, .button--gray:focus, .button--white:focus, .button--outline:focus {
    background-color: #14679e;
    color: #fff;
}

.button.tiny, .tiny.button--gray, .tiny.button--white, .tiny.button--outline {
    font-size: 0.6rem;
}

.button.small, .small.button--gray, .small.button--white, .small.button--outline {
    font-size: 0.75rem;
}

.button.large, .large.button--gray, .large.button--white, .large.button--outline {
    font-size: 1.25rem;
}

.button.expanded, .expanded.button--gray, .expanded.button--white, .expanded.button--outline {
    display: block;
    width: 100%;
    margin-right: 0;
    margin-left: 0;
}

.button.primary, .primary.button--gray, .primary.button--white, .primary.button--outline {
    background-color: #1779ba;
    color: #000;
}

.button.primary:hover, .primary.button--gray:hover, .primary.button--white:hover, .primary.button--outline:hover, .button.primary:focus, .primary.button--gray:focus, .primary.button--white:focus, .primary.button--outline:focus {
    background-color: #126195;
    color: #000;
}

.button.secondary, .secondary.button--gray, .secondary.button--white, .secondary.button--outline {
    background-color: #767676;
    color: #000;
}

.button.secondary:hover, .secondary.button--gray:hover, .secondary.button--white:hover, .secondary.button--outline:hover, .button.secondary:focus, .secondary.button--gray:focus, .secondary.button--white:focus, .secondary.button--outline:focus {
    background-color: #5e5e5e;
    color: #000;
}

.button.success, .success.button--gray, .success.button--white, .success.button--outline {
    background-color: #3adb76;
    color: #000;
}

.button.success:hover, .success.button--gray:hover, .success.button--white:hover, .success.button--outline:hover, .button.success:focus, .success.button--gray:focus, .success.button--white:focus, .success.button--outline:focus {
    background-color: #22bb5b;
    color: #000;
}

.button.warning, .warning.button--gray, .warning.button--white, .warning.button--outline {
    background-color: #ffae00;
    color: #000;
}

.button.warning:hover, .warning.button--gray:hover, .warning.button--white:hover, .warning.button--outline:hover, .button.warning:focus, .warning.button--gray:focus, .warning.button--white:focus, .warning.button--outline:focus {
    background-color: #cc8b00;
    color: #000;
}

.button.alert, .alert.button--gray, .alert.button--white, .alert.button--outline {
    background-color: #cc4b37;
    color: #000;
}

.button.alert:hover, .alert.button--gray:hover, .alert.button--white:hover, .alert.button--outline:hover, .button.alert:focus, .alert.button--gray:focus, .alert.button--white:focus, .alert.button--outline:focus {
    background-color: #a53b2a;
    color: #000;
}

.button.hollow, .hollow.button--gray, .hollow.button--white, .hollow.button--outline {
    border: 1px solid #1779ba;
    color: #1779ba;
}

.button.hollow, .hollow.button--gray, .hollow.button--white, .hollow.button--outline, .button.hollow:hover, .button.hollow:focus {
    background-color: transparent;
}

.button.hollow:hover, .hollow.button--gray:hover, .hollow.button--white:hover, .hollow.button--outline:hover, .button.hollow:focus, .hollow.button--gray:focus, .hollow.button--white:focus, .hollow.button--outline:focus {
    border-color: #0c3d5d;
    color: #0c3d5d;
}

.button.hollow.primary, .hollow.primary.button--gray, .hollow.primary.button--white, .hollow.primary.button--outline {
    border: 1px solid #1779ba;
    color: #1779ba;
}

.button.hollow.primary:hover, .hollow.primary.button--gray:hover, .hollow.primary.button--white:hover, .hollow.primary.button--outline:hover, .button.hollow.primary:focus, .hollow.primary.button--gray:focus, .hollow.primary.button--white:focus, .hollow.primary.button--outline:focus {
    border-color: #0c3d5d;
    color: #0c3d5d;
}

.button.hollow.secondary, .hollow.secondary.button--gray, .hollow.secondary.button--white, .hollow.secondary.button--outline {
    border: 1px solid #767676;
    color: #767676;
}

.button.hollow.secondary:hover, .hollow.secondary.button--gray:hover, .hollow.secondary.button--white:hover, .hollow.secondary.button--outline:hover, .button.hollow.secondary:focus, .hollow.secondary.button--gray:focus, .hollow.secondary.button--white:focus, .hollow.secondary.button--outline:focus {
    border-color: #3b3b3b;
    color: #3b3b3b;
}

.button.hollow.success, .hollow.success.button--gray, .hollow.success.button--white, .hollow.success.button--outline {
    border: 1px solid #3adb76;
    color: #3adb76;
}

.button.hollow.success:hover, .hollow.success.button--gray:hover, .hollow.success.button--white:hover, .hollow.success.button--outline:hover, .button.hollow.success:focus, .hollow.success.button--gray:focus, .hollow.success.button--white:focus, .hollow.success.button--outline:focus {
    border-color: #157539;
    color: #157539;
}

.button.hollow.warning, .hollow.warning.button--gray, .hollow.warning.button--white, .hollow.warning.button--outline {
    border: 1px solid #ffae00;
    color: #ffae00;
}

.button.hollow.warning:hover, .hollow.warning.button--gray:hover, .hollow.warning.button--white:hover, .hollow.warning.button--outline:hover, .button.hollow.warning:focus, .hollow.warning.button--gray:focus, .hollow.warning.button--white:focus, .hollow.warning.button--outline:focus {
    border-color: #805700;
    color: #805700;
}

.button.hollow.alert, .hollow.alert.button--gray, .hollow.alert.button--white, .hollow.alert.button--outline {
    border: 1px solid #cc4b37;
    color: #cc4b37;
}

.button.hollow.alert:hover, .hollow.alert.button--gray:hover, .hollow.alert.button--white:hover, .hollow.alert.button--outline:hover, .button.hollow.alert:focus, .hollow.alert.button--gray:focus, .hollow.alert.button--white:focus, .hollow.alert.button--outline:focus {
    border-color: #67251a;
    color: #67251a;
}

.button.disabled, .disabled.button--gray, .disabled.button--white, .disabled.button--outline, .button[disabled], [disabled].button--gray, [disabled].button--white, [disabled].button--outline {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled:hover, .disabled.button--gray:hover, .disabled.button--white:hover, .disabled.button--outline:hover, .button.disabled:focus, .disabled.button--gray:focus, .disabled.button--white:focus, .disabled.button--outline:focus, .button[disabled]:hover, [disabled].button--gray:hover, [disabled].button--white:hover, [disabled].button--outline:hover, .button[disabled]:focus, [disabled].button--gray:focus, [disabled].button--white:focus, [disabled].button--outline:focus {
    background-color: #1779ba;
    color: #fff;
}

.button.disabled.primary, .disabled.primary.button--gray, .disabled.primary.button--white, .disabled.primary.button--outline, .button[disabled].primary, [disabled].primary.button--gray, [disabled].primary.button--white, [disabled].primary.button--outline {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.primary:hover, .disabled.primary.button--gray:hover, .disabled.primary.button--white:hover, .disabled.primary.button--outline:hover, .button.disabled.primary:focus, .disabled.primary.button--gray:focus, .disabled.primary.button--white:focus, .disabled.primary.button--outline:focus, .button[disabled].primary:hover, [disabled].primary.button--gray:hover, [disabled].primary.button--white:hover, [disabled].primary.button--outline:hover, .button[disabled].primary:focus, [disabled].primary.button--gray:focus, [disabled].primary.button--white:focus, [disabled].primary.button--outline:focus {
    background-color: #1779ba;
    color: #fff;
}

.button.disabled.secondary, .disabled.secondary.button--gray, .disabled.secondary.button--white, .disabled.secondary.button--outline, .button[disabled].secondary, [disabled].secondary.button--gray, [disabled].secondary.button--white, [disabled].secondary.button--outline {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.secondary:hover, .disabled.secondary.button--gray:hover, .disabled.secondary.button--white:hover, .disabled.secondary.button--outline:hover, .button.disabled.secondary:focus, .disabled.secondary.button--gray:focus, .disabled.secondary.button--white:focus, .disabled.secondary.button--outline:focus, .button[disabled].secondary:hover, [disabled].secondary.button--gray:hover, [disabled].secondary.button--white:hover, [disabled].secondary.button--outline:hover, .button[disabled].secondary:focus, [disabled].secondary.button--gray:focus, [disabled].secondary.button--white:focus, [disabled].secondary.button--outline:focus {
    background-color: #767676;
    color: #fff;
}

.button.disabled.success, .disabled.success.button--gray, .disabled.success.button--white, .disabled.success.button--outline, .button[disabled].success, [disabled].success.button--gray, [disabled].success.button--white, [disabled].success.button--outline {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.success:hover, .disabled.success.button--gray:hover, .disabled.success.button--white:hover, .disabled.success.button--outline:hover, .button.disabled.success:focus, .disabled.success.button--gray:focus, .disabled.success.button--white:focus, .disabled.success.button--outline:focus, .button[disabled].success:hover, [disabled].success.button--gray:hover, [disabled].success.button--white:hover, [disabled].success.button--outline:hover, .button[disabled].success:focus, [disabled].success.button--gray:focus, [disabled].success.button--white:focus, [disabled].success.button--outline:focus {
    background-color: #3adb76;
    color: #fff;
}

.button.disabled.warning, .disabled.warning.button--gray, .disabled.warning.button--white, .disabled.warning.button--outline, .button[disabled].warning, [disabled].warning.button--gray, [disabled].warning.button--white, [disabled].warning.button--outline {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.warning:hover, .disabled.warning.button--gray:hover, .disabled.warning.button--white:hover, .disabled.warning.button--outline:hover, .button.disabled.warning:focus, .disabled.warning.button--gray:focus, .disabled.warning.button--white:focus, .disabled.warning.button--outline:focus, .button[disabled].warning:hover, [disabled].warning.button--gray:hover, [disabled].warning.button--white:hover, [disabled].warning.button--outline:hover, .button[disabled].warning:focus, [disabled].warning.button--gray:focus, [disabled].warning.button--white:focus, [disabled].warning.button--outline:focus {
    background-color: #ffae00;
    color: #fff;
}

.button.disabled.alert, .disabled.alert.button--gray, .disabled.alert.button--white, .disabled.alert.button--outline, .button[disabled].alert, [disabled].alert.button--gray, [disabled].alert.button--white, [disabled].alert.button--outline {
    opacity: 0.25;
    cursor: not-allowed;
}

.button.disabled.alert:hover, .disabled.alert.button--gray:hover, .disabled.alert.button--white:hover, .disabled.alert.button--outline:hover, .button.disabled.alert:focus, .disabled.alert.button--gray:focus, .disabled.alert.button--white:focus, .disabled.alert.button--outline:focus, .button[disabled].alert:hover, [disabled].alert.button--gray:hover, [disabled].alert.button--white:hover, [disabled].alert.button--outline:hover, .button[disabled].alert:focus, [disabled].alert.button--gray:focus, [disabled].alert.button--white:focus, [disabled].alert.button--outline:focus {
    background-color: #cc4b37;
    color: #fff;
}

.button.dropdown::after, .dropdown.button--gray::after, .dropdown.button--white::after, .dropdown.button--outline::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.4em;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #fff transparent transparent;
    position: relative;
    top: 0.4em;
    display: inline-block;
    float: right;
    margin-left: 1em;
}

.button.arrow-only::after, .arrow-only.button--gray::after, .arrow-only.button--white::after, .arrow-only.button--outline::after {
    top: -0.1em;
    float: none;
    margin-left: 0;
}

.accordion {
    margin-left: 0;
    background: #fff;
    list-style-type: none;
}

.accordion-item:first-child > :first-child {
    border-radius: 0 0 0 0;
}

.accordion-item:last-child > :last-child {
    border-radius: 0 0 0 0;
}

.accordion-title {
    position: relative;
    display: block;
    padding: 1.25rem 1rem;
    border: 1px solid #a2a2b3;
    border-bottom: 0;
    font-size: 0.75rem;
    line-height: 1;
    color: #1779ba;
}

:last-child:not(.is-active) > .accordion-title {
    border-bottom: 1px solid #a2a2b3;
    border-radius: 0 0 0 0;
}

.accordion-title:hover, .accordion-title:focus {
    background-color: #a2a2b3;
}

.accordion-title::before {
    position: absolute;
    top: 50%;
    right: 1rem;
    margin-top: -0.5rem;
    content: "+";
}

.is-active > .accordion-title::before {
    content: "–";
}

.accordion-content {
    display: none;
    padding: 1rem;
    border: 1px solid #a2a2b3;
    border-bottom: 0;
    background-color: #fff;
    color: #27274d;
}

:last-child > .accordion-content:last-child {
    border-bottom: 1px solid #a2a2b3;
}

.is-accordion-submenu-parent > a {
    position: relative;
}

.is-accordion-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    position: absolute;
    top: 50%;
    margin-top: -3px;
    right: 1rem;
}

.is-accordion-submenu-parent[aria-expanded=true] > a::after {
    transform: rotate(180deg);
    transform-origin: 50% 50%;
}

.badge {
    display: inline-block;
    min-width: 2.1em;
    padding: 0.3em;
    border-radius: 50%;
    font-size: 0.6rem;
    text-align: center;
    background: #1779ba;
    color: #fff;
}

.badge.primary {
    background: #1779ba;
    color: #000;
}

.badge.secondary {
    background: #767676;
    color: #000;
}

.badge.success {
    background: #3adb76;
    color: #000;
}

.badge.warning {
    background: #ffae00;
    color: #000;
}

.badge.alert {
    background: #cc4b37;
    color: #000;
}

.breadcrumbs {
    margin: 0 0 1rem 0;
    list-style: none;
}

.breadcrumbs::before, .breadcrumbs::after {
    display: table;
    content: " ";
}

.breadcrumbs::after {
    clear: both;
}

.breadcrumbs li {
    float: left;
    font-size: 0.6875rem;
    color: #000;
    cursor: default;
    text-transform: uppercase;
}

.breadcrumbs li:not(:last-child)::after {
    position: relative;
    top: 1px;
    margin: 0 0.75rem;
    opacity: 1;
    content: "/";
    color: #ececf0;
}

.breadcrumbs a {
    color: #1779ba;
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs .disabled {
    color: #ececf0;
    cursor: not-allowed;
}

.button-group {
    margin-bottom: 1rem;
    font-size: 0;
}

.button-group::before, .button-group::after {
    display: table;
    content: " ";
}

.button-group::after {
    clear: both;
}

.button-group .button, .button-group .button--gray, .button-group .button--white, .button-group .button--outline {
    margin: 0;
    margin-right: 1px;
    margin-bottom: 1px;
    font-size: 0.9rem;
}

.button-group .button:last-child, .button-group .button--gray:last-child, .button-group .button--white:last-child, .button-group .button--outline:last-child {
    margin-right: 0;
}

.button-group.tiny .button, .button-group.tiny .button--gray, .button-group.tiny .button--white, .button-group.tiny .button--outline {
    font-size: 0.6rem;
}

.button-group.small .button, .button-group.small .button--gray, .button-group.small .button--white, .button-group.small .button--outline {
    font-size: 0.75rem;
}

.button-group.large .button, .button-group.large .button--gray, .button-group.large .button--white, .button-group.large .button--outline {
    font-size: 1.25rem;
}

.button-group.expanded {
    margin-right: -1px;
}

.button-group.expanded::before, .button-group.expanded::after {
    display: none;
}

.button-group.expanded .button:first-child:nth-last-child(2), .button-group.expanded .button--gray:first-child:nth-last-child(2), .button-group.expanded .button--white:first-child:nth-last-child(2), .button-group.expanded .button--outline:first-child:nth-last-child(2), .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .button--gray:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--gray, .button-group.expanded .button--gray:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--gray, .button-group.expanded .button--white:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .button--white:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--gray, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--white, .button-group.expanded .button--gray:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--white, .button-group.expanded .button--white:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--white, .button-group.expanded .button--outline:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button, .button-group.expanded .button--outline:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--gray, .button-group.expanded .button--outline:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--white, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--outline, .button-group.expanded .button--gray:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--outline, .button-group.expanded .button--white:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--outline, .button-group.expanded .button--outline:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--outline {
    display: inline-block;
    width: calc(50% - 1px);
    margin-right: 1px;
}

.button-group.expanded .button:first-child:nth-last-child(2):last-child, .button-group.expanded .button--gray:first-child:nth-last-child(2):last-child, .button-group.expanded .button--white:first-child:nth-last-child(2):last-child, .button-group.expanded .button--outline:first-child:nth-last-child(2):last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--gray:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--gray:last-child, .button-group.expanded .button--white:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .button--white:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--gray:last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--white:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--white:last-child, .button-group.expanded .button--white:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--white:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--gray:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--white:last-child, .button-group.expanded .button:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--outline:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--outline:last-child, .button-group.expanded .button--white:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--outline:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(2):first-child:nth-last-child(2) ~ .button--outline:last-child {
    margin-right: -6px;
}

.button-group.expanded .button:first-child:nth-last-child(3), .button-group.expanded .button--gray:first-child:nth-last-child(3), .button-group.expanded .button--white:first-child:nth-last-child(3), .button-group.expanded .button--outline:first-child:nth-last-child(3), .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .button--gray:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--gray, .button-group.expanded .button--gray:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--gray, .button-group.expanded .button--white:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .button--white:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--gray, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--white, .button-group.expanded .button--gray:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--white, .button-group.expanded .button--white:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--white, .button-group.expanded .button--outline:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button, .button-group.expanded .button--outline:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--gray, .button-group.expanded .button--outline:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--white, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--outline, .button-group.expanded .button--gray:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--outline, .button-group.expanded .button--white:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--outline, .button-group.expanded .button--outline:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--outline {
    display: inline-block;
    width: calc(33.3333333333% - 1px);
    margin-right: 1px;
}

.button-group.expanded .button:first-child:nth-last-child(3):last-child, .button-group.expanded .button--gray:first-child:nth-last-child(3):last-child, .button-group.expanded .button--white:first-child:nth-last-child(3):last-child, .button-group.expanded .button--outline:first-child:nth-last-child(3):last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--gray:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--gray:last-child, .button-group.expanded .button--white:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .button--white:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--gray:last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--white:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--white:last-child, .button-group.expanded .button--white:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--white:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--gray:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--white:last-child, .button-group.expanded .button:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--outline:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--outline:last-child, .button-group.expanded .button--white:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--outline:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(3):first-child:nth-last-child(3) ~ .button--outline:last-child {
    margin-right: -6px;
}

.button-group.expanded .button:first-child:nth-last-child(4), .button-group.expanded .button--gray:first-child:nth-last-child(4), .button-group.expanded .button--white:first-child:nth-last-child(4), .button-group.expanded .button--outline:first-child:nth-last-child(4), .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .button--gray:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--gray, .button-group.expanded .button--gray:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--gray, .button-group.expanded .button--white:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .button--white:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--gray, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--white, .button-group.expanded .button--gray:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--white, .button-group.expanded .button--white:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--white, .button-group.expanded .button--outline:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button, .button-group.expanded .button--outline:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--gray, .button-group.expanded .button--outline:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--white, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--outline, .button-group.expanded .button--gray:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--outline, .button-group.expanded .button--white:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--outline, .button-group.expanded .button--outline:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--outline {
    display: inline-block;
    width: calc(25% - 1px);
    margin-right: 1px;
}

.button-group.expanded .button:first-child:nth-last-child(4):last-child, .button-group.expanded .button--gray:first-child:nth-last-child(4):last-child, .button-group.expanded .button--white:first-child:nth-last-child(4):last-child, .button-group.expanded .button--outline:first-child:nth-last-child(4):last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--gray:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--gray:last-child, .button-group.expanded .button--white:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .button--white:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--gray:last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--white:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--white:last-child, .button-group.expanded .button--white:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--white:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--gray:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--white:last-child, .button-group.expanded .button:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--outline:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--outline:last-child, .button-group.expanded .button--white:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--outline:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(4):first-child:nth-last-child(4) ~ .button--outline:last-child {
    margin-right: -6px;
}

.button-group.expanded .button:first-child:nth-last-child(5), .button-group.expanded .button--gray:first-child:nth-last-child(5), .button-group.expanded .button--white:first-child:nth-last-child(5), .button-group.expanded .button--outline:first-child:nth-last-child(5), .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .button--gray:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--gray, .button-group.expanded .button--gray:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--gray, .button-group.expanded .button--white:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .button--white:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--gray, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--white, .button-group.expanded .button--gray:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--white, .button-group.expanded .button--white:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--white, .button-group.expanded .button--outline:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button, .button-group.expanded .button--outline:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--gray, .button-group.expanded .button--outline:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--white, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--outline, .button-group.expanded .button--gray:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--outline, .button-group.expanded .button--white:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--outline, .button-group.expanded .button--outline:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--outline {
    display: inline-block;
    width: calc(20% - 1px);
    margin-right: 1px;
}

.button-group.expanded .button:first-child:nth-last-child(5):last-child, .button-group.expanded .button--gray:first-child:nth-last-child(5):last-child, .button-group.expanded .button--white:first-child:nth-last-child(5):last-child, .button-group.expanded .button--outline:first-child:nth-last-child(5):last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--gray:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--gray:last-child, .button-group.expanded .button--white:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .button--white:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--gray:last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--white:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--white:last-child, .button-group.expanded .button--white:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--white:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--gray:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--white:last-child, .button-group.expanded .button:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--outline:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--outline:last-child, .button-group.expanded .button--white:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--outline:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(5):first-child:nth-last-child(5) ~ .button--outline:last-child {
    margin-right: -6px;
}

.button-group.expanded .button:first-child:nth-last-child(6), .button-group.expanded .button--gray:first-child:nth-last-child(6), .button-group.expanded .button--white:first-child:nth-last-child(6), .button-group.expanded .button--outline:first-child:nth-last-child(6), .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .button--gray:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--gray, .button-group.expanded .button--gray:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--gray, .button-group.expanded .button--white:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .button--white:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--gray, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--white, .button-group.expanded .button--gray:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--white, .button-group.expanded .button--white:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--white, .button-group.expanded .button--outline:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button, .button-group.expanded .button--outline:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--gray, .button-group.expanded .button--outline:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--white, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--outline, .button-group.expanded .button--gray:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--outline, .button-group.expanded .button--white:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--outline, .button-group.expanded .button--outline:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--outline {
    display: inline-block;
    width: calc(16.6666666667% - 1px);
    margin-right: 1px;
}

.button-group.expanded .button:first-child:nth-last-child(6):last-child, .button-group.expanded .button--gray:first-child:nth-last-child(6):last-child, .button-group.expanded .button--white:first-child:nth-last-child(6):last-child, .button-group.expanded .button--outline:first-child:nth-last-child(6):last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--gray:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--gray:last-child, .button-group.expanded .button--white:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .button--white:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--gray:last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--white:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--white:last-child, .button-group.expanded .button--white:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--white:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--gray:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--white:last-child, .button-group.expanded .button:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--outline:last-child, .button-group.expanded .button--gray:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--outline:last-child, .button-group.expanded .button--white:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--outline:last-child, .button-group.expanded .button--outline:first-child:nth-last-child(6):first-child:nth-last-child(6) ~ .button--outline:last-child {
    margin-right: -6px;
}

.button-group.primary .button, .button-group.primary .button--gray, .button-group.primary .button--white, .button-group.primary .button--outline {
    background-color: #1779ba;
    color: #000;
}

.button-group.primary .button:hover, .button-group.primary .button--gray:hover, .button-group.primary .button--white:hover, .button-group.primary .button--outline:hover, .button-group.primary .button:focus, .button-group.primary .button--gray:focus, .button-group.primary .button--white:focus, .button-group.primary .button--outline:focus {
    background-color: #126195;
    color: #000;
}

.button-group.secondary .button, .button-group.secondary .button--gray, .button-group.secondary .button--white, .button-group.secondary .button--outline {
    background-color: #767676;
    color: #000;
}

.button-group.secondary .button:hover, .button-group.secondary .button--gray:hover, .button-group.secondary .button--white:hover, .button-group.secondary .button--outline:hover, .button-group.secondary .button:focus, .button-group.secondary .button--gray:focus, .button-group.secondary .button--white:focus, .button-group.secondary .button--outline:focus {
    background-color: #5e5e5e;
    color: #000;
}

.button-group.success .button, .button-group.success .button--gray, .button-group.success .button--white, .button-group.success .button--outline {
    background-color: #3adb76;
    color: #000;
}

.button-group.success .button:hover, .button-group.success .button--gray:hover, .button-group.success .button--white:hover, .button-group.success .button--outline:hover, .button-group.success .button:focus, .button-group.success .button--gray:focus, .button-group.success .button--white:focus, .button-group.success .button--outline:focus {
    background-color: #22bb5b;
    color: #000;
}

.button-group.warning .button, .button-group.warning .button--gray, .button-group.warning .button--white, .button-group.warning .button--outline {
    background-color: #ffae00;
    color: #000;
}

.button-group.warning .button:hover, .button-group.warning .button--gray:hover, .button-group.warning .button--white:hover, .button-group.warning .button--outline:hover, .button-group.warning .button:focus, .button-group.warning .button--gray:focus, .button-group.warning .button--white:focus, .button-group.warning .button--outline:focus {
    background-color: #cc8b00;
    color: #000;
}

.button-group.alert .button, .button-group.alert .button--gray, .button-group.alert .button--white, .button-group.alert .button--outline {
    background-color: #cc4b37;
    color: #000;
}

.button-group.alert .button:hover, .button-group.alert .button--gray:hover, .button-group.alert .button--white:hover, .button-group.alert .button--outline:hover, .button-group.alert .button:focus, .button-group.alert .button--gray:focus, .button-group.alert .button--white:focus, .button-group.alert .button--outline:focus {
    background-color: #a53b2a;
    color: #000;
}

.button-group.stacked .button, .button-group.stacked .button--gray, .button-group.stacked .button--white, .button-group.stacked .button--outline, .button-group.stacked-for-small .button, .button-group.stacked-for-small .button--gray, .button-group.stacked-for-small .button--white, .button-group.stacked-for-small .button--outline, .button-group.stacked-for-medium .button, .button-group.stacked-for-medium .button--gray, .button-group.stacked-for-medium .button--white, .button-group.stacked-for-medium .button--outline {
    width: 100%;
}

.button-group.stacked .button:last-child, .button-group.stacked .button--gray:last-child, .button-group.stacked .button--white:last-child, .button-group.stacked .button--outline:last-child, .button-group.stacked-for-small .button:last-child, .button-group.stacked-for-small .button--gray:last-child, .button-group.stacked-for-small .button--white:last-child, .button-group.stacked-for-small .button--outline:last-child, .button-group.stacked-for-medium .button:last-child, .button-group.stacked-for-medium .button--gray:last-child, .button-group.stacked-for-medium .button--white:last-child, .button-group.stacked-for-medium .button--outline:last-child {
    margin-bottom: 0;
}

@media print, screen and (min-width: 40em) {
    .button-group.stacked-for-small .button, .button-group.stacked-for-small .button--gray, .button-group.stacked-for-small .button--white, .button-group.stacked-for-small .button--outline {
        width: auto;
        margin-bottom: 0;
    }
}

@media print, screen and (min-width: 80em) {
    .button-group.stacked-for-medium .button, .button-group.stacked-for-medium .button--gray, .button-group.stacked-for-medium .button--white, .button-group.stacked-for-medium .button--outline {
        width: auto;
        margin-bottom: 0;
    }
}

@media screen and (max-width: 39.9375em) {
    .button-group.stacked-for-small.expanded {
        display: block;
    }

    .button-group.stacked-for-small.expanded .button, .button-group.stacked-for-small.expanded .button--gray, .button-group.stacked-for-small.expanded .button--white, .button-group.stacked-for-small.expanded .button--outline {
        display: block;
        margin-right: 0;
    }
}

.callout {
    position: relative;
    margin: 0 0 1rem 0;
    padding: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.25);
    border-radius: 0;
    background-color: white;
    color: #27274d;
}

.callout > :first-child {
    margin-top: 0;
}

.callout > :last-child {
    margin-bottom: 0;
}

.callout.primary {
    background-color: #d7ecfa;
    color: #27274d;
}

.callout.secondary {
    background-color: #eaeaea;
    color: #27274d;
}

.callout.success {
    background-color: #e1faea;
    color: #27274d;
}

.callout.warning {
    background-color: #fff3d9;
    color: #27274d;
}

.callout.alert {
    background-color: #f7e4e1;
    color: #27274d;
}

.callout.small {
    padding-top: 0.5rem;
    padding-right: 0.5rem;
    padding-bottom: 0.5rem;
    padding-left: 0.5rem;
}

.callout.large {
    padding-top: 3rem;
    padding-right: 3rem;
    padding-bottom: 3rem;
    padding-left: 3rem;
}

.card {
    margin-bottom: 1rem;
    border: 1px solid #a2a2b3;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    color: #27274d;
}

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

.card-divider {
    padding: 1rem;
    background: #a2a2b3;
}

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

.card-section {
    padding: 1rem;
}

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

.close-button {
    position: absolute;
    color: #363636;
    cursor: pointer;
}

[data-whatinput=mouse] .close-button {
    outline: 0;
}

.close-button:hover, .close-button:focus {
    color: #000;
}

.close-button.small {
    right: 0.66rem;
    top: 0.33em;
    font-size: 1.5em;
    line-height: 1;
}

.close-button, .close-button.medium {
    right: 1rem;
    top: 0.5rem;
    font-size: 2em;
    line-height: 1;
}

.menu {
    margin: 0;
    list-style-type: none;
}

.menu > li {
    display: table-cell;
    vertical-align: middle;
}

[data-whatinput=mouse] .menu > li {
    outline: 0;
}

.menu > li > a {
    display: block;
    padding: 0.7rem 1rem;
    line-height: 1;
}

.menu input,
.menu select,
.menu a,
.menu button {
    margin-bottom: 0;
}

.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
    vertical-align: middle;
}

.menu > li > a img + span,
.menu > li > a i + span,
.menu > li > a svg + span {
    vertical-align: middle;
}

.menu > li > a img,
.menu > li > a i,
.menu > li > a svg {
    margin-right: 0.25rem;
    display: inline-block;
}

.menu > li, .menu.horizontal > li {
    display: table-cell;
}

.menu.expanded {
    display: table;
    width: 100%;
    table-layout: fixed;
}

.menu.expanded > li:first-child:last-child {
    width: 100%;
}

.menu.vertical > li {
    display: block;
}

@media print, screen and (min-width: 40em) {
    .menu.medium-horizontal > li {
        display: table-cell;
    }

    .menu.medium-expanded {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .menu.medium-expanded > li:first-child:last-child {
        width: 100%;
    }

    .menu.medium-vertical > li {
        display: block;
    }
}

@media print, screen and (min-width: 80em) {
    .menu.large-horizontal > li {
        display: table-cell;
    }

    .menu.large-expanded {
        display: table;
        width: 100%;
        table-layout: fixed;
    }

    .menu.large-expanded > li:first-child:last-child {
        width: 100%;
    }

    .menu.large-vertical > li {
        display: block;
    }
}

.menu.simple li {
    display: inline-block;
    margin-right: 1rem;
    line-height: 1;
}

.menu.simple a {
    padding: 0;
}

.menu.align-right::before, .menu.align-right::after {
    display: table;
    content: " ";
}

.menu.align-right::after {
    clear: both;
}

.menu.align-right > li {
    float: right;
}

.menu.icon-top > li > a {
    text-align: center;
}

.menu.icon-top > li > a img,
.menu.icon-top > li > a i,
.menu.icon-top > li > a svg {
    display: block;
    margin: 0 auto 0.25rem;
}

.menu.icon-top.vertical a > span {
    margin: auto;
}

.menu.nested {
    margin-left: 1rem;
}

.menu .active > a {
    background: #1779ba;
    color: #fff;
}

.menu.menu-bordered li {
    border: 1px solid #a2a2b3;
}

.menu.menu-bordered li:not(:first-child) {
    border-top: 0;
}

.menu.menu-hover li:hover {
    background-color: #a2a2b3;
}

.menu-text {
    padding-top: 0;
    padding-bottom: 0;
    padding: 0.7rem 1rem;
    font-weight: bold;
    line-height: 1;
    color: inherit;
}

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

.menu-centered > .menu {
    display: inline-block;
}

.no-js [data-responsive-menu] ul {
    display: none;
}

.menu-icon {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer;
}

.menu-icon::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    box-shadow: 0 7px 0 #fff, 0 14px 0 #fff;
    content: "";
}

.menu-icon:hover::after {
    background: #ececf0;
    box-shadow: 0 7px 0 #ececf0, 0 14px 0 #ececf0;
}

.menu-icon.dark {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    width: 20px;
    height: 16px;
    cursor: pointer;
}

.menu-icon.dark::after {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    box-shadow: 0 7px 0 #000, 0 14px 0 #000;
    content: "";
}

.menu-icon.dark:hover::after {
    background: #363636;
    box-shadow: 0 7px 0 #363636, 0 14px 0 #363636;
}

.is-drilldown {
    position: relative;
    overflow: hidden;
}

.is-drilldown li {
    display: block;
}

.is-drilldown.animate-height {
    transition: height 0.5s;
}

.is-drilldown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: -1;
    width: 100%;
    background: #fff;
    transition: transform 0.15s linear;
}

.is-drilldown-submenu.is-active {
    z-index: 1;
    display: block;
    transform: translateX(-100%);
}

.is-drilldown-submenu.is-closing {
    transform: translateX(100%);
}

.drilldown-submenu-cover-previous {
    min-height: 100%;
}

.is-drilldown-submenu-parent > a {
    position: relative;
}

.is-drilldown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    right: 1rem;
}

.js-drilldown-back > a::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
    border-left-width: 0;
    display: inline-block;
    vertical-align: middle;
    margin-right: 0.75rem;
    border-left-width: 0;
}

.dropdown-pane {
    position: absolute;
    z-index: 10;
    display: block;
    width: 300px;
    padding: 1rem;
    visibility: hidden;
    border: 1px solid #ececf0;
    border-radius: 0;
    background-color: #fff;
    font-size: 1rem;
}

.dropdown-pane.is-open {
    visibility: visible;
}

.dropdown-pane.tiny {
    width: 100px;
}

.dropdown-pane.small {
    width: 200px;
}

.dropdown-pane.large {
    width: 400px;
}

.dropdown.menu > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: 0;
    left: auto;
}

.dropdown.menu > li.opens-right > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a {
    position: relative;
    padding-right: 1.5rem;
}

.dropdown.menu > li.is-dropdown-submenu-parent > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #1779ba transparent transparent;
    right: 50px;
    margin-top: -3px;
}

[data-whatinput=mouse] .dropdown.menu a {
    outline: 0;
}

.no-js .dropdown.menu ul {
    display: none;
}

.dropdown.menu.vertical > li .is-dropdown-submenu {
    top: 0;
}

.dropdown.menu.vertical > li.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
}

.dropdown.menu.vertical > li.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
}

.dropdown.menu.vertical > li > a::after {
    right: 14px;
}

.dropdown.menu.vertical > li.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
}

.dropdown.menu.vertical > li.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
}

@media print, screen and (min-width: 40em) {
    .dropdown.menu.medium-horizontal > li.opens-left > .is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto;
    }

    .dropdown.menu.medium-horizontal > li.opens-right > .is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0;
    }

    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a {
        position: relative;
        padding-right: 1.5rem;
    }

    .dropdown.menu.medium-horizontal > li.is-dropdown-submenu-parent > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: "";
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #1779ba transparent transparent;
        right: 50px;
        margin-top: -3px;
    }

    .dropdown.menu.medium-vertical > li .is-dropdown-submenu {
        top: 0;
    }

    .dropdown.menu.medium-vertical > li.opens-left > .is-dropdown-submenu {
        right: 100%;
        left: auto;
    }

    .dropdown.menu.medium-vertical > li.opens-right > .is-dropdown-submenu {
        right: auto;
        left: 100%;
    }

    .dropdown.menu.medium-vertical > li > a::after {
        right: 14px;
    }

    .dropdown.menu.medium-vertical > li.opens-left > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: "";
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #1779ba transparent transparent;
    }

    .dropdown.menu.medium-vertical > li.opens-right > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: "";
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #1779ba;
    }
}

@media print, screen and (min-width: 80em) {
    .dropdown.menu.large-horizontal > li.opens-left > .is-dropdown-submenu {
        top: 100%;
        right: 0;
        left: auto;
    }

    .dropdown.menu.large-horizontal > li.opens-right > .is-dropdown-submenu {
        top: 100%;
        right: auto;
        left: 0;
    }

    .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a {
        position: relative;
        padding-right: 1.5rem;
    }

    .dropdown.menu.large-horizontal > li.is-dropdown-submenu-parent > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: "";
        border-bottom-width: 0;
        border-top-style: solid;
        border-color: #1779ba transparent transparent;
        right: 50px;
        margin-top: -3px;
    }

    .dropdown.menu.large-vertical > li .is-dropdown-submenu {
        top: 0;
    }

    .dropdown.menu.large-vertical > li.opens-left > .is-dropdown-submenu {
        right: 100%;
        left: auto;
    }

    .dropdown.menu.large-vertical > li.opens-right > .is-dropdown-submenu {
        right: auto;
        left: 100%;
    }

    .dropdown.menu.large-vertical > li > a::after {
        right: 14px;
    }

    .dropdown.menu.large-vertical > li.opens-left > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: "";
        border-left-width: 0;
        border-right-style: solid;
        border-color: transparent #1779ba transparent transparent;
    }

    .dropdown.menu.large-vertical > li.opens-right > a::after {
        display: block;
        width: 0;
        height: 0;
        border: inset 6px;
        content: "";
        border-right-width: 0;
        border-left-style: solid;
        border-color: transparent transparent transparent #1779ba;
    }
}

.dropdown.menu.align-right .is-dropdown-submenu.first-sub {
    top: 100%;
    right: 0;
    left: auto;
}

.is-dropdown-menu.vertical {
    width: 100px;
}

.is-dropdown-menu.vertical.align-right {
    float: right;
}

.is-dropdown-submenu-parent {
    position: relative;
}

.is-dropdown-submenu-parent a::after {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -6px;
}

.is-dropdown-submenu-parent.opens-inner > .is-dropdown-submenu {
    top: 100%;
    left: auto;
}

.is-dropdown-submenu-parent.opens-left > .is-dropdown-submenu {
    right: 100%;
    left: auto;
}

.is-dropdown-submenu-parent.opens-right > .is-dropdown-submenu {
    right: auto;
    left: 100%;
}

.is-dropdown-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 1;
    display: none;
    min-width: 200px;
    border: 1px solid #ececf0;
    background: #fff;
}

.is-dropdown-submenu .is-dropdown-submenu-parent > a::after {
    right: 14px;
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-left > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #1779ba transparent transparent;
}

.is-dropdown-submenu .is-dropdown-submenu-parent.opens-right > a::after {
    display: block;
    width: 0;
    height: 0;
    border: inset 6px;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #1779ba;
}

.is-dropdown-submenu .is-dropdown-submenu {
    margin-top: -1px;
}

.is-dropdown-submenu > li {
    width: 100%;
}

.is-dropdown-submenu.js-dropdown-active {
    display: block;
}

.responsive-embed, .flex-video {
    position: relative;
    height: 0;
    margin-bottom: 1rem;
    padding-bottom: 75%;
    overflow: hidden;
}

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

.responsive-embed.widescreen, .flex-video.widescreen {
    padding-bottom: 56.25%;
}

.label {
    display: inline-block;
    padding: 0.33333rem 0.5rem;
    border-radius: 0;
    font-size: 0.8rem;
    line-height: 1;
    white-space: nowrap;
    cursor: default;
    background: #1779ba;
    color: #fff;
}

.label.primary {
    background: #1779ba;
    color: #000;
}

.label.secondary {
    background: #767676;
    color: #000;
}

.label.success {
    background: #3adb76;
    color: #000;
}

.label.warning {
    background: #ffae00;
    color: #000;
}

.label.alert {
    background: #cc4b37;
    color: #000;
}

.media-object {
    display: block;
    margin-bottom: 1rem;
}

.media-object img {
    max-width: none;
}

@media screen and (max-width: 39.9375em) {
    .media-object.stack-for-small .media-object-section {
        padding: 0;
        padding-bottom: 1rem;
        display: block;
    }

    .media-object.stack-for-small .media-object-section img {
        width: 100%;
    }
}

.media-object-section {
    display: table-cell;
    vertical-align: top;
}

.media-object-section:first-child {
    padding-right: 1rem;
}

.media-object-section:last-child:not(:nth-child(2)) {
    padding-left: 1rem;
}

.media-object-section > :last-child {
    margin-bottom: 0;
}

.media-object-section.middle {
    vertical-align: middle;
}

.media-object-section.bottom {
    vertical-align: bottom;
}

.is-off-canvas-open {
    overflow: hidden;
}

.js-off-canvas-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    background: rgba(255, 255, 255, 0.25);
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
}

.js-off-canvas-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.js-off-canvas-overlay.is-closable {
    cursor: pointer;
}

.js-off-canvas-overlay.is-overlay-absolute {
    position: absolute;
}

.js-off-canvas-overlay.is-overlay-fixed {
    position: fixed;
}

.off-canvas-wrapper {
    position: relative;
    overflow: hidden;
}

.off-canvas {
    position: fixed;
    z-index: 1;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    background: #a2a2b3;
}

[data-whatinput=mouse] .off-canvas {
    outline: 0;
}

.off-canvas.is-transition-overlap {
    z-index: 10;
}

.off-canvas.is-transition-overlap.is-open {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.off-canvas.is-open {
    transform: translate(0, 0);
}

.off-canvas-absolute {
    position: absolute;
    z-index: 1;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    background: #a2a2b3;
}

[data-whatinput=mouse] .off-canvas-absolute {
    outline: 0;
}

.off-canvas-absolute.is-transition-overlap {
    z-index: 10;
}

.off-canvas-absolute.is-transition-overlap.is-open {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
}

.off-canvas-absolute.is-open {
    transform: translate(0, 0);
}

.position-left {
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    transform: translateX(-250px);
    overflow-y: auto;
}

.position-left.is-open ~ .off-canvas-content {
    transform: translateX(250px);
}

.position-left.is-transition-push::after {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    content: " ";
}

.position-left.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none;
}

.position-right {
    top: 0;
    right: 0;
    width: 250px;
    height: 100%;
    transform: translateX(250px);
    overflow-y: auto;
}

.position-right.is-open ~ .off-canvas-content {
    transform: translateX(-250px);
}

.position-right.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 1px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    content: " ";
}

.position-right.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none;
}

.position-top {
    top: 0;
    left: 0;
    width: 100%;
    height: 250px;
    transform: translateY(-250px);
    overflow-x: auto;
}

.position-top.is-open ~ .off-canvas-content {
    transform: translateY(250px);
}

.position-top.is-transition-push::after {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    content: " ";
}

.position-top.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none;
}

.position-bottom {
    bottom: 0;
    left: 0;
    width: 100%;
    height: 250px;
    transform: translateY(250px);
    overflow-x: auto;
}

.position-bottom.is-open ~ .off-canvas-content {
    transform: translateY(-250px);
}

.position-bottom.is-transition-push::after {
    position: absolute;
    top: 0;
    left: 0;
    height: 1px;
    width: 100%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.7);
    content: " ";
}

.position-bottom.is-transition-overlap.is-open ~ .off-canvas-content {
    transform: none;
}

.off-canvas-content {
    transition: transform 0.5s ease;
    backface-visibility: hidden;
}

@media print, screen and (min-width: 40em) {
    .position-left.reveal-for-medium {
        transform: none;
        z-index: 1;
    }

    .position-left.reveal-for-medium ~ .off-canvas-content {
        margin-left: 250px;
    }

    .position-right.reveal-for-medium {
        transform: none;
        z-index: 1;
    }

    .position-right.reveal-for-medium ~ .off-canvas-content {
        margin-right: 250px;
    }

    .position-top.reveal-for-medium {
        transform: none;
        z-index: 1;
    }

    .position-top.reveal-for-medium ~ .off-canvas-content {
        margin-top: 250px;
    }

    .position-bottom.reveal-for-medium {
        transform: none;
        z-index: 1;
    }

    .position-bottom.reveal-for-medium ~ .off-canvas-content {
        margin-bottom: 250px;
    }
}

@media print, screen and (min-width: 80em) {
    .position-left.reveal-for-large {
        transform: none;
        z-index: 1;
    }

    .position-left.reveal-for-large ~ .off-canvas-content {
        margin-left: 250px;
    }

    .position-right.reveal-for-large {
        transform: none;
        z-index: 1;
    }

    .position-right.reveal-for-large ~ .off-canvas-content {
        margin-right: 250px;
    }

    .position-top.reveal-for-large {
        transform: none;
        z-index: 1;
    }

    .position-top.reveal-for-large ~ .off-canvas-content {
        margin-top: 250px;
    }

    .position-bottom.reveal-for-large {
        transform: none;
        z-index: 1;
    }

    .position-bottom.reveal-for-large ~ .off-canvas-content {
        margin-bottom: 250px;
    }
}

.orbit {
    position: relative;
}

.orbit-container {
    position: relative;
    height: 0;
    margin: 0;
    list-style: none;
    overflow: hidden;
}

.orbit-slide {
    width: 100%;
}

.orbit-slide.no-motionui.is-active {
    top: 0;
    left: 0;
}

.orbit-figure {
    margin: 0;
}

.orbit-image {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.orbit-caption {
    position: absolute;
    bottom: 0;
    width: 100%;
    margin-bottom: 0;
    padding: 1rem;
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
}

.orbit-next, .orbit-previous {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    padding: 1rem;
    color: #fff;
}

[data-whatinput=mouse] .orbit-next, [data-whatinput=mouse] .orbit-previous {
    outline: 0;
}

.orbit-next:hover, .orbit-previous:hover, .orbit-next:active, .orbit-previous:active, .orbit-next:focus, .orbit-previous:focus {
    background-color: rgba(0, 0, 0, 0.5);
}

.orbit-previous {
    left: 0;
}

.orbit-next {
    left: auto;
    right: 0;
}

.orbit-bullets {
    position: relative;
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    text-align: center;
}

[data-whatinput=mouse] .orbit-bullets {
    outline: 0;
}

.orbit-bullets button {
    width: 1.2rem;
    height: 1.2rem;
    margin: 0.1rem;
    border-radius: 50%;
    background-color: #ececf0;
}

.orbit-bullets button:hover {
    background-color: #363636;
}

.orbit-bullets button.is-active {
    background-color: #363636;
}

.pagination {
    margin-left: 0;
    margin-bottom: 1rem;
}

.pagination::before, .pagination::after {
    display: table;
    content: " ";
}

.pagination::after {
    clear: both;
}

.pagination li {
    margin-right: 0.0625rem;
    border-radius: 0;
    font-size: 0.875rem;
    display: none;
}

.pagination li:last-child, .pagination li:first-child {
    display: inline-block;
}

@media print, screen and (min-width: 40em) {
    .pagination li {
        display: inline-block;
    }
}

.pagination a,
.pagination button {
    display: block;
    padding: 0.1875rem 0.625rem;
    border-radius: 0;
    color: #000;
}

.pagination a:hover,
.pagination button:hover {
    background: #a2a2b3;
}

.pagination .current {
    padding: 0.1875rem 0.625rem;
    background: #1779ba;
    color: #fff;
    cursor: default;
}

.pagination .disabled {
    padding: 0.1875rem 0.625rem;
    color: #ececf0;
    cursor: not-allowed;
}

.pagination .disabled:hover {
    background: transparent;
}

.pagination .ellipsis::after {
    padding: 0.1875rem 0.625rem;
    content: "…";
    color: #000;
}

.pagination-previous a::before,
.pagination-previous.disabled::before {
    display: inline-block;
    margin-right: 0.5rem;
    content: "«";
}

.pagination-next a::after,
.pagination-next.disabled::after {
    display: inline-block;
    margin-left: 0.5rem;
    content: "»";
}

.progress {
    height: 1rem;
    margin-bottom: 1rem;
    border-radius: 0;
    background-color: #ececf0;
}

.progress.primary .progress-meter {
    background-color: #1779ba;
}

.progress.secondary .progress-meter {
    background-color: #767676;
}

.progress.success .progress-meter {
    background-color: #3adb76;
}

.progress.warning .progress-meter {
    background-color: #ffae00;
}

.progress.alert .progress-meter {
    background-color: #cc4b37;
}

.progress-meter {
    position: relative;
    display: block;
    width: 0%;
    height: 100%;
    background-color: #1779ba;
}

.progress-meter-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    margin: 0;
    font-size: 0.75rem;
    font-weight: bold;
    color: #fff;
    white-space: nowrap;
}

.slider {
    position: relative;
    height: 0.5rem;
    margin-top: 1.25rem;
    margin-bottom: 2.25rem;
    background-color: #a2a2b3;
    cursor: pointer;
    user-select: none;
    touch-action: none;
}

.slider-fill {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    max-width: 100%;
    height: 0.5rem;
    background-color: #ececf0;
    transition: all 0.2s ease-in-out;
}

.slider-fill.is-dragging {
    transition: all 0s linear;
}

.slider-handle {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    left: 0;
    z-index: 1;
    display: inline-block;
    width: 1.4rem;
    height: 1.4rem;
    border-radius: 0;
    background-color: #1779ba;
    transition: all 0.2s ease-in-out;
    touch-action: manipulation;
}

[data-whatinput=mouse] .slider-handle {
    outline: 0;
}

.slider-handle:hover {
    background-color: #14679e;
}

.slider-handle.is-dragging {
    transition: all 0s linear;
}

.slider.disabled,
.slider[disabled] {
    opacity: 0.25;
    cursor: not-allowed;
}

.slider.vertical {
    display: inline-block;
    width: 0.5rem;
    height: 12.5rem;
    margin: 0 1.25rem;
    transform: scale(1, -1);
}

.slider.vertical .slider-fill {
    top: 0;
    width: 0.5rem;
    max-height: 100%;
}

.slider.vertical .slider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1.4rem;
    height: 1.4rem;
    transform: translateX(-50%);
}

.sticky-container {
    position: relative;
}

.sticky {
    position: relative;
    z-index: 0;
    transform: translate3d(0, 0, 0);
}

.sticky.is-stuck {
    position: fixed;
    z-index: 5;
}

.sticky.is-stuck.is-at-top {
    top: 0;
}

.sticky.is-stuck.is-at-bottom {
    bottom: 0;
}

.sticky.is-anchored {
    position: relative;
    right: auto;
    left: auto;
}

.sticky.is-anchored.is-at-bottom {
    bottom: 0;
}

body.is-reveal-open {
    overflow: hidden;
}

html.is-reveal-open,
html.is-reveal-open body {
    min-height: 100%;
    overflow: hidden;
    user-select: none;
}

.reveal-overlay {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1005;
    display: none;
    background-color: rgba(0, 0, 0, 0.45);
    overflow-y: scroll;
}

.reveal {
    z-index: 1006;
    backface-visibility: hidden;
    display: none;
    padding: 1rem;
    border: 1px solid #ececf0;
    border-radius: 0;
    background-color: #fff;
    position: relative;
    top: 100px;
    margin-right: auto;
    margin-left: auto;
    overflow-y: auto;
}

[data-whatinput=mouse] .reveal {
    outline: 0;
}

@media print, screen and (min-width: 40em) {
    .reveal {
        min-height: 0;
    }
}

.reveal .column,
.reveal .columns {
    min-width: 0;
}

.reveal > :last-child {
    margin-bottom: 0;
}

@media print, screen and (min-width: 40em) {
    .reveal {
        width: 600px;
        max-width: 88.75rem;
    }
}

@media print, screen and (min-width: 40em) {
    .reveal .reveal {
        right: auto;
        left: auto;
        margin: 0 auto;
    }
}

.reveal.collapse {
    padding: 0;
}

@media print, screen and (min-width: 40em) {
    .reveal.tiny {
        width: 30%;
        max-width: 88.75rem;
    }
}

@media print, screen and (min-width: 40em) {
    .reveal.small {
        width: 50%;
        max-width: 88.75rem;
    }
}

@media print, screen and (min-width: 40em) {
    .reveal.large {
        width: 90%;
        max-width: 88.75rem;
    }
}

.reveal.full {
    top: 0;
    left: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    height: 100vh;
    min-height: 100vh;
    margin-left: 0;
    border: 0;
    border-radius: 0;
}

@media screen and (max-width: 39.9375em) {
    .reveal {
        top: 0;
        left: 0;
        width: 100%;
        max-width: none;
        height: 100%;
        height: 100vh;
        min-height: 100vh;
        margin-left: 0;
        border: 0;
        border-radius: 0;
    }
}

.reveal.without-overlay {
    position: fixed;
}

.switch {
    height: 2rem;
    position: relative;
    margin-bottom: 1rem;
    outline: 0;
    font-size: 0.875rem;
    font-weight: bold;
    color: #fff;
    user-select: none;
}

.switch-input {
    position: absolute;
    margin-bottom: 0;
    opacity: 0;
}

.switch-paddle {
    position: relative;
    display: block;
    width: 4rem;
    height: 2rem;
    border-radius: 0;
    background: #ececf0;
    transition: all 0.25s ease-out;
    font-weight: inherit;
    color: inherit;
    cursor: pointer;
}

input + .switch-paddle {
    margin: 0;
}

.switch-paddle::after {
    position: absolute;
    top: 0.25rem;
    left: 0.25rem;
    display: block;
    width: 1.5rem;
    height: 1.5rem;
    transform: translate3d(0, 0, 0);
    border-radius: 0;
    background: #fff;
    transition: all 0.25s ease-out;
    content: "";
}

input:checked ~ .switch-paddle {
    background: #1779ba;
}

input:checked ~ .switch-paddle::after {
    left: 2.25rem;
}

[data-whatinput=mouse] input:focus ~ .switch-paddle {
    outline: 0;
}

.switch-inactive, .switch-active {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.switch-active {
    left: 8%;
    display: none;
}

input:checked + label > .switch-active {
    display: block;
}

.switch-inactive {
    right: 15%;
}

input:checked + label > .switch-inactive {
    display: none;
}

.switch.tiny {
    height: 1.5rem;
}

.switch.tiny .switch-paddle {
    width: 3rem;
    height: 1.5rem;
    font-size: 0.625rem;
}

.switch.tiny .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1rem;
    height: 1rem;
}

.switch.tiny input:checked ~ .switch-paddle::after {
    left: 1.75rem;
}

.switch.small {
    height: 1.75rem;
}

.switch.small .switch-paddle {
    width: 3.5rem;
    height: 1.75rem;
    font-size: 0.75rem;
}

.switch.small .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 1.25rem;
    height: 1.25rem;
}

.switch.small input:checked ~ .switch-paddle::after {
    left: 2rem;
}

.switch.large {
    height: 2.5rem;
}

.switch.large .switch-paddle {
    width: 5rem;
    height: 2.5rem;
    font-size: 1rem;
}

.switch.large .switch-paddle::after {
    top: 0.25rem;
    left: 0.25rem;
    width: 2rem;
    height: 2rem;
}

.switch.large input:checked ~ .switch-paddle::after {
    left: 2.75rem;
}

table {
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0;
}

thead,
tbody,
tfoot {
    border: 1px solid #f2f2f2;
    background-color: #fff;
}

caption {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold;
}

thead {
    background: #f9f9f9;
    color: #27274d;
}

tfoot {
    background: #f2f2f2;
    color: #27274d;
}

thead tr,
tfoot tr {
    background: transparent;
}

thead th,
thead td,
tfoot th,
tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold;
    text-align: left;
}

tbody th,
tbody td {
    padding: 0.5rem 0.625rem 0.625rem;
}

tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f2f2f2;
}

table.unstriped tbody {
    background-color: #fff;
}

table.unstriped tbody tr {
    border-bottom: 0;
    border-bottom: 1px solid #f2f2f2;
    background-color: #fff;
}

@media screen and (max-width: 79.9375em) {
    table.stack thead {
        display: none;
    }

    table.stack tfoot {
        display: none;
    }

    table.stack tr,
    table.stack th,
    table.stack td {
        display: block;
    }

    table.stack td {
        border-top: 0;
    }
}

table.scroll {
    display: block;
    width: 100%;
    overflow-x: auto;
}

table.hover thead tr:hover {
    background-color: #f4f4f4;
}

table.hover tfoot tr:hover {
    background-color: #ededed;
}

table.hover tbody tr:hover {
    background-color: #fafafa;
}

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
    background-color: #ededed;
}

.table-scroll {
    overflow-x: auto;
}

.table-scroll table {
    width: auto;
}

.tabs {
    margin: 0;
    border: 1px solid #a2a2b3;
    background: #fff;
    list-style-type: none;
}

.tabs::before, .tabs::after {
    display: table;
    content: " ";
}

.tabs::after {
    clear: both;
}

.tabs.vertical > li {
    display: block;
    float: none;
    width: auto;
}

.tabs.simple > li > a {
    padding: 0;
}

.tabs.simple > li > a:hover {
    background: transparent;
}

.tabs.primary {
    background: #1779ba;
}

.tabs.primary > li > a {
    color: #000;
}

.tabs.primary > li > a:hover, .tabs.primary > li > a:focus {
    background: #1673b1;
}

.tabs-title {
    float: left;
}

.tabs-title > a {
    display: block;
    padding: 1.25rem 1.5rem;
    font-size: 0.75rem;
    line-height: 1;
    color: #1779ba;
}

.tabs-title > a:hover {
    background: #fff;
    color: #1468a0;
}

.tabs-title > a:focus, .tabs-title > a[aria-selected=true] {
    background: #a2a2b3;
    color: #1779ba;
}

.tabs-content {
    border: 1px solid #a2a2b3;
    border-top: 0;
    background: #fff;
    color: #27274d;
    transition: all 0.5s ease;
}

.tabs-content.vertical {
    border: 1px solid #a2a2b3;
    border-left: 0;
}

.tabs-panel {
    display: none;
    padding: 1rem;
}

.tabs-panel[aria-hidden=false] {
    display: block;
}

.thumbnail {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 1rem;
    border: solid 4px #fff;
    border-radius: 0;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
    line-height: 0;
}

a.thumbnail {
    transition: box-shadow 200ms ease-out;
}

a.thumbnail:hover, a.thumbnail:focus {
    box-shadow: 0 0 6px 1px rgba(23, 121, 186, 0.5);
}

a.thumbnail image {
    box-shadow: none;
}

.title-bar {
    padding: 0.5rem;
    background: #000;
    color: #fff;
}

.title-bar::before, .title-bar::after {
    display: table;
    content: " ";
}

.title-bar::after {
    clear: both;
}

.title-bar .menu-icon {
    margin-left: 0.25rem;
    margin-right: 0.25rem;
}

.title-bar-left {
    float: left;
}

.title-bar-right {
    float: right;
    text-align: right;
}

.title-bar-title {
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
}

.has-tip {
    position: relative;
    display: inline-block;
    border-bottom: dotted 1px #363636;
    font-weight: bold;
    cursor: help;
}

.tooltip {
    position: absolute;
    top: calc(100% + 0.6495rem);
    z-index: 1200;
    max-width: 10rem;
    padding: 0.75rem;
    border-radius: 0;
    background-color: #000;
    font-size: 80%;
    color: #fff;
}

.tooltip::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: "";
    border-top-width: 0;
    border-bottom-style: solid;
    border-color: transparent transparent #000;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
}

.tooltip.top::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: "";
    border-bottom-width: 0;
    border-top-style: solid;
    border-color: #000 transparent transparent;
    top: 100%;
    bottom: auto;
}

.tooltip.left::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: "";
    border-right-width: 0;
    border-left-style: solid;
    border-color: transparent transparent transparent #000;
    top: 50%;
    bottom: auto;
    left: 100%;
    transform: translateY(-50%);
}

.tooltip.right::before {
    display: block;
    width: 0;
    height: 0;
    border: inset 0.75rem;
    content: "";
    border-left-width: 0;
    border-right-style: solid;
    border-color: transparent #000 transparent transparent;
    top: 50%;
    right: 100%;
    bottom: auto;
    left: auto;
    transform: translateY(-50%);
}

.top-bar {
    padding: 0.5rem;
}

.top-bar::before, .top-bar::after {
    display: table;
    content: " ";
}

.top-bar::after {
    clear: both;
}

.top-bar,
.top-bar ul {
    background-color: #a2a2b3;
}

.top-bar input {
    max-width: 200px;
    margin-right: 1rem;
}

.top-bar .input-group-field {
    width: 100%;
    margin-right: 0;
}

.top-bar input.button, .top-bar input.button--gray, .top-bar input.button--white, .top-bar input.button--outline {
    width: auto;
}

.top-bar .top-bar-left,
.top-bar .top-bar-right {
    width: 100%;
}

@media print, screen and (min-width: 40em) {
    .top-bar .top-bar-left,
    .top-bar .top-bar-right {
        width: auto;
    }
}

@media screen and (max-width: 79.9375em) {
    .top-bar.stacked-for-medium .top-bar-left,
    .top-bar.stacked-for-medium .top-bar-right {
        width: 100%;
    }
}

@media screen and (max-width: 74.9375em) {
    .top-bar.stacked-for-large .top-bar-left,
    .top-bar.stacked-for-large .top-bar-right {
        width: 100%;
    }
}

.top-bar-title {
    display: inline-block;
    float: left;
    padding: 0.5rem 1rem 0.5rem 0;
}

.top-bar-title .menu-icon {
    bottom: 2px;
}

.top-bar-left {
    float: left;
}

.top-bar-right {
    float: right;
}

.hide {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

@media screen and (max-width: 39.9375em) {
    .hide-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 0em), screen and (min-width: 40em) {
    .show-for-small-only {
        display: none !important;
    }
}

@media print, screen and (min-width: 40em) {
    .hide-for-medium {
        display: none !important;
    }
}

@media screen and (max-width: 39.9375em) {
    .show-for-medium {
        display: none !important;
    }
}

@media screen and (min-width: 40em) and (max-width: 79.9375em) {
    .hide-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 39.9375em), screen and (min-width: 80em) {
    .show-for-medium-only {
        display: none !important;
    }
}

@media print, screen and (min-width: 80em) {
    .hide-for-large {
        display: none !important;
    }
}

@media screen and (max-width: 79.9375em) {
    .show-for-large {
        display: none !important;
    }
}

@media screen and (min-width: 80em) and (max-width: 74.9375em) {
    .hide-for-large-only {
        display: none !important;
    }
}

@media screen and (max-width: 79.9375em), screen and (min-width: 75em) {
    .show-for-large-only {
        display: none !important;
    }
}

.show-for-sr,
.show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

.show-on-focus:active, .show-on-focus:focus {
    position: static !important;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
}

.show-for-landscape,
.hide-for-portrait {
    display: block !important;
}

@media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
        display: block !important;
    }
}

@media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
        display: none !important;
    }
}

.hide-for-landscape,
.show-for-portrait {
    display: none !important;
}

@media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
        display: none !important;
    }
}

@media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
        display: block !important;
    }
}

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

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

.float-center {
    display: block;
    margin-right: auto;
    margin-left: auto;
}

.clearfix::before, .clearfix::after {
    display: table;
    content: " ";
}

.clearfix::after {
    clear: both;
}

/************************************************

Stylesheet: Main Stylesheet

*************************************************/
/*********************
GENERAL STYLES
*********************/
* {
    outline: 0;
}

/*********************
LINK STYLES
*********************/
a:link, a:visited:link {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3);
}

/*********************
H1, H2, H3, H4, H5 P STYLES
*********************/
h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none;
}

/*********************
HEADER STYLES
*********************/
.header ul.off-canvas-list li {
    list-style: none;
}

/*********************
NAVIGATION STYLES
*********************/
.top-bar .title-area {
    z-index: 1;
}

.off-canvas-list ul {
    margin-left: 0;
}

.off-canvas-list ul li a {
    border-bottom: 0px;
}

.off-canvas-list ul .dropdown {
    margin-left: 20px;
}

/*********************
POSTS & CONTENT STYLES
*********************/
.page-title .vcard {
    border: 0px;
    padding: 0px;
}

.byline {
    color: #999;
}

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

.entry-content .alignleft, .entry-content img.alignleft {
    margin-right: 1.5em;
    display: inline;
    float: left;
}

.entry-content .alignright, .entry-content img.alignright {
    margin-left: 1.5em;
    display: inline;
    float: right;
}

.entry-content .aligncenter, .entry-content img.aligncenter {
    margin-right: auto;
    margin-left: auto;
    display: block;
    clear: both;
}

.entry-content video, .entry-content object {
    max-width: 100%;
    height: auto;
}

.entry-content pre {
    background: #eee;
    border: 1px solid #cecece;
    padding: 10px;
}

.wp-caption {
    max-width: 100%;
    background: #eee;
    padding: 5px;
}

.wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%;
}

.wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center;
}

.post-password-form input[type=submit] {
    display: inline-block;
    vertical-align: middle;
    margin: 0 0 1rem 0;
    padding: 0.85em 1em;
    -webkit-appearance: none;
    border: 1px solid transparent;
    border-radius: 0;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
    font-size: 0.9rem;
    line-height: 1;
    text-align: center;
    cursor: pointer;
    background-color: #1779ba;
    color: #fff;
}

[data-whatinput=mouse] .post-password-form input[type=submit] {
    outline: 0;
}

.post-password-form input[type=submit]:hover, .post-password-form input[type=submit]:focus {
    background-color: #14679e;
    color: #fff;
}

/*********************
IMAGE GALLERY STYLES
*********************/
/*********************
PAGE NAVI STYLES
*********************/
.page-navigation {
    margin-top: 1rem;
}

/*********************
COMMENT STYLES
*********************/
#comments .commentlist {
    margin-left: 0px;
}

#respond ul {
    margin-left: 0px;
}

.commentlist li {
    position: relative;
    clear: both;
    overflow: hidden;
    list-style-type: none;
    margin-bottom: 1.5em;
}

.commentlist li:last-child {
    margin-bottom: 0;
}

.commentlist li ul.children {
    margin: 0;
}

.commentlist li[class*=depth-] {
    margin-top: 1.1em;
}

.commentlist li.depth-1 {
    margin-left: 0;
    margin-top: 0;
}

.commentlist li:not(.depth-1) {
    margin-left: 10px;
    margin-top: 0;
    padding-bottom: 0;
}

.commentlist .vcard {
    margin-left: 50px;
}

.commentlist .vcard cite.fn {
    font-weight: 700;
    font-style: normal;
}

.commentlist .vcard time {
    float: right;
}

.commentlist .vcard time a {
    color: #999;
    text-decoration: none;
}

.commentlist .vcard time a:hover {
    text-decoration: underline;
}

.commentlist .vcard img.avatar {
    position: absolute;
    left: 10px;
    padding: 2px;
    border: 1px solid #cecece;
    background: #fff;
}

.commentlist .comment_content p {
    margin: 0.7335em 0 1.5em;
    font-size: 1em;
    line-height: 1.5em;
}

.commentlist .comment-reply-link {
    float: right;
}

/*********************
COMMENT FORM STYLES
*********************/
.respond-form {
    margin: 1.5em 10px;
    padding-bottom: 2.2em;
}

.respond-form form {
    margin: 0.75em 0;
}

.respond-form form li {
    list-style-type: none;
    clear: both;
    margin-bottom: 0.7335em;
}

.respond-form form li label,
.respond-form form li small {
    display: none;
}

.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url],
.respond-form form textarea {
    padding: 3px 6px;
    background: #efefef;
    border: 2px solid #cecece;
    line-height: 1.5em;
}

.respond-form form input[type=text]:focus,
.respond-form form input[type=email]:focus,
.respond-form form input[type=url]:focus,
.respond-form form textarea:focus {
    background: #fff;
}

.respond-form form input[type=text]:invalid,
.respond-form form input[type=email]:invalid,
.respond-form form input[type=url]:invalid,
.respond-form form textarea:invalid {
    outline: none;
    border-color: #fbc2c4;
    background-color: #f6e7eb;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
}

.respond-form form input[type=text],
.respond-form form input[type=email],
.respond-form form input[type=url] {
    max-width: 400px;
    min-width: 250px;
}

.respond-form form textarea {
    resize: none;
    width: 97.3%;
    height: 150px;
}

#comment-form-title {
    margin: 0 0 1.1em;
}

#allowed_tags {
    margin: 1.5em 10px 0.7335em 0;
}

.nocomments {
    margin: 0 20px 1.1em;
}

/*********************
SIDEBARS & ASIDES
*********************/
.widget ul {
    margin: 0;
}

.widget ul li {
    list-style: none;
}

/*********************
FOOTER STYLES
*********************/
.footer {
    clear: both;
}

.footer ul.menu li {
    display: block;
}

/*********************
FOUNDATION STYLES
*********************/
/*********************
PLUGIN STYLES
*********************/
.gform_body ul {
    list-style: none outside none;
    margin: 0;
}

@font-face {
    font-family: "icomoon";
    src: url("../fonts/icomoon.eot?28l3tp");
    src: url("../fonts/icomoon.eot?28l3tp#iefix") format("embedded-opentype"), url("../fonts/icomoon.ttf?28l3tp") format("truetype"), url("../fonts/icomoon.woff?28l3tp") format("woff"), url("../fonts/icomoon.svg?28l3tp#icomoon") format("svg");
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^=icon-], [class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-dollar:before {
    content: "\e91f";
}

.icon-truck:before {
    content: "\e920";
}

.icon-thumb:before {
    content: "\e921";
}

.icon-funnel:before {
    content: "\e91e";
    color: #27274d;
}

.icon-star:before {
    content: "\e91d";
}

.icon-clock:before {
    content: "\e91c";
}

.icon-marker:before {
    content: "\e900";
}

.icon-narzedzia:before {
    content: "\e901";
}

.icon-newspaper:before {
    content: "\e902";
}

.icon-percent:before {
    content: "\e903";
}

.icon-phone:before {
    content: "\e904";
}

.icon-pisanie:before {
    content: "\e905";
}

.icon-price-tag:before {
    content: "\e906";
}

.icon-search:before {
    content: "\e907";
}

.icon-sport:before {
    content: "\e908";
}

.icon-stairs:before {
    content: "\e909";
}

.icon-thumbs-up:before {
    content: "\e90a";
}

.icon-torby:before {
    content: "\e90b";
}

.icon-user:before {
    content: "\e90c";
}

.icon-about:before {
    content: "\e90d";
}

.icon-arrow-left:before {
    content: "\e90e";
}

.icon-arrow-right:before {
    content: "\e90f";
}

.icon-biuro:before {
    content: "\e910";
}

.icon-boxes:before {
    content: "\e911";
}

.icon-breloczki:before {
    content: "\e912";
}

.icon-cart:before {
    content: "\e913";
}

.icon-check:before {
    content: "\e914";
}

.icon-chevron-right:before {
    content: "\e915";
}

.icon-chevron-down:before {
    content: "\e91b";
}

.icon-cross:before {
    content: "\e916";
}

.icon-elektronika:before {
    content: "\e917";
}

.icon-email:before {
    content: "\e918";
}

.icon-gift:before {
    content: "\e919";
}

.icon-kalendarze:before {
    content: "\e91a";
}

body.error404 {
    background-image: url("../images/404-bg.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

body.error404 .off-canvas-content {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.42) 42%, rgba(0, 0, 0, 0) 100%);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

body.error404 .notfound__title {
    color: #fff;
    font-size: 69px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 21px;
}

body.error404 .notfound__subtitle {
    color: #fff;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 29px;
    font-size: 32px;
}

@media screen and (min-width: 40em) {
    body.error404 .notfound__subtitle {
        font-size: 50px;
    }
}

a,
button,
.button,
.button--gray,
.button--white,
.button--outline,
textarea,
input {
    transition: all 0.3s;
    cursor: pointer;
}

.button, .button--gray, .button--white, .button--outline {
    font-family: "Montserrat", sans-serif;
    background-color: #fd9e20;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 18px 28px;
    display: inline-flex;
    line-height: 13px;
    margin: 0;
    outline: 0;
    border-radius: 25px;
    align-items: center;
}

.button i, .button--gray i, .button--white i, .button--outline i {
    display: inline-block;
    font-size: 16px;
    margin-right: 19px;
}

.button.disabled, .disabled.button--gray, .disabled.button--white, .disabled.button--outline, .button[disabled], [disabled].button--gray, [disabled].button--white, [disabled].button--outline {
    opacity: 1;
    background-color: #ececf0;
}

.button.disabled:hover, .disabled.button--gray:hover, .disabled.button--white:hover, .disabled.button--outline:hover, .button.disabled:focus, .disabled.button--gray:focus, .disabled.button--white:focus, .disabled.button--outline:focus, .button[disabled]:hover, [disabled].button--gray:hover, [disabled].button--white:hover, [disabled].button--outline:hover, .button[disabled]:focus, [disabled].button--gray:focus, [disabled].button--white:focus, [disabled].button--outline:focus {
    background-color: #fd9e20;
}

.button:focus, .button--gray:focus, .button--white:focus, .button--outline:focus, .button:hover, .button--gray:hover, .button--white:hover, .button--outline:hover {
    background-color: #fd9e20;
    opacity: 0.9;
}

.button--outline {
    color: #fd9e20;
    background-color: transparent;
    border: 2px solid #fd9e20;
}

.button--outline:focus, .button--outline:hover {
    opacity: 1;
    color: #fff;
}

.button--outline[disabled] {
    opacity: 0.25;
    background-color: transparent;
}

.button--white {
    padding: 15px 32px;
    background-color: transparent;
    border: 2px solid #fff;
}

.button--white:focus, .button--white:hover {
    opacity: 1;
    background-color: #fff;
    color: #000;
}

.button--gray {
    padding: 15px 32px;
    background-color: transparent;
    border: 2px solid #959595;
    color: #959595;
}

.button--gray:focus, .button--gray:hover {
    opacity: 1;
    background-color: #959595;
    color: #fff;
}

.row.wide {
    max-width: 1600px;
}

.page-title {
    color: #27274d;
    font-weight: 600;
    margin: 0 0 8px;
    font-size: 20px;
    line-height: 29px;
}

@media screen and (min-width: 40em) {
    .page-title {
        font-size: 24px;
        line-height: 29px;
    }
}

.input-checkbox,
input[type=checkbox],
input[type=radio] {
    appearance: none;
    width: 26px;
    height: 26px;
    border: 3px solid #ececf0;
    border-radius: 6px;
    background-color: transparent;
    transition: all 0.3s;
    position: relative;
    outline: 0;
    display: flex;
}

.input-checkbox:after,
input[type=checkbox]:after,
input[type=radio]:after {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: auto;
    color: #fff;
    opacity: 0;
    transition: all 0.3s;
}

.input-checkbox:checked,
input[type=checkbox]:checked,
input[type=radio]:checked {
    border-color: #fd9e20;
    background-color: #fd9e20;
}

.input-checkbox:checked:after,
input[type=checkbox]:checked:after,
input[type=radio]:checked:after {
    opacity: 1;
}

input[type=tel] {
    background-color: #fff !important;
}

abbr.required {
    text-decoration: none;
}

.required {
    color: #fd9e20;
}

select {
    padding: 12px 20px;
    color: #27274d;
    font-size: 12px;
    line-height: 15px;
    border: 2px solid #ececf0 !important;
    box-shadow: none !important;
    transition: all 0.3s;
    margin-bottom: 0;
    height: auto !important;
    background-image: url("../images/arrow-down.svg");
    background-position: right center;
    background-size: 10px 24px;
    border-radius: 25px;
}

select:focus {
    border-color: #27274d !important;
}

.input-text.input-text {
    box-shadow: none;
    border: 2px solid #ececf0;
    border-radius: 25px;
    padding: 13px;
    height: auto;
    color: #27274d;
    font-size: 12px;
    line-height: 15px;
    transition: all 0.3s;
    margin: 0;
    display: inline-block;
}

.input-text.input-text:hover, .input-text.input-text:focus {
    border-color: #fd9e20;
}

.input-text.input-text.placeholder {
    color: rgba(39, 39, 77, 0.5);
    font-size: 12px;
    line-height: 15px;
}

.input-text.input-text:-moz-placeholder {
    color: rgba(39, 39, 77, 0.5);
    font-size: 12px;
    line-height: 15px;
}

.input-text.input-text::-moz-placeholder {
    color: rgba(39, 39, 77, 0.5);
    font-size: 12px;
    line-height: 15px;
}

.input-text.input-text:-ms-input-placeholder {
    color: rgba(39, 39, 77, 0.5);
    font-size: 12px;
    line-height: 15px;
}

.input-text.input-text::-webkit-input-placeholder {
    color: rgba(39, 39, 77, 0.5);
    font-size: 12px;
    line-height: 15px;
}

body.page-template-default #inner-content {
    max-width: 720px;
}

body.page-template-default #content #inner-content {
    padding-bottom: 50px;
}

body.page-template-default .header__breadcrumbs {
    padding-top: 25px;
}

.section-title {
    color: #27274d;
    font-weight: 600;
    margin-bottom: 28px;
    font-size: 24px;
    line-height: 30px;
}

@media screen and (min-width: 40em) {
    .section-title {
        font-size: 30px;
        line-height: 50px;
    }
}

.header {
    background-color: #27274d;
    padding-top: 32px;
    padding-bottom: 55px;
    position: relative;
}

.header img.logo {
    transition: all 0.3s;
    max-width: 155px;
}

.header img.logo:hover, .header img.logo:focus {
    opacity: 0.9;
}

.header__logo {
    text-align: center;
    margin-bottom: 10px;
}

@media screen and (min-width: 40em) {
    .header__logo {
        margin-bottom: 30px;
    }
}

.header__search {
    text-align: center;
}

@media (min-width: 640px) and (max-width: 1099px) {
    .header__search {
        text-align: right;
    }
}

.header__search form {
    width: 100%;
    display: inline-flex;
}

@media screen and (min-width: 40em) {
    .header__search form {
        max-width: 457px;
    }
}

.header__search__form {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 5px 5px 5px 0;
}

.header__search__field {
    height: auto !important;
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    padding: 7px 0 7px 20px;
    margin-bottom: 0;
    border: 0 !important;
    box-shadow: none !important;
    background: none !important;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

@media screen and (min-width: 40em) {
    .header__search__field {
        border-right: 2px solid #343465 !important;
    }
}

.header__search__field:hover, .header__search__field:focus {
    background-color: #fff !important;
    color: #27274d;
}

.header__search__field:hover.placeholder, .header__search__field:focus.placeholder {
    color: #27274d;
}

.header__search__field:hover:-moz-placeholder, .header__search__field:focus:-moz-placeholder {
    color: #27274d;
}

.header__search__field:hover::-moz-placeholder, .header__search__field:focus::-moz-placeholder {
    color: #27274d;
}

.header__search__field:hover:-ms-input-placeholder, .header__search__field:focus:-ms-input-placeholder {
    color: #27274d;
}

.header__search__field:hover::-webkit-input-placeholder, .header__search__field:focus::-webkit-input-placeholder {
    color: #27274d;
}

.header__search__field.placeholder {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
}

.header__search__field:-moz-placeholder {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
}

.header__search__field::-moz-placeholder {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
}

.header__search__field:-ms-input-placeholder {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
}

.header__search__field::-webkit-input-placeholder {
    color: #fff;
    font-size: 12px;
    line-height: 15px;
}

.header__search__categories {
    padding: 7px 24px 7px 20px;
    margin-right: 10px;
    color: #fff;
    font-size: 12px;
    line-height: 15px;
    box-shadow: none !important;
    background: none !important;
    border: 0 !important;
    position: relative;
    transition: all 0.3s;
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    cursor: pointer;
    min-width: 115px;
    width: 100%;
    height: 100% !important;
}

@media (max-width: 480px) {
    .header__search__categories {
        display: none !important;
    }
}

@media (min-width: 640px) and (max-width: 740px) {
    .header__search__categories {
        display: none !important;
    }
}

.header__search__categories:hover, .header__search__categories:focus {
    background-color: #fff !important;
    color: #27274d;
}

.header__search__categories-wrap {
    position: relative;
}

.header__search__categories-wrap:hover:before, .header__search__categories-wrap:focus:before {
    color: #27274d !important;
    transform: translateY(-50%) rotate(180deg);
}

.header__search__categories-wrap:before {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 15px;
    color: #fff;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    z-index: 1;
}

@media (max-width: 480px) {
    .header__search__categories-wrap:before {
        display: none !important;
    }
}

.header__search__submit {
    margin-left: 10px;
    border-radius: 25px;
    padding: 9px 24px;
    color: #fff;
    font-size: 12px;
    background-color: #fd9e20;
}

.header__search__submit i {
    margin-right: 0;
}

.header__mobile-btn {
    margin-left: 20px;
}

@media screen and (max-width: 39.9375em) {
    .header__lang {
        text-align: center;
        margin-bottom: 10px;
    }

    .header__lang > .menu {
        display: inline-block;
    }
}

@media screen and (min-width: 40em) {
    .header__lang {
        position: absolute;
        right: 0;
        top: 6px;
    }
}

.header__top > .row {
    position: relative;
}

.header__top__wrap {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
}

@media (min-width: 640px) and (max-width: 1099px) {
    .header__top__wrap {
        grid-template-columns: min-content auto;
    }
}

@media (min-width: 1100px) {
    .header__top__wrap {
        grid-template-columns: min-content auto min-content;
    }
}

.header__top__left {
    display: flex;
    flex-direction: column;
}

@media screen and (min-width: 40em) {
    .header__top__left {
        flex-direction: row;
    }
}

.header__top__right {
    display: flex;
    align-items: center;
}

@media screen and (max-width: 39.9375em) {
    .header__top__right {
        justify-content: flex-end;
    }
}

@media (min-width: 640px) and (max-width: 1099px) {
    .header__top__right {
        grid-column: 1/-1;
        justify-content: flex-end;
    }
}

.header__top__item {
    padding: 13px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.header__top__item .caption {
    color: #fff;
    font-size: 11px;
    line-height: 14px;
    transition: all 0.3s;
}

.header__top__item.cart {
    position: relative;
}

.header__top__item.cart .cart-number {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: #fd9e20;
    color: #fff;
    border-radius: 9px;
    min-width: 18px;
    line-height: 18px;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    display: inline-block;
    padding: 0 2px;
}

.header__top__item.phone .caption {
    font-size: 13px;
    font-weight: 500;
    line-height: 16px;
}

.header__top__item:hover, .header__top__item:focus {
    background-color: #fff;
}

.header__top__item:hover .caption, .header__top__item:focus .caption {
    color: #27274d;
}

.header__top__item i {
    display: inline-block;
    font-size: 10px;
    color: #fd9e20;
    margin-right: 10px;
}

@media screen and (max-width: 39.9375em) {
    .header__top__left .header__top__item + .header__top__item {
        margin-top: 10px;
    }

    .header__top__right .header__top__item + .header__top__item {
        margin-left: 10px;
    }
}

@media screen and (min-width: 40em) {
    .header__top__item + .header__top__item {
        margin-left: 10px;
    }
}

.header__bottom {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 50%);
    z-index: 2000;
    width: 100%;
    background-color: #fd9e20;
    border-radius: 38px;
}

.header__breadcrumbs {
    margin-bottom: 40px;
}

.header__breadcrumbs .breadcrumbs {
    margin: 0 0 6px;
    color: #a2a2b3;
    font-size: 12px;
    font-weight: 400;
}

.header__breadcrumbs .breadcrumbs a {
    color: #a2a2b3;
    font-size: 12px;
    font-weight: 400;
}

.header__breadcrumbs .page-title {
    margin-bottom: 0;
}

.top-bar {
    background: none;
    padding: 0;
}

.header__nav > .menu {
    padding: 3px 16px 0;
}

.header__nav > .menu .is-dropdown-submenu {
    z-index: 999;
    border: 0 !important;
    background: none !important;
}

.header__nav > .menu > li {
    transition: all 0.3s;
}

.header__nav > .menu > li:last-child .is-dropdown-submenu {
    top: 96% !important;
}

.header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent > a {
    padding-right: 16px !important;
}

.header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent > a:after {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: static !important;
    background-color: transparent !important;
    color: #fff !important;
    font-size: 6px;
    line-height: 1;
    text-align: center;
    transition: all 0.3s;
    display: inline-block;
    margin-left: 7px;
    width: auto !important;
    height: auto !important;
    border: 0 !important;
    content: "\e91b";
}

.header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent:hover, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent:focus, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent.active, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-active {
    background: none;
}

.header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent:hover > a, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent:focus > a, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent.active > a, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-active > a {
    background-color: #fff !important;
    color: #27274d;
}

.header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent:hover > a i, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent:focus > a i, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent.active > a i, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-active > a i {
    color: #fd9e20;
}

.header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent:hover > a:after, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent:focus > a:after, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent.active > a:after, .header__nav > .menu > li.is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-active > a:after {
    transform: rotate(180deg);
    color: #27274d !important;
}

.header__nav > .menu > li > a {
    padding: 13px 16px 16px;
    background: none;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.header__nav > .menu > li > a .menu-item__icon {
    display: inline-block;
    font-size: 20px;
    margin-right: 10px;
    transition: all 0.3s;
    color: #27274d;
}

.header__nav > .menu > li:hover, .header__nav > .menu > li:focus, .header__nav > .menu > li.active {
    background: none;
}

.header__nav > .menu > li:hover > a, .header__nav > .menu > li:focus > a, .header__nav > .menu > li.active > a {
    background: #fff;
    color: #27274d;
}

.header__nav > .menu > li:hover > a i, .header__nav > .menu > li:focus > a i, .header__nav > .menu > li.active > a i {
    color: #fd9e20;
}

.header__nav > .menu .submenu .is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-dropdown-submenu-parent.opens-right:hover > a:after, .header__nav > .menu .submenu .is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-dropdown-submenu-parent.opens-right:focus > a:after {
    border-color: transparent transparent transparent #fd9e20;
}

.header__nav > .menu .submenu .is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-dropdown-submenu-parent.is-dropdown-submenu-parent.opens-right > a:after {
    border-color: transparent transparent transparent #fff;
}

.header__nav .is-dropdown-submenu-item {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 25px 25px;
    background-color: #fff;
    display: flex !important;
    align-items: center;
    margin-bottom: 15px;
}

.header__nav .is-dropdown-submenu-item > a {
    color: #27274d;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.header__nav .is-dropdown-submenu-item:last-child {
    margin-bottom: 0;
}

.header__nav .is-dropdown-submenu-item.active > a, .header__nav .is-dropdown-submenu-item.is-active > a, .header__nav .is-dropdown-submenu-item:hover > a, .header__nav .is-dropdown-submenu-item:focus > a {
    color: #fd9e20;
}

.header__lang li {
    display: inline-block;
}

.header__lang li > a {
    padding: 0;
    display: inline-flex;
    align-items: center;
    width: 24px;
    height: 24px;
    background: none !important;
    border: 2px solid transparent;
    border-radius: 50%;
    position: relative;
}

.header__lang li > a:before {
    content: "";
    position: absolute;
    display: inline-block;
    border-radius: 50%;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    transition: all 0.3s;
}

.header__lang li > a img {
    display: none;
}

.header__lang li > a span {
    margin-left: 0;
}

.header__lang li.current-lang > a, .header__lang li:hover > a, .header__lang li:focus > a {
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.header__lang li.current-lang > a:before, .header__lang li:hover > a:before, .header__lang li:focus > a:before {
    opacity: 1;
}

.header__lang li.lang-item-pl > a:before {
    background-image: url("../images/pl.svg");
}

.header__lang li.lang-item-en > a:before {
    background-image: url("../images/en.svg");
}

.header__lang li.lang-item-de > a:before {
    background-image: url("../images/de.svg");
}

.header__lang li + li {
    margin-left: 8px;
}

.footer .product-categories > li.current-cat > a, .footer .product-categories > li.active > a, .footer .product-categories > li:hover > a, .footer .product-categories > li:focus > a,
.footer .menu > li.current-cat > a,
.footer .menu > li.active > a,
.footer .menu > li:hover > a,
.footer .menu > li:focus > a {
    background: none;
    color: #fff;
}

.footer .product-categories > li.current-cat > a span:after, .footer .product-categories > li.active > a span:after, .footer .product-categories > li:hover > a span:after, .footer .product-categories > li:focus > a span:after,
.footer .menu > li.current-cat > a span:after,
.footer .menu > li.active > a span:after,
.footer .menu > li:hover > a span:after,
.footer .menu > li:focus > a span:after {
    width: 100%;
}

.footer .product-categories > li > a,
.footer .menu > li > a {
    color: #a2a2b3;
    font-size: 14px;
    line-height: 20px;
    padding: 0;
}

.footer .product-categories > li > a span,
.footer .menu > li > a span {
    position: relative;
}

.footer .product-categories > li > a span:after,
.footer .menu > li > a span:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fd9e20;
    transition: all 0.3s;
}

.footer .product-categories > li + li,
.footer .menu > li + li {
    margin-top: 14px;
}

.off-canvas {
    background-color: #fd9e20;
}

.off-canvas .menu li {
    transition: all 0.3s;
}

.off-canvas .menu li a {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

.off-canvas .menu li:hover, .off-canvas .menu li:focus, .off-canvas .menu li.active {
    box-shadow: 0 0 8px rgba(7, 7, 7, 0.07);
}

.off-canvas .menu li:hover > a, .off-canvas .menu li:focus > a, .off-canvas .menu li.active > a {
    background: #fff;
    color: #fd9e20;
}

.off-canvas .menu li.is-accordion-submenu-item > a {
    padding-left: 32px !important;
}

.megamenu {
    position: absolute;
    width: 100%;
    top: calc(100% + 26px);
    z-index: 99999;
}

.megamenu__wrap {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 0 25px 25px;
    background-color: #fff;
    display: flex !important;
    align-items: center;
}

.megamenu__item {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    min-width: 180px;
}

.megamenu__item:not(:last-child) {
    border-right: 2px solid #ececf0;
}

.megamenu__item li {
    margin-bottom: 15px;
}

.megamenu__item li > a {
    color: #27274d;
    font-size: 13px;
    line-height: 1;
    font-weight: 500;
}

.megamenu__item li:last-child {
    margin-bottom: 0;
}

.megamenu__item li.active > a, .megamenu__item li.is-active > a, .megamenu__item li:hover > a, .megamenu__item li:focus > a {
    background: none;
    color: #fd9e20;
}

.megamenu__group {
    padding: 30px 44px;
}

.megamenu__group__caption {
    color: #a2a2b3;
    font-size: 11px;
    line-height: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.megamenu__featured {
    padding: 50px 117px 50px 40px;
    position: relative;
    border-left: 2px solid #ececf0;
}

.megamenu__featured .product__thumb {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(50%, -50%);
    max-height: 150px;
}

.megamenu__featured .product__title {
    color: #27274d;
    font-size: 14px;
    line-height: 17px;
    margin-bottom: 3px;
}

.megamenu__featured .product__sku {
    color: #a2a2b3;
    font-size: 10px;
    line-height: 12px;
    padding-bottom: 11px;
    margin-bottom: 9px;
    position: relative;
}

.megamenu__featured .product__sku:after {
    content: "";
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #ececf0;
    bottom: 0;
    left: 0;
}

.megamenu__featured .product__description {
    color: #a2a2b3;
    font-size: 11px;
    line-height: 15px;
    margin-bottom: 33px;
    width: 230px;
}

.megamenu__featured .product__description p {
    color: #a2a2b3;
    font-size: 11px;
    line-height: 15px;
}

.megamenu__featured .product__description p:last-child {
    margin-bottom: 0;
}

.megamenu__featured .product__stock {
    color: #a2a2b3;
    font-size: 10px;
    font-weight: 400;
    line-height: 12px;
    display: flex;
    margin-bottom: 6px;
}

.megamenu__featured .product__stock__text {
    color: #27274d;
    display: inline-block;
    margin-left: 4px;
}

.megamenu__featured .product__ribbons {
    position: static !important;
    margin-bottom: 5px;
}

.megamenu__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #27274d;
    opacity: 0.8;
    z-index: 1000;
}

.footer {
    margin-top: 0;
    background-color: #27274d;
}

.footer__social-links {
    display: flex;
}

.footer__social-links li + li {
    margin-left: 10px;
}

.footer__top {
    position: relative;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (max-width: 39.9375em) {
    .footer__top > .row > .columns:nth-child(n+2) {
        margin-top: 30px;
    }

    .footer__top > .row > .columns:nth-child(2) {
        margin-top: 14px;
    }

    .footer__top > .row > .columns:nth-child(2) .widgettitle {
        display: none !important;
    }
}

@media (min-width: 640px) and (max-width: 890px) {
    .footer__top > .row > .columns {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }

    .footer__top > .row > .columns:nth-child(n+3) {
        margin-top: 30px;
    }
}

.footer__bottom {
    padding-top: 50px;
    padding-bottom: 50px;
    color: #a2a2b3;
    font-size: 13px;
    line-height: 16px;
}

.footer__bottom a {
    color: #fff;
    position: relative;
}

.footer__bottom a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fd9e20;
    transition: all 0.3s;
}

.footer__bottom a:hover:after, .footer__bottom a:focus:after {
    width: 100%;
}

@media screen and (max-width: 39.9375em) {
    .footer__copyright span {
        display: block;
        margin-bottom: 10px;
    }
}

@media (max-width: 1023px) {
    .footer__copyright {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        text-align: center;
    }
}

@media (max-width: 1023px) {
    .footer__madeby {
        flex: 0 0 100%;
        text-align: center;
    }
}

.footer__hr {
    position: absolute;
    bottom: 0;
    max-width: none;
    width: 100vw;
    margin: 0;
    border-bottom-width: 2px;
    border-bottom-color: #343465;
    left: 0;
}

@media screen and (min-width: 40em) {
    .footer__hr {
        left: 15px;
    }
}

.footer .widgettitle {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    line-height: 28px;
    margin-bottom: 23px;
}

.footer .textwidget {
    color: #a2a2b3;
    font-size: 14px;
    line-height: 22px;
}

.footer .textwidget p {
    margin-bottom: 0;
}

@media print, screen and (min-width: 80em) {
    .footer .product-categories {
        column-count: 2;
    }

    .footer .product-categories li:nth-child(n+6) {
        padding-left: 60px;
    }
}

.footer__social-link {
    opacity: 0.7;
    display: inline-block;
    color: #fff;
    transition: all 0.3s;
    width: 44px;
    height: 44px;
    line-height: 44px;
    text-align: center;
    border: 2px solid #ebebeb;
    border-radius: 50%;
}

.footer__social-link i {
    font-size: 20px;
}

.footer__social-link:hover, .footer__social-link:focus {
    opacity: 1;
    color: #fff;
}

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

.footer .contact__item:nth-child(n+2) {
    margin-top: 15px;
}

.footer .contact__item.phone .footer .contact__item__text a {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

.footer .contact__item__icon {
    color: #fd9e20;
    margin-right: 15px;
    background-color: #343465;
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.footer .contact__item__icon i {
    font-size: 16px;
    color: #fd9e20;
}

.footer .contact__item__text {
    color: #a2a2b3;
    font-size: 14px;
    line-height: 17px;
}

.footer .contact__item__link {
    color: #a2a2b3;
    position: relative;
}

.footer .contact__item__link:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fd9e20;
    transition: all 0.3s;
}

.footer .contact__item__link:hover, .footer .contact__item__link:focus {
    color: #fff;
}

.footer .contact__item__link:hover:after, .footer .contact__item__link:focus:after {
    width: 100%;
}

.home1 {
    padding-top: 30px;
}

.home1 .product-archive {
    padding-bottom: 0;
}

.home1 > .row {
    position: relative;
    padding-left: 10px;
}

@media screen and (min-width: 40em) {
    .home1 > .row {
        padding-left: 15px;
    }
}

.home1__head {
    margin-bottom: 25px;
}

.home1__title {
    color: #27274d;
    font-weight: 600;
    line-height: 1;
    font-size: 20px;
}

@media screen and (min-width: 40em) {
    .home1__title {
        font-size: 24px;
    }
}

.home1__sales {
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 13px !important;
    border-radius: 30px;
    border: 3px solid #27274d;
    position: relative;
}

@media screen and (max-width: 39.9375em) {
    .home1__sales {
        margin-left: 10px;
        margin-right: 10px;
        max-width: calc(100% - 20px);
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .home1__sales {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

.home1__sales:before, .home1__sales:after {
    content: "";
    position: absolute;
    top: 30px;
    width: 3px;
    height: calc(100% - 60px);
    background-color: #fd9e20;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#27274d), to(#fd9e20));
    background-image: -webkit-linear-gradient(top, #27274d, #fd9e20);
    background-image: -moz-linear-gradient(top, #27274d, #fd9e20);
    background-image: -o-linear-gradient(top, #27274d, #fd9e20);
    background-image: linear-gradient(to bottom, #27274d, #fd9e20);
}

.home1__sales .slick-track {
    display: flex;
}

.home1__sales:before {
    left: -3px;
}

.home1__sales:after {
    right: -3px;
}

.home1__sales__after:before {
    content: "";
    position: absolute;
    bottom: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: 60px;
    border-radius: 30px;
    border: 3px solid #fd9e20;
    border-top: 0 !important;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    z-index: 998;
}

.home1__sales__after:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: 60px;
    background-color: #fff;
    z-index: 997;
}

.home1__sales .home1__head {
    padding: 10px 10px 0 15px;
}

.home1__sales .product {
    border: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: none !important;
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
}

.home1__sales .product:hover .product__thumb, .home1__sales .product:focus .product__thumb {
    opacity: 0.9;
}

.home1__sales .product__content {
    padding-bottom: 0 !important;
    height: 100%;
}

.home1__sales .product__content > .inner {
    position: static !important;
    padding: 0 !important;
}

.home1__sales .product__title {
    margin-top: 27px !important;
    display: block !important;
    color: #27274d !important;
    font-size: 18px !important;
    line-height: 22px !important;
    font-weight: 400 !important;
    margin-bottom: 5px !important;
}

.home1__sales .product__sku {
    color: #a2a2b3 !important;
    font-size: 15px !important;
    font-weight: 400 !important;
    line-height: 20px !important;
    padding-bottom: 15px !important;
    margin-bottom: 15px !important;
    position: relative !important;
}

.home1__sales .product__sku:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 50px;
    height: 3px;
    background-color: #ececf0;
    transform: translateX(-50%);
}

.home1__sales .product__prices {
    margin-bottom: 30px;
}

.home1__sales .product__prices span.current {
    color: #27274d !important;
    font-size: 18px !important;
    font-weight: 600 !important;
}

.home1__sales .product__prices span.current small {
    font-size: 12px !important;
}

@media screen and (min-width: 40em) {
    .home1__sales .product__prices span.current {
        font-size: 23px !important;
    }

    .home1__sales .product__prices span.current small {
        font-size: 14px !important;
    }
}

.home1__sales .product__prices span.old {
    margin-top: 6px !important;
    font-size: 14px !important;
}

.home1__sales .product__prices span.old small {
    font-size: 10px !important;
}

@media screen and (min-width: 40em) {
    .home1__sales .product__prices span.old {
        font-size: 16px !important;
    }

    .home1__sales .product__prices span.old small {
        font-size: 12px !important;
    }
}

.home1__sales .product__footer {
    padding: 20px !important;
    border-radius: 25px;
    background-color: rgba(236, 236, 240, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 999;
    margin-top: auto;
}

.home1__sales .product__footer:before {
    display: none !important;
}

.home1__sales .product__footer .button, .home1__sales .product__footer .button--outline, .home1__sales .product__footer .button--white, .home1__sales .product__footer .button--gray {
    font-size: 11px;
    padding: 18px 20px;
}

.home1__sales .product__ribbons {
    display: none !important;
}

.home1__sales .product__thumb {
    position: relative;
    padding-bottom: 50%;
    transition: all 0.3s;
}

.home1__sales .product__thumb img {
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    max-height: 100% !important;
}

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

@media print, screen and (min-width: 80em) {
    .home1__products {
        padding-left: 84px;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .home1__products {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

.home1__products:nth-child(2):last-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 10px;
}

@media screen and (min-width: 40em) {
    .home1__products:nth-child(2):last-child {
        padding-left: 15px;
    }
}

.home1__arrows {
    position: relative;
    display: flex;
    align-items: center;
}

.home1__arrows .slick-arrow {
    position: static !important;
    border: 3px solid rgba(162, 162, 179, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #27274d !important;
    opacity: 0.3;
    display: inline-flex;
    font-size: 16px;
    transform: none !important;
    left: 0 !important;
}

.home1__arrows .slick-arrow i {
    margin: auto;
    display: inline-block;
}

.home1__arrows .slick-arrow:hover, .home1__arrows .slick-arrow:focus {
    opacity: 1;
}

.home1__arrows .slick-arrow:before {
    display: none !important;
}

.home1__arrows .slick-arrow:nth-child(n+1) {
    margin-left: 5px;
}

.home1__products {
    padding-top: 30px;
}

@media screen and (min-width: 40em) {
    .home5 {
        padding-top: 168px;
        margin-left: 15px;
        margin-right: 15px;
    }
}

.home-products + .home5 {
    padding-top: 0;
}

@media screen and (min-width: 40em) {
    .home-products + .home5 {
        padding-top: 50px;
    }
}

.home5 > .row {
    position: relative;
}

.home5__title {
    color: #fff;
}

.home5__description {
    margin-bottom: 30px;
}

.home5__text {
    background-color: #27274d;
    border-radius: 30px;
}

@media screen and (max-width: 39.9375em) {
    .home5__text {
        padding: 30px 20px;
    }
}

@media screen and (min-width: 40em) {
    .home5__text {
        padding-left: 5vw;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.home5__text p {
    color: rgba(255, 255, 255, 0.5) !important;
}

.home5__text p.lead {
    color: #fff !important;
}

.home5__text__content {
    max-width: 500px;
}

.home5__icon {
    margin-bottom: 20px;
}

.home5__icon i {
    font-size: 36px;
    color: #fd9e20;
}

@media screen and (max-width: 39.9375em) {
    .home5__thumb {
        margin-bottom: 30px;
        order: -1;
    }
}

@media screen and (min-width: 40em) {
    .home5__thumb {
        position: absolute;
        right: 0;
        top: -68px;
        width: 50%;
        height: 100%;
    }
}

.home5__thumb > .inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.home5__thumb > .inner picture,
.home5__thumb > .inner img {
    border-radius: 30px;
}

@media screen and (max-width: 39.9375em) {
    .home5__thumb > .inner picture,
    .home5__thumb > .inner img {
        width: 100%;
        max-height: 256px;
        object-fit: cover;
        object-position: center;
    }
}

@media screen and (min-width: 40em) {
    .home5__thumb > .inner picture,
    .home5__thumb > .inner img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.home6 {
    padding-bottom: 50px;
}

@media screen and (min-width: 40em) {
    .home6 {
        padding-bottom: 100px;
    }
}

.home6__title {
    text-align: center;
    margin-bottom: 20px;
}

.home6__footer {
    text-align: center;
    margin-top: 30px;
}

.home-products {
    padding-top: 12px;
    padding-bottom: 12px;
}

.home-products--new {
    background-color: #f6f6f8;
}

.home-products__slider {
    margin-left: -5px;
    margin-right: -5px;
    z-index: 999;
}

.home-products__slider .slick-slide {
    margin: 5px;
}

.home-products__arrows {
    position: relative;
    display: flex;
    align-items: center;
}

.home-products__arrows .slick-arrow {
    position: static !important;
    border: 3px solid rgba(162, 162, 179, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #27274d !important;
    opacity: 0.3;
    display: inline-flex;
    font-size: 16px;
    transform: none !important;
    left: 0 !important;
}

.home-products__arrows .slick-arrow i {
    margin: auto;
    display: inline-block;
}

.home-products__arrows .slick-arrow:hover, .home-products__arrows .slick-arrow:focus {
    opacity: 1;
}

.home-products__arrows .slick-arrow:before {
    display: none !important;
}

.home-products__arrows .slick-arrow:nth-child(n+1) {
    margin-left: 5px;
}

.home-products .product {
    border-radius: 30px;
    border: 2px solid #ececf0;
    margin: 0 5px;
    transition: all 0.3s;
}

.home-products .product:hover, .home-products .product:focus {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #fff;
}

.home-products .product__content {
    position: relative;
    padding-bottom: 100%;
}

.home-products .product__content > .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
}

.home-products .product .product__thumb img {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-height: 50%;
}

.home-products__title {
    color: #27274d;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 28px;
}

@media screen and (min-width: 40em) {
    .home-products__title {
        font-size: 30px;
        line-height: 56px;
    }
}

.home-products__head .home-products__title {
    margin-bottom: 0;
}

.home-products__head {
    margin-bottom: 20px;
}

.home-float {
    position: absolute;
    top: 0;
    right: -150px;
    border-radius: 22px;
    background-color: #ececf0;
    padding: 11px 5px 5px;
    width: 120px;
    display: none;
}

@media (min-width: 1750px) {
    .home-float {
        display: block;
    }
}

.home-float__title {
    color: #27274d;
    font-size: 11px;
    line-height: 14px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 10px;
}

.home-float__items {
    background-color: #fff;
    border-radius: 18px;
    display: grid;
    grid-auto-rows: 1fr;
}

.home-float__item {
    padding: 15px 10px 10px;
    text-align: center;
    border-bottom: 2px solid #ececf0;
}

.home-float__item:last-child {
    border-bottom: 0;
}

.home-float__item__icon {
    font-size: 16px;
    color: #fd9e20;
    margin-bottom: 16px;
}

.home-float__item__caption {
    color: #27274d;
    font-size: 10px;
    line-height: 12px;
}

.product__offer.expired {
    display: none;
}

.product__offer__title {
    color: #27274d;
    text-align: center;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.92px;
    line-height: 20px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product__offer__countdown {
    display: flex;
    align-items: center;
    color: #27274d;
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
}

.product__offer__countdown span {
    display: inline-block;
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 16px;
    position: relative;
}

.product__offer__countdown span.days:not(.hide), .product__offer__countdown span.days:not(.hide) ~ span {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 18px;
}

.product__offer__countdown span:after {
    position: absolute;
    content: ":";
    display: inline-block;
    right: -10px;
}

.product__offer__countdown span:last-child {
    margin-right: 0;
}

.product__offer__countdown span:last-child:after {
    display: none;
}

body.tax-product_cat #content,
body.post-type-archive-product #content {
    padding-top: 25px;
}

.product-archive .product {
    border-radius: 30px;
    border: 2px solid #ececf0;
    transition: all 0.3s;
}

.product-archive .product__sku {
    color: #a2a2b3;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 6px;
}

.product-archive .product__footer {
    padding-top: 5px;
    position: relative;
}

.product-archive .product__footer:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: #ececf0;
}

.product-archive .product__stock {
    font-size: 10px;
    line-height: 12px;
    color: #27274d;
    white-space: nowrap;
}

.product-archive .product__stock + .product__prices {
    margin-left: 10px;
}

.product-archive .product__stock__caption {
    color: #a2a2b3;
    display: inline-block;
    margin-left: 4px;
}

.product-archive .product__content {
    min-height: 350px;
    position: relative;
    padding-bottom: 100%;
}

.product-archive .product__content > .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
}

.product-archive .product:hover, .product-archive .product:focus {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #fff;
}

.product-archive .product__thumb {
    display: flex;
    transition: all 0.3s;
    overflow: hidden;
    text-align: center;
}

.product-archive .product__thumb img {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-height: 50%;
}

.product-archive .product__title {
    color: #27274d;
    font-size: 14px;
    line-height: 17px;
    margin-top: auto;
    margin-bottom: 5px;
    z-index: 9;
}

.product-archive .products {
    margin-bottom: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-auto-rows: 1fr;
    grid-gap: 10px;
    margin-left: 0;
    margin-right: 0;
}

@media screen and (min-width: 40em) and (max-width: 79.9375em) {
    .product-archive .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media print, screen and (min-width: 80em) {
    .product-archive .products {
        grid-template-columns: repeat(3, 1fr);
    }

    body.search .product-archive .products {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .product-archive .products {
        grid-template-columns: repeat(auto-fit, 320px);
    }

    body.search .product-archive .products {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-archive__header {
    display: grid;
    grid-gap: 20px 10px;
    grid-template-columns: 1fr;
    margin-bottom: 24px;
}

@media screen and (max-width: 39.9375em) {
    body:not(.search) .product-archive__header {
        margin-top: 24px;
    }
}

@media (min-width: 480px) and (max-width: 839px) {
    .product-archive__header {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-archive__header .woocommerce-pagination--mini {
        grid-column: 2;
    }
}

@media (min-width: 840px) {
    .product-archive__header {
        grid-template-columns: min-content min-content 1fr;
    }
}

@media screen and (min-width: 40em) {
    .product-archive__header {
        margin-bottom: 48px;
    }
}

@media (max-width: 800px) {
    .product-archive__header {
        align-items: center;
        flex-direction: column;
    }
}

.product-archive__page, .product-archive__sort {
    min-width: 200px;
}

@media screen and (min-width: 40em) {
    .product-archive__page, .product-archive__sort {
        width: auto;
    }
}

.product-archive__page__wrap, .product-archive__sort__wrap {
    position: relative;
}

.product-archive__page__wrap:hover:before, .product-archive__page__wrap:focus:before, .product-archive__sort__wrap:hover:before, .product-archive__sort__wrap:focus:before {
    transform: translateY(-50%) rotate(180deg);
}

.product-archive__page__wrap:before, .product-archive__sort__wrap:before {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 15px;
    color: #27274d !important;
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s;
    z-index: 1;
}

.product-archive__page__wrap .orderby, .product-archive__sort__wrap .orderby {
    padding: 12px 30px 12px 20px;
    color: #27274d;
    font-size: 12px;
    line-height: 15px;
    box-shadow: none !important;
    background-color: #fff !important;
    border: 2px solid #ececf0 !important;
    position: relative;
    transition: all 0.3s;
    border-radius: 25px;
    cursor: pointer;
    background-image: none !important;
}

.product-archive__page__wrap .orderby:hover, .product-archive__page__wrap .orderby:focus, .product-archive__sort__wrap .orderby:hover, .product-archive__sort__wrap .orderby:focus {
    border-color: #27274d !important;
}

.product-archive__page {
    min-width: 150px;
}

.product-archive__sort__wrap, .product-archive__search__wrap {
    position: relative;
}

.product-archive__sort__caption, .product-archive__search__caption {
    color: #000;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.product-archive__search__caption {
    margin-top: 10px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .product-archive__search__wrap {
        max-width: 270px;
    }
}

.product-archive__search__wrap .search__submit {
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
}

.product-archive__search__wrap .search__submit:hover i, .product-archive__search__wrap .search__submit:focus i {
    color: #fd9e20;
}

.product-archive__search__wrap .search__submit i {
    color: rgba(133, 133, 133, 0.5);
    font-size: 16px;
    transition: all 0.3s;
}

.product-archive__search__wrap .search-field {
    box-shadow: none;
    border: 2px solid #eee;
    padding: 16px 35px;
    transition: all 0.3s;
    color: rgba(133, 133, 133, 0.5);
    font-size: 14px;
    margin-bottom: 0;
    height: auto !important;
}

.product-archive__search__wrap .search-field:focus {
    border-color: #fd9e20;
    color: #000;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .product-archive__left {
        flex: 0 0 33.33% !important;
        max-width: 33.33% !important;
    }
}

@media screen and (max-width: 39.9375em) {
    .product-archive__left {
        order: 99;
        margin-top: 30px;
    }
}

.product-archive__left .sidebar {
    background-color: rgba(236, 236, 240, 0.5);
    padding: 30px;
    border-radius: 10px;
}

.product-archive__left .sidebar:nth-child(n+2) {
    margin-top: 10px;
}

.product-archive__left .widget:nth-child(n+2) {
    margin-top: 40px;
}

.product-archive__left .widgettitle {
    color: #27274d;
    font-size: 10px;
    line-height: 12px;
    font-weight: 600;
    letter-spacing: 0.63px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    body:not(.search):not(.woocommerce-account) .product-archive__right {
        flex: 0 0 66.67% !important;
        max-width: 66.67% !important;
    }
}

.product-archive .widget_product_categories .product-categories {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}

.product-archive .widget_product_categories ul li .inner {
    display: flex;
    align-items: center;
    padding-left: 30px;
    position: relative;
}

.product-archive .widget_product_categories ul li .cat-icon {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 12px;
    line-height: 1;
}

.product-archive .widget_product_categories ul li .cat-icon i {
    font-size: 12px;
}

.product-archive .widget_product_categories ul li .children {
    margin-top: 15px;
    margin-left: 15px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
}

.product-archive .widget_product_categories ul li.current-cat-parent, .product-archive .widget_product_categories ul li.current-cat {
    order: -1;
}

.product-archive .widget_product_categories ul li.current-cat-parent > .inner > .count, .product-archive .widget_product_categories ul li.current-cat-parent > .inner > a, .product-archive .widget_product_categories ul li.current-cat > .inner > .count, .product-archive .widget_product_categories ul li.current-cat > .inner > a {
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

.product-archive .widget_product_categories ul li.current-cat-parent > .inner > .cat-icon i, .product-archive .widget_product_categories ul li.current-cat > .inner > .cat-icon i {
    font-size: 20px;
    color: #27274d;
}

.product-archive .widget_product_categories ul li.current-cat-parent > .children, .product-archive .widget_product_categories ul li.current-cat > .children {
    display: grid !important;
}

.product-archive .widget_product_categories ul li.current-cat-parent > .inner > a:after, .product-archive .widget_product_categories ul li.current-cat > .inner > a:after {
    transform: rotate(90deg);
}

.product-archive .widget_product_categories ul li.cat-parent > .inner > a:after {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: all 0.3s;
    font-size: 8px;
    display: inline-block;
    margin-left: 6px;
}

.product-archive .widget_product_categories ul li.cat-parent.active > .inner > a:after {
    transform: rotate(90deg);
}

.product-archive .widget_product_categories ul li.cat-parent .children {
    display: none;
}

.product-archive .widget_product_categories ul li.active > .children {
    display: grid !important;
}

.product-archive .widget_product_categories ul li .count {
    color: #a2a2b3;
    font-size: 12px;
    line-height: 1;
    display: inline-block;
    margin-left: 4px;
}

.product-archive .widget_product_categories ul li a {
    color: #27274d;
    font-size: 12px;
    line-height: 1;
}

.product-archive .widget_product_categories ul li a:hover, .product-archive .widget_product_categories ul li a:focus {
    color: #fd9e20;
}

.product-archive .widget_layered_nav ul li {
    display: flex;
    transition: all 0.3s;
}

.product-archive .widget_layered_nav ul li:nth-child(n+2) {
    margin-top: 10px;
}

.product-archive .widget_layered_nav ul li a {
    display: flex;
    align-items: center;
}

.product-archive .widget_layered_nav ul li span {
    color: #27274d;
    font-size: 13px;
    font-weight: 400;
    line-height: 20px;
}

.product-archive .widget_layered_nav ul li .color {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
    border-radius: 50%;
    border: 3px solid #fff;
    display: inline-block;
    margin-left: auto;
}

.product-archive .widget_layered_nav ul li i {
    opacity: 0;
    margin: auto;
    transition: all 0.3s;
}

.product-archive .widget_layered_nav ul li.chosen i {
    opacity: 1;
}

.product-archive .widget_layered_nav ul li.chosen span {
    font-weight: 500;
}

.product-archive .widget_layered_nav ul li.chosen .input-checkbox {
    background-color: #fd9e20;
    border-color: #fd9e20;
}

.product-archive .widget_layered_nav ul li.chosen i {
    color: #fff;
}

.product-archive .widget_layered_nav ul li .input-checkbox {
    transition: all 0.3s;
    display: flex;
    cursor: pointer;
    margin-right: 16px;
}

.product-archive .widget_layered_nav ul li .input-checkbox:after {
    display: none;
}

.product-archive .widget_layered_nav ul li .input-checkbox:hover i, .product-archive .widget_layered_nav ul li .input-checkbox:focus i {
    opacity: 1;
}

.product-archive .widget_layered_nav ul li:focus, .product-archive .widget_layered_nav ul li:hover {
    color: #fd9e20;
}

.product-archive .widget_layered_nav ul li:focus a, .product-archive .widget_layered_nav ul li:hover a {
    color: #fd9e20 !important;
}

.product-archive .widget_layered_nav ul li:focus .input-checkbox, .product-archive .widget_layered_nav ul li:hover .input-checkbox {
    border-color: #fd9e20;
}

.woocommerce-loop-product__link {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.woocommerce-pagination {
    margin-top: 60px;
}

.woocommerce-pagination .page-numbers {
    margin-left: 0;
    margin-bottom: 0;
    text-align: center;
}

.woocommerce-pagination .page-numbers li {
    display: inline-block;
}

.woocommerce-pagination .page-numbers li.prev > a, .woocommerce-pagination .page-numbers li.next > a,
.woocommerce-pagination .page-numbers li .page-numbers {
    min-width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border: 3px solid #f6f6f8;
    border-radius: 50%;
    background-color: #f6f6f8;
    color: #a2a2b3;
    font-size: 12px;
    font-weight: 500;
    transition: all 0.3s;
    display: inline-block;
}

.woocommerce-pagination .page-numbers li.prev > a.current, .woocommerce-pagination .page-numbers li.next > a.current,
.woocommerce-pagination .page-numbers li .page-numbers.current {
    border-color: #27274d !important;
    color: #fff !important;
    background-color: #27274d !important;
}

.woocommerce-pagination .page-numbers li.prev > a:hover, .woocommerce-pagination .page-numbers li.prev > a:focus, .woocommerce-pagination .page-numbers li.next > a:hover, .woocommerce-pagination .page-numbers li.next > a:focus,
.woocommerce-pagination .page-numbers li .page-numbers:hover,
.woocommerce-pagination .page-numbers li .page-numbers:focus {
    color: #27274d;
}

.woocommerce-pagination .page-numbers li.dots {
    min-width: 40px;
    height: 40px;
    line-height: 36px;
    text-align: center;
    border: 3px solid #ececf0;
    border-radius: 50%;
    display: inline-block;
    color: #a2a2b3;
    font-size: 12px;
    font-weight: 500;
}

.woocommerce-pagination .page-numbers li + li {
    margin-left: 10px;
}

.woocommerce-pagination--mini {
    justify-self: end;
}

@media screen and (min-width: 40em) {
    .woocommerce-pagination--mini {
        flex: 0 0 auto;
        width: auto;
    }
}

.woocommerce-pagination--mini__number {
    appearance: none;
    padding: 12px 18px !important;
    color: #27274d !important;
    font-size: 12px !important;
    line-height: 15px !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    text-align: center !important;
}

.woocommerce-pagination--mini__number::-webkit-inner-spin-button, .woocommerce-pagination--mini__number::-webkit-outer-spin-button {
    -webkit-appearance: none;
    display: none;
}

.woocommerce-pagination--mini__current {
    color: #a2a2b3;
    font-size: 12px;
    line-height: 15px;
    display: inline-block;
    margin: 0 8px;
    white-space: nowrap;
}

.woocommerce-pagination--mini .prev a,
.woocommerce-pagination--mini .next a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f6f6f8;
    color: #27274d;
    line-height: 40px;
    text-align: center;
    opacity: 0.5;
}

.woocommerce-pagination--mini .prev a:hover, .woocommerce-pagination--mini .prev a:focus,
.woocommerce-pagination--mini .next a:hover,
.woocommerce-pagination--mini .next a:focus {
    opacity: 1;
}

.woocommerce-pagination--mini .prev {
    margin-right: 10px;
}

.woocommerce-pagination--mini .next {
    margin-left: 10px;
}

#sidebar2 {
    overflow: hidden;
}

#sidebar2 .widget:nth-child(2) {
    margin-top: 30px;
}

#sidebar2 .product__search__form {
    position: relative;
}

#sidebar2 .product__search__field {
    background-color: #fff;
    box-shadow: none;
    color: #27274d;
    font-size: 12px;
    line-height: 15px;
    border-radius: 25px;
    padding: 12px 12px 12px 42px;
    border: 2px solid #fff;
    margin-bottom: 0;
}

#sidebar2 .product__search__field:focus {
    border-color: #fd9e20;
}

#sidebar2 .product__search__field.placeholder {
    color: #a2a2b3;
    font-size: 12px;
    line-height: 15px;
}

#sidebar2 .product__search__field:-moz-placeholder {
    color: #a2a2b3;
    font-size: 12px;
    line-height: 15px;
}

#sidebar2 .product__search__field::-moz-placeholder {
    color: #a2a2b3;
    font-size: 12px;
    line-height: 15px;
}

#sidebar2 .product__search__field:-ms-input-placeholder {
    color: #a2a2b3;
    font-size: 12px;
    line-height: 15px;
}

#sidebar2 .product__search__field::-webkit-input-placeholder {
    color: #a2a2b3;
    font-size: 12px;
    line-height: 15px;
}

#sidebar2 .product__search__submit {
    padding: 12px;
    border-radius: 25px;
    background: none !important;
    border: 0 !important;
    color: #27274d;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
}

#sidebar2 .product__search__submit i {
    font-size: 12px;
}

#sidebar2 .product__search__submit:hover, #sidebar2 .product__search__submit:focus {
    color: #fd9e20;
}

.sidebar2__head {
    display: flex;
    align-items: center;
    padding-bottom: 30px;
    position: relative;
}

.sidebar2__head:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 200%;
    height: 2px;
    background-color: #ececf0;
}

.sidebar2__head i {
    font-size: 20px;
    display: inline-block;
    color: #27274d;
    margin-right: 10px;
}

.sidebar2__clear {
    display: inline-block;
    margin-left: auto;
    color: #a2a2b3;
    font-size: 11px;
    line-height: 14px;
    text-decoration: underline;
}

.sidebar2__caption {
    color: #27274d;
    font-size: 15px;
    line-height: 18px;
    font-weight: 500;
}

.product__term-description {
    padding-top: 50px;
    padding-bottom: 50px;
    position: relative;
}

.product__term-description:after {
    content: "";
    position: absolute;
    top: 0;
    left: -30vw;
    width: 116.5vw;
    height: 100%;
    background-color: rgba(236, 236, 240, 0.5);
    z-index: -1;
}

@media screen and (min-width: 40em) {
    .product__term-description {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.product__term-heading {
    color: #27274d;
    font-size: 22px;
    line-height: 27px;
    font-weight: 600;
    margin-bottom: 30px;
}

.product__term-content.wysiwyg.wysiwyg.wysiwyg {
    color: #27274d;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
}

.product__term-content.wysiwyg.wysiwyg.wysiwyg p {
    color: #27274d;
    font-size: 14px;
    line-height: 24px;
    font-weight: 400;
    margin-bottom: 26px;
}

.product__term-content.wysiwyg.wysiwyg.wysiwyg p.lead {
    color: #27274d;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 32px;
}

.product__term-content.wysiwyg.wysiwyg.wysiwyg p:last-child {
    margin-bottom: 0;
}

.product__term-content.wysiwyg.wysiwyg.wysiwyg strong {
    font-weight: 500;
}

@media screen and (min-width: 40em) {
    .product__term-content.wysiwyg.wysiwyg.wysiwyg {
        column-count: 2;
        column-gap: 7vw;
    }
}

.product__featured {
    margin-bottom: 40px;
}

.product__featured__caption {
    color: #27274d;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.product__featured__head {
    margin-bottom: 20px;
}

.product__featured__slider {
    margin-left: -5px;
    margin-right: -5px;
}

.product__featured__arrows {
    position: relative;
    display: flex;
    align-items: center;
}

.product__featured__arrows .slick-arrow {
    position: static !important;
    border: 3px solid rgba(162, 162, 179, 0.2);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    color: #27274d !important;
    opacity: 0.3;
    display: inline-flex;
    font-size: 16px;
    transform: none !important;
    left: 0 !important;
}

.product__featured__arrows .slick-arrow i {
    margin: auto;
    display: inline-block;
}

.product__featured__arrows .slick-arrow:hover, .product__featured__arrows .slick-arrow:focus {
    opacity: 1;
}

.product__featured__arrows .slick-arrow:before {
    display: none !important;
}

.product__featured__arrows .slick-arrow:nth-child(n+1) {
    margin-left: 5px;
}

.product__featured .product {
    border-radius: 30px;
    border: 2px solid #ececf0;
    margin: 0 5px;
    transition: all 0.3s;
}

.product__featured .product:hover, .product__featured .product:focus {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #fff;
}

.product__featured .product__content {
    position: relative;
    padding-bottom: 100%;
}

.product__featured .product__content > .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
}

.product__featured .product .product__thumb img {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-height: 40%;
}

.product {
    background-color: #fff;
}

.product__prices {
    line-height: 1;
}

.product__prices span {
    display: inline-block;
}

.product__prices span.current {
    color: #27274d;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

.product__prices span.current small {
    font-size: 7px;
}

.product__prices span.old {
    display: inline;
    color: #7e7e7e;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
    text-decoration: line-through;
}

.product__prices span.old span {
    text-decoration: line-through;
}

.product__prices span.old small {
    font-size: 8px;
}

.product__prices .old + .woocommerce-price-suffix {
    color: #27274d;
    font-size: 15px;
    font-weight: 600;
    line-height: 18px;
}

.product__ribbons {
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 99;
    display: flex;
    flex-direction: column;
    text-align: left;
}

.product__ribbons span {
    font-size: 10px;
    line-height: 12px;
    font-weight: 700;
    letter-spacing: 0.63px;
    text-transform: uppercase;
}

.product__ribbons span.onsale {
    color: #fd4f20;
}

.product__ribbons span.new {
    color: #27274d;
}

.product__ribbons span.bestseller {
    color: #fd9e20;
}

.product__ribbons span + span {
    margin-top: 10px;
}

body.single-product #inner-content {
    padding-top: 45px;
    padding-bottom: 50px;
}

@media screen and (min-width: 40em) {
    body.single-product #inner-content {
        padding-bottom: 100px;
    }
}

body.single-product #inner-content > .product {
    max-width: 88.75rem;
    margin-left: auto;
    margin-right: auto;
}

@media screen and (min-width: 40em) and (max-width: 79.9375em) {
    body.single-product #inner-content > .product {
        grid-template-columns: 300px 1fr 200px;
    }
}

@media screen and (min-width: 40em) {
    body.single-product #inner-content > .product {
        display: grid;
        grid-gap: 20px 30px;
        grid-template-areas: "crumbs crumbs crumbs" "slider product upsells";
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    body.single-product #inner-content > .product {
        grid-template-columns: 300px 1fr;
        grid-template-areas: "crumbs crumbs" "slider product" "upsells upsells";
    }
}

@media print, screen and (min-width: 80em) {
    body.single-product #inner-content > .product {
        grid-template-columns: 460px 1fr 200px;
        grid-gap: 20px 60px;
    }
}

body.single-product .header__breadcrumbs {
    margin-bottom: 20px;
}

@media screen and (min-width: 40em) {
    body.single-product .header__breadcrumbs {
        grid-area: crumbs;
    }
}

body.single-product .header__breadcrumbs .breadcrumbs {
    margin-bottom: 0;
}

body.single-product .kk-star-ratings {
    flex-direction: column;
}

body.single-product .kk-star-ratings .kksr-stars .kksr-star {
    margin-right: 4px;
}

body.single-product .kk-star-ratings .kksr-stars .kksr-star:last-child {
    margin-right: 0;
}

body.single-product .kk-star-ratings .kksr-stars .kksr-icon {
    width: 13px !important;
    height: 13px !important;
}

body.single-product .kk-star-ratings .kksr-legend {
    margin: 6px 0 0;
    color: #a2a2b3;
    font-size: 10px;
    line-height: 12px;
    text-align: right;
}

body.single-product .kk-star-ratings .kksr-legend * {
    color: #a2a2b3;
    font-size: 10px;
    line-height: 12px;
    text-align: right;
    opacity: 1 !important;
    font-weight: 400 !important;
}

@media screen and (min-width: 40em) {
    body.single-product .product__left {
        grid-area: slider;
    }
}

body.single-product .product__gallery__left {
    position: relative;
    margin-bottom: 10px;
}

body.single-product .product__gallery__left .product__ribbons {
    left: 20px;
    top: 20px;
}

body.single-product .product__gallery__right {
    padding-right: 0;
}

@media screen and (max-width: 39.9375em) {
    body.single-product .product__gallery__right {
        display: none !important;
    }
}

body.single-product .product__gallery__arrows {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
}

body.single-product .product__gallery__arrows .slick-arrow {
    position: static !important;
    border: 2px solid rgba(162, 162, 179, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #27274d !important;
    opacity: 0.3;
    display: inline-flex;
    font-size: 12px;
    transform: none !important;
    left: 0 !important;
}

body.single-product .product__gallery__arrows .slick-arrow i {
    margin: auto;
    display: inline-block;
}

body.single-product .product__gallery__arrows .slick-arrow:hover, body.single-product .product__gallery__arrows .slick-arrow:focus {
    opacity: 1;
}

body.single-product .product__gallery__arrows .slick-arrow:before {
    display: none !important;
}

body.single-product .product__gallery__arrows .slick-arrow:nth-child(n+1) {
    margin-left: 3px;
}

body.single-product .product__slider .slide {
    border: 0;
    outline: 0;
}

body.single-product .product__slider .slide__wrap,
body.single-product .product__slider .slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ececf0;
    border-radius: 10px;
    width: 100%;
    position: relative;
    padding-bottom: 100%;
    transition: all 0.3s;
}

body.single-product .product__slider .slide__wrap img,
body.single-product .product__slider .slide a img {
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 80%;
    object-fit: contain;
}

body.single-product .product__slider .slide__wrap:hover, body.single-product .product__slider .slide__wrap:focus,
body.single-product .product__slider .slide a:hover,
body.single-product .product__slider .slide a:focus {
    opacity: 0.9;
}

@media screen and (max-width: 39.9375em) {
    body.single-product .product__slider--main {
        margin-left: -5px;
        margin-right: -5px;
    }

    body.single-product .product__slider--main .slide {
        margin-left: 5px;
        margin-right: 5px;
        cursor: pointer;
    }
}

body.single-product .product__slider--nav {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
}

body.single-product .product__slider--nav .slide {
    cursor: pointer;
}

body.single-product .product__slider--nav .slide__wrap {
    transition: all 0.3s;
    border-width: 2px;
}

body.single-product .product__slider--nav .slide.slick-current .slide__wrap {
    border-color: #27274d;
}

body.single-product .product_title {
    color: #27274d;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    margin-bottom: 5px;
}

body.single-product .product__sku {
    color: #a2a2b3;
    font-size: 12px;
    line-height: 15px;
}

body.single-product .product__header {
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 2px solid #f6f6f8;
}

@media screen and (max-width: 39.9375em) {
    body.single-product .product__header {
        flex-direction: column;
    }

    body.single-product .product__header .product__rating {
        margin-top: 10px;
    }
}

@media screen and (min-width: 40em) {
    body.single-product .product__middle {
        padding-top: 30px;
        grid-area: product;
    }
}

@media (min-width: 1024px) {
    body.single-product .product__middle:last-child {
        grid-column: span 2;
    }
}

body.single-product .product__footer {
    margin-bottom: 38px;
    padding-left: 30px;
}

body.single-product .product__footer__icon {
    margin-right: 14px;
}

body.single-product .product__footer__icon i {
    color: #27274d;
    font-size: 24px;
}

body.single-product .product__footer__caption {
    color: #a2a2b3;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 4px;
}

body.single-product .product__footer .stock {
    color: #27274d;
    font-size: 15px;
    font-weight: 500;
    line-height: 18px;
}

@media screen and (max-width: 39.9375em) {
    body.single-product .product__footer .product__price {
        margin-top: 10px;
    }
}

body.single-product .product__footer .product__price-footer {
    color: #a2a2b3;
    font-size: 10px;
    line-height: 12px;
    margin-top: 10px;
    margin-bottom: 10px;
}

body.single-product .product__description {
    color: #a2a2b3;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 45px;
}

body.single-product .product__description p:last-child {
    margin-bottom: 0;
}

body.single-product .product .single_variation_wrap {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}

body.single-product .product .cart {
    background-color: #f6f6f8;
    border-radius: 10px;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
}

@media print, screen and (min-width: 80em) {
    body.single-product .product .cart {
        grid-template-columns: repeat(2, 1fr);
        padding: 10px 10px 10px 30px;
    }
}

body.single-product .product .cart__caption {
    color: #27274d;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.63px;
    text-transform: uppercase;
}

body.single-product .product .cart__left {
    padding-top: 20px;
}

body.single-product .product .cart__price {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

body.single-product .product .cart__price + .cart__price {
    margin-top: 6px;
    margin-bottom: 30px;
}

body.single-product .product .cart__price__label {
    color: #a2a2b3;
    font-size: 12px;
    line-height: 15px;
}

body.single-product .product .cart__price__value {
    color: #27274d;
    font-size: 13px;
    line-height: 16px;
    font-weight: 500;
}

body.single-product .product .cart__price__value.big {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

body.single-product .product .cart__summary {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
}

body.single-product .product .cart__summary__caption {
    color: #27274d;
    font-size: 10px;
    line-height: 12px;
    font-weight: 600;
    letter-spacing: 0.63px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

body.single-product .product .cart__summary .button, body.single-product .product .cart__summary .button--outline, body.single-product .product .cart__summary .button--white, body.single-product .product .cart__summary .button--gray {
    display: block;
    margin-left: auto;
}

body.single-product .product .cart .form-control-label {
    color: #27274d;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.63px;
    text-transform: uppercase;
    display: block;
}

body.single-product .product .cart .button-variable-item {
    padding: 8px !important;
    border-radius: 25px !important;
    background-color: #fff !important;
    border: 2px solid #fff !important;
    transition: all 0.3s;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    margin-right: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

body.single-product .product .cart .button-variable-item.selected {
    background-color: #fff4e6 !important;
    border-color: #fd9e20 !important;
}

body.single-product .product .cart .button-variable-item.selected span {
    color: #fd9e20 !important;
}

body.single-product .product .cart .button-variable-item + .button-variable-item {
    margin-left: 5px !important;
}

body.single-product .product .cart .button-variable-item span {
    color: #a2a2b3;
    font-size: 11px;
    line-height: 14px;
    display: inline-block;
    margin: 0 !important;
    padding: 0 !important;
    transition: all 0.3s;
}

body.single-product .product .cart .form-check {
    display: inline-flex;
    margin-bottom: 0;
    padding: 8px;
    border-radius: 25px;
    background-color: #fff;
    border: 2px solid #fff;
    transition: all 0.3s;
    cursor: pointer !important;
}

body.single-product .product .cart .form-check.is-active {
    background-color: #fff4e6;
    border-color: #fd9e20;
}

body.single-product .product .cart .form-check.is-active .ppom-label-radio {
    color: #fd9e20 !important;
}

body.single-product .product .cart .form-check + .form-check {
    margin-left: 5px;
}

body.single-product .product .cart .form-check-label {
    padding-left: 0;
    display: flex;
    align-items: center;
}

body.single-product .product .cart .form-check .ppom-label-radio {
    color: #a2a2b3;
    font-size: 11px;
    line-height: 14px;
    display: inline-block;
    margin-left: 8px;
    transition: all 0.3s;
    cursor: pointer !important;
}

body.single-product .product .cart .form-check .ppom-check-input {
    width: 14px;
    height: 14px;
    line-height: 14px;
    font-size: 8px;
    border-radius: 4px;
}

body.single-product .product .cart .ppom-wrapper .form-group {
    margin-bottom: 15px;
}

@media print, screen and (min-width: 80em) {
    body.single-product .product .cart .ppom-wrapper .form-group {
        margin-bottom: 30px;
    }
}

body.single-product .product .cart__meta {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
    margin-bottom: 20px;
}

body.single-product .product .cart__meta:empty {
    display: none !important;
}

body.single-product .product .cart__meta__item {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 10px;
    font-size: 12px;
    line-height: 15px;
}

body.single-product .product .cart__meta__title {
    font-weight: 700;
}

body.single-product .product .cart__meta__title:after {
    content: ":";
}

@media screen and (min-width: 40em) {
    body.single-product .product__upsells {
        grid-area: upsells;
    }
}

body.single-product .product__upsells .products {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 10px;
}

body.single-product .product__upsells .product {
    border-radius: 30px;
    border: 2px solid #ececf0;
    transition: all 0.3s;
    margin: 0 5px;
}

@media (min-width: 1024px) {
    body.single-product .product__upsells .product {
        margin: 5px 0;
    }
}

body.single-product .product__upsells .product:hover, body.single-product .product__upsells .product:focus {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: #fff;
}

body.single-product .product__upsells .product__content {
    position: relative;
    padding-bottom: 100%;
}

body.single-product .product__upsells .product__content > .inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
}

body.single-product .product__upsells .product .product__prices {
    line-height: 1;
}

body.single-product .product__upsells .product .product__prices span {
    font-size: 13px !important;
}

body.single-product .product__upsells .product .product__prices span.old {
    margin-left: 0 !important;
    display: block;
}

body.single-product .product__upsells .product .product__prices span small {
    font-size: 7px;
}

body.single-product .product__upsells .product .product__title {
    color: #27274d;
    font-size: 12px;
    line-height: 15px;
    margin-top: auto;
    margin-bottom: 5px;
}

body.single-product .product__upsells .product .woocommerce-loop-product__link {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
}

body.single-product .product__upsells .product .product__thumb img {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: auto;
    max-height: 50%;
}

body.single-product .product__upsells .product .product__ribbons {
    line-height: 1;
}

body.single-product .product__upsells .product .product__ribbons span {
    font-size: 8px;
    line-height: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

body.single-product .variations {
    margin-bottom: 34px;
}

body.single-product .variations .reset_variations {
    display: block !important;
    margin-top: 8px;
    color: #fd9e20;
    font-size: 12px;
}

body.single-product .variations label {
    color: #27274d;
    font-size: 10px;
    line-height: 12px;
    margin-bottom: 15px;
    font-weight: 600;
    letter-spacing: 0.63px;
    text-transform: uppercase;
    display: block;
}

body.single-product .variations tbody {
    border: 0;
    background-color: transparent;
}

body.single-product .variations tbody tr {
    background-color: transparent;
    display: flex;
    flex-direction: column;
}

body.single-product .variations tbody tr td {
    padding: 0 !important;
    background: none !important;
}

body.single-product .variations tbody tr + tr {
    margin-top: 31px;
}

body.single-product .woocommerce-product-rating {
    color: #a2a2b3;
    font-size: 10px;
    line-height: 12px;
    text-align: right;
}

body.single-product .woocommerce-product-rating .star-rating {
    margin-bottom: 6px;
}

body.single-product .upsells__head {
    margin-bottom: 20px;
    padding-left: 10px;
    padding-right: 10px;
}

@media (max-width: 1023px) {
    body.single-product .upsells__head {
        margin-top: 30px;
    }
}

body.single-product .upsells__title {
    color: #27274d;
    font-size: 12px;
    line-height: 15px;
}

@media (max-width: 1023px) {
    body.single-product .upsells__title {
        color: #27274d;
        font-size: 20px;
        line-height: 29px;
        font-weight: 600;
    }
}

body.single-product .upsells__arrows {
    position: relative;
    display: flex;
    align-items: center;
}

body.single-product .upsells__arrows .slick-arrow {
    position: static !important;
    border: 2px solid rgba(162, 162, 179, 0.2);
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    color: #27274d !important;
    opacity: 0.3;
    display: inline-flex;
    font-size: 12px;
    transform: none !important;
    left: 0 !important;
}

body.single-product .upsells__arrows .slick-arrow i {
    margin: auto;
    display: inline-block;
}

body.single-product .upsells__arrows .slick-arrow:hover, body.single-product .upsells__arrows .slick-arrow:focus {
    opacity: 1;
}

body.single-product .upsells__arrows .slick-arrow:before {
    display: none !important;
}

body.single-product .upsells__arrows .slick-arrow:nth-child(n+1) {
    margin-left: 3px;
}

body.woocommerce-cart .quantity__label {
    display: none;
}

body.woocommerce-cart tr.order-total td,
body.woocommerce-cart td.product-subtotal,
body.woocommerce-cart td.product-price {
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
}

body.woocommerce-cart tr.order-total td small,
body.woocommerce-cart td.product-subtotal small,
body.woocommerce-cart td.product-price small {
    font-size: 12px;
}

body.woocommerce-cart .woocommerce-Price-amount, body.woocommerce-cart .woocommerce-Price-taxLabel {
    color: #fd9e20;
}

body.woocommerce-cart .cart-collaterals .select2-selection__rendered,
body.woocommerce-cart .coupon .select2-selection__rendered {
    display: none;
}

body.woocommerce-cart .cart-collaterals .input-text,
body.woocommerce-cart .coupon .input-text {
    margin: 0 10px 0 0;
}

body.woocommerce-cart .cart-collaterals {
    padding-top: 50px;
    border-top: 1px solid rgba(253, 158, 32, 0.2);
}

body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout {
    margin-top: 50px;
}

body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout .button, body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout .button--outline, body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout .button--white, body.woocommerce-cart .cart-collaterals .wc-proceed-to-checkout .button--gray {
    color: #fff;
    text-decoration: none;
}

body.woocommerce-cart .cart-collaterals .shipping-calculator-button {
    color: #fd9e20;
    font-size: 13px;
}

body.woocommerce-cart .cart-collaterals .shipping-calculator-button:hover {
    color: #e88502;
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-cart .cart-collaterals .shop_table tbody tr {
        display: block;
    }

    body.woocommerce-cart .cart-collaterals .shop_table tbody tr td {
        display: block;
        padding-left: 24px;
        padding-right: 24px;
    }

    body.woocommerce-cart .cart-collaterals .shop_table tbody tr td[data-title]:before {
        content: attr(data-title) ": ";
        display: block;
        margin-bottom: 10px;
        font-weight: 700;
    }

    body.woocommerce-cart .cart-collaterals .shop_table tbody tr th {
        display: none;
    }
}

body.woocommerce-cart .woocommerce-cart__number {
    margin-bottom: 20px;
}

@media screen and (min-width: 40em) {
    body.woocommerce-cart .woocommerce-cart__number {
        margin-bottom: 44px;
    }
}

body.woocommerce-cart .woocommerce-cart-form__contents {
    border-spacing: 0 26px;
}

@media screen and (min-width: 40em) {
    body.woocommerce-cart .woocommerce-cart-form__contents {
        margin-top: -26px;
    }
}

body.woocommerce-cart .woocommerce-cart-form__contents .actions {
    padding: 0 !important;
    border-top: 1px solid rgba(253, 158, 32, 0.2);
}

body.woocommerce-cart .woocommerce-cart-form__contents .coupon {
    padding: 0 0 50px;
    display: flex;
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-cart .woocommerce-cart-form__contents .coupon {
        flex-direction: column;
        align-items: flex-start;
    }

    body.woocommerce-cart .woocommerce-cart-form__contents .coupon .input-text {
        margin-bottom: 15px;
    }
}

@media screen and (min-width: 40em) {
    body.woocommerce-cart .woocommerce-cart-form__contents .coupon {
        padding: 50px 0;
    }
}

body.woocommerce-cart .woocommerce-cart-form__contents .coupon label {
    display: none;
}

body.woocommerce-cart .woocommerce-cart-form__contents tbody {
    border: 0;
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-cart .woocommerce-cart-form__contents tbody {
        display: block;
    }
}

body.woocommerce-cart .woocommerce-cart-form__contents tbody tr {
    background: none;
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-cart .woocommerce-cart-form__contents tbody tr {
        display: flex;
        flex-direction: column;
        border: 3px solid #ececf0;
        padding-top: 24px;
        padding-bottom: 24px;
    }

    body.woocommerce-cart .woocommerce-cart-form__contents tbody tr:last-child {
        border: 0;
        padding-bottom: 0;
    }

    body.woocommerce-cart .woocommerce-cart-form__contents tbody tr td {
        display: block;
        border: 0 !important;
        padding-left: 15px;
    }
}

@media screen and (max-width: 39.9375em) and (min-width: 40em) {
    body.woocommerce-cart .woocommerce-cart-form__contents tbody tr td {
        padding-left: 10%;
    }
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-cart .woocommerce-cart-form__contents tbody tr + tr {
        margin-top: 24px;
    }
}

body.woocommerce-cart h2 {
    color: #27274d;
    font-weight: 600;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 24px;
}

@media screen and (min-width: 40em) {
    body.woocommerce-cart h2 {
        font-size: 24px;
        line-height: 34px;
    }
}

body.woocommerce-cart .cart_item {
    background: none !important;
}

body.woocommerce-cart .cart_item__caption {
    color: #000;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 9px;
}

body.woocommerce-cart .cart_item .product-name, body.woocommerce-cart .cart_item .product-price, body.woocommerce-cart .cart_item .product-quantity, body.woocommerce-cart .cart_item .product-subtotal, body.woocommerce-cart .cart_item .product-remove {
    border-top: 3px solid #ececf0;
    border-bottom: 3px solid #ececf0;
}

body.woocommerce-cart .cart_item .product-subtotal {
    border-top-right-radius: 25px;
    border-bottom-right-radius: 25px;
    border-right: 3px solid #ececf0;
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-cart .cart_item .product-quantity {
        order: 99;
        margin-top: 10px;
    }
}

@media screen and (min-width: 40em) {
    body.woocommerce-cart .cart_item .product-name {
        padding-left: 15px;
    }
}

body.woocommerce-cart .cart_item .product-name .title {
    color: #27274d;
    display: block;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 10px;
}

body.woocommerce-cart .cart_item .product-name .title:hover, body.woocommerce-cart .cart_item .product-name .title:focus {
    color: #fd9e20;
}

body.woocommerce-cart .cart_item .product-name .posted_in a {
    color: #858585;
    font-size: 14px;
    line-height: 1;
    text-transform: uppercase;
}

body.woocommerce-cart .cart_item .product-name .posted_in a:hover, body.woocommerce-cart .cart_item .product-name .posted_in a:focus {
    color: #9f9f9f;
}

body.woocommerce-cart .cart_item .product-thumbnail {
    min-height: 190px;
    border: 3px solid #ececf0;
    border-right: 0;
    min-width: 150px;
    border-top-left-radius: 25px;
    border-bottom-left-radius: 25px;
}

body.woocommerce-cart .cart_item .product-thumbnail a {
    display: flex;
    width: 100%;
}

body.woocommerce-cart .cart_item .product-thumbnail a:hover, body.woocommerce-cart .cart_item .product-thumbnail a:focus {
    opacity: 0.9;
}

@media screen and (min-width: 40em) {
    body.woocommerce-cart .cart_item .product-thumbnail a img {
        margin: auto;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    body.woocommerce-cart .cart_item .product-price, body.woocommerce-cart .cart_item .product-subtotal {
        min-width: 100px;
    }
}

body.woocommerce-cart .cart_item .product-price .woocommerce-Price-amount, body.woocommerce-cart .cart_item .product-subtotal .woocommerce-Price-amount {
    white-space: pre;
}

body.woocommerce-cart .cart_item .product-remove {
    position: relative;
    padding: 0;
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-cart .cart_item .product-remove {
        order: -1;
    }
}

body.woocommerce-cart .cart_item .product-remove a {
    position: absolute;
    right: 8px;
    top: -16px;
    color: rgba(187, 187, 187, 0.5);
    font-size: 48px;
    line-height: 1;
}

@media screen and (min-width: 40em) {
    body.woocommerce-cart .cart_item .product-remove a {
        right: 8px;
        top: 8px;
    }
}

body.woocommerce-cart .cart_item .product-remove a:hover, body.woocommerce-cart .cart_item .product-remove a:focus {
    color: #bbb;
}

body.woocommerce-cart .quantity__wrap {
    margin-bottom: 0;
}

body.woocommerce-cart .woocommerce-gifts {
    padding-top: 50px;
    padding-bottom: 50px;
    border-top: 1px solid rgba(253, 158, 32, 0.2);
}

body.woocommerce-cart .woocommerce-gifts__item__title {
    min-height: 36px;
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-cart .woocommerce-gifts__item:nth-child(n+2) {
        margin-top: 46px;
    }
}

@media screen and (min-width: 40em) {
    body.woocommerce-cart .woocommerce-gifts__item:nth-child(n+5) {
        margin-top: 46px;
    }
}

body.woocommerce-cart .shipping-calculator-form {
    margin-top: 30px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .woocommerce-MyAccount-navigation {
        flex: 0 0 33.33% !important;
        max-width: 33.33% !important;
    }
}

@media screen and (max-width: 39.9375em) {
    .woocommerce-MyAccount-navigation {
        margin-bottom: 42px;
    }
}

.woocommerce-MyAccount-navigation ul {
    list-style-type: none;
    margin-bottom: 0;
    margin-left: 0;
}

.woocommerce-MyAccount-navigation ul li {
    border-radius: 25px;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .woocommerce-MyAccount-content {
        flex: 0 0 66.67% !important;
        max-width: 66.67% !important;
    }
}

.woocommerce-MyAccount-content a:not(.button):not(.button--outline):not(.button--white):not(.button--gray):not(.button--gray) {
    color: #fd9e20;
}

.woocommerce-MyAccount-content a:not(.button):not(.button--outline):not(.button--white):not(.button--gray):not(.button--gray):hover, .woocommerce-MyAccount-content a:not(.button):not(.button--outline):not(.button--white):not(.button--gray):not(.button--gray):focus {
    color: #e88502;
}

.woocommerce-MyAccount-content mark {
    background: none;
    font-weight: 700;
    color: inherit;
}

.woocommerce-MyAccount-content .edit-account fieldset {
    margin-top: 38px;
}

.woocommerce-MyAccount-content .edit-account .woocommerce-field-group.profile_nip {
    margin-top: 15px;
}

@media screen and (min-width: 40em) {
    .woocommerce-MyAccount-content .edit-account .woocommerce-field-group.profile_nip {
        margin-top: 24px;
    }
}

.woocommerce-MyAccount-content .woocommerce-edit-buttons {
    margin-top: 33px;
}

.woocommerce-MyAccount-content .woocommerce-order-details .checkout__heading {
    margin-top: 38px;
}

.woocommerce-MyAccount-content .woocommerce-orders-table {
    margin-bottom: 0;
    border-collapse: collapse;
}

@media (max-width: 1023px) {
    .woocommerce-MyAccount-content .woocommerce-orders-table__row {
        display: block;
    }
}

@media (max-width: 1023px) {
    .woocommerce-MyAccount-content .woocommerce-orders-table tbody {
        display: block;
    }

    .woocommerce-MyAccount-content .woocommerce-orders-table thead {
        display: none;
    }
}

@media (max-width: 1023px) {
    .woocommerce-MyAccount-content .woocommerce-orders-table__cell {
        display: block;
    }

    .woocommerce-MyAccount-content .woocommerce-orders-table__cell:before {
        content: attr(data-title) ": ";
        font-weight: 700;
    }

    .woocommerce-MyAccount-content .woocommerce-orders-table__cell:not(:last-child) {
        border-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .woocommerce-MyAccount-content .woocommerce-orders-table__cell:not(:first-child) {
        border-top: 0 !important;
    }
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-number a {
    font-weight: 700;
    color: #000 !important;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-number a:hover, .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-number a:focus {
    text-decoration: underline;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a {
    color: #fd9e20;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a:hover, .woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-actions a:focus {
    text-decoration: underline;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-total {
    font-weight: 700;
    text-transform: uppercase;
}

.woocommerce-MyAccount-content .woocommerce-orders-table__cell-order-total .tax_label {
    display: none;
}

.woocommerce-MyAccount-content .woocommerce-orders-table thead tr td, .woocommerce-MyAccount-content .woocommerce-orders-table thead tr th,
.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td,
.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr th {
    color: #000;
    font-size: 14px;
    padding: 15px;
    border: 2px solid #ececf0;
}

.woocommerce-MyAccount-content .woocommerce-orders-table thead {
    background-color: #ececf0;
    border: 0;
}

.woocommerce-MyAccount-content .woocommerce-orders-table thead tr th {
    text-transform: uppercase;
    font-weight: 700;
}

.woocommerce-MyAccount-content .woocommerce-orders-table thead tr th:first-child {
    border-top-left-radius: 25px;
    border-top: 0;
    border-left: 0;
}

.woocommerce-MyAccount-content .woocommerce-orders-table thead tr th:last-child {
    border-top-right-radius: 25px;
    border-top: 0;
    border-right: 0;
}

.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr {
    background: none !important;
    transition: all 0.3s;
}

.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr td {
    transition: all 0.3s;
}

.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:hover, .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:focus {
    background: #fd9e20 !important;
}

.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:hover td, .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:focus td {
    color: #fff !important;
    border-color: #fd9e20;
}

.woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:hover .woocommerce-orders-table__cell-order-number a, .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:hover .woocommerce-orders-table__cell-order-actions a, .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:focus .woocommerce-orders-table__cell-order-number a, .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:focus .woocommerce-orders-table__cell-order-actions a {
    color: #fff !important;
}

.profile__heading {
    color: #27274d;
    font-weight: 600;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 24px;
}

@media screen and (min-width: 40em) {
    .profile__heading {
        font-size: 24px;
        line-height: 34px;
    }
}

.woocommerce-Addresses {
    margin-top: 30px;
}

.woocommerce-Addresses address {
    font-style: normal;
    margin-top: 30px;
}

@media (max-width: 1023px) {
    .woocommerce-Addresses .woocommerce-Address {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .woocommerce-Addresses .woocommerce-Address .profile__heading {
        margin-bottom: 15px;
    }

    .woocommerce-Addresses .woocommerce-Address + .woocommerce-Address {
        margin-top: 42px;
    }
}

.woocommerce-address-fields .select2-selection__rendered {
    display: none;
}

@media (min-width: 640px) and (max-width: 1023px) {
    .woocommerce-address-fields__field-wrapper .woocommerce-field-group {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media screen and (max-width: 39.9375em) {
    .woocommerce-edit-password .woocommerce-field-group + .woocommerce-field-group,
    .woocommerce-edit-info .woocommerce-field-group + .woocommerce-field-group {
        margin-top: 15px;
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    .woocommerce-edit-password .input-text,
    .woocommerce-edit-info .input-text {
        max-width: 270px;
    }

    .woocommerce-edit-password .woocommerce-field-group,
    .woocommerce-edit-info .woocommerce-field-group {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .woocommerce-edit-password .woocommerce-field-group + .woocommerce-field-group,
    .woocommerce-edit-info .woocommerce-field-group + .woocommerce-field-group {
        margin-top: 24px;
    }
}

@media (min-width: 1024px) {
    .woocommerce-edit-password .woocommerce-field-group + .woocommerce-field-group,
    .woocommerce-edit-info .woocommerce-field-group + .woocommerce-field-group {
        margin-top: 0;
    }
}

@media screen and (min-width: 40em) {
    .woocommerce-edit-info .woocommerce-field-group:last-of-type {
        margin-top: 24px;
    }
}

.woocommerce-edit-info #account_display_name + span {
    display: inline-block;
    margin-top: 10px;
    font-size: 14px;
}

.woocommerce-edit-info #account_display_name + span em {
    font-style: normal;
}

body.woocommerce-view-order .woocommerce-Price-amount, body.woocommerce-view-order .woocommerce-Price-taxLabel {
    color: #fd9e20;
}

body.woocommerce-account .header__breadcrumbs {
    padding-top: 0;
}

body.woocommerce-account #profile_newsletter_field {
    margin-top: 24px;
    padding-right: 0;
}

body.woocommerce-account #profile_newsletter_field span {
    font-size: 12px;
}

body.woocommerce-account #accept_processing_field,
body.woocommerce-account #accept_policy_field {
    max-width: none;
    padding-left: 0;
}

body.woocommerce-account #accept_processing_field abbr.required,
body.woocommerce-account #accept_policy_field abbr.required {
    display: none;
}

body.woocommerce-account #accept_processing_field span,
body.woocommerce-account #accept_policy_field span {
    font-size: 12px;
}

body.woocommerce-account #accept_processing_field #accept_processing,
body.woocommerce-account #accept_processing_field #accept_policy,
body.woocommerce-account #accept_policy_field #accept_processing,
body.woocommerce-account #accept_policy_field #accept_policy {
    flex: 0 0 24px;
}

body.woocommerce-account #billing_nip_field {
    padding-left: 0;
}

@media (max-width: 1023px) {
    body.woocommerce-account #billing_city_field input {
        max-width: 100% !important;
    }
}

@media screen and (min-width: 40em) {
    body.woocommerce-account #billing_city_field input {
        max-width: calc(50% - 15px);
    }
}

@media (min-width: 640px) and (max-width: 1023px) {
    body.woocommerce-account #customer_login .col-1,
    body.woocommerce-account #customer_login .col-2 {
        margin-left: 0;
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-view-order .woocommerce-column--shipping-address {
        margin-top: 30px;
    }
}

body.woocommerce-checkout .select2-selection__rendered {
    display: none;
}

body.woocommerce-checkout .checkout_coupon {
    display: flex;
    padding: 20px 0 50px;
    flex-wrap: wrap;
}

@media screen and (max-width: 39.9375em) {
    body.woocommerce-checkout .checkout_coupon {
        flex-direction: column;
        align-items: flex-start;
    }

    body.woocommerce-checkout .checkout_coupon .button, body.woocommerce-checkout .checkout_coupon .button--outline, body.woocommerce-checkout .checkout_coupon .button--white, body.woocommerce-checkout .checkout_coupon .button--gray {
        margin-top: 10px;
    }
}

@media screen and (min-width: 40em) {
    body.woocommerce-checkout .checkout_coupon > p {
        flex: 0 0 100%;
        margin-bottom: 20px;
    }
}

@media screen and (min-width: 40em) {
    body.woocommerce-checkout .checkout_coupon #coupon_code {
        margin: 0 10px 0 0;
    }
}

body.woocommerce-checkout .checkout__buttons {
    margin-top: 49px;
}

body.woocommerce-checkout .woocommerce-additional-fields {
    margin-top: 30px;
}

body.woocommerce-checkout #order_comments_field textarea {
    max-width: none;
    min-height: 150px;
}

body.woocommerce-checkout #order_review_heading {
    margin-top: 38px;
}

body.woocommerce-checkout .woocommerce-Price-amount, body.woocommerce-checkout .woocommerce-Price-taxLabel {
    color: #fd9e20;
}

body.woocommerce-checkout .wc_payment_methods {
    list-style-type: none;
    margin-bottom: 0;
    margin-left: 0;
}

@media screen and (min-width: 40em) {
    body.woocommerce-checkout .wc_payment_methods {
        width: 50%;
    }
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method {
    border-radius: 10px;
    background-color: #f3f3f3;
    padding: 12px 24px;
    transition: all 0.3s;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method p {
    transition: all 0.3s;
    font-size: 16px;
    line-height: 20px;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method.active {
    background-color: #fd9e20;
    color: #fff;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method.active label {
    color: #fff;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method.active .input-radio:checked {
    border-color: #fff;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method.active .input-radio:checked:after {
    color: #fff;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method.active p {
    color: #fff;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method label {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
    transition: all 0.3s;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method label img {
    max-height: 24px;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method input {
    margin: 0;
    transition: all 0.3s;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method p:last-child {
    margin-bottom: 0;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method .payment_box {
    margin-left: 8px;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method:not(:only-child) .payment_box {
    margin-left: 34px;
}

body.woocommerce-checkout .wc_payment_methods .wc_payment_method + .wc_payment_method {
    margin-top: 18px;
}

body.woocommerce-checkout .wc_payment_methods .woocommerce-field-group {
    flex-direction: row;
}

body.woocommerce-checkout .woocommerce-checkout-payment .checkout__heading {
    margin-top: 38px;
}

body.woocommerce-checkout .wc-terms-and-conditions {
    margin-top: 38px;
}

body.woocommerce-checkout .woocommerce-order-overview {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 0;
    max-width: 790px;
    background-color: #f9f9f9;
    padding: 24px;
}

body.woocommerce-checkout .woocommerce-order-overview__payment-method strong {
    white-space: pre;
}

@media screen and (min-width: 40em) {
    body.woocommerce-checkout .woocommerce-order-overview {
        padding: 42px;
    }
}

body.woocommerce-checkout .woocommerce-order-overview li {
    padding: 8px 0;
}

body.woocommerce-checkout .woocommerce-order-overview + p {
    max-width: 790px;
    margin-top: 30px;
    padding-left: 15px;
}

@media (min-width: 1024px) {
    body.woocommerce-checkout .woocommerce-order-overview + p {
        padding-left: 42px;
    }
}

body.woocommerce-checkout .woocommerce-thankyou p:first-child {
    margin-top: 30px;
}

body.woocommerce-checkout .woocommerce-thankyou-cod {
    display: none;
}

body.woocommerce-checkout .woocommerce-order-details__title {
    margin-top: 42px;
}

body.woocommerce-checkout #billing_country_field > strong {
    display: block;
    padding: 15px 0;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper {
    margin-top: 38px;
}

@media screen and (min-width: 40em) {
    body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
        max-width: 50%;
    }
}

body.woocommerce-checkout .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text a {
    color: #fd9e20;
}

body.woocommerce-checkout .woocommerce-terms-and-conditions {
    margin-top: 38px;
    margin-bottom: 38px;
}

body.woocommerce-checkout #accept_processing_field,
body.woocommerce-checkout #accept_policy_field {
    max-width: none;
    padding-left: 0;
}

body.woocommerce-checkout #accept_processing_field abbr.required,
body.woocommerce-checkout #accept_policy_field abbr.required {
    display: none;
}

body.woocommerce-checkout #accept_processing_field span,
body.woocommerce-checkout #accept_policy_field span {
    font-size: 12px;
}

body.woocommerce-checkout #accept_processing_field #accept_processing,
body.woocommerce-checkout #accept_processing_field #accept_policy,
body.woocommerce-checkout #accept_policy_field #accept_processing,
body.woocommerce-checkout #accept_policy_field #accept_policy {
    flex: 0 0 26px;
}

body.woocommerce-checkout form.checkout.processing .spinner {
    display: inline-block !important;
}

.checkout__heading {
    color: #27274d;
    font-weight: 600;
    margin-bottom: 28px;
    font-size: 18px;
    line-height: 24px;
}

@media screen and (min-width: 40em) {
    .checkout__heading {
        font-size: 24px;
        line-height: 34px;
    }
}

#order_review .shop_table tfoot tr:last-child td {
    font-size: 24px;
    font-weight: 700;
}

body.woocommerce-checkout .woocommerce-order-details.woocommerce-order-details .shop_table tfoot tr:last-child td, body.woocommerce-view-order .woocommerce-order-details.woocommerce-order-details .shop_table tfoot tr:last-child td, body.woocommerce-account:not(.woocommerce-view-order) .woocommerce-order-details.woocommerce-order-details .shop_table tfoot tr:nth-last-child(2) td {
    font-size: 24px;
    font-weight: 700;
}

.woocommerce-order-details.woocommerce-order-details .shop_table thead,
#order_review .shop_table thead {
    border: 0;
    background: none !important;
}

.woocommerce-order-details.woocommerce-order-details .shop_table thead tr,
#order_review .shop_table thead tr {
    background: none;
}

.woocommerce-order-details.woocommerce-order-details .shop_table thead th,
#order_review .shop_table thead th {
    padding-top: 42px;
}

.woocommerce-order-details.woocommerce-order-details .shop_table thead th:first-child,
#order_review .shop_table thead th:first-child {
    text-align: left;
    vertical-align: top;
    width: 50%;
    text-transform: uppercase;
    padding-left: 15px !important;
}

@media (min-width: 1024px) {
    .woocommerce-order-details.woocommerce-order-details .shop_table thead th:first-child,
    #order_review .shop_table thead th:first-child {
        padding-left: 42px !important;
    }
}

.woocommerce-order-details.woocommerce-order-details .shop_table tbody tr td.product-name,
#order_review .shop_table tbody tr td.product-name {
    padding-left: 15px !important;
}

@media (min-width: 1024px) {
    .woocommerce-order-details.woocommerce-order-details .shop_table tbody tr td.product-name,
    #order_review .shop_table tbody tr td.product-name {
        padding-left: 42px !important;
    }
}

.woocommerce-order-details.woocommerce-order-details tfoot tr:first-child th, .woocommerce-order-details.woocommerce-order-details tfoot tr:first-child td,
#order_review tfoot tr:first-child th,
#order_review tfoot tr:first-child td {
    padding-top: 42px;
}

.woocommerce-order-details.woocommerce-order-details tfoot tr:last-child th, .woocommerce-order-details.woocommerce-order-details tfoot tr:last-child td,
#order_review tfoot tr:last-child th,
#order_review tfoot tr:last-child td {
    padding-bottom: 42px;
}

.woocommerce-order-details.woocommerce-order-details tfoot tr.order-total td,
#order_review tfoot tr.order-total td {
    font-size: 24px;
}

.woocommerce-order-details.woocommerce-order-details tfoot td,
#order_review tfoot td {
    font-weight: 400;
}

.woocommerce-customer-details.woocommerce-customer-details {
    margin-top: 42px;
}

.woocommerce-customer-details.woocommerce-customer-details .addresses {
    max-width: 790px;
}

.woocommerce-customer-details.woocommerce-customer-details .addresses address {
    font-style: normal;
}

.shipping-calculator-form select,
.shipping-calculator-form .input-text {
    max-width: 270px;
}

.contact__content {
    position: relative;
}

.contact__title {
    color: #27274d;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 24px;
}

@media screen and (min-width: 40em) {
    .contact__title {
        font-size: 22px;
        line-height: 27px;
    }
}

.contact__left__content {
    background-color: #fff;
    border-radius: 30px;
    padding: 30px 20px;
}

@media screen and (min-width: 40em) {
    .contact__left__content {
        padding: 40px;
    }
}

@media screen and (max-width: 39.9375em) {
    .contact__map {
        margin-top: 30px;
        min-height: 256px;
    }
}

@media screen and (min-width: 40em) and (max-width: 79.9375em) {
    .contact__map {
        margin-top: 30px;
        min-height: 500px;
    }
}

@media print, screen and (min-width: 80em) {
    .contact__map {
        position: absolute;
        top: 40px;
        right: 0;
        width: calc(43% + 40px);
        max-width: calc(43% + 40px);
        height: 100%;
        border-radius: 30px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    }
}

.contact__map .marker__name {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
    display: block;
    margin-bottom: 10px;
}

@media screen and (max-width: 39.9375em) {
    .contact__items {
        margin-top: 30px;
    }
}

@media (min-width: 840px) and (max-width: 1279px) {
    .contact__items {
        flex: 0 0 33.33% !important;
        max-width: 33.33% !important;
    }
}

.contact__item:nth-child(n+2) {
    margin-top: 15px;
}

.contact__item .contact-phones__item:first-child a {
    font-size: 18px;
    line-height: 22px;
    font-weight: 500;
}

.contact__item .contact-phones__item:nth-child(n+2) {
    margin-top: 5px;
}

.contact__item__icon {
    color: #fd9e20;
    margin-right: 15px;
    background-color: #f6f6f8;
    width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.contact__item__icon i {
    font-size: 16px;
    color: #fd9e20;
}

.contact__item__text {
    color: #27274d;
    font-size: 12px;
    line-height: 17px;
}

.contact__item__text a {
    color: #27274d;
    font-size: 14px;
    line-height: 17px;
    font-weight: 400;
    text-transform: lowercase;
    position: relative;
}

.contact__item__text a:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fd9e20;
    transition: all 0.3s;
}

.contact__item__text a:hover:after, .contact__item__text a:focus:after {
    width: 100%;
}

.contact__item__text .big {
    font-weight: 500;
    font-size: 14px;
    line-height: 22px;
}

.contact__item__link {
    color: #27274d;
    position: relative;
}

.contact__item__link:after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fd9e20;
    transition: all 0.3s;
}

.contact__item__link:hover:after, .contact__item__link:focus:after {
    width: 100%;
}

.form__group {
    display: flex;
    flex-direction: column;
    position: relative;
    margin: 5px 0;
}

.form__group:first-child {
    margin-top: 0;
}

.form__group__label {
    color: #27274d;
    font-size: 10px;
    font-weight: 600;
    transition: all 0.3s;
    position: absolute;
    top: 10px;
    left: 30px;
}

@media screen and (min-width: 40em) {
    .form__group__label {
        left: 35px;
    }
}

.form__group .wpcf7-form-control-wrap {
    margin-top: auto;
}

.form__group textarea,
.form__group input {
    margin-bottom: 0;
}

.form__group--checkbox {
    margin: 20px 0;
}

.form__group--checkbox .wpcf7-list-item {
    margin-left: 0;
}

.form__group--checkbox .wpcf7-list-item > label {
    display: flex;
    flex-wrap: nowrap;
}

.form__group--checkbox .wpcf7-list-item > label input[type=checkbox] {
    margin: 0 15px 0 0;
    flex: 0 0 26px;
}

.form__group--checkbox .wpcf7-list-item-label {
    color: #27274d;
    font-size: 10px;
    line-height: 17px;
}

.form__footer .ajax-loader {
    display: block !important;
}

body.page-template-template-contact #content #inner-content {
    background-color: #f6f6f8;
    padding-top: 45px;
    padding-bottom: 50px;
}

@media print, screen and (min-width: 80em) {
    body.page-template-template-contact #content #inner-content {
        padding-bottom: 140px;
    }
}

body.page-template-template-contact .header__breadcrumbs {
    margin-bottom: 20px;
}

body.page-template-template-contact .input-text.input-text {
    padding: 23px 20px 12px;
}

body.page-template-template-contact .input-text.input-text.wpcf7-not-valid {
    border-color: #c72700 !important;
}

.wpcf7-response-output.wpcf7-response-output {
    font-size: 14px;
    font-weight: 600;
    line-height: 17px;
    padding: 20px;
    border: 0 !important;
    border-radius: 10px;
    margin-top: 10px !important;
}

.wpcf7-response-output.wpcf7-response-output.wpcf7-mail-sent-ok {
    background-color: #e6ffee;
    color: #00491a;
}

.wpcf7-response-output.wpcf7-response-output.wpcf7-validation-errors {
    background-color: #ffeae6;
    color: #c72700;
}

.wpcf7-not-valid-tip {
    color: #c72700 !important;
    font-size: 12px !important;
    line-height: 17px !important;
    display: block;
    margin-top: 4px;
    padding-left: 15px;
}

.wysiwyg p {
    margin-bottom: 30px;
    color: #27274d;
    font-size: 16px;
    line-height: 26px;
}

@media screen and (min-width: 40em) {
    .wysiwyg p {
        font-size: 18px;
        line-height: 28px;
    }
}

.wysiwyg p.lead {
    font-size: 20px;
    line-height: 30px;
}

@media screen and (min-width: 40em) {
    .wysiwyg p.lead {
        font-size: 22px;
        line-height: 32px;
    }
}

.wysiwyg p:last-child {
    margin-bottom: 0;
}

.wysiwyg img.alignnone {
    margin: 0 0 30px;
}

.wysiwyg img.alignleft {
    float: left;
    margin-right: 30px;
    margin-bottom: 30px;
}

.wysiwyg img.alignright {
    float: right;
    margin-left: 30px;
    margin-bottom: 30px;
}

.wysiwyg a {
    color: #fd9e20;
}

.wysiwyg a:hover, .wysiwyg a:focus {
    text-decoration: underline;
}

.wysiwyg strong {
    font-weight: 600;
}

.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
    color: #002149;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 30px;
}

.wysiwyg h1 {
    font-size: 30px;
}

.wysiwyg h2 {
    font-size: 24px;
}

.wysiwyg h3 {
    font-size: 22px;
}

.wysiwyg h4 {
    font-size: 20px;
}

.wysiwyg h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

.wysiwyg h6 {
    font-size: 16px;
    margin-bottom: 20px;
}

.wysiwyg small {
    font-size: 14px;
}

.wysiwyg blockquote {
    color: #fd9e20;
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    position: relative;
    border-left: 0;
    padding: 33px 15px 0;
}

@media screen and (min-width: 40em) {
    .wysiwyg blockquote {
        padding: 33px 68px 0;
    }
}

.wysiwyg blockquote p {
    color: #fd9e20;
}

.wysiwyg blockquote:before {
    position: absolute;
    content: "“";
    top: 0;
    left: 64px;
    color: #fd9e20;
    font-size: 50px;
    font-weight: 700;
    line-height: 1;
}

.wysiwyg .wp-caption {
    background: none !important;
    padding: 0;
}

.wysiwyg .wp-caption-text {
    color: #858585;
    font-size: 15px !important;
    font-weight: 300;
    margin: 20px 0 0 !important;
    line-height: 28px !important;
    padding: 0;
    text-align: left !important;
}

.wysiwyg ul.list {
    margin-left: 0;
    list-style-type: none;
}

.wysiwyg ul.list > li {
    padding-left: 24px;
    position: relative;
    color: #27274d;
    font-size: 18px;
    line-height: 28px;
}

.wysiwyg ul.list > li:before {
    position: absolute;
    top: 9px;
    left: 0;
    content: "";
    width: 10px;
    height: 10px;
    background-color: #fd9e20;
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    border-bottom-left-radius: 50%;
}

.wysiwyg ul.list > li + li {
    margin-top: 14px;
}

.wysiwyg ol {
    margin-left: 0;
    list-style-type: none;
    counter-reset: ol-counter;
}

.wysiwyg ol > li {
    padding-left: 35px;
    position: relative;
    font-size: 18px;
    line-height: 28px;
}

.wysiwyg ol > li:before {
    position: absolute;
    top: 0;
    left: 0;
    content: counter(ol-counter, decimal-leading-zero);
    counter-increment: ol-counter;
    color: #fd9e20;
    font-size: 18px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

.wysiwyg ol > li + li {
    margin-top: 15px;
}

.blog__items {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
}

@media screen and (min-width: 40em) and (max-width: 79.9375em) {
    .blog__items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media print, screen and (min-width: 80em) {
    .blog__items {
        grid-template-columns: repeat(3, 1fr);
    }
}

.blog__item {
    border-radius: 30px;
    border: 2px solid #ececf0;
    background-color: #fff;
    padding: 10px 10px 30px;
    transition: all 0.3s;
    position: relative;
}

.blog__item:hover, .blog__item:focus {
    border-color: #fff;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.blog__item:hover .blog__item__arrow, .blog__item:focus .blog__item__arrow {
    opacity: 1;
}

.blog__item__thumb {
    position: relative;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 20px;
    margin-bottom: 30px;
    min-height: 180px;
}

@media screen and (min-width: 40em) {
    .blog__item__thumb {
        margin-bottom: 70px;
        padding-bottom: 62.5%;
    }
}

.blog__item__thumb.icon {
    background-color: #f6f6f8;
}

.blog__item__thumb.icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #343465;
    font-size: 50px;
}

.blog__item__date {
    color: #a2a2b3;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 10px;
}

.blog__item__title {
    color: #27274d;
    font-weight: 600;
    text-align: center;
    display: block;
    font-size: 18px;
    line-height: 24px;
}

@media screen and (min-width: 40em) {
    .blog__item__title {
        margin-bottom: 30px;
        font-size: 20px;
        line-height: 28px;
    }
}

.blog__item__arrow {
    display: block;
    font-size: 24px;
    color: #fd9e20;
    opacity: 0;
    transition: all 0.3s;
    text-align: center;
}

.blog__item__link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.blog__item__content:first-child {
    margin-top: 70px;
}

.blog__thumb {
    margin-bottom: 60px;
    text-align: center;
    max-width: 1000px;
}

.blog__thumb picture,
.blog__thumb img {
    border-radius: 20px;
}

body.single-post .header__breadcrumbs {
    text-align: center;
}

body.single-post .header__breadcrumbs .breadcrumbs {
    margin-bottom: 20px;
}

body.single-post .header__breadcrumbs__date {
    color: #a2a2b3;
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    margin-bottom: 20px;
}

body.blog .header__breadcrumbs,
body.single-post .header__breadcrumbs {
    padding-top: 45px;
    margin-bottom: 0;
}

body.blog .header__breadcrumbs .page-title,
body.single-post .header__breadcrumbs .page-title {
    margin-bottom: 20px;
}

body.blog #content #inner-content,
body.single-post #content #inner-content {
    padding-bottom: 50px;
}

@media screen and (min-width: 40em) {
    body.blog #content #inner-content,
    body.single-post #content #inner-content {
        padding-bottom: 100px;
    }
}

body.blog #main,
body.single-post #main {
    max-width: 700px;
}

body.page-template-template-about .header__breadcrumbs {
    margin-top: 25px;
    margin-bottom: 20px;
}

body.page-template-template-about .header__breadcrumbs .page-title {
    display: none;
}

@media screen and (max-width: 39.9375em) {
    .about1 {
        padding-top: 30px;
    }
}

@media screen and (min-width: 40em) {
    .about1 {
        padding-top: 68px;
    }
}

.about1 > .row {
    position: relative;
}

@media screen and (max-width: 39.9375em) {
    .about1 > .row {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media screen and (min-width: 40em) {
    .about1 > .row {
        padding-left: 15px;
        padding-right: 15px;
    }
}

.about1__text {
    background-color: #f6f6f8;
    border-radius: 30px;
}

@media screen and (max-width: 39.9375em) {
    .about1__text__content {
        padding: 30px 20px;
    }
}

@media screen and (min-width: 40em) {
    .about1__text__content {
        padding-top: 100px;
        padding-bottom: 100px;
        padding-left: 50px;
        max-width: calc(100% - 50px);
    }
}

@media (min-width: 1100px) {
    .about1__text__content {
        max-width: 500px;
    }
}

@media (min-width: 1280px) {
    .about1__text__content {
        padding-left: 100px;
    }
}

.about1__icon {
    margin-bottom: 20px;
}

.about1__icon i {
    font-size: 36px;
    color: #27274d;
}

@media screen and (max-width: 39.9375em) {
    .about1__thumb {
        margin-top: 30px;
    }
}

@media screen and (min-width: 40em) {
    .about1__thumb {
        position: absolute;
        right: 0;
        top: -68px;
        width: 50%;
        height: 100%;
    }
}

.about1__thumb > .inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.about1__thumb > .inner picture,
.about1__thumb > .inner img {
    border-radius: 30px;
}

@media screen and (max-width: 39.9375em) {
    .about1__thumb > .inner picture,
    .about1__thumb > .inner img {
        width: 100%;
        max-height: 256px;
        object-fit: cover;
        object-position: center;
    }
}

@media screen and (min-width: 40em) {
    .about1__thumb > .inner picture,
    .about1__thumb > .inner img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.about2 {
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (min-width: 40em) {
    .about2 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.about2 > .row {
    max-width: 1230px;
}

@media screen and (min-width: 40em) {
    .about2__content {
        column-count: 2;
        column-gap: 7vw;
    }
}

.about2__content p {
    color: #27274d;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
}

.about2__content p.lead {
    font-size: 18px;
    line-height: 26px;
}

.about3 {
    padding-bottom: 50px;
}

@media screen and (max-width: 39.9375em) {
    .about3 {
        margin-left: 10px;
        margin-right: 10px;
    }
}

@media screen and (min-width: 40em) {
    .about3 {
        padding-top: 68px;
        padding-bottom: 100px;
    }
}

.about3 > .row {
    position: relative;
}

.about3__text {
    background-color: #27274d;
    border-radius: 30px;
}

@media screen and (max-width: 39.9375em) {
    .about3__text {
        padding: 30px 20px;
    }
}

@media screen and (min-width: 40em) {
    .about3__text {
        padding-left: 11vw;
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.about3__text__content {
    max-width: 520px;
}

.about3__title {
    color: #fff;
}

.about3__description {
    color: rgba(255, 255, 255, 0.5);
}

.about3__description p {
    color: rgba(255, 255, 255, 0.5);
}

.about3__description p.lead {
    color: #fff;
}

@media screen and (max-width: 39.9375em) {
    .about3__thumb {
        margin-bottom: 30px;
    }
}

@media screen and (min-width: 40em) {
    .about3__thumb {
        position: absolute;
        left: 0;
        top: -68px;
        width: 50%;
        height: 100%;
    }
}

.about3__thumb > .inner {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.about3__thumb > .inner picture,
.about3__thumb > .inner img {
    border-radius: 30px;
}

@media screen and (max-width: 39.9375em) {
    .about3__thumb > .inner picture,
    .about3__thumb > .inner img {
        width: 100%;
        max-height: 256px;
        object-fit: cover;
        object-position: center;
    }
}

@media screen and (min-width: 40em) {
    .about3__thumb > .inner picture,
    .about3__thumb > .inner img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
}

.about4 {
    background-color: #f6f6f8;
    padding-top: 50px;
    padding-bottom: 50px;
}

@media screen and (min-width: 40em) {
    .about4 {
        padding-top: 100px;
        padding-bottom: 100px;
    }
}

.about4__title {
    text-align: center;
    margin-bottom: 0;
}

.about4__item {
    margin-top: 20px;
}

.about4__item > .inner {
    height: 100%;
    border-radius: 30px;
    border: 2px solid #ececf0;
    background-color: #fff;
    padding: 30px 20px;
}

@media screen and (min-width: 40em) {
    .about4__item > .inner {
        padding: 50px;
    }
}

.about4__item__icon {
    margin-bottom: 20px;
}

@media screen and (min-width: 40em) {
    .about4__item__icon {
        margin-bottom: 56px;
    }
}

.about4__item__icon i {
    font-size: 80px;
    color: #fd9e20;
}

.about4__item__title {
    color: #27274d;
    font-size: 24px;
    line-height: 29px;
    font-weight: 600;
    margin-bottom: 30px;
}

.about4__item__title strong {
    font-weight: 900;
}

.about4__footer1 {
    margin-top: 60px;
    text-align: center;
    color: #27274d;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
}

@media screen and (min-width: 40em) {
    .about4__footer1 {
        font-size: 30px;
        line-height: 56px;
    }
}

.about4__footer2 {
    margin-top: 30px;
    color: #27274d;
    text-align: center;
    font-size: 18px;
    line-height: 24px;
}

@media screen and (min-width: 40em) {
    .about4__footer2 {
        font-size: 22px;
        line-height: 32px;
    }
}

.about4__footer2 img,
.about4__footer2 picture {
    display: block;
    max-width: 137px;
    margin: 23px auto 0;
}

.marking__items {
    padding-bottom: 50px;
    margin-top: 34px;
    background: none !important;
}

@media screen and (min-width: 40em) {
    .marking__items {
        padding-bottom: 100px;
    }
}

.marking__item {
    display: block;
    background-color: #fff;
    border-radius: 32px;
    border: 2px solid #ececf0;
    transition: all 0.3s;
    padding: 5px;
}

@media screen and (min-width: 40em) {
    .marking__item {
        padding: 10px;
    }
}

.marking__item:nth-child(n+2) {
    margin-top: 10px;
}

.marking__item__title {
    color: #27274d !important;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
    border: 0;
    border-bottom: 0 !important;
    padding: 13px 40px 13px 20px;
    background-color: #fff !important;
    transition: all 0.3s;
    border-radius: 32px !important;
}

.marking__item__title:before {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #27274d;
    font-size: 12px;
    transition: all 0.3s;
    transform: rotate(-90deg);
}

.marking__item.is-active .marking__item__title {
    background-color: #f6f6f8 !important;
}

.marking__item.is-active .marking__item__title:before {
    transform: none;
}

.marking__item__content {
    border: 0 !important;
    padding: 10px 20px;
    background: none !important;
}

@media screen and (min-width: 40em) {
    .marking__item__content {
        padding: 10px 10px 10px 30px;
    }
}

.marking__item__text {
    max-width: 380px;
    padding-top: 20px;
    font-size: 14px;
    line-height: 24px;
}

.marking__item__text p {
    font-size: 14px;
    line-height: 24px;
}

.marking__item__text p.lead {
    font-size: 18px;
    line-height: 26px;
}

@media screen and (max-width: 39.9375em) {
    .marking__item__thumb {
        margin-top: 30px;
    }
}

.marking__item__thumb picture,
.marking__item__thumb img {
    border-radius: 22px;
}

body.page-template-template-marking #inner-content {
    background-color: #f6f6f8;
    padding-top: 45px;
}

body.page-template-template-marking #inner-content > .row {
    max-width: 960px;
}

body.page-template-template-marking .header__breadcrumbs {
    margin-bottom: 30px;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    left: 0;
    top: 0;
    display: block;
}

.slick-track:before, .slick-track:after {
    content: "";
    display: table;
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    float: left;
    height: 100%;
    min-height: 1px;
    display: none;
}

[dir=rtl] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */
.slick-loading .slick-list {
    background: #fff url("../images/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
    font-family: "slick";
    src: url("../fonts/slick.eot");
    src: url("../fonts/slick.eot?#iefix") format("embedded-opentype"), url("../fonts/slick.woff") format("woff"), url("../fonts/slick.ttf") format("truetype"), url("../fonts/slick.svg#slick") format("svg");
    font-weight: normal;
    font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 20px;
    width: 20px;
    line-height: 0px;
    font-size: 0px;
    cursor: pointer;
    background: transparent;
    color: transparent;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    padding: 0;
    border: none;
    outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
    outline: none;
    background: transparent;
    color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
    opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
    opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
    font-family: "slick";
    font-size: 20px;
    line-height: 1;
    color: white;
    opacity: 0.75;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
    left: -25px;
}

[dir=rtl] .slick-prev {
    left: auto;
    right: -25px;
}

.slick-prev:before {
    content: "←";
}

[dir=rtl] .slick-prev:before {
    content: "→";
}

.slick-next {
    right: -25px;
}

[dir=rtl] .slick-next {
    left: -25px;
    right: auto;
}

.slick-next:before {
    content: "→";
}

[dir=rtl] .slick-next:before {
    content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
    margin-bottom: 30px;
}

.slick-dots {
    position: absolute;
    bottom: -25px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    margin: 0;
    width: 100%;
}

.slick-dots li {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
}

.slick-dots li button {
    border: 0;
    background: transparent;
    display: block;
    height: 20px;
    width: 20px;
    outline: none;
    line-height: 0px;
    font-size: 0px;
    color: transparent;
    padding: 5px;
    cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
    outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
    opacity: 1;
}

.slick-dots li button:before {
    position: absolute;
    top: 0;
    left: 0;
    content: "•";
    width: 20px;
    height: 20px;
    font-family: "slick";
    font-size: 6px;
    line-height: 20px;
    text-align: center;
    color: black;
    opacity: 0.25;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
    color: black;
    opacity: 0.75;
}

body.compensate-for-scrollbar {
    overflow: hidden;
}

.fancybox-active {
    height: auto;
}

.fancybox-is-hidden {
    left: -9999px;
    margin: 0;
    position: absolute !important;
    top: -9999px;
    visibility: hidden;
}

.fancybox-container {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    height: 100%;
    left: 0;
    position: fixed;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    width: 100%;
    z-index: 99992;
}

.fancybox-container * {
    box-sizing: border-box;
}

.fancybox-outer,
.fancybox-inner,
.fancybox-bg,
.fancybox-stage {
    bottom: 0;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

.fancybox-outer {
    -webkit-overflow-scrolling: touch;
    overflow-y: auto;
}

.fancybox-bg {
    background: #1e1e1e;
    opacity: 0;
    transition-duration: inherit;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.47, 0, 0.74, 0.71);
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.87;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}

.fancybox-infobar,
.fancybox-toolbar,
.fancybox-caption,
.fancybox-navigation .fancybox-button {
    direction: ltr;
    opacity: 0;
    position: absolute;
    transition: opacity 0.25s, visibility 0s linear 0.25s;
    visibility: hidden;
    z-index: 99997;
}

.fancybox-show-infobar .fancybox-infobar,
.fancybox-show-toolbar .fancybox-toolbar,
.fancybox-show-caption .fancybox-caption,
.fancybox-show-nav .fancybox-navigation .fancybox-button {
    opacity: 1;
    transition: opacity 0.25s, visibility 0s;
    visibility: visible;
}

.fancybox-infobar {
    color: #ccc;
    font-size: 13px;
    -webkit-font-smoothing: subpixel-antialiased;
    height: 44px;
    left: 0;
    line-height: 44px;
    min-width: 44px;
    mix-blend-mode: difference;
    padding: 0 10px;
    pointer-events: none;
    text-align: center;
    top: 0;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fancybox-toolbar {
    right: 0;
    top: 0;
}

.fancybox-stage {
    direction: ltr;
    overflow: visible;
    -webkit-transform: translate3d(0, 0, 0);
    z-index: 99994;
}

.fancybox-is-open .fancybox-stage {
    overflow: hidden;
}

.fancybox-slide {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    display: none;
    height: 100%;
    left: 0;
    outline: none;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 44px;
    position: absolute;
    text-align: center;
    top: 0;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    white-space: normal;
    width: 100%;
    z-index: 99994;
}

.fancybox-slide::before {
    content: "";
    display: inline-block;
    height: 100%;
    margin-right: -0.25em;
    vertical-align: middle;
    width: 0;
}

.fancybox-is-sliding .fancybox-slide,
.fancybox-slide--previous,
.fancybox-slide--current,
.fancybox-slide--next {
    display: block;
}

.fancybox-slide--next {
    z-index: 99995;
}

.fancybox-slide--image {
    overflow: visible;
    padding: 44px 0;
}

.fancybox-slide--image::before {
    display: none;
}

.fancybox-slide--html {
    padding: 6px 6px 0 6px;
}

.fancybox-slide--iframe {
    padding: 44px 44px 0;
}

.fancybox-content {
    background: #fff;
    display: inline-block;
    margin: 0 0 6px 0;
    max-width: 100%;
    overflow: auto;
    padding: 0;
    padding: 24px;
    position: relative;
    text-align: left;
    vertical-align: middle;
}

.fancybox-slide--image .fancybox-content {
    -webkit-animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    animation-timing-function: cubic-bezier(0.5, 0, 0.14, 1);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: transparent;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    left: 0;
    margin: 0;
    max-width: none;
    overflow: visible;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-transform-origin: top left;
    -ms-transform-origin: top left;
    transform-origin: top left;
    transition-property: opacity, -webkit-transform;
    transition-property: transform, opacity;
    transition-property: transform, opacity, -webkit-transform;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 99995;
}

.fancybox-can-zoomOut .fancybox-content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.fancybox-can-zoomIn .fancybox-content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.fancybox-can-drag .fancybox-content {
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox-is-dragging .fancybox-content {
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox-container [data-selectable=true] {
    cursor: text;
}

.fancybox-image,
.fancybox-spaceball {
    background: transparent;
    border: 0;
    height: 100%;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none;
    padding: 0;
    position: absolute;
    top: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 100%;
}

.fancybox-spaceball {
    z-index: 1;
}

.fancybox-slide--html .fancybox-content {
    margin-bottom: 6px;
}

.fancybox-slide--video .fancybox-content,
.fancybox-slide--map .fancybox-content,
.fancybox-slide--iframe .fancybox-content {
    height: 100%;
    margin: 0;
    overflow: visible;
    padding: 0;
    width: 100%;
}

.fancybox-slide--video .fancybox-content {
    background: #000;
}

.fancybox-slide--map .fancybox-content {
    background: #e5e3df;
}

.fancybox-slide--iframe .fancybox-content {
    background: #fff;
    height: calc(100% - 44px);
    margin-bottom: 44px;
}

.fancybox-video,
.fancybox-iframe {
    background: transparent;
    border: 0;
    height: 100%;
    margin: 0;
    overflow: hidden;
    padding: 0;
    width: 100%;
}

.fancybox-iframe {
    vertical-align: top;
}

.fancybox-error {
    background: #fff;
    cursor: default;
    max-width: 400px;
    padding: 40px;
    width: 100%;
}

.fancybox-error p {
    color: #444;
    font-size: 16px;
    line-height: 20px;
    margin: 0;
    padding: 0;
}

/* Buttons */
.fancybox-button {
    background: rgba(30, 30, 30, 0.6);
    border: 0;
    border-radius: 0;
    cursor: pointer;
    display: inline-block;
    height: 44px;
    margin: 0;
    outline: none;
    padding: 10px;
    transition: color 0.2s;
    vertical-align: top;
    width: 44px;
}

.fancybox-button,
.fancybox-button:visited,
.fancybox-button:link {
    color: #ccc;
}

.fancybox-button:focus,
.fancybox-button:hover {
    color: #fff;
}

.fancybox-button.disabled,
.fancybox-button.disabled:hover,
.fancybox-button[disabled],
.fancybox-button[disabled]:hover {
    color: #888;
    cursor: default;
}

.fancybox-button svg {
    display: block;
    overflow: visible;
    position: relative;
    shape-rendering: geometricPrecision;
}

.fancybox-button svg path {
    fill: transparent;
    stroke: currentColor;
    stroke-linejoin: round;
    stroke-width: 3;
}

.fancybox-button--play svg path:nth-child(2) {
    display: none;
}

.fancybox-button--pause svg path:nth-child(1) {
    display: none;
}

.fancybox-button--play svg path,
.fancybox-button--share svg path,
.fancybox-button--thumbs svg path {
    fill: currentColor;
}

.fancybox-button--share svg path {
    stroke-width: 1;
}

/* Navigation arrows */
.fancybox-navigation .fancybox-button {
    height: 38px;
    opacity: 0;
    padding: 6px;
    position: absolute;
    top: 50%;
    width: 38px;
}

.fancybox-show-nav .fancybox-navigation .fancybox-button {
    transition: opacity 0.25s, visibility 0s, color 0.25s;
}

.fancybox-navigation .fancybox-button::after {
    content: "";
    left: -25px;
    padding: 50px;
    position: absolute;
    top: -25px;
}

.fancybox-navigation .fancybox-button--arrow_left {
    left: 6px;
}

.fancybox-navigation .fancybox-button--arrow_right {
    right: 6px;
}

/* Close button on the top right corner of html content */
.fancybox-close-small {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: #555;
    cursor: pointer;
    height: 44px;
    margin: 0;
    padding: 6px;
    position: absolute;
    right: 0;
    top: 0;
    width: 44px;
    z-index: 10;
}

.fancybox-close-small svg {
    fill: transparent;
    opacity: 0.8;
    stroke: currentColor;
    stroke-width: 1.5;
    transition: stroke 0.1s;
}

.fancybox-close-small:focus {
    outline: none;
}

.fancybox-close-small:hover svg {
    opacity: 1;
}

.fancybox-slide--image .fancybox-close-small,
.fancybox-slide--video .fancybox-close-small,
.fancybox-slide--iframe .fancybox-close-small {
    color: #ccc;
    padding: 5px;
    right: -12px;
    top: -44px;
}

.fancybox-slide--image .fancybox-close-small:hover svg,
.fancybox-slide--video .fancybox-close-small:hover svg,
.fancybox-slide--iframe .fancybox-close-small:hover svg {
    background: transparent;
    color: #fff;
}

.fancybox-is-scaling .fancybox-close-small,
.fancybox-is-zoomable.fancybox-can-drag .fancybox-close-small {
    display: none;
}

/* Caption */
.fancybox-caption {
    bottom: 0;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    left: 0;
    line-height: 1.5;
    padding: 25px 44px 25px 44px;
    right: 0;
}

.fancybox-caption::before {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAEtCAQAAABjBcL7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHRJREFUKM+Vk8EOgDAIQ0vj/3+xBw8qIZZueFnIKC90MCAI8DlrkHGeqqGIU6lVigrBtpCWqeRWoHDNqs0F7VNVBVxmHRlvoVqjaYkdnDIaivH2HqZ5+oZj3JUzWB+cOz4G48Bg+tsJ/tqu4dLC/4Xb+0GcF5BwBC0AA53qAAAAAElFTkSuQmCC);
    background-repeat: repeat-x;
    background-size: contain;
    bottom: 0;
    content: "";
    display: block;
    left: 0;
    pointer-events: none;
    position: absolute;
    right: 0;
    top: -25px;
    z-index: -1;
}

.fancybox-caption::after {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    content: "";
    display: block;
    left: 44px;
    position: absolute;
    right: 44px;
    top: 0;
}

.fancybox-caption a,
.fancybox-caption a:link,
.fancybox-caption a:visited {
    color: #ccc;
    text-decoration: none;
}

.fancybox-caption a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Loading indicator */
.fancybox-loading {
    -webkit-animation: fancybox-rotate 0.8s infinite linear;
    animation: fancybox-rotate 0.8s infinite linear;
    background: transparent;
    border: 6px solid rgba(100, 100, 100, 0.5);
    border-radius: 100%;
    border-top-color: #fff;
    height: 60px;
    left: 50%;
    margin: -30px 0 0 -30px;
    opacity: 0.6;
    padding: 0;
    position: absolute;
    top: 50%;
    width: 60px;
    z-index: 99999;
}

@-webkit-keyframes fancybox-rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

@keyframes fancybox-rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg);
    }
}

/* Transition effects */
.fancybox-animated {
    transition-timing-function: cubic-bezier(0, 0, 0.25, 1);
}

/* transitionEffect: slide */
.fancybox-fx-slide.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: translate3d(-100%, 0, 0);
    transform: translate3d(-100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0);
}

.fancybox-fx-slide.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

/* transitionEffect: fade */
.fancybox-fx-fade.fancybox-slide--previous,
.fancybox-fx-fade.fancybox-slide--next {
    opacity: 0;
    transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
}

.fancybox-fx-fade.fancybox-slide--current {
    opacity: 1;
}

/* transitionEffect: zoom-in-out */
.fancybox-fx-zoom-in-out.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(1.5, 1.5, 1.5);
    transform: scale3d(1.5, 1.5, 1.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0.5, 0.5, 0.5);
    transform: scale3d(0.5, 0.5, 0.5);
}

.fancybox-fx-zoom-in-out.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1);
    transform: scale3d(1, 1, 1);
}

/* transitionEffect: rotate */
.fancybox-fx-rotate.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.fancybox-fx-rotate.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
}

.fancybox-fx-rotate.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
}

/* transitionEffect: circular */
.fancybox-fx-circular.fancybox-slide--previous {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(-100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--next {
    opacity: 0;
    -webkit-transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
    transform: scale3d(0, 0, 0) translate3d(100%, 0, 0);
}

.fancybox-fx-circular.fancybox-slide--current {
    opacity: 1;
    -webkit-transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
    transform: scale3d(1, 1, 1) translate3d(0, 0, 0);
}

/* transitionEffect: tube */
.fancybox-fx-tube.fancybox-slide--previous {
    -webkit-transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
    transform: translate3d(-100%, 0, 0) scale(0.1) skew(-10deg);
}

.fancybox-fx-tube.fancybox-slide--next {
    -webkit-transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
    transform: translate3d(100%, 0, 0) scale(0.1) skew(10deg);
}

.fancybox-fx-tube.fancybox-slide--current {
    -webkit-transform: translate3d(0, 0, 0) scale(1);
    transform: translate3d(0, 0, 0) scale(1);
}

/* Share */
.fancybox-share {
    background: #f4f4f4;
    border-radius: 3px;
    max-width: 90%;
    padding: 30px;
    text-align: center;
}

.fancybox-share h1 {
    color: #222;
    font-size: 35px;
    font-weight: 700;
    margin: 0 0 20px 0;
}

.fancybox-share p {
    margin: 0;
    padding: 0;
}

.fancybox-share__button {
    border: 0;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 40px;
    margin: 0 5px 10px 5px;
    min-width: 130px;
    padding: 0 15px;
    text-decoration: none;
    transition: all 0.2s;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}

.fancybox-share__button:visited,
.fancybox-share__button:link {
    color: #fff;
}

.fancybox-share__button:hover {
    text-decoration: none;
}

.fancybox-share__button--fb {
    background: #3b5998;
}

.fancybox-share__button--fb:hover {
    background: #344e86;
}

.fancybox-share__button--pt {
    background: #bd081d;
}

.fancybox-share__button--pt:hover {
    background: #aa0719;
}

.fancybox-share__button--tw {
    background: #1da1f2;
}

.fancybox-share__button--tw:hover {
    background: #0d95e8;
}

.fancybox-share__button svg {
    height: 25px;
    margin-right: 7px;
    position: relative;
    top: -1px;
    vertical-align: middle;
    width: 25px;
}

.fancybox-share__button svg path {
    fill: #fff;
}

.fancybox-share__input {
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d7d7d7;
    border-radius: 0;
    color: #5d5b5b;
    font-size: 14px;
    margin: 10px 0 0 0;
    outline: none;
    padding: 10px 15px;
    width: 100%;
}

/* Thumbs */
.fancybox-thumbs {
    background: #fff;
    bottom: 0;
    display: none;
    margin: 0;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    padding: 2px 2px 4px 2px;
    position: absolute;
    right: 0;
    -webkit-tap-highlight-color: transparent;
    top: 0;
    width: 212px;
    z-index: 99995;
}

.fancybox-thumbs-x {
    overflow-x: auto;
    overflow-y: hidden;
}

.fancybox-show-thumbs .fancybox-thumbs {
    display: block;
}

.fancybox-show-thumbs .fancybox-inner {
    right: 212px;
}

.fancybox-thumbs > ul {
    font-size: 0;
    height: 100%;
    list-style: none;
    margin: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0;
    position: absolute;
    position: relative;
    white-space: nowrap;
    width: 100%;
}

.fancybox-thumbs-x > ul {
    overflow: hidden;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar {
    width: 7px;
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-track {
    background: #fff;
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
}

.fancybox-thumbs-y > ul::-webkit-scrollbar-thumb {
    background: #2a2a2a;
    border-radius: 10px;
}

.fancybox-thumbs > ul > li {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    cursor: pointer;
    float: left;
    height: 75px;
    margin: 2px;
    max-height: calc(100% - 8px);
    max-width: calc(50% - 4px);
    outline: none;
    overflow: hidden;
    padding: 0;
    position: relative;
    -webkit-tap-highlight-color: transparent;
    width: 100px;
}

.fancybox-thumbs-loading {
    background: rgba(0, 0, 0, 0.1);
}

.fancybox-thumbs > ul > li {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.fancybox-thumbs > ul > li:before {
    border: 4px solid #4ea7f9;
    bottom: 0;
    content: "";
    left: 0;
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
    transition: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 99991;
}

.fancybox-thumbs .fancybox-thumbs-active:before {
    opacity: 1;
}

/* Styling for Small-Screen Devices */
@media all and (max-width: 800px) {
    .fancybox-thumbs {
        width: 110px;
    }

    .fancybox-show-thumbs .fancybox-inner {
        right: 110px;
    }

    .fancybox-thumbs > ul > li {
        max-width: calc(100% - 10px);
    }
}

.fancybox-container {
    font-family: "Montserrat", sans-serif;
}

.fancybox-bg {
    background: #666;
    opacity: 0;
}

.fancybox-is-open .fancybox-bg {
    opacity: 0.3;
}

.tabs {
    background: #fff;
    border: none;
}

ul.products {
    list-style: none;
}

.widget_price_filter .price_label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.widget_price_filter .price_label span {
    color: #27274d;
    font-size: 12px;
    line-height: 15px;
    padding: 8px 12px;
    border: 2px solid #ececf0;
    border-radius: 25px;
}

.widget_price_filter .ui-slider {
    position: relative;
    background-color: #ececf0;
    margin-top: 10px;
    margin-bottom: 20px;
    margin-right: 12px;
}

.widget_price_filter .ui-slider .ui-slider-handle {
    position: absolute;
    width: 1rem;
    height: 1rem;
    border: 2px solid #fff;
    border-radius: 50%;
    outline: none;
    transition: all 0.3s;
    z-index: 2;
    background-color: #fd9e20;
    cursor: ew-resize;
    left: -12px;
    top: -6px;
}

.widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    z-index: 1;
    display: block;
    border: 0;
    background-color: #fd9e20;
}

.widget_price_filter .ui-slider-horizontal {
    height: 2px;
}

.widget_price_filter .ui-slider-horizontal .ui-slider-range {
    top: 0;
    height: 100%;
}

.widget_price_filter .button, .widget_price_filter .button--outline, .widget_price_filter .button--white, .widget_price_filter .button--gray {
    padding: 10px;
}

.woocommerce-notice--info,
.woocommerce-info,
.cart-empty,
.woocommerce-message,
.woocommerce-notice--success,
ul.woocommerce-error li,
div.woocommerce-error {
    color: #3498db;
    font-size: 16px;
    line-height: 24px;
    border: 2px solid #3498db;
    border-radius: 25px;
    display: block;
    margin-bottom: 30px;
    padding: 10px;
}

@media screen and (min-width: 40em) {
    .woocommerce-notice--info,
    .woocommerce-info,
    .cart-empty,
    .woocommerce-message,
    .woocommerce-notice--success,
    ul.woocommerce-error li,
    div.woocommerce-error {
        padding: 20px;
    }
}

.woocommerce-notice--info a,
.woocommerce-info a,
.cart-empty a,
.woocommerce-message a,
.woocommerce-notice--success a,
ul.woocommerce-error li a,
div.woocommerce-error a {
    text-decoration: underline;
    color: #3498db;
}

@media screen and (min-width: 40em) and (max-width: 79.9375em) {
    .woocommerce-notice--info,
    .woocommerce-info,
    .cart-empty,
    .woocommerce-message,
    .woocommerce-notice--success,
    ul.woocommerce-error li,
    div.woocommerce-error {
        max-width: 75%;
    }
}

@media print, screen and (min-width: 80em) {
    .woocommerce-notice--info,
    .woocommerce-info,
    .cart-empty,
    .woocommerce-message,
    .woocommerce-notice--success,
    ul.woocommerce-error li,
    div.woocommerce-error {
        max-width: 50%;
    }
}

div.woocommerce-error {
    color: #e74c3c;
    border: 2px solid #e74c3c;
    margin-bottom: 30px;
}

div.woocommerce-error a {
    color: #e74c3c;
}

ul.woocommerce-error {
    margin-left: 0;
    margin-bottom: 30px;
    list-style: none;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
}

ul.woocommerce-error a {
    color: #e74c3c;
}

ul.woocommerce-error li {
    color: #e74c3c;
    border: 2px solid #e74c3c;
}

.woocommerce-notice--success {
    color: #678f46;
    border: 2px solid #678f46;
}

.woocommerce-notice--success a {
    color: #678f46;
}

.woocommerce-message {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.woocommerce-message .button, .woocommerce-message .button--outline, .woocommerce-message .button--white, .woocommerce-message .button--gray {
    display: block;
    color: #fff;
    text-decoration: none;
    max-width: 50%;
    order: 99;
    margin-top: 30px;
}

.star-rating i {
    font-size: 13px;
    color: #ececf0;
    display: inline-block;
}

.star-rating i.filled {
    color: #fd9e20;
}

.star-rating i + i {
    margin-left: 5px;
}

.woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}

.woocommerce-tabs .wc-tabs li {
    display: block;
    max-width: 269px;
    border: 2px solid #e1e1e1;
}

.woocommerce-tabs .wc-tabs li.active, .woocommerce-tabs .wc-tabs li.is-active, .woocommerce-tabs .wc-tabs li:hover, .woocommerce-tabs .wc-tabs li:focus {
    border-color: #fd9e20;
}

.woocommerce-tabs .wc-tabs li.active a, .woocommerce-tabs .wc-tabs li.is-active a, .woocommerce-tabs .wc-tabs li:hover a, .woocommerce-tabs .wc-tabs li:focus a {
    color: #fd9e20;
}

.woocommerce-tabs .wc-tabs li a {
    color: #000;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    display: block;
    padding: 21px;
    text-decoration: none;
}

.woocommerce-tabs .wc-tabs li + li {
    margin-top: 8px;
}

.quantity input, .quantity__minus, .quantity__plus {
    border: 2px solid #ececf0;
    border-radius: 50%;
    height: 40px;
    color: #27274d;
    font-size: 12px;
    font-weight: 700;
    line-height: 40px;
    text-align: center;
    transition: all 0.3s;
}

.quantity input:hover, .quantity input:focus, .quantity__minus:hover, .quantity__minus:focus, .quantity__plus:hover, .quantity__plus:focus {
    background-color: #fff4e6;
    border-color: #fd9e20;
}

.quantity__minus, .quantity__plus {
    width: 40px;
    font-size: 18px;
    line-height: 30px;
}

.quantity__wrap {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 10px;
}

body.woocommerce-cart .quantity__wrap {
    justify-content: center;
}

.quantity__wrap > * {
    display: inline-block;
}

.quantity__wrap input {
    padding: 0 !important;
    margin: 0 10px !important;
    width: 100px;
}

.quantity__wrap input::-webkit-inner-spin-button, .quantity__wrap input::-webkit-outer-spin-button {
    -webkit-appearance: none;
}

.woocommerce-field-group {
    display: flex;
    flex-direction: column;
}

.woocommerce-field-group label {
    flex-grow: 1;
    color: #000;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 9px;
}

.woocommerce-field-group .optional {
    display: none;
}

#shipping_method {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 0;
}

#shipping_method input[type=radio] {
    margin: 0;
}

#shipping_method li {
    display: flex;
    margin-bottom: 10px;
}

#shipping_method label {
    text-transform: uppercase;
    font-weight: 700;
}

#shipping_method label span,
#shipping_method label small {
    font-weight: 400;
    text-transform: none;
}

@media screen and (max-width: 39.9375em) {
    #shipping_method label span.price {
        display: block;
    }
}

#coupon_code {
    max-width: 300px;
}

#order_review .shop_table,
.woocommerce-order-details .shop_table,
.cart-collaterals .shop_table {
    background-color: #f9f9f9;
    max-width: 790px;
    border-radius: 25px;
}

#order_review .shop_table tfoot,
#order_review .shop_table tbody,
.woocommerce-order-details .shop_table tfoot,
.woocommerce-order-details .shop_table tbody,
.cart-collaterals .shop_table tfoot,
.cart-collaterals .shop_table tbody {
    border: 0;
    background: none !important;
}

#order_review .shop_table tfoot tr,
#order_review .shop_table tbody tr,
.woocommerce-order-details .shop_table tfoot tr,
.woocommerce-order-details .shop_table tbody tr,
.cart-collaterals .shop_table tfoot tr,
.cart-collaterals .shop_table tbody tr {
    background: none;
}

#order_review .shop_table tfoot tr th,
#order_review .shop_table tbody tr th,
.woocommerce-order-details .shop_table tfoot tr th,
.woocommerce-order-details .shop_table tbody tr th,
.cart-collaterals .shop_table tfoot tr th,
.cart-collaterals .shop_table tbody tr th {
    text-align: left;
    vertical-align: top;
    width: 200px;
    text-transform: uppercase;
    padding-left: 15px !important;
}

@media (min-width: 1024px) {
    #order_review .shop_table tfoot tr th,
    #order_review .shop_table tbody tr th,
    .woocommerce-order-details .shop_table tfoot tr th,
    .woocommerce-order-details .shop_table tbody tr th,
    .cart-collaterals .shop_table tfoot tr th,
    .cart-collaterals .shop_table tbody tr th {
        padding-left: 42px !important;
    }
}

#order_review .shop_table tfoot tr td a,
#order_review .shop_table tbody tr td a,
.woocommerce-order-details .shop_table tfoot tr td a,
.woocommerce-order-details .shop_table tbody tr td a,
.cart-collaterals .shop_table tfoot tr td a,
.cart-collaterals .shop_table tbody tr td a {
    color: #fd9e20;
}

#order_review .shop_table tfoot tr td a:hover, #order_review .shop_table tfoot tr td a:focus,
#order_review .shop_table tbody tr td a:hover,
#order_review .shop_table tbody tr td a:focus,
.woocommerce-order-details .shop_table tfoot tr td a:hover,
.woocommerce-order-details .shop_table tfoot tr td a:focus,
.woocommerce-order-details .shop_table tbody tr td a:hover,
.woocommerce-order-details .shop_table tbody tr td a:focus,
.cart-collaterals .shop_table tfoot tr td a:hover,
.cart-collaterals .shop_table tfoot tr td a:focus,
.cart-collaterals .shop_table tbody tr td a:hover,
.cart-collaterals .shop_table tbody tr td a:focus {
    color: #e88502;
}

#order_review .shop_table tfoot tr.cart-subtotal td, #order_review .shop_table tfoot tr.cart-subtotal th,
#order_review .shop_table tbody tr.cart-subtotal td,
#order_review .shop_table tbody tr.cart-subtotal th,
.woocommerce-order-details .shop_table tfoot tr.cart-subtotal td,
.woocommerce-order-details .shop_table tfoot tr.cart-subtotal th,
.woocommerce-order-details .shop_table tbody tr.cart-subtotal td,
.woocommerce-order-details .shop_table tbody tr.cart-subtotal th,
.cart-collaterals .shop_table tfoot tr.cart-subtotal td,
.cart-collaterals .shop_table tfoot tr.cart-subtotal th,
.cart-collaterals .shop_table tbody tr.cart-subtotal td,
.cart-collaterals .shop_table tbody tr.cart-subtotal th {
    padding-top: 24px;
}

@media screen and (min-width: 40em) {
    #order_review .shop_table tfoot tr.cart-subtotal td, #order_review .shop_table tfoot tr.cart-subtotal th,
    #order_review .shop_table tbody tr.cart-subtotal td,
    #order_review .shop_table tbody tr.cart-subtotal th,
    .woocommerce-order-details .shop_table tfoot tr.cart-subtotal td,
    .woocommerce-order-details .shop_table tfoot tr.cart-subtotal th,
    .woocommerce-order-details .shop_table tbody tr.cart-subtotal td,
    .woocommerce-order-details .shop_table tbody tr.cart-subtotal th,
    .cart-collaterals .shop_table tfoot tr.cart-subtotal td,
    .cart-collaterals .shop_table tfoot tr.cart-subtotal th,
    .cart-collaterals .shop_table tbody tr.cart-subtotal td,
    .cart-collaterals .shop_table tbody tr.cart-subtotal th {
        padding-top: 42px;
    }
}

#order_review .shop_table tfoot tr.order-total td, #order_review .shop_table tfoot tr.order-total th,
#order_review .shop_table tbody tr.order-total td,
#order_review .shop_table tbody tr.order-total th,
.woocommerce-order-details .shop_table tfoot tr.order-total td,
.woocommerce-order-details .shop_table tfoot tr.order-total th,
.woocommerce-order-details .shop_table tbody tr.order-total td,
.woocommerce-order-details .shop_table tbody tr.order-total th,
.cart-collaterals .shop_table tfoot tr.order-total td,
.cart-collaterals .shop_table tfoot tr.order-total th,
.cart-collaterals .shop_table tbody tr.order-total td,
.cart-collaterals .shop_table tbody tr.order-total th {
    padding-bottom: 42px;
}

@media screen and (max-width: 39.9375em) {
    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table,
    #order_review .shop_table.shop_table.shop_table {
        display: block;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table thead,
    #order_review .shop_table.shop_table.shop_table thead {
        display: none;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tbody,
    #order_review .shop_table.shop_table.shop_table tbody {
        display: block !important;
        padding-top: 42px;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tbody tr,
    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tbody tr td,
    #order_review .shop_table.shop_table.shop_table tbody tr,
    #order_review .shop_table.shop_table.shop_table tbody tr td {
        display: block !important;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tbody tr td,
    #order_review .shop_table.shop_table.shop_table tbody tr td {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tfoot,
    #order_review .shop_table.shop_table.shop_table tfoot {
        display: block;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tfoot tr,
    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tfoot tr td,
    #order_review .shop_table.shop_table.shop_table tfoot tr,
    #order_review .shop_table.shop_table.shop_table tfoot tr td {
        display: block;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tfoot tr th,
    #order_review .shop_table.shop_table.shop_table tfoot tr th {
        display: none;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tfoot tr td,
    #order_review .shop_table.shop_table.shop_table tfoot tr td {
        padding-left: 24px !important;
        padding-right: 24px !important;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tfoot tr td.product-total,
    #order_review .shop_table.shop_table.shop_table tfoot tr td.product-total {
        padding-top: 0 !important;
    }

    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tfoot tr td[data-title]:before,
    #order_review .shop_table.shop_table.shop_table tfoot tr td[data-title]:before {
        content: attr(data-title) ":";
        display: block;
        margin-bottom: 10px;
        font-weight: 700;
    }
}

@media screen and (max-width: 39.9375em) {
    .woocommerce-order-details.woocommerce-order-details .shop_table.shop_table.shop_table tfoot tr td[data-title]:before {
        content: attr(data-title);
    }
}

.woocommerce-password-strength {
    margin-top: 10px;
    margin-bottom: 10px;
    font-weight: 600;
    line-height: 1;
}

.woocommerce-password-strength.short {
    color: #e74c3c;
}

.woocommerce-password-strength.bad {
    color: #ff5722;
}

.woocommerce-password-strength.good {
    color: #ffc107;
}

.woocommerce-password-strength.strong {
    color: #00a291;
}

@media screen and (min-width: 40em) {
    .woocommerce-ResetPassword__message,
    .woocommerce-form-register__message,
    .woocommerce-form-login__message {
        max-width: 50%;
    }
}

.woocommerce-ResetPassword__message p,
.woocommerce-form-register__message p,
.woocommerce-form-login__message p {
    margin-bottom: 30px;
}

.woocommerce-ResetPassword__buttons,
.woocommerce-form-register__buttons,
.woocommerce-form-login__buttons {
    margin-top: 30px;
}

.woocommerce-ResetPassword__buttons .button, .woocommerce-ResetPassword__buttons .button--outline, .woocommerce-ResetPassword__buttons .button--white, .woocommerce-ResetPassword__buttons .button--gray,
.woocommerce-form-register__buttons .button,
.woocommerce-form-register__buttons .button--outline,
.woocommerce-form-register__buttons .button--white,
.woocommerce-form-register__buttons .button--gray,
.woocommerce-form-login__buttons .button,
.woocommerce-form-login__buttons .button--outline,
.woocommerce-form-login__buttons .button--white,
.woocommerce-form-login__buttons .button--gray {
    margin-bottom: 30px;
}

.woocommerce-ResetPassword__buttons .woocommerce-form__input-checkbox,
.woocommerce-form-register__buttons .woocommerce-form__input-checkbox,
.woocommerce-form-login__buttons .woocommerce-form__input-checkbox {
    margin-bottom: 0 !important;
}

.woocommerce-ResetPassword .woocommerce-field-group,
.woocommerce-form-register .woocommerce-field-group,
.woocommerce-form-login .woocommerce-field-group {
    max-width: 300px;
}

.woocommerce-ResetPassword .lost_password,
.woocommerce-form-register .lost_password,
.woocommerce-form-login .lost_password {
    margin-top: 30px;
    margin-bottom: 30px;
}

.woocommerce-ResetPassword .lost_password a,
.woocommerce-form-register .lost_password a,
.woocommerce-form-login .lost_password a {
    color: #fd9e20;
}

.woocommerce-ResetPassword .lost_password a:hover, .woocommerce-ResetPassword .lost_password a:focus,
.woocommerce-form-register .lost_password a:hover,
.woocommerce-form-register .lost_password a:focus,
.woocommerce-form-login .lost_password a:hover,
.woocommerce-form-login .lost_password a:focus {
    color: #e88502;
}

.woocommerce-form-register__buttons {
    margin-bottom: 0;
}

.woocommerce-form-register__buttons .button, .woocommerce-form-register__buttons .button--outline, .woocommerce-form-register__buttons .button--white, .woocommerce-form-register__buttons .button--gray {
    margin-bottom: 0;
}

.input-checkbox {
    margin: 0 10px 0 0;
}

.woocommerce-form__label-for-checkbox {
    display: flex;
}

.woocommerce-form__label-for-checkbox span {
    color: #27274d;
    font-size: 12px;
    line-height: 17px;
    font-weight: 400;
}

.woocommerce-form__label-for-checkbox span.optional {
    display: none;
}

.woocommerce-form__label-for-checkbox a {
    color: #fd9e20;
}

.woocommerce-form__label-for-checkbox a:hover, .woocommerce-form__label-for-checkbox a:focus {
    color: #e88502;
}

.woocommerce-form__label-for-checkbox .input-checkbox {
    margin-right: 15px;
}

#profile_accept_policy_field label,
#profile_newsletter_field label,
#order_invoice_field label {
    margin-bottom: 0;
}

#profile_accept_policy_field,
#account_password_field,
#profile_newsletter_field,
#order_invoice_field {
    padding-left: 0;
}

@media (min-width: 640px) and (max-width: 1023px) {
    #account_password_field {
        flex: 0 0 33.33%;
        max-width: 33.33%;
    }
}

.wc-backward:before {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    margin-right: 5px;
}

.wc-forward:after {
    font-family: "icomoon" !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: inline-block;
    margin-left: 5px;
}

.woocommerce-store-notice {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0;
    width: 100%;
    font-size: 1em;
    padding: 1em 0;
    text-align: center;
    background-color: #fd9e20;
    color: #fff;
    z-index: 99998;
    box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
    display: none;
}

.woocommerce-store-notice a {
    color: #fff;
    text-decoration: underline;
}

body.woocommerce-account #inner-content,
body.woocommerce-checkout #inner-content,
body.woocommerce-cart #inner-content {
    max-width: 1024px;
    padding-top: 65px;
    padding-bottom: 50px;
}

@media screen and (min-width: 40em) {
    body.woocommerce-account #inner-content,
    body.woocommerce-checkout #inner-content,
    body.woocommerce-cart #inner-content {
        padding-bottom: 100px;
    }
}

dl.variation {
    margin-top: 15px;
}

@media screen and (max-width: 39.9375em) {
    .woocommerce-form-login .woocommerce-field-group,
    .woocommerce-form-register .woocommerce-field-group,
    .woocommerce-additional-fields .woocommerce-field-group,
    .woocommerce-shipping-fields .woocommerce-field-group,
    .woocommerce-billing-fields .woocommerce-field-group,
    .woocommerce-address-fields .woocommerce-field-group {
        margin-bottom: 15px !important;
    }
}

@media screen and (min-width: 40em) {
    .woocommerce-form-login .woocommerce-field-group:last-child,
    .woocommerce-form-register .woocommerce-field-group:last-child,
    .woocommerce-additional-fields .woocommerce-field-group:last-child,
    .woocommerce-shipping-fields .woocommerce-field-group:last-child,
    .woocommerce-billing-fields .woocommerce-field-group:last-child,
    .woocommerce-address-fields .woocommerce-field-group:last-child {
        margin-bottom: 30px !important;
    }
}

@media screen and (max-width: 39.9375em) {
    #customer_login .col-2 {
        margin-top: 30px;
    }
}

.woocommerce-form-login__message {
    margin-bottom: 30px;
}

/******************************************************************

Stylesheet: Retina Screens & Devices Stylesheet

When handling retina screens you need to make adjustments, especially
if you're not using font icons. Here you can add them in one neat
place.

******************************************************************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
    /*

  EXAMPLE
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:

  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }

  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:

  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }

  So, you would create the same icon, but at double the resolution, meaning
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go.

  */
}

/******************************************************************

Stylesheet: Print Stylesheet

This is the print stylesheet. There's probably not a lot
of reasons to edit this stylesheet.

Remember to add things that won't make sense to print at
the bottom. Things like nav, ads, and forms shouldbe set
to display none.
******************************************************************/
@media print {
    * {
        background: transparent !important;
        color: black !important;
        text-shadow: none !important;
        filter: none !important;
        -ms-filter: none !important;
    }

    a, a:visited {
        color: #444 !important;
        text-decoration: underline;
    }

    a:after, a:visited:after {
        content: " (" attr(href) ")";
    }

    a abbr[title]:after, a:visited abbr[title]:after {
        content: " (" attr(title) ")";
    }

    .ir a:after,
    a[href^="javascript:"]:after,
    a[href^="#"]:after {
        content: "";
    }

    pre, blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr, img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    @page {
        margin: 0.5cm;
    }

    p, h2, h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .sidebar,
    .page-navigation,
    .wp-prev-next,
    .respond-form,
    nav {
        display: none;
    }
}

/*# sourceMappingURL=site.css.map */
