/* Pass media breakpoints to JS
 ========================================================================== */
/*
 * Breakpoints
 */
.var-media-s::before {
  content: '640px';
}

.var-media-m::before {
  content: '960px';
}

.var-media-l::before {
  content: '1200px';
}

.var-media-xl::before {
  content: '1600px';
}

/* ========================================================================
   Component: Link
 ========================================================================== */
/* Muted
 ========================================================================== */
a.mgp-link-muted,
.mgp-link-muted a {
  color: #999;
}

a.mgp-link-muted:hover,
.mgp-link-muted a:hover {
  color: #666;
}

/* Text
 ========================================================================== */
a.mgp-link-text:not(:hover),
.mgp-link-text a:not(:hover) {
  color: inherit;
}

a.mgp-link-text:hover,
.mgp-link-text a:hover {
  color: #999;
}

/* Heading
 ========================================================================== */
a.mgp-link-heading:not(:hover),
.mgp-link-heading a:not(:hover) {
  color: inherit;
}

a.mgp-link-heading:hover,
.mgp-link-heading a:hover {
  color: #1e87f0;
  text-decoration: none;
}

/* Reset
 ========================================================================== */
/*
 * `!important` needed to override inverse component
 */
a.mgp-link-reset,
a.mgp-link-reset:hover,
.mgp-link-reset a,
.mgp-link-reset a:hover {
  color: inherit !important;
  text-decoration: none !important;
}

/* ========================================================================
   Component: Divider
 ========================================================================== */
/*
 * 1. Reset default `hr`
 * 2. Set margin if a `div` is used for semantical reason
 */
[class*='mgp-divider'] {
  /* 1 */
  border: none;
  /* 2 */
  margin-bottom: 20px;
}

/* Add margin if adjacent element */
* + [class*='mgp-divider'] {
  margin-top: 20px;
}

/* Icon
 ========================================================================== */
.mgp-divider-icon {
  position: relative;
  height: 20px;
  background-image: url("../../images/backgrounds/divider-icon.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.mgp-divider-icon::before,
.mgp-divider-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  max-width: calc(50% - (50px / 2));
  border-bottom: 1px solid #e5e5e5;
}

.mgp-divider-icon::before {
  right: calc(50% + (50px / 2));
  width: 100%;
}

.mgp-divider-icon::after {
  left: calc(50% + (50px / 2));
  width: 100%;
}

/* Small
 ========================================================================== */
/*
 * Reset child height, caused by `inline-block`
 */
.mgp-divider-small {
  line-height: 0;
}

.mgp-divider-small::after {
  content: "";
  display: inline-block;
  width: 100px;
  max-width: 100%;
  border-top: 1px solid #e5e5e5;
  vertical-align: top;
}

/* ========================================================================
   Component: List
 ========================================================================== */
.mgp-list {
  padding: 0;
  list-style: none;
}

/*
 * Micro clearfix
 */
.mgp-list > li::before,
.mgp-list > li::after {
  content: "";
  display: table;
}

.mgp-list > li::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-list > li > :last-child {
  margin-bottom: 0;
}

/*
 * Nested lists
 */
.mgp-list ul {
  margin: 0;
  padding-left: 30px;
  list-style: none;
}

/*
 * Style
 */
.mgp-list > li:nth-child(n+2),
.mgp-list > li > ul {
  margin-top: 10px;
}

/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.mgp-list-divider > li:nth-child(n+2) {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #e5e5e5;
}

/*
 * Striped
 */
.mgp-list-striped > li {
  padding: 10px 10px;
}

.mgp-list-striped > li:nth-of-type(odd) {
  background: #f8f8f8;
}

.mgp-list-striped > li:nth-child(n+2) {
  margin-top: 0;
}

/*
 * Bullet
 */
.mgp-list-bullet > li {
  position: relative;
  padding-left: calc(1.5em + 10px);
}

.mgp-list-bullet > li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  background-image: url("../../images/backgrounds/list-bullet.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  float: left;
}

/* Size modifier
 ========================================================================== */
.mgp-list-large > li:nth-child(n+2),
.mgp-list-large > li > ul {
  margin-top: 20px;
}

/*
 * Divider
 */
.mgp-list-large.mgp-list-divider > li:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
}

/*
 * Striped
 */
.mgp-list-large.mgp-list-striped > li {
  padding: 20px 10px;
}

.mgp-list-large.mgp-list-striped > li:nth-child(n+2) {
  margin-top: 0;
}

/* ========================================================================
   Component: Description list
 ========================================================================== */
/*
 * Term
 */
.mgp-description-list > dt {
  color: #333;
}

.mgp-description-list > dt:nth-child(n+2) {
  margin-top: 20px;
}

/*
 * Description
 */
/* Style modifier
 ========================================================================== */
/*
 * Line
 */
.mgp-description-list-divider > dt:nth-child(n+2) {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #e5e5e5;
}

/* ========================================================================
   Component: Table
 ========================================================================== */
/*
 * 1. Remove most spacing between table cells.
 * 2. Behave like a block element
 * 3. Style
 */
.mgp-table {
  /* 1 */
  border-collapse: collapse;
  border-spacing: 0;
  /* 2 */
  width: 100%;
  /* 3 */
  margin-bottom: 20px;
}

/* Add margin if adjacent element */
* + .mgp-table {
  margin-top: 20px;
}

/* Header cell
 ========================================================================== */
/*
 * 1. Style
 */
.mgp-table th {
  padding: 16px 12px;
  text-align: left;
  vertical-align: bottom;
  /* 1 */
  font-size: 16px;
  font-weight: bold;
  color: #666;
}

/* Cell
 ========================================================================== */
.mgp-table td {
  padding: 16px 12px;
  vertical-align: top;
}

/*
 * Remove margin from the last-child
 */
.mgp-table td > :last-child {
  margin-bottom: 0;
}

/* Footer
 ========================================================================== */
.mgp-table tfoot {
  font-size: 0.875rem;
}

/* Caption
 ========================================================================== */
.mgp-table caption {
  font-size: 0.875rem;
  text-align: left;
  color: #999;
}

/* Alignment modifier
 ========================================================================== */
.mgp-table-middle,
.mgp-table-middle td {
  vertical-align: middle !important;
}

/* Style modifiers
 ========================================================================== */
/*
 * Divider
 */
.mgp-table-divider > tr:not(:first-child),
.mgp-table-divider > :not(:first-child) > tr,
.mgp-table-divider > :first-child > tr:not(:first-child) {
  border-top: 1px solid #e5e5e5;
}

/*
 * Striped
 */
.mgp-table-striped > tr:nth-of-type(odd),
.mgp-table-striped tbody tr:nth-of-type(odd) {
  background: #f8f8f8;
}

/*
 * Hover
 */
.mgp-table-hover > tr:hover,
.mgp-table-hover tbody tr:hover {
  background: #ffd;
}

/* Active state
 ========================================================================== */
.mgp-table > tr.mgp-active,
.mgp-table tbody tr.mgp-active {
  background: #ffd;
}

/* Size modifier
 ========================================================================== */
.mgp-table-small th,
.mgp-table-small td {
  padding: 10px 12px;
}

.mgp-table-large th,
.mgp-table-large td {
  padding: 22px 12px;
}

/* Justify modifier
 ========================================================================== */
.mgp-table-justify th:first-child,
.mgp-table-justify td:first-child {
  padding-left: 0;
}

.mgp-table-justify th:last-child,
.mgp-table-justify td:last-child {
  padding-right: 0;
}

/* Cell size modifier
 ========================================================================== */
.mgp-table-shrink {
  width: 1px;
}

.mgp-table-expand {
  min-width: 150px;
}

/* Cell link modifier
 ========================================================================== */
/*
 * Does not work with `mgp-table-justify` at the moment
 */
.mgp-table-link {
  padding: 0 !important;
}

.mgp-table-link > a {
  display: block;
  padding: 16px 12px;
}

.mgp-table-small .mgp-table-link > a {
  padding: 10px 12px;
}

/* Responsive table
 ========================================================================== */
/* Phone landscape and smaller */
@media (max-width: 959px) {
  .mgp-table-responsive,
  .mgp-table-responsive tbody,
  .mgp-table-responsive th,
  .mgp-table-responsive td,
  .mgp-table-responsive tr {
    display: block;
  }

  .mgp-table-responsive thead {
    display: none;
  }

  .mgp-table-responsive th,
  .mgp-table-responsive td {
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
  }

  .mgp-table-responsive th:not(:first-child):not(.mgp-table-link),
  .mgp-table-responsive td:not(:first-child):not(.mgp-table-link),
  .mgp-table-responsive .mgp-table-link:not(:first-child) > a {
    padding-top: 5px !important;
  }

  .mgp-table-responsive th:not(:last-child):not(.mgp-table-link),
  .mgp-table-responsive td:not(:last-child):not(.mgp-table-link),
  .mgp-table-responsive .mgp-table-link:not(:last-child) > a {
    padding-bottom: 5px !important;
  }

  .mgp-table-justify.mgp-table-responsive th,
  .mgp-table-justify.mgp-table-responsive td {
    padding-left: 0;
    padding-right: 0;
  }
}

/* ========================================================================
   Component: Icon
 ========================================================================== */
/*
 * Note: 1. - 7. is required for `button` elements. Needed for Close and Form Icon component.
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Remove border-radius in Chrome.
 * 4. Address `overflow` set to `hidden` in IE.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 7. Remove default `button` padding and background color
 * 8. Style
 * 9. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 10. Let the container fit the height of the icon
 */
.mgp-icon {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  border-radius: 0;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7. */
  padding: 0;
  background-color: transparent;
  /* 8 */
  display: inline-block;
  /* 9 */
  fill: currentcolor;
  /* 10 */
  line-height: 0;
}

/* Required for `button`. */
button.mgp-icon:not(:disabled) {
  cursor: pointer;
}

/*
 * Remove the inner border and padding in Firefox.
 */
.mgp-icon::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/*
 * Set the fill and stroke color of all SVG elements to the current text color
 * 1. Fix for uppercase attribute names in Edge. Will be fixed in Windows 10 builds 16251+
 */
.mgp-icon [fill*='#']:not(.mgp-preserve),
.mgp-icon [FILL*='#']:not(.mgp-preserve) {
  fill: currentcolor;
}

.mgp-icon [stroke*='#']:not(.mgp-preserve),
.mgp-icon [STROKE*='#']:not(.mgp-preserve) {
  stroke: currentcolor;
}

/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.mgp-icon > * {
  transform: translate(0, 0);
}

/* Image modifier
 ========================================================================== */
/*
 * Display images in icon dimensions
 */
.mgp-icon-image {
  width: 20px;
  height: 20px;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}

/* Style modifiers
 ========================================================================== */
/*
 * Link
 */
.mgp-icon-link {
  color: #999;
}

.mgp-icon-link:hover,
.mgp-icon-link:focus {
  color: #666;
  outline: none;
}

/* OnClick + Active */
.mgp-icon-link:active,
.mgp-active > .mgp-icon-link {
  color: #595959;
}

/*
 * Button
 * 1. Center icon vertically and horizontally
 */
.mgp-icon-button {
  box-sizing: border-box;
  width: 36px;
  height: 36px;
  border-radius: 500px;
  background: #f8f8f8;
  color: #999;
  vertical-align: middle;
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/* Hover + Focus */
.mgp-icon-button:hover,
.mgp-icon-button:focus {
  background-color: #ebebeb;
  color: #666;
  outline: none;
}

/* OnClick + Active */
.mgp-icon-button:active,
.mgp-active > .mgp-icon-button {
  background-color: #dfdfdf;
  color: #666;
}

/* ========================================================================
   Component: Form Range
 ========================================================================== */
/*
 * 1. Normalize and defaults
 * 2. Prevent content overflow if a fixed width is used
 * 3. Take the full width
 * 4. Remove default style
 * 5. Remove white background in Chrome
 * 6. Remove padding in IE11
 */
.mgp-range {
  /* 1 */
  box-sizing: border-box;
  margin: 0;
  vertical-align: middle;
  /* 2 */
  max-width: 100%;
  /* 3 */
  width: 100%;
  /* 4 */
  -webkit-appearance: none;
  /* 5 */
  background: transparent;
  /* 6 */
  padding: 0;
}

/* Focus */
.mgp-range:focus {
  outline: none;
}

.mgp-range::-moz-focus-outer {
  border: none;
}

/* IE11 Reset */
.mgp-range::-ms-track {
  height: 15px;
  background: transparent;
  border-color: transparent;
  color: transparent;
}

/*
 * Improves consistency of cursor style for clickable elements
 */
.mgp-range:not(:disabled)::-webkit-slider-thumb {
  cursor: pointer;
}

.mgp-range:not(:disabled)::-moz-range-thumb {
  cursor: pointer;
}

.mgp-range:not(:disabled)::-ms-thumb {
  cursor: pointer;
}

/* Thumb
 ========================================================================== */
/*
 * 1. Reset
 * 2. Style
 */
/* Webkit */
.mgp-range::-webkit-slider-thumb {
  /* 1 */
  -webkit-appearance: none;
  margin-top: -7px;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #666;
}

/* Firefox */
.mgp-range::-moz-range-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #666;
}

/* Edge */
.mgp-range::-ms-thumb {
  /* 1 */
  margin-top: 0;
}

/* IE11 */
.mgp-range::-ms-thumb {
  /* 1 */
  border: none;
  /* 2 */
  height: 15px;
  width: 15px;
  border-radius: 500px;
  background: #666;
}

/* Edge + IE11 */
.mgp-range::-ms-tooltip {
  display: none;
}

/* Track
 ========================================================================== */
/*
 * 1. Safari doesn't have a focus state. Using active instead.
 */
/* Webkit */
.mgp-range::-webkit-slider-runnable-track {
  height: 3px;
  background: #ebebeb;
}

.mgp-range:focus::-webkit-slider-runnable-track,
.mgp-range:active::-webkit-slider-runnable-track {
  background: #d2d2d2;
}

/* Firefox */
.mgp-range::-moz-range-track {
  height: 3px;
  background: #ebebeb;
}

.mgp-range:focus::-moz-range-track {
  background: #d2d2d2;
}

/* Edge */
.mgp-range::-ms-fill-lower,
.mgp-range::-ms-fill-upper {
  height: 3px;
  background: #ebebeb;
}

.mgp-range:focus::-ms-fill-lower,
.mgp-range:focus::-ms-fill-upper {
  background: #d2d2d2;
}

/* ========================================================================
   Component: Form
 ========================================================================== */
/*
 * 1. Define consistent box sizing.
 *    Default is `content-box` with following exceptions set to `border-box`
 *    `select`, `input[type="checkbox"]` and `input[type="radio"]`
 *    `input[type="search"]` in Chrome, Safari and Opera
 *    `input[type="color"]` in Firefox
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers.
 */
.mgp-input,
.mgp-select,
.mgp-textarea,
.mgp-radio,
.mgp-checkbox {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
}

/*
 * Show the overflow in Edge.
 */
.mgp-input {
  overflow: visible;
}

/*
 * Remove the inheritance of text transform in Firefox.
 */
.mgp-select {
  text-transform: none;
}

/*
 * 1. Change font properties to `inherit` in all browsers
 * 2. Don't inherit the `font-weight` and use `bold` instead.
 * NOTE: Both declarations don't work in Chrome, Safari and Opera.
 */
.mgp-select optgroup {
  /* 1 */
  font: inherit;
  /* 2 */
  font-weight: bold;
}

/*
 * Remove the default vertical scrollbar in IE 10+.
 */
.mgp-textarea {
  overflow: auto;
}

/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.mgp-input[type="search"]::-webkit-search-cancel-button,
.mgp-input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
.mgp-input[type="number"]::-webkit-inner-spin-button,
.mgp-input[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

/*
 * Removes placeholder transparency in Firefox.
 */
.mgp-input::-moz-placeholder,
.mgp-textarea::-moz-placeholder {
  opacity: 1;
}

/*
 * Improves consistency of cursor style for clickable elements
 */
.mgp-radio:not(:disabled),
.mgp-checkbox:not(:disabled) {
  cursor: pointer;
}

/*
 * Define consistent border, margin, and padding.
 */
.mgp-fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

/* Input, select and textarea
 * Allowed: `text`, `password`, `datetime`, `datetime-local`, `date`,  `month`,
            `time`, `week`, `number`, `email`, `url`, `search`, `tel`, `color`
 * Disallowed: `range`, `radio`, `checkbox`, `file`, `submit`, `reset` and `image`
 ========================================================================== */
/*
 * Remove default style in iOS.
 */
.mgp-input,
.mgp-textarea {
  -webkit-appearance: none;
}

/*
 * 1. Prevent content overflow if a fixed width is used
 * 2. Take the full width
 * 3. Reset default
 * 4. Style
 */
.mgp-input,
.mgp-select,
.mgp-textarea {
  /* 1 */
  max-width: 100%;
  /* 2 */
  width: 100%;
  /* 3 */
  border: 0 none;
  /* 4 */
  padding: 0 10px;
  background: #f8f8f8;
  color: #666;
}

/*
 * Single-line
 * 1. Allow any element to look like an `input` or `select` element
 * 2. Make sure line-height is not larger than height
 *    Also needed to center the text vertically
 */
.mgp-input,
.mgp-select:not([multiple]):not([size]) {
  height: 40px;
  vertical-align: middle;
  /* 1 */
  display: inline-block;
}

/* 2 */
.mgp-input:not(input),
.mgp-select:not(select) {
  line-height: 40px;
}

/*
 * Multi-line
 */
.mgp-select[multiple],
.mgp-select[size],
.mgp-textarea {
  padding-top: 4px;
  padding-bottom: 4px;
  vertical-align: top;
}

/* Focus */
.mgp-input:focus,
.mgp-select:focus,
.mgp-textarea:focus {
  outline: none;
  background-color: #f8f8f8;
  color: #666;
}

/* Disabled */
.mgp-input:disabled,
.mgp-select:disabled,
.mgp-textarea:disabled {
  background-color: #f8f8f8;
  color: #999;
}

/*
 * Placeholder
 */
.mgp-input:-ms-input-placeholder {
  color: #999 !important;
}

.mgp-input::placeholder {
  color: #999;
}

.mgp-textarea:-ms-input-placeholder {
  color: #999 !important;
}

.mgp-textarea::placeholder {
  color: #999;
}

/* Style modifier (`mgp-input`, `mgp-select` and `mgp-textarea`)
 ========================================================================== */
/*
 * Small
 */
.mgp-form-small {
  font-size: 0.875rem;
}

.mgp-form-small:not(textarea):not([multiple]):not([size]) {
  height: 30px;
  padding-left: 8px;
  padding-right: 8px;
}

.mgp-form-small:not(select):not(input):not(textarea) {
  line-height: 30px;
}

/*
 * Large
 */
.mgp-form-large {
  font-size: 1.25rem;
}

.mgp-form-large:not(textarea):not([multiple]):not([size]) {
  height: 55px;
  padding-left: 12px;
  padding-right: 12px;
}

.mgp-form-large:not(select):not(input):not(textarea) {
  line-height: 55px;
}

/* Style modifier (`mgp-input`, `mgp-select` and `mgp-textarea`)
 ========================================================================== */
/*
 * Error
 */
.mgp-form-danger,
.mgp-form-danger:focus {
  color: #f0506e;
}

/*
 * Success
 */
.mgp-form-success,
.mgp-form-success:focus {
  color: #32d296;
}

/*
 * Blank
 */
.mgp-form-blank {
  background: none;
}

/* Width modifiers (`mgp-input`, `mgp-select` and `mgp-textarea`)
 ========================================================================== */
/*
 * Fixed widths
 * Different widths for mini sized `input` and `select` elements
 */
input.mgp-form-width-xsmall {
  width: 50px;
}

select.mgp-form-width-xsmall {
  width: 75px;
}

.mgp-form-width-small {
  width: 130px;
}

.mgp-form-width-medium {
  width: 200px;
}

.mgp-form-width-large {
  width: 500px;
}

/* Select
 ========================================================================== */
/*
 * 1. Remove default style. Also works in Firefox
 * 2. Style
 * 3. Remove default style in IE 10/11
 * 4. Set `color` for options in the select dropdown, because the inherited `color` might be too light.
 */
.mgp-select:not([multiple]):not([size]) {
  /* 1 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 2 */
  padding-right: 20px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23666%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
  background-repeat: no-repeat;
  background-position: 100% 50%;
}

/* 3 */
.mgp-select:not([multiple]):not([size])::-ms-expand {
  display: none;
}

/* 4 */
.mgp-select:not([multiple]):not([size]) option {
  color: #444;
}

/*
 * Disabled
 */
.mgp-select:not([multiple]):not([size]):disabled {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2224%22%20height%3D%2216%22%20viewBox%3D%220%200%2024%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%209%206%2015%206%22%20%2F%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%2013%209%208%2015%208%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
}

/* Radio and checkbox
 * Note: Does not work in IE11
 ========================================================================== */
/*
 * 1. Style
 * 2. Make box more robust so it clips the child element
 * 3. Vertical alignment
 * 4. Remove default style
 * 5. Fix black background on iOS
 * 6. Center icons
 */
.mgp-radio,
.mgp-checkbox {
  /* 1 */
  display: inline-block;
  height: 16px;
  width: 16px;
  /* 2 */
  overflow: hidden;
  /* 3 */
  margin-top: -4px;
  vertical-align: middle;
  /* 4 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 5 */
  background-color: #ebebeb;
  /* 6 */
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.mgp-radio {
  border-radius: 50%;
}

/* Focus */
.mgp-radio:focus,
.mgp-checkbox:focus {
  outline: none;
}

/*
 * Checked
 */
.mgp-radio:checked,
.mgp-checkbox:checked,
.mgp-checkbox:indeterminate {
  background-color: #1e87f0;
}

/* Focus */
.mgp-radio:checked:focus,
.mgp-checkbox:checked:focus,
.mgp-checkbox:indeterminate:focus {
  background-color: #0e6dcd;
}

/*
 * Icons
 */
.mgp-radio:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Ccircle%20fill%3D%22%23fff%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}

.mgp-checkbox:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23fff%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
}

.mgp-checkbox:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Crect%20fill%3D%22%23fff%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}

/*
 * Disabled
 */
.mgp-radio:disabled,
.mgp-checkbox:disabled {
  background-color: #f8f8f8;
}

.mgp-radio:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Ccircle%20fill%3D%22%23999%22%20cx%3D%228%22%20cy%3D%228%22%20r%3D%222%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}

.mgp-checkbox:disabled:checked {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2211%22%20viewBox%3D%220%200%2014%2011%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolygon%20fill%3D%22%23999%22%20points%3D%2212%201%205%207.5%202%205%201%205.5%205%2010%2013%201.5%22%20%2F%3E%0D%0A%3C%2Fsvg%3E%0D%0A");
}

.mgp-checkbox:disabled:indeterminate {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Crect%20fill%3D%22%23999%22%20x%3D%223%22%20y%3D%228%22%20width%3D%2210%22%20height%3D%221%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}

/* Legend
 ========================================================================== */
/*
 * Legend
 * 1. Behave like block element
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove padding so people aren't caught out if they zero out fieldsets.
 * 4. Style
 */
.mgp-legend {
  /* 1 */
  width: 100%;
  /* 2 */
  color: inherit;
  /* 3 */
  padding: 0;
  /* 4 */
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Custom controls
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 */
.mgp-form-custom {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
}

/*
 * 1. Position and resize the form control to always cover its container
 * 2. Required for Firefox for positioning to the left
 * 3. Required for Webkit to make `height` work
 * 4. Hide controle and show cursor
 * 5. Needed for the cursor
 * 6. Clip height caused by 5. Needed for Webkit only
 */
.mgp-form-custom select,
.mgp-form-custom input[type="file"] {
  /* 1 */
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  /* 2 */
  left: 0;
  /* 3 */
  -webkit-appearance: none;
  /* 4 */
  opacity: 0;
  cursor: pointer;
}

.mgp-form-custom input[type="file"] {
  /* 5 */
  font-size: 500px;
  /* 6 */
  overflow: hidden;
}

/* Label
 ========================================================================== */
/* Layout
 ========================================================================== */
/*
 * Stacked
 */
.mgp-form-stacked .mgp-form-label {
  display: block;
  margin-bottom: 10px;
}

/*
 * Horizontal
 */
/* Tablet portrait and smaller */
@media (max-width: 959px) {
  /* Behave like `mgp-form-stacked` */
  .mgp-form-horizontal .mgp-form-label {
    display: block;
    margin-bottom: 10px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-form-horizontal .mgp-form-label {
    width: 200px;
    margin-top: 7px;
    float: left;
  }

  .mgp-form-horizontal .mgp-form-controls {
    margin-left: 215px;
  }

  /* Better vertical alignment if controls are checkboxes and radio buttons with text */
  .mgp-form-horizontal .mgp-form-controls-text {
    padding-top: 7px;
  }
}

/* Icons
 ========================================================================== */
/*
 * 1. Set position
 * 2. Set width
 * 3. Center icon vertically and horizontally
 * 4. Style
 */
.mgp-form-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 40px;
  /* 3 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 4 */
  color: #999;
}

/*
 * Required for `a`.
 */
.mgp-form-icon:hover {
  color: #666;
}

/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.mgp-form-icon:not(a):not(button):not(input) {
  pointer-events: none;
}

/*
 * Input padding
 */
.mgp-form-icon:not(.mgp-form-icon-flip) ~ .mgp-input {
  padding-left: 40px !important;
}

/*
 * Position modifier
 */
.mgp-form-icon-flip {
  right: 0;
  left: auto;
}

.mgp-form-icon-flip ~ .mgp-input {
  padding-right: 40px !important;
}

/* ========================================================================
   Component: Button
 ========================================================================== */
/*
 * 1. Remove margins in Chrome, Safari and Opera.
 * 2. Remove borders for `button`.
 * 3. Remove border-radius in Chrome.
 * 4. Address `overflow` set to `hidden` in IE.
 * 5. Correct `font` properties and `color` not being inherited for `button`.
 * 6. Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 7. Style
 * 8. `line-height` is used to create a height because it also centers the text vertically for `a` elements.
 *    Better would be to use height and flexbox to center the text vertically but flexbox doesn't work in Firefox on `button` elements.
 * 9. Align text if button has a width
 * 10. Required for `a`.
 */
.mgp-button {
  /* 1 */
  margin: 0;
  /* 2 */
  border: none;
  /* 3 */
  border-radius: 0;
  /* 4 */
  overflow: visible;
  /* 5 */
  font: inherit;
  color: inherit;
  /* 6 */
  text-transform: none;
  /* 7 */
  display: inline-block;
  box-sizing: border-box;
  padding: 0 30px;
  vertical-align: middle;
  font-size: 16px;
  /* 8 */
  line-height: 40px;
  /* 9 */
  text-align: center;
  /* 10 */
  text-decoration: none;
}

.mgp-button:not(:disabled) {
  cursor: pointer;
}

/*
 * Remove the inner border and padding in Firefox.
 */
.mgp-button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

/* Hover */
.mgp-button:hover {
  /* 8 */
  text-decoration: none;
}

/* Focus */
.mgp-button:focus {
  outline: none;
}

/* OnClick + Active */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.mgp-button-default {
  background-color: #f8f8f8;
  color: #333;
}

/* Hover + Focus */
.mgp-button-default:hover,
.mgp-button-default:focus {
  background-color: #ebebeb;
  color: #333;
}

/* OnClick + Active */
.mgp-button-default:active,
.mgp-button-default.mgp-active {
  background-color: #dfdfdf;
  color: #333;
}

/*
 * Primary
 */
.mgp-button-primary {
  background-color: #1e87f0;
  color: #fff;
}

/* Hover + Focus */
.mgp-button-primary:hover,
.mgp-button-primary:focus {
  background-color: #0f7ae5;
  color: #fff;
}

/* OnClick + Active */
.mgp-button-primary:active,
.mgp-button-primary.mgp-active {
  background-color: #0e6dcd;
  color: #fff;
}

/*
 * Secondary
 */
.mgp-button-secondary {
  background-color: #222;
  color: #fff;
}

/* Hover + Focus */
.mgp-button-secondary:hover,
.mgp-button-secondary:focus {
  background-color: #151515;
  color: #fff;
}

/* OnClick + Active */
.mgp-button-secondary:active,
.mgp-button-secondary.mgp-active {
  background-color: #080808;
  color: #fff;
}

/*
 * Danger
 */
.mgp-button-danger {
  background-color: #f0506e;
  color: #fff;
}

/* Hover + Focus */
.mgp-button-danger:hover,
.mgp-button-danger:focus {
  background-color: #ee395b;
  color: #fff;
}

/* OnClick + Active */
.mgp-button-danger:active,
.mgp-button-danger.mgp-active {
  background-color: #ec2147;
  color: #fff;
}

/*
 * Disabled
 * The same for all style modifiers
 */
.mgp-button-default:disabled,
.mgp-button-primary:disabled,
.mgp-button-secondary:disabled,
.mgp-button-danger:disabled {
  background-color: #f8f8f8;
  color: #999;
}

/* Size modifiers
 ========================================================================== */
.mgp-button-small {
  padding: 0 15px;
  line-height: 30px;
  font-size: 0.875rem;
}

.mgp-button-large {
  padding: 0 40px;
  line-height: 55px;
  font-size: 1.25rem;
}

/* Text modifiers
 ========================================================================== */
/*
 * Text
 * 1. Reset
 * 2. Style
 */
.mgp-button-text {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #999;
}

/* Hover + Focus */
.mgp-button-text:hover,
.mgp-button-text:focus {
  color: #666;
}

/* Disabled */
.mgp-button-text:disabled {
  color: #999;
}

/*
 * Link
 * 1. Reset
 * 2. Style
 */
.mgp-button-link {
  /* 1 */
  padding: 0;
  line-height: 1.5;
  background: none;
  /* 2 */
  color: #1e87f0;
}

/* Hover + Focus */
.mgp-button-link:hover,
.mgp-button-link:focus {
  color: #0f6ecd;
  text-decoration: underline;
}

/* Disabled */
.mgp-button-link:disabled {
  color: #999;
  text-decoration: none;
}

/* Group
 ========================================================================== */
/*
 * 1. Using `flex` instead of `inline-block` to prevent whitespace betweent child elements
 * 2. Behave like button
 * 3. Create position context
 */
.mgp-button-group {
  /* 1 */
  display: inline-flex;
  /* 2 */
  vertical-align: middle;
  /* 3 */
  position: relative;
}

/* ========================================================================
   Component: Section
 ========================================================================== */
/*
 * 1. Make it work with `100vh` and height in general
 */
.mgp-section {
  box-sizing: border-box;
  /* 1 */
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Desktop and bigger */
@media (min-width: 960px) {
  .mgp-section {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/*
 * Micro clearfix
 */
.mgp-section::before,
.mgp-section::after {
  content: "";
  display: table;
}

.mgp-section::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-section > :last-child {
  margin-bottom: 0;
}

/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.mgp-section-xsmall {
  padding-top: 20px;
  padding-bottom: 20px;
}

/*
 * Small
 */
.mgp-section-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*
 * Large
 */
.mgp-section-large {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-section-large {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

/*
 * XLarge
 */
.mgp-section-xlarge {
  padding-top: 140px;
  padding-bottom: 140px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-section-xlarge {
    padding-top: 210px;
    padding-bottom: 210px;
  }
}

/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.mgp-section-default {
  background: #fff;
}

/*
 * Muted
 */
.mgp-section-muted {
  background: #f8f8f8;
}

/*
 * Primary
 */
.mgp-section-primary {
  background: #1e87f0;
}

/*
 * Secondary
 */
.mgp-section-secondary {
  background: #222;
}

/* Overlap modifier
 ========================================================================== */
/*
 * Reserved modifier to make a section overlap another section with an border image
 * Implemented by the theme
 */
/* ========================================================================
   Component: Container
 ========================================================================== */
/*
 * 1. Box sizing has to be `content-box` so the max-width is always the same and
 *    unaffected by the padding on different breakpoints. It's important for the size modifiers.
 */
.mgp-container {
  box-sizing: content-box;
  /* 1 */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/*
 * Micro clearfix
 */
.mgp-container::before,
.mgp-container::after {
  content: "";
  display: table;
}

.mgp-container::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-container > :last-child {
  margin-bottom: 0;
}

/*
 * Remove padding from nested containers
 */
.mgp-container .mgp-container {
  padding-left: 0;
  padding-right: 0;
}

/* Size modifier
 ========================================================================== */
.mgp-container-small {
  max-width: 900px;
}

.mgp-container-large {
  max-width: 1600px;
}

.mgp-container-expand {
  max-width: none;
}

/* ========================================================================
   Component: Grid
 ========================================================================== */
/*
 * 1. Allow cells to wrap into the next line
 * 2. Reset list
 */
.mgp-grid {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Grid cell
 * Note: Space is allocated solely based on content dimensions, but shrinks: 0 1 auto
 * Reset margin for e.g. paragraphs
 */
.mgp-grid > * {
  margin: 0;
}

/*
 * Remove margin from the last-child
 */
.mgp-grid > * > :last-child {
  margin-bottom: 0;
}

/* Gutter
 ========================================================================== */
/*
 * Default
 */
/* Horizontal */
.mgp-grid {
  margin-left: -30px;
}

.mgp-grid > * {
  padding-left: 30px;
}

/* Vertical */
.mgp-grid + .mgp-grid,
.mgp-grid > .mgp-grid-margin,
* + .mgp-grid-margin {
  margin-top: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .mgp-grid {
    margin-left: -40px;
  }

  .mgp-grid > * {
    padding-left: 40px;
  }

  /* Vertical */
  .mgp-grid + .mgp-grid,
  .mgp-grid > .mgp-grid-margin,
  * + .mgp-grid-margin {
    margin-top: 40px;
  }
}

/*
 * Small
 */
/* Horizontal */
.mgp-grid-small {
  margin-left: -15px;
}

.mgp-grid-small > * {
  padding-left: 15px;
}

/* Vertical */
.mgp-grid + .mgp-grid-small,
.mgp-grid-small > .mgp-grid-margin,
* + .mgp-grid-margin-small {
  margin-top: 15px;
}

/*
 * Medium
 */
/* Horizontal */
.mgp-grid-medium {
  margin-left: -30px;
}

.mgp-grid-medium > * {
  padding-left: 30px;
}

/* Vertical */
.mgp-grid + .mgp-grid-medium,
.mgp-grid-medium > .mgp-grid-margin,
* + .mgp-grid-margin-medium {
  margin-top: 30px;
}

/*
 * Large
 */
/* Horizontal */
.mgp-grid-large {
  margin-left: -40px;
}

.mgp-grid-large > * {
  padding-left: 40px;
}

/* Vertical */
.mgp-grid + .mgp-grid-large,
.mgp-grid-large > .mgp-grid-margin,
* + .mgp-grid-margin-large {
  margin-top: 40px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .mgp-grid-large {
    margin-left: -70px;
  }

  .mgp-grid-large > * {
    padding-left: 70px;
  }

  /* Vertical */
  .mgp-grid + .mgp-grid-large,
  .mgp-grid-large > .mgp-grid-margin,
  * + .mgp-grid-margin-large {
    margin-top: 70px;
  }
}

/*
 * Collapse
 */
/* Horizontal */
.mgp-grid-collapse {
  margin-left: 0;
}

.mgp-grid-collapse > * {
  padding-left: 0;
}

/* Vertical */
.mgp-grid + .mgp-grid-collapse,
.mgp-grid-collapse > .mgp-grid-margin {
  margin-top: 0;
}

/* Divider
 ========================================================================== */
.mgp-grid-divider > * {
  position: relative;
}

.mgp-grid-divider > :not(.mgp-first-column)::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  border-left: 1px solid #e5e5e5;
}

/* Vertical */
.mgp-grid-divider.mgp-grid-stack > .mgp-grid-margin::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  border-top: 1px solid #e5e5e5;
}

/*
 * Default
 */
/* Horizontal */
.mgp-grid-divider {
  margin-left: -60px;
}

.mgp-grid-divider > * {
  padding-left: 60px;
}

.mgp-grid-divider > :not(.mgp-first-column)::before {
  left: 30px;
}

/* Vertical */
.mgp-grid-divider.mgp-grid-stack > .mgp-grid-margin {
  margin-top: 60px;
}

.mgp-grid-divider.mgp-grid-stack > .mgp-grid-margin::before {
  top: -30px;
  left: 60px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .mgp-grid-divider {
    margin-left: -80px;
  }

  .mgp-grid-divider > * {
    padding-left: 80px;
  }

  .mgp-grid-divider > :not(.mgp-first-column)::before {
    left: 40px;
  }

  /* Vertical */
  .mgp-grid-divider.mgp-grid-stack > .mgp-grid-margin {
    margin-top: 80px;
  }

  .mgp-grid-divider.mgp-grid-stack > .mgp-grid-margin::before {
    top: -40px;
    left: 80px;
  }
}

/*
 * Small
 */
/* Horizontal */
.mgp-grid-divider.mgp-grid-small {
  margin-left: -30px;
}

.mgp-grid-divider.mgp-grid-small > * {
  padding-left: 30px;
}

.mgp-grid-divider.mgp-grid-small > :not(.mgp-first-column)::before {
  left: 15px;
}

/* Vertical */
.mgp-grid-divider.mgp-grid-small.mgp-grid-stack > .mgp-grid-margin {
  margin-top: 30px;
}

.mgp-grid-divider.mgp-grid-small.mgp-grid-stack > .mgp-grid-margin::before {
  top: -15px;
  left: 30px;
}

/*
 * Medium
 */
/* Horizontal */
.mgp-grid-divider.mgp-grid-medium {
  margin-left: -60px;
}

.mgp-grid-divider.mgp-grid-medium > * {
  padding-left: 60px;
}

.mgp-grid-divider.mgp-grid-medium > :not(.mgp-first-column)::before {
  left: 30px;
}

/* Vertical */
.mgp-grid-divider.mgp-grid-medium.mgp-grid-stack > .mgp-grid-margin {
  margin-top: 60px;
}

.mgp-grid-divider.mgp-grid-medium.mgp-grid-stack > .mgp-grid-margin::before {
  top: -30px;
  left: 60px;
}

/*
 * Large
 */
/* Horizontal */
.mgp-grid-divider.mgp-grid-large {
  margin-left: -80px;
}

.mgp-grid-divider.mgp-grid-large > * {
  padding-left: 80px;
}

.mgp-grid-divider.mgp-grid-large > :not(.mgp-first-column)::before {
  left: 40px;
}

/* Vertical */
.mgp-grid-divider.mgp-grid-large.mgp-grid-stack > .mgp-grid-margin {
  margin-top: 80px;
}

.mgp-grid-divider.mgp-grid-large.mgp-grid-stack > .mgp-grid-margin::before {
  top: -40px;
  left: 80px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Horizontal */
  .mgp-grid-divider.mgp-grid-large {
    margin-left: -140px;
  }

  .mgp-grid-divider.mgp-grid-large > * {
    padding-left: 140px;
  }

  .mgp-grid-divider.mgp-grid-large > :not(.mgp-first-column)::before {
    left: 70px;
  }

  /* Vertical */
  .mgp-grid-divider.mgp-grid-large.mgp-grid-stack > .mgp-grid-margin {
    margin-top: 140px;
  }

  .mgp-grid-divider.mgp-grid-large.mgp-grid-stack > .mgp-grid-margin::before {
    top: -70px;
    left: 140px;
  }
}

/* Match child of a grid cell
 ========================================================================== */
/*
 * Behave like a block element
 * 1. Wrap into the next line
 * 2. Take the full width, at least 100%. Only if no class from the Width component is set.
 * 3. Expand width even if larger than 100%, e.g. because of negative margin (Needed for nested grids)
 */
.mgp-grid-match > *,
.mgp-grid-item-match {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
}

.mgp-grid-match > * > :not([class*='mgp-width']),
.mgp-grid-item-match > :not([class*='mgp-width']) {
  /* 2 */
  box-sizing: border-box;
  width: 100%;
  /* 3 */
  flex: auto;
}

/* ========================================================================
   Component: Tile
 ========================================================================== */
.mgp-tile {
  position: relative;
  box-sizing: border-box;
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-tile {
    padding-left: 30px;
    padding-right: 30px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-tile {
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/*
 * Micro clearfix
 */
.mgp-tile::before,
.mgp-tile::after {
  content: "";
  display: table;
}

.mgp-tile::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-tile > :last-child {
  margin-bottom: 0;
}

/* Size modifiers
 ========================================================================== */
/*
 * XSmall
 */
.mgp-tile-xsmall {
  padding-top: 20px;
  padding-bottom: 20px;
}

/*
 * Small
 */
.mgp-tile-small {
  padding-top: 40px;
  padding-bottom: 40px;
}

/*
 * Large
 */
.mgp-tile-large {
  padding-top: 70px;
  padding-bottom: 70px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-tile-large {
    padding-top: 140px;
    padding-bottom: 140px;
  }
}

/*
 * XLarge
 */
.mgp-tile-xlarge {
  padding-top: 140px;
  padding-bottom: 140px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-tile-xlarge {
    padding-top: 210px;
    padding-bottom: 210px;
  }
}

/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.mgp-tile-default {
  background: #fff;
}

/*
 * Muted
 */
.mgp-tile-muted {
  background: #f8f8f8;
}

/*
 * Primary
 */
.mgp-tile-primary {
  background: #1e87f0;
}

/*
 * Secondary
 */
.mgp-tile-secondary {
  background: #222;
}

/* ========================================================================
   Component: Card
 ========================================================================== */
.mgp-card {
  position: relative;
  box-sizing: border-box;
}

/* Sections
 ========================================================================== */
.mgp-card-body {
  padding: 30px 30px;
}

.mgp-card-header {
  padding: 15px 30px;
}

.mgp-card-footer {
  padding: 15px 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-card-body {
    padding: 40px 40px;
  }

  .mgp-card-header {
    padding: 20px 40px;
  }

  .mgp-card-footer {
    padding: 20px 40px;
  }
}

/*
 * Micro clearfix
 */
.mgp-card-body::before,
.mgp-card-body::after,
.mgp-card-header::before,
.mgp-card-header::after,
.mgp-card-footer::before,
.mgp-card-footer::after {
  content: "";
  display: table;
}

.mgp-card-body::after,
.mgp-card-header::after,
.mgp-card-footer::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-card-body > :last-child,
.mgp-card-header > :last-child,
.mgp-card-footer > :last-child {
  margin-bottom: 0;
}

/* Media
 ========================================================================== */
/*
 * Reserved alignment modifier to style the media element, e.g. with `border-radius`
 * Implemented by the theme
 */
/* Title
 ========================================================================== */
.mgp-card-title {
  font-size: 1.5rem;
  line-height: 1.4;
}

/* Badge
 ========================================================================== */
.mgp-card-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 1;
}

/*
 * Remove margin from adjacent element
 */
.mgp-card-badge:first-child + * {
  margin-top: 0;
}

/* Hover modifier
 ========================================================================== */
.mgp-card-hover:not(.mgp-card-default):not(.mgp-card-primary):not(.mgp-card-secondary):hover {
  background: #f8f8f8;
}

/* Style modifiers
 ========================================================================== */
/*
 * Default
 * Note: Header and Footer are only implemented for the default style
 */
.mgp-card-default {
  background: #f8f8f8;
  color: #666;
}

.mgp-card-default .mgp-card-title {
  color: #333;
}

.mgp-card-default.mgp-card-hover:hover {
  background-color: #ebebeb;
}

/*
 * Primary
 */
.mgp-card-primary {
  background: #1e87f0;
  color: #fff;
}

.mgp-card-primary .mgp-card-title {
  color: #fff;
}

.mgp-card-primary.mgp-card-hover:hover {
  background-color: #0f7ae5;
}

/*
 * Secondary
 */
.mgp-card-secondary {
  background: #222;
  color: #fff;
}

.mgp-card-secondary .mgp-card-title {
  color: #fff;
}

.mgp-card-secondary.mgp-card-hover:hover {
  background-color: #151515;
}

/* Size modifier
 ========================================================================== */
/*
 * Small
 */
.mgp-card-small.mgp-card-body,
.mgp-card-small .mgp-card-body {
  padding: 20px 20px;
}

.mgp-card-small .mgp-card-header {
  padding: 13px 20px;
}

.mgp-card-small .mgp-card-footer {
  padding: 13px 20px;
}

/*
 * Large
 */
/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-card-large.mgp-card-body,
  .mgp-card-large .mgp-card-body {
    padding: 70px 70px;
  }

  .mgp-card-large .mgp-card-header {
    padding: 35px 70px;
  }

  .mgp-card-large .mgp-card-footer {
    padding: 35px 70px;
  }
}

/* ========================================================================
   Component: Close
 ========================================================================== */
/*
 * Adopts `mgp-icon`
 */
.mgp-close {
  color: #999;
}

/* Hover + Focus */
.mgp-close:hover,
.mgp-close:focus {
  color: #666;
  outline: none;
}

/* ========================================================================
   Component: Spinner
 ========================================================================== */
/*
 * Adopts `mgp-icon`
 */
/* SVG
 ========================================================================== */
.mgp-spinner > * {
  animation: mgp-spinner-rotate 1.4s linear infinite;
}

@keyframes mgp-spinner-rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(270deg);
  }
}

/*
 * Circle
 */
.mgp-spinner > * > * {
  stroke-dasharray: 88px;
  stroke-dashoffset: 0;
  transform-origin: center;
  animation: mgp-spinner-dash 1.4s ease-in-out infinite;
  stroke-width: 1;
  stroke-linecap: round;
}

@keyframes mgp-spinner-dash {
  0% {
    stroke-dashoffset: 88px;
  }
  50% {
    stroke-dashoffset: 22px;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 88px;
    transform: rotate(450deg);
  }
}

/* ========================================================================
   Component: Totop
 ========================================================================== */
/*
 * Addopts `mgp-icon`
 */
.mgp-totop {
  padding: 5px;
  color: #999;
}

/* Hover + Focus */
.mgp-totop:hover,
.mgp-totop:focus {
  color: #666;
  outline: none;
}

/* OnClick */
.mgp-totop:active {
  color: #333;
}

/* ========================================================================
   Component: Marker
 ========================================================================== */
/*
 * Addopts `mgp-icon`
 */
.mgp-marker {
  padding: 5px;
  background: #222;
  color: #fff;
}

/* Hover + Focus */
.mgp-marker:hover,
.mgp-marker:focus {
  color: #fff;
  outline: none;
}

/* ========================================================================
   Component: Alert
 ========================================================================== */
.mgp-alert {
  position: relative;
  margin-bottom: 20px;
  padding: 15px 29px 15px 15px;
  background: #f8f8f8;
  color: #666;
}

/* Add margin if adjacent element */
* + .mgp-alert {
  margin-top: 20px;
}

/*
 * Remove margin from the last-child
 */
.mgp-alert > :last-child {
  margin-bottom: 0;
}

/* Close
 * Adopts `mgp-close`
 ========================================================================== */
.mgp-alert-close {
  position: absolute;
  top: 20px;
  right: 15px;
}

/*
 * Remove margin from adjacent element
 */
.mgp-alert-close:first-child + * {
  margin-top: 0;
}

/*
 * Hover + Focus
 */
/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.mgp-alert-primary {
  background: #d8eafc;
  color: #1e87f0;
}

/*
 * Success
 */
.mgp-alert-success {
  background: #edfbf6;
  color: #32d296;
}

/*
 * Warning
 */
.mgp-alert-warning {
  background: #fff6ee;
  color: #faa05a;
}

/*
 * Danger
 */
.mgp-alert-danger {
  background: #fef4f6;
  color: #f0506e;
}

/* ========================================================================
   Component: Badge
 ========================================================================== */
/*
 * 1. Style
 * 2. Center child vertically and horizontally
 */
.mgp-badge {
  box-sizing: border-box;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 500px;
  vertical-align: middle;
  /* 1 */
  background: #1e87f0;
  color: #fff;
  font-size: 0.875rem;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/*
 * Required for `a`
 */
.mgp-badge:hover,
.mgp-badge:focus {
  color: #fff;
  text-decoration: none;
  outline: none;
}

/* ========================================================================
   Component: Label
 ========================================================================== */
.mgp-label {
  display: inline-block;
  padding: 0 10px;
  background: #1e87f0;
  line-height: 1.5;
  font-size: 0.875rem;
  color: #fff;
  vertical-align: middle;
  white-space: nowrap;
}

/* Color modifiers
 ========================================================================== */
/*
 * Success
 */
.mgp-label-success {
  background-color: #32d296;
  color: #fff;
}

/*
 * Warning
 */
.mgp-label-warning {
  background-color: #faa05a;
  color: #fff;
}

/*
 * Danger
 */
.mgp-label-danger {
  background-color: #f0506e;
  color: #fff;
}

/* ========================================================================
   Component: Overlay
 ========================================================================== */
.mgp-overlay {
  padding: 30px 30px;
}

/*
 * Remove margin from the last-child
 */
.mgp-overlay > :last-child {
  margin-bottom: 0;
}

/* Icon
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
/*
 * Default
 */
.mgp-overlay-default {
  background: rgba(255, 255, 255, 0.8);
}

/*
 * Primary
 */
.mgp-overlay-primary {
  background: rgba(34, 34, 34, 0.8);
}

/* ========================================================================
   Component: Article
 ========================================================================== */
/*
 * Micro clearfix
 */
.mgp-article::before,
.mgp-article::after {
  content: "";
  display: table;
}

.mgp-article::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-article > :last-child {
  margin-bottom: 0;
}

/* Adjacent sibling
 ========================================================================== */
.mgp-article + .mgp-article {
  margin-top: 70px;
}

/* Title
 ========================================================================== */
.mgp-article-title {
  font-size: 2.23125rem;
  line-height: 1.2;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-article-title {
    font-size: 2.625rem;
  }
}

/* Meta
 ========================================================================== */
.mgp-article-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}

/* ========================================================================
   Component: Comment
 ========================================================================== */
/* Sections
 ========================================================================== */
.mgp-comment-body {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.mgp-comment-header {
  margin-bottom: 20px;
}

/*
 * Micro clearfix
 */
.mgp-comment-body::before,
.mgp-comment-body::after,
.mgp-comment-header::before,
.mgp-comment-header::after {
  content: "";
  display: table;
}

.mgp-comment-body::after,
.mgp-comment-header::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-comment-body > :last-child,
.mgp-comment-header > :last-child {
  margin-bottom: 0;
}

/* Title
 ========================================================================== */
.mgp-comment-title {
  font-size: 1.25rem;
  line-height: 1.4;
}

/* Meta
 ========================================================================== */
.mgp-comment-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}

/* Avatar
 ========================================================================== */
/* List
 ========================================================================== */
.mgp-comment-list {
  padding: 0;
  list-style: none;
}

/* Adjacent siblings */
.mgp-comment-list > :nth-child(n+2) {
  margin-top: 70px;
}

/*
 * Sublists
 * Note: General sibling selector allows reply block between comment and sublist
 */
.mgp-comment-list .mgp-comment ~ ul {
  margin: 70px 0 0 0;
  padding-left: 30px;
  list-style: none;
}

/* Tablet and bigger */
@media (min-width: 960px) {
  .mgp-comment-list .mgp-comment ~ ul {
    padding-left: 100px;
  }
}

/* Adjacent siblings */
.mgp-comment-list .mgp-comment ~ ul > :nth-child(n+2) {
  margin-top: 70px;
}

/* Style modifier
 ========================================================================== */
/* ========================================================================
   Component: Search
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Reset `form`
 */
.mgp-search {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  margin: 0;
}

/* Input
 ========================================================================== */
/*
 * Remove the inner padding and cancel buttons in Chrome on OS X and Safari on OS X.
 */
.mgp-search-input::-webkit-search-cancel-button,
.mgp-search-input::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
 * Removes placeholder transparency in Firefox.
 */
.mgp-search-input::-moz-placeholder {
  opacity: 1;
}

/*
 * 1. Define consistent box sizing.
 * 2. Address margins set differently in Firefox/IE and Chrome/Safari/Opera.
 * 3. Remove `border-radius` in iOS.
 * 4. Change font properties to `inherit` in all browsers
 * 5. Show the overflow in Edge.
 * 6. Remove default style in iOS.
 * 7. Vertical alignment
 * 8. Take the full container width
 * 9. Style
 */
.mgp-search-input {
  /* 1 */
  box-sizing: border-box;
  /* 2 */
  margin: 0;
  /* 3 */
  border-radius: 0;
  /* 4 */
  font: inherit;
  /* 5 */
  overflow: visible;
  /* 6 */
  -webkit-appearance: none;
  /* 7 */
  vertical-align: middle;
  /* 8 */
  width: 100%;
  /* 9 */
  border: none;
  color: #666;
}

.mgp-search-input:focus {
  outline: none;
}

/* Placeholder */
.mgp-search-input:-ms-input-placeholder {
  color: #999 !important;
}

.mgp-search-input::placeholder {
  color: #999;
}

/* Icon (Adopts `mgp-icon`)
 ========================================================================== */
/*
 * Remove default focus style
 */
.mgp-search-icon:focus {
  outline: none;
}

/*
 * Position above input
 * 1. Set position
 * 2. Center icon vertically and horizontally
 * 3. Style
 */
.mgp-search .mgp-search-icon {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: #999;
}

/*
 * Required for `a`.
 */
.mgp-search .mgp-search-icon:hover {
  color: #999;
}

/*
 * Make `input` element clickable through icon, e.g. if it's a `span`
 */
.mgp-search .mgp-search-icon:not(a):not(button):not(input) {
  pointer-events: none;
}

/*
 * Position modifier
 */
.mgp-search .mgp-search-icon-flip {
  right: 0;
  left: auto;
}

/* Default modifier
 ========================================================================== */
.mgp-search-default {
  width: 180px;
}

/*
 * Input
 */
.mgp-search-default .mgp-search-input {
  height: 40px;
  padding-left: 6px;
  padding-right: 6px;
  background: #f8f8f8;
}

/* Focus */
.mgp-search-default .mgp-search-input:focus {
  background-color: #f8f8f8;
}

/*
 * Icon
 */
.mgp-search-default .mgp-search-icon {
  width: 40px;
}

.mgp-search-default .mgp-search-icon:not(.mgp-search-icon-flip) ~ .mgp-search-input {
  padding-left: 40px;
}

.mgp-search-default .mgp-search-icon-flip ~ .mgp-search-input {
  padding-right: 40px;
}

/* Navbar modifier
 ========================================================================== */
.mgp-search-navbar {
  width: 400px;
}

/*
 * Input
 */
.mgp-search-navbar .mgp-search-input {
  height: 40px;
  background: transparent;
  font-size: 1.5rem;
}

/*
 * Icon
 */
.mgp-search-navbar .mgp-search-icon {
  width: 40px;
}

.mgp-search-navbar .mgp-search-icon:not(.mgp-search-icon-flip) ~ .mgp-search-input {
  padding-left: 40px;
}

.mgp-search-navbar .mgp-search-icon-flip ~ .mgp-search-input {
  padding-right: 40px;
}

/* Large modifier
 ========================================================================== */
.mgp-search-large {
  width: 500px;
}

/*
 * Input
 */
.mgp-search-large .mgp-search-input {
  height: 80px;
  background: transparent;
  font-size: 2.625rem;
}

/*
 * Icon
 */
.mgp-search-large .mgp-search-icon {
  width: 80px;
}

.mgp-search-large .mgp-search-icon:not(.mgp-search-icon-flip) ~ .mgp-search-input {
  padding-left: 80px;
}

.mgp-search-large .mgp-search-icon-flip ~ .mgp-search-input {
  padding-right: 80px;
}

/* Toggle
 ========================================================================== */
.mgp-search-toggle {
  color: #999;
}

/* Hover + Focus */
.mgp-search-toggle:hover,
.mgp-search-toggle:focus {
  color: #666;
}

/* ========================================================================
   Component: Nav
 ========================================================================== */
/*
 * Reset
 * 1. Prepare lists
 * 2. Prepare links
 * 3. Remove default focus style
 */
/* 1 */
.mgp-nav,
.mgp-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* 2 */
.mgp-nav li > a {
  display: block;
  text-decoration: none;
}

/* 3 */
.mgp-nav li > a:focus {
  outline: none;
}

/*
 * Items
 * Must target `a` elements to exclude other elements (e.g. lists)
 */
.mgp-nav > li > a {
  padding: 5px 0;
}

/* Sublists
 ========================================================================== */
/*
 * Level 2
 * `ul` needed for higher specificity to override padding
 */
ul.mgp-nav-sub {
  padding: 5px 0 5px 15px;
}

/*
 * Level 3 and deeper
 */
.mgp-nav-sub ul {
  padding-left: 15px;
}

/*
 * Items
 */
.mgp-nav-sub a {
  padding: 2px 0;
}

/* Parent icon modifier
 ========================================================================== */
.mgp-nav-parent-icon > .mgp-parent > a::after {
  content: "";
  width: 1.5em;
  height: 1.5em;
  float: right;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%2210%201%204%207%2010%2013%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-position: 50% 50%;
}

.mgp-nav-parent-icon > .mgp-parent.mgp-open > a::after {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg%20width%3D%2214%22%20height%3D%2214%22%20viewBox%3D%220%200%2014%2014%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0D%0A%20%20%20%20%3Cpolyline%20fill%3D%22none%22%20stroke%3D%22%23666%22%20stroke-width%3D%221.1%22%20points%3D%221%204%207%2010%2013%204%22%20%2F%3E%0D%0A%3C%2Fsvg%3E");
}

/* Header
 ========================================================================== */
.mgp-nav-header {
  padding: 5px 0;
  text-transform: uppercase;
  font-size: 0.875rem;
}

.mgp-nav-header:not(:first-child) {
  margin-top: 20px;
}

/* Divider
 ========================================================================== */
.mgp-nav-divider {
  margin: 5px 0;
}

/* Default modifier
 ========================================================================== */
/*
 * Items
 */
.mgp-nav-default > li > a {
  color: #999;
}

/* Hover + Focus */
.mgp-nav-default > li > a:hover,
.mgp-nav-default > li > a:focus {
  color: #666;
}

/* Active */
.mgp-nav-default > li.mgp-active > a {
  color: #333;
}

/*
 * Header
 */
.mgp-nav-default .mgp-nav-header {
  color: #333;
}

/*
 * Divider
 */
.mgp-nav-default .mgp-nav-divider {
  border-top: 1px solid #e5e5e5;
}

/*
 * Sublists
 */
.mgp-nav-default .mgp-nav-sub a {
  color: #999;
}

.mgp-nav-default .mgp-nav-sub a:hover,
.mgp-nav-default .mgp-nav-sub a:focus {
  color: #666;
}

/* Primary modifier
 ========================================================================== */
/*
 * Items
 */
.mgp-nav-primary > li > a {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #999;
}

/* Hover + Focus */
.mgp-nav-primary > li > a:hover,
.mgp-nav-primary > li > a:focus {
  color: #666;
}

/* Active */
.mgp-nav-primary > li.mgp-active > a {
  color: #333;
}

/*
 * Header
 */
.mgp-nav-primary .mgp-nav-header {
  color: #333;
}

/*
 * Divider
 */
.mgp-nav-primary .mgp-nav-divider {
  border-top: 1px solid #e5e5e5;
}

/*
 * Sublists
 */
.mgp-nav-primary .mgp-nav-sub a {
  color: #999;
}

.mgp-nav-primary .mgp-nav-sub a:hover,
.mgp-nav-primary .mgp-nav-sub a:focus {
  color: #666;
}

/* Alignment modifier
 ========================================================================== */
.mgp-nav-center {
  text-align: center;
}

/* Sublists */
.mgp-nav-center .mgp-nav-sub,
.mgp-nav-center .mgp-nav-sub ul {
  padding-left: 0;
}

/* Parent icon modifier  */
.mgp-nav-center.mgp-nav-parent-icon > .mgp-parent > a::after {
  position: absolute;
}

/* ========================================================================
   Component: Navbar
 ========================================================================== */
/*
 * 1. Create position context to center navbar group
 */
.mgp-navbar {
  display: flex;
  /* 1 */
  position: relative;
}

/* Container
 ========================================================================== */
.mgp-navbar-container:not(.mgp-navbar-transparent) {
  background: #f8f8f8;
}

/*
 * Remove pseudo elements created by micro clearfix as precaution (if Container component is used)
 */
.mgp-navbar-container > ::before,
.mgp-navbar-container > ::after {
  display: none !important;
}

/* Groups
 ========================================================================== */
/*
 * 1. Align navs and items vertically if they have a different height
 * 2. Note: IE 11 requires an extra `div` which affects the center selector
 */
.mgp-navbar-left,
.mgp-navbar-right,
.mgp-navbar-center,
.mgp-navbar-center-left > *,
.mgp-navbar-center-right > * {
  display: flex;
  /* 1 */
  align-items: center;
}

/*
 * Horizontal alignment
 * 1. Create position context for centered navbar with sub groups (left/right)
 * 2. Needed for dropdowns because a new position context is created
 *    `z-index` must be smaller than off-canvas
 * 3. Fix text wrapping if the centered section is larger than 50% of the navbar
 * 4. Align sub groups for centered navbar
 */
.mgp-navbar-right {
  margin-left: auto;
}

.mgp-navbar-center:only-child {
  margin-left: auto;
  margin-right: auto;
  /* 1 */
  position: relative;
}

.mgp-navbar-center:not(:only-child) {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 2 */
  z-index: 990;
}

/* 3 */
.mgp-navbar-center:not(:only-child) .mgp-navbar-nav > li > a,
.mgp-navbar-center:not(:only-child) .mgp-navbar-item,
.mgp-navbar-center:not(:only-child) .mgp-navbar-toggle {
  white-space: nowrap;
}

/* 4 */
.mgp-navbar-center-left,
.mgp-navbar-center-right {
  position: absolute;
  top: 0;
}

.mgp-navbar-center-left {
  right: 100%;
}

.mgp-navbar-center-right {
  left: 100%;
}

[class*='mgp-navbar-center-'] .mgp-navbar-nav > li > a,
[class*='mgp-navbar-center-'] .mgp-navbar-item,
[class*='mgp-navbar-center-'] .mgp-navbar-toggle {
  white-space: nowrap;
}

/* Nav
 ========================================================================== */
/*
 * 1. Reset list
 */
.mgp-navbar-nav {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
}

/*
 * Allow items to wrap into the next line
 * Only not `absolute` positioned groups
 */
.mgp-navbar-left,
.mgp-navbar-right,
.mgp-navbar-center:only-child {
  flex-wrap: wrap;
}

/*
 * Items
 * 1. Center content vertically and horizontally
 * 2. Dimensions
 * 3. Style
 * 4. Required for `a`
 */
.mgp-navbar-nav > li > a,
.mgp-navbar-item,
.mgp-navbar-toggle {
  /* 1 */
  display: flex;
  justify-content: center;
  align-items: center;
  /* 2 */
  box-sizing: border-box;
  height: 80px;
  padding: 0 15px;
  /* 3 */
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  /* 4 */
  text-decoration: none;
}

/*
 * Nav items
 */
.mgp-navbar-nav > li > a {
  color: #999;
}

/*
 * Hover
 * Apply hover style also to focus state and if dropdown is opened
 */
.mgp-navbar-nav > li:hover > a,
.mgp-navbar-nav > li > a:focus,
.mgp-navbar-nav > li > a.mgp-open {
  color: #666;
  outline: none;
}

/* OnClick */
.mgp-navbar-nav > li > a:active {
  color: #333;
}

/* Active */
.mgp-navbar-nav > li.mgp-active > a {
  color: #333;
}

/* Item
 ========================================================================== */
.mgp-navbar-item {
  color: #666;
}

/* Toggle
 ========================================================================== */
.mgp-navbar-toggle {
  color: #999;
}

.mgp-navbar-toggle:hover,
.mgp-navbar-toggle:focus,
.mgp-navbar-toggle.mgp-open {
  color: #666;
  outline: none;
  text-decoration: none;
}

/*
 * Icon
 * Adopts `mgp-icon`
 */
/* Hover + Focus */
/* Subtitle
 ========================================================================== */
.mgp-navbar-subtitle {
  font-size: 0.875rem;
}

/* Style modifiers
 ========================================================================== */
/* Dropdown
 ========================================================================== */
/*
 * Adopts `mgp-dropdown`
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.mgp-navbar-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 200px;
  /* 4 */
  padding: 15px;
  background: #f8f8f8;
  color: #666;
}

/* Show */
.mgp-navbar-dropdown.mgp-open {
  display: block;
}

/*
 * Direction / Alignment modifiers
 */
/* Direction */
[class*='mgp-navbar-dropdown-top'] {
  margin-top: 0;
}

[class*='mgp-navbar-dropdown-bottom'] {
  margin-top: 0;
}

[class*='mgp-navbar-dropdown-left'] {
  margin-left: 0;
}

[class*='mgp-navbar-dropdown-right'] {
  margin-left: 0;
}

/*
 * Grid
 * Adopts `mgp-grid`
 */
/* Gutter Horizontal */
.mgp-navbar-dropdown-grid {
  margin-left: -30px;
}

.mgp-navbar-dropdown-grid > * {
  padding-left: 30px;
}

/* Gutter Vertical */
.mgp-navbar-dropdown-grid > .mgp-grid-margin {
  margin-top: 30px;
}

/* Stack */
.mgp-navbar-dropdown-stack .mgp-navbar-dropdown-grid > * {
  width: 100% !important;
}

/*
 * Width modifier
 */
.mgp-navbar-dropdown-width-2:not(.mgp-navbar-dropdown-stack) {
  width: 400px;
}

.mgp-navbar-dropdown-width-3:not(.mgp-navbar-dropdown-stack) {
  width: 600px;
}

.mgp-navbar-dropdown-width-4:not(.mgp-navbar-dropdown-stack) {
  width: 800px;
}

.mgp-navbar-dropdown-width-5:not(.mgp-navbar-dropdown-stack) {
  width: 1000px;
}

/*
 * Dropbar modifier
 */
.mgp-navbar-dropdown-dropbar {
  margin-top: 0;
  margin-bottom: 0;
}

/* Dropdown Nav
 * Adopts `mgp-nav`
 ========================================================================== */
/*
 * Items
 */
.mgp-navbar-dropdown-nav > li > a {
  color: #999;
}

/* Hover + Focus */
.mgp-navbar-dropdown-nav > li > a:hover,
.mgp-navbar-dropdown-nav > li > a:focus {
  color: #666;
}

/* Active */
.mgp-navbar-dropdown-nav > li.mgp-active > a {
  color: #333;
}

/*
 * Header
 */
.mgp-navbar-dropdown-nav .mgp-nav-header {
  color: #333;
}

/*
 * Divider
 */
.mgp-navbar-dropdown-nav .mgp-nav-divider {
  border-top: 1px solid #e5e5e5;
}

/*
 * Sublists
 */
.mgp-navbar-dropdown-nav .mgp-nav-sub a {
  color: #999;
}

.mgp-navbar-dropdown-nav .mgp-nav-sub a:hover,
.mgp-navbar-dropdown-nav .mgp-nav-sub a:focus {
  color: #666;
}

/* Dropbar
 ========================================================================== */
.mgp-navbar-dropbar {
  background: #f8f8f8;
}

/*
 * Slide modifier
 */
.mgp-navbar-dropbar-slide {
  position: absolute;
  z-index: 980;
  left: 0;
  right: 0;
}

/* ========================================================================
   Component: Subnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.mgp-subnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.mgp-subnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}

/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * Using `:first-child` instead of `a` to support `span` elements for text
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.mgp-subnav > * > :first-child {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
}

/* Hover + Focus */
.mgp-subnav > * > a:hover,
.mgp-subnav > * > a:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}

/* Active */
.mgp-subnav > .mgp-active > a {
  color: #333;
}

/* Divider modifier
 ========================================================================== */
/*
 * 1. Align items and divider vertically
 */
.mgp-subnav-divider > * {
  /* 1 */
  display: flex;
  align-items: center;
}

/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 */
.mgp-subnav-divider > :nth-child(n+2):not(.mgp-first-column)::before {
  content: "";
  height: 1.5em;
  margin-left: 0px;
  margin-right: 20px;
  border-left: 1px solid #e5e5e5;
}

/* Pill modifier
 ========================================================================== */
.mgp-subnav-pill > * > :first-child {
  padding: 5px 10px;
  background: transparent;
  color: #999;
}

/* Hover + Focus */
.mgp-subnav-pill > * > a:hover,
.mgp-subnav-pill > * > a:focus {
  background-color: #f8f8f8;
  color: #666;
}

/* OnClick */
.mgp-subnav-pill > * > a:active {
  background-color: #f8f8f8;
  color: #666;
}

/* Active */
.mgp-subnav-pill > .mgp-active > a {
  background-color: #1e87f0;
  color: #fff;
}

/* Disabled
 * The same for all style modifiers
 ========================================================================== */
.mgp-subnav > .mgp-disabled > a {
  color: #999;
}

/* ========================================================================
   Component: Breadcrumb
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 */
.mgp-breadcrumb {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  padding: 0;
  list-style: none;
}

/*
 * Space is allocated solely based on content dimensions: 0 0 auto
 */
.mgp-breadcrumb > * {
  flex: none;
}

/* Items
 ========================================================================== */
.mgp-breadcrumb > * > * {
  display: inline-block;
  font-size: 0.875rem;
  color: #999;
}

/* Hover + Focus */
.mgp-breadcrumb > * > :hover,
.mgp-breadcrumb > * > :focus {
  color: #666;
  text-decoration: none;
}

/* Disabled */
/* Active */
.mgp-breadcrumb > :last-child > * {
  color: #666;
}

/*
 * Divider
 * `nth-child` makes it also work without JS if it's only one row
 */
.mgp-breadcrumb > :nth-child(n+2):not(.mgp-first-column)::before {
  content: "/";
  display: inline-block;
  margin: 0 20px;
  color: #999;
}

/* ========================================================================
   Component: Pagination
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.mgp-pagination {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.mgp-pagination > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}

/* Items
 ========================================================================== */
/*
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.mgp-pagination > * > * {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
}

/* Hover + Focus */
.mgp-pagination > * > :hover,
.mgp-pagination > * > :focus {
  color: #666;
  text-decoration: none;
}

/* Active */
.mgp-pagination > .mgp-active > * {
  color: #666;
}

/* Disabled */
.mgp-pagination > .mgp-disabled > * {
  color: #999;
}

/* ========================================================================
   Component: Tab
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Gutter
 * 3. Reset list
 */
.mgp-tab {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin-left: -20px;
  /* 3 */
  padding: 0;
  list-style: none;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 * 3. Create position context for dropdowns
 */
.mgp-tab > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 20px;
  /* 3 */
  position: relative;
}

/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Center text if a width is set
 * 2. Style
 */
.mgp-tab > * > a {
  /* 1 */
  display: block;
  text-align: center;
  /* 2 */
  padding: 10px 15px;
  color: #999;
}

/* Hover + Focus */
.mgp-tab > * > a:hover,
.mgp-tab > * > a:focus {
  color: #666;
  text-decoration: none;
}

/* Active */
.mgp-tab > .mgp-active > a {
  color: #333;
}

/* Disabled */
.mgp-tab > .mgp-disabled > a {
  color: #999;
}

/* Position modifier
 ========================================================================== */
/*
 * Bottom
 */
/*
 * Left + Right
 * 1. Reset Gutter
 */
.mgp-tab-left,
.mgp-tab-right {
  flex-direction: column;
  /* 1 */
  margin-left: 0;
}

/* 1 */
.mgp-tab-left > *,
.mgp-tab-right > * {
  padding-left: 0;
}

.mgp-tab-left > * > a {
  text-align: left;
}

.mgp-tab-right > * > a {
  text-align: left;
}

/* ========================================================================
   Component: Slidenav
 ========================================================================== */
/*
 * Adopts `mgp-icon`
 */
.mgp-slidenav {
  padding: 5px 10px;
  color: rgba(102, 102, 102, 0.5);
}

/* Hover + Focus */
.mgp-slidenav:hover,
.mgp-slidenav:focus {
  color: rgba(102, 102, 102, 0.9);
  outline: none;
}

/* OnClick */
.mgp-slidenav:active {
  color: rgba(102, 102, 102, 0.5);
}

/* Icon modifier
 ========================================================================== */
/*
 * Previous
 */
/*
 * Next
 */
/* Size modifier
 ========================================================================== */
.mgp-slidenav-large {
  padding: 10px 10px;
}

/* Container
 ========================================================================== */
.mgp-slidenav-container {
  display: flex;
}

/* ========================================================================
   Component: Dotnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.mgp-dotnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -12px;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.mgp-dotnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 12px;
}

/* Items
 ========================================================================== */
/*
 * Items
 * 1. Hide text if present
 */
.mgp-dotnav > * > * {
  display: block;
  box-sizing: border-box;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(102, 102, 102, 0.2);
  /* 1 */
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}

/* Hover + Focus */
.mgp-dotnav > * > :hover,
.mgp-dotnav > * > :focus {
  background-color: rgba(102, 102, 102, 0.6);
  outline: none;
}

/* OnClick */
.mgp-dotnav > * > :active {
  background-color: rgba(102, 102, 102, 0.2);
}

/* Active */
.mgp-dotnav > .mgp-active > * {
  background-color: rgba(102, 102, 102, 0.6);
}

/* Modifier: 'mgp-dotnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.mgp-dotnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -12px;
}

/* 2 */
.mgp-dotnav-vertical > * {
  padding-left: 0;
  padding-top: 12px;
}

/* ========================================================================
   Component: Thumbnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.mgp-thumbnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -15px;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.mgp-thumbnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 15px;
}

/* Items
 ========================================================================== */
/*
 * Items
 */
.mgp-thumbnav > * > * {
  display: inline-block;
}

/* Hover + Focus */
.mgp-thumbnav > * > :hover,
.mgp-thumbnav > * > :focus {
  outline: none;
}

/* Active */
/* Modifier: 'mgp-thumbnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.mgp-thumbnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -15px;
}

/* 2 */
.mgp-thumbnav-vertical > * {
  padding-left: 0;
  padding-top: 15px;
}

/* ========================================================================
   Component: Accordion
 ========================================================================== */
.mgp-accordion {
  padding: 0;
  list-style: none;
}

/* Item
 ========================================================================== */
.mgp-accordion > :nth-child(n+2) {
  margin-top: 20px;
}

/* Title
 ========================================================================== */
.mgp-accordion-title {
  display: block;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #333;
}

/* Hover + Focus */
.mgp-accordion-title:hover,
.mgp-accordion-title:focus {
  color: #666;
  text-decoration: none;
  outline: none;
}

/* Content
 ========================================================================== */
.mgp-accordion-content {
  margin-top: 20px;
}

/*
 * Micro clearfix
 */
.mgp-accordion-content::before,
.mgp-accordion-content::after {
  content: "";
  display: table;
}

.mgp-accordion-content::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-accordion-content > :last-child {
  margin-bottom: 0;
}

/* ========================================================================
   Component: Drop
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 */
.mgp-drop {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  width: 300px;
}

/* Show */
.mgp-drop.mgp-open {
  display: block;
}

/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='mgp-drop-top'] {
  margin-top: -20px;
}

[class*='mgp-drop-bottom'] {
  margin-top: 20px;
}

[class*='mgp-drop-left'] {
  margin-left: -20px;
}

[class*='mgp-drop-right'] {
  margin-left: 20px;
}

/* Grid modifiers
 ========================================================================== */
.mgp-drop-stack .mgp-drop-grid > * {
  width: 100% !important;
}

/* ========================================================================
   Component: Dropdown
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Set a default width
 * 4. Style
 */
.mgp-dropdown {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1020;
  /* 3 */
  box-sizing: border-box;
  min-width: 200px;
  /* 4 */
  padding: 15px;
  background: #f8f8f8;
  color: #666;
}

/* Show */
.mgp-dropdown.mgp-open {
  display: block;
}

/* Nav
 * Adopts `mgp-nav`
 ========================================================================== */
.mgp-dropdown-nav {
  white-space: nowrap;
}

/*
 * Items
 */
.mgp-dropdown-nav > li > a {
  color: #999;
}

/* Hover + Focus + Active */
.mgp-dropdown-nav > li > a:hover,
.mgp-dropdown-nav > li > a:focus,
.mgp-dropdown-nav > li.mgp-active > a {
  color: #666;
}

/*
 * Header
 */
.mgp-dropdown-nav .mgp-nav-header {
  color: #333;
}

/*
 * Divider
 */
.mgp-dropdown-nav .mgp-nav-divider {
  border-top: 1px solid #e5e5e5;
}

/*
 * Sublists
 */
.mgp-dropdown-nav .mgp-nav-sub a {
  color: #999;
}

.mgp-dropdown-nav .mgp-nav-sub a:hover,
.mgp-dropdown-nav .mgp-nav-sub a:focus {
  color: #666;
}

/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='mgp-dropdown-top'] {
  margin-top: -10px;
}

[class*='mgp-dropdown-bottom'] {
  margin-top: 10px;
}

[class*='mgp-dropdown-left'] {
  margin-left: -10px;
}

[class*='mgp-dropdown-right'] {
  margin-left: 10px;
}

/* Grid modifiers
 ========================================================================== */
.mgp-dropdown-stack .mgp-dropdown-grid > * {
  width: 100% !important;
}

/* ========================================================================
   Component: Modal
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.mgp-modal {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  padding: 15px 15px;
  /* 5 */
  background: rgba(0, 0, 0, 0.6);
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-modal {
    padding: 50px 30px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-modal {
    padding-left: 40px;
    padding-right: 40px;
  }
}

/*
 * Open
 */
.mgp-modal.mgp-open {
  opacity: 1;
}

/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.mgp-modal-page {
  overflow: hidden;
}

/* Dialog
 ========================================================================== */
/*
 * 1. Create position context for spinner and close button
 * 2. Dimensions
 * 3. Fix `max-width: 100%` not working in combination with flex and responsive images in IE11
 *    `!important` needed to overwrite `mgp-width-auto`. See `#modal-media-image` in tests
 * 4. Style
 * 5. Slide-in transition
 */
.mgp-modal-dialog {
  /* 1 */
  position: relative;
  /* 2 */
  box-sizing: border-box;
  margin: 0 auto;
  width: 600px;
  /* 3 */
  max-width: calc(100% - 0.01px) !important;
  /* 4 */
  background: #fff;
  /* 5 */
  opacity: 0;
  transform: translateY(-100px);
  transition: 0.3s linear;
  transition-property: opacity, transform;
}

/*
 * Open
 */
.mgp-open > .mgp-modal-dialog {
  opacity: 1;
  transform: translateY(0);
}

/* Size modifier
 ========================================================================== */
/*
 * Container size
 * Take the same size as the Container component
 */
.mgp-modal-container .mgp-modal-dialog {
  width: 1200px;
}

/*
 * Full size
 * 1. Remove padding and background from modal
 * 2. Reset all default declarations from modal dialog
 */
/* 1 */
.mgp-modal-full {
  padding: 0;
  background: none;
}

/* 2 */
.mgp-modal-full .mgp-modal-dialog {
  margin: 0;
  width: 100%;
  max-width: 100%;
  transform: translateY(0);
}

/* Sections
 ========================================================================== */
.mgp-modal-body {
  padding: 30px 30px;
}

.mgp-modal-header {
  padding: 15px 30px;
  background: #f8f8f8;
}

.mgp-modal-footer {
  padding: 15px 30px;
  background: #f8f8f8;
}

/*
 * Micro clearfix
 */
.mgp-modal-body::before,
.mgp-modal-body::after,
.mgp-modal-header::before,
.mgp-modal-header::after,
.mgp-modal-footer::before,
.mgp-modal-footer::after {
  content: "";
  display: table;
}

.mgp-modal-body::after,
.mgp-modal-header::after,
.mgp-modal-footer::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-modal-body > :last-child,
.mgp-modal-header > :last-child,
.mgp-modal-footer > :last-child {
  margin-bottom: 0;
}

/* Title
 ========================================================================== */
.mgp-modal-title {
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 400;
}

/* Close
 * Adopts `mgp-close`
 ========================================================================== */
[class*='mgp-modal-close-'] {
  position: absolute;
  z-index: 1010;
  top: 10px;
  right: 10px;
  padding: 5px;
}

/*
 * Remove margin from adjacent element
 */
[class*='mgp-modal-close-']:first-child + * {
  margin-top: 0;
}

/*
 * Hover
 */
/*
 * Default
 */
/*
 * Outside
 * 1. Prevent scrollbar on small devices
 */
.mgp-modal-close-outside {
  top: 0;
  /* 1 */
  right: -5px;
  transform: translate(0, -100%);
  color: #ffffff;
}

.mgp-modal-close-outside:hover {
  color: #fff;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* 1 */
  .mgp-modal-close-outside {
    right: 0;
    transform: translate(100%, -100%);
  }
}

/*
 * Full
 */
/* ========================================================================
   Component: Lightbox
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 * 3. Allow scrolling for the modal dialog
 * 4. Horizontal padding
 * 5. Mask the background page
 * 6. Fade-in transition
 */
.mgp-lightbox {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1010;
  /* 5 */
  background: #000;
  /* 6 */
  opacity: 0;
  transition: opacity 0.15s linear;
}

/*
 * Open
 * 1. Center child
 * 2. Fade-in
 */
.mgp-lightbox.mgp-open {
  display: block;
  /* 2 */
  opacity: 1;
}

/* Page
 ========================================================================== */
/*
 * Prevent scrollbars
 */
.mgp-lightbox-page {
  overflow: hidden;
}

/* Item
 ========================================================================== */
/*
 * 1. Center child within the viewport
 * 2. Not visible by default
 * 3. Color needed for spinner icon
 * 4. Optimize animation
 * 5. Responsiveness
 *    Using `vh` for `max-height` to fix image proportions after resize in Safari and Opera
 *    Using `vh` and `vw` to make responsive image work in IE11
 */
.mgp-lightbox-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  display: none;
  justify-content: center;
  align-items: center;
  /* 3 */
  color: rgba(255, 255, 255, 0.7);
  /* 4 */
  will-change: transform, opacity;
}

/* 5 */
.mgp-lightbox-items > * > * {
  max-width: 100vw;
  max-height: 100vh;
}

.mgp-lightbox-items > * > :not(iframe) {
  width: auto;
  height: auto;
}

.mgp-lightbox-items > .mgp-active {
  display: flex;
}

/* Toolbar
 ========================================================================== */
.mgp-lightbox-toolbar {
  padding: 10px 10px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
}

.mgp-lightbox-toolbar * {
  color: rgba(255, 255, 255, 0.7);
}

/* Toolbar Icon (Close)
 ========================================================================== */
.mgp-lightbox-toolbar-icon {
  padding: 5px;
  color: rgba(255, 255, 255, 0.7);
}

/*
 * Hover
 */
.mgp-lightbox-toolbar-icon:hover {
  color: #fff;
}

/* Button (Slidenav)
 ========================================================================== */
/*
 * 1. Center icon vertically and horizontally
 */
.mgp-lightbox-button {
  box-sizing: border-box;
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
  color: rgba(255, 255, 255, 0.7);
  /* 1 */
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

/*
 * Hover
 */
.mgp-lightbox-button:hover {
  color: #fff;
}

/* Caption
 ========================================================================== */
/* Iframe
 ========================================================================== */
.mgp-lightbox-iframe {
  width: 80%;
  height: 80%;
}

/* ========================================================================
   Component: Slideshow
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.mgp-slideshow {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Items
 ========================================================================== */
/*
 * 1. Create position and stacking context
 * 2. Reset list
 * 3. Clip child elements
 * 4. Prevent displaying the callout information on iOS.
 */
.mgp-slideshow-items {
  /* 1 */
  position: relative;
  z-index: 0;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  overflow: hidden;
  /* 4 */
  -webkit-touch-callout: none;
}

/* Item
 ========================================================================== */
/*
 * 1. Position items above each other
 * 2. Take the full width
 * 3. Clip child elements, e.g. for `mgp-cover`
 * 4. Optimize animation
 * 5. Disable horizontal panning gestures in IE11 and Edge
 */
.mgp-slideshow-items > * {
  /* 1 */
  position: absolute;
  top: 0;
  left: 0;
  /* 2 */
  right: 0;
  bottom: 0;
  /* 3 */
  overflow: hidden;
  /* 4 */
  will-change: transform, opacity;
  /* 5 */
  touch-action: pan-y;
}

/*
 * Hide not active items
 */
.mgp-slideshow-items > :not(.mgp-active) {
  display: none;
}

/* ========================================================================
   Component: Slider
 ========================================================================== */
/*
 * 1. Prevent tab highlighting on iOS.
 */
.mgp-slider {
  /* 1 */
  -webkit-tap-highlight-color: transparent;
}

/* Container
 ========================================================================== */
/*
 * 1. Clip child elements
 */
.mgp-slider-container {
  /* 1 */
  overflow: hidden;
}

/* Items
 ========================================================================== */
/*
 * 1. Optimize animation
 * 2. Create a containing block. In Safari it's neither created by `transform` nor `will-change`.
 */
.mgp-slider-items {
  /* 1 */
  will-change: transform;
  /* 2 */
  position: relative;
}

/*
 * 1. Reset list style without interfering with grid
 * 2. Prevent displaying the callout information on iOS.
 */
.mgp-slider-items:not(.mgp-grid) {
  display: flex;
  /* 1 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 2 */
  -webkit-touch-callout: none;
}

.mgp-slider-items.mgp-grid {
  flex-wrap: nowrap;
}

/* Item
 ========================================================================== */
/*
 * 1. Let items take content dimensions (0 0 auto)
 * 2. Create position context
 * 3. Disable horizontal panning gestures in IE11 and Edge
 */
.mgp-slider-items > * {
  /* 1 */
  flex: none;
  /* 2 */
  position: relative;
  /* 3 */
  touch-action: pan-y;
}

/* ========================================================================
   Component: Sticky
 ========================================================================== */
/*
 * 1. Resolve frame rate issues on devices with lower frame rates by forcing hardware acceleration
 */
.mgp-sticky-fixed {
  z-index: 980;
  box-sizing: border-box;
  margin: 0 !important;
  /* 1 */
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/*
 * Faster animations
 */
.mgp-sticky[class*='mgp-animation-'] {
  animation-duration: 0.2s;
}

.mgp-sticky.mgp-animation-reverse {
  animation-duration: 0.2s;
}

/* ========================================================================
   Component: Off-canvas
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Set position
 */
.mgp-offcanvas {
  /* 1 */
  display: none;
  /* 2 */
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
}

/*
 * Flip modifier
 */
.mgp-offcanvas-flip .mgp-offcanvas {
  right: 0;
  left: auto;
}

/* Bar
 ========================================================================== */
/*
 * 1. Set position
 * 2. Size and style
 * 3. Allow scrolling
 * 4. Transform
 */
.mgp-offcanvas-bar {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  box-sizing: border-box;
  width: 270px;
  padding: 20px 20px;
  background: #222;
  /* 3 */
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  /* 4 */
  transform: translateX(-100%);
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-offcanvas-bar {
    width: 350px;
    padding: 40px 40px;
  }
}

/* Flip modifier */
.mgp-offcanvas-flip .mgp-offcanvas-bar {
  left: auto;
  right: 0;
  transform: translateX(100%);
}

/*
 * Open
 */
.mgp-open > .mgp-offcanvas-bar {
  transform: translateX(0);
}

/*
 * Slide Animation (Used in slide and push mode)
 */
.mgp-offcanvas-bar-animation {
  transition: transform 0.3s ease-out;
}

/*
 * Reveal Animation
 * 1. Set position
 * 2. Clip the bar
 * 3. Animation
 * 4. Reset transform
 */
.mgp-offcanvas-reveal {
  /* 1 */
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  /* 2 */
  width: 0;
  overflow: hidden;
  /* 3 */
  transition: width 0.3s ease-out;
}

.mgp-offcanvas-reveal .mgp-offcanvas-bar {
  /* 4 */
  transform: translateX(0);
}

.mgp-open > .mgp-offcanvas-reveal {
  width: 270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-open > .mgp-offcanvas-reveal {
    width: 350px;
  }
}

/*
 * Flip modifier
 */
.mgp-offcanvas-flip .mgp-offcanvas-reveal {
  right: 0;
  left: auto;
}

/* Close
 * Adopts `mgp-close`
 ========================================================================== */
.mgp-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  padding: 5px;
}

/* Overlay
 ========================================================================== */
/*
 * Overlay the whole page. Needed for the `::before`
 * 1. Using `100vw` so no modification is needed when off-canvas is flipped
 * 2. Allow for closing with swipe gesture on devices with pointer events.
 */
.mgp-offcanvas-overlay {
  /* 1 */
  width: 100vw;
  /* 2 */
  touch-action: none;
}

/*
 * 1. Mask the whole page
 * 2. Fade-in transition
 */
.mgp-offcanvas-overlay::before {
  /* 1 */
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.1);
  /* 2 */
  opacity: 0;
  transition: opacity 0.15s linear;
}

.mgp-offcanvas-overlay.mgp-open::before {
  opacity: 1;
}

/* Container
 ========================================================================== */
/*
 * Prevent horizontal scrollbar when the content is slide-out
 * Has to be on the `html` element too to make it work on the `body`
 */
.mgp-offcanvas-page,
.mgp-offcanvas-container {
  overflow-x: hidden;
}

/*
 * Prevent all scrollbars if overlay is used
 */
.mgp-offcanvas-container-overlay {
  overflow: hidden;
}

/* Content
 ========================================================================== */
/*
 * Prepare slide-out animation (Used in reveal and push mode)
 * Using `position: left` instead of `transform` because position `fixed` elements like sticky navbars
 * lose their fixed state and behaves like `absolute` within a transformed container
 * Note: JS sets a fixed width and height so the page can slide-out without shrinking
 * 1. Smooth scrolling
 */
.mgp-offcanvas-container .mgp-offcanvas-content {
  position: relative;
  left: 0;
  transition: left 0.3s ease-out;
  /* 1 */
  -webkit-overflow-scrolling: touch;
}

/* Disable scrolling if overlay mode */
.mgp-offcanvas-overlay .mgp-offcanvas-content {
  overflow-y: hidden;
}

/*
 * Activate slide-out animation
 */
:not(.mgp-offcanvas-flip) > .mgp-offcanvas-content-animation {
  left: 270px;
}

.mgp-offcanvas-flip > .mgp-offcanvas-content-animation {
  left: -270px;
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  :not(.mgp-offcanvas-flip) > .mgp-offcanvas-content-animation {
    left: 350px;
  }

  .mgp-offcanvas-flip > .mgp-offcanvas-content-animation {
    left: -350px;
  }
}

/* ========================================================================
   Component: Switcher
 ========================================================================== */
/*
 * Reset list
 */
.mgp-switcher {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Items
 ========================================================================== */
/*
 * Hide not active items
 */
.mgp-switcher > :not(.mgp-active) {
  display: none;
}

/*
 * Remove margin from the last-child
 */
.mgp-switcher > * > :last-child {
  margin-bottom: 0;
}

/* ========================================================================
   Component: Leader
 ========================================================================== */
.mgp-leader {
  overflow: hidden;
}

/*
 * 1. Place element in text flow
 * 2. Never break into a new line
 * 3. Get a string back with as many repeating characters to fill the container
 * 4. Prevent wrapping. Overflowing characters will be clipped by the container
 */
.mgp-leader-fill::after {
  /* 1 */
  display: inline-block;
  margin-left: 15px;
  /* 2 */
  width: 0;
  /* 3 */
  content: attr(data-fill);
  /* 4 */
  white-space: nowrap;
}

/*
 * Hide if media does not match
 */
.mgp-leader-fill.mgp-leader-hide::after {
  display: none;
}

/* Pass fill character to JS */
.var-leader-fill::before {
  content: '.';
}

/* ========================================================================
   Component: Iconnav
 ========================================================================== */
/*
 * 1. Allow items to wrap into the next line
 * 2. Reset list
 * 3. Gutter
 */
.mgp-iconnav {
  display: flex;
  /* 1 */
  flex-wrap: wrap;
  /* 2 */
  margin: 0;
  padding: 0;
  list-style: none;
  /* 3 */
  margin-left: -10px;
}

/*
 * 1. Space is allocated solely based on content dimensions: 0 0 auto
 * 2. Gutter
 */
.mgp-iconnav > * {
  /* 1 */
  flex: none;
  /* 2 */
  padding-left: 10px;
}

/* Items
 ========================================================================== */
/*
 * Items must target `a` elements to exclude other elements (e.g. dropdowns)
 * 1. Prevent gap if child element is `inline-block`, e.g. an icon
 * 2. Style
 */
.mgp-iconnav > * > a {
  /* 1 */
  display: block;
  /* 2 */
  color: #999;
}

/* Hover + Focus */
.mgp-iconnav > * > a:hover,
.mgp-iconnav > * > a:focus {
  color: #666;
  outline: none;
}

/* Active */
.mgp-iconnav > .mgp-active > a {
  color: #666;
}

/* Modifier: 'mgp-iconnav-vertical'
 ========================================================================== */
/*
 * 1. Change direction
 * 2. Gutter
 */
.mgp-iconnav-vertical {
  /* 1 */
  flex-direction: column;
  /* 2 */
  margin-left: 0;
  margin-top: -10px;
}

/* 2 */
.mgp-iconnav-vertical > * {
  padding-left: 0;
  padding-top: 10px;
}

/* ========================================================================
   Component: Notification
 ========================================================================== */
/*
 * 1. Set position
 * 2. Dimensions
 */
.mgp-notification {
  /* 1 */
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1040;
  /* 2 */
  box-sizing: border-box;
  width: 400px;
}

/* Position modifiers
========================================================================== */
.mgp-notification-top-right,
.mgp-notification-bottom-right {
  left: auto;
  right: 10px;
}

.mgp-notification-top-center,
.mgp-notification-bottom-center {
  left: 50%;
  margin-left: -200px;
}

.mgp-notification-bottom-left,
.mgp-notification-bottom-right,
.mgp-notification-bottom-center {
  top: auto;
  bottom: 10px;
}

/* Responsiveness
========================================================================== */
/* Phones portrait and smaller */
@media (max-width: 639px) {
  .mgp-notification {
    left: 10px;
    right: 10px;
    width: auto;
    margin: 0;
  }
}

/* Message
========================================================================== */
.mgp-notification-message {
  position: relative;
  margin-bottom: 10px;
  padding: 15px;
  background: #f8f8f8;
  color: #666;
  font-size: 1.25rem;
  line-height: 1.4;
  cursor: pointer;
}

/* Close
 * Adopts `mgp-close`
 ========================================================================== */
.mgp-notification-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 15px;
}

.mgp-notification-message:hover .mgp-notification-close {
  display: block;
}

/* Style modifiers
 ========================================================================== */
/*
 * Primary
 */
.mgp-notification-message-primary {
  color: #1e87f0;
}

/*
 * Success
 */
.mgp-notification-message-success {
  color: #32d296;
}

/*
 * Warning
 */
.mgp-notification-message-warning {
  color: #faa05a;
}

/*
 * Danger
 */
.mgp-notification-message-danger {
  color: #f0506e;
}

/* ========================================================================
   Component: Tooltip
 ========================================================================== */
/*
 * 1. Hide by default
 * 2. Position
 * 3. Dimensions
 * 4. Style
 */
.mgp-tooltip {
  /* 1 */
  display: none;
  /* 2 */
  position: absolute;
  z-index: 1030;
  /* 3 */
  box-sizing: border-box;
  max-width: 200px;
  padding: 3px 6px;
  /* 4 */
  background: #666;
  border-radius: 2px;
  color: #fff;
  font-size: 12px;
}

/* Show */
.mgp-tooltip.mgp-active {
  display: block;
}

/* Direction / Alignment modifiers
 ========================================================================== */
/* Direction */
[class*='mgp-tooltip-top'] {
  margin-top: -10px;
}

[class*='mgp-tooltip-bottom'] {
  margin-top: 10px;
}

[class*='mgp-tooltip-left'] {
  margin-left: -10px;
}

[class*='mgp-tooltip-right'] {
  margin-left: 10px;
}

/* ========================================================================
   Component: Placeholder
 ========================================================================== */
.mgp-placeholder {
  margin-bottom: 20px;
  padding: 30px 30px;
  background: #f8f8f8;
}

/* Add margin if adjacent element */
* + .mgp-placeholder {
  margin-top: 20px;
}

/*
 * Remove margin from the last-child
 */
.mgp-placeholder > :last-child {
  margin-bottom: 0;
}

/* ========================================================================
   Component: Progress
 ========================================================================== */
/*
 * 1. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 * 2. Remove default style
 * 3. Behave like a block element
 * 4. Remove borders in Firefox and Edge
 * 5. Set background color for progress container in Firefox, IE11 and Edge
 * 6. Style
 */
.mgp-progress {
  /* 1 */
  vertical-align: baseline;
  /* 2 */
  -webkit-appearance: none;
  -moz-appearance: none;
  /* 3 */
  display: block;
  width: 100%;
  /* 4 */
  border: 0;
  /* 5 */
  background-color: #f8f8f8;
  /* 6 */
  margin-bottom: 20px;
  height: 15px;
}

/* Add margin if adjacent element */
* + .mgp-progress {
  margin-top: 20px;
}

/*
 * Remove animated circles for indeterminate state in IE11 and Edge
 */
.mgp-progress:indeterminate {
  color: transparent;
}

/*
 * Progress container
 * 2. Remove progress bar for indeterminate state in Firefox
 */
.mgp-progress::-webkit-progress-bar {
  background-color: #f8f8f8;
}

/* 2 */
.mgp-progress:indeterminate::-moz-progress-bar {
  width: 0;
}

/*
 * Progress bar
 * 1. Remove right border in IE11 and Edge
 */
.mgp-progress::-webkit-progress-value {
  background-color: #1e87f0;
  transition: width 0.6s ease;
}

.mgp-progress::-moz-progress-bar {
  background-color: #1e87f0;
}

.mgp-progress::-ms-fill {
  background-color: #1e87f0;
  transition: width 0.6s ease;
  /* 1 */
  border: 0;
}

/* ========================================================================
   Component: Sortable
 ========================================================================== */
.mgp-sortable {
  position: relative;
}

/*
 * Deactivate browser touch actions in IE11 and Edge
 */
.mgp-sortable > * {
  touch-action: none;
}

/*
 * Deactivate pointer-events on SVGs in Safari
 */
.mgp-sortable svg {
  pointer-events: none;
}

/*
 * Remove margin from the last-child
 */
.mgp-sortable > :last-child {
  margin-bottom: 0;
}

/* Drag
 ========================================================================== */
.mgp-sortable-drag {
  position: absolute !important;
  z-index: 1050 !important;
  pointer-events: none;
}

/* Placeholder
 ========================================================================== */
.mgp-sortable-placeholder {
  opacity: 0;
}

/* Empty modifier
 ========================================================================== */
.mgp-sortable-empty {
  min-height: 50px;
}

/* Handle
 ========================================================================== */
/* Hover */
.mgp-sortable-handle:hover {
  cursor: move;
}

/* ========================================================================
   Component: Countdown
 ========================================================================== */
/* Item
 ========================================================================== */
/*
 * 1. Center numbers and separators vertically
 */
.mgp-countdown-number,
.mgp-countdown-separator {
  /* 1 */
  line-height: 70px;
}

/* Number
 ========================================================================== */
.mgp-countdown-number {
  font-size: 2rem;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-countdown-number {
    font-size: 4rem;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-countdown-number {
    font-size: 6rem;
  }
}

/* Separator
 ========================================================================== */
.mgp-countdown-separator {
  font-size: 1rem;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-countdown-separator {
    font-size: 2rem;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-countdown-separator {
    font-size: 3rem;
  }
}

/* Label
 ========================================================================== */
/* ========================================================================
   Component: Animation
 ========================================================================== */
[class*='mgp-animation-'] {
  animation-duration: 0.5s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}

/* Direction modifier
 ========================================================================== */
.mgp-animation-reverse {
  animation-direction: reverse;
  animation-timing-function: ease-in;
}

/* Animations for scrollspy
 ========================================================================== */
/*
 * Fade
 */
.mgp-animation-fade {
  animation-name: mgp-fade;
  animation-duration: 0.8s;
  animation-timing-function: linear;
}

/*
 * Scale
 */
.mgp-animation-scale-up {
  animation-name: mgp-fade-scale-02;
}

.mgp-animation-scale-down {
  animation-name: mgp-fade-scale-18;
}

/*
 * Slide
 */
.mgp-animation-slide-top {
  animation-name: mgp-fade-top;
}

.mgp-animation-slide-bottom {
  animation-name: mgp-fade-bottom;
}

.mgp-animation-slide-left {
  animation-name: mgp-fade-left;
}

.mgp-animation-slide-right {
  animation-name: mgp-fade-right;
}

/*
 * Slide Small
 */
.mgp-animation-slide-top-small {
  animation-name: mgp-fade-top-small;
}

.mgp-animation-slide-bottom-small {
  animation-name: mgp-fade-bottom-small;
}

.mgp-animation-slide-left-small {
  animation-name: mgp-fade-left-small;
}

.mgp-animation-slide-right-small {
  animation-name: mgp-fade-right-small;
}

/*
 * Slide Medium
 */
.mgp-animation-slide-top-medium {
  animation-name: mgp-fade-top-medium;
}

.mgp-animation-slide-bottom-medium {
  animation-name: mgp-fade-bottom-medium;
}

.mgp-animation-slide-left-medium {
  animation-name: mgp-fade-left-medium;
}

.mgp-animation-slide-right-medium {
  animation-name: mgp-fade-right-medium;
}

/*
 * Kenburns
 */
.mgp-animation-kenburns {
  animation-name: mgp-scale-kenburns;
  animation-duration: 15s;
}

/*
 * Shake
 */
.mgp-animation-shake {
  animation-name: mgp-shake;
}

/* Duration modifier
 ========================================================================== */
.mgp-animation-fast {
  animation-duration: 0.1s;
}

/* Enable animation only on hover
========================================================================== */
/*
 * Note: Firefox and IE needs this because animations are not triggered when switching between display `none` and `block`
 */
.mgp-animation-toggle:not(:hover):not(.mgp-hover) [class*='mgp-animation-'] {
  animation-name: none;
}

/* Keyframes used by animation classes
 ========================================================================== */
/*
 * Fade
 */
@keyframes mgp-fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/*
 * Slide Top
 */
@keyframes mgp-fade-top {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Slide Bottom
 */
@keyframes mgp-fade-bottom {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Slide Left
 */
@keyframes mgp-fade-left {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*
 * Slide Right
 */
@keyframes mgp-fade-right {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*
 * Slide Top Small
 */
@keyframes mgp-fade-top-small {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Slide Bottom Small
 */
@keyframes mgp-fade-bottom-small {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Slide Left Small
 */
@keyframes mgp-fade-left-small {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*
 * Slide Right Small
 */
@keyframes mgp-fade-right-small {
  0% {
    opacity: 0;
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*
 * Slide Top Medium
 */
@keyframes mgp-fade-top-medium {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Slide Bottom Medium
 */
@keyframes mgp-fade-bottom-medium {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*
 * Slide Left Medium
 */
@keyframes mgp-fade-left-medium {
  0% {
    opacity: 0;
    transform: translateX(-50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*
 * Slide Right Medium
 */
@keyframes mgp-fade-right-medium {
  0% {
    opacity: 0;
    transform: translateX(50px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

/*
 * Scale Up
 */
@keyframes mgp-fade-scale-02 {
  0% {
    opacity: 0;
    transform: scale(0.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*
 * Scale Down
 */
@keyframes mgp-fade-scale-18 {
  0% {
    opacity: 0;
    transform: scale(1.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*
 * Kenburns
 */
@keyframes mgp-scale-kenburns {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}

/*
 * Shake
 */
@keyframes mgp-shake {
  0%,
  100% {
    transform: translateX(0);
  }
  10% {
    transform: translateX(-9px);
  }
  20% {
    transform: translateX(8px);
  }
  30% {
    transform: translateX(-7px);
  }
  40% {
    transform: translateX(6px);
  }
  50% {
    transform: translateX(-5px);
  }
  60% {
    transform: translateX(4px);
  }
  70% {
    transform: translateX(-3px);
  }
  80% {
    transform: translateX(2px);
  }
  90% {
    transform: translateX(-1px);
  }
}

/* ========================================================================
   Component: Width
 ========================================================================== */
/* Equal child widths
 ========================================================================== */
[class*='mgp-child-width'] > * {
  box-sizing: border-box;
  width: 100%;
}

.mgp-child-width-1-2 > * {
  width: 50%;
}

.mgp-child-width-1-3 > * {
  width: calc(100% * 1 / 3.001);
}

.mgp-child-width-1-4 > * {
  width: 25%;
}

.mgp-child-width-1-5 > * {
  width: 20%;
}

.mgp-child-width-1-6 > * {
  width: calc(100% * 1 / 6.001);
}

.mgp-child-width-auto > * {
  width: auto;
}

/*
 *    Instead of 0, 1px is needed to make cell wrap into next row if predecessor is 100% wide
 *    and the grid gutter is 0 pixels wide
 */
.mgp-child-width-expand > * {
  width: 1px;
}

/*
 * 1. Make `width: 1px` work, because according to the spec flex items won’t shrink
 *    below their minimum content size. To change this, set the min-width.
 *    Only needed for Firefox. All other browsers ignore this.
 *
 * 2. `width` is ignored when wrapping flex items in Safari
 *    https://github.com/philipwalton/flexbugs#11-min-and-max-size-declarations-are-ignored-when-wrapping-flex-items
 */
.mgp-child-width-expand > :not([class*='mgp-width']) {
  flex: 1;
  /* 1 */
  min-width: 0;
  /* 2 */
  flex-basis: 1px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-child-width-1-1\@s > * {
    width: 100%;
  }

  .mgp-child-width-1-2\@s > * {
    width: 50%;
  }

  .mgp-child-width-1-3\@s > * {
    width: calc(100% * 1 / 3.001);
  }

  .mgp-child-width-1-4\@s > * {
    width: 25%;
  }

  .mgp-child-width-1-5\@s > * {
    width: 20%;
  }

  .mgp-child-width-1-6\@s > * {
    width: calc(100% * 1 / 6.001);
  }

  .mgp-child-width-auto\@s > * {
    width: auto;
  }

  .mgp-child-width-expand\@s > * {
    width: 1px;
  }

  .mgp-child-width-expand\@s > :not([class*='mgp-width']) {
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-child-width-1-1\@m > * {
    width: 100%;
  }

  .mgp-child-width-1-2\@m > * {
    width: 50%;
  }

  .mgp-child-width-1-3\@m > * {
    width: calc(100% * 1 / 3.001);
  }

  .mgp-child-width-1-4\@m > * {
    width: 25%;
  }

  .mgp-child-width-1-5\@m > * {
    width: 20%;
  }

  .mgp-child-width-1-6\@m > * {
    width: calc(100% * 1 / 6.001);
  }

  .mgp-child-width-auto\@m > * {
    width: auto;
  }

  .mgp-child-width-expand\@m > * {
    width: 1px;
  }

  .mgp-child-width-expand\@m > :not([class*='mgp-width']) {
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-child-width-1-1\@l > * {
    width: 100%;
  }

  .mgp-child-width-1-2\@l > * {
    width: 50%;
  }

  .mgp-child-width-1-3\@l > * {
    width: calc(100% * 1 / 3.001);
  }

  .mgp-child-width-1-4\@l > * {
    width: 25%;
  }

  .mgp-child-width-1-5\@l > * {
    width: 20%;
  }

  .mgp-child-width-1-6\@l > * {
    width: calc(100% * 1 / 6.001);
  }

  .mgp-child-width-auto\@l > * {
    width: auto;
  }

  .mgp-child-width-expand\@l > * {
    width: 1px;
  }

  .mgp-child-width-expand\@l > :not([class*='mgp-width']) {
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .mgp-child-width-1-1\@xl > * {
    width: 100%;
  }

  .mgp-child-width-1-2\@xl > * {
    width: 50%;
  }

  .mgp-child-width-1-3\@xl > * {
    width: calc(100% * 1 / 3.001);
  }

  .mgp-child-width-1-4\@xl > * {
    width: 25%;
  }

  .mgp-child-width-1-5\@xl > * {
    width: 20%;
  }

  .mgp-child-width-1-6\@xl > * {
    width: calc(100% * 1 / 6.001);
  }

  .mgp-child-width-auto\@xl > * {
    width: auto;
  }

  .mgp-child-width-expand\@xl > * {
    width: 1px;
  }

  .mgp-child-width-expand\@xl > :not([class*='mgp-width']) {
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/* Single Widths
 ========================================================================== */
/*
 * 1. `max-width` is needed for the pixel-based classes
 */
[class*='mgp-width'] {
  box-sizing: border-box;
  width: 100%;
  /* 1 */
  max-width: 100%;
}

/* Halves */
.mgp-width-1-2 {
  width: 50%;
}

/* Thirds */
.mgp-width-1-3 {
  width: calc(100% * 1 / 3.001);
}

.mgp-width-2-3 {
  width: calc(100% * 2 / 3.001);
}

/* Quarters */
.mgp-width-1-4 {
  width: 25%;
}

.mgp-width-3-4 {
  width: 75%;
}

/* Fifths */
.mgp-width-1-5 {
  width: 20%;
}

.mgp-width-2-5 {
  width: 40%;
}

.mgp-width-3-5 {
  width: 60%;
}

.mgp-width-4-5 {
  width: 80%;
}

/* Sixths */
.mgp-width-1-6 {
  width: calc(100% * 1 / 6.001);
}

.mgp-width-5-6 {
  width: calc(100% * 5 / 6.001);
}

/* Pixel */
.mgp-width-small {
  width: 150px;
}

.mgp-width-medium {
  width: 300px;
}

.mgp-width-large {
  width: 450px;
}

.mgp-width-xlarge {
  width: 600px;
}

.mgp-width-xxlarge {
  width: 750px;
}

/* Auto */
.mgp-width-auto {
  width: auto;
}

/* Expand */
.mgp-width-expand {
  width: 1px;
  flex: 1;
  min-width: 0;
  flex-basis: 1px;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  /* Whole */
  .mgp-width-1-1\@s {
    width: 100%;
  }

  /* Halves */
  .mgp-width-1-2\@s {
    width: 50%;
  }

  /* Thirds */
  .mgp-width-1-3\@s {
    width: calc(100% * 1 / 3.001);
  }

  .mgp-width-2-3\@s {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .mgp-width-1-4\@s {
    width: 25%;
  }

  .mgp-width-3-4\@s {
    width: 75%;
  }

  /* Fifths */
  .mgp-width-1-5\@s {
    width: 20%;
  }

  .mgp-width-2-5\@s {
    width: 40%;
  }

  .mgp-width-3-5\@s {
    width: 60%;
  }

  .mgp-width-4-5\@s {
    width: 80%;
  }

  /* Sixths */
  .mgp-width-1-6\@s {
    width: calc(100% * 1 / 6.001);
  }

  .mgp-width-5-6\@s {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .mgp-width-small\@s {
    width: 150px;
  }

  .mgp-width-medium\@s {
    width: 300px;
  }

  .mgp-width-large\@s {
    width: 450px;
  }

  .mgp-width-xlarge\@s {
    width: 600px;
  }

  .mgp-width-xxlarge\@s {
    width: 750px;
  }

  /* Auto */
  .mgp-width-auto\@s {
    width: auto;
  }

  /* Expand */
  .mgp-width-expand\@s {
    width: 1px;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  /* Whole */
  .mgp-width-1-1\@m {
    width: 100%;
  }

  /* Halves */
  .mgp-width-1-2\@m {
    width: 50%;
  }

  /* Thirds */
  .mgp-width-1-3\@m {
    width: calc(100% * 1 / 3.001);
  }

  .mgp-width-2-3\@m {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .mgp-width-1-4\@m {
    width: 25%;
  }

  .mgp-width-3-4\@m {
    width: 75%;
  }

  /* Fifths */
  .mgp-width-1-5\@m {
    width: 20%;
  }

  .mgp-width-2-5\@m {
    width: 40%;
  }

  .mgp-width-3-5\@m {
    width: 60%;
  }

  .mgp-width-4-5\@m {
    width: 80%;
  }

  /* Sixths */
  .mgp-width-1-6\@m {
    width: calc(100% * 1 / 6.001);
  }

  .mgp-width-5-6\@m {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .mgp-width-small\@m {
    width: 150px;
  }

  .mgp-width-medium\@m {
    width: 300px;
  }

  .mgp-width-large\@m {
    width: 450px;
  }

  .mgp-width-xlarge\@m {
    width: 600px;
  }

  .mgp-width-xxlarge\@m {
    width: 750px;
  }

  /* Auto */
  .mgp-width-auto\@m {
    width: auto;
  }

  /* Expand */
  .mgp-width-expand\@m {
    width: 1px;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  /* Whole */
  .mgp-width-1-1\@l {
    width: 100%;
  }

  /* Halves */
  .mgp-width-1-2\@l {
    width: 50%;
  }

  /* Thirds */
  .mgp-width-1-3\@l {
    width: calc(100% * 1 / 3.001);
  }

  .mgp-width-2-3\@l {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .mgp-width-1-4\@l {
    width: 25%;
  }

  .mgp-width-3-4\@l {
    width: 75%;
  }

  /* Fifths */
  .mgp-width-1-5\@l {
    width: 20%;
  }

  .mgp-width-2-5\@l {
    width: 40%;
  }

  .mgp-width-3-5\@l {
    width: 60%;
  }

  .mgp-width-4-5\@l {
    width: 80%;
  }

  /* Sixths */
  .mgp-width-1-6\@l {
    width: calc(100% * 1 / 6.001);
  }

  .mgp-width-5-6\@l {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .mgp-width-small\@l {
    width: 150px;
  }

  .mgp-width-medium\@l {
    width: 300px;
  }

  .mgp-width-large\@l {
    width: 450px;
  }

  .mgp-width-xlarge\@l {
    width: 600px;
  }

  .mgp-width-xxlarge\@l {
    width: 750px;
  }

  /* Auto */
  .mgp-width-auto\@l {
    width: auto;
  }

  /* Expand */
  .mgp-width-expand\@l {
    width: 1px;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  /* Whole */
  .mgp-width-1-1\@xl {
    width: 100%;
  }

  /* Halves */
  .mgp-width-1-2\@xl {
    width: 50%;
  }

  /* Thirds */
  .mgp-width-1-3\@xl {
    width: calc(100% * 1 / 3.001);
  }

  .mgp-width-2-3\@xl {
    width: calc(100% * 2 / 3.001);
  }

  /* Quarters */
  .mgp-width-1-4\@xl {
    width: 25%;
  }

  .mgp-width-3-4\@xl {
    width: 75%;
  }

  /* Fifths */
  .mgp-width-1-5\@xl {
    width: 20%;
  }

  .mgp-width-2-5\@xl {
    width: 40%;
  }

  .mgp-width-3-5\@xl {
    width: 60%;
  }

  .mgp-width-4-5\@xl {
    width: 80%;
  }

  /* Sixths */
  .mgp-width-1-6\@xl {
    width: calc(100% * 1 / 6.001);
  }

  .mgp-width-5-6\@xl {
    width: calc(100% * 5 / 6.001);
  }

  /* Pixel */
  .mgp-width-small\@xl {
    width: 150px;
  }

  .mgp-width-medium\@xl {
    width: 300px;
  }

  .mgp-width-large\@xl {
    width: 450px;
  }

  .mgp-width-xlarge\@xl {
    width: 600px;
  }

  .mgp-width-xxlarge\@xl {
    width: 750px;
  }

  /* Auto */
  .mgp-width-auto\@xl {
    width: auto;
  }

  /* Expand */
  .mgp-width-expand\@xl {
    width: 1px;
    flex: 1;
    min-width: 0;
    flex-basis: 1px;
  }
}

/* ========================================================================
   Component: Height
 ========================================================================== */
[class*='mgp-height'] {
  box-sizing: border-box;
}

/*
 * Only works if parent element has a height set
 */
.mgp-height-1-1 {
  height: 100%;
}

/*
 * Useful to create image teasers
 */
.mgp-height-viewport {
  min-height: 100vh;
}

/*
 * Pixel
 * Useful for `overflow: auto`
 */
.mgp-height-small {
  height: 150px;
}

.mgp-height-medium {
  height: 300px;
}

.mgp-height-large {
  height: 450px;
}

.mgp-height-max-small {
  max-height: 150px;
}

.mgp-height-max-medium {
  max-height: 300px;
}

.mgp-height-max-large {
  max-height: 450px;
}

/* ========================================================================
   Component: Text
 ========================================================================== */
/* Style modifiers
 ========================================================================== */
.mgp-text-lead {
  font-size: 1.5rem;
  line-height: 1.5;
  color: #333;
}

.mgp-text-meta {
  font-size: 0.875rem;
  line-height: 1.4;
  color: #999;
}

/* Size modifiers
 ========================================================================== */
.mgp-text-small {
  font-size: 0.875rem;
  line-height: 1.5;
}

.mgp-text-large {
  font-size: 1.5rem;
  line-height: 1.5;
}

/* Weight modifier
 ========================================================================== */
.mgp-text-bold {
  font-weight: bolder;
}

/* Transform modifier
 ========================================================================== */
.mgp-text-uppercase {
  text-transform: uppercase !important;
}

.mgp-text-capitalize {
  text-transform: capitalize !important;
}

.mgp-text-lowercase {
  text-transform: lowercase !important;
}

/* Color modifiers
 ========================================================================== */
.mgp-text-muted {
  color: #999 !important;
}

.mgp-text-primary {
  color: #1e87f0 !important;
}

.mgp-text-success {
  color: #32d296 !important;
}

.mgp-text-warning {
  color: #faa05a !important;
}

.mgp-text-danger {
  color: #f0506e !important;
}

/* Background modifier
 ========================================================================== */
/*
 * 1. The background clips to the foreground text. Works in Chrome, Firefox, Safari, Edge and Opera
 *    Default color is set to transparent
 * 2. Container fits the text
 * 3. Fallback color for IE11
 */
.mgp-text-background {
  /* 1 */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* 2 */
  display: inline-block;
  /* 3 */
  color: #1e87f0 !important;
}

@supports (-webkit-background-clip: text) {
  .mgp-text-background {
    background-color: #1e87f0;
  }
}

/* Alignment modifiers
 ========================================================================== */
.mgp-text-left {
  text-align: left !important;
}

.mgp-text-right {
  text-align: right !important;
}

.mgp-text-center {
  text-align: center !important;
}

.mgp-text-justify {
  text-align: justify !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-text-left\@s {
    text-align: left !important;
  }

  .mgp-text-right\@s {
    text-align: right !important;
  }

  .mgp-text-center\@s {
    text-align: center !important;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-text-left\@m {
    text-align: left !important;
  }

  .mgp-text-right\@m {
    text-align: right !important;
  }

  .mgp-text-center\@m {
    text-align: center !important;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-text-left\@l {
    text-align: left !important;
  }

  .mgp-text-right\@l {
    text-align: right !important;
  }

  .mgp-text-center\@l {
    text-align: center !important;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .mgp-text-left\@xl {
    text-align: left !important;
  }

  .mgp-text-right\@xl {
    text-align: right !important;
  }

  .mgp-text-center\@xl {
    text-align: center !important;
  }
}

/*
 * Vertical
 */
.mgp-text-top {
  vertical-align: top !important;
}

.mgp-text-middle {
  vertical-align: middle !important;
}

.mgp-text-bottom {
  vertical-align: bottom !important;
}

.mgp-text-baseline {
  vertical-align: baseline !important;
}

/* Wrap modifiers
 ========================================================================== */
/*
 * Prevent text from wrapping onto multiple lines
 */
.mgp-text-nowrap {
  white-space: nowrap;
}

/*
 * 1. Make sure a max-width is set after which truncation can occur
 * 2. Prevent text from wrapping onto multiple lines, and truncate with an ellipsis
 * 3. Fix for table cells
 */
.mgp-text-truncate {
  /* 1 */
  max-width: 100%;
  /* 2 */
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* 2 */
th.mgp-text-truncate,
td.mgp-text-truncate {
  max-width: 0;
}

/*
 * 1. Wrap long words onto the next line and break them if they are too long to fit
 * 2. Legacy `word-wrap` as fallback for `overflow-wrap`
 * 3. Fix `overflow-wrap` which doesn't work with table cells in Chrome, Opera, IE11 and Edge
 *    Must use `break-all` to support IE11 and Edge
 * Note: Not using `hyphens: auto;` because it hyphenates text even if not needed
 */
.mgp-text-break {
  /* 1 */
  overflow-wrap: break-word;
  /* 2 */
  word-wrap: break-word;
}

/* 3 */
th.mgp-text-break,
td.mgp-text-break {
  word-break: break-all;
}

/* ========================================================================
   Component: Column
 ========================================================================== */
[class*='mgp-column-'] {
  column-gap: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  [class*='mgp-column-'] {
    column-gap: 40px;
  }
}

/*
 * Fix image 1px line wrapping into the next column in Chrome
 */
[class*='mgp-column-'] img {
  transform: translate3d(0, 0, 0);
}

/* Divider
 ========================================================================== */
/*
 * 1. Double the column gap
 */
.mgp-column-divider {
  column-rule: 1px solid #e5e5e5;
  /* 1 */
  column-gap: 60px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-column-divider {
    column-gap: 80px;
  }
}

/* Width modifiers
 ========================================================================== */
.mgp-column-1-2 {
  column-count: 2;
}

.mgp-column-1-3 {
  column-count: 3;
}

.mgp-column-1-4 {
  column-count: 4;
}

.mgp-column-1-5 {
  column-count: 5;
}

.mgp-column-1-6 {
  column-count: 6;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-column-1-2\@s {
    column-count: 2;
  }

  .mgp-column-1-3\@s {
    column-count: 3;
  }

  .mgp-column-1-4\@s {
    column-count: 4;
  }

  .mgp-column-1-5\@s {
    column-count: 5;
  }

  .mgp-column-1-6\@s {
    column-count: 6;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-column-1-2\@m {
    column-count: 2;
  }

  .mgp-column-1-3\@m {
    column-count: 3;
  }

  .mgp-column-1-4\@m {
    column-count: 4;
  }

  .mgp-column-1-5\@m {
    column-count: 5;
  }

  .mgp-column-1-6\@m {
    column-count: 6;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-column-1-2\@l {
    column-count: 2;
  }

  .mgp-column-1-3\@l {
    column-count: 3;
  }

  .mgp-column-1-4\@l {
    column-count: 4;
  }

  .mgp-column-1-5\@l {
    column-count: 5;
  }

  .mgp-column-1-6\@l {
    column-count: 6;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .mgp-column-1-2\@xl {
    column-count: 2;
  }

  .mgp-column-1-3\@xl {
    column-count: 3;
  }

  .mgp-column-1-4\@xl {
    column-count: 4;
  }

  .mgp-column-1-5\@xl {
    column-count: 5;
  }

  .mgp-column-1-6\@xl {
    column-count: 6;
  }
}

/* Make element span across all columns
 * Does not work in Firefox yet
 ========================================================================== */
.mgp-column-span {
  column-span: all;
}

/* ========================================================================
   Component: Cover
 ========================================================================== */
/*
 * Works with iframes and embedded content
 * 1. Reset responsiveness for embedded content
 * 2. Center object
 * Note: Percent values on the `top` property only works if this element
 *       is absolute positioned or if the container has a height
 */
.mgp-cover {
  /* 1 */
  max-width: none;
  /* 2 */
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

iframe.mgp-cover {
  pointer-events: none;
}

/* Container
 ========================================================================== */
/*
 * 1. Parent container which clips resized object
 * 2. Needed if the child is positioned absolute. See note above
 */
.mgp-cover-container {
  /* 1 */
  overflow: hidden;
  /* 2 */
  position: relative;
}

/* ========================================================================
   Component: Background
 ========================================================================== */
/* Color
 ========================================================================== */
.mgp-background-default {
  background-color: #fff;
}

.mgp-background-muted {
  background-color: #f8f8f8;
}

.mgp-background-primary {
  background-color: #1e87f0;
}

.mgp-background-secondary {
  background-color: #222;
}

/* Size
 ========================================================================== */
.mgp-background-cover,
.mgp-background-contain {
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.mgp-background-cover {
  background-size: cover;
}

.mgp-background-contain {
  background-size: contain;
}

/* Position
 ========================================================================== */
.mgp-background-top-left {
  background-position: 0 0;
}

.mgp-background-top-center {
  background-position: 50% 0;
}

.mgp-background-top-right {
  background-position: 100% 0;
}

.mgp-background-center-left {
  background-position: 0 50%;
}

.mgp-background-center-center {
  background-position: 50% 50%;
}

.mgp-background-center-right {
  background-position: 100% 50%;
}

.mgp-background-bottom-left {
  background-position: 0 100%;
}

.mgp-background-bottom-center {
  background-position: 50% 100%;
}

.mgp-background-bottom-right {
  background-position: 100% 100%;
}

/* Repeat
 ========================================================================== */
.mgp-background-norepeat {
  background-repeat: no-repeat;
}

/* Attachment
 ========================================================================== */
/*
 * 1. Fix bug introduced in Chrome 67: the background image is not visible if any element on the page uses `translate3d`
 */
.mgp-background-fixed {
  background-attachment: fixed;
  /* 1 */
  backface-visibility: hidden;
}

/*
 * Exclude touch devices because `fixed` doesn't work on iOS and Android
 */
@media (pointer: coarse) {
  .mgp-background-fixed {
    background-attachment: scroll;
  }
}

/* Image
 ========================================================================== */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .mgp-background-image\@s {
    background-image: none !important;
  }
}

/* Phone landscape and smaller */
@media (max-width: 959px) {
  .mgp-background-image\@m {
    background-image: none !important;
  }
}

/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .mgp-background-image\@l {
    background-image: none !important;
  }
}

/* Desktop and smaller */
@media (max-width: 1599px) {
  .mgp-background-image\@xl {
    background-image: none !important;
  }
}

/* Blend modes
 ========================================================================== */
.mgp-background-blend-multiply {
  background-blend-mode: multiply;
}

.mgp-background-blend-screen {
  background-blend-mode: screen;
}

.mgp-background-blend-overlay {
  background-blend-mode: overlay;
}

.mgp-background-blend-darken {
  background-blend-mode: darken;
}

.mgp-background-blend-lighten {
  background-blend-mode: lighten;
}

.mgp-background-blend-color-dodge {
  background-blend-mode: color-dodge;
}

.mgp-background-blend-color-burn {
  background-blend-mode: color-burn;
}

.mgp-background-blend-hard-light {
  background-blend-mode: hard-light;
}

.mgp-background-blend-soft-light {
  background-blend-mode: soft-light;
}

.mgp-background-blend-difference {
  background-blend-mode: difference;
}

.mgp-background-blend-exclusion {
  background-blend-mode: exclusion;
}

.mgp-background-blend-hue {
  background-blend-mode: hue;
}

.mgp-background-blend-saturation {
  background-blend-mode: saturation;
}

.mgp-background-blend-color {
  background-blend-mode: color;
}

.mgp-background-blend-luminosity {
  background-blend-mode: luminosity;
}

/* ========================================================================
   Component: Align
 ========================================================================== */
/*
 * Default
 */
[class*='mgp-align'] {
  display: block;
  margin-bottom: 30px;
}

* + [class*='mgp-align'] {
  margin-top: 30px;
}

/*
 * Center
 */
.mgp-align-center {
  margin-left: auto;
  margin-right: auto;
}

/*
 * Left/Right
 */
.mgp-align-left {
  margin-top: 0;
  margin-right: 30px;
  float: left;
}

.mgp-align-right {
  margin-top: 0;
  margin-left: 30px;
  float: right;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-align-left\@s {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }

  .mgp-align-right\@s {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-align-left\@m {
    margin-top: 0;
    margin-right: 30px;
    float: left;
  }

  .mgp-align-right\@m {
    margin-top: 0;
    margin-left: 30px;
    float: right;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-align-left\@l {
    margin-top: 0;
    float: left;
  }

  .mgp-align-right\@l {
    margin-top: 0;
    float: right;
  }

  .mgp-align-left,
  .mgp-align-left\@s,
  .mgp-align-left\@m,
  .mgp-align-left\@l {
    margin-right: 40px;
  }

  .mgp-align-right,
  .mgp-align-right\@s,
  .mgp-align-right\@m,
  .mgp-align-right\@l {
    margin-left: 40px;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .mgp-align-left\@xl {
    margin-top: 0;
    margin-right: 40px;
    float: left;
  }

  .mgp-align-right\@xl {
    margin-top: 0;
    margin-left: 40px;
    float: right;
  }
}

/* ========================================================================
   Component: SVG
 ========================================================================== */
/*
 * 1. Fill all SVG elements with the current text color if no `fill` attribute is set
 * 2. Set the fill and stroke color of all SVG elements to the current text color
 * 3. Fix for uppercase attribute names in Edge. Will be fixed in Windows 10 builds 16251+
 */
/* 1 */
.mgp-svg,
.mgp-svg:not(.mgp-preserve) [fill*='#']:not(.mgp-preserve),
.mgp-svg:not(.mgp-preserve) [FILL*='#']:not(.mgp-preserve) {
  fill: currentcolor;
}

.mgp-svg:not(.mgp-preserve) [stroke*='#']:not(.mgp-preserve),
.mgp-svg:not(.mgp-preserve) [STROKE*='#']:not(.mgp-preserve) {
  stroke: currentcolor;
}

/*
 * Fix Firefox blurry SVG rendering: https://bugzilla.mozilla.org/show_bug.cgi?id=1046835
 */
.mgp-svg {
  transform: translate(0, 0);
}

/* ========================================================================
   Component: Utility
 ========================================================================== */
/* Panel
 ========================================================================== */
.mgp-panel {
  position: relative;
  box-sizing: border-box;
}

/*
 * Micro clearfix
 */
.mgp-panel::before,
.mgp-panel::after {
  content: "";
  display: table;
}

.mgp-panel::after {
  clear: both;
}

/*
 * Remove margin from the last-child
 */
.mgp-panel > :last-child {
  margin-bottom: 0;
}

/*
 * Scrollable
 */
.mgp-panel-scrollable {
  height: 170px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  resize: both;
}

/* Clearfix
 ========================================================================== */
/*
 * 1. `table-cell` is used with `::before` because `table` creates a 1px gap when it becomes a flex item, only in Webkit
 * 2. `table` is used again with `::after` because `clear` only works with block elements.
 * Note: `display: block` with `overflow: hidden` is currently not working in the latest Safari
 */
/* 1 */
.mgp-clearfix::before {
  content: "";
  display: table-cell;
}

/* 2 */
.mgp-clearfix::after {
  content: "";
  display: table;
  clear: both;
}

/* Float
 ========================================================================== */
/*
 * 1. Prevent content overflow
 */
.mgp-float-left {
  float: left;
}

.mgp-float-right {
  float: right;
}

/* 1 */
[class*='mgp-float-'] {
  max-width: 100%;
}

/* Overfow
 ========================================================================== */
.mgp-overflow-hidden {
  overflow: hidden;
}

/*
 * Enable scrollbars if content is clipped
 * Note: Firefox ignores `padding-bottom` for the scrollable overflow https://bugzilla.mozilla.org/show_bug.cgi?id=748518
 */
.mgp-overflow-auto {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.mgp-overflow-auto > :last-child {
  margin-bottom: 0;
}

/* Resize
 ========================================================================== */
.mgp-resize {
  resize: both;
}

.mgp-resize-vertical {
  resize: vertical;
}

/* Display
 ========================================================================== */
.mgp-display-block {
  display: block !important;
}

.mgp-display-inline {
  display: inline !important;
}

.mgp-display-inline-block {
  display: inline-block !important;
}

/* Inline
 ========================================================================== */
/*
 * 1. Container fits its content
 * 2. Create position context
 * 3. Prevent content overflow
 * 4. Behave like most inline-block elements
 * 5. Force hardware acceleration without creating a new stacking context
 *    to fix 1px glitch when combined with overlays and transitions in Webkit
 * 6. Clip child elements
 */
[class*='mgp-inline'] {
  /* 1 */
  display: inline-block;
  /* 2 */
  position: relative;
  /* 3 */
  max-width: 100%;
  /* 4 */
  vertical-align: middle;
  /* 5 */
  -webkit-backface-visibility: hidden;
}

.mgp-inline-clip {
  /* 6 */
  overflow: hidden;
}

/* Responsive objects
 ========================================================================== */
/*
 * Preserve original dimensions
 * Because `img, `video`, `canvas` and  `audio` are already responsive by default, see Base component
 */
.mgp-preserve-width,
.mgp-preserve-width audio,
.mgp-preserve-width canvas,
.mgp-preserve-width img,
.mgp-preserve-width svg,
.mgp-preserve-width video {
  max-width: none;
}

/*
 * Responsiveness
 * Corrects `max-width` and `max-height` behavior if padding and border are used
 */
.mgp-responsive-width,
.mgp-responsive-height {
  box-sizing: border-box;
}

/*
 * 1. Set a maximum width. `important` needed to override `mgp-preserve-width img`
 * 2. Auto scale the height. Only needed if `height` attribute is present
 */
.mgp-responsive-width {
  /* 1 */
  max-width: 100% !important;
  /* 2 */
  height: auto;
}

/*
 * 1. Set a maximum height. Only works if the parent element has a fixed height
 * 2. Auto scale the width. Only needed if `width` attribute is present
 * 3. Reset max-width, which `img, `video`, `canvas` and  `audio` already have by default
 */
.mgp-responsive-height {
  /* 1 */
  max-height: 100%;
  /* 2 */
  width: auto;
  /* 3 */
  max-width: none;
}

/* Border
 ========================================================================== */
.mgp-border-circle {
  border-radius: 50%;
}

.mgp-border-rounded {
  border-radius: 5px;
}

/*
 * Fix `overflow: hidden` to be ignored with border-radius and CSS transforms in Webkit
 */
.mgp-inline-clip[class*='mgp-border-'] {
  -webkit-transform: translateZ(0);
}

/* Box-shadow
 ========================================================================== */
.mgp-box-shadow-small {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mgp-box-shadow-medium {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.mgp-box-shadow-large {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}

.mgp-box-shadow-xlarge {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}

/*
 * Hover
 */
[class*='mgp-box-shadow-hover'] {
  transition: box-shadow 0.1s ease-in-out;
}

.mgp-box-shadow-hover-small:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.mgp-box-shadow-hover-medium:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.mgp-box-shadow-hover-large:hover {
  box-shadow: 0 14px 25px rgba(0, 0, 0, 0.16);
}

.mgp-box-shadow-hover-xlarge:hover {
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.16);
}

/* Box-shadow bottom
 ========================================================================== */
/*
 * 1. Set position.
 * 2. Set style
 * 3. Blur doesn't work on pseudo elements with negative `z-index` in Edge.
 *    Solved by using `before` and add position context to child elements.
 */
@supports (filter: blur(0)) {
  .mgp-box-shadow-bottom {
    display: inline-block;
    position: relative;
    max-width: 100%;
    vertical-align: middle;
  }

  .mgp-box-shadow-bottom::before {
    content: '';
    /* 1 */
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0;
    /* 2 */
    height: 30px;
    border-radius: 100%;
    background: #444;
    filter: blur(20px);
  }

  /* 3 */
  .mgp-box-shadow-bottom > * {
    position: relative;
  }
}

/* Drop cap
 ========================================================================== */
/*
 * 1. Firefox doesn't apply `::first-letter` if the first letter is inside child elements
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=214004
 * 2. In Firefox, a floating `::first-letter` doesn't have a line box and there for no `line-height`
 *    https://bugzilla.mozilla.org/show_bug.cgi?id=317933
 * 3. Caused by 1.: Edge creates two nested `::first-letter` containers, one for each selector
 *    This doubles the `font-size` exponential when using the `em` unit.
 */
.mgp-dropcap::first-letter,
.mgp-dropcap > p:first-of-type::first-letter {
  display: block;
  margin-right: 10px;
  float: left;
  font-size: 4.5em;
  line-height: 1;
}

/* 2 */
@-moz-document url-prefix() {
  .mgp-dropcap::first-letter,
  .mgp-dropcap > p:first-of-type::first-letter {
    margin-top: 1.1%;
  }
}

/* 3 */
@supports (-ms-ime-align: auto) {
  .mgp-dropcap > p:first-of-type::first-letter {
    font-size: 1em;
  }
}

/* Logo
 ========================================================================== */
/*
 * 1. Required for `a`
 */
.mgp-logo {
  font-size: 1.5rem;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #666;
  /* 1 */
  text-decoration: none;
}

/* Hover + Focus */
.mgp-logo:hover,
.mgp-logo:focus {
  color: #666;
  outline: none;
  /* 1 */
  text-decoration: none;
}

.mgp-logo-inverse {
  display: none;
}

/* Disabled State
 ========================================================================== */
.mgp-disabled {
  pointer-events: none;
}

/* Drag State
 ========================================================================== */
/*
 * 1. Needed if moving over elements with have their own cursor on hover, e.g. links or buttons
 * 2. Fix dragging over iframes
 */
.mgp-drag,
.mgp-drag * {
  cursor: move;
}

/* 2 */
.mgp-drag iframe {
  pointer-events: none;
}

/* Dragover State
 ========================================================================== */
/*
 * Create a box-shadow when dragging a file over the upload area
 */
.mgp-dragover {
  box-shadow: 0 0 20px rgba(100, 100, 100, 0.3);
}

/* Blend modes
 ========================================================================== */
.mgp-blend-multiply {
  mix-blend-mode: multiply;
}

.mgp-blend-screen {
  mix-blend-mode: screen;
}

.mgp-blend-overlay {
  mix-blend-mode: overlay;
}

.mgp-blend-darken {
  mix-blend-mode: darken;
}

.mgp-blend-lighten {
  mix-blend-mode: lighten;
}

.mgp-blend-color-dodge {
  mix-blend-mode: color-dodge;
}

.mgp-blend-color-burn {
  mix-blend-mode: color-burn;
}

.mgp-blend-hard-light {
  mix-blend-mode: hard-light;
}

.mgp-blend-soft-light {
  mix-blend-mode: soft-light;
}

.mgp-blend-difference {
  mix-blend-mode: difference;
}

.mgp-blend-exclusion {
  mix-blend-mode: exclusion;
}

.mgp-blend-hue {
  mix-blend-mode: hue;
}

.mgp-blend-saturation {
  mix-blend-mode: saturation;
}

.mgp-blend-color {
  mix-blend-mode: color;
}

.mgp-blend-luminosity {
  mix-blend-mode: luminosity;
}

/* Transform
========================================================================== */
.mgp-transform-center {
  transform: translate(-50%, -50%);
}

/* Transform Origin
========================================================================== */
.mgp-transform-origin-top-left {
  transform-origin: 0 0;
}

.mgp-transform-origin-top-center {
  transform-origin: 50% 0;
}

.mgp-transform-origin-top-right {
  transform-origin: 100% 0;
}

.mgp-transform-origin-center-left {
  transform-origin: 0 50%;
}

.mgp-transform-origin-center-right {
  transform-origin: 100% 50%;
}

.mgp-transform-origin-bottom-left {
  transform-origin: 0 100%;
}

.mgp-transform-origin-bottom-center {
  transform-origin: 50% 100%;
}

.mgp-transform-origin-bottom-right {
  transform-origin: 100% 100%;
}

/* ========================================================================
   Component: Flex
 ========================================================================== */
.mgp-flex {
  display: flex;
}

.mgp-flex-inline {
  display: inline-flex;
}

/*
 * Remove pseudo elements created by micro clearfix as precaution
 */
.mgp-flex::before,
.mgp-flex::after,
.mgp-flex-inline::before,
.mgp-flex-inline::after {
  display: none;
}

/* Alignment
 ========================================================================== */
/*
 * Align items along the main axis of the current line of the flex container
 * Row: Horizontal
 */
.mgp-flex-left {
  justify-content: flex-start;
}

.mgp-flex-center {
  justify-content: center;
}

.mgp-flex-right {
  justify-content: flex-end;
}

.mgp-flex-between {
  justify-content: space-between;
}

.mgp-flex-around {
  justify-content: space-around;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-flex-left\@s {
    justify-content: flex-start;
  }

  .mgp-flex-center\@s {
    justify-content: center;
  }

  .mgp-flex-right\@s {
    justify-content: flex-end;
  }

  .mgp-flex-between\@s {
    justify-content: space-between;
  }

  .mgp-flex-around\@s {
    justify-content: space-around;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-flex-left\@m {
    justify-content: flex-start;
  }

  .mgp-flex-center\@m {
    justify-content: center;
  }

  .mgp-flex-right\@m {
    justify-content: flex-end;
  }

  .mgp-flex-between\@m {
    justify-content: space-between;
  }

  .mgp-flex-around\@m {
    justify-content: space-around;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-flex-left\@l {
    justify-content: flex-start;
  }

  .mgp-flex-center\@l {
    justify-content: center;
  }

  .mgp-flex-right\@l {
    justify-content: flex-end;
  }

  .mgp-flex-between\@l {
    justify-content: space-between;
  }

  .mgp-flex-around\@l {
    justify-content: space-around;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .mgp-flex-left\@xl {
    justify-content: flex-start;
  }

  .mgp-flex-center\@xl {
    justify-content: center;
  }

  .mgp-flex-right\@xl {
    justify-content: flex-end;
  }

  .mgp-flex-between\@xl {
    justify-content: space-between;
  }

  .mgp-flex-around\@xl {
    justify-content: space-around;
  }
}

/*
 * Align items in the cross axis of the current line of the flex container
 * Row: Vertical
 */
.mgp-flex-stretch {
  align-items: stretch;
}

.mgp-flex-top {
  align-items: flex-start;
}

.mgp-flex-middle {
  align-items: center;
}

.mgp-flex-bottom {
  align-items: flex-end;
}

/* Direction
 ========================================================================== */
.mgp-flex-row {
  flex-direction: row;
}

.mgp-flex-row-reverse {
  flex-direction: row-reverse;
}

.mgp-flex-column {
  flex-direction: column;
}

.mgp-flex-column-reverse {
  flex-direction: column-reverse;
}

/* Wrap
 ========================================================================== */
.mgp-flex-nowrap {
  flex-wrap: nowrap;
}

.mgp-flex-wrap {
  flex-wrap: wrap;
}

.mgp-flex-wrap-reverse {
  flex-wrap: wrap-reverse;
}

/*
 * Aligns items within the flex container when there is extra space in the cross-axis
 * Only works if there is more than one line of flex items
 */
.mgp-flex-wrap-stretch {
  align-content: stretch;
}

.mgp-flex-wrap-top {
  align-content: flex-start;
}

.mgp-flex-wrap-middle {
  align-content: center;
}

.mgp-flex-wrap-bottom {
  align-content: flex-end;
}

.mgp-flex-wrap-between {
  align-content: space-between;
}

.mgp-flex-wrap-around {
  align-content: space-around;
}

/* Item ordering
 ========================================================================== */
/*
 * Default is 0
 */
.mgp-flex-first {
  order: -1;
}

.mgp-flex-last {
  order: 99;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-flex-first\@s {
    order: -1;
  }

  .mgp-flex-last\@s {
    order: 99;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-flex-first\@m {
    order: -1;
  }

  .mgp-flex-last\@m {
    order: 99;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-flex-first\@l {
    order: -1;
  }

  .mgp-flex-last\@l {
    order: 99;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .mgp-flex-first\@xl {
    order: -1;
  }

  .mgp-flex-last\@xl {
    order: 99;
  }
}

/* Item dimensions
 ========================================================================== */
/*
 * Initial: 0 1 auto
 * Content dimensions, but shrinks
 */
/*
 * No Flex: 0 0 auto
 * Content dimensions
 */
.mgp-flex-none {
  flex: none;
}

/*
 * Relative Flex: 1 1 auto
 * Space is allocated considering content
 */
.mgp-flex-auto {
  flex: auto;
}

/*
 * Absolute Flex: 1 1 0%
 * Space is allocated solely based on flex
 */
.mgp-flex-1 {
  flex: 1;
}

/* ========================================================================
   Component: Margin
 ========================================================================== */
/*
 * Default
 */
.mgp-margin {
  margin-bottom: 20px;
}

* + .mgp-margin {
  margin-top: 20px !important;
}

.mgp-margin-top {
  margin-top: 20px !important;
}

.mgp-margin-bottom {
  margin-bottom: 20px !important;
}

.mgp-margin-left {
  margin-left: 20px !important;
}

.mgp-margin-right {
  margin-right: 20px !important;
}

/* Small
 ========================================================================== */
.mgp-margin-small {
  margin-bottom: 10px;
}

* + .mgp-margin-small {
  margin-top: 10px !important;
}

.mgp-margin-small-top {
  margin-top: 10px !important;
}

.mgp-margin-small-bottom {
  margin-bottom: 10px !important;
}

.mgp-margin-small-left {
  margin-left: 10px !important;
}

.mgp-margin-small-right {
  margin-right: 10px !important;
}

/* Medium
 ========================================================================== */
.mgp-margin-medium {
  margin-bottom: 40px;
}

* + .mgp-margin-medium {
  margin-top: 40px !important;
}

.mgp-margin-medium-top {
  margin-top: 40px !important;
}

.mgp-margin-medium-bottom {
  margin-bottom: 40px !important;
}

.mgp-margin-medium-left {
  margin-left: 40px !important;
}

.mgp-margin-medium-right {
  margin-right: 40px !important;
}

/* Large
 ========================================================================== */
.mgp-margin-large {
  margin-bottom: 40px;
}

* + .mgp-margin-large {
  margin-top: 40px !important;
}

.mgp-margin-large-top {
  margin-top: 40px !important;
}

.mgp-margin-large-bottom {
  margin-bottom: 40px !important;
}

.mgp-margin-large-left {
  margin-left: 40px !important;
}

.mgp-margin-large-right {
  margin-right: 40px !important;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-margin-large {
    margin-bottom: 70px;
  }

  * + .mgp-margin-large {
    margin-top: 70px !important;
  }

  .mgp-margin-large-top {
    margin-top: 70px !important;
  }

  .mgp-margin-large-bottom {
    margin-bottom: 70px !important;
  }

  .mgp-margin-large-left {
    margin-left: 70px !important;
  }

  .mgp-margin-large-right {
    margin-right: 70px !important;
  }
}

/* XLarge
 ========================================================================== */
.mgp-margin-xlarge {
  margin-bottom: 70px;
}

* + .mgp-margin-xlarge {
  margin-top: 70px !important;
}

.mgp-margin-xlarge-top {
  margin-top: 70px !important;
}

.mgp-margin-xlarge-bottom {
  margin-bottom: 70px !important;
}

.mgp-margin-xlarge-left {
  margin-left: 70px !important;
}

.mgp-margin-xlarge-right {
  margin-right: 70px !important;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-margin-xlarge {
    margin-bottom: 140px;
  }

  * + .mgp-margin-xlarge {
    margin-top: 140px !important;
  }

  .mgp-margin-xlarge-top {
    margin-top: 140px !important;
  }

  .mgp-margin-xlarge-bottom {
    margin-bottom: 140px !important;
  }

  .mgp-margin-xlarge-left {
    margin-left: 140px !important;
  }

  .mgp-margin-xlarge-right {
    margin-right: 140px !important;
  }
}

/* Remove
 ========================================================================== */
.mgp-margin-remove {
  margin: 0 !important;
}

.mgp-margin-remove-top {
  margin-top: 0 !important;
}

.mgp-margin-remove-bottom {
  margin-bottom: 0 !important;
}

.mgp-margin-remove-left {
  margin-left: 0 !important;
}

.mgp-margin-remove-right {
  margin-right: 0 !important;
}

.mgp-margin-remove-vertical {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mgp-margin-remove-adjacent + * {
  margin-top: 0 !important;
}

/* Auto
 ========================================================================== */
.mgp-margin-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.mgp-margin-auto-top {
  margin-top: auto !important;
}

.mgp-margin-auto-bottom {
  margin-bottom: auto !important;
}

.mgp-margin-auto-left {
  margin-left: auto !important;
}

.mgp-margin-auto-right {
  margin-right: auto !important;
}

.mgp-margin-auto-vertical {
  margin-top: auto !important;
  margin-bottom: auto !important;
}

/* ========================================================================
   Component: Padding
 ========================================================================== */
.mgp-padding {
  padding: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-padding {
    padding: 40px;
  }
}

/* Small
 ========================================================================== */
.mgp-padding-small {
  padding: 15px;
}

/* Large
 ========================================================================== */
.mgp-padding-large {
  padding: 30px;
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-padding-large {
    padding: 70px;
  }
}

/* Remove
 ========================================================================== */
.mgp-padding-remove {
  padding: 0 !important;
}

.mgp-padding-remove-top {
  padding-top: 0 !important;
}

.mgp-padding-remove-bottom {
  padding-bottom: 0 !important;
}

.mgp-padding-remove-left {
  padding-left: 0 !important;
}

.mgp-padding-remove-right {
  padding-right: 0 !important;
}

.mgp-padding-remove-vertical {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.mgp-padding-remove-horizontal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ========================================================================
   Component: Position
 ========================================================================== */
/* Directions
 ========================================================================== */
[class*='mgp-position-top'],
[class*='mgp-position-bottom'],
[class*='mgp-position-left'],
[class*='mgp-position-right'],
[class*='mgp-position-center'] {
  position: absolute !important;
}

/* Edges
 ========================================================================== */
/* Don't use `width: 100%` because it is wrong if the parent has padding. */
.mgp-position-top {
  top: 0;
  left: 0;
  right: 0;
}

.mgp-position-bottom {
  bottom: 0;
  left: 0;
  right: 0;
}

.mgp-position-left {
  top: 0;
  bottom: 0;
  left: 0;
}

.mgp-position-right {
  top: 0;
  bottom: 0;
  right: 0;
}

/* Corners
 ========================================================================== */
.mgp-position-top-left {
  top: 0;
  left: 0;
}

.mgp-position-top-right {
  top: 0;
  right: 0;
}

.mgp-position-bottom-left {
  bottom: 0;
  left: 0;
}

.mgp-position-bottom-right {
  bottom: 0;
  right: 0;
}

/*
 * Center
 * 1. Fix text wrapping if content is larger than 50% of the container (Not working in Firefox)
 * 2. Fix text wrapping for Firefox
 */
.mgp-position-center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* 1 */
  display: table;
  /* 2 */
  width: -moz-max-content;
  max-width: 100%;
  box-sizing: border-box;
}

/* Vertical */
[class*='mgp-position-center-left'],
[class*='mgp-position-center-right'] {
  top: 50%;
  transform: translateY(-50%);
}

.mgp-position-center-left {
  left: 0;
}

.mgp-position-center-right {
  right: 0;
}

.mgp-position-center-left-out {
  right: 100%;
  width: max-content;
}

.mgp-position-center-right-out {
  left: 100%;
  width: max-content;
}

/* Horizontal */
.mgp-position-top-center,
.mgp-position-bottom-center {
  left: 50%;
  transform: translateX(-50%);
  /* 1 */
  display: table;
  /* 2 */
  width: -moz-max-content;
  max-width: 100%;
  box-sizing: border-box;
}

.mgp-position-top-center {
  top: 0;
}

.mgp-position-bottom-center {
  bottom: 0;
}

/* Cover
 ========================================================================== */
.mgp-position-cover {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Utility
 ========================================================================== */
.mgp-position-relative {
  position: relative !important;
}

.mgp-position-absolute {
  position: absolute !important;
}

.mgp-position-fixed {
  position: fixed !important;
}

.mgp-position-z-index {
  z-index: 1;
}

/* Margin modifier
 ========================================================================== */
/*
 * Small
 */
.mgp-position-small {
  margin: 15px;
}

.mgp-position-small.mgp-position-center {
  transform: translate(-50%, -50%) translate(-15px, -15px);
}

.mgp-position-small[class*='mgp-position-center-left'],
.mgp-position-small[class*='mgp-position-center-right'] {
  transform: translateY(-50%) translateY(-15px);
}

.mgp-position-small.mgp-position-top-center,
.mgp-position-small.mgp-position-bottom-center {
  transform: translateX(-50%) translateX(-15px);
}

/*
 * Medium
 */
.mgp-position-medium {
  margin: 30px;
}

.mgp-position-medium.mgp-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}

.mgp-position-medium[class*='mgp-position-center-left'],
.mgp-position-medium[class*='mgp-position-center-right'] {
  transform: translateY(-50%) translateY(-30px);
}

.mgp-position-medium.mgp-position-top-center,
.mgp-position-medium.mgp-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}

/*
 * Large
 */
.mgp-position-large {
  margin: 30px;
}

.mgp-position-large.mgp-position-center {
  transform: translate(-50%, -50%) translate(-30px, -30px);
}

.mgp-position-large[class*='mgp-position-center-left'],
.mgp-position-large[class*='mgp-position-center-right'] {
  transform: translateY(-50%) translateY(-30px);
}

.mgp-position-large.mgp-position-top-center,
.mgp-position-large.mgp-position-bottom-center {
  transform: translateX(-50%) translateX(-30px);
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-position-large {
    margin: 50px;
  }

  .mgp-position-large.mgp-position-center {
    transform: translate(-50%, -50%) translate(-50px, -50px);
  }

  .mgp-position-large[class*='mgp-position-center-left'],
  .mgp-position-large[class*='mgp-position-center-right'] {
    transform: translateY(-50%) translateY(-50px);
  }

  .mgp-position-large.mgp-position-top-center,
  .mgp-position-large.mgp-position-bottom-center {
    transform: translateX(-50%) translateX(-50px);
  }
}

/* ========================================================================
   Component: Transition
 ========================================================================== */
/*
 * Using multiple selectors to exclude `mgp-transition-toggle`
 * Note: Transitions don't work with `mgp-postion-center-*` classes because they also use `transform`
 *       Just put the transition in an extra `div`
 */
.mgp-transition-fade,
[class*='mgp-transition-scale'],
[class*='mgp-transition-slide'] {
  transition: 0.3s ease-out;
  transition-property: opacity, transform, filter;
}

.mgp-transition-toggle:focus {
  outline: none;
}

/*
 * Fade
 */
.mgp-transition-fade {
  opacity: 0;
}

/* Show */
.mgp-transition-toggle:hover [class*='mgp-transition-fade'],
.mgp-transition-toggle.mgp-hover [class*='mgp-transition-fade'],
.mgp-transition-toggle:focus [class*='mgp-transition-fade'],
.mgp-transition-active.mgp-active [class*='mgp-transition-fade'] {
  opacity: 1;
}

/*
 * Scale
 * Note: Using `scale3d` for better image rendering
 */
[class*='mgp-transition-scale'] {
  opacity: 0;
}

.mgp-transition-scale-up {
  transform: scale3d(1, 1, 1);
}

.mgp-transition-scale-down {
  transform: scale3d(1.1, 1.1, 1);
}

/* Show */
.mgp-transition-toggle:hover .mgp-transition-scale-up,
.mgp-transition-toggle.mgp-hover .mgp-transition-scale-up,
.mgp-transition-toggle:focus .mgp-transition-scale-up,
.mgp-transition-active.mgp-active .mgp-transition-scale-up {
  opacity: 1;
  transform: scale3d(1.1, 1.1, 1);
}

.mgp-transition-toggle:hover .mgp-transition-scale-down,
.mgp-transition-toggle.mgp-hover .mgp-transition-scale-down,
.mgp-transition-toggle:focus .mgp-transition-scale-down,
.mgp-transition-active.mgp-active .mgp-transition-scale-down {
  opacity: 1;
  transform: scale3d(1, 1, 1);
}

/*
 * Slide
 */
[class*='mgp-transition-slide'] {
  opacity: 0;
}

.mgp-transition-slide-top {
  transform: translateY(-100%);
}

.mgp-transition-slide-bottom {
  transform: translateY(100%);
}

.mgp-transition-slide-left {
  transform: translateX(-100%);
}

.mgp-transition-slide-right {
  transform: translateX(100%);
}

.mgp-transition-slide-top-small {
  transform: translateY(-10px);
}

.mgp-transition-slide-bottom-small {
  transform: translateY(10px);
}

.mgp-transition-slide-left-small {
  transform: translateX(-10px);
}

.mgp-transition-slide-right-small {
  transform: translateX(10px);
}

.mgp-transition-slide-top-medium {
  transform: translateY(-50px);
}

.mgp-transition-slide-bottom-medium {
  transform: translateY(50px);
}

.mgp-transition-slide-left-medium {
  transform: translateX(-50px);
}

.mgp-transition-slide-right-medium {
  transform: translateX(50px);
}

/* Show */
.mgp-transition-toggle:hover [class*='mgp-transition-slide'],
.mgp-transition-toggle.mgp-hover [class*='mgp-transition-slide'],
.mgp-transition-toggle:focus [class*='mgp-transition-slide'],
.mgp-transition-active.mgp-active [class*='mgp-transition-slide'] {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Opacity modifier
========================================================================== */
.mgp-transition-opaque {
  opacity: 1;
}

/* Duration modifiers
========================================================================== */
.mgp-transition-slow {
  transition-duration: 0.7s;
}

/* ========================================================================
   Component: Visibility
 ========================================================================== */
/*
 * Hidden
 * `hidden` attribute also set here to make it stronger
 */
[hidden],
.mgp-hidden {
  display: none !important;
}

/* Phone landscape and bigger */
@media (min-width: 640px) {
  .mgp-hidden\@s {
    display: none !important;
  }
}

/* Tablet landscape and bigger */
@media (min-width: 960px) {
  .mgp-hidden\@m {
    display: none !important;
  }
}

/* Desktop and bigger */
@media (min-width: 1200px) {
  .mgp-hidden\@l {
    display: none !important;
  }
}

/* Large screen and bigger */
@media (min-width: 1600px) {
  .mgp-hidden\@xl {
    display: none !important;
  }
}

/*
 * Visible
 */
/* Phone portrait and smaller */
@media (max-width: 639px) {
  .mgp-visible\@s {
    display: none !important;
  }
}

/* Phone landscape and smaller */
@media (max-width: 959px) {
  .mgp-visible\@m {
    display: none !important;
  }
}

/* Tablet landscape and smaller */
@media (max-width: 1199px) {
  .mgp-visible\@l {
    display: none !important;
  }
}

/* Desktop and smaller */
@media (max-width: 1599px) {
  .mgp-visible\@xl {
    display: none !important;
  }
}

/* Visibility
 ========================================================================== */
.mgp-invisible {
  visibility: hidden !important;
}

/* Hover
 ========================================================================== */
/*
 * Hidden
 * Can't use `display: hidden` because it's not focusable. This is accessible through keyboard.
 */
.mgp-visible-toggle:not(:hover):not(.mgp-hover) .mgp-hidden-hover:not(:focus) {
  position: absolute !important;
  width: 0 !important;
  height: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

/*
 * Invisible
 * Can't use `visibility: hidden` because it's not focusable. This is accessible through keyboard.
 */
.mgp-visible-toggle:not(:hover):not(.mgp-hover) .mgp-invisible-hover:not(:focus) {
  opacity: 0 !important;
}

/* Touch
 ========================================================================== */
/*
 * Hide if primary pointing device has limited accuracy, e.g. a touch screen.
 * Works on mobile browsers: Safari, Chrome and Android browser
 */
@media (pointer: coarse) {
  .mgp-hidden-touch {
    display: none !important;
  }
}

/*
 * Hide if primary pointing device is accurate, e.g. mouse.
 * 1. Fallback for IE11 and Firefox, because `pointer` is not supported
 * 2. Reset if supported
 */
/* 1 */
.mgp-hidden-notouch {
  display: none !important;
}

@media (pointer: coarse) {
  .mgp-hidden-notouch {
    display: block !important;
  }
}

/* ========================================================================
   Component: Inverse
 ========================================================================== */
/*
 * Implemented class depends on the general theme color
 * `mgp-light` is for light colors on dark backgrounds
 * `mgp-dark` is or dark colors on light backgrounds
 */
/* ========================================================================
   Component: Print
 ========================================================================== */
@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: black !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  a,
  a:visited {
    text-decoration: underline;
  }

  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;
  }
}

.hook-modal-title {
  font-weight: 400;
}

.mgp-cover {
  max-width: none !important;
}

.mgp-drop .mgp-card p:empty {
  display: none;
}

.mgp-drop .mgp-card p:not(:first-child) {
  margin-top: 15px;
  margin-bottom: 0;
}

.elementor-align-justify .mgp-button {
  width: 100%;
}

.mgp-notification .mgp-spinner svg {
  width: 20px;
  height: auto;
}

.mgp-notification .mgp-icon {
  margin-right: 10px;
}

.mgp-notification .mgp-close {
  top: 25px;
}

.mgp-notification .mgp-notification-message {
  padding: 20px;
  background: #ffffff;
  font-size: 1.1rem;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.mgp-slideshow-items[mgp-height-viewport] .mgp-slideshow-item img {
  width: auto !important;
  height: auto;
}

.mgp-modal-full {
  background-color: #fff;
}

.mgp-particles canvas {
  display: block;
  vertical-align: bottom;
}

.mgp-particles .particles-js-canvas-el {
  position: absolute;
  top: 0;
  transform: scale(1);
  opacity: 1;
  animation: appear 1.4s 1;
  animation-fill-mode: forwards;
}

@-webkit-keyframes appear {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes appear {
  from {
    transform: scale(0);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

.elementor-control.elementor-control-type-heading {
  margin-top: -1px;
}

.elementor-lightbox .dialog-close-button .eicon-close {
  transition: transform 0.3s;
}

.elementor-lightbox .dialog-close-button:hover .eicon-close {
  transform: rotate(90deg);
}

.elementor-lightbox .elementor-swiper-button-next .eicon-chevron-right,
.elementor-lightbox .elementor-swiper-button-prev .eicon-chevron-left {
  transition: transform 0.3s;
}

.elementor-lightbox .elementor-swiper-button-prev:hover .eicon-chevron-left {
  transform: scale(1.2);
}

.elementor-lightbox .elementor-swiper-button-next:hover .eicon-chevron-right {
  transform: scale(1.2);
}

.mgp-dots-container .swiper-pagination,
.mgp-arrows-dots-container .swiper-pagination {
  position: relative;
}

.mgp-dots-container .swiper-pagination .swiper-pagination-bullet,
.mgp-arrows-dots-container .swiper-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
}

.mgp-dots-container .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet,
.mgp-arrows-dots-container .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 5px;
}

.mgp-dots-container .swiper-pagination.swiper-pagination-fraction,
.mgp-arrows-dots-container .swiper-pagination.swiper-pagination-fraction {
  bottom: auto;
}

[class*='mgp-arrows-align-top'] .mgp-arrows-container {
  transform: translateY(-40px);
}

[class*='mgp-arrows-align-bottom'] .mgp-arrows-container {
  transform: translateY(40px);
}

[class*='mgp-dots-align-top'] .mgp-dots-container {
  transform: translateY(-30px);
}

[class*='mgp-dots-align-bottom'] .mgp-dots-container {
  transform: translateY(30px);
}

[class*='mgp-arrows-dots-align-top'] .mgp-arrows-dots-container {
  transform: translateY(-40px);
}

[class*='mgp-arrows-dots-align-bottom'] .mgp-arrows-dots-container {
  transform: translateY(40px);
}

.mgp-arrows-align-center .mgp-position-center,
.mgp-arrows-dots-align-center .mgp-position-center {
  width: 100%;
}

.mgp-arrows-align-center .mgp-navigation-prev,
.mgp-arrows-dots-align-center .mgp-navigation-prev {
  left: 0;
  position: absolute;
  transform: translateY(-50%);
}

.mgp-arrows-align-center .mgp-navigation-next,
.mgp-arrows-dots-align-center .mgp-navigation-next {
  right: 0;
  position: absolute;
  transform: translateY(-50%);
}

.mgp-arrows-dots-align-center .mgp-dots-container .swiper-pagination,
.mgp-arrows-dots-align-center .mgp-arrows-dots-container .swiper-pagination {
  position: absolute;
  width: 100%;
}

.mgp-navigation-type-progress .swiper-pagination-progress {
  transform: translateY(15px);
  height: 5px;
  width: 100%;
}

.elementor-section.mgp-sticky {
  transition: background-color 250ms ease-out, padding 300ms ease-out;
}

.mgp-element-align-wrapper {
  flex-wrap: wrap;
  display: flex;
  position: relative;
}

.mgp-element-align-center .mgp-element-align-wrapper {
  justify-content: center;
}

.mgp-element-align-stretch .mgp-element-align-wrapper .mgp-element {
  flex-basis: 100%;
}

.mgp-element-align-start .mgp-element-align-wrapper {
  justify-content: flex-start;
}

.mgp-element-align-end .mgp-element-align-wrapper {
  justify-content: flex-end;
}

@media screen and (max-width: 1024px) {
  .mgp-element-align-tablet-center .mgp-element-align-wrapper {
    justify-content: center;
  }

  .mgp-element-align-tablet-stretch .mgp-element-align-wrapper .mgp-element {
    flex-basis: 100%;
  }

  .mgp-element-align-tablet-start .mgp-element-align-wrapper {
    justify-content: flex-start;
  }

  .mgp-element-align-tablet-end .mgp-element-align-wrapper {
    justify-content: flex-end;
  }
}

@media screen and (max-width: 767px) {
  .mgp-element-align-mobile-center .mgp-element-align-wrapper {
    justify-content: center;
  }

  .mgp-element-align-mobile-stretch .mgp-element-align-wrapper .mgp-element {
    flex-basis: 100%;
  }

  .mgp-element-align-mobile-start .mgp-element-align-wrapper {
    justify-content: flex-start;
  }

  .mgp-element-align-mobile-end .mgp-element-align-wrapper {
    justify-content: flex-end;
  }
}

.mgp-accordion-container .mgp-accordion {
  text-align: left;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-title {
  display: block;
  outline: none;
  font-size: 14px;
  cursor: pointer;
  font-weight: bold;
  line-height: 1;
  margin: 0;
  padding: 15px 20px;
  background: #f3f3f3;
  transition: all 300ms cubic-bezier(0, 0.49, 0.27, 0.99);
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-title .mgp-accordion-icon {
  display: inline-block;
  width: 1.5em;
  font-weight: 400;
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-title .mgp-accordion-icon.mgp-accordion-icon-right {
  float: right;
  text-align: right;
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-title .mgp-accordion-icon.mgp-accordion-icon-left {
  float: left;
  text-align: left;
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-item .mgp-accordion-icon-closed {
  display: block;
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-item .mgp-accordion-icon-opened {
  display: none;
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-item.mgp-open .mgp-accordion-icon-closed {
  display: none;
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-item.mgp-open .mgp-accordion-icon-opened {
  display: block;
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-content {
  padding: 15px 20px;
  margin-top: 0;
}

.mgp-accordion-container .mgp-accordion .mgp-accordion-content > * {
  margin: 0;
}

@media (max-width: 767px) {
  .mgp-accordion-container .mgp-accordion .mgp-accordion-title {
    padding: 12px 15px;
  }

  .mgp-accordion-container .mgp-accordion .mgp-accordion-title .mgp-accordion-icon {
    width: 1.2em;
  }

  .mgp-accordion-container .mgp-accordion .mgp-accordion-content {
    padding: 7px 15px;
  }
}

.mgp-business-hours .mgp-business-hours-inner .heading-time {
  text-align: right;
}

.mgp-callout.mgp-callout-button-align-left .mgp-width-auto\@m {
  -ms-flex-order: -1;
  -webkit-order: -1;
  order: -1;
}

.mgp-callout.mgp-callout-button-align-center {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.mgp-callout.mgp-callout-button-align-center .mgp-width-expand {
  width: auto;
  text-align: center;
  padding-left: 0;
}

.mgp-callout.mgp-callout-button-align-center .mgp-width-auto\@m {
  padding-left: 0;
  margin-top: 20px;
  text-align: center;
}

.mgp-callout .mgp-callout-title {
  font-size: 24px;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 0;
}

.mgp-callout .mgp-callout-description {
  margin-top: 10px;
}

.mgp-callout .mgp-callout-button {
  color: #fff;
  display: inline-block;
  box-sizing: border-box;
  padding: 15px 43px;
  font-size: 16px;
  background-color: #61ce70;
}

@media (max-width: 768px) {
  .mgp-callout.mgp-callout-button-align-right .mgp-width-auto\@m {
    margin-top: 20px;
  }
}

.mgp-heading a {
  color: inherit;
}

.mgp-heading a:hover {
  color: inherit;
}

.mgp-heading .mgp-pre-heading,
.mgp-heading .mgp-animated-heading,
.mgp-heading .mgp-post-heading {
  display: inline-block;
}

.mgp-heading span {
  display: inline-block;
}

.mgp-heading .typed-cursor {
  opacity: 1;
  font-weight: 100;
  -webkit-animation: typed-blink 0.7s infinite;
  -moz-animation: typed-blink 0.7s infinite;
  -ms-animation: typed-blink 0.7s infinite;
  -o-animation: typed-blink 0.7s infinite;
  animation: typed-blink 0.7s infinite;
}

@keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-moz-keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-ms-keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-o-keyframes typed-blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.mgp-advanced-heading .mgp-heading-tag {
  margin: 0;
  padding: 0;
}

.mgp-advanced-heading a {
  color: inherit;
}

.mgp-advanced-heading a:hover {
  color: inherit;
}

.mgp-advanced-heading .mgp-sub-heading,
.mgp-advanced-heading .mgp-main-heading {
  z-index: 1;
  position: relative;
}

.mgp-advanced-heading .mgp-sub-heading {
  display: inline-block;
  line-height: 1;
}

.mgp-advanced-heading .mgp-sub-heading .mgp-sub-heading-content {
  display: inline-block;
  vertical-align: middle;
}

.mgp-advanced-heading .mgp-sub-heading .line:after {
  content: "";
  background-color: #1e87f0;
  height: 2px;
  width: 40px;
  display: inline-block;
  vertical-align: middle;
}

.mgp-advanced-heading .mgp-advanced-heading-content {
  color: rgba(156, 156, 156, 0.12);
  z-index: 0;
  font-size: 60px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
  bottom: 0;
  width: 100%;
  transition: all 0.3s ease-out;
  position: absolute;
}

.mgp-advanced-heading .mgp-advanced-heading-content > div {
  display: inline-block;
}

.mgp-advanced-image-gallery {
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.mgp-advanced-image-gallery .mgp-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}

.mgp-advanced-image-gallery .mgp-gallery-item {
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  margin: 0;
  text-align: center;
  overflow: hidden;
}

.mgp-advanced-image-gallery .mgp-gallery-item .mgp-advanced-image-gallery-inner {
  position: relative;
}

.mgp-advanced-image-gallery .mgp-gallery-item .mgp-gallery-item-caption {
  margin: 0;
  margin-top: 15px;
  text-transform: uppercase;
  font-weight: 700;
}

.mgp-advanced-image-gallery .mgp-gallery-item .mgp-gallery-thumbnail {
  overflow: hidden;
}

.mgp-advanced-image-gallery .mgp-gallery-item .mgp-gallery-thumbnail img {
  width: 100%;
  object-fit: cover;
  vertical-align: top;
}

.mgp-advanced-image-gallery .mgp-gallery-item-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.mgp-advanced-image-gallery .mgp-gallery-item-link:hover {
  background-color: transparent;
}

.mgp-advanced-image-gallery .mgp-gallery-item-link:hover span {
  color: rgba(0, 0, 0, 0.5);
}

.mgp-advanced-image-gallery .mgp-gallery-item-link.icon-type-icon .mgp-icon {
  transition: transform 0.3s cubic-bezier(0, 0.36, 0.38, 1.01);
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0, 0.36, 0.38, 1.01);
}

.mgp-advanced-image-gallery .mgp-gallery-item-link.icon-type-icon:hover .mgp-icon {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

.mgp-advanced-image-gallery .mgp-gallery-item-link.icon-type-text {
  border: 2px solid #444;
}

.mgp-advanced-image-gallery .mgp-gallery-item-link span.mgp-text {
  padding: 0 15px;
  color: #444;
  font-size: 12px;
  font-weight: 700;
}

.mgp-advanced-image-gallery .mgp-advanced-image-gallery-inner {
  position: relative;
  overflow: hidden;
}

.mgp-hidden-gallery-button {
  transition: all 0.5s;
  display: inline-block;
}

@media (max-width: 767px) {
  .elementor-widget-mgp-advanced-image-gallery .elementor-widget-container {
    overflow: hidden;
  }
}

body .booked-calendar-wrap .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-people {
  height: auto;
  padding-top: 26px;
}

body .booked-calendar-wrap .booked-appt-list .timeslot.timeslot-count-hidden .timeslot-time {
  height: auto;
}

body .booked-calendar-wrap .booked-appt-list .timeslot .spots-available {
  padding-bottom: 13px;
}

body .booked-list-view.small .booked-list-view-nav .booked-list-view-date-next {
  margin: 0 1px 5px;
  left: 0;
  right: auto;
}

body .booked-list-view.small .booked-list-view-nav .booked-list-view-date-prev {
  margin: 0 1px 5px;
  right: 0;
  left: auto;
}

.mgp-carousel .mgp-carousel-item .mgp-carousel-title a {
  color: #213640;
}

.mgp-carousel .mgp-carousel-item .mgp-carousel-title a:hover {
  color: #222;
}

.mgp-carousel .mgp-carousel-item .mgp-carousel-thumbnail {
  position: relative;
  overflow: hidden;
}

.mgp-carousel .mgp-carousel-item .mgp-carousel-thumbnail img {
  display: block;
  width: 100%;
  max-height: none;
  max-width: none;
}

.mgp-carousel .mgp-carousel-item .mgp-carousel-meta li.mgp-margin-small-top {
  margin-top: 5px !important;
}

.mgp-carousel .mgp-carousel-item .mgp-carousel-meta li > * > * {
  color: inherit;
}

.mgp-custom-carousel .swiper-container .swiper-slide {
  height: 220px;
}

.mgp-custom-carousel .swiper-container-coverflow {
  padding-top: 15px;
}

.mgp-custom-carousel .swiper-container-coverflow .swiper-slide {
  -webkit-transition-property: transform, border, background;
  transition-property: transform, border, background;
}

.mgp-custom-carousel .mgp-custom-carousel-item .mgp-custom-carousel-thumbnail {
  background: no-repeat 50%;
  -webkit-background-size: cover;
  background-size: cover;
  height: 100%;
  position: relative;
}

.mgp-custom-carousel .mgp-custom-carousel-item .mgp-custom-carousel-thumbnail img {
  display: block;
  width: 100%;
  max-height: none;
  max-width: none;
}

.mgp-custom-carousel .mgp-custom-carousel-item .mgp-overlay svg {
  width: 40px;
  height: auto;
}

.mgp-custom-carousel .swiper-container-horizontal > .swiper-pagination-progress {
  top: auto;
  bottom: 0;
}

.mgp-custom-carousel .mgp-custom-carousel-thumbnail {
  background: no-repeat center;
  -webkit-background-size: cover;
  background-size: cover;
  height: 100%;
  position: relative;
}

.mgp-custom-carousel .mgp-custom-carousel-thumbnail-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  height: 100%;
  padding: 20px;
  color: #fff;
  background-color: rgba(129, 138, 145, 0.8);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  -o-transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
}

.mgp-custom-carousel .mgp-custom-carousel-thumbnail-overlay i {
  font-size: 21px;
}

.mgp-custom-carousel .mgp-custom-carousel-arrow-prev,
.mgp-custom-carousel .mgp-custom-carousel-arrow-next,
.mgp-custom-carousel .elementor-custom-embed-play {
  cursor: pointer;
}

.mgp-custom-carousel .mgp-custom-carousel-arrow-prev svg,
.mgp-custom-carousel .mgp-custom-carousel-arrow-next svg,
.mgp-custom-carousel .elementor-custom-embed-play svg {
  -webkit-transition: all 0.5s cubic-bezier(0.15, 0.74, 0.25, 1);
  transition: all 0.5s cubic-bezier(0.15, 0.74, 0.25, 1);
}

.mgp-custom-carousel .mgp-custom-carousel-arrow-prev:hover svg,
.mgp-custom-carousel .mgp-custom-carousel-arrow-next:hover svg,
.mgp-custom-carousel .elementor-custom-embed-play:hover svg {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.mgp-custom-carousel-style-carousel .mgp-custom-carousel-arrow-prev,
.mgp-custom-carousel-style-carousel .mgp-custom-carousel-arrow-next {
  margin: 30px;
}

.elementor-pagination-position-inside .swiper-pagination-fraction,
.elementor-pagination-position-inside .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
}

.elementor-pagination-position-outside .swiper-container {
  padding-bottom: 40px;
}

.elementor-pagination-position-outside .swiper-pagination-fraction,
.elementor-pagination-position-outside .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 0;
}

.elementor-pagination-position-outside .mgp-custom-carousel-arrow-prev,
.elementor-pagination-position-outside .mgp-custom-carousel-arrow-next {
  margin-top: -14px;
}

.elementor-widget-mgp-countdown.mgp-countdown--label-block .mgp-countdown-number,
.elementor-widget-mgp-countdown.mgp-countdown--label-block .mgp-countdown-label {
  display: block;
  text-align: center;
}

.elementor-widget-mgp-countdown .mgp-countdown-number {
  padding: 25px;
  color: #fff;
}

.mgp-custom-gallery.mgp-custom-gallery-skin-fedara .mgp-custom-gallery-skin-fedara-desc {
  position: relative;
  background: #fff;
}

.mgp-custom-gallery.mgp-custom-gallery-skin-fedara .mgp-custom-gallery-skin-fedara-desc:after {
  content: '';
  position: absolute;
  top: 0;
  height: 20px;
  width: 20px;
  background: inherit;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mgp-custom-gallery-skin-fedara-style-right .mgp-custom-gallery-skin-fedara-desc:after {
  right: 8px;
}

.mgp-custom-gallery-skin-fedara-style-left .mgp-custom-gallery-skin-fedara-desc:after {
  left: 30px;
}

.mgp-custom-gallery-skin-fedara-style-center .mgp-custom-gallery-skin-fedara-desc:after {
  left: 50%;
}

.mgp-custom-gallery.mgp-custom-gallery-skin-abetis .mgp-custom-gallery-skin-abetis-desc {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}

.mgp-custom-gallery {
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  overflow: hidden;
}

.mgp-custom-gallery .mgp-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}

.mgp-custom-gallery .mgp-gallery-item {
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  margin: 0;
  text-align: center;
  overflow: hidden;
}

.mgp-custom-gallery .mgp-gallery-item .mgp-gallery-item-title {
  margin-top: 0;
  margin-bottom: 5px;
}

.mgp-custom-gallery .mgp-gallery-item .mgp-gallery-item-text p:last-child {
  margin-bottom: 0px;
}

.mgp-custom-gallery .mgp-gallery-item .mgp-gallery-item-tags {
  line-height: 1;
}

.mgp-custom-gallery .mgp-gallery-item .mgp-gallery-thumbnail {
  overflow: hidden;
}

.mgp-custom-gallery .mgp-gallery-item .mgp-gallery-thumbnail img {
  width: 100%;
  object-fit: cover;
  vertical-align: middle;
}

.mgp-custom-gallery .mgp-gallery-item-link {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.mgp-custom-gallery .mgp-gallery-item-link {
  margin-left: 5px;
  margin-right: 5px;
  padding: 7px;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  line-height: 18px;
  margin-bottom: 15px;
}

.mgp-custom-gallery .mgp-gallery-item-link:hover {
  background-color: transparent;
}

.mgp-custom-gallery .mgp-gallery-item-link:hover span {
  color: rgba(0, 0, 0, 0.5);
}

.mgp-custom-gallery .mgp-gallery-item-link.icon-type-text {
  border: 2px solid #444;
}

.mgp-custom-gallery .mgp-gallery-item-link span.mgp-text {
  padding: 0 15px;
  color: #444;
  font-size: 12px;
  font-weight: 700;
}

.mgp-custom-gallery .mgp-custom-gallery-inner {
  position: relative;
  overflow: hidden;
}

@media (max-width: 767px) {
  .elementor-widget-mgp-custom-gallery .elementor-widget-container {
    overflow: hidden;
  }
}

.mgp-circle-menu-container {
  z-index: 99;
  position: relative;
}

.mgp-circle-menu-container .mgp-menu-icon {
  font-size: 14px;
}

.mgp-circle-menu li.mgp-toggle-icon {
  display: block !important;
  width: 50px !important;
  height: 50px !important;
  text-align: center !important;
  line-height: 50px !important;
  position: relative !important;
  z-index: 1000 !important;
  border-radius: 50% !important;
  transition: all 500ms ease !important;
  vertical-align: middle;
  transform-origin: center;
  background: #1e87f0;
  color: #fff;
  display: block;
  width: 35px;
  height: 35px;
  text-align: center;
  line-height: 35px;
  position: absolute;
  z-index: 1000;
  border-radius: 35px;
  transition: all 200ms ease;
}

.mgp-circle-menu li {
  background: #000;
  color: #fff;
  font-size: 25px;
}

.mgp-circle-menu li a {
  text-decoration: none;
  color: #fff;
  width: 100%;
}

.circleMenu-open > li:first-child {
  -webkit-transform: rotate(315deg);
  transform: rotate(315deg);
  -webkit-transform-origin: center;
  transform-origin: center;
}

#examples {
  margin-left: 200px;
}

#examples > div {
  display: none;
  width: 300px;
  height: 300px;
  position: relative;
  overflow: hidden;
}

.mgp-device-slider {
  position: relative;
}

.mgp-device-slider.mgp-device-slider-desktop {
  padding: 4% 4% 23.5% 4%;
}

.mgp-device-slider.mgp-device-slider-macbookpro {
  padding: 2.6% 9.5% 15.2% 9.5%;
}

.mgp-device-slider.mgp-device-slider-macbookair {
  padding: 3.6% 14.5% 10% 14%;
}

.mgp-device-slider.mgp-device-slider-tablet {
  padding: 11% 9.5% 11% 9.5%;
}

.mgp-device-slider.mgp-device-slider-mobile {
  padding: 11% 9.5% 11% 9.5%;
}

.mgp-device-slider.mgp-device-slider-galaxy {
  padding: 10.5% 2% 10.5% 2%;
}

.mgp-device-slider.mgp-device-slider-galaxy .mgp-slideshow-items {
  border-radius: 15px;
}

.mgp-device-slider.mgp-device-slider-iphonex {
  padding: 3% 3.5% 3% 3.5%;
}

.mgp-device-slider.mgp-device-slider-iphonex .mgp-slideshow-items {
  border-radius: 15px;
}

.mgp-device-slider .mgp-slideshow {
  position: relative;
}

.mgp-device-slider .mgp-slideshow .mgp-slidenav {
  color: rgba(255, 255, 255, 0.7);
}

.mgp-device-slider .mgp-slideshow .mgp-slidenav:hover,
.mgp-device-slider .mgp-slideshow .mgp-slidenav:focus {
  color: #fff;
}

.mgp-device-slider .mgp-slideshow .mgp-slidenav svg {
  width: 14px;
}

.mgp-device-slider .mgp-slideshow .mgp-dotnav-wrapper {
  margin-top: -20px;
}

.mgp-device-slider .mgp-device-slider-title {
  color: #fff;
  font-size: 32px;
}

.mgp-device-slider-device {
  pointer-events: none;
  overflow: hidden;
}

.mgp-device-slider-device img {
  top: 0;
  left: 0;
  position: absolute;
  max-width: 100%;
  width: 100%;
}

.mgp-device-slider-align-left .mgp-device-slider-container {
  margin-right: auto;
}

.mgp-device-slider-align-right .mgp-device-slider-container {
  margin-left: auto;
}

.mgp-device-slider-align-center .mgp-device-slider-container {
  margin-left: auto;
  margin-right: auto;
}

.mgp-dual-button {
  display: flex;
  position: relative;
}

.mgp-dual-button a.mgp-advanced-button {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100%;
}

.mgp-dual-button a.mgp-dual-button-a {
  background-color: #818a91;
  color: #fff;
}

.mgp-dual-button a.mgp-dual-button-a:after,
.mgp-dual-button a.mgp-dual-button-a:before {
  background-color: #697279;
}

.mgp-dual-button a.mgp-dual-button-b {
  background: #1e87f0;
  color: #fff;
}

.mgp-dual-button a.mgp-dual-button-b:after,
.mgp-dual-button a.mgp-dual-button-b:before {
  background: #0f6ecd;
}

.mgp-dual-button span {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 50%;
  z-index: 1;
  position: relative;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.2);
  background: #FAFAF8;
  color: #444444;
  text-transform: uppercase;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  vertical-align: middle;
  font-weight: 400;
  font-size: 14px;
}

.mgp-dual-button .mgp-advanced-button-size-xs + span {
  width: 20px;
  height: 20px;
  line-height: 20px;
  font-size: 10px;
}

.mgp-dual-button .mgp-advanced-button-size-sm + span {
  width: 29px;
  height: 29px;
  line-height: 29px;
  font-size: 12px;
}

.mgp-faq .mgp-accordion-title {
  display: block;
  outline: none;
  font-size: 18px;
  cursor: pointer;
  line-height: 1.4;
  margin: 0;
  transition: all 300ms cubic-bezier(0, 0.49, 0.27, 0.99);
}

.mgp-faq .mgp-accordion-title .mgp-accordion-icon {
  display: inline-block;
  width: 1.3em;
  font-weight: 400;
}

.mgp-faq .mgp-accordion-title .mgp-accordion-icon i {
  line-height: inherit;
}

.mgp-faq .mgp-accordion-title .mgp-accordion-icon.mgp-accordion-icon-right {
  float: right;
  text-align: right;
}

.mgp-faq .mgp-accordion-title .mgp-accordion-icon.mgp-accordion-icon-left {
  float: left;
  text-align: left;
}

.mgp-faq .mgp-accordion > :nth-child(n+2) {
  margin-top: 15px;
}

.mgp-faq .mgp-faq-item .mgp-accordion-icon-closed {
  display: block;
}

.mgp-faq .mgp-faq-item .mgp-accordion-icon-opened {
  display: none;
}

.mgp-faq .mgp-faq-item.mgp-open .mgp-accordion-icon-closed {
  display: none;
}

.mgp-faq .mgp-faq-item.mgp-open .mgp-accordion-icon-opened {
  display: block;
}

.mgp-flip-box {
  height: 280px;
  position: relative;
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.mgp-flip-box .elementor-icon {
  color: #fff;
}

.mgp-flip-box .elementor-view-framed .elementor-icon {
  color: #fff;
  border-color: #fff;
}

.mgp-flip-box .elementor-view-stacked .elementor-icon {
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
}

.mgp-flip-box .elementor-icon-wrapper {
  margin-bottom: 20px;
}

.mgp-flip-box-front {
  background-color: #1e87f0;
}

.mgp-flip-box-back {
  background-color: #b7b4b4;
  display: block;
}

.mgp-flip-box-layer {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.6s ease-in-out;
  transition: all 0.6s ease-in-out;
}

.mgp-flip-box-layer-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
  padding: 35px;
}

.mgp-flip-box-layer-title {
  font-size: 21px;
  line-height: 1;
  font-weight: 600;
  color: #fff;
}

.mgp-flip-box-layer-title:not(:last-child) {
  margin: 0 0 20px 0;
  padding: 0;
}

.mgp-flip-box-layer-desc {
  font-size: 14px;
  color: #e5e5e5;
}

.mgp-flip-box-layer-desc:not(:last-child) {
  margin: 0 0 20px 0;
  padding: 0;
}

.mgp-flip-box-image {
  margin: 0 0 20px 0;
  display: inline-block;
  width: 100%;
}

.mgp-flip-box-image img {
  width: 50%;
}

.mgp-flip-box-3d-yes .mgp-flip-box-layer-inner {
  -webkit-transform: translateZ(90px) scale(0.91);
  transform: translateZ(90px) scale(0.91);
}

.mgp-flip-box-3d-yes .mgp-flip-box-layer-overlay {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transform: translateZ(0.1px);
  transform: translateZ(0.1px);
}

.mgp-flip-box-effect-flip .mgp-flip-box {
  -webkit-perspective: 1000px;
  perspective: 1000px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.mgp-flip-box-effect-flip .mgp-flip-box:hover .mgp-flip-box-back {
  -webkit-transform: none;
  transform: none;
}

.mgp-flip-box-effect-flip .mgp-flip-box-layer {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.mgp-flip-box-effect-flip .mgp-flip-box-front {
  -webkit-transform: none;
  transform: none;
  z-index: 1;
}

.mgp-flip-box-effect-flip.mgp-flip-box-direction-right .mgp-flip-box-back {
  -webkit-transform: rotateX(0) rotateY(-180deg);
  transform: rotateX(0) rotateY(-180deg);
}

.mgp-flip-box-effect-flip.mgp-flip-box-direction-right .mgp-flip-box:hover .mgp-flip-box-front {
  -webkit-transform: rotateX(0) rotateY(180deg);
  transform: rotateX(0) rotateY(180deg);
}

.mgp-flip-box-effect-flip.mgp-flip-box-direction-left .mgp-flip-box-back {
  -webkit-transform: rotateX(0) rotateY(180deg);
  transform: rotateX(0) rotateY(180deg);
}

.mgp-flip-box-effect-flip.mgp-flip-box-direction-left .mgp-flip-box:hover .mgp-flip-box-front {
  -webkit-transform: rotateX(0) rotateY(-180deg);
  transform: rotateX(0) rotateY(-180deg);
}

.mgp-flip-box-effect-flip.mgp-flip-box-direction-up .mgp-flip-box-back {
  -webkit-transform: rotateX(-180deg) rotateY(0);
  transform: rotateX(-180deg) rotateY(0);
}

.mgp-flip-box-effect-flip.mgp-flip-box-direction-up .mgp-flip-box:hover .mgp-flip-box-front {
  -webkit-transform: rotateX(180deg) rotateY(0);
  transform: rotateX(180deg) rotateY(0);
}

.mgp-flip-box-effect-flip.mgp-flip-box-direction-down .mgp-flip-box-back {
  -webkit-transform: rotateX(180deg) rotateY(0);
  transform: rotateX(180deg) rotateY(0);
}

.mgp-flip-box-effect-flip.mgp-flip-box-direction-down .mgp-flip-box:hover .mgp-flip-box-front {
  -webkit-transform: rotateX(-180deg) rotateY(0);
  transform: rotateX(-180deg) rotateY(0);
}

.mgp-flip-box-effect-push .mgp-flip-box-front {
  -webkit-transform: none;
  transform: none;
}

.mgp-flip-box-effect-push .mgp-flip-box {
  overflow: hidden;
}

.mgp-flip-box-effect-push .mgp-flip-box:hover .mgp-flip-box-back {
  -webkit-transform: none;
  transform: none;
}

.mgp-flip-box-effect-push.mgp-flip-box-direction-right .mgp-flip-box:hover .mgp-flip-box-front {
  -webkit-transform: translateX(100%) translateY(0);
  transform: translateX(100%) translateY(0);
}

.mgp-flip-box-effect-push.mgp-flip-box-direction-right .mgp-flip-box-back {
  -webkit-transform: translateX(-100%) translateY(0);
  transform: translateX(-100%) translateY(0);
}

.mgp-flip-box-effect-push.mgp-flip-box-direction-left .mgp-flip-box:hover .mgp-flip-box-front {
  -webkit-transform: translateX(-100%) translateY(0);
  transform: translateX(-100%) translateY(0);
}

.mgp-flip-box-effect-push.mgp-flip-box-direction-left .mgp-flip-box-back {
  -webkit-transform: translateX(100%) translateY(0);
  transform: translateX(100%) translateY(0);
}

.mgp-flip-box-effect-push.mgp-flip-box-direction-up .mgp-flip-box:hover .mgp-flip-box-front {
  -webkit-transform: translateX(0) translateY(-100%);
  transform: translateX(0) translateY(-100%);
}

.mgp-flip-box-effect-push.mgp-flip-box-direction-up .mgp-flip-box-back {
  -webkit-transform: translateX(0) translateY(100%);
  transform: translateX(0) translateY(100%);
}

.mgp-flip-box-effect-push.mgp-flip-box-direction-down .mgp-flip-box:hover .mgp-flip-box-front {
  -webkit-transform: translateX(0) translateY(100%);
  transform: translateX(0) translateY(100%);
}

.mgp-flip-box-effect-push.mgp-flip-box-direction-down .mgp-flip-box-back {
  -webkit-transform: translateX(0) translateY(-100%);
  transform: translateX(0) translateY(-100%);
}

.mgp-flip-box-effect-slide .mgp-flip-box {
  overflow: hidden;
}

.mgp-flip-box-effect-slide .mgp-flip-box:hover .mgp-flip-box-back {
  -webkit-transform: none;
  transform: none;
}

.mgp-flip-box-effect-slide.mgp-flip-box-direction-right .mgp-flip-box-back {
  -webkit-transform: translateX(-100%) translateY(0);
  transform: translateX(-100%) translateY(0);
}

.mgp-flip-box-effect-slide.mgp-flip-box-direction-left .mgp-flip-box-back {
  -webkit-transform: translateX(100%) translateY(0);
  transform: translateX(100%) translateY(0);
}

.mgp-flip-box-effect-slide.mgp-flip-box-direction-up .mgp-flip-box-back {
  -webkit-transform: translateX(0) translateY(100%);
  transform: translateX(0) translateY(100%);
}

.mgp-flip-box-effect-slide.mgp-flip-box-direction-down .mgp-flip-box-back {
  -webkit-transform: translateX(0) translateY(-100%);
  transform: translateX(0) translateY(-100%);
}

.mgp-flip-box-effect-zoom-out .mgp-flip-box .mgp-flip-box-front {
  -webkit-transition: opacity 0.35s, width 0.1ms, -webkit-transform 0.7s;
  transition: opacity 0.35s, width 0.1ms, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.35s, width 0.1ms;
  transition: transform 0.7s, opacity 0.35s, width 0.1ms, -webkit-transform 0.7s;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
  z-index: 1;
  width: 100%;
}

.mgp-flip-box-effect-zoom-out .mgp-flip-box:hover .mgp-flip-box-front {
  width: 0;
  opacity: 0;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
  -webkit-transition: opacity 0.7s 0.1s, width 0.1ms 0.7s, -webkit-transform 0.8s;
  transition: opacity 0.7s 0.1s, width 0.1ms 0.7s, -webkit-transform 0.8s;
  transition: transform 0.8s, opacity 0.7s 0.1s, width 0.1ms 0.7s;
  transition: transform 0.8s, opacity 0.7s 0.1s, width 0.1ms 0.7s, -webkit-transform 0.8s;
}

.mgp-flip-box-effect-zoom-in .mgp-flip-box .mgp-flip-box-back {
  -webkit-transition: opacity 0.5s 0.2s, -webkit-transform 0.7s;
  transition: opacity 0.5s 0.2s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.5s 0.2s;
  transition: transform 0.7s, opacity 0.5s 0.2s, -webkit-transform 0.7s;
  opacity: 0;
  -webkit-transform: scale(0.7);
  transform: scale(0.7);
}

.mgp-flip-box-effect-zoom-in .mgp-flip-box:hover .mgp-flip-box-back {
  -webkit-transition: opacity 0.5s, -webkit-transform 0.7s;
  transition: opacity 0.5s, -webkit-transform 0.7s;
  transition: transform 0.7s, opacity 0.5s;
  transition: transform 0.7s, opacity 0.5s, -webkit-transform 0.7s;
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.mgp-flip-box-effect-fade .mgp-flip-box .mgp-flip-box-back {
  opacity: 0;
}

.mgp-flip-box-effect-fade .mgp-flip-box:hover .mgp-flip-box-back {
  opacity: 1;
}

.elementor-widget-mgp-flip-box.mgp-flip-box-flipped .elementor-widget-container .mgp-flip-box-front {
  display: none;
}

.elementor-widget-mgp-flip-box.mgp-flip-box-flipped .elementor-widget-container .mgp-flip-box-back {
  -webkit-transform: none;
  transform: none;
  opacity: 1;
}

@media (max-device-width: 1024px) {
  .mgp-flip-box {
    cursor: pointer;
  }
}

.mgp-advanced-gmap {
  min-height: 360px;
  height: 100%;
  width: 100%;
}

.mgp-icon-nav .mgp-icon-nav-container {
  background: #1e87f0;
  position: fixed;
  height: 100%;
  top: 0;
  z-index: 1001;
}

.mgp-icon-nav .mgp-icon-nav-container.mgp-icon-nav-left {
  left: 0;
}

.mgp-icon-nav .mgp-icon-nav-container.mgp-icon-nav-left .mgp-icon-nav-tooltip {
  left: 100%;
  margin-left: 5px;
}

.mgp-icon-nav .mgp-icon-nav-container.mgp-icon-nav-right {
  right: 0;
}

.mgp-icon-nav .mgp-icon-nav-container.mgp-icon-nav-right .mgp-icon-nav-tooltip {
  right: 100%;
  margin-right: 5px;
}

.mgp-icon-nav .mgp-icon-nav-container ul.mgp-icon-nav.mgp-icon-nav-vertical {
  padding: 0;
  margin: 0;
  text-align: center;
  list-style-type: none;
}

.mgp-icon-nav .mgp-icon-nav-container ul.mgp-icon-nav.mgp-icon-nav-vertical li + li {
  margin-top: 15px;
}

.mgp-icon-nav .mgp-icon-nav-container .mgp-icon-nav-icon-wrapper {
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  position: relative;
  font-weight: 700;
  display: block;
}

.mgp-icon-nav .mgp-icon-nav-container .mgp-icon-nav-icon-wrapper .mgp-icon-nav-icon {
  color: inherit;
}

.mgp-icon-nav .mgp-icon-nav-container .mgp-icon-nav-icon-wrapper:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.mgp-icon-nav .mgp-icon-nav-container .mgp-icon-nav-icon-wrapper:hover .mgp-icon-nav-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0px);
}

.mgp-icon-nav .mgp-icon-nav-container .mgp-icon-nav-tooltip {
  background: #1e87f0;
  color: inherit;
  padding: 10px 15px;
  position: absolute;
  box-sizing: border-box;
  font-size: 11px;
  line-height: 14px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 1px;
  border-radius: 3px;
  -webkit-transition: all 0.35s cubic-bezier(0.28, 0.86, 0.58, 1);
  transition: all 0.35s cubic-bezier(0.28, 0.86, 0.58, 1);
  transform: translateY(-50%) translateX(15px);
  top: 50%;
  width: 100px;
  text-align: left;
  visibility: hidden;
  opacity: 0;
}

.mgp-icon-nav .mgp-icon-nav-container .mgp-icon-nav-branding {
  color: #fff;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 2px;
  min-height: 50px;
  text-align: center;
  padding: 10px;
  position: relative;
}

.mgp-icon-nav .mgp-icon-nav-container .mgp-icon-nav-branding .mgp-logo-txt * {
  color: #fff;
}

.mgp-icon-nav .mgp-icon-nav-container .mgp-icon-nav-branding .mgp-logo-image img {
  width: 25px;
  height: auto;
}

.mgp-icon-nav-offcanvas .mgp-offcanvas-bar li.mgp-active {
  position: relative;
}

.mgp-icon-nav-offcanvas .mgp-offcanvas-bar li.mgp-active a:before {
  content: "";
  width: 2px;
  height: calc(100% - 10px);
  background-color: #1e87f0;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
  box-sizing: border-box;
}

.mgp-marker {
  border-radius: 100px;
}

.mgp-marker-animated .mgp-marker:before {
  width: 32px;
  height: 32px;
  left: 50%;
  top: 50%;
  z-index: -1;
}

.mgp-marker-animated .mgp-marker:before,
.mgp-marker-animated .mgp-marker:after {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  content: '';
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  -webkit-transform: scale(0.35) translateY(-50%) translateX(-50%);
  -ms-transform: scale(0.35) translateY(-50%) translateX(-50%);
  transform: scale(0.35) translateY(-50%) translateX(-50%);
  opacity: 0;
  -webkit-animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0.4s infinite;
  animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0.4s infinite;
}

.mgp-marker-animated .mgp-marker:after {
  width: 32px;
  height: 32px;
  z-index: -1;
  border-color: rgba(255, 255, 255, 0.4);
  -webkit-animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0s infinite;
  animation: marker-ripple-animation 2.6s cubic-bezier(0.25, 0.9, 0.2, 1) 0s infinite;
}

.mgp-marker-animated .mgp-marker svg {
  transition: transform 0.3s;
  -webkit-transition: -webkit-transform 0.3s;
}

.mgp-marker-animated .mgp-marker:hover svg {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
}

@-webkit-keyframes marker-ripple-animation {
  0% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
  }
  100% {
    -webkit-transform: translate3d(-50%, -50%, 0) scale(1.7);
    opacity: 0;
  }
}

@keyframes marker-ripple-animation {
  0% {
    transform: translate3d(-50%, -50%, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate3d(-50%, -50%, 0) scale(1.7);
    opacity: 0;
  }
}

.mgp-member {
  position: relative;
  overflow: hidden;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.mgp-member .mgp-member-icons a:hover .fa-facebook {
  color: #3B5998;
}

.mgp-member .mgp-member-icons a:hover .fa-flickr {
  color: #ff0084;
}

.mgp-member .mgp-member-icons a:hover .fa-google-plus {
  color: #dd4b39;
}

.mgp-member .mgp-member-icons a:hover .fa-twitter {
  color: #00aced;
}

.mgp-member .mgp-member-icons a:hover .fa-github-alt {
  color: #bd5990;
}

.mgp-member .mgp-member-icons a:hover .fa-linkedin {
  color: #007bb6;
}

.mgp-member .mgp-member-icons a:hover .fa-pinterest {
  color: #BD081C;
}

.mgp-member-photo-wrapper {
  overflow: hidden;
}

.mgp-member-photo > div {
  opacity: 1;
}

.mgp-member-photo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  border: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -ms-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.mgp-member-description {
  padding: 1em 1.5em;
}

.mgp-member-name {
  display: block;
  margin-bottom: .2em;
  font-size: 1.2em;
  font-weight: 700;
}

.mgp-member-role {
  display: block;
  margin-bottom: 1em;
  font-size: 0.9em;
  opacity: 0.5;
  filter: alpha(opacity=50);
}

.mgp-member-icons {
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1em;
}

.mgp-member-icons .mgp-member-icon {
  padding: 5px;
}

.mgp-member-icons a {
  display: inline-block;
  text-align: center;
  line-height: 1;
}

.mgp-member-icons a:first-child {
  margin-left: 0;
}

.mgp-member-icons a:last-child {
  margin-right: 0 !important;
}

.mgp-member-icons a i {
  display: inline-block;
  min-width: 16px;
  text-align: center;
}

.mgp-member-icons a i:before {
  font-size: 16px;
}

.mgp-member-icons a img {
  display: block;
  width: 16px;
  height: 16px;
  margin: 0;
  padding: 0;
  border: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}

.mgp-member-icons a + a {
  margin-left: 0.8em;
}

.mgp-member-clickable:hover {
  cursor: pointer;
}

.elementor-widget-mgp-member .elementor-widget-container {
  background-color: #ffffff;
  overflow: hidden;
}

.mgp-member.mgp-member-skin-phaedra .mgp-member-role {
  margin-bottom: 0;
}

.mgp-member.mgp-member-skin-calm .mgp-member-role {
  -webkit-transition: all 0.35s ease-out;
  transition: all 0.35s ease-out;
  margin-bottom: 0;
}

.mgp-member.mgp-member-skin-calm .mgp-member-name {
  margin-bottom: 0;
}

.mgp-member.mgp-member-skin-calm:hover .mgp-member-role {
  opacity: 0;
}

.mgp-member.mgp-member-skin-calm .mgp-member-icons {
  padding: 0;
  color: #fff;
  margin-top: -15px;
}

.mgp-member.mgp-member-skin-calm .mgp-member-description {
  opacity: 1;
  padding: 0;
  color: #fff;
}

.mgp-member.mgp-member-skin-calm .mgp-overlay {
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.31) 50%, rgba(0, 0, 0, 0.65) 100%);
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.31) 50%, rgba(0, 0, 0, 0.65) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0.31) 50%, rgba(0, 0, 0, 0.65) 100%);
  bottom: -15px;
  padding-bottom: 45px;
}

.mgp-member.mgp-member-skin-calm .mgp-member-icons {
  border-top: 0px solid rgba(0, 0, 0, 0.05);
}

.mgp-navbar > li > a {
  transition: all 350ms cubic-bezier(0, 0.43, 0.29, 0.96);
}

.mgp-navbar .mgp-navbar-dropdown-nav li.hot,
.mgp-navbar .mgp-navbar-dropdown-nav li.new {
  position: relative;
}

.mgp-navbar .mgp-navbar-dropdown-nav li.hot:after,
.mgp-navbar .mgp-navbar-dropdown-nav li.new:after {
  content: "";
  position: absolute;
  width: auto;
  background: rgba(20, 171, 244, 0.58);
  color: #fff;
  right: 5px;
  top: 50%;
  margin-top: -7px;
  font-size: 8px;
  padding: 1px 5px;
  border-radius: 2px;
}

.mgp-navbar .mgp-navbar-dropdown-nav li.hot:after {
  content: "HOT";
}

.mgp-navbar .mgp-navbar-dropdown-nav li.new:after {
  content: "NEW";
  background: #F2295B;
}

.mgp-nav.mgp-navbar-dropdown-nav li.mgp-parent {
  position: relative;
}

.mgp-nav.mgp-navbar-dropdown-nav li.mgp-parent .mgp-navbar-dropdown {
  top: 0 !important;
  left: 100% !important;
  right: auto;
}

.mgp-navbar-parent-indicator-yes ul > li.mgp-parent > a {
  position: relative;
}

.mgp-navbar-parent-indicator-yes ul > li.mgp-parent > a:after {
  font: normal normal normal 12px/1 FontAwesome;
  position: relative;
  line-height: inherit;
  content: "\f107";
  top: 1px;
  margin-left: 12px;
}

.mgp-navbar-parent-indicator-yes .mgp-navbar-dropdown-nav > li.mgp-parent > a:after {
  position: absolute;
  transform: translate(-50%, -50%);
  transform-origin: center;
  top: calc(50% + 1px);
  content: "\f105";
  right: 0;
  margin: 0;
}

.mgp-news-ticker {
  position: relative;
}

.mgp-news-ticker .mgp-news-ticker-label {
  background-color: #14ABF4;
  height: 50px;
  line-height: 50px;
  position: relative;
  font-size: 12px;
  font-weight: 700;
  vertical-align: middle;
  text-align: left;
  color: #fff;
  padding: 0 20px;
  text-transform: uppercase;
  z-index: 1;
}

.mgp-news-ticker .mgp-news-ticker-label::after {
  content: '';
  position: absolute;
  right: -20px;
  border: 10px solid transparent;
  border-left-color: #14ABF4;
  top: 50%;
  transform: translateY(-50%);
}

.mgp-news-ticker .mgp-news-ticker-content {
  background-color: #000;
  color: #fff;
  height: 50px;
  line-height: 50px;
  vertical-align: middle;
  padding-left: 20px;
  padding-right: 20px;
}

.mgp-news-ticker .mgp-news-ticker-content > * > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mgp-news-ticker .mgp-news-ticker-content a {
  color: #fff;
}

.mgp-news-ticker .mgp-news-ticker-navigation {
  padding-left: 10px;
  padding-right: 10px;
  height: 50px;
  background-color: #000;
  line-height: 46px;
  vertical-align: middle;
}

.mgp-news-ticker .mgp-news-ticker-navigation a svg {
  color: #fff;
}

.mgp-news-ticker .mgp-news-ticker-navigation .mgp-slidenav {
  padding: 5px;
}

.mgp-offcanvas-button .mgp-offcanvas-button-align-icon-right {
  float: right;
}

.mgp-offcanvas-button .mgp-offcanvas-button-align-icon-left {
  float: left;
}

.mgp-offcanvas .mgp-offcanvas-bar {
  word-wrap: break-word;
}

.mgp-offcanvas .mgp-offcanvas-bar .widget:not(:first-child) {
  margin-top: 30px;
}

.mgp-post-card > div:nth-child(2) .mgp-post-card-item {
  box-shadow: 0 0 0 20px rgba(30, 135, 240, 0.7);
  position: relative;
}

.mgp-post-card .mgp-post-card-item {
  background-color: #fff;
}

.mgp-post-card .mgp-post-card-item .mgp-post-card-title {
  margin-top: 0;
  margin-bottom: 10px;
  color: #666666;
}

.mgp-post-card .mgp-post-card-item .mgp-post-card-title a {
  text-decoration: none;
  color: inherit;
}

.mgp-post-card .mgp-post-card-item .mgp-post-card-button {
  font-weight: bolder;
  padding-left: 0;
  padding-right: 0;
  margin-right: 10px;
  display: inline-block;
  text-decoration: none;
  color: inherit;
}

.mgp-post-card .mgp-post-card-item .mgp-post-card-tag {
  margin-bottom: 10px;
}

.mgp-post-card .mgp-post-card-item .mgp-post-card-tag span a {
  padding: 2px 6px;
  white-space: nowrap;
  text-decoration: none;
  color: #ffffff;
  font-size: 10px;
  text-transform: uppercase;
  background: #1e87f0;
}

.mgp-post-card .mgp-post-card-desc {
  background-color: #fff;
  padding: 50px;
}

.mgp-post-card .mgp-post-card-desc ul.mgp-post-card-meta {
  color: #999;
  text-transform: uppercase;
  font-weight: bolder;
  margin-top: 0;
  font-size: 12px;
  margin-bottom: 20px;
  text-decoration: none;
}

@media (min-width: 960px) {
  .mgp-post-card > div:nth-child(2) .mgp-post-card-item {
    margin-top: -20px;
  }

  .mgp-post-card > div:nth-child(2) .mgp-post-card-item .mgp-post-card-thumb {
    display: block;
    overflow: hidden;
  }

  .mgp-post-card > div:nth-child(2) .mgp-post-card-item .mgp-post-card-thumb img {
    padding-top: 20px;
    -webkit-transform: scale(1.33);
    transform: scale(1.33);
  }
}

.mgp-post-slider .mgp-post-slider-content-wrap {
  max-width: 1170px;
  width: 100%;
  padding-left: 30px;
  padding-right: 30px;
}

.mgp-post-slider .mgp-post-slider-content-wrap .mgp-post-slider-content {
  max-width: 950px;
  display: inline-block;
}

.mgp-post-slider .mgp-post-slider-tag-wrap span {
  padding: 2px 6px;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 11px;
}

.mgp-post-slider .mgp-post-slider-tag-wrap span a {
  color: #fff;
}

.mgp-post-slider .mgp-post-slider-tag-wrap span + span {
  margin-left: 5px;
}

.mgp-post-slider .mgp-post-slider-title {
  margin-top: 10px;
  line-height: 1;
  font-size: 1.4rem;
  color: #fff;
}

.mgp-post-slider .mgp-post-slider-text {
  margin-top: 15px;
  font-size: .65rem;
  line-height: 1.4;
}

.mgp-post-slider .mgp-post-slider-text p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.mgp-post-slider .mgp-post-slider-meta {
  margin-top: 5px;
}

.mgp-post-slider .mgp-post-slider-meta span {
  margin-left: 3px;
  text-transform: capitalize;
  color: rgba(246, 251, 255, 0.55);
}

.mgp-post-slider .mgp-post-slider-button-wrap {
  margin-top: 20px;
}

.mgp-post-slider .mgp-post-slider-pagination {
  max-width: 1170px;
  width: 100%;
  bottom: 3px;
  margin-top: 0;
  position: relative !important;
  margin-bottom: 15px;
  padding-left: 20px;
  padding-right: 20px;
}

.mgp-post-slider .mgp-post-slider-pagination .mgp-thumbnav {
  border-top: 3px solid rgba(255, 255, 255, 0.5);
  margin-left: 0;
}

.mgp-post-slider .mgp-post-slider-pagination .mgp-thumbnav li:first-child {
  padding-left: 0;
}

.mgp-post-slider .mgp-post-slider-pagination .mgp-post-slider-thumb-wrap {
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

.mgp-post-slider .mgp-post-slider-pagination .mgp-post-slider-thumb-wrap img {
  height: 64px;
  width: 64px;
}

.mgp-post-slider .mgp-post-slider-pagination li .mgp-post-slider-pagination-item {
  border-top: 3px solid transparent;
  padding-top: 15px;
  margin-top: -3px;
  transition: all 300ms cubic-bezier(0.13, 0.27, 0.39, 1);
}

.mgp-post-slider .mgp-post-slider-pagination li.mgp-active .mgp-post-slider-pagination-item {
  border-top-color: #ffffff;
  opacity: 1;
}

.mgp-post-slider .mgp-post-slider-pagination li .mgp-post-slider-pagination-item {
  opacity: 0.7;
}

.mgp-post-slider .mgp-post-slider-pagination li h6,
.mgp-post-slider .mgp-post-slider-pagination li span {
  font-weight: 700;
  line-height: 1;
  font-size: 12px;
  color: #fff;
}

.mgp-post-slider .mgp-post-slider-pagination li .mgp-post-slider-date {
  font-weight: 400;
  opacity: 0.8;
  text-transform: uppercase;
  font-size: 11px;
}

.mgp-post-slider.mgp-post-slider-skin-vast .mgp-post-slider-text p {
  margin: 0;
  color: rgba(0, 0, 0, 0.7);
}

.mgp-post-slider.mgp-post-slider-skin-vast .mgp-post-slider-text p + p {
  margin-top: 15px;
}

.mgp-post-slider.mgp-post-slider-skin-vast .mgp-post-slider-title {
  color: #444;
}

.mgp-post-slider.mgp-post-slider-skin-vast .mgp-post-slider-meta span {
  color: rgba(136, 136, 136, 0.55);
  margin-left: 12px;
}

.mgp-post-slider.mgp-post-slider-skin-vast .mgp-post-slider-navigation a {
  color: #fff;
}

@media screen and (min-width: 768px) {
  .mgp-post-slider .mgp-post-slider-content-wrap {
    padding-left: 50px;
    padding-right: 50px;
  }

  .mgp-post-slider .mgp-post-slider-title {
    font-size: 2.2rem;
  }

  .mgp-post-slider .mgp-post-slider-text {
    font-size: 1rem;
    line-height: 1.6;
  }

  .mgp-post-slider .mgp-post-slider-meta {
    margin-top: 20px;
  }

  .mgp-post-slider .mgp-post-slider-meta .mgp-post-slider-author {
    margin-right: 5px;
  }

  .mgp-post-slider .mgp-post-slider-pagination {
    bottom: 0;
    position: absolute !important;
    margin-bottom: 30px;
    padding-left: 50px;
    padding-right: 50px;
  }

  .mgp-post-slider .mgp-post-slider-pagination li .mgp-post-slider-pagination-item {
    padding-top: 30px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .mgp-post-slider .mgp-post-slider-content-wrap {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 70px;
  }

  .mgp-post-slider .mgp-post-slider-pagination li .mgp-post-slider-pagination-item {
    padding-top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .mgp-post-slider .mgp-post-slider-title {
    font-size: 2.625rem;
    line-height: 1.2;
  }

  .mgp-post-slider.mgp-post-slider-skin-vast .mgp-post-slider-title {
    font-size: 2rem;
    line-height: 1;
  }
}

.parallax-scene {
  position: absolute;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  top: 0;
  left: 0;
  overflow: hidden;
}

.mgp-scene-item {
  position: absolute;
  width: 102%;
  height: 104%;
  background-repeat: no-repeat;
  overflow: hidden;
  margin: 0;
  padding: 0;
  top: -1%;
  left: -2%;
  background-size: auto;
}

.mgp-progress-pie-wrapper {
  text-align: center;
}

.mgp-progress-pie-wrapper .mgp-progress-pie {
  text-align: center;
  position: relative;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  padding: 20px;
}

.mgp-progress-pie-wrapper .mgp-progress-pie svg {
  margin: 0 auto;
}

.mgp-progress-pie-wrapper .mgp-progress-pie svg ellipse {
  stroke: #f5f5f5;
}

.mgp-progress-pie-wrapper .mgp-progress-pie svg path {
  stroke: #14ABF4;
}

.mgp-progress-pie-wrapper .mgp-progress-pie .mgp-progress-pie-number,
.mgp-progress-pie-wrapper .mgp-progress-pie .mgp-progress-pie-text {
  font-size: 32px;
  font-weight: 700;
}

.mgp-progress-pie-wrapper .mgp-progress-pie.mgp-pp-lc-square svg path {
  stroke-linecap: square;
}

.mgp-progress-pie-wrapper .mgp-progress-pie.mgp-pp-lc-round svg path {
  stroke-linecap: round;
}

.mgp-progress-pie-wrapper .mgp-progress-pie.mgp-pp-lc-butt svg path {
  stroke-linecap: butt;
}

.mgp-progress-pie-wrapper .mgp-progress-pie .mgp-progress-pie-label {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
}

.mgp-progress-pie-wrapper .mgp-progress-pie .mgp-progress-pie-label div {
  line-height: 1.2em;
}

.mgp-progress-pie-wrapper .mgp-progress-pie .mgp-progress-pie-svg {
  display: inline-block;
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  vertical-align: middle;
  overflow: hidden;
}

.mgp-progress-pie-wrapper .mgp-progress-pie .mgp-progress-pie-svg svg {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.mgp-progress-pie-wrapper .mgp-progress-pie-title {
  text-align: center;
  padding: 30px;
  margin: 0;
  font-size: 1.1rem;
}

.mgp-progress-pie-wrapper .mgp-progress-pie-title:not(.mgp-no-divider) {
  border-top: 1px solid rgba(100, 100, 100, 0.1);
}

.mgp-panel-slider .swiper-container {
  cursor: -webkit-grab;
}

.mgp-panel-slider .swiper-button-prev,
.mgp-panel-slider .swiper-container-rtl .swiper-button-next {
  left: 50px;
}

.mgp-panel-slider .swiper-button-next,
.mgp-panel-slider .swiper-container-rtl .swiper-button-prev {
  right: 50px;
}

.mgp-panel-slider .mgp-panel-slide-item .mgp-panel-slide-desc {
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  padding: 20px 30px;
}

.mgp-panel-slider .mgp-panel-slide-item .mgp-panel-slide-thumb img {
  opacity: 0.4;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 100%;
}

.mgp-panel-slider .mgp-panel-slide-item:hover .mgp-panel-slide-thumb img {
  opacity: 1;
}

.mgp-panel-slider .mgp-panel-slide-item .mgp-panel-slide-text {
  font-size: 14px;
}

.mgp-panel-slider .mgp-panel-slide-item .mgp-panel-slide-text h2,
.mgp-panel-slider .mgp-panel-slide-item .mgp-panel-slide-text a {
  text-transform: uppercase;
}

.mgp-panel-slider .mgp-panel-slide-item .mgp-panel-slide-link {
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  color: inherit;
}

.mgp-panel-slider .mgp-panel-slide-title {
  transition-delay: 50ms;
  margin-bottom: 0;
  margin-top: 10px;
  color: inherit;
}

.mgp-panel-slider .mgp-panel-slide-text {
  transition-delay: 100ms;
}

.mgp-post-block .mgp-post-block-item .mgp-post-block-excerpt {
  margin-bottom: 10px;
}

.mgp-post-block .mgp-post-block-item .mgp-post-block-link {
  color: #444;
}

.mgp-post-block .mgp-post-block-item .mgp-post-block-link:hover {
  color: #000;
}

.mgp-post-block .mgp-post-block-item .mgp-post-block-read-more {
  margin-right: 10px;
  font-weight: bolder;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
}

.mgp-post-block .mgp-post-block-item .mgp-post-block-desc .mgp-post-block-meta {
  margin-bottom: 10px;
  margin-top: 0;
  color: #999;
}

.mgp-post-block .mgp-post-block-item .mgp-post-block-desc .mgp-post-block-meta * {
  font-size: 13px;
  font-weight: 400;
}

.mgp-post-block .mgp-post-block-item .mgp-post-block-desc span {
  color: inherit;
}

.mgp-post-block .mgp-post-block-item.featured-part h4 {
  margin-bottom: 10px;
}

.mgp-post-block .mgp-post-block-item.list-part .mgp-post-block-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mgp-post-block .mgp-post-block-item.list-part .mgp-post-block-thumbnail img {
  width: 80px;
  height: auto;
}

.mgp-post-block .mgp-post-block-tag-wrap span {
  padding: 2px 6px;
  color: #fff;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 11px;
}

.mgp-post-block .mgp-post-block-tag-wrap span + span {
  margin-left: 5px;
}

.mgp-post-block.mgp-post-block-skin-trinity .mgp-post-block-title a {
  color: #ffffff;
}

.mgp-post-block.mgp-post-block-skin-trinity .mgp-post-block-title a:hover {
  color: #ffffff;
  opacity: 0.8;
}

.mgp-post-block.mgp-post-block-skin-trinity .mgp-post-block-item .mgp-overlay-primary {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0.5;
}

.mgp-post-block.mgp-post-block-skin-trinity .mgp-post-block-item:hover .mgp-overlay-primary {
  opacity: 1;
}

.mgp-post-block.mgp-post-block-skin-genesis .mgp-has-divider li > div {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

.mgp-post-grid .mgp-post-grid-item {
  overflow: hidden;
}

.mgp-post-grid .mgp-post-grid-item .mgp-position-top-left {
  top: -1px;
}

.mgp-post-grid .mgp-post-grid-item * {
  color: #fff;
}

.mgp-post-grid .mgp-post-grid-item .mgp-post-grid-readmore span {
  color: inherit;
}

.mgp-post-grid .mgp-post-grid-item .mgp-post-grid-readmore span i {
  color: inherit;
}

.mgp-post-grid .mgp-post-grid-item .mgp-custom-overlay {
  background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.75) 100%);
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.75) 100%);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, rgba(0, 0, 0, 0.75) 100%);
  opacity: 0.75;
  transition: 0.5s cubic-bezier(0.4, 0.7, 0.04, 0.88);
  transition-property: opacity, transform, filter;
}

.mgp-post-grid .mgp-post-grid-item:hover .mgp-custom-overlay {
  opacity: 1;
}

.mgp-post-grid .mgp-post-grid-item .mgp-post-grid-category a {
  background: #1e87f0;
  padding: 5px 8px;
  color: #fff;
  box-sizing: border-box;
  display: inline-block;
  font-size: 10px;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 700;
}

.mgp-post-grid .mgp-post-grid-item .mgp-post-grid-category a + a {
  margin-left: 10px;
}

.mgp-post-grid .mgp-post-grid-item .mgp-subnav span + span:before {
  content: '';
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #e5e5e5;
  margin-left: -10px;
  margin-right: 10px;
  display: inline-block;
}

.mgp-post-grid .mgp-primary .mgp-post-grid-title {
  font-size: 1.5rem;
}

.mgp-post-grid .mgp-primary .mgp-post-grid-author {
  font-size: 13px;
  font-weight: 700;
}

.mgp-post-grid .mgp-primary .mgp-post-grid-date {
  font-size: 13px;
}

.mgp-post-grid .mgp-secondary .mgp-post-grid-meta,
.mgp-post-grid .mgp-tertiary .mgp-post-grid-meta,
.mgp-post-grid .mgp-secondary .mgp-post-grid-comments,
.mgp-post-grid .mgp-tertiary .mgp-post-grid-comments {
  display: none;
}

.mgp-post-grid-skin-default .mgp-primary .mgp-post-grid-img-wrap a {
  height: 300px;
}

.mgp-post-grid-skin-default .mgp-secondary .mgp-post-grid-img-wrap a {
  height: 200px;
}

.mgp-post-grid-skin-carmie .mgp-post-grid-img-wrap a {
  height: 380px;
}

.mgp-post-grid-skin-carmie .mgp-transition-slide-bottom {
  max-height: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.mgp-post-grid-skin-carmie .mgp-post-grid-item:hover .mgp-transition-slide-bottom {
  max-height: 72px;
}

.mgp-post-grid-skin-carmie .mgp-post-grid-item:hover .mgp-post-grid-excerpt {
  margin-top: 15px !important;
}

.mgp-post-grid-skin-carmie .mgp-post-grid-item .mgp-post-grid-desc {
  background: rgba(0, 0, 0, 0.5);
}

.mgp-post-grid-skin-carmie .mgp-post-grid-title {
  margin: 0;
}

.mgp-post-grid-skin-carmie .mgp-post-grid-meta span {
  font-size: 13px;
}

.mgp-post-grid-skin-carmie .mgp-post-grid-excerpt {
  margin-top: 0 !important;
}

.mgp-post-grid-skin-modern .mgp-primary .mgp-post-grid-img-wrap a,
.mgp-post-grid-skin-elanza .mgp-primary .mgp-post-grid-img-wrap a {
  height: 399px;
}

.mgp-post-grid-skin-modern .mgp-secondary .mgp-post-grid-img-wrap a,
.mgp-post-grid-skin-elanza .mgp-secondary .mgp-post-grid-img-wrap a {
  height: 192px;
}

.mgp-post-grid-tab .mgp-post-grid-tab-thumbnail {
  overflow: hidden;
  cursor: pointer;
}

.mgp-post-grid-tab .mgp-post-grid-tab-thumbnail img {
  width: 100%;
  object-fit: cover;
  vertical-align: top;
  transition: transform 250ms cubic-bezier(0.3, 0.91, 0.58, 1);
}

.mgp-post-grid-tab .mgp-post-grid-tab-thumbnail:hover img {
  transform: scale(1.1);
}

.mgp-post-grid-tab .mgp-subnav span a {
  display: inline-block;
}

.mgp-post-grid-tab .mgp-subnav span + span:before {
  content: '';
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #e5e5e5;
  margin-left: -10px;
  margin-right: 10px;
  display: inline-block;
}

.mgp-post-grid-tab .gridtab > dt {
  line-height: normal;
}

.mgp-post-grid-tab .mgp-post-grid-tab-title {
  cursor: pointer;
}

/* GridTab v2.1.1*/
.gridtab,
.gridtab > dt,
.gridtab > dd {
  position: relative;
}

.gridtab {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  box-sizing: border-box;
}

.gridtab > dt {
  border-style: solid;
}

.gridtab > dd {
  z-index: 1;
  display: none;
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  border-style: solid;
}

.gridtab > dd > .gridtab__controls {
  position: absolute;
  right: 10px;
  top: 10px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.gridtab > dd > .gridtab__controls > .gridtab__close {
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-left: 5px;
}

.gridtab > dd > .gridtab__controls > .gridtab__close:before,
.gridtab > dd > .gridtab__controls > .gridtab__close:after {
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.gridtab > dd > .gridtab__controls > .gridtab__close:after {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.gridtab > dd > .gridtab__controls > .gridtab__arrow,
.gridtab > dd > .gridtab__controls > .gridtab__close {
  display: block;
  width: 30px;
  height: 30px;
  overflow: hidden;
  background: #666;
  text-indent: -999px;
  position: relative;
  border-radius: 50px;
  transition: all 300ms ease-out;
}

.gridtab > dd > .gridtab__controls > .gridtab__arrow:hover,
.gridtab > dd > .gridtab__controls > .gridtab__close:hover {
  background: #333;
}

.gridtab > dd > .gridtab__controls > .gridtab__close:hover {
  transform: rotate(90deg);
}

.gridtab > dd > .gridtab__controls > .gridtab__arrow:before,
.gridtab > dd > .gridtab__controls > .gridtab__arrow:after,
.gridtab > dd > .gridtab__controls > .gridtab__close:before,
.gridtab > dd > .gridtab__controls > .gridtab__close:after {
  position: absolute;
  width: 2px;
  height: 10px;
  content: '';
  display: block;
  background: #FFF;
}

.gridtab > dd > .gridtab__controls > .gridtab__arrow:before,
.gridtab > dd > .gridtab__controls > .gridtab__arrow:after {
  top: 50%;
  left: 50%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right;
  transform-origin: right;
  margin: -6px 0 0 -3px;
  height: 8px;
}

.gridtab > dd > .gridtab__controls > .gridtab__arrow:after {
  margin-top: -3px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.gridtab > dd > .gridtab__controls > .gridtab__arrow.is-disabled {
  opacity: 0.25;
}

.gridtab > dd > .gridtab__controls > .gridtab__next {
  -webkit-transform: scale(-1);
  transform: scale(-1);
  -webkit-transform-origin: center;
  transform-origin: center;
}

.gridtab > dt {
  transition: background 1s;
  background: #f2f2f2;
}

.gridtab > dt:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
}

.gridtab > dt.is-disabled {
  pointer-events: none;
}

.gridtab > dt.is-active {
  z-index: 2;
}

.gridtab > dt > img {
  max-width: 100%;
  float: left;
  height: auto;
}

.gridtab[dir="rtl"] > dd > .gridtab__controls {
  right: auto;
  left: 5px;
}

.gridtab[dir="rtl"] > dd > .gridtab__controls > .gridtab__next {
  -webkit-transform: none;
  transform: none;
}

.gridtab[dir="rtl"] > dd > .gridtab__controls > .gridtab__prev {
  -webkit-transform: scale(-1);
  transform: scale(-1);
}

.gridtab[dir="rtl"] > dd > .gridtab__controls > .gridtab__close {
  margin-right: 5px;
  margin-left: 0;
}

.mgp-post-block-modern .mgp-post-block-modern-item .mgp-post-block-modern-excerpt {
  margin-bottom: 10px;
}

.mgp-post-block-modern .mgp-post-block-modern-item .mgp-post-block-modern-read-more {
  margin-bottom: 10px;
  margin-right: 10px;
  font-weight: bolder;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
}

.mgp-post-block-modern .mgp-post-block-modern-item .mgp-post-block-modern-title {
  margin-bottom: 0;
}

.mgp-post-block-modern .mgp-post-block-modern-item .mgp-post-block-modern-desc {
  margin-bottom: 40px;
}

.mgp-post-block-modern .mgp-post-block-modern-item .mgp-post-block-modern-desc ul.mgp-post-block-modern-meta {
  font-weight: bolder;
  margin-bottom: 0;
  margin-top: 0;
  color: #999;
  text-transform: uppercase;
}

.mgp-post-block-modern .mgp-post-block-modern-item .mgp-post-block-modern-desc ul.mgp-post-block-modern-meta li a {
  background: #1e87f0;
  font-size: 11px;
  color: #ffffff;
  padding: 2px 5px;
  font-weight: normal;
  border-radius: 2px;
}

.mgp-post-block-modern .mgp-post-block-modern-item .mgp-post-block-modern-desc h4 {
  margin-top: 5px;
}

.mgp-post-block-modern .mgp-post-block-modern-item .mgp-post-block-modern-desc span {
  color: inherit;
}

.mgp-post-block-modern .mgp-post-block-modern-item.left-part {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 350px;
}

.mgp-post-block-modern .mgp-post-block-modern-item.left-part .mgp-post-block-modern-desc {
  text-align: center;
}

.mgp-post-block-modern .mgp-post-block-modern-item.right-part {
  margin-bottom: 40px;
}

.mgp-post-block-modern .mgp-post-block-modern-item.right-part:last-child {
  margin-bottom: 0;
}

.mgp-post-gallery.mgp-post-gallery-skin-fedara .mgp-post-gallery-skin-fedara-desc {
  position: relative;
  background: #fff;
}

.mgp-post-gallery.mgp-post-gallery-skin-fedara .mgp-post-gallery-skin-fedara-desc:after {
  content: '';
  position: absolute;
  top: 0;
  height: 20px;
  width: 20px;
  background: inherit;
  transform: translate(-50%, -50%) rotate(45deg);
}

.mgp-post-gallery.mgp-post-gallery-skin-fedara .mgp-gallery-item-link {
  background-color: transparent;
  color: #444444;
  border-radius: 3px;
  border: 1px solid;
}

.mgp-post-gallery-skin-fedara-style-right .mgp-post-gallery-skin-fedara-desc:after {
  right: 8px;
}

.mgp-post-gallery-skin-fedara-style-left .mgp-post-gallery-skin-fedara-desc:after {
  left: 30px;
}

.mgp-post-gallery-skin-fedara-style-center .mgp-post-gallery-skin-fedara-desc:after {
  left: 50%;
}

.mgp-post-gallery.mgp-post-gallery-skin-abetis .mgp-gallery-item-link {
  background-color: transparent;
  color: #444444;
  border-radius: 500px;
  border: 1px solid;
}

.mgp-post-gallery.mgp-post-gallery-skin-abetis .mgp-gallery-item-link:hover {
  border-color: #000;
}

.mgp-post-gallery {
  -webkit-box-pack: justify;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: flex-start;
  justify-content: flex-start;
  -webkit-align-content: flex-start;
  -ms-flex-line-pack: start;
  align-content: flex-start;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mgp-post-gallery .mgp-post-gallery-inner {
  position: relative;
  overflow: hidden;
}

.mgp-post-gallery .mgp-overlay {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  text-align: center;
}

.mgp-post-gallery .mgp-gallery-item {
  position: relative;
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transition-timing-function: ease-in-out;
  -moz-transition-timing-function: ease-in-out;
  -o-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  margin: 0;
  text-align: center;
  overflow: hidden;
}

.mgp-post-gallery .mgp-gallery-item .mgp-gallery-item-title {
  color: #666;
}

.mgp-post-gallery .mgp-gallery-item .mgp-gallery-item-title:hover {
  color: #222;
}

.mgp-post-gallery .mgp-gallery-item .mgp-gallery-content-inner > *:not(:first-child) {
  margin-top: 15px;
}

.mgp-post-gallery .mgp-gallery-item .mgp-gallery-item-tags {
  line-height: 1;
  margin-top: 5px;
}

.mgp-post-gallery .mgp-gallery-item .mgp-gallery-item-tags .mgp-gallery-item-tag {
  font-size: 13px;
}

.mgp-post-gallery .mgp-gallery-item .mgp-gallery-item-tags span + span {
  margin-left: 5px;
}

.mgp-post-gallery .mgp-gallery-item .mgp-gallery-thumbnail {
  overflow: hidden;
}

.mgp-post-gallery .mgp-gallery-item .mgp-gallery-thumbnail img {
  width: 100%;
  object-fit: cover;
}

.mgp-post-gallery.mgp-post-gallery-skin-default .mgp-gallery-item-link {
  background-color: #f8f8f8;
  color: #444444;
  border-radius: 500px;
}

.mgp-post-gallery .mgp-gallery-item-link {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  line-height: 1;
  box-sizing: border-box;
  vertical-align: middle;
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
}

.mgp-post-gallery .mgp-gallery-item-link.mgp-link-icon {
  padding: 10px;
}

.mgp-post-gallery .mgp-gallery-item-link.mgp-link-text {
  padding: 8px 20px;
}

.mgp-post-gallery .mgp-gallery-item-link span {
  font-size: 10px;
  font-weight: 700;
}

.mgp-post-gallery .mgp-gallery-item-link:not(:first-child) {
  margin-left: 10px;
}

@media (min-width: 1024px) {
  .filtr-container {
    transition: height 0.5s ease-out;
  }
}

.mgp-price-table {
  text-align: center;
}

.mgp-price-table .mgp-price-table-header {
  background: #222222;
  padding: 30px 0;
}

.mgp-price-table .mgp-price-table-image {
  background: #222222;
}

.mgp-price-table .mgp-price-table-heading {
  margin: 0;
  padding: 0;
  line-height: 1.2;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
}

.mgp-price-table .mgp-price-table-subheading {
  font-size: 13px;
  font-weight: 400;
  color: #fff;
}

.mgp-price-table .mgp-price-table-original-price {
  margin-right: 15px;
  text-decoration: line-through;
  font-size: 0.5em;
  line-height: 1;
  font-weight: 400;
  -webkit-align-self: center;
  -ms-flex-item-align: center;
  align-self: center;
}

.mgp-price-table .mgp-price-table-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  color: #555;
  font-weight: 800;
  font-size: 65px;
  padding: 30px 0;
}

.mgp-price-table .mgp-price-table-price .elementor-typo-excluded {
  line-height: initial;
  letter-spacing: initial;
  text-transform: initial;
  font-weight: initial;
  font-size: initial;
  font-style: initial;
}

.mgp-price-table .mgp-price-table-after-price {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  text-align: left;
  -webkit-align-self: stretch;
  -ms-flex-item-align: stretch;
  align-self: stretch;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.mgp-price-table .mgp-price-table-integer-part {
  line-height: 0.8;
}

.mgp-price-table .mgp-price-table-currency,
.mgp-price-table .mgp-price-table-fractional-part {
  line-height: 1;
  font-size: 0.3em;
}

.mgp-price-table .mgp-price-table-currency {
  margin-right: 3px;
}

.mgp-price-table .mgp-price-table-period {
  width: 100%;
  font-size: 13px;
  font-weight: 400;
}

.mgp-price-table .mgp-price-table-period.mgp-price-table-period-position-below {
  margin-top: 10px;
}

.mgp-price-table .mgp-price-table-period.mgp-price-table-period-position-beside {
  margin-left: 10px;
}

.mgp-price-table .mgp-price-table-features-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  line-height: 1;
  padding: 30px 0;
}

.mgp-price-table .mgp-price-table-features-list li {
  font-size: 14px;
  line-height: 1;
  margin: 0;
  padding: 0;
}

.mgp-price-table .mgp-price-table-features-list li .mgp-price-table-feature-inner {
  margin-left: 15px;
  margin-right: 15px;
}

.mgp-price-table .mgp-price-table-features-list li:not(:first-child):before {
  content: '';
  display: block;
  border: 0 solid rgba(122, 122, 122, 0.3);
  margin: 10px 12.5%;
}

.mgp-price-table .mgp-price-table-features-list i {
  margin-right: 10px;
}

.mgp-price-table .mgp-price-table-footer {
  padding: 30px 0;
}

.mgp-price-table .mgp-price-table-additional_info {
  margin: 10px 0 0 0;
  font-size: 13px;
  line-height: 1.4;
}

.mgp-price-table.mgp-price-table-skin-partait .mgp-price-table-features-list-wrap .mgp-price-table-features-list {
  width: 100%;
}

.mgp-price-table .edd-cart-ajax-alert {
  display: block;
  text-align: center;
}

.mgp-price-table .edd-cart-ajax-alert .edd-cart-added-alert {
  position: relative;
}

.mgp-price-table-ribbon {
  position: absolute;
  top: -30px;
  left: 0;
  right: auto;
  text-align: center;
}

.mgp-price-table-ribbon-inner {
  font-size: 13px;
  line-height: 2;
  font-weight: 800;
  text-transform: uppercase;
  padding: 2px 10px;
  box-sizing: border-box;
}

.mgp-price-table-ribbon.elementor-ribbon-left {
  left: 0;
  right: auto;
}

.mgp-price-table-ribbon.elementor-ribbon-center {
  left: 50%;
  right: auto;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.mgp-price-table-ribbon.elementor-ribbon-right {
  right: 0;
  left: auto;
}

.mgp-price-table-ribbon.elementor-ribbon-justify {
  left: 0;
  right: 0;
}

.elementor-widget-mgp-price-table .elementor-widget-container {
  overflow: hidden;
  background-color: #f8f8f8;
}

.mgp-price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mgp-price-list .mgp-price-list-image {
  max-width: 50%;
  padding-right: 25px;
}

.mgp-price-list .mgp-price-list-image img {
  width: 100%;
}

.mgp-price-list .mgp-price-list-price {
  font-size: 16px;
  font-weight: 700;
}

.mgp-price-list .mgp-price-list-header {
  font-size: 19px;
  font-weight: 600;
}

.mgp-price-list .mgp-price-list-title {
  max-width: 80%;
  color: #444444;
}

.mgp-price-list .mgp-price-list-description {
  font-size: 14px;
  margin: 0;
  color: #999999;
}

.mgp-price-list .mgp-price-list-separator {
  margin-left: 10px;
  border-bottom-style: dotted;
  border-bottom-width: 1px;
  height: 0;
  color: #cccccc;
}

.mgp-price-list li:not(:last-child) {
  margin-bottom: 10px;
}

@media screen and (max-width: 480px) {
  .mgp-price-list .mgp-price-list-image,
  .mgp-price-list .mgp-price-list-separator {
    display: none;
  }

  .mgp-price-list .mgp-price-list-title {
    font-size: 14px;
    max-width: 100%;
  }

  .mgp-price-list .mgp-price-list-description {
    font-size: 12px;
  }

  .mgp-price-list .mgp-grid.mgp-has-image {
    margin-left: 0;
  }
}

.mgp-post-list .mgp-post-list-item .mgp-post-list-excerpt {
  margin-bottom: 10px;
}

.mgp-post-list .mgp-post-list-item .mgp-post-list-link {
  color: #444;
}

.mgp-post-list .mgp-post-list-item .mgp-post-list-link:hover {
  color: #000;
}

.mgp-post-list .mgp-post-list-item .mgp-post-list-read-more {
  margin-right: 10px;
  font-weight: bolder;
  padding-left: 0;
  padding-right: 0;
  display: inline-block;
}

.mgp-post-list .mgp-post-list-item .mgp-post-list-desc .mgp-post-list-meta {
  margin-top: 0;
  color: #999;
}

.mgp-post-list .mgp-post-list-item .mgp-post-list-desc .mgp-post-list-meta * {
  font-size: 13px;
  font-weight: 400;
}

.mgp-post-list .mgp-post-list-item .mgp-post-list-desc span {
  color: inherit;
}

.mgp-post-list .mgp-post-list-item.list-part .mgp-post-list-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 5px;
}

.mgp-post-list .mgp-post-list-item.list-part .mgp-post-list-thumbnail img {
  width: 80px;
  height: auto;
}

.mgp-post-list .mgp-post-list-tag-wrap span {
  padding: 2px 6px;
  color: #fff;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 11px;
}

.mgp-post-list .mgp-post-list-tag-wrap span + span {
  margin-left: 5px;
}

.mgp-post-list.mgp-post-list-skin-base .mgp-has-divider.mgp-child-width-1-2\@m li:nth-child(n+3) > div {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

.mgp-post-list.mgp-post-list-skin-base .mgp-has-divider.mgp-child-width-1-3\@m li:nth-child(n+4) > div {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

.mgp-post-list.mgp-post-list-skin-base .mgp-has-divider.mgp-child-width-1-4\@m li:nth-child(n+5) > div {
  border-top: 1px solid #ddd;
  padding-top: 40px;
}

.mgp-qrcode canvas {
  max-width: 100%;
}

.elementor-widget-mgp-search .mgp-search-default {
  width: 100%;
}

.elementor-widget-mgp-search .mgp-search {
  display: inline-block;
}

.elementor-widget-mgp-search .mgp-search .mgp-search-input {
  border: 0px solid transparent;
}

.mgp-slider .swiper-container {
  cursor: -webkit-grab;
}

.mgp-slider .swiper-button-prev,
.mgp-slider .swiper-container-rtl ~ .swiper-button-next {
  left: 35px;
  right: auto;
}

.mgp-slider .swiper-button-next,
.mgp-slider .swiper-container-rtl ~ .swiper-button-prev {
  right: 35px;
  left: auto;
}

.mgp-slider .swiper-pagination.swiper-pagination-bullets {
  bottom: 20px;
}

.mgp-slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet {
  opacity: 0.4;
}

.mgp-slider .swiper-pagination.swiper-pagination-bullets .swiper-pagination-bullet-active {
  opacity: 1;
}

.mgp-slider .mgp-slide-item {
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.mgp-slider .mgp-slide-item .mgp-slide-desc {
  color: #ffffff;
}

.mgp-slider .mgp-slide-item .mgp-slide-title,
.mgp-slider .mgp-slide-item .mgp-slide-text,
.mgp-slider .mgp-slide-item .mgp-slide-link-wrapper {
  -webkit-transition: all 400ms cubic-bezier(0.19, 0.6, 0.58, 1);
  transition: all 400ms cubic-bezier(0.19, 0.6, 0.58, 1);
  opacity: 0;
  transform: translateX(50px);
}

.mgp-slider .mgp-slide-item .mgp-slide-title {
  transition-delay: 500ms;
  display: inline-block;
  margin: 0;
  color: inherit;
  font-size: 36px;
}

.mgp-slider .mgp-slide-item .mgp-slide-text {
  transition-delay: 700ms;
}

.mgp-slider .mgp-slide-item .mgp-slide-text p:last-child {
  margin-bottom: 0;
}

.mgp-slider .mgp-slide-item .mgp-slide-link-wrapper {
  transition-delay: 900ms;
}

.mgp-slider .mgp-slide-item .mgp-slide-link-wrapper .mgp-slide-link {
  display: inline-block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}

.mgp-slider .mgp-slide-item .mgp-slide-link-wrapper .mgp-slide-link:hover {
  color: #fff;
}

.mgp-slider .mgp-slide-item.swiper-slide-active .mgp-slide-title,
.mgp-slider .mgp-slide-item.swiper-slide-active .mgp-slide-text,
.mgp-slider .mgp-slide-item.swiper-slide-active .mgp-slide-link-wrapper {
  transform: translateX(0);
  opacity: 1;
}

.mgp-slider .mgp-slide-effect-left .mgp-slide-title,
.mgp-slider .mgp-slide-effect-left .mgp-slide-text,
.mgp-slider .mgp-slide-effect-left .mgp-slide-link-wrapper {
  transform: translateX(50px);
}

.mgp-slider .mgp-slide-effect-left.swiper-slide-active .mgp-slide-title,
.mgp-slider .mgp-slide-effect-left.swiper-slide-active .mgp-slide-text,
.mgp-slider .mgp-slide-effect-left.swiper-slide-active .mgp-slide-link-wrapper {
  transform: translateX(0);
}

.mgp-slider .mgp-slide-effect-bottom .mgp-slide-title,
.mgp-slider .mgp-slide-effect-bottom .mgp-slide-text,
.mgp-slider .mgp-slide-effect-bottom .mgp-slide-link-wrapper {
  transform: translateY(50px);
}

.mgp-slider .mgp-slide-effect-bottom.swiper-slide-active .mgp-slide-title,
.mgp-slider .mgp-slide-effect-bottom.swiper-slide-active .mgp-slide-text,
.mgp-slider .mgp-slide-effect-bottom.swiper-slide-active .mgp-slide-link-wrapper {
  transform: translateY(0);
}

.mgp-slideshow .mgp-slideshow-button {
  margin: 1.5em 0 0;
  color: #fff;
}

.mgp-slideshow .mgp-slideshow-content-wrapper {
  max-width: 800px;
}

.mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-title {
  font-size: 1.2rem;
  color: #ffffff;
  margin: 0;
  padding: 0;
}

.mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-pre-title,
.mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-post-title {
  font-size: .75rem;
  font-weight: 400;
  color: #f5f5f5;
  margin: 0;
  padding: 0;
}

.mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-text {
  font-size: .65rem;
  line-height: 1.4;
  color: #f5f5f5;
  margin: .8em 0 0;
}

.mgp-slideshow .mgp-slideshow-content-wrapper div {
  line-height: 1;
}

.mgp-slideshow .mgp-slidenav svg {
  width: 22px;
  height: auto;
}

.mgp-slideshow .mgp-dotnav li a {
  background-color: rgba(0, 0, 0, 0.5);
}

.mgp-slideshow .mgp-dotnav li.mgp-active a {
  background-color: #1e87f0;
}

@media screen and (min-width: 768px) {
  .mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-title {
    font-size: 2.2rem;
  }

  .mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-pre-title,
  .mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-post-title {
    font-size: 1.2rem;
  }

  .mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}

@media screen and (min-width: 1024px) {
  .mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-title {
    font-size: 2.625rem;
    line-height: 1.2;
  }

  .mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-pre-title,
  .mgp-slideshow .mgp-slideshow-content-wrapper .mgp-slideshow-post-title {
    font-size: 1.4rem;
  }
}

.mgp-tabs-container {
  text-align: center;
}

.mgp-tabs-container .mgp-tab {
  padding: 5px;
  border-radius: 50px;
  display: inline-block;
  background-color: #f5f5f5;
}

.mgp-tabs-container .mgp-tab .mgp-tabs-item {
  padding-left: 0;
  display: inline-block;
  float: left;
}

.mgp-tabs-container .mgp-tab .mgp-tabs-item a {
  border-radius: 50px;
  overflow: hidden;
  position: relative;
}

.mgp-tabs-container .mgp-tab .mgp-tabs-item a .mgp-tab-text-wrapper {
  position: relative;
}

.mgp-tabs-container .mgp-tab .mgp-tabs-item a:before {
  height: 100%;
  top: 0;
  z-index: 0;
  content: '';
  width: 0;
  position: absolute;
  left: 0;
  transition: all 300ms ease-out;
}

.mgp-tabs-container .mgp-tab > .mgp-active > a {
  color: #fff;
}

.mgp-tabs-container .mgp-tab > .mgp-active > a:before {
  width: 100%;
  background-color: #1e87f0;
}

.mgp-single-post .mgp-single-post-item .mgp-single-post-excerpt {
  margin-bottom: 10px;
}

.mgp-single-post .mgp-single-post-item .mgp-single-post-link {
  color: #444;
}

.mgp-single-post .mgp-single-post-item .mgp-single-post-link:hover {
  color: #000;
}

.mgp-single-post .mgp-single-post-item .mgp-single-post-desc .mgp-single-post-meta {
  margin-bottom: 10px;
  margin-top: 0;
  color: #999;
}

.mgp-single-post .mgp-single-post-item .mgp-single-post-desc .mgp-single-post-meta * {
  font-size: 13px;
  font-weight: 400;
}

.mgp-single-post .mgp-single-post-item .mgp-single-post-desc a {
  color: inherit;
  text-decoration: none;
}

.mgp-single-post .mgp-single-post-item .mgp-single-post-thumbnail img {
  width: 100%;
}

.mgp-single-post .mgp-single-post-tag-wrap span {
  padding: 4px 8px;
  color: #fff;
  border-radius: 3px;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 10px;
}

.mgp-single-post .mgp-single-post-tag-wrap span + span {
  margin-left: 5px;
}

.mgp-single-post .mgp-single-post-item .mgp-single-post-title {
  color: #ffffff;
}

.mgp-single-post .mgp-single-post-item .mgp-single-post-link:hover .mgp-single-post-title {
  opacity: 0.7;
}

.mgp-single-post .mgp-single-post-item .mgp-overlay-primary {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  opacity: 0.5;
}

.mgp-single-post .mgp-single-post-item:hover .mgp-overlay-primary {
  opacity: 1;
}

.elementor-widget-mgp-single-post .elementor-widget-container {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .mgp-single-post .mgp-single-post-title {
    font-size: 1.3rem;
    line-height: 1;
  }
}

.mgp-tabs .mgp-tabs-item-title {
  outline: none;
  background: #f3f3f3;
  transition: all 300ms cubic-bezier(0, 0.49, 0.27, 0.99);
  position: relative;
}

.mgp-tabs .mgp-tabs-item-title .mgp-tab-text-wrapper {
  display: inline-flex;
}

.mgp-tabs .mgp-switcher-item-content p {
  margin: 0;
}

.mgp-tabs .mgp-switcher-item-content p + p {
  margin: 10px 0 0;
}

.mgp-tabs .mgp-tab .mgp-tabs-item a:after {
  content: '';
  width: 0;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
  transition: all 300ms ease-out;
}

.mgp-tabs .mgp-tab .mgp-active a:after {
  width: 100%;
  background: #1e87f0;
}

.mgp-tabs .mgp-tab.mgp-tab-bottom .mgp-tabs-item a:after {
  top: 0;
  bottom: auto;
}

.mgp-tabs .mgp-tab.mgp-tab-left .mgp-tabs-item a:after,
.mgp-tabs .mgp-tab.mgp-tab-right .mgp-tabs-item a:after {
  width: 3px;
  right: 0;
  left: auto;
  top: 0;
  bottom: auto;
}

.mgp-tabs .mgp-tab.mgp-tab-left .mgp-active a:after,
.mgp-tabs .mgp-tab.mgp-tab-right .mgp-active a:after {
  height: 100%;
}

.mgp-tabs .mgp-tab.mgp-tab-right .mgp-tabs-item a:after {
  left: 0;
  right: auto;
}

.mgp-tabs .mgp-tabs-item.mgp-has-no-title span[class*="mgp-button-icon-align-"] {
  margin: 0 !important;
}

.mgp-timeline .mgp-timeline-item-main-container {
  padding-left: 50px;
  padding-bottom: 50px;
}

.mgp-timeline .mgp-timeline-thumbnail {
  overflow: hidden;
}

.mgp-timeline .mgp-timeline-thumbnail img {
  width: 100%;
  object-fit: cover;
}

.mgp-timeline .mgp-timeline-item-main-wrapper {
  position: relative;
  padding-left: 50px;
}

.mgp-timeline .mgp-timeline-item-main-wrapper .mgp-timeline-item-main-container {
  padding-left: 50px;
}

.mgp-timeline .mgp-timeline-item-main-wrapper .mgp-timeline-item-main {
  position: relative;
}

.mgp-timeline .mgp-timeline-item-main-wrapper .mgp-timeline-line {
  position: absolute;
  top: 0;
  height: 100%;
}

.mgp-timeline .mgp-timeline-item-main-wrapper .mgp-timeline-line span {
  height: 100%;
  position: absolute;
  background-color: #1e87f0;
  transform: translateX(-50%);
  transform-origin: center;
  display: block;
}

.mgp-timeline .mgp-timeline-item-main-wrapper .mgp-timeline-icon {
  position: absolute;
  top: 20px;
  transform: translate(-50%, -50%);
  left: 51px;
}

.mgp-timeline .mgp-timeline-item-main-wrapper .mgp-timeline-icon span {
  position: absolute;
  text-align: center;
  border: 4px solid #1e87f0;
  padding: 20px;
  transform: translate(-50%, -50%);
  border-radius: 130px;
  line-height: 40px;
}

.mgp-timeline .mgp-timeline-meta {
  margin-bottom: 0;
}

.mgp-timeline .mgp-timeline-title,
.mgp-timeline .mgp-timeline-excerpt,
.mgp-timeline .mgp-timeline-excerpt p {
  margin: 0;
  padding: 0;
}

.mgp-timeline .mgp-timeline-readmore {
  margin: 0;
}

.mgp-timeline .mgp-timeline-arrow {
  position: absolute;
  width: 15px;
  height: 15px;
  transform: rotate(45deg);
  z-index: 0;
  top: 15px;
  left: -8px;
}

.mgp-timeline .mgp-timeline-item:nth-last-child(-n+1) .mgp-timeline-item-main-container {
  padding-bottom: 0;
}

.mgp-timeline .mgp-timeline-item:nth-last-child(-n+1) .mgp-timeline-line {
  display: none;
}

.mgp-timeline.mgp-timeline-skin-custom .mgp-timeline-icon span {
  padding: 10px;
  line-height: 1;
}

.mgp-timeline.mgp-timeline-skin-custom .mgp-timeline-icon span .fa {
  height: 18px;
  width: 18px;
  font-size: 18px;
}

.mgp-timeline.mgp-timeline-skin-custom .mgp-timeline-icon span:after {
  display: none;
}

.mgp-timeline-icon-yes .mgp-timeline-icon span:after {
  transform: translate(-50%, -50%);
  transform-origin: center;
  font: normal normal normal 16px/1 FontAwesome;
  position: absolute;
  line-height: inherit;
  content: "\f15c";
}

.mgp-timeline-icon-yes .mgp-timeline-icon.mgp-post-format-standard span:after {
  content: "\f15c";
}

.mgp-timeline-icon-yes .mgp-timeline-icon.mgp-post-format-link span:after {
  content: "\f0c1";
}

.mgp-timeline-icon-yes .mgp-timeline-icon.mgp-post-format-audio span:after {
  content: "\f025";
}

.mgp-timeline-icon-yes .mgp-timeline-icon.mgp-post-format-video span:after {
  content: "\f04b";
}

.mgp-timeline-icon-yes .mgp-timeline-icon.mgp-post-format-gallery span:after {
  content: "\f03e";
}

.mgp-timeline-icon-yes .mgp-timeline-icon.mgp-post-format-quote span:after {
  content: "\f10d";
}

.mgp-timeline-right .mgp-timeline-item .mgp-timeline-item-main-wrapper {
  padding-left: 0;
}

.mgp-timeline-right .mgp-timeline-item.left-part .mgp-timeline-item-main-container,
.mgp-timeline-right .mgp-timeline-item.right-part .mgp-timeline-item-main-container {
  padding-right: 50px;
  padding-left: 0;
}

.mgp-timeline-right .mgp-timeline-item.left-part .mgp-timeline-arrow,
.mgp-timeline-right .mgp-timeline-item.right-part .mgp-timeline-arrow {
  right: -8px;
  left: auto;
}

.mgp-timeline-right .mgp-timeline-item.left-part .mgp-timeline-line,
.mgp-timeline-right .mgp-timeline-item.right-part .mgp-timeline-line {
  right: 0;
}

.mgp-timeline-right .mgp-timeline-item.left-part .mgp-timeline-icon,
.mgp-timeline-right .mgp-timeline-item.right-part .mgp-timeline-icon {
  right: 0;
  left: auto;
}

.mgp-timeline-right .mgp-timeline-date {
  padding: 10px 50px;
}

@media (max-width: 959px) {
  .mgp-timeline-right .mgp-timeline-item .mgp-timeline-item-main-wrapper {
    padding-right: 55px;
  }

  .mgp-timeline-right .mgp-timeline-item.left-part .mgp-timeline-line,
  .mgp-timeline-right .mgp-timeline-item.right-part .mgp-timeline-line {
    right: 55px;
  }

  .mgp-timeline-right .mgp-timeline-item.left-part .mgp-timeline-icon,
  .mgp-timeline-right .mgp-timeline-item.right-part .mgp-timeline-icon {
    right: 55px;
    left: auto;
  }
}

@media (min-width: 960px) {
  .mgp-timeline-center .mgp-timeline-item .mgp-timeline-item-main-wrapper {
    padding-left: 0;
  }

  .mgp-timeline-center .mgp-timeline-item.left-part .mgp-timeline-item-main-container {
    padding-right: 50px;
    padding-left: 0;
  }

  .mgp-timeline-center .mgp-timeline-item.left-part .mgp-timeline-arrow {
    right: -8px;
    left: auto;
  }

  .mgp-timeline-center .mgp-timeline-item.left-part .mgp-timeline-line {
    right: 0;
  }

  .mgp-timeline-center .mgp-timeline-item.left-part .mgp-timeline-icon {
    right: 0;
    left: auto;
  }

  .mgp-timeline-center .mgp-timeline-item.right-part .mgp-timeline-item-main-container {
    padding-left: 50px;
    padding-right: 0;
  }

  .mgp-timeline-center .mgp-timeline-item.right-part .mgp-timeline-icon {
    left: 0;
  }

  .mgp-timeline-center .mgp-timeline-date {
    padding: 10px 50px;
  }

  .mgp-timeline-center .mgp-timeline-item:nth-child(-n+2) .mgp-timeline-item-main-container {
    padding-top: 0;
  }

  .mgp-timeline-center .mgp-timeline-item:nth-child(-n+2) .mgp-timeline-icon {
    top: 22px;
  }

  .mgp-timeline-center .mgp-timeline-item:nth-last-child(-n+2) .mgp-timeline-item-main-container {
    padding-bottom: 0;
  }
}

/* post type fix */
.mgp-timeline figcaption {
  margin-bottom: 0;
}

.mgp-toggle-container .mgp-accordion {
  margin: 0;
  padding: 0;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-content {
  margin: 0;
  padding: 0;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-content p:empty {
  display: none;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item {
  list-style-type: none;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item .mgp-accordion-title {
  text-align: center;
  font-size: 1rem;
  transition: all 300ms cubic-bezier(0, 0.49, 0.27, 0.99);
  position: relative;
  padding: 15px 0;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item .mgp-accordion-title:before {
  content: '';
  position: absolute;
  height: 100px;
  width: 100%;
  left: 0;
  bottom: 100%;
  z-index: 1;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #ffffff 100%);
  transition: all 500ms cubic-bezier(0, 0.49, 0.27, 0.99);
  pointer-events: none;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item .mgp-toggle-close,
.mgp-toggle-container .mgp-accordion .mgp-accordion-item .mgp-toggle-open {
  display: none;
  z-index: 2;
  position: relative;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item.mgp-open .mgp-toggle-close {
  display: inline-block;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item.mgp-open .mgp-accordion-icon-closed {
  display: none;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item.mgp-open .mgp-accordion-icon-opened {
  display: block;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item.mgp-open .mgp-accordion-title:before {
  height: 15px !important;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item:not(.mgp-open) .mgp-toggle-open {
  display: inline-block;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item .mgp-accordion-icon-closed {
  display: block;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-item .mgp-accordion-icon-opened {
  display: none;
}

.mgp-toggle-container .mgp-accordion .mgp-accordion-icon {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  z-index: 2;
}

.mgp-table-of-content .mgp-nav li {
  position: relative;
}

.mgp-table-of-content .mgp-nav li a {
  position: relative;
}

.mgp-table-of-content .mgp-nav li a:before {
  content: '';
  transition: height 500ms cubic-bezier(0.18, 0.86, 0.58, 1);
  height: 0;
  position: absolute;
  left: -10px;
  width: 3px;
  background-color: #1e87f0;
  top: 50%;
  transform: translateY(-50%);
}

.mgp-table-of-content .mgp-nav li.mgp-active > a {
  color: #000;
}

.mgp-table-of-content .mgp-nav li.mgp-active > a:before {
  height: calc(100% - 10px);
}

.mgp-trailer-box img {
  width: 100%;
}

.mgp-trailer-box .mgp-trailer-box-desc-inner .mgp-trailer-box-title {
  margin-bottom: 10px;
}

.mgp-trailer-box .mgp-trailer-box-desc-inner .mgp-trailer-box-title,
.mgp-trailer-box .mgp-trailer-box-desc-inner .mgp-trailer-box-text,
.mgp-trailer-box .mgp-trailer-box-desc-inner .mgp-trailer-box-button {
  text-decoration: none;
  color: inherit;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.25s cubic-bezier(0.13, 0.51, 0.58, 1);
  transition: all 0.25s cubic-bezier(0.13, 0.51, 0.58, 1);
}

.mgp-trailer-box .mgp-trailer-box-desc-inner .mgp-trailer-box-text {
  transition-delay: 50ms;
  margin-top: 10px;
}

.mgp-trailer-box .mgp-trailer-box-desc-inner .mgp-trailer-box-button {
  transition-delay: 100ms;
  display: inline-block;
}

.mgp-trailer-box .mgp-trailer-box-desc-inner .mgp-trailer-box-button .mgp-trailer-box-button-icon-left {
  float: left;
}

.mgp-trailer-box .mgp-trailer-box-desc-inner .mgp-trailer-box-button .mgp-trailer-box-button-icon-right {
  float: right;
}

.mgp-trailer-box:hover .mgp-trailer-box-title,
.mgp-trailer-box:hover .mgp-trailer-box-text,
.mgp-trailer-box:hover .mgp-trailer-box-button {
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}

.elementor-widget-trailer-box .elementor-background-overlay {
  transition: all 0.3s ease-out;
  border-radius: inherit;
}

.elementor-widget-trailer-box .elementor-widget-container {
  position: relative;
}

.mgp-thumb-gallery .mgp-thumb-gallery-thumbnav a {
  position: relative;
}

.mgp-thumb-gallery .mgp-thumb-gallery-thumbnav a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.4);
  transition: background-color 0.1s ease-in-out;
}

.mgp-thumb-gallery .mgp-thumb-gallery-thumbnav a:hover::after {
  background-color: transparent;
}

.mgp-thumb-gallery .mgp-thumb-gallery-thumbnav.mgp-active a::after {
  background-color: transparent;
}

.mgp-thumb-gallery .mgp-thumbnav-vertical > * > a {
  display: block;
}

.mgp-thumb-gallery .mgp-thumb-gallery-thumbnav a {
  height: 80px;
  width: 120px;
}

.mgp-thumb-gallery .mgp-thumb-gallery-title {
  color: #fff;
}

.mgp-thumb-gallery .mgp-thumb-gallery-text {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.mgp-thumb-gallery .mgp-thumb-gallery-button {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 13px;
}

.mgp-thumb-gallery .mgp-thumb-gallery-button:hover {
  color: #fff;
}

.mgp-thumb-gallery .mgp-thumb-gallery-thumbnav a {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.mgp-thumb-gallery .mgp-thumb-gallery-thumbnav a:hover {
  overflow: hidden;
}

.mgp-thumb-gallery .mgp-thumb-gallery-content {
  background-color: rgba(25, 25, 25, 0.5);
  padding: 35px;
  max-width: 600px;
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
  .mgp-thumb-gallery .mgp-thumbnav-wrapper {
    position: relative !important;
    -webkit-transform: translate(0) !important;
    transform: translate(0) !important;
    left: auto !important;
    right: auto !important;
  }

  .mgp-thumb-gallery .mgp-thumbnav {
    display: block;
    flex: none;
    text-align: center;
  }

  .mgp-thumb-gallery .mgp-thumbnav li {
    display: inline-block;
  }

  .mgp-thumb-gallery .mgp-thumbnav-vertical > * {
    padding-left: 15px !important;
  }

  .mgp-thumb-gallery .mgp-thumb-gallery-text {
    display: none;
  }
}

.mgp-testimonial-grid .mgp-testimonial-grid-img-wrapper {
  width: 80px;
  height: 80px;
}

.mgp-testimonial-grid .mgp-testimonial-grid-img-wrapper img {
  width: 100%;
  height: 100%;
}

.mgp-testimonial-grid .mgp-testimonial-grid-text {
  margin-top: 20px;
  margin-bottom: 20px;
}

.mgp-testimonial-grid.mgp-testimonial-grid-layout-2 .mgp-position-top-center {
  top: -40px;
}

.mgp-testimonial-grid.mgp-testimonial-grid-layout-2 .mgp-rating {
  justify-content: center;
}

.mgp-testimonial-grid.mgp-testimonial-grid-layout-2 .mgp-testimonial-grid-title {
  margin-top: 20px;
}

.mgp-testimonial-grid.mgp-testimonial-grid-layout-3 .mgp-testimonial-grid-text {
  margin-top: 0px;
  margin-bottom: 20px;
}

.mgp-testimonial-slider .mgp-testimonial-thumb {
  width: 80px;
  height: 80px;
  margin-right: 40px;
  border-radius: 50%;
  overflow: hidden;
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
}

.mgp-testimonial-slider .mgp-testimonial-thumb img {
  width: 100%;
  height: 100%;
}

.mgp-testimonial-slider .mgp-testimonial-meta .mgp-testimonial-title {
  margin-bottom: 0;
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.4;
}

.mgp-testimonial-slider .mgp-testimonial-meta .mgp-testimonial-address {
  font-size: 14px;
  line-height: 1.5;
}

.mgp-testimonial-slider .mgp-testimonial-text {
  font-size: 20px;
  line-height: 1.5;
  font-style: italic;
  color: #666666;
  padding-top: 80px;
  text-align: center;
  margin-bottom: 40px;
}

.mgp-testimonial-slider .mgp-testimonial-text:before {
  content: '';
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTYuMC4wLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjwhRE9DVFlQRSBzdmcgUFVCTElDICItLy9XM0MvL0RURCBTVkcgMS4xLy9FTiIgImh0dHA6Ly93d3cudzMub3JnL0dyYXBoaWNzL1NWRy8xLjEvRFREL3N2ZzExLmR0ZCI+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgd2lkdGg9IjY0cHgiIGhlaWdodD0iNjRweCIgdmlld0JveD0iMCAwIDk1LjMzMyA5NS4zMzIiIHN0eWxlPSJlbmFibGUtYmFja2dyb3VuZDpuZXcgMCAwIDk1LjMzMyA5NS4zMzI7IiB4bWw6c3BhY2U9InByZXNlcnZlIj4KPGc+Cgk8Zz4KCQk8cGF0aCBkPSJNMzAuNTEyLDQzLjkzOWMtMi4zNDgtMC42NzYtNC42OTYtMS4wMTktNi45OC0xLjAxOWMtMy41MjcsMC02LjQ3LDAuODA2LTguNzUyLDEuNzkzICAgIGMyLjItOC4wNTQsNy40ODUtMjEuOTUxLDE4LjAxMy0yMy41MTZjMC45NzUtMC4xNDUsMS43NzQtMC44NSwyLjA0LTEuNzk5bDIuMzAxLTguMjNjMC4xOTQtMC42OTYsMC4wNzktMS40NDEtMC4zMTgtMi4wNDUgICAgcy0xLjAzNS0xLjAwNy0xLjc1LTEuMTA1Yy0wLjc3Ny0wLjEwNi0xLjU2OS0wLjE2LTIuMzU0LTAuMTZjLTEyLjYzNywwLTI1LjE1MiwxMy4xOS0zMC40MzMsMzIuMDc2ICAgIGMtMy4xLDExLjA4LTQuMDA5LDI3LjczOCwzLjYyNywzOC4yMjNjNC4yNzMsNS44NjcsMTAuNTA3LDksMTguNTI5LDkuMzEzYzAuMDMzLDAuMDAxLDAuMDY1LDAuMDAyLDAuMDk4LDAuMDAyICAgIGM5Ljg5OCwwLDE4LjY3NS02LjY2NiwyMS4zNDUtMTYuMjA5YzEuNTk1LTUuNzA1LDAuODc0LTExLjY4OC0yLjAzMi0xNi44NTFDNDAuOTcxLDQ5LjMwNywzNi4yMzYsNDUuNTg2LDMwLjUxMiw0My45Mzl6IiBmaWxsPSIjMDAwMDAwIi8+CgkJPHBhdGggZD0iTTkyLjQ3MSw1NC40MTNjLTIuODc1LTUuMTA2LTcuNjEtOC44MjctMTMuMzM0LTEwLjQ3NGMtMi4zNDgtMC42NzYtNC42OTYtMS4wMTktNi45NzktMS4wMTkgICAgYy0zLjUyNywwLTYuNDcxLDAuODA2LTguNzUzLDEuNzkzYzIuMi04LjA1NCw3LjQ4NS0yMS45NTEsMTguMDE0LTIzLjUxNmMwLjk3NS0wLjE0NSwxLjc3My0wLjg1LDIuMDQtMS43OTlsMi4zMDEtOC4yMyAgICBjMC4xOTQtMC42OTYsMC4wNzktMS40NDEtMC4zMTgtMi4wNDVjLTAuMzk2LTAuNjA0LTEuMDM0LTEuMDA3LTEuNzUtMS4xMDVjLTAuNzc2LTAuMTA2LTEuNTY4LTAuMTYtMi4zNTQtMC4xNiAgICBjLTEyLjYzNywwLTI1LjE1MiwxMy4xOS0zMC40MzQsMzIuMDc2Yy0zLjA5OSwxMS4wOC00LjAwOCwyNy43MzgsMy42MjksMzguMjI1YzQuMjcyLDUuODY2LDEwLjUwNyw5LDE4LjUyOCw5LjMxMiAgICBjMC4wMzMsMC4wMDEsMC4wNjUsMC4wMDIsMC4wOTksMC4wMDJjOS44OTcsMCwxOC42NzUtNi42NjYsMjEuMzQ1LTE2LjIwOUM5Ni4wOTgsNjUuNTU5LDk1LjM3Niw1OS41NzUsOTIuNDcxLDU0LjQxM3oiIGZpbGw9IiMwMDAwMDAiLz4KCTwvZz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8Zz4KPC9nPgo8L3N2Zz4K);
  opacity: .1;
  width: 64px;
  height: 64px;
  font-weight: 600;
  position: absolute;
  top: -5px;
  left: 50%;
  margin-left: -32px;
}

.mgp-testimonial-slider .swiper-slide .mgp-testimonial-meta,
.mgp-testimonial-slider .swiper-slide .mgp-testimonial-thumb {
  opacity: 0;
  -webkit-transform: translateX(100px);
  -moz-transform: translateX(100px);
  -o-transform: translateX(100px);
  transform: translateX(100px);
  -webkit-transition: all 0.7s cubic-bezier(0.21, 0.44, 0.25, 0.93);
  -moz-transition: all 0.7s cubic-bezier(0.21, 0.44, 0.25, 0.93);
  transition: all 0.7s cubic-bezier(0.21, 0.44, 0.25, 0.93);
}

.mgp-testimonial-slider .swiper-slide .mgp-testimonial-meta {
  -webkit-transition-delay: 0.2s;
  transition-delay: 0.2s;
}

.mgp-testimonial-slider .swiper-slide .mgp-testimonial-thumb {
  -webkit-transition-delay: 0.1s;
  transition-delay: 0.1s;
}

.mgp-testimonial-slider .swiper-slide.swiper-slide-active .mgp-testimonial-meta,
.mgp-testimonial-slider .swiper-slide.swiper-slide-active .mgp-testimonial-thumb {
  opacity: 1;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}

@media (max-width: 1199px) {
  .mgp-testimonial-slider .mgp-testimonial-text {
    font-size: 16px;
  }
}

@media (max-width: 959px) {
  .mgp-testimonial-slider .mgp-testimonial-meta .mgp-testimonial-title {
    font-size: 1rem;
    line-height: 1.2;
  }

  .mgp-testimonial-slider .mgp-testimonial-meta .mgp-testimonial-address {
    font-size: 12px;
    line-height: 1.2;
  }

  .mgp-testimonial-slider .mgp-testimonial-thumb {
    width: 50px;
    height: 50px;
    margin-right: 20px;
  }
}

.mgp-testimonial-carousel .swiper-button-prev,
.mgp-testimonial-carousel .swiper-container-rtl .swiper-button-next {
  left: 10px;
}

.mgp-testimonial-carousel .swiper-button-next,
.mgp-testimonial-carousel .swiper-container-rtl .swiper-button-prev {
  right: 10px;
}

.mgp-testimonial-carousel .mgp-testimonial-carousel-item-wrapper {
  padding: 40px;
  position: relative;
  background-color: #fff;
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}

.mgp-testimonial-carousel .mgp-testimonial-carousel-item-wrapper .testimonial-item-header .mgp-testimonial-carousel-title {
  font-size: 1.2rem;
  line-height: 1.3;
}

.mgp-testimonial-carousel .mgp-testimonial-carousel-item-wrapper .mgp-testimonial-carousel-text {
  border-top: 1px solid rgba(175, 175, 175, 0.15);
  box-sizing: border-box;
  padding-top: 20px;
  margin-top: 20px;
}

.mgp-testimonial-carousel .mgp-testimonial-carousel-item-wrapper .mgp-testimonial-carousel-rating {
  padding-top: 20px;
}

.mgp-testimonial-carousel .mgp-testimonial-carousel-img-wrapper {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  width: 72px;
  height: 72px;
}

.mgp-testimonial-carousel-skin-default .mgp-testimonial-carousel-img-wrapper {
  width: 64px;
  height: 64px;
}

.mgp-testimonial-carousel-skin-vyxo .testimonial-item-header {
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.mgp-testimonial-carousel-skin-vyxo .mgp-testimonial-carousel-text-wrap {
  color: #fff;
  background: #1e87f0;
}

.mgp-testimonial-carousel-skin-vyxo .mgp-testimonial-carousel-text {
  color: inherit;
  margin-bottom: 20px;
}

.mgp-testimonial-carousel-skin-vyxo .mgp-testimonial-carousel-title {
  margin-top: 20px;
}

.mgp-testimonial-carousel-skin-twyla .mgp-testimonial-carousel-img-wrapper {
  display: inline-block;
}

.mgp-testimonial-carousel-skin-twyla .mgp-testimonial-carousel-item-wrapper .mgp-testimonial-carousel-text {
  border-top: 0px solid rgba(175, 175, 175, 0.15);
  padding-top: 20px;
  margin-top: 0px;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-text {
  font-size: 18px;
  font-weight: 300;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-text a {
  opacity: 0.8;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-text a:hover {
  opacity: 1;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-thumb .mgp-twitter-thumb-wrapper {
  display: inline-block;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-thumb img {
  width: 20px;
  height: auto;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-meta-wrapper {
  position: relative;
  height: 35px;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-meta-wrapper .mgp-twitter-time-link {
  display: block;
  color: #b3b9bd;
  font-size: 12px;
  position: absolute;
  right: 0;
  bottom: 0;
  text-transform: uppercase;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-meta-wrapper .mgp-twitter-meta-button {
  position: absolute;
  left: 0;
  bottom: 0;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-meta-wrapper .mgp-twitter-meta-button a {
  color: #b3b9bd;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-meta-wrapper .mgp-twitter-meta-button a:hover {
  color: #838d94;
}

.mgp-twitter-carousel .mgp-carousel-item .mgp-twitter-meta-wrapper .mgp-twitter-meta-button a + a {
  margin-left: 5px;
}

.mgp-table table {
  width: 100%;
  margin: 0 0 1.5em 0;
  border-collapse: collapse;
  font-size: 1em;
}

.mgp-table th {
  font-size: 1em;
  font-weight: 700;
}

@media only screen and (max-width: 40em) {
  .elementor-widget-mgp-table .mgp-table table {
    display: block;
    position: relative;
    width: 100%;
  }

  .elementor-widget-mgp-table .mgp-table table thead {
    display: block;
    float: left;
  }

  .elementor-widget-mgp-table .mgp-table table thead tr {
    display: block;
  }

  .elementor-widget-mgp-table .mgp-table table tbody {
    display: block;
    width: auto;
    position: relative;
    overflow-x: auto;
    white-space: nowrap;
  }

  .elementor-widget-mgp-table .mgp-table table tbody tr {
    display: inline-block;
    vertical-align: top;
  }

  .elementor-widget-mgp-table .mgp-table table th {
    display: block;
    padding: 0.5em 1em !important;
    border-bottom: none;
    border-right: none;
    border-left: none;
  }

  .elementor-widget-mgp-table .mgp-table table th:first-child {
    border-top: none;
  }

  .elementor-widget-mgp-table .mgp-table table td {
    display: block;
    padding: 0.5em 1em !important;
    min-height: 1.25em;
    border-bottom: none;
    border-right: none;
  }

  .elementor-widget-mgp-table .mgp-table table td:first-child {
    border-top: none;
  }
}

.mgp-scroll-image-container {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}

.mgp-scroll-image-container .mgp-scroll-image-holder {
  display: block;
  position: relative;
  width: 100%;
}

.mgp-scroll-image-container .mgp-scroll-image-holder .mgp-icon {
  -webkit-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

.mgp-scroll-image-container .mgp-scroll-image-holder .mgp-scroll-image {
  display: block;
  position: relative;
  width: 100%;
  padding: 0;
  margin: 0;
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 320px;
  overflow: hidden;
  border-top: 1px solid #f2f2f2;
  border-left: 1px solid #f2f2f2;
  border-bottom: 1px solid #f2f2f2;
  border-right: 1px solid #f2f2f2;
  transition: background-position 2s cubic-bezier(0.1, 0.54, 0.43, 0.94);
  -webkit-transition: background-position 2s cubic-bezier(0.1, 0.54, 0.43, 0.94);
}

.mgp-scroll-image-container .mgp-scroll-image-holder .mgp-scroll-image:hover {
  background-position: center bottom !important;
}

.mgp-scroll-button .mgp-scroll-button-align-icon-right {
  float: right;
}

.mgp-scroll-button .mgp-scroll-button-align-icon-left {
  float: left;
}

@media (max-width: 959px) {
  .mgp-scrollnav .mgp-navbar-nav {
    flex-wrap: wrap;
  }

  .mgp-scrollnav .mgp-navbar-nav > li > a {
    height: 40px;
  }
}

@media (max-width: 639px) {
  .mgp-scrollnav .mgp-navbar-nav {
    flex-wrap: wrap;
  }

  .mgp-scrollnav .mgp-navbar-nav > li > a {
    height: 30px;
  }
}

.mgp-user-login .elementor-field-type-submit .elementor-button {
  padding: 12px 20px;
}

.mgp-user-login-skin-dropdown .mgp-dropdown {
  padding: 30px;
  background: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  border-radius: 3px;
}

.mgp-field-group {
  margin-bottom: 10px;
}

.mgp-form-stacked .mgp-field-group.mgp-margin-remove-bottom {
  line-height: 1;
}

.mgp-form-stacked .mgp-field-group .mgp-checkbox {
  margin-right: 3px;
}

.mgp-user-login-password a {
  position: relative;
  display: inline-block;
}

.mgp-user-login-password a:not(:last-child) {
  margin-right: 22px;
}

.mgp-user-login-password a:not(:last-child):after {
  content: '';
  position: absolute;
  width: 5px;
  height: 5px;
  top: 50%;
  right: -15px;
  background-color: rgba(100, 100, 100, 0.39);
  border-radius: 8px;
  margin-top: -2px;
  opacity: .3;
}

.mgp-user-login-modal .mgp-modal-header {
  background: transparent;
  border-radius: inherit;
  border-bottom: 1px solid rgba(153, 153, 153, 0.19);
}

.mgp-user-login-modal .mgp-modal-header .mgp-icon {
  transform: translateY(-3px);
  margin-right: 5px;
}

.mgp-user-login-modal .mgp-modal-close-default {
  top: 18px;
  right: 20px;
}

.mgp-user-login-modal .elementor-field-type-submit .elementor-button {
  padding: 12px 20px;
}

.mgp-download-monitor-button {
  text-align: left;
}

.mgp-download-monitor-button .mgp-dm-description {
  display: inline-block;
}

.mgp-download-monitor-button .mgp-dm-description .mgp-dm-title {
  font-weight: 700;
  text-transform: uppercase;
}

.mgp-download-monitor-button .mgp-dm-description .mgp-dm-meta > * {
  display: inline-block;
  font-size: 12px;
  text-transform: uppercase;
  opacity: 0.7;
  position: relative;
}

.mgp-download-monitor-button .mgp-dm-description .mgp-dm-meta * + * {
  margin-left: 8px;
}

.mgp-download-monitor-button .mgp-dm-description .mgp-dm-meta * + *:before {
  content: '';
  position: absolute;
  width: 1px;
  height: 10px;
  border-left: 1px solid;
  top: 9%;
  left: -6px;
  opacity: 0.5;
}

.wpDataTablesWrapper table.wpDataTable:not(.responsive) tr td {
  text-overflow: clip;
  white-space: normal;
}

@media (max-width: 767px) {
  .wpDataTables {
    overflow-x: auto;
  }
}

/* swiper */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal .swiper-pagination-bullets,
.swiper-container-horizontal + .swiper-pagination-bullets {
  bottom: -50px;
  width: 100%;
}

.swiper-pagination-fraction .swiper-pagination-bullet,
.swiper-pagination-custom .swiper-pagination-bullet,
.swiper-container-horizontal .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-container-horizontal + .swiper-pagination-bullets .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  margin: 0 5px;
}

/* woocommerce */
.elementor-widget-container .woocommerce .product-category a {
  display: block;
  transition: all 350ms cubic-bezier(0.15, 0.83, 0.58, 1);
}

.elementor-widget-container .woocommerce .product-category img {
  transition: all 350ms cubic-bezier(0.15, 0.83, 0.58, 1);
}

.elementor-widget-container .woocommerce-loop-category__title mark {
  background-color: transparent;
  color: inherit;
}

/* Common Less */
.mgp-carousel .swiper-container,
.mgp-testimonial-carousel .swiper-container {
  padding: 10px;
  margin: 0 -10px;
}

/* Button icon align */
.mgp-button-icon-align-left {
  float: left;
}

.mgp-button-icon-align-right {
  float: right;
}

/* Custom grid */
.mgp-ep-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.mgp-ep-grid .mgp-ep-grid-item {
  word-break: break-word;
}

.mgp-ep-grid-1 .mgp-ep-grid-item {
  width: 100%;
}

.mgp-ep-grid-2 .mgp-ep-grid-item {
  width: 50%;
}

.mgp-ep-grid-3 .mgp-ep-grid-item {
  width: 33.33333%;
}

.mgp-ep-grid-4 .mgp-ep-grid-item {
  width: 25%;
}

.mgp-ep-grid-5 .mgp-ep-grid-item {
  width: 20%;
}

.mgp-ep-grid-6 .mgp-ep-grid-item {
  width: 16.66667%;
}

.mgp-ep-grid-7 .mgp-ep-grid-item {
  width: 14.28571%;
}

.mgp-ep-grid-8 .mgp-ep-grid-item {
  width: 12.5%;
}

.mgp-ep-grid-9 .mgp-ep-grid-item {
  width: 11.11111%;
}

.mgp-ep-grid-10 .mgp-ep-grid-item {
  width: 10%;
}

.mgp-ep-grid-11 .mgp-ep-grid-item {
  width: 9.09091%;
}

.mgp-ep-grid-12 .mgp-ep-grid-item {
  width: 8.33333%;
}

@media (max-width: 1024px) {
  .mgp-ep-grid-tablet-1 .mgp-ep-grid-item {
    width: 100%;
  }

  .mgp-ep-grid-tablet-2 .mgp-ep-grid-item {
    width: 50%;
  }

  .mgp-ep-grid-tablet-3 .mgp-ep-grid-item {
    width: 33.33333%;
  }

  .mgp-ep-grid-tablet-4 .mgp-ep-grid-item {
    width: 25%;
  }

  .mgp-ep-grid-tablet-5 .mgp-ep-grid-item {
    width: 20%;
  }

  .mgp-ep-grid-tablet-6 .mgp-ep-grid-item {
    width: 16.66667%;
  }

  .mgp-ep-grid-tablet-7 .mgp-ep-grid-item {
    width: 14.28571%;
  }

  .mgp-ep-grid-tablet-8 .mgp-ep-grid-item {
    width: 12.5%;
  }

  .mgp-ep-grid-tablet-9 .mgp-ep-grid-item {
    width: 11.11111%;
  }

  .mgp-ep-grid-tablet-10 .mgp-ep-grid-item {
    width: 10%;
  }

  .mgp-ep-grid-tablet-11 .mgp-ep-grid-item {
    width: 9.09091%;
  }

  .mgp-ep-grid-tablet-12 .mgp-ep-grid-item {
    width: 8.33333%;
  }
}

@media (max-width: 767px) {
  .mgp-ep-grid-mobile-1 .mgp-ep-grid-item {
    width: 100%;
  }

  .mgp-ep-grid-mobile-2 .mgp-ep-grid-item {
    width: 50%;
  }

  .mgp-ep-grid-mobile-3 .mgp-ep-grid-item {
    width: 33.33333%;
  }

  .mgp-ep-grid-mobile-4 .mgp-ep-grid-item {
    width: 25%;
  }

  .mgp-ep-grid-mobile-5 .mgp-ep-grid-item {
    width: 20%;
  }

  .mgp-ep-grid-mobile-6 .mgp-ep-grid-item {
    width: 16.66667%;
  }

  .mgp-ep-grid-mobile-7 .mgp-ep-grid-item {
    width: 14.28571%;
  }

  .mgp-ep-grid-mobile-8 .mgp-ep-grid-item {
    width: 12.5%;
  }

  .mgp-ep-grid-mobile-9 .mgp-ep-grid-item {
    width: 11.11111%;
  }

  .mgp-ep-grid-mobile-10 .mgp-ep-grid-item {
    width: 10%;
  }

  .mgp-ep-grid-mobile-11 .mgp-ep-grid-item {
    width: 9.09091%;
  }

  .mgp-ep-grid-mobile-12 .mgp-ep-grid-item {
    width: 8.33333%;
  }
}

.mgp-masonry-grid .mgp-gallery-item {
  float: left;
  height: auto;
}

.mgp-masonry-grid .mgp-gallery-item .mgp-gallery-thumbnail img {
  height: auto;
}

/* Swiper */
.swiper-container .elementor-lightbox-content-source {
  display: none;
}

.swiper-slide {
  border-style: solid;
  border-width: 0;
  overflow: hidden;
}

.swiper-container-horizontal + .swiper-pagination-progressbar,
.swiper-container-vertical + .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -ms-transform: scale(0);
  transform: scale(0);
  -ms-transform-origin: left top;
  transform-origin: left top;
}

/* Animation Delay */
.mgp-animated-slow > span {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
}

.mgp-animated-fast > span {
  -webkit-animation-duration: .75s;
  animation-duration: .75s;
}

/* Scrollnav */
.mgp-scrollnav-fixed-yes .elementor-widget-container {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}

.mgp-scrollnav-fixed-yes .mgp-scrollnav {
  position: fixed !important;
}

.mgp-scrollnav-fixed-yes .mgp-scrollnav [class*="mgp-navbar"] {
  margin: 30px;
}

.mgp-comment-container .fb_iframe_widget,
.mgp-comment-container .fb_iframe_widget span,
.mgp-comment-container .fb_iframe_widget iframe {
  width: 100% !important;
}

.mgp-ep-grid-filters {
  text-align: center;
}

.mgp-ep-grid-filters .mgp-ep-grid-filter {
  cursor: pointer;
  display: inline-block;
  font-weight: 700;
}

.mgp-ep-grid-filters .mgp-ep-grid-filter.mgp-active {
  border-bottom: 2px solid #444;
}

@media (min-width: 1024px) {
  .mgp-ep-grid-filter-container {
    transition: height 0.5s ease-out;
  }
}

.mgp-document-viewer iframe {
  border: none;
}

/*---------------------------*/
/* 28. Dual Color Heading
/*---------------------------*/
.eael-dual-header {
  display: block;
  margin-bottom: 50px;
}

.eael-dual-header .title,
.eael-dual-header .title span {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 48px;
  margin: 10px 0px;
}

.eael-dual-header .subtext {
  font-size: 16px;
  display: block;
}

.eael-dual-header i {
  display: block;
  padding: 0px;
  margin: 20px 0px 10px 0px;
  font-size: 36px;
}

.eael-dual-header .title span.lead {
  color: #1abc9c;
}

/*--- Dual Header Builder Related Css ---*/
.eael-dual-header-content-align-center {
  text-align: center;
}

.eael-dual-header-content-align-left {
  text-align: left;
}

.eael-dual-header-content-align-right {
  text-align: right;
}

/*YANDEX MAP*/
.mgpym-map {
  height: 300px;
  background: #f2f2f2 url("../images/placeholder.svg") no-repeat center / 100px auto;
  box-shadow: inset 0px 0px 60px 0px rgba(0, 0, 0, 0.2);
}

.mgpym-map-container h6 {
  margin: 0;
}

.mgpym-map-container p {
  margin-bottom: 0;
}

.mgp-advanced-icon-box .mgp-icon-wrapper {
  display: inline-block;
  line-height: 1;
  transition: all 350ms cubic-bezier(.24, .85, .58, 1);
  color: #818a91;
  font-size: 48px;
  width: 48px;
  height: auto;
  text-align: center;
  overflow: hidden;
  position: relative;
  box-sizing: content-box
}

.mgp-advanced-icon-box .mgp-icon-wrapper:hover {
  color: #818a91
}

.mgp-advanced-icon-box .mgp-icon-wrapper i, .mgp-advanced-icon-box .mgp-icon-wrapper img {
  position: relative;
  display: block;
  transition: transform 350ms cubic-bezier(.24, .85, .58, 1);
  z-index: 1
}

.mgp-advanced-icon-box .mgp-icon-wrapper i:before, .mgp-advanced-icon-box .mgp-icon-wrapper img:before {
  position: absolute;
  left: 50%;
  transform: translateX(-50%)
}

.mgp-advanced-icon-box .mgp-icon-wrapper i {
  width: 1em;
  height: 1em
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-none .mgp-advanced-icon-box .mgp-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all .3s ease-out;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-none .mgp-advanced-icon-box:hover .mgp-icon-wrapper:after {
  opacity: 1
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-a .mgp-advanced-icon-box .mgp-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all .3s ease-out;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0;
  transform: scale(0);
  top: 0;
  left: 0;
  border-radius: 200px
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-a .mgp-advanced-icon-box:hover .mgp-icon-wrapper {
  background-color: transparent
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-a .mgp-advanced-icon-box:hover .mgp-icon-wrapper:after {
  opacity: 1;
  transform: scale(1.5)
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-g .mgp-advanced-icon-box .mgp-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all .3s ease-out;
  width: 0;
  height: 103%;
  top: 50%;
  left: 50%;
  z-index: -1;
  opacity: 0;
  transform: translateX(-50%) translateY(-50%)
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-g .mgp-advanced-icon-box:hover .mgp-icon-wrapper {
  background-color: transparent
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-g .mgp-advanced-icon-box:hover .mgp-icon-wrapper:after {
  width: 90%;
  opacity: 1
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-b .mgp-advanced-icon-box .mgp-icon-wrapper {
  overflow: hidden
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-b .mgp-advanced-icon-box .mgp-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all .3s ease-out;
  width: 100%;
  height: 0;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%) rotate(45deg)
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-b .mgp-advanced-icon-box:hover .mgp-icon-wrapper {
  background-color: transparent
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-b .mgp-advanced-icon-box:hover .mgp-icon-wrapper:after {
  height: 260%;
  opacity: 1
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-c .mgp-advanced-icon-box .mgp-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all .3s ease-out;
  width: 101%;
  height: 0;
  top: 50%;
  left: 50%;
  opacity: 0;
  z-index: -1;
  transform: translateX(-50%) translateY(-50%)
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-c .mgp-advanced-icon-box:hover .mgp-icon-wrapper {
  background-color: transparent
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-c .mgp-advanced-icon-box:hover .mgp-icon-wrapper:after {
  height: 75%;
  opacity: 1
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-d .mgp-advanced-icon-box .mgp-icon-wrapper:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 150%;
  height: 100%;
  z-index: -1;
  transform: rotate3d(0, 0, 1, -45deg) translate3d(0, -3em, 0);
  transform-origin: 0 100%;
  transition: transform .3s, opacity .3s, background-color .3s
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-d .mgp-advanced-icon-box:hover .mgp-icon-wrapper {
  background-color: transparent
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-d .mgp-advanced-icon-box:hover .mgp-icon-wrapper:after {
  opacity: 1;
  transform: rotate3d(0, 0, 1, 0deg);
  transition-timing-function: cubic-bezier(.2, 1, .3, 1)
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-e .mgp-advanced-icon-box .mgp-icon-wrapper:after {
  content: '';
  position: absolute;
  transition: all .3s ease-out;
  width: 100%;
  height: 0;
  top: 0;
  left: 0;
  z-index: -1
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-e .mgp-advanced-icon-box:hover .mgp-icon-wrapper {
  background-color: transparent
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-e .mgp-advanced-icon-box:hover .mgp-icon-wrapper:after {
  height: 100%
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-f .mgp-advanced-icon-box .mgp-icon-wrapper:after {
  content: '';
  position: absolute;
  z-index: -1;
  transition: all .3s ease-out;
  background: #666;
  width: 0;
  height: 100%;
  top: 0;
  left: 0
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-f .mgp-advanced-icon-box:hover .mgp-icon-wrapper {
  background-color: transparent
}

.elementor-widget-mgp-advanced-icon-box.mgp-icon-effect-f .mgp-advanced-icon-box:hover .mgp-icon-wrapper:after {
  width: 100%
}

.elementor-widget-mgp-advanced-icon-box.mgp-readmore-on-hover-yes .mgp-advanced-icon-box .mgp-advanced-icon-box-readmore {
  margin-top: 26px;
  position: absolute;
  transform: translate(-50%, 0);
  opacity: 0;
  transition: opacity 350ms cubic-bezier(.24, .85, .58, 1)
}

.elementor-widget-mgp-advanced-icon-box.mgp-readmore-on-hover-yes .mgp-advanced-icon-box:hover .mgp-advanced-icon-box-readmore {
  opacity: 1
}

.elementor-widget-mgp-advanced-icon-box .mgp-advanced-icon-box {
  text-align: center
}

.elementor-widget-mgp-advanced-icon-box .mgp-advanced-icon-box-title {
  font-weight: 700;
  font-size: 1.25rem
}

.elementor-widget-mgp-advanced-icon-box .mgp-advanced-icon-box-title a {
  color: inherit
}

.elementor-widget-mgp-advanced-icon-box .mgp-advanced-icon-box-description {
  margin-bottom: 20px
}

.elementor-widget-mgp-advanced-icon-box.mgp-global-link-yes .mgp-advanced-icon-box:hover {
  cursor: pointer
}

.elementor-widget-mgp-advanced-icon-box.mgp-title-link-yes .mgp-advanced-icon-box-title:hover {
  cursor: pointer
}

.elementor-widget-mgp-advanced-icon-box .mgp-advanced-icon-box {
  text-align: center
}

.elementor-widget-mgp-advanced-icon-box .mgp-advanced-icon-box-title {
  font-weight: 700;
  font-size: 1.25rem
}

.elementor-widget-mgp-advanced-icon-box .mgp-advanced-icon-box-title a {
  color: inherit
}

.elementor-widget-mgp-advanced-icon-box .mgp-advanced-icon-box-description {
  margin-bottom: 20px
}

@media (min-width: 768px) {
  .elementor-widget-mgp-advanced-icon-box.elementor-position-left .mgp-advanced-icon-box {
    display: flex;
    text-align: left;
    flex-direction: row
  }

  .elementor-widget-mgp-advanced-icon-box.elementor-position-left .mgp-advanced-icon-box-icon {
    flex: 0 0 auto
  }

  .elementor-widget-mgp-advanced-icon-box.elementor-position-right .mgp-advanced-icon-box {
    display: flex;
    text-align: right;
    flex-direction: row-reverse
  }

  .elementor-widget-mgp-advanced-icon-box.elementor-position-right .mgp-advanced-icon-box-icon {
    flex: 0 0 auto
  }

  .elementor-widget-mgp-advanced-icon-box.elementor-position-top .mgp-advanced-icon-box-img {
    margin: auto
  }

  .elementor-widget-mgp-advanced-icon-box.elementor-vertical-align-top .mgp-advanced-icon-box {
    align-items: flex-start
  }

  .elementor-widget-mgp-advanced-icon-box.elementor-vertical-align-middle .mgp-advanced-icon-box {
    align-items: center
  }

  .elementor-widget-mgp-advanced-icon-box.elementor-vertical-align-bottom .mgp-advanced-icon-box {
    align-items: flex-end
  }

  .elementor-widget-mgp-advanced-icon-box .mgp-indicator-svg {
    position: absolute;
    left: 100%;
    top: 0;
    width: 150px;
    height: auto;
    transform-origin: center center;
    transform: translateX(0);
    z-index: 10
  }

  .elementor-widget-mgp-advanced-icon-box .mgp-indicator-svg svg {
    height: auto;
    width: 100%
  }
}

@media (max-width: 767px) {
  .elementor-widget-mgp-advanced-icon-box .mgp-advanced-icon-box-icon {
    margin-left: auto !important;
    margin-right: auto !important;
    margin-bottom: 15px
  }
}

.elementor-widget-mgp-advanced-icon-box.mgp-link-icon-on-hover-yes .mgp-scroll-image .mgp-single-post-link {
  opacity: 0;
  transition: opacity 350ms cubic-bezier(.24, .85, .58, 1)
}

.elementor-widget-mgp-advanced-icon-box.mgp-link-icon-on-hover-yes .mgp-scroll-image:hover .mgp-advanced-icon-box-readmore {
  opacity: 1
}

.elementor-widget-mgp-scroll-image.mgp-link-icon-on-hover-yes .mgp-scroll-image-holder:hover .mgp-advanced-icon-box-readmore {
  opacity: 1
}

.mgp-advanced-button-hover-text {
  display: none;
}

.mgp-advanced-button-content-wrapper_hover-text:hover .mgp-advanced-button-text {
  display: none;
}

.leaflet-pane, .leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-tile-container, .leaflet-pane > svg, .leaflet-pane > canvas, .leaflet-zoom-box, .leaflet-image-layer, .leaflet-layer {
  position: absolute;
  left: 0;
  top: 0
}

.leaflet-container {
  overflow: hidden
}

.leaflet-tile, .leaflet-marker-icon, .leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none
}

.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast
}

.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0
}

.leaflet-marker-icon, .leaflet-marker-shadow {
  display: block
}

.leaflet-container .leaflet-overlay-pane svg, .leaflet-container .leaflet-marker-pane img, .leaflet-container .leaflet-shadow-pane img, .leaflet-container .leaflet-tile-pane img, .leaflet-container img.leaflet-image-layer, .leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important
}

.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y
}

.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  touch-action: none;
  touch-action: pinch-zoom
}

.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none
}

.leaflet-container {
  -webkit-tap-highlight-color: transparent
}

.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4)
}

.leaflet-tile {
  filter: inherit;
  visibility: hidden
}

.leaflet-tile-loaded {
  visibility: inherit
}

.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800
}

.leaflet-overlay-pane svg {
  -moz-user-select: none
}

.leaflet-pane {
  z-index: 400
}

.leaflet-tile-pane {
  z-index: 200
}

.leaflet-overlay-pane {
  z-index: 400
}

.leaflet-shadow-pane {
  z-index: 500
}

.leaflet-marker-pane {
  z-index: 600
}

.leaflet-tooltip-pane {
  z-index: 650
}

.leaflet-popup-pane {
  z-index: 700
}

.leaflet-map-pane canvas {
  z-index: 100
}

.leaflet-map-pane svg {
  z-index: 200
}

.leaflet-vml-shape {
  width: 1px;
  height: 1px
}

.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute
}

.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  pointer-events: auto
}

.leaflet-top, .leaflet-bottom {
  position: absolute;
  z-index: 400;
  pointer-events: none
}

.leaflet-top {
  top: 0
}

.leaflet-right {
  right: 0
}

.leaflet-bottom {
  bottom: 0
}

.leaflet-left {
  left: 0
}

.leaflet-control {
  float: left;
  clear: both
}

.leaflet-right .leaflet-control {
  float: right
}

.leaflet-top .leaflet-control {
  margin-top: 10px
}

.leaflet-bottom .leaflet-control {
  margin-bottom: 10px
}

.leaflet-left .leaflet-control {
  margin-left: 10px
}

.leaflet-right .leaflet-control {
  margin-right: 10px
}

.leaflet-fade-anim .leaflet-tile {
  will-change: opacity
}

.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity .2s linear;
  -moz-transition: opacity .2s linear;
  transition: opacity .2s linear
}

.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1
}

.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  will-change: transform
}

.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform .25s cubic-bezier(0, 0, .25, 1);
  -moz-transition: -moz-transform .25s cubic-bezier(0, 0, .25, 1);
  transition: transform .25s cubic-bezier(0, 0, .25, 1)
}

.leaflet-zoom-anim .leaflet-tile, .leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none
}

.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden
}

.leaflet-interactive {
  cursor: pointer
}

.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab
}

.leaflet-crosshair, .leaflet-crosshair .leaflet-interactive {
  cursor: crosshair
}

.leaflet-popup-pane, .leaflet-control {
  cursor: auto
}

.leaflet-dragging .leaflet-grab, .leaflet-dragging .leaflet-grab .leaflet-interactive, .leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing
}

.leaflet-marker-icon, .leaflet-marker-shadow, .leaflet-image-layer, .leaflet-pane > svg path, .leaflet-tile-container {
  pointer-events: none
}

.leaflet-marker-icon.leaflet-interactive, .leaflet-image-layer.leaflet-interactive, .leaflet-pane > svg path.leaflet-interactive {
  pointer-events: visiblePainted;
  pointer-events: auto
}

.leaflet-container {
  background: #ddd;
  outline: 0
}

.leaflet-container a {
  color: #0078A8
}

.leaflet-container a.leaflet-active {
  outline: 2px solid orange
}

.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5)
}

.leaflet-container {
  font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif
}

.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px
}

.leaflet-bar a, .leaflet-bar a:hover {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black
}
.mgp-advanced-button-content-wrapper_hover-text:hover .mgp-advanced-button-hover-text {
  display: block;
}

.mgp-adv-product-gallery__trigger {
  position: absolute;
  top: .5em;
  right: .5em;
  font-size: 2em;
  z-index: 9;
  width: 36px;
  height: 36px;
  background: #fff;
  text-indent: -9999px;
  border-radius: 100%;
  box-sizing: content-box;
  backface-visibility: hidden;
}

.mgp-adv-product-gallery__trigger::before {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid #000;
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 9px;
  box-sizing: content-box;
}

.leaflet-bar a, .leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block
}

.leaflet-bar a:hover {
  background-color: #f4f4f4
}

.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px
}

.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none
}

.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb
}

.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px
}

.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px
}

.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px
}

.leaflet-control-zoom-in, .leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px
}

.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px
}

.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px
}

.leaflet-control-layers-toggle {
  background-image: url(images/layers.png);
  width: 36px;
  height: 36px
}

.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(images/layers-2x.png);
  background-size: 26px 26px
}

.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px
}

.leaflet-control-layers .leaflet-control-layers-list, .leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none
}

.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative
}
.mgp-adv-product-gallery__trigger::after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: #000;
  border-radius: 6px;
  position: absolute;
  top: 19px;
  left: 22px;
  transform: rotate(-45deg);
  box-sizing: content-box;
}

.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff
}

.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px
}

.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px
}

.leaflet-control-layers label {
  display: block
}

.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px
}

.leaflet-default-icon-path {
  background-image: url(images/marker-icon.png)
}

.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.7);
  margin: 0
}

.leaflet-control-attribution, .leaflet-control-scale-line {
  padding: 0 5px;
  color: #333
}

.leaflet-control-attribution a {
  text-decoration: none
}

.leaflet-control-attribution a:hover {
  text-decoration: underline
}

.leaflet-container .leaflet-control-attribution, .leaflet-container .leaflet-control-scale {
  font-size: 11px
}

.leaflet-left .leaflet-control-scale {
  margin-left: 5px
}

.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px
}

.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  font-size: 11px;
  white-space: nowrap;
  overflow: hidden;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: #fff;
  background: rgba(255, 255, 255, 0.5)
}

.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px
}

.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777
}

.leaflet-touch .leaflet-control-attribution, .leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
  box-shadow: none
}

.leaflet-touch .leaflet-control-layers, .leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box
}

.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px
}
.elementor div.mgp-adv-product-gallery--columns-3 .flex-control-thumbs li {
  width: 32%;
  width: calc(33.33% - 0.7em);
  margin-right: 1em;
  margin-bottom: 1em;
}

.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px
}

.leaflet-popup-content {
  margin: 13px 19px;
  line-height: 1.4
}

.leaflet-popup-content p {
          margin: 18px 0
        }
.elementor div.mgp-adv-product-gallery--columns-4 .flex-control-thumbs li {
  width: 24%;
  width: calc(25% - 0.75em);
  margin-right: 1em;
  margin-bottom: 1em;
}

.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none
}

.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg)
}
.leaflet-popup-content-wrapper, .leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4)
}

.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  padding: 4px 4px 0 0;
  border: none;
  text-align: center;
  width: 18px;
  height: 14px;
  font: 16px/14px Tahoma, Verdana, sans-serif;
  color: #c3c3c3;
  text-decoration: none;
  font-weight: bold;
  background: transparent
}

.leaflet-container a.leaflet-popup-close-button:hover {
  color: #999
}

.leaflet-popup-scrolled {
  overflow: auto;
  border-bottom: 1px solid #ddd;
  border-top: 1px solid #ddd
}
.elementor div.mgp-adv-product-gallery--columns-5 .flex-control-thumbs li {
  width: 18.5%;
  width: calc(20% - 0.8em);
  margin-right: 1em;
  margin-bottom: 1em;
}

.leaflet-oldie .leaflet-popup-content-wrapper {
  zoom: 1
}

.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=.70710678, M12=.70710678, M21=-0.70710678, M22=.70710678)
}

.leaflet-oldie .leaflet-popup-tip-container {
  margin-top: -1px
}

.leaflet-oldie .leaflet-control-zoom, .leaflet-oldie .leaflet-control-layers, .leaflet-oldie .leaflet-popup-content-wrapper, .leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999
}

.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666
}

.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4)
}

.leaflet-tooltip.leaflet-clickable {
  cursor: pointer;
  pointer-events: auto
}

.leaflet-tooltip-top:before, .leaflet-tooltip-bottom:before, .leaflet-tooltip-left:before, .leaflet-tooltip-right:before {
          position: absolute;
          pointer-events: none;
          border: 6px solid transparent;
          background: transparent;
          content: ""
        }
.mgp-advanced-button-wrapper_shortcode .mgp-advanced-button__shortcode {
  position: absolute;
  margin: -10px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  z-index: 10;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -ms-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.leaflet-tooltip-bottom {
  margin-top: 6px
}

.leaflet-tooltip-top {
  margin-top: -6px
}

.leaflet-tooltip-bottom:before, .leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px
}

.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff
}

.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff
}

.leaflet-tooltip-left {
  margin-left: -6px
}

.leaflet-tooltip-right {
  margin-left: 6px
}

.leaflet-tooltip-left:before, .leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px
}

.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff
}

.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff
}

.mgp-helpdesk {
  z-index: 99;
  position: relative
}

.mgp-helpdesk .mgp-helpdesk-icons {
  filter: url("#mgp-helpdesk-icon-wrapper")
}

.mgp-helpdesk .hamburger {
  width: 40%;
  height: 3px;
  background: white;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: transform 200ms;
  transform: translateX(-50%)
}

.mgp-helpdesk .mgp-helpdesk-icons-item, .mgp-helpdesk .mgp-helpdesk-icons-open-button {
  background: #14ABF4;
  border-radius: 100%;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin-left: -25px;
  position: absolute;
  bottom: 0;
  right: 0;
  color: white;
  text-align: center;
  transform: translate3d(0, 0, 0);
  transition: all ease-out 200ms
}

.mgp-helpdesk .mgp-helpdesk-icons-open {
  display: none
}

.mgp-helpdesk .mgp-helpdesk-icons {
  position: fixed;
  bottom: 30px;
  height: 480px;
  width: 70px;
  box-sizing: border-box;
  font-size: 20px;
  text-align: center
}

.mgp-helpdesk span.helpdesk-intro-text {
  position: absolute;
  right: 100%;
  background: #fff;
  box-shadow: 0 3px 13px 0 rgba(0, 0, 0, 0.09);
  width: 234px;
  color: #333;
  font-size: 14px;
  line-height: normal;
  padding: 15px 30px;
  text-align: left;
  border-radius: 80px;
  margin-right: 10px;
  bottom: 6px
}

.mgp-helpdesk .mgp-helpdesk-icons-item svg {
  width: 20px;
  height: auto
}

.mgp-helpdesk .mgp-helpdesk-icons-item:hover {
  background: white;
  color: #14ABF4;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.15)
}

.mgp-helpdesk .mgp-helpdesk-icons-item:nth-child(3), .mgp-helpdesk .mgp-helpdesk-icons-item:nth-child(4), .mgp-helpdesk .mgp-helpdesk-icons-item:nth-child(5), .mgp-helpdesk .mgp-helpdesk-icons-item:nth-child(6) {
  transition-duration: 180ms
}

.mgp-helpdesk .mgp-helpdesk-icons-open-button {
  z-index: 2;
  transition-timing-function: cubic-bezier(.175, .885, .32, 1.275);
  transition-duration: 400ms;
  cursor: pointer
}

.mgp-helpdesk .mgp-helpdesk-icons-open-button:hover {
  transform: scale(1.1, 1.1) translate3d(0, 0, 0)
}

.mgp-helpdesk .mgp-helpdesk-icons-open:checked + .mgp-helpdesk-icons-open-button {
  transition-timing-function: linear;
  transition-duration: 200ms
}

.mgp-helpdesk .mgp-helpdesk-icons-open:checked + .mgp-helpdesk-icons-open-button .fa.fa-support {
  animation: helpdeskrotate 3s cubic-bezier(.3, .4, .3, .95) 0s infinite normal
}

.mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item {
  transition-timing-function: cubic-bezier(.43, 1.04, .53, .95)
}

.mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item:nth-child(3) {
  transition-duration: 220ms;
  transform: translate3d(0, -60px, 0)
}

.mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item:nth-child(4) {
  transition-duration: 320ms;
  transform: translate3d(0, -120px, 0)
}

.mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item:nth-child(5) {
  transition-duration: 420ms;
  transform: translate3d(0, -180px, 0)
}

.mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item:nth-child(6) {
  transition-duration: 520ms;
  transform: translate3d(0, -240px, 0)
}

.mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item:nth-child(7) {
  transition-duration: 620ms;
  transform: translate3d(0, -300px, 0)
}

@media (min-width: 960px) {
  .mgp-helpdesk .mgp-helpdesk-icons-item, .mgp-helpdesk .mgp-helpdesk-icons-open-button {
    width: 60px;
    height: 60px;
    line-height: 60px
  }

  .mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item:nth-child(3) {
    transition-duration: 190ms;
    transform: translate3d(0, -70px, 0)
  }

  .mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item:nth-child(4) {
    transition-duration: 290ms;
    transform: translate3d(0, -140px, 0)
  }

  .mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item:nth-child(5) {
    transition-duration: 390ms;
    transform: translate3d(0, -210px, 0)
  }

  .mgp-helpdesk .mgp-helpdesk-icons-open:checked ~ .mgp-helpdesk-icons-item:nth-child(6) {
    transition-duration: 490ms;
    transform: translate3d(0, -280px, 0)
  }
  .elementor-widget-mgp-threesixty-product-viewer .mgp-icon {
    transition: all .25s ease-out
  }

  .elementor-widget-mgp-threesixty-product-viewer.mgp-tspv-fb-icon-on-hover-yes .mgp-icon {
    opacity: 0;
    transition: opacity 350ms cubic-bezier(.24, .85, .58, 1)
  }

  .elementor-widget-mgp-threesixty-product-viewer.mgp-tspv-fb-icon-on-hover-yes:hover .mgp-icon {
    opacity: 1
  }
=======
  opacity: 0;
  z-index: 10;
  -webkit-transition: opacity .3s;
  -moz-transition: opacity .3s;
  -ms-transition: opacity .3s;
  -o-transition: opacity .3s;
  transition: opacity .3s;
}

.mgp-advanced-button-wrapper_shortcode:hover > .mgp-advanced-button {
  opacity: 0;
}

.mgp-advanced-button-wrapper_shortcode:hover .mgp-advanced-button__shortcode {
  opacity: 1;
}

.ee-pagination .page-numbers:last-child, .ee-swiper__pagination .swiper-pagination-bullet:last-child {
  margin-right: 0 !important
}

.ee-grid__item, .ee-player__source {
  vertical-align: top
}

.ee-grid-align--stretch .ee-gallery .ee-media__thumbnail img, .ee-grid-masonry-layout--mixed .ee-media__thumbnail img, .ee-media--stretch .ee-media__thumbnail img, .ee-media.ee-media--stretch__thumbnail img, .ee-player video[poster], .ee-posts-thumbnail-ratio .ee-post__media__thumbnail img {
  object-fit: cover
}

.ee-hamburger--3dx .ee-hamburger-box, .ee-hamburger--3dx-r .ee-hamburger-box, .ee-hamburger--3dxy .ee-hamburger-box, .ee-hamburger--3dxy-r .ee-hamburger-box, .ee-hamburger--3dy .ee-hamburger-box, .ee-hamburger--3dy-r .ee-hamburger-box {
  perspective: 5em
}

.ee-arrow__svg, .ee-calendar-skin--compact .ee-calendar__day__header, .ee-calendar-skin--compact .ee-calendar__events, .ee-center, .ee-center-horizontal, .ee-center-vertical, .ee-circle-progress-position--inside .ee-circle-progress__value, .ee-circle-progress__icon, .ee-cover, .ee-effect .ee-button:after, .ee-effect .ee-button:before, .ee-gallery-slider__preview .ee-arrow, .ee-heading__long-shadow, .ee-heading__text-shadow, .ee-hotspot__wrapper:before, .ee-hotspots__container, .ee-image-comparison__handle:before, .ee-media__content, .ee-media__overlay, .ee-pa, .ee-player__controls__overlay, .ee-player__controls__overlay .ee-player__control:before, .ee-player__cover, .ee-player__cover:after, .ee-post__media__content, .ee-post__media__overlay, .ee-stretch, .ee-swiper__button, .ee-switcher .ee-loader, .ee-switcher-skin--overlay .ee-switcher__media-wrapper, .ee-switcher__media__items, .ee-timeline .timeline-item__card__arrow:after, .ee-timeline--vertical.ee-timeline-align--middle.ee-timeline .timeline-item__card__arrow, .ee-unfold__separator, .elementor-widget-devices-extended .ee-device__media__screen, .elementor-widget-devices-extended .ee-device__shape {
  position: absolute
}

.ee-hotspots, .ee-pr, .ee-timeline .timeline-item {
  position: relative
}

.ee-grid__notice--not-found, .ee-load-status, .ee-pagination--is, .ee-screen-reader-text, .ee-swiper__container {
  display: none
}

.ee-load-button, .ee-load-status, .ee-text--center, .elementor-widget-circle-progress {
  text-align: center
}

.ee-text--left {
  text-align: left
}

.ee-text--right {
  text-align: right
}

.ee-text--justify {
  text-align: justify
}

.ee-italic {
  font-style: italic
}

.ee-list--unstyled {
  list-style: none
}

.ee-arrow__svg, .ee-effect .ee-button:after, .ee-effect .ee-button:before, .ee-hotspot__wrapper:before, .ee-hotspots__container, .ee-media__content, .ee-media__overlay, .ee-player__cover, .ee-player__cover:after, .ee-post__media__content, .ee-post__media__overlay, .ee-stretch, .ee-switcher .ee-loader, .ee-switcher-skin--overlay .ee-switcher__media-wrapper, .ee-switcher__media__items, .ee-unfold__separator, .elementor-widget-devices-extended .ee-device__media__screen {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0
}

.ee-calendar-skin--compact .ee-calendar__day__header, .ee-calendar-skin--compact .ee-calendar__events, .ee-cover, .ee-fill, .ee-heading__long-shadow, .ee-heading__text-shadow {
  width: 100%;
  height: 100%
}

.ee-calendar-skin--compact .ee-calendar__day__header, .ee-calendar-skin--compact .ee-calendar__events, .ee-cover, .ee-heading__long-shadow, .ee-heading__text-shadow {
  top: 0;
  left: 0
}

.ee-center, .ee-circle-progress-position--inside .ee-circle-progress__value, .ee-circle-progress__icon, .ee-image-comparison__handle:before, .ee-player__controls__overlay, .ee-player__controls__overlay .ee-player__control:before, .elementor-widget-devices-extended .ee-device__shape {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%)
}

.ee-center-vertical, .ee-gallery-slider__preview .ee-arrow, .ee-swiper__button, .ee-timeline .timeline-item__card__arrow:after, .ee-timeline--vertical.ee-timeline-align--middle.ee-timeline .timeline-item__card__arrow {
  top: 50%;
  transform: translateY(-50%)
}

.ee-center-horizontal {
  left: 50%;
  transform: translateX(-50%)
}

.ee-center-transform, .ee-hotspot {
  transform: translate(-50%, -50%)
}

.ee-u-clearfix:after {
  content: "" !important;
  display: block !important;
  clear: both !important
}

.ee-calendar-event-title--no-wrap .ee-calendar__day--event .ee-calendar__day__event a, .ee-calendar-event-title--no-wrap .ee-calendar__events__event, .ee-overflow-ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative
}

.ee-audio-player .ee-player__playlist, .ee-menu ul {
  list-style: none;
  margin: 0
}

.ee-button-text, .ee-menu, .ee-player__controls__overlay .ee-player__control, .ee-post__metas__list > li > *, .ee-post__terms > li > *, .ee-timeline .woocommerce.product .add_to_cart_button, .ee-timeline .woocommerce.product .added_to_cart, .ee-unfold__icon {
  display: inline-block
}

.ee-breadcrumbs, .ee-filters, .ee-nav, .ee-post__metas__list, .ee-post__terms, .ee-toggle-element__controls, .elementor-widget-button-group .ee-button-group {
  list-style: none;
  margin: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 0
}

.ee-breadcrumbs > li, .ee-breadcrumbs > li > a, .ee-filters > li, .ee-filters > li > a, .ee-nav > li, .ee-nav > li > a, .ee-post__metas__list > li, .ee-post__metas__list > li > a, .ee-post__terms > li, .ee-post__terms > li > a, .ee-toggle-element__controls > li, .ee-toggle-element__controls > li > a, .elementor-widget-button-group .ee-button-group > li, .elementor-widget-button-group .ee-button-group > li > a {
  display: inline-block;
  zoom: 1
}

.ee-button-group-stack-desktop .ee-button-group, .ee-nav--stacked {
  margin-left: 0 !important;
  -ms-flex-direction: column;
  flex-direction: column
}

.ee-nav--stacked > li {
  margin-left: 0 !important
}

.ee-breadcrumbs-align-stretch .ee-breadcrumbs > li > a, .ee-button-group-content-halign-justify .ee-button-group .ee-button-content-wrapper > li > a, .ee-button-group-halign-justify .ee-button-group > li > a, .ee-nav--stacked > li > a {
  display: block
}

.ee-breadcrumbs-align-left .ee-breadcrumbs, .ee-button-group-content-halign-left .ee-button-group .ee-button-content-wrapper, .ee-button-group-halign-left .ee-button-group, .ee-filters-align-left .ee-filters, .ee-grid-halign--left .ee-grid, .ee-timeline--vertical.ee-timeline-align--left, .ee-trigger-align--left .ee-button-wrapper {
  -ms-flex-pack: start;
  justify-content: flex-start
}

.ee-breadcrumbs-align-center .ee-breadcrumbs, .ee-button-group-content-halign-center .ee-button-group .ee-button-content-wrapper, .ee-button-group-halign-center .ee-button-group {
  -ms-flex-pack: center;
  justify-content: center
}

.ee-breadcrumbs-align-right .ee-breadcrumbs, .ee-button-group-content-halign-right .ee-button-group .ee-button-content-wrapper, .ee-button-group-halign-right .ee-button-group {
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-breadcrumbs-align-center .ee-breadcrumbs > li, .ee-breadcrumbs-align-left .ee-breadcrumbs > li, .ee-breadcrumbs-align-right .ee-breadcrumbs > li, .ee-button-group-content-halign-center .ee-button-group .ee-button-content-wrapper > li, .ee-button-group-content-halign-left .ee-button-group .ee-button-content-wrapper > li, .ee-button-group-content-halign-right .ee-button-group .ee-button-content-wrapper > li, .ee-button-group-halign-center .ee-button-group > li, .ee-button-group-halign-left .ee-button-group > li, .ee-button-group-halign-right .ee-button-group > li {
  -ms-flex-positive: 0;
  flex-grow: 0
}

.ee-breadcrumbs-align-stretch .ee-breadcrumbs, .ee-button-group-content-halign-justify .ee-button-group .ee-button-content-wrapper, .ee-button-group-halign-justify .ee-button-group {
  -ms-flex-pack: stretch;
  justify-content: stretch
}

.ee-breadcrumbs-align-stretch .ee-breadcrumbs > li, .ee-button-group-content-halign-justify .ee-button-group .ee-button-content-wrapper > li, .ee-button-group-halign-justify .ee-button-group > li {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-button-group-valign-top .ee-button-group {
  -ms-flex-align: start;
  align-items: flex-start
}

.ee-button-group-valign-middle .ee-button-group, .ee-button-group-valign-stretch .ee-button-group .ee-button-content-wrapper, .ee-grid-align--middle .ee-grid, .ee-toggle-element__controls {
  -ms-flex-align: center;
  align-items: center
}

.ee-button-group-valign-bottom .ee-button-group {
  -ms-flex-align: end;
  align-items: flex-end
}

.ee-button-group-valign-stretch .ee-button-group {
  -ms-flex-align: stretch;
  align-items: stretch
}

.ee-button-group-gap-narrow .ee-button-group, .ee-post__metas__list, .ee-post__terms {
  margin-left: -6px
}

.ee-button-group-gap-narrow .ee-button-group > li, .ee-post__meta__separator, .ee-post__metas__list > li, .ee-post__terms > li, .ee-post__terms__separator {
  margin-left: 6px
}

.ee-button-group-gap-default .ee-nav--stacked.ee-button-group, .ee-button-group-gap-default .ee-nav--stacked.ee-button-group > li, .ee-button-group-gap-extended .ee-nav--stacked.ee-button-group, .ee-button-group-gap-extended .ee-nav--stacked.ee-button-group > li, .ee-button-group-gap-narrow .ee-nav--stacked.ee-button-group, .ee-button-group-gap-narrow .ee-nav--stacked.ee-button-group > li, .ee-button-group-gap-wide .ee-nav--stacked.ee-button-group, .ee-button-group-gap-wide .ee-nav--stacked.ee-button-group > li, .ee-button-group-gap-wider .ee-nav--stacked.ee-button-group, .ee-button-group-gap-wider .ee-nav--stacked.ee-button-group > li, .ee-button-group-stack-desktop.ee-button-group-gap-default .ee-button-group, .ee-button-group-stack-desktop.ee-button-group-gap-default .ee-button-group > li, .ee-button-group-stack-desktop.ee-button-group-gap-extended .ee-button-group, .ee-button-group-stack-desktop.ee-button-group-gap-extended .ee-button-group > li, .ee-button-group-stack-desktop.ee-button-group-gap-narrow .ee-button-group, .ee-button-group-stack-desktop.ee-button-group-gap-narrow .ee-button-group > li, .ee-button-group-stack-desktop.ee-button-group-gap-wide .ee-button-group, .ee-button-group-stack-desktop.ee-button-group-gap-wide .ee-button-group > li, .ee-button-group-stack-desktop.ee-button-group-gap-wider .ee-button-group, .ee-button-group-stack-desktop.ee-button-group-gap-wider .ee-button-group > li, .ee-nav--stacked.ee-breadcrumbs, .ee-nav--stacked.ee-breadcrumbs > li, .ee-nav--stacked.ee-filters, .ee-nav--stacked.ee-filters > li, .ee-nav--stacked.ee-post__metas__list, .ee-nav--stacked.ee-post__metas__list > li, .ee-nav--stacked.ee-post__terms, .ee-nav--stacked.ee-post__terms > li, .ee-nav.ee-nav--stacked, .ee-nav.ee-nav--stacked > li {
  margin-left: 0
}

.ee-button-group-gap-narrow .ee-nav--stacked.ee-button-group > li:not(:last-child), .ee-button-group-stack-desktop.ee-button-group-gap-narrow .ee-button-group > li:not(:last-child), .ee-nav--stacked.ee-post__metas__list > li:not(:last-child), .ee-nav--stacked.ee-post__terms > li:not(:last-child) {
  margin-bottom: 6px
}

.ee-breadcrumbs, .ee-button-group-gap-default .ee-button-group, .ee-nav {
  margin-left: -12px
}

.ee-breadcrumbs > li, .ee-button-group-gap-default .ee-button-group > li, .ee-nav > li {
  margin-left: 12px
}

.ee-button-group-gap-default .ee-nav--stacked.ee-button-group > li:not(:last-child), .ee-button-group-stack-desktop.ee-button-group-gap-default .ee-button-group > li:not(:last-child), .ee-nav--stacked.ee-breadcrumbs > li:not(:last-child), .ee-nav.ee-nav--stacked > li:not(:last-child), .ee-notification:not(:last-child) {
  margin-bottom: 12px
}

.ee-button-group-gap-extended .ee-button-group, .ee-filters {
  margin-left: -24px
}

.ee-button-group-gap-extended .ee-button-group > li, .ee-filters > li {
  margin-left: 24px
}

.ee-button-group-gap-extended .ee-nav--stacked.ee-button-group > li:not(:last-child), .ee-button-group-stack-desktop.ee-button-group-gap-extended .ee-button-group > li:not(:last-child), .ee-nav--stacked.ee-filters > li:not(:last-child) {
  margin-bottom: 24px
}

.ee-button-group-gap-wide .ee-button-group {
  margin-left: -48px
}

.ee-button-group-gap-wide .ee-button-group > li {
  margin-left: 48px
}

.ee-button-group-gap-wide .ee-nav--stacked.ee-button-group > li:not(:last-child), .ee-button-group-stack-desktop.ee-button-group-gap-wide .ee-button-group > li:not(:last-child) {
  margin-bottom: 48px
}

.ee-button-group-gap-wider .ee-button-group {
  margin-left: -144px
}

.ee-button-group-gap-wider .ee-button-group > li {
  margin-left: 144px
}

.ee-button-group-stack-desktop .ee-button-group > li, .ee-pagination .page-numbers:first-child, .ee-swiper__pagination .swiper-pagination-bullet:first-child {
  margin-left: 0 !important
}

.ee-button-group-gap-wider .ee-nav--stacked.ee-button-group > li:not(:last-child), .ee-button-group-stack-desktop.ee-button-group-gap-wider .ee-button-group > li:not(:last-child) {
  margin-bottom: 144px
}

.ee-grid {
  display: -ms-flexbox;
  display: flex;
  margin: 0;
  padding: 0;
  list-style: none
}

.ee-align-icon--left, .ee-icon--left {
  margin-right: 12px
}

.ee-grid__item {
  box-sizing: border-box;
  display: inline-block;
  width: 100%;
  max-width: 100% !important
}

.ee-grid > .ee-grid__item {
  padding-left: 0
}

.ee-grid-align--stretch .ee-gallery .ee-media, .ee-grid-align--stretch .ee-media.ee-gallery, .ee-grid-masonry-layout--mixed .ee-media, .ee-media--stretch .ee-media, .ee-media.ee-media--stretch, .ee-posts-thumbnail-ratio .ee-post__media {
  overflow: hidden;
  position: relative;
  display: block
}

.ee-grid-align--stretch .ee-gallery .ee-media:before, .ee-grid-align--stretch .ee-media.ee-gallery:before, .ee-grid-masonry-layout--mixed .ee-media:before, .ee-media--stretch .ee-media:before, .ee-media.ee-media--stretch:before, .ee-posts-thumbnail-ratio .ee-post__media:before {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 100%
}

.ee-grid-align--stretch .ee-gallery .ee-media__content, .ee-grid-align--stretch .ee-gallery .ee-media__thumbnail, .ee-grid-masonry-layout--mixed .ee-media__content, .ee-grid-masonry-layout--mixed .ee-media__thumbnail, .ee-media--stretch .ee-media__content, .ee-media--stretch .ee-media__thumbnail, .ee-media.ee-media--stretch__content, .ee-media.ee-media--stretch__thumbnail, .ee-posts-thumbnail-ratio .ee-post__media__thumbnail {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0
}

.o-ratio--2\:1:before {
  padding-bottom: 50%
}

.ee-grid-masonry-layout--mixed .ee-media:before, .o-ratio--4\:3:before {
  padding-bottom: 75%
}

.o-ratio--16\:9:before {
  padding-bottom: 56.25%
}

.o-flagsize-name > .o-flag__img {
  padding-right: 0
}

.o-flagsize-name.o-flag--rev > .o-flag__img {
  padding-right: 0;
  padding-left: 0
}

.elementor-editor-active .ee-load-status-helper-on .ee-load-status, .elementor-editor-active .ee-load-status-helper-on .ee-load-status__error, .elementor-editor-active .ee-load-status-helper-on .ee-load-status__last, .elementor-editor-active .ee-load-status-helper-on .ee-load-status__request {
  display: block !important
}

.ee-align-icon--right {
  -ms-flex-order: 2;
  order: 2;
  margin-left: 12px
}

.ee-circle-progress .elementor-editor-active .elementor-inline-editing.suffix, .ee-timeline .elementor-editor-active .elementor-inline-editing.timeline-item__content__wysiwyg, .ee-timeline .elementor-editor-active .elementor-inline-editing.timeline-item__meta, .elementor-editor-active .ee-circle-progress .elementor-inline-editing.suffix, .elementor-editor-active .ee-timeline .elementor-inline-editing.timeline-item__content__wysiwyg, .elementor-editor-active .ee-timeline .elementor-inline-editing.timeline-item__meta, .elementor-editor-active .elementor-inline-editing.ee-breadcrumbs__crumb--home, .elementor-editor-active .elementor-inline-editing.ee-breadcrumbs__separator__text, .elementor-editor-active .elementor-inline-editing.ee-button-text, .elementor-editor-active .elementor-inline-editing.ee-hotspot__text, .elementor-editor-active .elementor-inline-editing.ee-table__text__inner, .elementor-editor-active .elementor-inline-editing.ee-text-divider__text {
  cursor: text
}

.ee-grid {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: start;
  align-items: flex-start
}

.ee-grid__item > * {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-grid__item--sizer {
  position: absolute
}

.ee-grid-align--middle .ee-grid__item {
  display: -ms-flexbox;
  display: flex
}

.ee-grid-align--bottom .ee-grid {
  -ms-flex-align: end;
  align-items: flex-end
}

.ee-grid-align--bottom .ee-grid__item {
  display: -ms-flexbox;
  display: flex
}

.ee-grid-align--stretch .ee-grid {
  -ms-flex-align: stretch;
  align-items: stretch
}

.ee-button-link, .ee-calendar__month, .ee-grid-align--stretch .ee-gallery .ee-media__thumbnail, .ee-grid-align--stretch .ee-grid__item, .ee-grid-masonry-layout--mixed .ee-media__thumbnail, .ee-media--stretch .ee-media__thumbnail, .ee-media.ee-media--stretch__thumbnail {
  display: -ms-flexbox;
  display: flex
}

.ee-grid-halign--center .ee-grid {
  -ms-flex-pack: center;
  justify-content: center
}

.ee-grid-halign--right .ee-grid {
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-media {
  display: block;
  position: relative
}

.ee-media__thumbnail img, .ee-media__thumbnail picture {
  width: 100%;
  vertical-align: middle
}

.ee-media__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column
}

.ee-media__content__caption {
  padding: 12px;
  color: #fff
}

.ee-button-group-stack-desktop.ee-button-group-halign-left .ee-button-group, .ee-media-align--left .ee-media__content {
  -ms-flex-align: start;
  align-items: flex-start
}

.ee-button-group-stack-desktop.ee-button-group-halign-center .ee-button-group, .ee-media-align--center .ee-media__content {
  -ms-flex-align: center;
  align-items: center
}

.ee-button-group-stack-desktop.ee-button-group-halign-right .ee-button-group, .ee-media-align--right .ee-media__content {
  -ms-flex-align: end;
  align-items: flex-end
}

.ee-button-group-stack-desktop.ee-button-group-halign-justify .ee-button-group, .ee-media-align--justify .ee-media__content {
  -ms-flex-align: stretch;
  align-items: stretch
}

.ee-button-content-wrapper, .ee-filters-align-center .ee-filters, .ee-media-align--middle .ee-media__content {
  -ms-flex-pack: center;
  justify-content: center
}

.ee-media-align--bottom .ee-media__content {
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-media-align--stretch .ee-media__content {
  -ms-flex-pack: justify;
  justify-content: space-between
}

.ee-media-effect__content--fade-in .ee-media__content {
  opacity: 0
}

.ee-media-effect__content--fade-in .ee-media:hover .ee-media__content {
  opacity: 1
}

.ee-media-effect__content--fade-from-bottom .ee-media__content, .ee-media-effect__content--fade-from-left .ee-media__content, .ee-media-effect__content--fade-from-right .ee-media__content, .ee-media-effect__content--fade-from-top .ee-media__content, .ee-media-effect__content--fade-out .ee-media:hover .ee-media__content {
  opacity: 0
}

.ee-effect.ee-effect-type--clone.ee-effect-zoom--zoom-in:hover .ee-button:after, .ee-effect.ee-effect-type--clone.ee-effect-zoom--zoom-in:hover .ee-button:before, .ee-effect.ee-effect-type--clone.ee-effect-zoom--zoom-out:hover .ee-button:after, .ee-effect.ee-effect-type--clone.ee-effect-zoom--zoom-out:hover .ee-button:before, .ee-effect.ee-effect-type--clone:hover .ee-button:after, .ee-effect.ee-effect-type--clone:hover .ee-button:before, .ee-media-effect__content--from-bottom .ee-media:hover .ee-media__content, .ee-media-effect__content--from-left .ee-media:hover .ee-media__content, .ee-media-effect__content--from-right .ee-media:hover .ee-media__content, .ee-media-effect__content--from-top .ee-media:hover .ee-media__content {
  transform: translateY(0) translateX(0)
}

.ee-media-effect__content--from-top .ee-media__content, .ee-media-effect__content--to-top .ee-media:hover .ee-media__content {
  transform: translateY(-100%)
}

.ee-media-effect__content--from-right .ee-media__content, .ee-media-effect__content--to-right .ee-media:hover .ee-media__content {
  transform: translateX(100%)
}

.ee-media-effect__content--from-bottom .ee-media__content {
  transform: translateY(100%)
}

.ee-media-effect__content--from-left .ee-media__content {
  transform: translateX(-100%)
}

.ee-media-effect__content--to-bottom .ee-media:hover .ee-media__content {
  transform: translateY(100%)
}

.ee-media-effect__content--to-left .ee-media:hover .ee-media__content {
  transform: translateX(-100%)
}

.ee-media-effect__content--fade-from-bottom .ee-media:hover .ee-media__content, .ee-media-effect__content--fade-from-left .ee-media:hover .ee-media__content, .ee-media-effect__content--fade-from-right .ee-media:hover .ee-media__content, .ee-media-effect__content--fade-from-top .ee-media:hover .ee-media__content {
  opacity: 1;
  transform: translateY(0) translateX(0)
}

.ee-media-effect__content--fade-from-top .ee-media__content, .ee-media-effect__content--fade-to-top .ee-media:hover .ee-media__content {
  transform: translateY(-24px)
}

.ee-media-effect__content--fade-from-right .ee-media__content {
  transform: translateX(24px)
}

.ee-media-effect__content--fade-from-bottom .ee-media__content {
  transform: translateY(24px)
}

.ee-media-effect__content--fade-from-left .ee-media__content {
  transform: translateX(-24px)
}

.ee-media-effect__content--fade-to-bottom .ee-media:hover .ee-media__content, .ee-media-effect__content--fade-to-left .ee-media:hover .ee-media__content, .ee-media-effect__content--fade-to-right .ee-media:hover .ee-media__content, .ee-media-effect__content--fade-to-top .ee-media:hover .ee-media__content {
  opacity: 0
}

.ee-media-effect__content--fade-to-right .ee-media:hover .ee-media__content {
  transform: translateX(24px)
}

.ee-media-effect__content--fade-to-bottom .ee-media:hover .ee-media__content {
  transform: translateY(24px)
}

.ee-media-effect__content--fade-to-left .ee-media:hover .ee-media__content {
  transform: translateX(-24px)
}

.ee-loader {
  height: 2px;
  width: 100%;
  background-color: #f7f7f7
}

.ee-loader__progress {
  width: 0%;
  height: 100%;
  display: block;
  background-color: #000
}

.ee-gallery-wrapper, .ee-gallery__media {
  overflow: hidden
}

.ee-gallery__item:hover {
  z-index: 2
}

.ee-gallery__item.is--3d {
  z-index: 1
}

.ee-gallery__tilt {
  transform-style: preserve-3d
}

.ee-gallery__tilt .ee-gallery__media {
  overflow: visible !important
}

.ee-gallery__tilt .ee-gallery__media__content {
  transform: translateZ(20px)
}

.ee-gallery__tilt .ee-gallery__media__overlay {
  transform: translateZ(10px)
}

.ee-gallery__tilt .ee-gallery__media__thumbnail {
  overflow: hidden
}

.ee-media-align--stretch .ee-gallery .ee-gallery__media__content {
  -ms-flex-pack: stretch;
  justify-content: stretch
}

.ee-swiper__container.swiper-container-horizontal, .ee-swiper__container.swiper-container-vertical {
  display: block
}

.ee-swiper__container .ee-grid {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.ee-swiper__container.swiper-container-multirow .ee-grid {
  -ms-flex-wrap: wrap !important;
  flex-wrap: wrap !important
}

.ee-swiper__wrapper {
  display: -ms-flexbox;
  display: flex;
  width: auto
}

.ee-swiper__slide {
  height: auto;
  overflow: visible
}

.ee-swiper__pagination {
  bottom: 0 !important
}

.ee-swiper__pagination--outside {
  position: relative;
  margin-top: 24px
}

.ee-swiper__pagination .swiper-pagination-bullet {
  margin: 0 6px
}

.ee-swiper-arrows-position--top .ee-swiper__button {
  top: 0;
  transform: none
}

.ee-swiper-arrows-position--middle .ee-swiper__button {
  top: 50%;
  transform: translateY(calc(-50% - 24px))
}

.ee-swiper-arrows-position--bottom .ee-swiper__button {
  top: auto;
  bottom: 0;
  transform: none
}

.ee-filters {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0;
  margin-bottom: 48px
}

.ee-filters__item {
  cursor: pointer;
  text-align: center
}

.ee-button-content-wrapper, .ee-filters__item > * {
  display: block
}

.ee-button, .ee-player, .ee-player__source {
  display: inline-block
}

.ee-filters__item [data-filter].ee--active {
  color: #0275d8
}

.ee-filters-align-center .ee-filters__item, .ee-filters-align-left .ee-filters__item, .ee-filters-align-right .ee-filters__item {
  -ms-flex-positive: 0;
  flex-grow: 0
}

.ee-filters-align-right .ee-filters {
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-filters-align-justify .ee-filters__item {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-pagination, .ee-post__metas, .ee-post__terms {
  font-size: 0
}

.ee-pagination .page-numbers {
  font-size: 14px;
  margin: 0 6px;
  display: inline-block;
  background-color: transparent
}

.ee-pagination .page-numbers.current {
  opacity: .2
}

.ee-notification {
  padding: 12px;
  border: 1px solid #e8c4c4;
  color: #a94442;
  background-color: #f2dede
}

.ee-button {
  line-height: 1;
  color: #fff;
  background-color: #818a91;
  text-align: center
}

.ee-button.ee-size-xs {
  font-size: 13px;
  border-radius: 2px
}

.ee-button.ee-size-xs .ee-button-content-wrapper, .ee-effect .ee-button.ee-size-xs:after {
  padding: 10px 20px
}

.ee-button.ee-size-sm {
  font-size: 15px;
  border-radius: 3px
}

.ee-button.ee-size-sm .ee-button-content-wrapper, .ee-effect .ee-button.ee-size-sm:after {
  padding: 12px 24px
}

.ee-button.ee-size-md {
  font-size: 16px;
  border-radius: 4px
}

.ee-button.ee-size-md .ee-button-content-wrapper, .ee-effect .ee-button.ee-size-md:after {
  padding: 15px 30px
}

.ee-button.ee-size-lg {
  font-size: 18px;
  border-radius: 5px
}

.ee-button.ee-size-lg .ee-button-content-wrapper, .ee-effect .ee-button.ee-size-lg:after {
  padding: 20px 40px
}

.ee-button.ee-size-xl {
  font-size: 20px;
  border-radius: 6px
}

.ee-button.ee-size-xl .ee-button-content-wrapper, .ee-effect .ee-button.ee-size-xl:after {
  padding: 25px 50px
}

.ee-icon--left {
  -ms-flex-order: 0;
  order: 0
}

.ee-icon--right {
  -ms-flex-order: 2;
  order: 2;
  margin-left: 12px
}

.ee-icon--flush, .ee-timeline .woocommerce.product del .amount, .ee-tooltip p:last-child {
  margin: 0
}

.ee-editor-placeholder {
  text-align: center;
  padding: 10px;
  background-color: #f7f7f7;
  border: 1px solid #d4d4d4
}

.ee-editor-placeholder__body, .ee-editor-placeholder__title {
  font-family: Roboto, Arial, Helvetica, Verdana, sans-serif
}

.ee-editor-placeholder__title {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 5px;
  color: #373a3c
}

.ee-editor-placeholder__body {
  font-size: 12px;
  color: #818a91
}

.ee-tooltip {
  position: absolute;
  z-index: 999;
  padding: 12px;
  background-color: #000;
  color: #fff
}

.ee-player, .ee-player__control--progress {
  position: relative;
  transform: translate3d(0, 0, 0);
  overflow: hidden
}

.ee-tooltip:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  left: 50%;
  bottom: -10px;
  margin-left: -10px;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #000
}

.ee-tooltip.to--bottom:after {
  top: -10px;
  bottom: auto;
  border-top: 0;
  border-bottom: 10px solid #000
}

.ee-tooltip.to--left:after, .ee-tooltip.to--right:after {
  bottom: auto;
  top: 50%;
  margin: -10px 0 0;
  border-top: 10px solid transparent
}

.ee-tooltip.to--left:after {
  right: -10px;
  left: auto;
  border-right: 0 solid transparent;
  border-left: 10px solid #000;
  border-bottom: 10px solid transparent
}

.ee-tooltip.to--right:after {
  left: -10px;
  right: auto;
  border-left: 0 solid transparent;
  border-right: 10px solid #000;
  border-bottom: 10px solid transparent
}

.ee-tooltip.to--top:after {
  bottom: -10px;
  top: auto;
  border-bottom: 0;
  border-top-color: #000
}

.ee-tooltip.at--top:after {
  bottom: auto;
  top: 10px;
  margin: 0
}

.ee-tooltip.at--bottom:after {
  top: auto;
  bottom: 10px;
  margin: 0
}

.ee-tooltip.at--left:after {
  left: 10px;
  margin: 0
}

.ee-tooltip.at--right:after {
  right: 10px;
  left: auto;
  margin: 0
}

.elementor-widget-devices-extended.ee-device-landscape-scrollable .ee-device__media__screen__landscape__inner, .elementor-widget-devices-extended.ee-device-portrait-scrollable .ee-device__media__screen--image-inner {
  margin-right: -100px;
  padding-right: 100px
}

.ee-player {
  font-size: 12px
}

.ee-player__cover {
  cursor: pointer;
  transition: opacity .2s linear
}

.ee-effect.ee-effect-type--clone .ee-button:before, .ee-effect.ee-effect-type--cube .ee-button:before, .ee-effect.ee-effect-type--flip .ee-button:before, .ee-player__cover:after {
  content: ""
}

.ee-player__control {
  cursor: default
}

.ee-arrow, .ee-player__control--icon, .ee-player__control--progress, .ee-player__controls__browse {
  cursor: pointer
}

.ee-player__control--indicator {
  padding: 0 6px
}

.ee-player__control--progress {
  margin: 0 6px;
  height: 12px
}

.ee-player__control--progress__inner {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  transition: background-color .2s linear
}

.ee-player__control--progress__track {
  opacity: .2;
  right: 0
}

.ee-player__control--icon {
  font-size: 1em;
  padding: 0 6px
}

.ee-button-group-stack-desktop .ee-button-group > li > a, .ee-player__control--icon:before {
  display: block
}

.ee-player__control--icon:hover {
  opacity: 1
}

.ee-player__controls__overlay {
  list-style: none;
  white-space: nowrap;
  margin: 0;
  transition: opacity .2s linear
}

.ee-player__controls__bar, .ee-player__controls__overlay .ee-player__control {
  transition: background-color .2s linear, box-shadow .2s linear, opacity .2s linear, color .2s linear
}

.ee-player__controls__overlay .ee-player__control {
  cursor: pointer;
  vertical-align: middle;
  position: relative;
  width: 60px;
  height: 60px;
  font-size: 60px
}

.ee-player__controls__overlay .ee-player__control.nicon-play:before {
  margin-left: 3%
}

.ee-player__controls__overlay .ee-player__control:before {
  font-size: .5em
}

.ee-player__controls__overlay .ee-player__controls__rewind {
  display: none;
  margin-right: 24px
}

.ee-player__controls__overlay .ee-player__controls__rewind:before {
  margin-top: -4%
}

.ee-player__controls__time {
  padding: 6px
}

.ee-player__controls__progress {
  -ms-flex-preferred-size: 80%;
  flex-basis: 80%;
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-player__controls__volume {
  -ms-flex-preferred-size: 20%;
  flex-basis: 20%;
  -ms-flex-positive: 1;
  flex-grow: 1;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-align: center;
  align-items: center
}

.ee-button-group-content-halign-justify .ee-button-group .ee-button-content-wrapper .ee-button-text, .ee-button-group-halign-justify .ee-button-group .ee-button-content-wrapper, .ee-player__controls__volume-bar {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-player__controls__bar {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px
}

.ee-player__controls__bar-wrapper {
  transition: transform .4s cubic-bezier(.42, 0, .2, 1)
}

.ee-player.paused .ee-player__controls__overlay .ee-player__controls__rewind {
  display: inline-block;
  margin-right: 24px
}

.ee-arrow {
  z-index: 1;
  display: -ms-inline-flexbox;
  display: inline-flex;
  border-radius: 100%;
  background-color: #fff;
  color: #000;
  padding: 1em;
  margin: 24px;
  font-size: 24px
}

.ee-arrow--prev {
  left: 0
}

.ee-arrow--next {
  right: 0
}

.ee-arrow--disabled {
  opacity: .2;
  cursor: default
}

.ee-arrow__svg {
  width: 100%;
  height: auto
}

.ee-button-content-wrapper, .ee-button-gap, .ee-button-wrapper {
  display: -ms-flexbox !important;
  display: flex !important
}

.ee-breadcrumbs, .ee-button-group {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.ee-button-group .ee-button, .ee-button-group .ee-button-wrapper {
  width: 100%
}

.elementor-widget-ee-audio-player, .elementor-widget-html5-video, .elementor-widget-image-comparison {
  text-align: center;
  font-size: 0
}

.elementor-widget-image-comparison .elementor-widget-container {
  overflow: hidden;
  display: inline-block;
  margin: 0 auto !important;
  font-size: 1rem
}

.ee-image-comparison {
  position: relative;
  width: 100%;
  text-align: left
}

.ee-image-comparison img {
  display: block;
  max-width: 100%;
  width: 100%
}

.ee-image-comparison__image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  overflow: hidden;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.ee-image-comparison__image .ee-image-comparison__label {
  right: auto;
  left: 0
}

.is--visible .ee-image-comparison__image {
  width: 50%
}

.ee-image-comparison__image img {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: auto;
  height: 100% !important;
  max-width: none !important
}

.ee-image-comparison__separator {
  right: 0;
  width: 1px;
  height: 100%;
  background-color: #fff;
  transform: translateX(50%) translateY(-50%)
}

.ee-image-comparison__label {
  position: absolute !important;
  bottom: 0;
  right: 0;
  padding: 1em;
  opacity: 0;
  transform: translateY(20px);
  transition: transform .3s .7s, opacity .3s .7s
}

.ee-image-comparison__label.is--hidden, .timeline-item.is--hidden {
  visibility: hidden
}

.is--visible .ee-image-comparison__label {
  opacity: 1;
  transform: translateY(0)
}

.ee-image-comparison__label--empty, .ee-text-divider--left .ee-text-divider__before, .ee-text-divider--right .ee-text-divider__after, .hotip-content {
  display: none
}

.ee-gallery-slider__gallery .ee-gallery__item, .ee-image-comparison__label--clickable {
  cursor: pointer
}

.ee-image-comparison__handle {
  position: absolute;
  height: 44px;
  width: 44px;
  left: 50%;
  top: 50%;
  margin-left: -22px;
  margin-top: -22px;
  border-radius: 50%;
  background: #fff;
  cursor: move;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0);
  color: #000
}

.ee-image-comparison__handle:before {
  font-size: .4em
}

.ee-image-comparison__handle.draggable {
  background-color: #000;
  color: #fff
}

.is--visible .ee-image-comparison__handle {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform .3s .7s, opacity 0s .7s
}

.ee-image-comparison--top .ee-image-comparison__label {
  top: 0;
  bottom: auto
}

.ee-image-comparison--middle .ee-image-comparison__label {
  top: 50%;
  bottom: auto;
  transform: translateY(-50%)
}

.ee-image-comparison--bottom .ee-image-comparison__label {
  top: auto;
  bottom: 0
}

@keyframes bounce-in {
  0% {
    width: 0
  }
  60% {
    width: 55%
  }
  100% {
    width: 50%
  }
}

.ee-text-divider {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin: 0 auto
}

.ee-text-divider__text {
  -ms-flex-negative: 1;
  flex-shrink: 1;
  padding: 0 6px;
  margin: 0
}

.ee-breadcrumbs__item, .ee-breadcrumbs__separator, .ee-text-divider__text:not([href]) {
  cursor: default
}

.ee-text-divider__after, .ee-text-divider__before {
  -ms-flex-positive: 1;
  flex-grow: 1;
  height: 1px;
  min-height: 1px;
  background-color: #000
}

.elementor-widget-devices-extended {
  font-size: 0;
  display: block
}

.elementor-widget-devices-extended .ee-device-wrapper {
  margin: 0 auto;
  display: inline-block;
  max-width: 100%;
  transition: .3s cubic-bezier(.42, 0, .2, 1);
  transition-property: width, padding-bottom
}

.elementor-widget-devices-extended .ee-device {
  position: relative;
  display: inline-block;
  height: 0;
  max-width: 100%;
  width: 100%;
  transition: all .3s cubic-bezier(.42, 0, .2, 1)
}

.elementor-widget-devices-extended .ee-device svg {
  width: 100%;
  height: auto;
  display: block;
  font-size: 1rem;
  transition: all .3s cubic-bezier(.42, 0, .2, 1)
}

.elementor-widget-devices-extended .ee-device svg .back-shape, .elementor-widget-devices-extended .ee-device svg .side-shape, .elementor-widget-devices-extended.ee-device-skin-gold svg .overlay-shape, .elementor-widget-devices-extended.ee-device-skin-jetblack svg .back-shape, .elementor-widget-devices-extended.ee-device-skin-jetblack svg .side-shape, .elementor-widget-devices-extended.ee-device-skin-rosegold svg .overlay-shape, .elementor-widget-devices-extended.ee-device-skin-silver svg .overlay-shape {
  fill: #000
}

.elementor-widget-devices-extended .ee-device svg .overlay-shape {
  fill-opacity: .2;
  fill: #fff
}

.elementor-widget-devices-extended .ee-device__shape {
  width: 100%;
  transition: all .3s cubic-bezier(.42, 0, .2, 1)
}

.elementor-widget-devices-extended .ee-device__media {
  position: absolute;
  left: 50%;
  transition: all .3s cubic-bezier(.42, 0, .2, 1);
  border-radius: 3px
}

.elementor-widget-devices-extended .ee-device__media__inner {
  background-color: rgba(255, 255, 255, .2);
  position: relative;
  left: 0;
  width: 100%;
  height: 0;
  transition: all .3s cubic-bezier(.42, 0, .2, 1)
}

.elementor-widget-devices-extended .ee-device__media__screen {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  border-radius: 3px;
  transition: all .3s cubic-bezier(.42, 0, .2, 1);
  z-index: 2
}

.elementor-widget-devices-extended .ee-device__media__screen__landscape {
  z-index: 1;
  opacity: 0
}

.elementor-widget-devices-extended .ee-device__media__screen__inner {
  left: 0;
  right: 0
}

.elementor-widget-devices-extended .ee-device__media__screen__inner, .elementor-widget-devices-extended .ee-device__media__screen__inner img {
  width: 100%
}

.ee-audio-player .ee-player__controls, .ee-calendar .clndr, .ee-gallery-slider__preview .slick-slide, .ee-timeline .timeline-item__img, .elementor-widget-devices-extended .ee-device__media__screen__inner figure, body.ee-offcanvas--open {
  overflow: hidden
}

.elementor-widget-devices-extended .ee-device__media__screen--video .ee-device__media__screen__inner, .elementor-widget-devices-extended .ee-device__media__screen--video .ee-video-player {
  width: 100%;
  height: 100%
}

.elementor-widget-devices-extended .ee-device-type-window .ee-video-player, .elementor-widget-devices-extended .ee-device__media__screen--video .ee-device__media__screen__inner > video, .elementor-widget-devices-extended .ee-device__media__screen--video .ee-video-player > video {
  height: auto
}

.elementor-widget-devices-extended .ee-device-type-phone {
  width: 277px
}

.elementor-widget-devices-extended .ee-device-type-phone .ee-device {
  width: 277px;
  padding-bottom: 207.22022%
}

.elementor-widget-devices-extended .ee-device-type-phone .ee-device__media {
  top: 11.7%;
  width: 88.80866%;
  transform: translateX(-50%)
}

.elementor-widget-devices-extended .ee-device-type-phone .ee-device__media__inner {
  padding-bottom: 177.77778%
}

.elementor-widget-devices-extended .ee-device-type-tablet {
  width: 430px
}

.elementor-widget-devices-extended .ee-device-type-tablet .ee-device {
  width: 430px;
  padding-bottom: 138.37209%
}

.elementor-widget-devices-extended .ee-device-type-tablet .ee-device__media {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  width: 90.69767%
}

.elementor-widget-devices-extended .ee-device-type-tablet .ee-device__media__inner {
  padding-bottom: 133.33333%
}

.elementor-widget-devices-extended .ee-device-type-desktop, .elementor-widget-devices-extended .ee-device-type-laptop {
  width: 645px
}

.elementor-widget-devices-extended .ee-device-type-laptop .ee-device {
  width: 645px;
  padding-bottom: 57.36434%
}

.elementor-widget-devices-extended .ee-device-type-laptop .ee-device__media {
  top: 47.9%;
  transform: translateX(-50%) translateY(-50%);
  width: 76.43411%
}

.elementor-widget-devices-extended .ee-device-type-laptop .ee-device__media__inner {
  padding-bottom: 62.47465%
}

.elementor-widget-devices-extended .ee-device-type-desktop .ee-device {
  width: 895px;
  padding-bottom: 88.49162%
}

.elementor-widget-devices-extended .ee-device-type-desktop .ee-device__media {
  top: 33.5%;
  transform: translateX(-50%) translateY(-50%);
  width: 92.2905%
}

.elementor-widget-devices-extended .ee-device-type-desktop .ee-device__media__inner {
  padding-bottom: 56.41646%
}

.elementor-widget-devices-extended .ee-device-type-window {
  width: 1000px
}

.elementor-widget-devices-extended .ee-device-type-window .ee-device {
  width: 1000px;
  height: auto;
  padding-bottom: 0
}

.elementor-widget-devices-extended .ee-device-type-window .ee-device__media, .elementor-widget-devices-extended .ee-device-type-window .ee-device__shape {
  position: relative;
  transform: none;
  top: auto;
  left: auto;
  border-radius: 0
}

.elementor-widget-devices-extended .ee-device-type-window .ee-device__media {
  width: 100%
}

.elementor-widget-devices-extended .ee-device-type-window .ee-device__media__inner {
  height: auto;
  padding-bottom: 0
}

.elementor-widget-devices-extended .ee-device-type-window .ee-device__media__screen {
  overflow: visible;
  position: relative
}

.elementor-widget-devices-extended .ee-device-type-window .ee-device__media__screen__inner {
  position: relative;
  top: auto;
  left: auto;
  height: auto;
  width: 100%;
  overflow: visible
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper .ee-device__shape svg {
  transform: rotate(90deg)
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper .ee-device__media {
  top: 50%;
  transform: translateY(-50%) translateX(-50%)
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper .ee-device__orientation {
  transform: translateY(calc(100% + 24px)) translateX(-50%) rotate(-90deg)
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-phone {
  width: 574px
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-phone .ee-device {
  width: 574px;
  padding-bottom: 48.25784%
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-phone .ee-device__shape {
  width: 48.25784%
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-phone .ee-device__media {
  width: 76.30662%
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-phone .ee-device__media__inner {
  padding-bottom: 56.25%
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-tablet {
  width: 595px
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-tablet .ee-device {
  width: 595px;
  padding-bottom: 72.26891%
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-tablet .ee-device__shape {
  width: 72.26891%
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-tablet .ee-device__media {
  width: 87.39496%
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device-wrapper.ee-device-type-tablet .ee-device__media__inner {
  padding-bottom: 75%
}

.elementor-widget-devices-extended.ee-device-landscape-scrollable .ee-device__media__screen__landscape, .elementor-widget-devices-extended.ee-device-portrait-scrollable .ee-device__media__screen--image {
  overflow-y: auto
}

.elementor-widget-devices-extended .ee-device__orientation {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 99;
  width: 28px;
  height: 28px;
  transform: translateY(calc(100% + 24px)) translateX(-50%);
  font-size: 28px;
  color: rgba(0, 0, 0, .1);
  cursor: pointer;
  transition: all .3s cubic-bezier(.42, 0, .2, 1)
}

.ee-heading__long-shadow > *, .ee-heading__text-shadow > *, .ee-heading__text > *, .elementor-widget-devices-extended .ee-device__orientation:before {
  display: block
}

.elementor-widget-devices-extended .ee-device.has--orientation-control {
  margin-bottom: 52px
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device.has--orientation-control .ee-device__media__screen {
  opacity: 0;
  z-index: 1
}

.elementor-widget-devices-extended.ee-device-orientation-landscape .ee-device.has--orientation-control .ee-device__media__screen__landscape {
  opacity: 1;
  z-index: 2
}

.elementor-widget-devices-extended.ee-device-controls-tone-light svg .overlay-shape, .elementor-widget-devices-extended.ee-device-skin-jetblack svg .overlay-shape {
  fill: #fff;
  fill-opacity: .2
}

.elementor-widget-devices-extended.ee-device-skin-black svg .overlay-shape {
  fill: #fff
}

.elementor-widget-devices-extended.ee-device-skin-black svg .back-shape, .elementor-widget-devices-extended.ee-device-skin-black svg .side-shape {
  fill: #343639
}

.elementor-widget-devices-extended.ee-device-skin-silver svg .back-shape, .elementor-widget-devices-extended.ee-device-skin-silver svg .side-shape {
  fill: #e4e6e7
}

.elementor-widget-devices-extended.ee-device-skin-gold svg .back-shape, .elementor-widget-devices-extended.ee-device-skin-gold svg .side-shape {
  fill: #fbe6cf
}

.elementor-widget-devices-extended.ee-device-skin-rosegold svg .back-shape, .elementor-widget-devices-extended.ee-device-skin-rosegold svg .side-shape {
  fill: #fde4dc
}

.elementor-widget-devices-extended.ee-device-controls-tone-dark svg .overlay-shape {
  fill: #000;
  fill-opacity: .2
}

.elementor-widget-devices-extended svg .lighten {
  fill: #fff;
  fill-opacity: .3
}

.elementor-widget-devices-extended svg .lighten-more {
  fill: #fff;
  fill-opacity: .5
}

.ee-hotspots img {
  width: 100%;
  display: block
}

.ee-popup__header__subtitle, .ee-swiper .ee-post, .hotip-content > :last-child {
  margin-bottom: 0
}

.ee-hotspot {
  position: absolute;
  left: 48px;
  top: 48px
}

.ee-hotspot__wrapper {
  box-sizing: content-box;
  cursor: pointer;
  text-align: center;
  line-height: 40px
}

.ee-hotspot__wrapper:before {
  content: "";
  position: absolute;
  z-index: -1;
  transform: scale(1);
  pointer-events: none;
  animation: 2s infinite pulse
}

.ee-hotspot__wrapper, .ee-hotspot__wrapper:before {
  min-width: 40px;
  min-height: 40px;
  display: block;
  background-color: #000;
  color: #fff;
  border-radius: 9999px
}

.ee-hotspot:hover .ee-hotspot__wrapper:before {
  animation: none
}

.ee-hotspot__text {
  padding: 0 12px;
  display: inline-block
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 1
  }
  100% {
    transform: scale(1.5);
    opacity: 0
  }
}

.ee-circle-progress {
  position: relative;
  display: inline-block
}

.ee-circle-progress canvas {
  display: block;
  max-width: 100%;
  height: auto !important;
  margin: 0 auto
}

.ee-circle-progress__value {
  cursor: default;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 30px;
  font-weight: 700
}

.ee-calendar-skin--compact .ee-calendar__day--event, .ee-unfold__trigger .ee-button {
  cursor: pointer
}

.ee-circle-progress__value > .suffix {
  text-align: left;
  font-size: .5em;
  margin-left: .2em
}

.ee-circle-progress__icon {
  font-size: 24px
}

.ee-circle-progress__text {
  display: block;
  margin-top: 12px
}

.ee-circle-progress-suffix--before .ee-circle-progress__value {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.ee-circle-progress-suffix--before .ee-circle-progress__value > .suffix {
  margin-right: .2em;
  margin-left: 0
}

.ee-circle-progress-suffix--top .ee-circle-progress__value {
  -ms-flex-align: start;
  align-items: flex-start
}

.ee-circle-progress-suffix--middle .ee-circle-progress__value {
  -ms-flex-align: center;
  align-items: center
}

.ee-circle-progress-suffix--bottom .ee-circle-progress__value {
  -ms-flex-align: baseline;
  align-items: baseline
}

.ee-circle-progress-suffix--stretch .ee-circle-progress__value > .suffix {
  font-size: inherit;
  line-height: inherit;
  margin: 0
}

.ee-circle-progress-position--below .ee-circle-progress__value {
  -ms-flex-pack: center;
  justify-content: center
}

.ee-circle-progress-position--hide .ee-circle-progress__value {
  display: none
}

.ee-heading {
  transform: translate(0, 0);
  z-index: 0
}

.ee-heading.elementor-size-small {
  font-size: 15px
}

.ee-heading.elementor-size-medium {
  font-size: 19px
}

.ee-heading.elementor-size-large {
  font-size: 29px
}

.ee-heading.elementor-size-xl {
  font-size: 39px
}

.ee-heading.elementor-size-xxl {
  font-size: 59px
}

.ee-heading--gradient .ee-heading__text {
  background-clip: text;
  text-fill-color: transparent;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}

.ee-heading__text {
  display: block;
  position: relative
}

.ee-heading__text-shadow {
  display: inline-block;
  color: transparent;
  z-index: -1
}

.ee-heading__long-shadow {
  color: transparent;
  z-index: -2
}

.ee-gallery-slider {
  display: -ms-flexbox;
  display: flex;
  margin-left: -24px;
  -ms-flex-align: start;
  align-items: flex-start
}

.ee-gallery-slider__gallery, .ee-gallery-slider__preview {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  width: 50%;
  padding-left: 24px
}
.ee-gallery-slider__preview{
  overflow: hidden;
}
.ee-gallery-slider__gallery .ee-gallery__media__caption, .ee-post__metas__list > li, .ee-post__terms > li {
  font-size: 12px
}

.ee-gallery-slider--left .ee-gallery-slider {
  -ms-flex-direction: row;
  flex-direction: row
}

.ee-gallery-slider--right .ee-gallery-slider {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.ee-gallery-slider--top .ee-gallery-slider {
  -ms-flex-flow: row;
  flex-flow: row;
  -ms-flex-direction: column;
  flex-direction: column
}

.ee-calendar-event-title--no-wrap .ee-calendar__events__event, .ee-gallery-slider--top .ee-gallery-slider__gallery, .ee-gallery-slider--top .ee-gallery-slider__preview, .ee-gallery-slider__preview .slick-image-stretch .slick-slide .slick-slide-image, .ee-gallery-slider__preview .slick-image-stretch .slick-slide figure {
  width: 100%
}

.ee-gallery-slider--top .ee-gallery-slider__preview, .ee-timeline--vertical.ee-timeline .ee-timeline__item {
  margin-bottom: 24px
}
.ee-gallery-slider__preview .slick-slide-image{
  -o-object-fit: cover;
  object-fit: cover;
}
.timeline-item.is--focused .timeline-item__point {
  background-color: red
}

.ee-timeline {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 100%;
  margin: 0 auto
}

.ee-timeline__line {
  position: absolute;
  background-color: #f7f7f7
}

.ee-timeline__line__inner {
  background-color: red
}

.ee-timeline .timeline-item__card-wrapper, .ee-timeline .timeline-item__meta-wrapper {
  max-width: 100%;
  position: relative
}

.ee-timeline .timeline-item__img, .ee-timeline .timeline-item__img a {
  display: block
}

.ee-timeline .timeline-item__point {
  width: 40px;
  height: 40px;
  min-width: 10px;
  min-height: 10px;
  background-color: #000;
  color: #fff;
  border-radius: 999px;
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center
}

.ee-timeline .timeline-item__point__icon:before, .ee-timeline .timeline-item__point__text {
  font-size: 1em
}

.ee-timeline .timeline-item.bounce-in .timeline-item__card {
  visibility: visible;
  animation: 1s cd-bounce-odd
}

.ee-timeline .timeline-item__card {
  display: block;
  position: relative;
  padding: 24px;
  background-color: #f7f7f7;
  border-radius: 4px
}

.ee-timeline .timeline-item__card__arrow {
  width: 10px;
  height: 40px;
  position: absolute
}

.ee-timeline .timeline-item__card__arrow:after {
  content: "";
  width: 0;
  height: 0
}

.ee-timeline .woocommerce.product .amount {
  display: block;
  margin-bottom: 12px
}

.ee-switcher .ee-arrow--next, .ee-timeline .woocommerce.product .added_to_cart {
  margin-left: 24px
}

.ee-timeline--vertical.ee-timeline .ee-timeline__line {
  width: 4px;
  bottom: 0;
  top: 0;
  transform: translateX(-50%)
}

.ee-timeline--vertical.ee-timeline .ee-timeline__line__inner {
  width: 100%;
  height: 20%
}

.ee-timeline--vertical.ee-timeline .timeline-item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start
}

.ee-mfp-popup .mfp-close:active, .ee-timeline--vertical.ee-timeline .timeline-item__card__arrow {
  top: 0
}

.ee-timeline--vertical.ee-timeline .timeline-item__card__arrow:after {
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent
}

.ee-timeline--vertical.ee-timeline .timeline-item__point {
  -ms-flex-negative: 0;
  flex-shrink: 0
}

.ee-timeline--vertical.ee-timeline .timeline-item__meta-wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center
}

.ee-timeline--vertical.ee-timeline-align--left.ee-timeline .ee-timeline__line {
  left: 0;
  margin-left: 20px
}

.ee-timeline--vertical.ee-timeline-align--left.ee-timeline .timeline-item {
  direction: ltr;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.ee-timeline--vertical.ee-timeline-align--left.ee-timeline .timeline-item__point {
  margin-left: 0 !important
}

.ee-timeline--vertical.ee-timeline-align--left.ee-timeline .timeline-item__meta-wrapper {
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-order: 0;
  order: 0
}

.ee-timeline--vertical.ee-timeline-align--left.ee-timeline .timeline-item__card-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-left: 10px
}

.ee-timeline--vertical.ee-timeline-align--left.ee-timeline .timeline-item__card__arrow {
  left: -10px
}

.ee-timeline--vertical.ee-timeline-align--left.ee-timeline .timeline-item__card__arrow:after {
  border-right: 10px solid #f7f7f7
}

.ee-timeline--vertical.ee-timeline-align--left.ee-timeline .timeline-item__meta {
  margin-bottom: 24px
}

.ee-timeline--vertical.ee-timeline-align--right.ee-timeline .ee-timeline__line {
  left: auto;
  right: 0;
  margin-right: 20px;
  transform: translateX(50%)
}

.ee-timeline--vertical.ee-timeline-align--right.ee-timeline .timeline-item {
  direction: ltr;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-timeline--vertical.ee-timeline-align--right.ee-timeline .timeline-item__point {
  -ms-flex-order: 2;
  order: 2;
  margin-right: 0 !important
}

.ee-timeline--vertical.ee-timeline-align--right.ee-timeline .timeline-item__meta {
  -ms-flex-order: 1;
  order: 1;
  margin-bottom: 24px
}

.ee-timeline--vertical.ee-timeline-align--right.ee-timeline .timeline-item__meta-wrapper {
  -ms-flex-order: 2;
  order: 2;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-timeline--vertical.ee-timeline-align--right.ee-timeline .timeline-item__card-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  -ms-flex-order: 1;
  order: 1;
  margin-right: 10px
}

.ee-timeline--vertical.ee-timeline-align--right.ee-timeline .timeline-item__card__arrow {
  right: -10px
}

.ee-timeline--vertical.ee-timeline-align--right.ee-timeline .timeline-item__card__arrow:after {
  border-left: 10px solid #f7f7f7
}

.ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__card__arrow:after {
  border-right-color: #f7f7f7;
  border-left-color: #f7f7f7
}

.ee-offcanvas__trigger .ee-button-content-wrapper, .ee-timeline--vertical.ee-timeline-align--middle.ee-timeline .timeline-item {
  -ms-flex-align: center;
  align-items: center
}

.ee-timeline--vertical.ee-timeline-align--bottom.ee-timeline .timeline-item {
  -ms-flex-align: end;
  align-items: flex-end
}

.ee-timeline--vertical.ee-timeline-align--bottom.ee-timeline .timeline-item__card__arrow {
  top: auto;
  bottom: 0
}

@keyframes cd-bounce-even {
  0% {
    opacity: 0;
    transform: translateX(-100px)
  }
  60% {
    opacity: 1;
    transform: translateX(10px)
  }
  100% {
    transform: translateX(0)
  }
}

@keyframes cd-bounce-odd {
  0% {
    opacity: 0;
    transform: translateX(100px)
  }
  60% {
    opacity: 1;
    transform: translateX(-10px)
  }
  100% {
    transform: translateX(0)
  }
}

.ee-breadcrumbs-align-stretch .ee-breadcrumbs > .ee-breadcrumbs__separator {
  -ms-flex-positive: 0;
  flex-grow: 0;
  text-align: center
}

.ee-unfold__mask {
  overflow: hidden;
  position: relative
}

.ee-unfold__content {
  float: left;
  width: 100%
}

.ee-unfold__separator {
  width: 100%;
  height: 24px;
  max-height: 100%;
  top: auto;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, #fff 100%)
}

.ee-unfold__trigger {
  margin-top: 24px
}

.ee-calendar-event, .ee-calendar-skin--default .ee-calendar__events, .ee-unfold__icon--open {
  display: none
}

.ee-trigger-align--center .ee-button-wrapper {
  -ms-flex-pack: center;
  justify-content: center
}

.ee-trigger-align--right .ee-button-wrapper {
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-trigger-align--justify .ee-button {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-video-player.playing .ee-player__controls__overlay, .ee-video-player.playing .ee-player__cover {
  opacity: 0
}

.ee-video-player.playing .ee-player__controls__bar-wrapper {
  transform: translateY(100%)
}

.ee-video-player.playing:hover .ee-player__controls__overlay {
  opacity: 1
}

.ee-video-player.playing:hover .ee-player__controls__bar-wrapper {
  transform: translateY(0)
}

.ee-video-player__controls__bar-wrapper {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  transition: transform .4s cubic-bezier(.42, 0, .2, 1)
}

.ee-calendar {
  display: inline-block;
  background: #f7f7f7
}

.ee-calendar__table {
  margin: 0;
  padding: 0;
  height: 100% !important;
  box-sizing: border-box;
  table-layout: fixed;
  box-shadow: none
}

.ee-calendar__cell__content, .ee-calendar__day__event__name, .ee-calendar__day__event__name:before, .ee-calendar__day__header, .ee-calendar__day__header:before {
  padding: 6px 12px
}

.ee-calendar__table td {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  height: 100%
}

.ee-calendar__table tr {
  background: 0 0 !important;
  margin: 0 !important
}

.ee-calendar__events, .ee-calendar__table {
  text-align: left;
  transition: transform .3s ease-in-out
}

.ee-calendar__cell {
  border-style: solid
}

.ee-calendar__day {
  height: 100%;
  display: table-cell
}

.ee-calendar__day a {
  display: block;
  color: #fff
}

.ee-calendar__day__content, .ee-calendar__day__wrapper, .ee-sticky-parent.elementor-widget-wrap, .ee-switcher-skin--overlay .ee-switcher__media, body.ee-offcanvas--closing, body.ee-offcanvas--open, body.ee-offcanvas--opening {
  height: 100%
}

.ee-calendar__day__wrapper, .ee-post__area {
  position: relative
}

.ee-calendar__day__events, .ee-post__rating, .ee-toggle-element__elements {
  text-align: left
}

.ee-calendar__day--event {
  color: #fff
}

.ee-calendar__day--event .ee-calendar__day__content:hover {
  z-index: 1
}

.ee-calendar__day--event .ee-calendar__day__wrapper:hover {
  box-shadow: 0 10px 30px rgba(0, 0, 0, .2)
}

.ee-calendar__day--today .ee-calendar__day__wrapper {
  background: #5bc0de
}

.ee-calendar__day--adjacent .ee-calendar__day__content {
  opacity: .5
}

.ee-calendar__day--event .ee-calendar__day__wrapper {
  background: #0275d8
}

.ee-calendar__controls {
  padding: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: stretch;
  justify-content: stretch;
  -ms-flex-align: center;
  align-items: center
}

.ee-calendar__controls__button {
  margin: 0;
  cursor: pointer;
  background: #0275d8;
  color: #fff;
  font-size: 12px
}

.ee-calendar__controls__month {
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: center
}

.ee-calendar-arrows-position--left .ee-calendar__button--previous {
  -ms-flex-order: 0;
  order: 0
}

.ee-calendar-arrows-position--left .ee-calendar__button--next {
  -ms-flex-order: 1;
  order: 1
}

.ee-calendar-arrows-position--left .ee-calendar__controls__month {
  -ms-flex-order: 2;
  order: 2
}

.ee-calendar-arrows-position--right .ee-calendar__controls__month {
  -ms-flex-order: 0;
  order: 0
}

.ee-calendar-arrows-position--right .ee-calendar__button--previous {
  -ms-flex-order: 1;
  order: 1
}

.ee-calendar-arrows-position--right .ee-calendar__button--next {
  -ms-flex-order: 2;
  order: 2
}

.ee-calendar-skin--default .ee-calendar__day--event .ee-calendar__day__header {
  background: rgba(0, 0, 0, .05)
}

.ee-calendar-skin--compact .ee-calendar {
  max-width: 450px
}

.ee-calendar-skin--compact .ee-calendar__events {
  transform: translateX(-110%)
}

.ee-calendar-skin--compact .ee-calendar__events__header {
  padding: 12px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center
}

.ee-calendar-skin--compact .ee-calendar__day__events, .ee-table__sort .ee-table__text .nicon-sort-down, .ee-table__sort .ee-table__text .nicon-sort-up, .ee-table__sort--up .ee-table__text .nicon-sort-up-down {
  display: none
}

.ee-calendar-skin--compact .ee-calendar__events__header__title {
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: left
}

.ee-calendar-skin--compact .ee-calendar__week {
  text-align: center
}

.ee-calendar-skin--compact .ee-calendar__month {
  overflow: hidden;
  position: relative
}

.ee-calendar-skin--compact .ee-calendar__month.show-events .ee-calendar__table {
  transform: translateX(100%)
}

.ee-calendar-skin--compact .ee-calendar__month.show-events .ee-calendar__events {
  transform: translateX(0)
}

.ee-slide-menu-effect--overlay.ee-slide-menu-direction--left .ee-slide-menu__sub-menu.ee--is-active, .ee-slide-menu-effect--push.ee-slide-menu-direction--left .ee--is-active-parent {
  transform: translateX(-100%)
}

.ee-calendar-skin--compact .ee-calendar__day__wrapper {
  height: 0;
  padding-bottom: 100%;
  border-radius: 999px
}

.ee-calendar-skin--compact .ee-calendar__day__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center
}

.ee-calendar-event-title--no-wrap .ee-calendar__day--event .ee-calendar__day__event a:before {
  content: attr(data-title);
  display: none;
  position: absolute;
  left: 0;
  top: 0
}

.ee-calendar-event-title--no-wrap .ee-calendar__day--event .ee-calendar__day__event a:hover {
  overflow: visible;
  z-index: 1
}

.ee-calendar-event-title--no-wrap .ee-calendar__day--event .ee-calendar__day__event a:hover:before {
  display: block
}

.elementor-widget-table {
  text-align: center;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center
}

.ee-table, .ee-table__cell {
  text-align: left;
  padding: 0
}

.elementor-widget-table .elementor-widget-container {
  width: 100%;
  overflow: hidden
}

.ee-table {
  width: 100%;
  height: auto;
  margin: 0;
  border: none;
  border-spacing: 0;
  border-color: inherit;
  vertical-align: inherit;
  font-weight: inherit;
  -webkit-border-horizontal-spacing: 0;
  -webkit-border-vertical-spacing: 0;
  cursor: default
}

.ee-effect .ee-button, .ee-menu__arrow i, .ee-table__cell {
  vertical-align: middle
}

.ee-table.ee-table--rules {
  border-collapse: collapse
}

.ee-table__cell {
  max-width: 1px
}

.ee-table__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  padding: 12px
}

.ee-table__sort .ee-table__text {
  cursor: pointer
}

.ee-table__sort .ee-table__text .nicon {
  -ms-flex-positive: 1;
  flex-grow: 1;
  text-align: right
}

.ee-offcanvas__slidebar .ee-offcanvas__content, .ee-table__sort--down .ee-table__text .nicon-sort-down, .ee-table__sort--up .ee-table__text .nicon-sort-up {
  display: block
}

.ee-table__sort--down .ee-table__text .nicon-sort-up-down {
  display: none
}

body.ee-offcanvas--open.ee-offcanvas--scroll {
  overflow: visible
}

body .ee-offcanvas__container {
  height: 100%;
  z-index: 997
}

.ee-offcanvas__overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 998;
  background: #000;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s linear
}

.ee-offcanvas--opening .ee-offcanvas__overlay {
  opacity: 1;
  visibility: visible
}

.ee-offcanvas--open .ee-offcanvas__overlay {
  visibility: visible;
  opacity: 1
}

.ee-offcanvas--closing .ee-offcanvas__overlay {
  opacity: 0;
  visibility: visible
}

.ee-offcanvas--closed .ee-offcanvas__overlay {
  opacity: 0;
  visibility: hidden
}

.ee-offcanvas__slidebar {
  width: 50%;
  z-index: 999
}

.ee-offcanvas__content {
  display: none;
  padding: 24px
}

.ee-offcanvas__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 24px
}

.ee-offcanvas__header__title {
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-bottom: 0
}

.ee-post, .ee-post__area > :not(:empty):not(:last-child) {
  margin-bottom: 24px
}

.ee-offcanvas__header__close {
  display: none;
  font-size: 30px;
  cursor: pointer
}

.ee-post, .ee-post__add-to-cart, .ee-post__price, .ee-post__rating {
  font-size: 16px
}

.ee-offcanvas__header-close--left .ee-offcanvas__header__close, .ee-offcanvas__header-close--right .ee-offcanvas__header__close, .ee-offcanvas__header__close i, .ee-post__title {
  display: block
}

.ee-offcanvas__header-close--right .ee-offcanvas__header__title {
  padding-right: 24px
}

.ee-offcanvas__header-close--left {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.ee-offcanvas__header-close--left .ee-offcanvas__header__title {
  padding-left: 24px
}

.ee-offcanvas__header--hide-title.ee-offcanvas__header-close--right {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.ee-offcanvas__header--hide-title.ee-offcanvas__header-close--left {
  -ms-flex-direction: row;
  flex-direction: row
}

.ee-offcanvas-position--floating .ee-offcanvas__trigger {
  position: fixed
}

.ee-offcanvas-placement--top-left .ee-offcanvas__trigger {
  left: 0;
  top: 0
}

.ee-offcanvas-placement--top-center .ee-offcanvas__trigger {
  left: 50%;
  top: 0;
  transform: translateX(-50%)
}

.ee-offcanvas-placement--top-right .ee-offcanvas__trigger {
  right: 0;
  top: 0
}

.ee-offcanvas-placement--middle-right .ee-offcanvas__trigger {
  right: 0;
  transform: translateY(-50%);
  top: 50%
}

.ee-offcanvas-placement--bottom-right .ee-offcanvas__trigger {
  right: 0;
  bottom: 0
}

.ee-offcanvas-placement--bottom-center .ee-offcanvas__trigger {
  left: 50%;
  bottom: 0;
  transform: translateX(-50%)
}

.ee-offcanvas-placement--bottom-left .ee-offcanvas__trigger {
  left: 0;
  bottom: 0
}

.ee-offcanvas-placement--middle-left .ee-offcanvas__trigger {
  left: 0;
  transform: translateY(-50%);
  top: 50%
}

.ee-menu__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -ms-flex-align: center;
  align-items: center
}

.ee-menu__item__back, .ee-menu__item__link {
  display: inline-block;
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-menu__item:not(.ee-menu__item--has-children):not(.ee-menu__back) .ee-menu__arrow, li:last-child .ee-post__meta__separator, li:last-child .ee-post__terms__separator {
  display: none
}

.ee-menu__arrow, .ee-menu__item__link {
  transition: all .2s ease-in-out;
  padding: 6px 12px
}

.ee-menu__back {
  -ms-flex-direction: row;
  flex-direction: row
}

.ee-menu__arrow, .ee-menu__item {
  border-color: rgba(0, 0, 0, .2)
}

.ee-menu__arrow, .ee-menu__arrow:hover, .ee-menu__item__link, .ee-menu__item__link:hover {
  color: #fff
}

.ee-menu__arrow {
  padding: 6px 24px;
  cursor: pointer
}

.ee-slide-menu {
  width: 100%;
  position: relative;
  overflow: hidden
}

.ee-slide-menu__sub-menu {
  width: 100%;
  position: absolute
}

.ee-mfp-popup--no-overlay.mfp-wrap .mfp-container, .ee-popup__content, .ee-post, .ee-post__body, .ee-post__media, .ee-toggle-element__controls {
  position: relative
}

.ee-slide-menu__menu, .ee-slide-menu__sub-menu {
  transition: transform .3s ease-in-out
}

.ee-slide-menu-direction--left .ee-slide-menu__sub-menu {
  top: 0;
  left: 100%
}

.ee-slide-menu-direction--right .ee-slide-menu__sub-menu {
  top: 0;
  left: -100%
}

.ee-slide-menu-direction--top .ee-slide-menu__sub-menu {
  top: 100%;
  left: 0
}

.ee-slide-menu-direction--bottom .ee-slide-menu__sub-menu {
  top: -100%;
  left: 0
}

.ee-slide-menu-effect--overlay.ee-slide-menu-direction--right .ee-slide-menu__sub-menu.ee--is-active {
  transform: translateX(100%)
}

.ee-slide-menu-effect--overlay.ee-slide-menu-direction--top .ee-slide-menu__sub-menu.ee--is-active {
  transform: translateY(-100%)
}

.ee-slide-menu-effect--overlay.ee-slide-menu-direction--bottom .ee-slide-menu__sub-menu.ee--is-active {
  transform: translateY(100%)
}

.ee-slide-menu-effect--push .ee-slide-menu__sub-menu.ee--is-active {
  z-index: 999
}

.ee-slide-menu-effect--push.ee-slide-menu-direction--right .ee--is-active-parent {
  transform: translateX(100%)
}

.ee-effect-type--back.ee-effect-direction--down .ee-button:after, .ee-effect-type--back.ee-effect-direction--down .ee-button:before, .ee-effect-type--clone.ee-effect-direction--down .ee-button:after, .ee-effect-type--clone.ee-effect-direction--down .ee-button:before, .ee-slide-menu-effect--push.ee-slide-menu-direction--top .ee--is-active-parent {
  transform: translateY(-100%)
}

.ee-slide-menu-effect--push.ee-slide-menu-direction--bottom .ee--is-active-parent {
  transform: translateY(100%)
}

.ee-slide-menu-effect--push.ee-slide-menu-direction--bottom .ee-slide-menu, .ee-slide-menu-effect--push.ee-slide-menu-direction--top .ee-slide-menu {
  overflow-y: hidden
}

.ee-post {
  background: #fff;
  transform: translateZ(0);
  width: 100%;
  max-width: 100%;
  cursor: default;
  border: 1px solid #f7f7f7
}

.ee-post__metas__price p.price, .ee-post__title__heading {
  margin: 0
}

.ee-post, .ee-post__body, .ee-post__footer, .ee-post__header {
  display: -ms-flexbox;
  display: flex;
  -ms-flex: 1;
  flex: 1;
  -ms-flex-direction: column;
  flex-direction: column
}

.ee-post__footer, .ee-post__header {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.ee-post__metas__list, .ee-post__terms {
  display: block;
  margin-top: 0;
  margin-bottom: 0
}

.ee-post__excerpt p {
  font-size: 14px
}

.ee-post__metas {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.ee-post__metas--has-metas {
  display: -ms-flexbox;
  display: flex
}

.ee-post__metas--has-metas.ee-post__metas--has-avatar {
  -ms-flex-align: center;
  align-items: center
}

.ee-post__metas--has-metas .ee-post__metas__avatar {
  margin-right: 12px
}

.ee-post__metas__avatar {
  overflow: hidden;
  max-width: 24px !important;
  border-radius: 999px
}

.ee-popup__trigger, .ee-post__button, .ee-post__metas__avatar:last-child {
  display: inline-block
}

.ee-post__metas__list {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-post__rating .star-rating {
  display: inline-block;
  margin-left: auto;
  margin-right: auto
}

.ee-post__add-to-cart {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -ms-flex-align: center;
  align-items: center
}

.ee-post__add-to-cart .add_to_cart_button {
  display: block
}

.ee-post__add-to-cart .added_to_cart {
  padding-left: 12px
}

.ee-post__body, .ee-post__footer, .ee-post__header, .ee-post__media__content {
  padding: 24px
}

.ee-post__header {
  border-bottom: 0 solid #f7f7f7
}

.ee-post__body {
  -ms-flex: 1 0 auto;
  flex: 1 0 auto
}

.ee-post__footer {
  border-top: 1px solid #f7f7f7
}

.ee-post__media {
  overflow: hidden
}

.ee-post__media__content {
  z-index: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column
}

.ee-post__media__content * {
  color: #fff
}

.ee-popup, .ee-post__media__thumbnail, .ee-posts-avatar-position-top .ee-post__metas.ee-post__metas--has-avatar {
  display: block
}

.ee-post__media--content .ee-post__media__content {
  position: absolute
}

.ee-post__media--content .ee-post__media__thumbnail img {
  width: 100%
}

.ee-post--horizontal .ee-post__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-post--horizontal .ee-post__content > * {
  -ms-flex: 0 0 auto;
  flex: 0 0 auto
}

.ee-post--horizontal .ee-post__body {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-posts-align-middle .ee-post__media__content {
  -ms-flex-pack: center;
  justify-content: center
}

.ee-posts-align-bottom .ee-post__media__content {
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-posts-align-stretch .ee-post__media__content {
  -ms-flex-pack: justify;
  justify-content: space-between
}

.ee-posts-align-stretch .ee-post__media__content > :nth-child(1):not(.ee-post__metas--has-avatar):not(:last-child) {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-posts-thumbnail-ratio .ee-post__media__content {
  position: absolute;
  width: auto
}

.ee-posts-thumbnail-ratio .ee-post__media__thumbnail {
  display: -ms-flexbox;
  display: flex
}

.ee-posts-avatar-position-top .ee-post__metas__avatar {
  display: inline-block;
  margin-right: 0
}

.ee-posts-avatar-position-top .ee-post__metas--has-metas .ee-post__metas__avatar {
  margin-bottom: 12px
}

.ee-posts-avatar-position-right .ee-post__metas--has-metas {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.ee-posts-avatar-position-right .ee-post__metas--has-metas .ee-post__metas__avatar {
  margin-right: 0;
  margin-left: 12px
}

.ee-popup__header__title {
  margin-bottom: 5px
}

.ee-popup__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #fff;
  max-width: 100%;
  margin: 2em auto
}

.ee-popup__content :last-child {
  margin-bottom: 0
}

.ee-popup__footer__button {
  cursor: pointer;
  display: inline-block
}

.ee-popup__content__body, .ee-popup__footer, .ee-popup__header {
  padding: 20px
}

.ee-popup__close {
  padding: 0;
  cursor: pointer;
  border-radius: 0
}

.mfp-figure .ee-popup__close.mfp-close {
  width: auto;
  height: auto;
  right: 0;
  padding: 10px
}

.ee-mfp-popup .mfp-figure:after {
  content: none
}

.ee-mfp-popup .mfp-bottom-bar {
  margin: 0;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  right: 0;
  width: auto;
  padding: 20px
}

.ee-mfp-popup .mfp-container, .ee-mfp-popup .mfp-img {
  padding: 0
}

.ee-mfp-popup .mfp-title {
  line-height: normal
}

.ee-mfp-popup .mfp-inline-holder .mfp-content {
  max-width: 500px
}

.ee-mfp-popup .mfp-close {
  line-height: 1;
  width: 1em;
  height: 1em;
  font-size: 1em
}

.ee-mfp-popup .mfp-close:before {
  display: block;
  font-size: .8em;
  font-family: eicons
}

.ee-mfp-popup .mfp-close--halign-left {
  left: 0;
  right: auto
}

.ee-mfp-popup .mfp-close--halign-center {
  left: 50%;
  transform: translateX(-50%);
  right: auto
}

.ee-mfp-popup .mfp-close--valign-bottom {
  bottom: 0;
  top: auto !important
}

.ee-mfp-popup .mfp-iframe-holder .mfp-close {
  top: 0;
  right: 0;
  width: auto;
  height: auto
}

.ee-mfp-popup--no-overlay.mfp-wrap.mfp-popup--valign-top {
  top: 0;
  bottom: auto;
  transform: translate(-50%, 0)
}

.ee-mfp-popup--no-overlay.mfp-wrap, .ee-mfp-popup--no-overlay.mfp-wrap.mfp-popup--valign-middle {
  top: 50%;
  transform: translate(-50%, -50%)
}

.ee-mfp-popup--no-overlay.mfp-wrap.mfp-popup--valign-bottom {
  bottom: 0;
  top: auto;
  transform: translate(-50%, 0)
}

.ee-mfp-popup.mfp-popup--valign-bottom .ee-popup__content, .ee-mfp-popup.mfp-popup--valign-stretch .ee-popup__content, .ee-mfp-popup.mfp-popup--valign-top .ee-popup__content {
  margin: 0
}

.ee-mfp-popup.mfp-popup--valign-bottom .mfp-content {
  vertical-align: bottom
}

.ee-inline-svg, .ee-mfp-popup.mfp-popup--valign-top .mfp-content, .ee-switcher__title__char {
  vertical-align: top
}

.ee-mfp-popup.zoom-in .mfp-with-anim {
  opacity: 0;
  transition: all .2s ease-in-out;
  transform: scale(.8)
}

.ee-mfp-popup.zoom-in.mfp-bg, .ee-mfp-popup.zoom-out.mfp-bg {
  opacity: 0;
  transition: all .3s ease-out
}

.ee-mfp-popup.zoom-in.mfp-ready .mfp-with-anim, .ee-mfp-popup.zoom-out.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1)
}

.ee-mfp-popup.newspaper.mfp-ready.mfp-bg, .ee-mfp-popup.slide-bottom.mfp-ready.mfp-bg, .ee-mfp-popup.slide-left.mfp-ready.mfp-bg, .ee-mfp-popup.slide-right.mfp-ready.mfp-bg, .ee-mfp-popup.slide-top.mfp-ready.mfp-bg, .ee-mfp-popup.unfold-horizontal.mfp-ready.mfp-bg, .ee-mfp-popup.unfold-vertical.mfp-ready.mfp-bg, .ee-mfp-popup.zoom-in.mfp-ready.mfp-bg, .ee-mfp-popup.zoom-out.mfp-ready.mfp-bg {
  opacity: .8
}

.ee-mfp-popup.zoom-in.mfp-removing .mfp-with-anim {
  transform: scale(.8);
  opacity: 0
}

.ee-mfp-popup.newspaper.mfp-removing.mfp-bg, .ee-mfp-popup.slide-bottom.mfp-removing .mfp-with-anim, .ee-mfp-popup.slide-bottom.mfp-removing.mfp-bg, .ee-mfp-popup.slide-left.mfp-removing .mfp-with-anim, .ee-mfp-popup.slide-left.mfp-removing.mfp-bg, .ee-mfp-popup.slide-right.mfp-removing .mfp-with-anim, .ee-mfp-popup.slide-right.mfp-removing.mfp-bg, .ee-mfp-popup.slide-top.mfp-removing .mfp-with-anim, .ee-mfp-popup.slide-top.mfp-removing.mfp-bg, .ee-mfp-popup.unfold-horizontal.mfp-removing .mfp-with-anim, .ee-mfp-popup.unfold-horizontal.mfp-removing.mfp-bg, .ee-mfp-popup.unfold-vertical.mfp-removing .mfp-with-anim, .ee-mfp-popup.unfold-vertical.mfp-removing.mfp-bg, .ee-mfp-popup.zoom-in.mfp-removing.mfp-bg, .ee-mfp-popup.zoom-out.mfp-removing.mfp-bg {
  opacity: 0
}

.ee-mfp-popup.zoom-out .mfp-with-anim {
  opacity: 0;
  transition: all .3s ease-in-out;
  transform: scale(1.3)
}

.ee-mfp-popup.zoom-out.mfp-removing .mfp-with-anim {
  transform: scale(1.3);
  opacity: 0
}

.ee-mfp-popup.newspaper .mfp-with-anim {
  opacity: 0;
  transition: all .5s;
  transform: scale(0) rotate(500deg)
}

.ee-mfp-popup.newspaper.mfp-bg, .ee-mfp-popup.unfold-horizontal.mfp-bg, .ee-mfp-popup.unfold-vertical.mfp-bg {
  opacity: 0;
  transition: all .5s
}

.ee-mfp-popup.newspaper.mfp-ready .mfp-with-anim {
  opacity: 1;
  transform: scale(1) rotate(0)
}

.ee-mfp-popup.newspaper.mfp-removing .mfp-with-anim {
  transform: scale(0) rotate(500deg);
  opacity: 0
}

.ee--is-ready .ee-toggle-element__indicator, .ee-mfp-popup.slide-bottom.mfp-ready .mfp-with-anim, .ee-mfp-popup.slide-left.mfp-ready .mfp-with-anim, .ee-mfp-popup.slide-right.mfp-ready .mfp-with-anim, .ee-mfp-popup.slide-top.mfp-ready .mfp-with-anim, .ee-mfp-popup.unfold-horizontal.mfp-ready .mfp-with-anim, .ee-mfp-popup.unfold-vertical.mfp-ready .mfp-with-anim {
  opacity: 1
}

.ee-mfp-popup.slide-bottom .mfp-with-anim, .ee-mfp-popup.slide-bottom.mfp-bg, .ee-mfp-popup.slide-left .mfp-with-anim, .ee-mfp-popup.slide-left.mfp-bg, .ee-mfp-popup.slide-right .mfp-with-anim, .ee-mfp-popup.slide-right.mfp-bg, .ee-mfp-popup.slide-top .mfp-with-anim, .ee-mfp-popup.slide-top.mfp-bg {
  opacity: 0;
  transition: all .3s
}

.ee-mfp-popup.slide-right .mfp-with-anim, .ee-mfp-popup.slide-right.mfp-removing .mfp-with-anim {
  transform: translateX(-50px)
}

.ee-mfp-popup.slide-left.mfp-ready .mfp-with-anim, .ee-mfp-popup.slide-right.mfp-ready .mfp-with-anim {
  transform: translateX(0)
}

.ee-mfp-popup.slide-left .mfp-with-anim, .ee-mfp-popup.slide-left.mfp-removing .mfp-with-anim {
  transform: translateX(50px)
}

.ee-mfp-popup.slide-top .mfp-with-anim, .ee-mfp-popup.slide-top.mfp-removing .mfp-with-anim {
  transform: translateY(50px)
}

.ee-mfp-popup.slide-bottom.mfp-ready .mfp-with-anim, .ee-mfp-popup.slide-top.mfp-ready .mfp-with-anim {
  transform: translateY(0)
}

.ee-mfp-popup.slide-bottom .mfp-with-anim, .ee-mfp-popup.slide-bottom.mfp-removing .mfp-with-anim {
  transform: translateY(-50px)
}

.ee-mfp-popup.unfold-horizontal .mfp-content, .ee-mfp-popup.unfold-vertical .mfp-content {
  perspective: 2000px
}

.ee-mfp-popup.unfold-horizontal .mfp-with-anim, .ee-mfp-popup.unfold-vertical .mfp-with-anim {
  opacity: 0;
  transition: all .3s ease-in-out;
  transform-style: preserve-3d
}

.ee-mfp-popup.unfold-horizontal.mfp-popup--valign-top .mfp-with-anim, .ee-mfp-popup.unfold-vertical.mfp-popup--valign-top .mfp-with-anim {
  transform-origin: 0 0
}

.ee-mfp-popup.unfold-horizontal.mfp-popup--valign-bottom .mfp-with-anim, .ee-mfp-popup.unfold-vertical.mfp-popup--valign-bottom .mfp-with-anim {
  transform-origin: 0 100%
}

.ee-mfp-popup.unfold-horizontal .mfp-with-anim {
  transform: rotateY(-90deg)
}

.ee-mfp-popup.unfold-horizontal.mfp-ready .mfp-with-anim {
  transform: rotateY(0)
}

.ee-mfp-popup.unfold-horizontal.mfp-removing .mfp-with-anim {
  transform: rotateY(90deg)
}

.ee-mfp-popup.unfold-vertical .mfp-with-anim {
  transform: rotateX(-90deg)
}

.ee-mfp-popup.unfold-vertical.mfp-ready .mfp-with-anim {
  transform: rotateX(0)
}

.ee-mfp-popup.unfold-vertical.mfp-removing .mfp-with-anim {
  transform: rotateX(90deg)
}

.ee-mfp-popup--no-overlay .mfp-close {
  color: #000
}

.ee-age-gate__content .ee-notification, .ee-mfp-popup--no-overlay.mfp-bg, .ee-toggle-element__element {
  display: none
}

.ee-mfp-popup--no-overlay.mfp-wrap {
  overflow: visible !important;
  height: auto;
  max-width: 500px;
  left: 50%
}

.ee-mfp-popup--no-overlay.mfp-wrap .mfp-content {
  max-width: none
}

.ee-toggle-element__toggle {
  display: block;
  text-align: center
}

.ee-toggle-element__controls-wrapper {
  display: inline-block;
  position: relative;
  padding: 6px;
  margin: 0;
  background-color: #f7f7f7
}

.ee-toggle-element__controls-wrapper--before {
  margin-bottom: 24px
}

.ee-switcher__nav, .ee-toggle-element__controls-wrapper--after {
  margin-top: 24px
}

.ee-toggle-element__controls {
  cursor: pointer;
  min-height: 26px
}

.ee-toggle-element__controls__item {
  line-height: 1;
  min-width: 26px;
  height: 100%;
  padding: .5em .9em;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  transition: all .3s linear
}

.ee-inline-svg > svg, .ee-switcher.is--loaded, .ee-toggle-element--stack-desktop .ee-toggle-element__controls > li > a, .elementor-editor-active .ee-age-gate__content .ee-notification {
  display: block
}

.ee-toggle-element__controls__item.ee--is-active {
  color: #fff
}

.ee-toggle-element__controls__text {
  display: block;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none
}

.ee-toggle-element__indicator {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  min-width: 26px;
  margin: 6px;
  opacity: 0;
  transition: opacity .3s linear
}

.ee-toggle-element--round .ee-toggle-element__controls-wrapper, .ee-toggle-element--round .ee-toggle-element__indicator {
  border-radius: 2em
}

.ee-effect .ee-button.ee-size-md:after, .ee-effect .ee-button.ee-size-md:before, .ee-toggle-element--square .ee-toggle-element__controls-wrapper {
  border-radius: 4px
}

.ee-effect .ee-button.ee-size-xs:after, .ee-effect .ee-button.ee-size-xs:before, .ee-toggle-element--square .ee-toggle-element__indicator {
  border-radius: 2px
}

.ee-toggle-element--stack-desktop.ee-toggle-element--round .ee-toggle-element__controls-wrapper, .ee-toggle-element--stack-mobile.ee-toggle-element--round .ee-toggle-element__controls-wrapper, .ee-toggle-element--stack-tablet.ee-toggle-element--round .ee-toggle-element__controls-wrapper {
  border-radius: 1.3em
}

.ee-toggle-element--stack-desktop .ee-toggle-element__controls {
  margin-left: 0 !important;
  -ms-flex-direction: column;
  flex-direction: column
}

.ee-toggle-element--stack-desktop .ee-toggle-element__controls > li {
  margin-left: 0 !important
}

.ee-audio-player {
  width: 100%;
  overflow: visible
}

.ee-audio-player .ee-player__controls__play a, .ee-audio-player .ee-player__playlist--hidden, .ee-audio-player .ee-player__source, .ee-google-map__pin, .ee-switcher__media__overlay, :not(.elementor-editor-active) .ee-conditions--hidden {
  display: none
}

.ee-audio-player .ee-player__controls__playlist-wrapper {
  overflow-y: auto;
  max-height: 120px
}

.ee-audio-player .ee-player__playlist__item {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 6px 12px;
  border-top: 1px solid rgba(255, 255, 255, .2);
  color: rgba(255, 255, 255, .5);
  cursor: pointer
}

.ee-audio-player .ee-player__playlist__item.ee--is-active, .ee-google-map__navigation__link, .ee-google-map__navigation__link:hover {
  color: #fff
}

.ee-audio-player .ee-player__control {
  transition: opacity .2s linear, color .2s linear
}

.ee-google-map {
  width: 100%;
  height: 400px
}

.ee-google-map-wrapper {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column
}

.ee-google-map__navigation {
  position: absolute;
  z-index: 1;
  margin: 24px;
  max-height: calc(100% - 48px);
  background-color: #0275d8;
  overflow-y: auto
}

.ee-switcher__media.ee-effect--coverBottom .ee-switcher__media__item, .ee-switcher__media.ee-effect--coverLeft .ee-switcher__media__item, .ee-switcher__media.ee-effect--coverRight .ee-switcher__media__item, .ee-switcher__media.ee-effect--coverTop .ee-switcher__media__item, .ee-switcher__media.ee-effect--fade .ee-switcher__media__item, .ee-switcher__media.ee-effect--slideBottom .ee-switcher__media__item, .ee-switcher__media.ee-effect--slideLeft .ee-switcher__media__item, .ee-switcher__media.ee-effect--slideRight .ee-switcher__media__item, .ee-switcher__media.ee-effect--slideTop .ee-switcher__media__item, .ee-switcher__media.ee-effect--swipeBottom .ee-switcher__media__item, .ee-switcher__media.ee-effect--swipeLeft .ee-switcher__media__item, .ee-switcher__media.ee-effect--swipeRight .ee-switcher__media__item, .ee-switcher__media.ee-effect--swipeTop .ee-switcher__media__item, .ee-switcher__media.ee-effect--uncoverBottom .ee-switcher__media__item, .ee-switcher__media.ee-effect--uncoverBottom .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--uncoverBottom .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--uncoverLeft .ee-switcher__media__item, .ee-switcher__media.ee-effect--uncoverLeft .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--uncoverLeft .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--uncoverRight .ee-switcher__media__item, .ee-switcher__media.ee-effect--uncoverRight .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--uncoverRight .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--uncoverTop .ee-switcher__media__item, .ee-switcher__media.ee-effect--uncoverTop .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--uncoverTop .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--wink .ee-switcher__media__item, .elementor-element .ee-parallax, .is--animating .ee-switcher__title__char, [off-canvas] {
  overflow: hidden
}

.ee-google-map__navigation__text {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-google-map__navigation__item {
  width: 100%;
  margin-bottom: 0
}

.ee-google-map__navigation__link {
  padding: 6px 12px;
  background-color: transparent;
  line-height: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  cursor: pointer
}

.ee-google-map-navigation--top-left .ee-google-map__navigation {
  top: 0;
  left: 0
}

.ee-google-map-navigation--top-right .ee-google-map__navigation {
  top: 0;
  right: 0
}

.ee-google-map-navigation--bottom-right .ee-google-map__navigation {
  bottom: 0;
  right: 0
}

.ee-google-map-navigation--bottom-left .ee-google-map__navigation {
  bottom: 0;
  left: 0
}

.ee-inline-svg {
  font-size: 0;
  display: inline-block
}

.ee-inline-svg > svg {
  margin: 0 auto;
  font-size: 1rem;
  min-width: 20px
}

.ee-switcher {
  display: none;
  position: relative
}

.ee-switcher__wrapper {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap
}

.ee-switcher__media-wrapper {
  min-width: 50%;
  width: auto
}

.ee-switcher__content-wrapper {
  -ms-flex-positive: 1;
  flex-grow: 1;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  z-index: 2
}

.ee-switcher__content {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-switcher__media:before {
  content: none !important
}

.ee-switcher__media img, .ee-switcher__media picture {
  max-width: 100%;
  margin: 0
}

.ee-switcher__media__items {
  transform: translate3d(0, 0, 0)
}

.ee-switcher__media__item {
  z-index: 0;
  transition: none;
  position: fixed
}

.ee-switcher__media__item.is--last, .ee-switcher__title, [canvas], [off-canvas*=push] {
  z-index: 1
}

.ee-switcher__media.ee-effect--coverBottom .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--coverBottom .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--coverLeft .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--coverLeft .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--coverRight .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--coverRight .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--coverTop .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--coverTop .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--fade .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--fade .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--slideBottom .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--slideBottom .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--slideLeft .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--slideLeft .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--slideRight .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--slideRight .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--slideTop .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--slideTop .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--swipeBottom .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--swipeBottom .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--swipeLeft .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--swipeLeft .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--swipeRight .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--swipeRight .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--swipeTop .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--swipeTop .ee-switcher__media__item.is--animating, .ee-switcher__media.ee-effect--wink .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--wink .ee-switcher__media__item.is--animating {
  z-index: 2;
  overflow: hidden
}

.ee-switcher__media.ee-effect--uncoverBottom .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--uncoverLeft .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--uncoverRight .ee-switcher__media__item.is--active, .ee-switcher__media.ee-effect--uncoverTop .ee-switcher__media__item.is--active {
  z-index: 2
}

.ee-effect.ee-effect-type--back .ee-button, .ee-effect.ee-effect-type--clone .ee-button:before {
  z-index: 1
}

.ee-switcher__media.ee-effect--flipHorizontal .ee-switcher__media__item img, .ee-switcher__media.ee-effect--flipHorizontal .ee-switcher__media__item picture, .ee-switcher__media.ee-effect--flipVertical .ee-switcher__media__item img, .ee-switcher__media.ee-effect--flipVertical .ee-switcher__media__item picture {
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important
}

.ee-switcher__title__char > * {
  display: block
}

.ee-switcher__descriptions, .ee-switcher__titles {
  position: relative
}

.ee-switcher__descriptions__description, .ee-switcher__titles__title {
  position: absolute;
  top: 0;
  display: block;
  transition: none;
  left: 0;
  right: 0
}

.ee-switcher__titles__title > * {
  font-size: 5vw;
  margin: 0
}

.ee-switcher__nav__item {
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  cursor: pointer;
  padding: 0 0 12px
}

.ee-switcher__nav__item.is--active {
  color: #000
}

.ee-switcher__arrows {
  margin: 24px 0 0;
  display: -ms-flexbox;
  display: flex
}

.ee-switcher .ee-loader {
  z-index: -1;
  top: auto
}

.ee-switcher .ee-arrow {
  position: relative;
  background-color: #eceeef;
  color: #000;
  margin: 0
}

.ee-switcher-skin--overlay .ee-switcher__descriptions__description, .ee-switcher-skin--overlay .ee-switcher__nav__item.is--active, .ee-switcher-skin--overlay .ee-switcher__title {
  color: #fff
}

.ee-switcher-skin--overlay .ee-switcher__media-wrapper {
  min-width: auto;
  width: 100%
}

.ee-switcher-skin--overlay .ee-switcher__content {
  padding: 48px
}

.ee-switcher-skin--overlay .ee-switcher__media__overlay {
  z-index: 2;
  display: block;
  background-color: rgba(0, 0, 0, .6)
}

.ee-switcher-skin--overlay .ee-switcher__nav__item {
  color: rgba(255, 255, 255, .7)
}

.ee-switcher-skin--overlay .ee-switcher .ee-arrow {
  background-color: #fff;
  color: #000
}

.ee-switcher-skin--overlay .ee-switcher .ee-loader {
  background-color: rgba(255, 255, 255, .2)
}

.ee-switcher-skin--default .ee-switcher__media {
  min-height: 500px
}

.ee-switcher-skin--default .ee-switcher__wrapper {
  margin-left: -48px
}

.ee-switcher-skin--default .ee-switcher__wrapper > * {
  padding-left: 48px
}

.ee-switcher-stack-desktop .ee-switcher__wrapper {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap
}

.ee-switcher-stack-desktop .ee-switcher__media-wrapper {
  width: 100%
}

.ee-switcher-arrows-align-center .ee-switcher__arrows {
  -ms-flex-pack: center;
  justify-content: center
}

.ee-switcher-arrows-align-right .ee-switcher__arrows {
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-switcher-arrows-align-justify .ee-switcher__arrows {
  -ms-flex-pack: justify;
  justify-content: space-between
}

.ee-switcher-menu-align--left .ee-switcher__nav {
  -ms-flex-pack: start;
  justify-content: flex-start
}

.ee-switcher-menu-align--left .ee-switcher__nav.ee-nav--stacked {
  -ms-flex-align: start;
  align-items: flex-start
}

.ee-switcher-menu-align--center .ee-switcher__nav {
  -ms-flex-pack: center;
  justify-content: center
}

.ee-switcher-menu-align--center .ee-switcher__nav.ee-nav--stacked {
  -ms-flex-align: center;
  align-items: center
}

.ee-switcher-menu-align--right .ee-switcher__nav {
  -ms-flex-pack: end;
  justify-content: flex-end
}

.ee-switcher-menu-align--right .ee-switcher__nav.ee-nav--stacked {
  -ms-flex-align: end;
  align-items: flex-end
}

.ee-switcher-menu-align--justify .ee-switcher__nav {
  -ms-flex-align: stretch;
  align-items: stretch
}

.ee-switcher-menu-align--justify .ee-switcher__nav__item {
  -ms-flex-positive: 1;
  flex-grow: 1
}

.ee-switcher-layout--reverse .ee-switcher__wrapper {
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse
}

.elementor-editor-active .ee-sticky.elementor-widget, .elementor-portfolio-item > a.elementor-post__thumbnail__link:hover {
  transition: none !important
}

.ee-hamburger--3dx .ee-hamburger-inner::after, .ee-hamburger--3dx .ee-hamburger-inner::before, .ee-hamburger--3dx-r .ee-hamburger-inner::after, .ee-hamburger--3dx-r .ee-hamburger-inner::before, .ee-hamburger--3dxy .ee-hamburger-inner::after, .ee-hamburger--3dxy .ee-hamburger-inner::before, .ee-hamburger--3dxy-r .ee-hamburger-inner::after, .ee-hamburger--3dxy-r .ee-hamburger-inner::before, .ee-hamburger--3dy .ee-hamburger-inner::after, .ee-hamburger--3dy .ee-hamburger-inner::before, .ee-hamburger--3dy-r .ee-hamburger-inner::after, .ee-hamburger--3dy-r .ee-hamburger-inner::before {
  transition: transform 0s .1s cubic-bezier(.645, .045, .355, 1)
}

.ee-sticky-parent.elementor-section-wrap, .ee-sticky-parent.elementor-widget-wrap {
  padding-bottom: 1px
}

.elementor-element .ee-parallax {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: absolute;
  z-index: -1
}

.elementor-element .ee-parallax, .elementor-element .ee-parallax__inner {
  transition: none
}

/*!
 * Slidebars - A jQuery Framework for Off-Canvas Menus and Sidebars
 * Version: 2 Development
 * Url: http://www.adchsm.com/slidebars/
 * Author: Adam Charles Smith
 * Author url: http://www.adchsm.com/
 * License: MIT
 * License url: http://www.adchsm.com/slidebars/license/
 */
[canvas=container], [off-canvas], body, html {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

[canvas=container] {
  position: relative;
  background-color: #fff;
  -webkit-overflow-scrolling: touch
}

[canvas=container]:after, [canvas=container]:before {
  clear: both;
  content: '';
  display: table
}

[off-canvas] {
  display: none;
  position: fixed;
  overflow-y: auto;
  background-color: #fff;
  -webkit-overflow-scrolling: touch
}

[off-canvas*=top] {
  width: 100%;
  height: 255px;
  top: 0
}

[off-canvas*=right] {
  height: 100%;
  top: 0;
  right: 0
}

[off-canvas*=bottom] {
  width: 100%;
  height: 255px;
  bottom: 0
}

[off-canvas*=left] {
  height: 100%;
  top: 0;
  left: 0
}

[off-canvas*=reveal], [off-canvas*=shift] {
  z-index: 0
}

[off-canvas*=overlay] {
  z-index: 9999
}

[off-canvas*=overlay] + [canvas=container] {
  transform: none !important
}

[off-canvas], body.ee-offcanvas--closing [canvas], body.ee-offcanvas--open [canvas], body.ee-offcanvas--opening [canvas] {
  transform: translate(0, 0);
  transition: transform .3s;
  -webkit-backface-visibility: hidden
}

[off-canvas*=shift][off-canvas*=top] {
  transform: translate(0, 50%)
}

[off-canvas*=shift][off-canvas*=right] {
  transform: translate(-50%, 0)
}

[off-canvas*=shift][off-canvas*=bottom] {
  transform: translate(0, -50%)
}

[off-canvas*=shift][off-canvas*=left] {
  transform: translate(50%, 0)
}

/*!
 * Hamburgers
 * @description Tasty CSS-animated ee-hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/ee-hamburgers
 * @link https://github.com/jonsuh/ee-hamburgers
 */
.ee-hamburger {
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: .15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible
}

.ee-effect.ee-effect-type--back .ee-button, .ee-effect.ee-effect-type--clone .ee-button, .ee-hamburger--emphatic, .ee-hamburger--emphatic-r {
  overflow: hidden
}

.ee-hamburger-box {
  width: 2.5em;
  height: 1.5em;
  display: inline-block;
  position: relative
}

.ee-hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -.125em
}

.ee-hamburger-inner, .ee-hamburger-inner::after, .ee-hamburger-inner::before {
  width: 2.5em;
  height: .3125em;
  background-color: #000;
  border-radius: .25em;
  position: absolute;
  transition-property: transform;
  transition-duration: .15s;
  transition-timing-function: ease
}

.ee-hamburger--3dx .ee-hamburger-inner, .ee-hamburger--3dx-r .ee-hamburger-inner, .ee-hamburger--3dxy .ee-hamburger-inner, .ee-hamburger--3dxy-r .ee-hamburger-inner, .ee-hamburger--3dy .ee-hamburger-inner, .ee-hamburger--3dy-r .ee-hamburger-inner {
  transition: transform .15s cubic-bezier(.645, .045, .355, 1), background-color 0s .1s cubic-bezier(.645, .045, .355, 1)
}

.ee-hamburger-inner::after, .ee-hamburger-inner::before {
  content: "";
  display: block
}

.ee-hamburger-inner::before {
  top: -.625em
}

.ee-hamburger-inner::after {
  bottom: -.625em
}

.ee-hamburger--3dx.ee--is-active .ee-hamburger-inner {
  background-color: transparent;
  transform: rotateY(180deg)
}

.ee-hamburger--3dx.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(0, .625em, 0) rotate(45deg)
}

.ee-hamburger--3dx.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -.625em, 0) rotate(-45deg)
}

.ee-hamburger--3dx-r.ee--is-active .ee-hamburger-inner {
  background-color: transparent;
  transform: rotateY(-180deg)
}

.ee-hamburger--3dx-r.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(0, .625em, 0) rotate(45deg)
}

.ee-hamburger--3dx-r.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -.625em, 0) rotate(-45deg)
}

.ee-hamburger--3dy.ee--is-active .ee-hamburger-inner {
  background-color: transparent;
  transform: rotateX(-180deg)
}

.ee-hamburger--3dy.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(0, .625em, 0) rotate(45deg)
}

.ee-hamburger--3dy.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -.625em, 0) rotate(-45deg)
}

.ee-hamburger--3dy-r.ee--is-active .ee-hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg)
}

.ee-hamburger--3dy-r.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(0, .625em, 0) rotate(45deg)
}

.ee-hamburger--3dy-r.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -.625em, 0) rotate(-45deg)
}

.ee-hamburger--3dxy.ee--is-active .ee-hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg)
}

.ee-hamburger--3dxy.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(0, .625em, 0) rotate(45deg)
}

.ee-hamburger--3dxy.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -.625em, 0) rotate(-45deg)
}

.ee-hamburger--collapse .ee-hamburger-inner, .ee-hamburger--collapse-r .ee-hamburger-inner {
  top: auto;
  transition-duration: .13s;
  transition-delay: .13s;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19);
  bottom: 0
}

.ee-hamburger--3dxy-r.ee--is-active .ee-hamburger-inner {
  background-color: transparent;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg)
}

.ee-hamburger--arrowturn-r.ee--is-active .ee-hamburger-inner, .ee-hamburger--arrowturn.ee--is-active .ee-hamburger-inner {
  transform: rotate(-180deg)
}

.ee-hamburger--3dxy-r.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(0, .625em, 0) rotate(45deg)
}

.ee-hamburger--3dxy-r.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -.625em, 0) rotate(-45deg)
}

.ee-hamburger--arrow.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(-.5em, 0, 0) rotate(-45deg) scale(.7, 1)
}

.ee-hamburger--arrow.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(-.5em, 0, 0) rotate(45deg) scale(.7, 1)
}

.ee-hamburger--arrow-r.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(.5em, 0, 0) rotate(45deg) scale(.7, 1)
}

.ee-hamburger--arrow-r.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(.5em, 0, 0) rotate(-45deg) scale(.7, 1)
}

.ee-hamburger--arrowalt .ee-hamburger-inner::before {
  transition: top .1s .1s ease, transform .1s cubic-bezier(.165, .84, .44, 1)
}

.ee-hamburger--arrowalt .ee-hamburger-inner::after {
  transition: bottom .1s .1s ease, transform .1s cubic-bezier(.165, .84, .44, 1)
}

.ee-hamburger--arrowalt.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  transform: translate3d(-.5em, -.625em, 0) rotate(-45deg) scale(.7, 1);
  transition: top .1s ease, transform .1s .1s cubic-bezier(.895, .03, .685, .22)
}

.ee-hamburger--arrowalt.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-.5em, .625em, 0) rotate(45deg) scale(.7, 1);
  transition: bottom .1s ease, transform .1s .1s cubic-bezier(.895, .03, .685, .22)
}

.ee-hamburger--arrowalt-r .ee-hamburger-inner::before {
  transition: top .1s .1s ease, transform .1s cubic-bezier(.165, .84, .44, 1)
}

.ee-hamburger--arrowalt-r .ee-hamburger-inner::after {
  transition: bottom .1s .1s ease, transform .1s cubic-bezier(.165, .84, .44, 1)
}

.ee-hamburger--arrowalt-r.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  transform: translate3d(.5em, -.625em, 0) rotate(45deg) scale(.7, 1);
  transition: top .1s ease, transform .1s .1s cubic-bezier(.895, .03, .685, .22)
}

.ee-hamburger--arrowalt-r.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: translate3d(.5em, .625em, 0) rotate(-45deg) scale(.7, 1);
  transition: bottom .1s ease, transform .1s .1s cubic-bezier(.895, .03, .685, .22)
}

.ee-hamburger--arrowturn.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(.5em, 0, 0) rotate(45deg) scale(.7, 1)
}

.ee-hamburger--arrowturn.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(.5em, 0, 0) rotate(-45deg) scale(.7, 1)
}

.ee-hamburger--arrowturn-r.ee--is-active .ee-hamburger-inner::before {
  transform: translate3d(-.5em, 0, 0) rotate(-45deg) scale(.7, 1)
}

.ee-hamburger--arrowturn-r.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(-.5em, 0, 0) rotate(45deg) scale(.7, 1)
}

.ee-hamburger--boring .ee-hamburger-inner, .ee-hamburger--boring .ee-hamburger-inner::after, .ee-hamburger--boring .ee-hamburger-inner::before {
  transition-property: none
}

.ee-hamburger--boring.ee--is-active .ee-hamburger-inner {
  transform: rotate(45deg)
}

.ee-hamburger--boring.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  opacity: 0
}

.ee-hamburger--boring.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg)
}

.ee-hamburger--collapse .ee-hamburger-inner::after {
  top: -1.25em;
  transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear
}

.ee-hamburger--collapse .ee-hamburger-inner::before {
  transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--collapse.ee--is-active .ee-hamburger-inner {
  transform: translate3d(0, -.625em, 0) rotate(-45deg);
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--collapse.ee--is-active .ee-hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .22s linear
}

.ee-hamburger--collapse.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  transform: rotate(-90deg);
  transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .25s cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--elastic .ee-hamburger-inner, .ee-hamburger--elastic-r .ee-hamburger-inner {
  transition-duration: 275ms;
  transition-timing-function: cubic-bezier(.68, -.55, .265, 1.55);
  top: .125em
}

.ee-hamburger--collapse-r .ee-hamburger-inner::after {
  top: -1.25em;
  transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity .1s linear
}

.ee-hamburger--collapse-r .ee-hamburger-inner::before {
  transition: top .12s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--collapse-r.ee--is-active .ee-hamburger-inner {
  transform: translate3d(0, -.625em, 0) rotate(45deg);
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--collapse-r.ee--is-active .ee-hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity .1s .22s linear
}

.ee-hamburger--collapse-r.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top .1s .16s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .25s cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--elastic .ee-hamburger-inner::before {
  top: .625em;
  transition: opacity 125ms 275ms ease
}

.ee-hamburger--elastic .ee-hamburger-inner::after {
  top: 1.25em;
  transition: transform 275ms cubic-bezier(.68, -.55, .265, 1.55)
}

.ee-hamburger--elastic.ee--is-active .ee-hamburger-inner {
  transform: translate3d(0, .625em, 0) rotate(135deg);
  transition-delay: 75ms
}

.ee-hamburger--elastic.ee--is-active .ee-hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0
}

.ee-hamburger--elastic.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -1.25em, 0) rotate(-270deg);
  transition-delay: 75ms
}

.ee-hamburger--emphatic .ee-hamburger-inner, .ee-hamburger--emphatic-r .ee-hamburger-inner {
  transition: background-color 125ms 175ms ease-in
}

.ee-hamburger--elastic-r .ee-hamburger-inner::before {
  top: .625em;
  transition: opacity 125ms 275ms ease
}

.ee-hamburger--elastic-r .ee-hamburger-inner::after {
  top: 1.25em;
  transition: transform 275ms cubic-bezier(.68, -.55, .265, 1.55)
}

.ee-hamburger--elastic-r.ee--is-active .ee-hamburger-inner {
  transform: translate3d(0, .625em, 0) rotate(-135deg);
  transition-delay: 75ms
}

.ee-hamburger--elastic-r.ee--is-active .ee-hamburger-inner::before {
  transition-delay: 0s;
  opacity: 0
}

.ee-hamburger--elastic-r.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -1.25em, 0) rotate(270deg);
  transition-delay: 75ms
}

.ee-hamburger--emphatic .ee-hamburger-inner::before {
  left: 0;
  transition: transform 125ms cubic-bezier(.6, .04, .98, .335), top 50ms 125ms linear, left 125ms 175ms ease-in
}

.ee-hamburger--emphatic .ee-hamburger-inner::after {
  top: .625em;
  right: 0;
  transition: transform 125ms cubic-bezier(.6, .04, .98, .335), top 50ms 125ms linear, right 125ms 175ms ease-in
}

.ee-hamburger--emphatic.ee--is-active .ee-hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent
}

.ee-hamburger--emphatic.ee--is-active .ee-hamburger-inner::before {
  left: -5em;
  top: -5em;
  transform: translate3d(5em, 5em, 0) rotate(45deg);
  transition: left 125ms ease-out, top 50ms 125ms linear, transform 125ms 175ms cubic-bezier(.075, .82, .165, 1)
}

.ee-hamburger--emphatic.ee--is-active .ee-hamburger-inner::after {
  right: -5em;
  top: -5em;
  transform: translate3d(-5em, 5em, 0) rotate(-45deg);
  transition: right 125ms ease-out, top 50ms 125ms linear, transform 125ms 175ms cubic-bezier(.075, .82, .165, 1)
}

.ee-hamburger--spin .ee-hamburger-inner, .ee-hamburger--spin-r .ee-hamburger-inner {
  transition-duration: .22s;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--emphatic-r .ee-hamburger-inner::before {
  left: 0;
  transition: transform 125ms cubic-bezier(.6, .04, .98, .335), top 50ms 125ms linear, left 125ms 175ms ease-in
}

.ee-hamburger--emphatic-r .ee-hamburger-inner::after {
  top: .625em;
  right: 0;
  transition: transform 125ms cubic-bezier(.6, .04, .98, .335), top 50ms 125ms linear, right 125ms 175ms ease-in
}

.ee-hamburger--emphatic-r.ee--is-active .ee-hamburger-inner {
  transition-delay: 0s;
  transition-timing-function: ease-out;
  background-color: transparent
}

.ee-hamburger--emphatic-r.ee--is-active .ee-hamburger-inner::before {
  left: -5em;
  top: 5em;
  transform: translate3d(5em, -5em, 0) rotate(-45deg);
  transition: left 125ms ease-out, top 50ms 125ms linear, transform 125ms 175ms cubic-bezier(.075, .82, .165, 1)
}

.ee-hamburger--emphatic-r.ee--is-active .ee-hamburger-inner::after {
  right: -5em;
  top: 5em;
  transform: translate3d(-5em, -5em, 0) rotate(45deg);
  transition: right 125ms ease-out, top 50ms 125ms linear, transform 125ms 175ms cubic-bezier(.075, .82, .165, 1)
}

.ee-hamburger--minus .ee-hamburger-inner::after, .ee-hamburger--minus .ee-hamburger-inner::before {
  transition: bottom 80ms 0s ease-out, top 80ms 0s ease-out, opacity 0s linear
}

.ee-hamburger--minus.ee--is-active .ee-hamburger-inner::after, .ee-hamburger--minus.ee--is-active .ee-hamburger-inner::before {
  opacity: 0;
  transition: bottom 80ms ease-out, top 80ms ease-out, opacity 0s 80ms linear
}

.ee-hamburger--minus.ee--is-active .ee-hamburger-inner::before {
  top: 0
}

.ee-hamburger--minus.ee--is-active .ee-hamburger-inner::after {
  bottom: 0
}

.ee-hamburger--slider .ee-hamburger-inner {
  top: .125em
}

.ee-hamburger--slider .ee-hamburger-inner::before {
  top: .625em;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: .15s
}

.ee-hamburger--slider .ee-hamburger-inner::after {
  top: 1.25em
}

.ee-hamburger--slider.ee--is-active .ee-hamburger-inner {
  transform: translate3d(0, .625em, 0) rotate(45deg)
}

.ee-hamburger--slider.ee--is-active .ee-hamburger-inner::before {
  transform: rotate(-45deg) translate3d(-.35714em, -.375em, 0);
  opacity: 0
}

.ee-hamburger--slider.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -1.25em, 0) rotate(-90deg)
}

.ee-hamburger--slider-r .ee-hamburger-inner {
  top: .125em
}

.ee-hamburger--slider-r .ee-hamburger-inner::before {
  top: .625em;
  transition-property: transform, opacity;
  transition-timing-function: ease;
  transition-duration: .15s
}

.ee-hamburger--slider-r .ee-hamburger-inner::after {
  top: 1.25em
}

.ee-hamburger--slider-r.ee--is-active .ee-hamburger-inner {
  transform: translate3d(0, .625em, 0) rotate(-45deg)
}

.ee-hamburger--slider-r.ee--is-active .ee-hamburger-inner::before {
  transform: rotate(45deg) translate3d(.35714em, -.375em, 0);
  opacity: 0
}

.ee-hamburger--slider-r.ee--is-active .ee-hamburger-inner::after {
  transform: translate3d(0, -1.25em, 0) rotate(90deg)
}

.ee-hamburger--spin .ee-hamburger-inner::before {
  transition: top .1s .25s ease-in, opacity .1s ease-in
}

.ee-hamburger--spin .ee-hamburger-inner::after {
  transition: bottom .1s .25s ease-in, transform .22s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--spin.ee--is-active .ee-hamburger-inner {
  transform: rotate(225deg);
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--spin.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top .1s ease-out, opacity .1s .12s ease-out
}

.ee-hamburger--spin.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom .1s ease-out, transform .22s .12s cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--spin-r .ee-hamburger-inner::before {
  transition: top .1s .25s ease-in, opacity .1s ease-in
}

.ee-hamburger--spin-r .ee-hamburger-inner::after {
  transition: bottom .1s .25s ease-in, transform .22s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--spin-r.ee--is-active .ee-hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--spin-r.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top .1s ease-out, opacity .1s .12s ease-out
}

.ee-hamburger--spin-r.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg);
  transition: bottom .1s ease-out, transform .22s .12s cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--spring .ee-hamburger-inner {
  top: .125em;
  transition: background-color 0s .13s linear
}

.ee-hamburger--spring .ee-hamburger-inner::before {
  top: .625em;
  transition: top .1s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--spring .ee-hamburger-inner::after {
  top: 1.25em;
  transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--spring.ee--is-active .ee-hamburger-inner {
  transition-delay: .22s;
  background-color: transparent
}

.ee-hamburger--spring.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  transition: top .1s .15s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .22s cubic-bezier(.215, .61, .355, 1);
  transform: translate3d(0, .625em, 0) rotate(45deg)
}

.ee-hamburger--spring.ee--is-active .ee-hamburger-inner::after {
  top: 0;
  transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .22s cubic-bezier(.215, .61, .355, 1);
  transform: translate3d(0, .625em, 0) rotate(-45deg)
}

.ee-hamburger--spring-r .ee-hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: .13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--stand .ee-hamburger-inner, .ee-hamburger--stand-r .ee-hamburger-inner {
  transition: transform 75ms .15s cubic-bezier(.55, .055, .675, .19), background-color 0s 75ms linear
}

.ee-hamburger--spring-r .ee-hamburger-inner::after {
  top: -1.25em;
  transition: top .2s .2s cubic-bezier(.33333, .66667, .66667, 1), opacity 0s linear
}

.ee-hamburger--spring-r .ee-hamburger-inner::before {
  transition: top .1s .2s cubic-bezier(.33333, .66667, .66667, 1), transform .13s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--spring-r.ee--is-active .ee-hamburger-inner {
  transform: translate3d(0, -.625em, 0) rotate(-45deg);
  transition-delay: .22s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--spring-r.ee--is-active .ee-hamburger-inner::after {
  top: 0;
  opacity: 0;
  transition: top .2s cubic-bezier(.33333, 0, .66667, .33333), opacity 0s .22s linear
}

.ee-hamburger--spring-r.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  transform: rotate(90deg);
  transition: top .1s .15s cubic-bezier(.33333, 0, .66667, .33333), transform .13s .22s cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--stand .ee-hamburger-inner::before {
  transition: top 75ms 75ms ease-in, transform 75ms 0s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--stand .ee-hamburger-inner::after {
  transition: bottom 75ms 75ms ease-in, transform 75ms 0s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--stand.ee--is-active .ee-hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent;
  transition: transform 75ms 0s cubic-bezier(.215, .61, .355, 1), background-color 0s .15s linear
}

.ee-hamburger--stand.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 75ms .1s ease-out, transform 75ms .15s cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--stand.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 75ms .1s ease-out, transform 75ms .15s cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--stand-r .ee-hamburger-inner::before {
  transition: top 75ms 75ms ease-in, transform 75ms 0s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--stand-r .ee-hamburger-inner::after {
  transition: bottom 75ms 75ms ease-in, transform 75ms 0s cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--stand-r.ee--is-active .ee-hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent;
  transition: transform 75ms 0s cubic-bezier(.215, .61, .355, 1), background-color 0s .15s linear
}

.ee-hamburger--stand-r.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  transform: rotate(-45deg);
  transition: top 75ms .1s ease-out, transform 75ms .15s cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--stand-r.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: rotate(45deg);
  transition: bottom 75ms .1s ease-out, transform 75ms .15s cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--squeeze .ee-hamburger-inner {
  transition-duration: 75ms;
  transition-timing-function: cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--squeeze .ee-hamburger-inner::before {
  transition: top 75ms .12s ease, opacity 75ms ease
}

.ee-hamburger--squeeze .ee-hamburger-inner::after {
  transition: bottom 75ms .12s ease, transform 75ms cubic-bezier(.55, .055, .675, .19)
}

.ee-hamburger--squeeze.ee--is-active .ee-hamburger-inner {
  transform: rotate(45deg);
  transition-delay: .12s;
  transition-timing-function: cubic-bezier(.215, .61, .355, 1)
}

.ee-hamburger--squeeze.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 75ms ease, opacity 75ms .12s ease
}

.ee-hamburger--squeeze.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg);
  transition: bottom 75ms ease, transform 75ms .12s cubic-bezier(.215, .61, .355, 1)
}

.ee-effect--double:hover .ee-button:after, .ee-hamburger--vortex-r.ee--is-active .ee-hamburger-inner::after, .ee-hamburger--vortex-r.ee--is-active .ee-hamburger-inner::before, .ee-hamburger--vortex.ee--is-active .ee-hamburger-inner::after, .ee-hamburger--vortex.ee--is-active .ee-hamburger-inner::before {
  transition-delay: 0s
}

.ee-hamburger--vortex .ee-hamburger-inner {
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.ee-hamburger--vortex .ee-hamburger-inner::after, .ee-hamburger--vortex .ee-hamburger-inner::before {
  transition-duration: 0s;
  transition-delay: .1s;
  transition-timing-function: linear
}

.ee-hamburger--vortex .ee-hamburger-inner::before {
  transition-property: top, opacity
}

.ee-hamburger--vortex .ee-hamburger-inner::after {
  transition-property: bottom, transform
}

.ee-hamburger--vortex.ee--is-active .ee-hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.ee-hamburger--vortex.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  opacity: 0
}

.ee-hamburger--vortex.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: rotate(90deg)
}

.ee-hamburger--vortex-r .ee-hamburger-inner {
  transition-duration: .2s;
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.ee-hamburger--vortex-r .ee-hamburger-inner::after, .ee-hamburger--vortex-r .ee-hamburger-inner::before {
  transition-duration: 0s;
  transition-delay: .1s;
  transition-timing-function: linear
}

.ee-hamburger--vortex-r .ee-hamburger-inner::before {
  transition-property: top, opacity
}

.ee-hamburger--vortex-r .ee-hamburger-inner::after {
  transition-property: bottom, transform
}

.ee-hamburger--vortex-r.ee--is-active .ee-hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(.19, 1, .22, 1)
}

.ee-hamburger--vortex-r.ee--is-active .ee-hamburger-inner::before {
  top: 0;
  opacity: 0
}

.ee-hamburger--vortex-r.ee--is-active .ee-hamburger-inner::after {
  bottom: 0;
  transform: rotate(-90deg)
}

.ee-effect .ee-button {
  position: relative;
  padding: 0
}

.ee-effect .ee-button:after, .ee-effect .ee-button:before {
  position: absolute;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.ee-effect .ee-button.ee-size-sm:after, .ee-effect .ee-button.ee-size-sm:before {
  border-radius: 3px
}

.ee-effect .ee-button.ee-size-lg:after, .ee-effect .ee-button.ee-size-lg:before {
  border-radius: 5px
}

.ee-effect .ee-button.ee-size-xl:after, .ee-effect .ee-button.ee-size-xl:before {
  border-radius: 6px
}

.ee-effect.ee-effect-type--3d .ee-button, .ee-effect.ee-effect-type--cube .ee-button {
  border-radius: 0 !important
}

.ee-effect.ee-effect-type--3d .ee-button:after, .ee-effect.ee-effect-type--3d .ee-button:before, .ee-effect.ee-effect-type--back .ee-button:after, .ee-effect.ee-effect-type--back .ee-button:before, .ee-effect.ee-effect-type--clone .ee-button:after, .ee-effect.ee-effect-type--clone .ee-button:before, .ee-effect.ee-effect-type--cube .ee-button:after, .ee-effect.ee-effect-type--cube .ee-button:before {
  border-radius: 0
}

.ee-effect.ee-effect-type--clone .ee-button:after, .ee-effect.ee-effect-type--cube .ee-button:after, .ee-effect.ee-effect-type--flip .ee-button:after {
  content: attr(data-label)
}

.ee-effect.ee-effect-type--clone .ee-button:after, .ee-effect.ee-effect-type--clone .ee-button:before {
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center
}

.ee-effect.ee-effect-type--clone .ee-button:after {
  z-index: 2
}

.ee-effect.ee-effect-type--back .ee-button:after, .ee-effect.ee-effect-type--back .ee-button:before {
  content: "";
  z-index: -1
}

.ee-effect.ee-effect-type--back:hover .ee-button:after, .ee-effect.ee-effect-type--back:hover .ee-button:before {
  transform: translateY(0) translateX(0)
}

.ee-effect.ee-effect-type--flip .ee-button {
  transform-style: preserve-3d;
  position: relative;
  z-index: 2;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden
}

.ee-effect.ee-effect-type--flip .ee-button:after, .ee-effect.ee-effect-type--flip .ee-button:before, .ee-effect.ee-effect-type--flip:hover .ee-button {
  transform: rotateX(-180deg)
}

.ee-effect.ee-effect-type--flip.ee-effect-zoom--zoom-in:hover .ee-button {
  transform: scale(1.2) rotateX(-180deg)
}

.ee-effect.ee-effect-type--flip.ee-effect-zoom--zoom-out:hover .ee-button {
  transform: scale(.8) rotateX(-180deg)
}

.ee-effect.ee-effect-type--3d .ee-button {
  transform-style: preserve-3d
}

.ee-effect.ee-effect-type--3d .ee-button:before {
  content: "";
  height: 50%;
  width: 100%;
  bottom: 100%;
  left: 0;
  top: auto;
  transform-origin: 0 100%;
  transform: rotateX(90deg)
}

.ee-effect.ee-effect-type--3d:hover .ee-button {
  transform: rotateX(-20deg) translateY(10%)
}

.ee-effect.ee-effect-type--3d.ee-effect-zoom--zoom-in:hover .ee-button {
  transform: scale(1.2) rotateX(-20deg)
}

.ee-effect.ee-effect-type--3d.ee-effect-zoom--zoom-out:hover .ee-button {
  transform: scale(.8) rotateX(-20deg)
}

.ee-effect.ee-effect-type--cube .ee-button {
  z-index: 2;
  transform-style: preserve-3d;
  transform-origin: 0 100%
}

.ee-effect.ee-effect-type--cube .ee-button:after, .ee-effect.ee-effect-type--cube .ee-button:before {
  bottom: 100%;
  height: 100%;
  top: auto;
  transform-origin: 0 100%;
  transform: rotateX(90deg)
}

.ee-effect.ee-effect-type--cube:hover .ee-button {
  transform: rotateX(-90deg) translateY(50%)
}

.ee-effect--double .ee-button:after {
  opacity: .6;
  transition-delay: .07s
}

.ee-effect--double:hover .ee-button:before {
  transition-delay: .07s
}

.ee-effect--double.ee-effect-orientation--horizontal .ee-button:after, .ee-effect--double.ee-effect-orientation--vertical .ee-button:after {
  opacity: 1;
  transition-delay: 0s
}

.ee-effect--double.ee-effect-orientation--horizontal:hover .ee-button:before, .ee-effect--double.ee-effect-orientation--vertical:hover .ee-button:before {
  transition-delay: 0s
}

.ee-effect-orientation--horizontal .ee-button:before {
  right: 50%;
  transform: translateX(-100%)
}

.ee-effect-orientation--horizontal .ee-button:after {
  left: 50%;
  transform: translateX(100%)
}

.ee-effect-shape--round.ee-effect-orientation--horizontal .ee-button:after, .ee-effect-shape--round.ee-effect-orientation--horizontal .ee-button:before {
  top: -1.3em;
  bottom: -1.3em
}

.ee-effect-shape--round.ee-effect-orientation--horizontal .ee-button:before {
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%
}

.ee-effect-shape--round.ee-effect-orientation--horizontal .ee-button:after {
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%
}

.ee-effect-shape--skewed.ee-effect-orientation--horizontal .ee-button:before {
  transform: skewX(10deg) translateX(-100%)
}

.ee-effect-shape--skewed.ee-effect-orientation--horizontal .ee-button:after {
  transform: skewX(10deg) translateX(100%)
}

.ee-effect-shape--skewed.ee-effect-orientation--horizontal:hover .ee-button:before {
  transform: skewX(10deg) translateX(-45%)
}

.ee-effect-shape--skewed.ee-effect-orientation--horizontal:hover .ee-button:after {
  transform: skewX(10deg) translateX(45%)
}

.ee-effect-orientation--vertical .ee-button:before {
  bottom: 50%;
  transform: translateY(-100%)
}

.ee-effect-orientation--vertical .ee-button:after {
  top: 50%;
  transform: translateY(100%)
}

.ee-effect-shape--round.ee-effect-orientation--vertical .ee-button:after, .ee-effect-shape--round.ee-effect-orientation--vertical .ee-button:before {
  left: -1.3em;
  right: -1.3em
}

.ee-effect-shape--round.ee-effect-orientation--vertical .ee-button:before {
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%
}

.ee-effect-shape--round.ee-effect-orientation--vertical .ee-button:after {
  border-top-left-radius: 100%;
  border-top-right-radius: 100%
}

.ee-effect-shape--skewed.ee-effect-orientation--vertical .ee-button:before {
  transform: skewY(-10deg) translateY(-100%)
}

.ee-effect-shape--skewed.ee-effect-orientation--vertical .ee-button:after {
  transform: skewY(-10deg) translateY(100%)
}

.ee-effect-shape--skewed.ee-effect-orientation--vertical:hover .ee-button:before {
  transform: skewY(-10deg) translateY(-45%)
}

.ee-effect-shape--skewed.ee-effect-orientation--vertical:hover .ee-button:after {
  transform: skewY(-10deg) translateY(45%)
}

.ee-effect-type--clone.ee-effect-zoom--zoom-in.ee-effect-direction--down .ee-button:after {
  transform: translateY(-100%) scale(.5)
}

.ee-effect-type--clone.ee-effect-zoom--zoom-out.ee-effect-direction--down .ee-button:after {
  transform: translateY(-100%) scale(1.3)
}

.ee-effect-direction--down.ee-effect-entrance--move:hover .ee-button-content-wrapper, .ee-effect-type--back.ee-effect-direction--up .ee-button:after, .ee-effect-type--back.ee-effect-direction--up .ee-button:before, .ee-effect-type--clone.ee-effect-direction--up .ee-button:after, .ee-effect-type--clone.ee-effect-direction--up .ee-button:before {
  transform: translateY(100%)
}

.ee-effect-direction--down.ee-effect-entrance--push:hover .ee-button-content-wrapper {
  transform: translateY(50%);
  opacity: 0
}

.ee-effect-type--clone.ee-effect-zoom--zoom-in.ee-effect-direction--up .ee-button:after {
  transform: translateY(100%) scale(.5)
}

.ee-effect-type--clone.ee-effect-zoom--zoom-out.ee-effect-direction--up .ee-button:after {
  transform: translateY(100%) scale(1.3)
}

.ee-effect-type--3d.ee-effect-direction--up .ee-button:before {
  content: "";
  height: 50%;
  width: 100%;
  top: 100%;
  left: 0;
  bottom: auto;
  transform-origin: 0 0;
  transform: rotateX(-90deg)
}

.ee-effect-type--flip.ee-effect-direction--up .ee-button:after, .ee-effect-type--flip.ee-effect-direction--up .ee-button:before {
  transform: rotateX(180deg)
}

.ee-effect-type--cube.ee-effect-direction--up .ee-button {
  transform-origin: 0 0
}

.ee-effect-type--cube.ee-effect-direction--up .ee-button:after, .ee-effect-type--cube.ee-effect-direction--up .ee-button:before {
  top: 100%;
  bottom: auto;
  height: 100%;
  transform-origin: 100% 0;
  transform: rotateX(-90deg)
}

.ee-effect-direction--up.ee-effect-entrance--move:hover .ee-button-content-wrapper {
  transform: translateY(-100%)
}

.ee-effect-direction--up.ee-effect-entrance--push:hover .ee-button-content-wrapper {
  transform: translateY(-50%);
  opacity: 0
}

.ee-effect-type--3d.ee-effect-direction--up:hover .ee-button {
  transform: rotateX(20deg) translateY(-10%)
}

.ee-effect-type--3d.ee-effect-zoom--zoom-in.ee-effect-direction--up:hover .ee-button {
  transform: scale(1.2) rotateX(20deg)
}

.ee-effect-type--3d.ee-effect-zoom--zoom-out.ee-effect-direction--up:hover .ee-button {
  transform: scale(.8) rotateX(20deg)
}

.ee-effect-type--flip.ee-effect-direction--up:hover .ee-button {
  transform: rotateX(180deg)
}

.ee-effect-type--flip.ee-effect-zoom--zoom-in.ee-effect-direction--up:hover .ee-button {
  transform: scale(1.2) rotateX(180deg)
}

.ee-effect-type--flip.ee-effect-zoom--zoom-out.ee-effect-direction--up:hover .ee-button {
  transform: scale(.8) rotateX(180deg)
}

.ee-effect-type--cube.ee-effect-direction--up:hover .ee-button {
  transform: rotateX(90deg) translateY(-50%)
}

.ee-effect-type--back.ee-effect-direction--left .ee-button:after, .ee-effect-type--back.ee-effect-direction--left .ee-button:before, .ee-effect-type--clone.ee-effect-direction--left .ee-button:after, .ee-effect-type--clone.ee-effect-direction--left .ee-button:before {
  transform: translateX(100%)
}

.ee-effect-type--clone.ee-effect-zoom--zoom-in.ee-effect-direction--left .ee-button:after {
  transform: translateX(100%) scale(.5)
}

.ee-effect-type--clone.ee-effect-zoom--zoom-out.ee-effect-direction--left .ee-button:after {
  transform: translateX(100%) scale(1.3)
}

.ee-effect-type--3d.ee-effect-direction--left .ee-button:before {
  content: "";
  height: 100%;
  width: 50%;
  top: 0;
  left: 100%;
  right: auto;
  transform-origin: 0 100%;
  transform: rotateY(90deg)
}

.ee-effect-type--flip.ee-effect-direction--left .ee-button:after, .ee-effect-type--flip.ee-effect-direction--left .ee-button:before {
  transform: rotateY(-180deg)
}

.ee-effect-type--cube.ee-effect-direction--left .ee-button {
  transform-origin: 0 0
}

.ee-effect-type--cube.ee-effect-direction--left .ee-button:after, .ee-effect-type--cube.ee-effect-direction--left .ee-button:before {
  top: 0;
  bottom: 0;
  width: 100%;
  left: 100%;
  right: auto;
  transform-origin: 0 0;
  transform: rotateY(90deg)
}

.ee-effect-direction--left.ee-effect-entrance--move:hover .ee-button-content-wrapper, .ee-effect-type--back.ee-effect-direction--right .ee-button:after, .ee-effect-type--back.ee-effect-direction--right .ee-button:before, .ee-effect-type--clone.ee-effect-direction--right .ee-button:after, .ee-effect-type--clone.ee-effect-direction--right .ee-button:before {
  transform: translateX(-100%)
}

.ee-effect-direction--left.ee-effect-entrance--push:hover .ee-button-content-wrapper {
  transform: translateX(-50%);
  opacity: 0
}

.ee-effect-type--3d.ee-effect-direction--left:hover .ee-button {
  transform: rotateY(-20deg) translateX(-10%)
}

.ee-effect-type--3d.ee-effect-zoom--zoom-in.ee-effect-direction--left:hover .ee-button {
  transform: scale(1.2) rotateY(-20deg)
}

.ee-effect-type--3d.ee-effect-zoom--zoom-out.ee-effect-direction--left:hover .ee-button {
  transform: scale(.8) rotateY(-20deg)
}

.ee-effect-type--flip.ee-effect-direction--left:hover .ee-button {
  transform: rotateY(-180deg)
}

.ee-effect-type--flip.ee-effect-zoom--zoom-in.ee-effect-direction--left:hover .ee-button {
  transform: scale(1.2) rotateY(-180deg)
}

.ee-effect-type--flip.ee-effect-zoom--zoom-out.ee-effect-direction--left:hover .ee-button {
  transform: scale(.8) rotateY(-180deg)
}

.ee-effect-type--cube.ee-effect-direction--left:hover .ee-button {
  transform: rotateY(-90deg) translateX(-50%)
}

.ee-effect-type--clone.ee-effect-zoom--zoom-in.ee-effect-direction--right .ee-button:after {
  transform: translateX(-100%) scale(.5)
}

.ee-effect-type--clone.ee-effect-zoom--zoom-out.ee-effect-direction--right .ee-button:after {
  transform: translateX(-100%) scale(1.3)
}

.ee-effect-type--3d.ee-effect-direction--right .ee-button:before {
  content: "";
  height: 100%;
  width: 50%;
  top: 0;
  right: 100%;
  left: auto;
  transform-origin: 100% 0;
  transform: rotateY(-90deg)
}

.ee-effect-type--flip.ee-effect-direction--right .ee-button:after, .ee-effect-type--flip.ee-effect-direction--right .ee-button:before {
  transform: rotateY(180deg)
}

.ee-effect-type--cube.ee-effect-direction--right .ee-button {
  transform-origin: 100% 0
}

.ee-effect-type--cube.ee-effect-direction--right .ee-button:after, .ee-effect-type--cube.ee-effect-direction--right .ee-button:before {
  top: 0;
  bottom: 0;
  width: 100%;
  right: 100%;
  left: auto;
  transform-origin: 100% 0;
  transform: rotateY(-90deg)
}

.ee-effect-direction--right.ee-effect-entrance--move:hover .ee-button-content-wrapper {
  transform: translateX(100%)
}

.ee-effect-direction--right.ee-effect-entrance--push:hover .ee-button-content-wrapper {
  transform: translateX(50%);
  opacity: 0
}

.ee-effect-type--3d.ee-effect-direction--right:hover .ee-button {
  transform: rotateY(20deg) translateX(10%)
}

.ee-effect-type--3d.ee-effect-zoom--zoom-in.ee-effect-direction--right:hover .ee-button {
  transform: scale(1.2) rotateY(20deg)
}

.ee-effect-type--3d.ee-effect-zoom--zoom-out.ee-effect-direction--right:hover .ee-button {
  transform: scale(.8) rotateY(20deg)
}

.ee-effect-type--flip.ee-effect-direction--right:hover .ee-button {
  transform: rotateY(180deg)
}

.ee-effect-type--flip.ee-effect-zoom--zoom-in.ee-effect-direction--right:hover .ee-button {
  transform: scale(1.2) rotateY(180deg)
}

.ee-effect-type--flip.ee-effect-zoom--zoom-out.ee-effect-direction--right:hover .ee-button {
  transform: scale(.8) rotateY(180deg)
}

.ee-effect-type--cube.ee-effect-direction--right:hover .ee-button {
  transform: rotateY(90deg) translateX(50%)
}

.ee-effect-shape--round.ee-effect-direction--down .ee-button:before, .ee-effect-shape--round.ee-effect-type--back.ee-effect-direction--down .ee-button:after {
  border-bottom-left-radius: 100%;
  border-bottom-right-radius: 100%
}

.ee-effect-shape--round.ee-effect-direction--up .ee-button:before, .ee-effect-shape--round.ee-effect-type--back.ee-effect-direction--up .ee-button:after {
  border-top-left-radius: 100%;
  border-top-right-radius: 100%
}

.ee-effect-shape--round.ee-effect-direction--left .ee-button:before, .ee-effect-shape--round.ee-effect-direction--right .ee-button:before, .ee-effect-shape--round.ee-effect-type--back.ee-effect-direction--left .ee-button:after, .ee-effect-shape--round.ee-effect-type--back.ee-effect-direction--right .ee-button:after {
  top: -1.3em;
  bottom: -1.3em
}

.ee-effect-shape--round.ee-effect-direction--left .ee-button:before, .ee-effect-shape--round.ee-effect-type--back.ee-effect-direction--left .ee-button:after {
  border-top-left-radius: 100%;
  border-bottom-left-radius: 100%
}

.ee-effect-shape--round.ee-effect-direction--right .ee-button:before, .ee-effect-shape--round.ee-effect-type--back.ee-effect-direction--right .ee-button:after {
  border-top-right-radius: 100%;
  border-bottom-right-radius: 100%
}

.ee-effect-shape--round.ee-effect-type--back:hover .ee-button:after, .ee-effect-shape--round:hover .ee-button:before {
  border-radius: 0
}

.ee-effect-shape--skewed.ee-effect-direction--down .ee-button:before, .ee-effect-shape--skewed.ee-effect-direction--up .ee-button:before, .ee-effect-shape--skewed.ee-effect-orientation--vertical .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--down .ee-button:after, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--up .ee-button:after, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-orientation--vertical .ee-button:after {
  top: -1em;
  bottom: -1em
}

.ee-effect-shape--skewed.ee-effect-direction--left .ee-button:before, .ee-effect-shape--skewed.ee-effect-direction--right .ee-button:before, .ee-effect-shape--skewed.ee-effect-orientation--horizontal .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--left .ee-button:after, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--right .ee-button:after, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-orientation--horizontal .ee-button:after {
  left: -1em;
  right: -1em
}

.ee-effect-shape--skewed.ee-effect-direction--down .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--down .ee-button:after {
  transform: skewY(10deg) translateY(-100%)
}

.ee-effect-shape--skewed.ee-effect-direction--down:hover .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--down:hover .ee-button:after {
  transform: skewY(10deg) translateY(0)
}

.ee-effect-shape--skewed.ee-effect-direction--up .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--up .ee-button:after {
  transform: skewY(-10deg) translateY(100%)
}

.ee-effect-shape--skewed.ee-effect-direction--up:hover .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--up:hover .ee-button:after {
  transform: skewY(-10deg) translateY(0)
}

.ee-effect-shape--skewed.ee-effect-direction--left .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--left .ee-button:after {
  transform: skewX(10deg) translateX(100%)
}

.ee-effect-shape--skewed.ee-effect-direction--left:hover .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--left:hover .ee-button:after {
  transform: skewX(10deg) translateX(0)
}

.ee-effect-shape--skewed.ee-effect-direction--right .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--right .ee-button:after {
  transform: skewX(-10deg) translateX(-100%)
}

.ee-effect-shape--skewed.ee-effect-direction--right:hover .ee-button:before, .ee-effect-shape--skewed.ee-effect-type--back.ee-effect-direction--right:hover .ee-button:after {
  transform: skewX(-10deg) translateX(0)
}

.ee-effect-entrance--cover .ee-button-content-wrapper {
  transform: none
}

.ee-effect--perspective {
  perspective: 800px
}

.ee-effect .ee-button-wrapper {
  transition: none
}

.ee-effect .ee-button, .ee-effect .ee-button-content-wrapper, .ee-effect:after, .ee-effect:before {
  transition-property: all
}

.ee-u-1\/1, .ee-u-2\/2, .ee-u-3\/3, .ee-u-4\/4, .ee-u-5\/5, .ee-u-6\/6 {
  width: 100% !important
}

.ee-u-1\/2, .ee-u-2\/4, .ee-u-3\/6 {
  width: 50% !important
}

.ee-u-1\/3, .ee-u-2\/6 {
  width: 33.33333% !important
}

.ee-u-2\/3, .ee-u-4\/6 {
  width: 66.66667% !important
}

.ee-u-1\/4 {
  width: 25% !important
}

.ee-u-3\/4 {
  width: 75% !important
}

.ee-u-1\/5 {
  width: 20% !important
}

.ee-u-2\/5 {
  width: 40% !important
}

.ee-u-3\/5 {
  width: 60% !important
}

.ee-u-4\/5 {
  width: 80% !important
}

.ee-u-1\/6 {
  width: 16.66667% !important
}

.ee-u-5\/6 {
  width: 83.33333% !important
}

@media (min-width: 767px) {
  .ee-post--horizontal {
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: stretch;
    align-items: stretch
  }

  .ee-post--horizontal > * {
    -ms-flex-preferred-size: 50%
  }

  .ee-post--horizontal__right {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }

  .ee-posts-thumbnail-ratio .ee-post--horizontal {
    -ms-flex-align: stretch;
    align-items: stretch
  }
}

@media (min-width: 1025px) {
  .ee-grid-columns-1 .ee-grid__item {
    width: calc(100% / 1)
  }

  .ee-grid-columns-1.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(2n) {
    width: calc(100% / 1 * 2)
  }

  .ee-grid-columns-2 .ee-grid__item {
    width: calc(100% / 2)
  }

  .ee-grid-columns-2.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(4n) {
    width: calc(100% / 2 * 2)
  }

  .ee-grid-columns-3 .ee-grid__item {
    width: calc(100% / 3)
  }

  .ee-grid-columns-3.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(6n) {
    width: calc(100% / 3 * 2)
  }

  .ee-grid-columns-4 .ee-grid__item {
    width: calc(100% / 4)
  }

  .ee-grid-columns-4.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(8n) {
    width: calc(100% / 4 * 2)
  }

  .ee-grid-columns-5 .ee-grid__item {
    width: calc(100% / 5)
  }

  .ee-grid-columns-5.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(10n) {
    width: calc(100% / 5 * 2)
  }

  .ee-grid-columns-6 .ee-grid__item {
    width: calc(100% / 6)
  }

  .ee-grid-columns-6.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(12n) {
    width: calc(100% / 6 * 2)
  }

  .ee-grid-columns-7 .ee-grid__item {
    width: calc(100% / 7)
  }

  .ee-grid-columns-7.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(14n) {
    width: calc(100% / 7 * 2)
  }

  .ee-grid-columns-8 .ee-grid__item {
    width: calc(100% / 8)
  }

  .ee-grid-columns-8.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(16n) {
    width: calc(100% / 8 * 2)
  }

  .ee-grid-columns-9 .ee-grid__item {
    width: calc(100% / 9)
  }

  .ee-grid-columns-9.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(18n) {
    width: calc(100% / 9 * 2)
  }

  .ee-grid-columns-10 .ee-grid__item {
    width: calc(100% / 10)
  }

  .ee-grid-columns-10.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(20n) {
    width: calc(100% / 10 * 2)
  }

  .ee-grid-columns-11 .ee-grid__item {
    width: calc(100% / 11)
  }

  .ee-grid-columns-11.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(22n) {
    width: calc(100% / 11 * 2)
  }

  .ee-grid-columns-12 .ee-grid__item {
    width: calc(100% / 12)
  }

  .ee-grid-columns-12.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(24n) {
    width: calc(100% / 12 * 2)
  }

  .elementor-widget-devices-extended .ee-device__orientation:hover {
    color: rgba(0, 0, 0, .7)
  }

  .ee-timeline .timeline-item:nth-child(even).bounce-in .timeline-item__card {
    visibility: visible;
    animation: 1s cd-bounce-even
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .ee-timeline__line {
    left: 50%
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__point {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-positive: 0;
    flex-grow: 0;
    -ms-flex-order: 1;
    order: 1
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__meta-wrapper {
    -ms-flex-pack: end;
    justify-content: flex-end;
    -ms-flex-order: 0;
    order: 0
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__card-wrapper {
    -ms-flex-order: 2;
    order: 2;
    padding-left: 10px
  }

  .ee-switcher-arrows-hide .ee-switcher__arrows, .ee-switcher-menu-hide .ee-switcher__nav, .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__card-wrapper .timeline-item__meta {
    display: none
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__card-wrapper, .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__meta-wrapper {
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__meta {
    margin-right: 10px
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item:nth-child(odd) .timeline-item__card__arrow {
    left: -10px
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item:nth-child(odd) .timeline-item__card__arrow:after {
    border-right-width: 10px;
    border-right-style: solid
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item:nth-child(odd) .timeline-item__meta {
    text-align: right
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item:nth-child(even) {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item:nth-child(even) .timeline-item__meta-wrapper {
    -ms-flex-direction: initial;
    flex-direction: initial;
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item:nth-child(even) .timeline-item__meta {
    margin-left: 10px
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item:nth-child(even) .timeline-item__card-wrapper {
    padding-left: 0;
    padding-right: 10px
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item:nth-child(even) .timeline-item__card__arrow {
    right: -10px
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item:nth-child(even) .timeline-item__card__arrow:after {
    border-left-width: 10px;
    border-left-style: solid
  }
}

@media (max-width: 1440px) {
  .ee-u-1\/1\@wide, .ee-u-2\/2\@wide, .ee-u-3\/3\@wide, .ee-u-4\/4\@wide, .ee-u-5\/5\@wide, .ee-u-6\/6\@wide {
    width: 100% !important
  }

  .ee-u-1\/2\@wide, .ee-u-2\/4\@wide, .ee-u-3\/6\@wide {
    width: 50% !important
  }

  .ee-u-1\/3\@wide, .ee-u-2\/6\@wide {
    width: 33.33333% !important
  }

  .ee-u-2\/3\@wide, .ee-u-4\/6\@wide {
    width: 66.66667% !important
  }

  .ee-u-1\/4\@wide {
    width: 25% !important
  }

  .ee-u-3\/4\@wide {
    width: 75% !important
  }

  .ee-u-1\/5\@wide {
    width: 20% !important
  }

  .ee-u-2\/5\@wide {
    width: 40% !important
  }

  .ee-u-3\/5\@wide {
    width: 60% !important
  }

  .ee-u-4\/5\@wide {
    width: 80% !important
  }

  .ee-u-1\/6\@wide {
    width: 16.66667% !important
  }

  .ee-u-5\/6\@wide {
    width: 83.33333% !important
  }
}

@media (max-width: 1025px) {
  .ee-u-1\/1\@desktop, .ee-u-2\/2\@desktop, .ee-u-3\/3\@desktop, .ee-u-4\/4\@desktop, .ee-u-5\/5\@desktop, .ee-u-6\/6\@desktop {
    width: 100% !important
  }

  .ee-u-1\/2\@desktop, .ee-u-2\/4\@desktop, .ee-u-3\/6\@desktop {
    width: 50% !important
  }

  .ee-u-1\/3\@desktop, .ee-u-2\/6\@desktop {
    width: 33.33333% !important
  }

  .ee-u-2\/3\@desktop, .ee-u-4\/6\@desktop {
    width: 66.66667% !important
  }

  .ee-u-1\/4\@desktop {
    width: 25% !important
  }

  .ee-u-3\/4\@desktop {
    width: 75% !important
  }

  .ee-u-1\/5\@desktop {
    width: 20% !important
  }

  .ee-u-2\/5\@desktop {
    width: 40% !important
  }

  .ee-u-3\/5\@desktop {
    width: 60% !important
  }

  .ee-u-4\/5\@desktop {
    width: 80% !important
  }

  .ee-u-1\/6\@desktop {
    width: 16.66667% !important
  }

  .ee-u-5\/6\@desktop {
    width: 83.33333% !important
  }
}

@media (max-width: 1024px) {
  .ee-button-group-stack-tablet .ee-button-group > li, .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__point, .ee-toggle-element--stack-tablet .ee-toggle-element__controls > li {
    margin-left: 0 !important
  }

  .ee-button-group-tablet-halign-center .ee-button-group > li, .ee-button-group-tablet-halign-left .ee-button-group > li, .ee-button-group-tablet-halign-right .ee-button-group > li, .ee-button-group-tablet-valign-bottom .ee-button-group > li, .ee-button-group-tablet-valign-middle .ee-button-group > li, .ee-button-group-tablet-valign-stretch .ee-button-group .ee-button-content-wrapper > li, .ee-button-group-tablet-valign-top .ee-button-group > li, .ee-filters-align-tablet-center .ee-filters__item, .ee-filters-align-tablet-left .ee-filters__item, .ee-filters-align-tablet-right .ee-filters__item {
    -ms-flex-positive: 0;
    flex-grow: 0
  }

  .ee-button-group-tablet-halign-left .ee-button-group, .ee-filters-align-tablet-left .ee-filters, .ee-trigger-tablet-align--left .ee-button-wrapper {
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .ee-button-group-tablet-halign-right .ee-button-group, .ee-filters-align-tablet-right .ee-filters {
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .ee-button-group-tablet-halign-center .ee-button-group, .ee-filters-align-tablet-center .ee-filters {
    -ms-flex-pack: center;
    justify-content: center
  }

  .ee-button-group-tablet-halign-justify .ee-button-group .ee-button-content-wrapper, .ee-button-group-tablet-halign-justify .ee-button-group > li, .ee-button-group-tablet-valign-stretch .ee-button-group > li, .ee-filters-align-tablet-justify .ee-filters__item {
    -ms-flex-positive: 1;
    flex-grow: 1
  }

  .ee-button-group-tablet-halign-justify .ee-button-group {
    -ms-flex-pack: stretch;
    justify-content: stretch
  }

  .ee-button-group-stack-tablet .ee-button-group > li > a, .ee-button-group-tablet-halign-justify .ee-button-group > li > a, .ee-button-group-tablet-valign-stretch .ee-button-group > li > a, .ee-gallery-slider--stack-tablet .ee-gallery-slider {
    display: block
  }

  .ee-button-group .ee-button-wrapper, .ee-switcher-stack-tablet .ee-switcher__media-wrapper {
    width: 100%
  }

  .ee-button-group-stack-tablet.ee-button-group-tablet-halign-left .ee-button-group, .ee-button-group-tablet-valign-top .ee-button-group {
    -ms-flex-align: start;
    align-items: flex-start
  }

  .ee-button-group-stack-tablet.ee-button-group-tablet-halign-center .ee-button-group, .ee-button-group-tablet-valign-middle .ee-button-group, .ee-button-group-tablet-valign-stretch .ee-button-group .ee-button-content-wrapper {
    -ms-flex-align: center;
    align-items: center
  }

  .ee-button-group-stack-tablet.ee-button-group-tablet-halign-right .ee-button-group, .ee-button-group-tablet-valign-bottom .ee-button-group {
    -ms-flex-align: end;
    align-items: flex-end
  }

  .ee-button-group-stack-tablet.ee-button-group-tablet-halign-justify .ee-button-group, .ee-button-group-tablet-valign-stretch .ee-button-group {
    -ms-flex-align: stretch;
    align-items: stretch
  }

  .ee-button-group-stack-tablet .ee-button-group, .ee-toggle-element--stack-tablet .ee-toggle-element__controls {
    margin-left: 0 !important;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .ee-button-group-stack-tablet.ee-button-group-gap-default .ee-button-group, .ee-button-group-stack-tablet.ee-button-group-gap-default .ee-button-group > li, .ee-button-group-stack-tablet.ee-button-group-gap-extended .ee-button-group, .ee-button-group-stack-tablet.ee-button-group-gap-extended .ee-button-group > li, .ee-button-group-stack-tablet.ee-button-group-gap-narrow .ee-button-group, .ee-button-group-stack-tablet.ee-button-group-gap-narrow .ee-button-group > li, .ee-button-group-stack-tablet.ee-button-group-gap-wide .ee-button-group, .ee-button-group-stack-tablet.ee-button-group-gap-wide .ee-button-group > li, .ee-button-group-stack-tablet.ee-button-group-gap-wider .ee-button-group, .ee-button-group-stack-tablet.ee-button-group-gap-wider .ee-button-group > li {
    margin-left: 0
  }

  .ee-button-group-stack-tablet.ee-button-group-gap-narrow .ee-button-group > li:not(:last-child) {
    margin-bottom: 6px
  }

  .ee-button-group-stack-tablet.ee-button-group-gap-default .ee-button-group > li:not(:last-child) {
    margin-bottom: 12px
  }

  .ee-button-group-stack-tablet.ee-button-group-gap-extended .ee-button-group > li:not(:last-child), .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__img {
    margin-bottom: 24px
  }

  .ee-button-group-stack-tablet.ee-button-group-gap-wide .ee-button-group > li:not(:last-child) {
    margin-bottom: 48px
  }

  .ee-button-group-stack-tablet.ee-button-group-gap-wider .ee-button-group > li:not(:last-child) {
    margin-bottom: 144px
  }

  .ee-gallery-slider--stack-tablet .ee-gallery-slider .ee-gallery-slider__gallery, .ee-gallery-slider--stack-tablet .ee-gallery-slider .ee-gallery-slider__preview {
    width: 100% !important
  }

  .ee-timeline .timeline-item__card {
    margin-right: 0 !important
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .ee-timeline__line {
    margin-left: 20px
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__meta-wrapper {
    -ms-flex-order: 2;
    order: 2;
    display: none
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__card-wrapper__meta {
    display: block;
    margin: 0
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__card__arrow {
    left: -10px
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__card__arrow:after {
    border-right-width: 10px;
    border-right-style: solid
  }

  .ee-timeline--vertical.ee-timeline-align--center.ee-timeline .timeline-item__card-wrapper {
    -ms-flex-order: 1;
    order: 1;
    margin-left: 10px
  }

  .ee-trigger-tablet-align--center .ee-button-wrapper {
    -ms-flex-pack: center;
    justify-content: center
  }

  .ee-trigger-tablet-align--right .ee-button-wrapper {
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .ee-trigger-tablet-align--justify .ee-button {
    -ms-flex-positive: 1;
    flex-grow: 1
  }

  .ee-toggle-element--stack-tablet .ee-toggle-element__controls > li > a {
    display: block
  }

  .ee-google-map-navigation--hide-tablet .ee-google-map__navigation {
    display: none
  }

  .ee-google-map-navigation-tablet--top-left .ee-google-map__navigation {
    top: 0;
    left: 0;
    bottom: auto;
    right: auto
  }

  .ee-google-map-navigation-tablet--top-right .ee-google-map__navigation {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto
  }

  .ee-google-map-navigation-tablet--bottom-right .ee-google-map__navigation {
    bottom: 0;
    right: 0;
    top: auto;
    left: auto
  }

  .ee-google-map-navigation-tablet--bottom-left .ee-google-map__navigation {
    bottom: 0;
    left: 0;
    top: auto;
    right: auto
  }

  .ee-switcher__nav, .ee-switcher__titles {
    text-align: center
  }

  .ee-switcher-stack-tablet .ee-switcher__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }
}

@media (max-width: 768px) {
  .ee-u-1\/1\@tablet, .ee-u-2\/2\@tablet, .ee-u-3\/3\@tablet, .ee-u-4\/4\@tablet, .ee-u-5\/5\@tablet, .ee-u-6\/6\@tablet {
    width: 100% !important
  }

  .ee-u-1\/2\@tablet, .ee-u-2\/4\@tablet, .ee-u-3\/6\@tablet {
    width: 50% !important
  }

  .ee-u-1\/3\@tablet, .ee-u-2\/6\@tablet {
    width: 33.33333% !important
  }

  .ee-u-2\/3\@tablet, .ee-u-4\/6\@tablet {
    width: 66.66667% !important
  }

  .ee-u-1\/4\@tablet {
    width: 25% !important
  }

  .ee-u-3\/4\@tablet {
    width: 75% !important
  }

  .ee-u-1\/5\@tablet {
    width: 20% !important
  }

  .ee-u-2\/5\@tablet {
    width: 40% !important
  }

  .ee-u-3\/5\@tablet {
    width: 60% !important
  }

  .ee-u-4\/5\@tablet {
    width: 80% !important
  }

  .ee-u-1\/6\@tablet {
    width: 16.66667% !important
  }

  .ee-u-5\/6\@tablet {
    width: 83.33333% !important
  }
}

@media (max-width: 767px) {
  .ee-button-group-stack-mobile .ee-button-group > li, .ee-toggle-element--stack-mobile .ee-toggle-element__controls > li {
    margin-left: 0 !important
  }

  .ee-grid-columns-mobile-1 .ee-grid__item {
    width: calc(100% / 1)
  }

  .ee-grid-columns-mobile-1.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(2n) {
    width: calc(100% / 1 * 2)
  }

  .ee-grid-columns-mobile-2 .ee-grid__item {
    width: calc(100% / 2)
  }

  .ee-grid-columns-mobile-2.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(4n) {
    width: calc(100% / 2 * 2)
  }

  .ee-grid-columns-mobile-3 .ee-grid__item {
    width: calc(100% / 3)
  }

  .ee-grid-columns-mobile-3.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(6n) {
    width: calc(100% / 3 * 2)
  }

  .ee-grid-columns-mobile-4 .ee-grid__item {
    width: calc(100% / 4)
  }

  .ee-grid-columns-mobile-4.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(8n) {
    width: calc(100% / 4 * 2)
  }

  .ee-grid-columns-mobile-5 .ee-grid__item {
    width: calc(100% / 5)
  }

  .ee-grid-columns-mobile-5.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(10n) {
    width: calc(100% / 5 * 2)
  }

  .ee-grid-columns-mobile-6 .ee-grid__item {
    width: calc(100% / 6)
  }

  .ee-grid-columns-mobile-6.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(12n) {
    width: calc(100% / 6 * 2)
  }

  .ee-grid-columns-mobile-7 .ee-grid__item {
    width: calc(100% / 7)
  }

  .ee-grid-columns-mobile-7.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(14n) {
    width: calc(100% / 7 * 2)
  }

  .ee-grid-columns-mobile-8 .ee-grid__item {
    width: calc(100% / 8)
  }

  .ee-grid-columns-mobile-8.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(16n) {
    width: calc(100% / 8 * 2)
  }

  .ee-grid-columns-mobile-9 .ee-grid__item {
    width: calc(100% / 9)
  }

  .ee-grid-columns-mobile-9.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(18n) {
    width: calc(100% / 9 * 2)
  }

  .ee-grid-columns-mobile-10 .ee-grid__item {
    width: calc(100% / 10)
  }

  .ee-grid-columns-mobile-10.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(20n) {
    width: calc(100% / 10 * 2)
  }

  .ee-grid-columns-mobile-11 .ee-grid__item {
    width: calc(100% / 11)
  }

  .ee-grid-columns-mobile-11.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(22n) {
    width: calc(100% / 11 * 2)
  }

  .ee-grid-columns-mobile-12 .ee-grid__item {
    width: calc(100% / 12)
  }

  .ee-grid-columns-mobile-12.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(24n) {
    width: calc(100% / 12 * 2)
  }

  .ee-button-group-mobile-halign-center .ee-button-group > li, .ee-button-group-mobile-halign-left .ee-button-group > li, .ee-button-group-mobile-halign-right .ee-button-group > li, .ee-button-group-mobile-valign-bottom .ee-button-group > li, .ee-button-group-mobile-valign-middle .ee-button-group > li, .ee-button-group-mobile-valign-stretch .ee-button-group .ee-button-content-wrapper > li, .ee-button-group-mobile-valign-top .ee-button-group > li, .ee-filters-align-mobile-center .ee-filters__item, .ee-filters-align-mobile-left .ee-filters__item, .ee-filters-align-mobile-right .ee-filters__item {
    -ms-flex-positive: 0;
    flex-grow: 0
  }

  .ee-button-group-mobile-halign-left .ee-button-group, .ee-filters-align-mobile-left .ee-filters, .ee-switcher-menu-mobile-align--left .ee-switcher__nav, .ee-trigger-mobile-align--left .ee-button-wrapper {
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .ee-button-group-mobile-halign-right .ee-button-group, .ee-filters-align-mobile-right .ee-filters {
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .ee-button-group-mobile-halign-center .ee-button-group, .ee-filters-align-mobile-center .ee-filters {
    -ms-flex-pack: center;
    justify-content: center
  }

  .ee-button-group-mobile-halign-justify .ee-button-group .ee-button-content-wrapper, .ee-button-group-mobile-halign-justify .ee-button-group > li, .ee-button-group-mobile-valign-stretch .ee-button-group > li, .ee-filters-align-mobile-justify .ee-filters__item {
    -ms-flex-positive: 1;
    flex-grow: 1
  }

  .ee-google-map-navigation--hide-mobile .ee-google-map__navigation, .ee-player__controls__volume, .ee-switcher-arrows-mobile-hide .ee-switcher__arrows, .ee-switcher-menu-mobile-hide .ee-switcher__nav, .ee-table--responsive .ee-table thead {
    display: none
  }

  .ee-button-group-mobile-halign-justify .ee-button-group {
    -ms-flex-pack: stretch;
    justify-content: stretch
  }

  .ee-button-group-mobile-halign-justify .ee-button-group > li > a, .ee-button-group-mobile-valign-stretch .ee-button-group > li > a, .ee-button-group-stack-mobile .ee-button-group > li > a, .ee-gallery-slider--stack-mobile .ee-gallery-slider {
    display: block
  }

  .ee-button-group .ee-button-wrapper, .ee-switcher-stack-mobile .ee-switcher__media-wrapper {
    width: 100%
  }

  .ee-button-group-mobile-valign-top .ee-button-group, .ee-button-group-stack-mobile.ee-button-group-mobile-halign-left .ee-button-group {
    -ms-flex-align: start;
    align-items: flex-start
  }

  .ee-button-group-mobile-valign-middle .ee-button-group, .ee-button-group-mobile-valign-stretch .ee-button-group .ee-button-content-wrapper, .ee-button-group-stack-mobile.ee-button-group-mobile-halign-center .ee-button-group {
    -ms-flex-align: center;
    align-items: center
  }

  .ee-button-group-mobile-valign-bottom .ee-button-group, .ee-button-group-stack-mobile.ee-button-group-mobile-halign-right .ee-button-group {
    -ms-flex-align: end;
    align-items: flex-end
  }

  .ee-button-group-mobile-valign-stretch .ee-button-group, .ee-button-group-stack-mobile.ee-button-group-mobile-halign-justify .ee-button-group {
    -ms-flex-align: stretch;
    align-items: stretch
  }

  .ee-button-group-stack-mobile .ee-button-group, .ee-toggle-element--stack-mobile .ee-toggle-element__controls {
    margin-left: 0 !important;
    -ms-flex-direction: column;
    flex-direction: column
  }

  .ee-button-group-stack-mobile.ee-button-group-gap-default .ee-button-group, .ee-button-group-stack-mobile.ee-button-group-gap-default .ee-button-group > li, .ee-button-group-stack-mobile.ee-button-group-gap-extended .ee-button-group, .ee-button-group-stack-mobile.ee-button-group-gap-extended .ee-button-group > li, .ee-button-group-stack-mobile.ee-button-group-gap-narrow .ee-button-group, .ee-button-group-stack-mobile.ee-button-group-gap-narrow .ee-button-group > li, .ee-button-group-stack-mobile.ee-button-group-gap-wide .ee-button-group, .ee-button-group-stack-mobile.ee-button-group-gap-wide .ee-button-group > li, .ee-button-group-stack-mobile.ee-button-group-gap-wider .ee-button-group, .ee-button-group-stack-mobile.ee-button-group-gap-wider .ee-button-group > li {
    margin-left: 0
  }

  .ee-button-group-stack-mobile.ee-button-group-gap-narrow .ee-button-group > li:not(:last-child) {
    margin-bottom: 6px
  }

  .ee-button-group-stack-mobile.ee-button-group-gap-default .ee-button-group > li:not(:last-child) {
    margin-bottom: 12px
  }

  .ee-button-group-stack-mobile.ee-button-group-gap-extended .ee-button-group > li:not(:last-child) {
    margin-bottom: 24px
  }

  .ee-button-group-stack-mobile.ee-button-group-gap-wide .ee-button-group > li:not(:last-child) {
    margin-bottom: 48px
  }

  .ee-button-group-stack-mobile.ee-button-group-gap-wider .ee-button-group > li:not(:last-child) {
    margin-bottom: 144px
  }

  .ee-gallery-slider--stack-mobile .ee-gallery-slider .ee-gallery-slider__gallery, .ee-gallery-slider--stack-mobile .ee-gallery-slider .ee-gallery-slider__preview {
    width: 100% !important
  }

  .ee-trigger-mobile-align--center .ee-button-wrapper {
    -ms-flex-pack: center;
    justify-content: center
  }

  .ee-trigger-mobile-align--right .ee-button-wrapper {
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .ee-trigger-mobile-align--justify .ee-button {
    -ms-flex-positive: 1;
    flex-grow: 1
  }

  .ee-table--responsive .ee-table tr td, .ee-table--responsive .ee-table tr th {
    display: -ms-flexbox;
    display: flex
  }

  .ee-table--responsive .ee-table tr td:before, .ee-table--responsive .ee-table tr td > *, .ee-table--responsive .ee-table tr th:before, .ee-table--responsive .ee-table tr th > * {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    width: 50%;
    -ms-flex-positive: 1;
    flex-grow: 1
  }

  .ee-table--responsive .ee-table tr td[data-title]:before, .ee-table--responsive .ee-table tr th[data-title]:before {
    content: attr(data-title);
    position: relative;
    padding: 12px
  }

  .ee-table-mobile-header--hide .ee-table__cell[data-title]:before {
    content: none !important
  }

  .ee-table--responsive.ee-table-mobile-header--column .ee-table__cell[data-title] {
    -ms-flex-direction: column;
    flex-direction: column
  }

  .ee-table--responsive.ee-table-mobile-header--column .ee-table__cell[data-title]:before, .ee-table--responsive.ee-table-mobile-header--column .ee-table__cell[data-title] > * {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    width: auto
  }

  .ee-toggle-element--stack-mobile .ee-toggle-element__controls > li > a {
    display: block
  }

  .ee-google-map-navigation-mobile--top-left .ee-google-map__navigation {
    top: 0;
    left: 0;
    bottom: auto;
    right: auto
  }

  .ee-google-map-navigation-mobile--top-right .ee-google-map__navigation {
    top: 0;
    right: 0;
    bottom: auto;
    left: auto
  }

  .ee-google-map-navigation-mobile--bottom-right .ee-google-map__navigation {
    bottom: 0;
    right: 0;
    top: auto;
    left: auto
  }

  .ee-google-map-navigation-mobile--bottom-left .ee-google-map__navigation {
    bottom: 0;
    left: 0;
    top: auto;
    right: auto
  }

  .ee-switcher-stack-mobile .ee-switcher__wrapper {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
  }

  .ee-switcher-menu-mobile-align--left .ee-switcher__nav.ee-nav--stacked {
    -ms-flex-align: start;
    align-items: flex-start
  }

  .ee-switcher-menu-mobile-align--center .ee-switcher__nav {
    -ms-flex-pack: center;
    justify-content: center
  }

  .ee-switcher-menu-mobile-align--center .ee-switcher__nav.ee-nav--stacked {
    -ms-flex-align: center;
    align-items: center
  }

  .ee-switcher-menu-mobile-align--right .ee-switcher__nav {
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .ee-switcher-menu-mobile-align--right .ee-switcher__nav.ee-nav--stacked {
    -ms-flex-align: end;
    align-items: flex-end
  }

  .ee-switcher-menu-mobile-align--justify .ee-switcher__nav {
    -ms-flex-align: stretch;
    align-items: stretch
  }

  .ee-switcher-menu-mobile-align--justify .ee-switcher__nav__item {
    -ms-flex-positive: 1;
    flex-grow: 1
  }
}

@media (max-width: 480px) {
  .ee-u-1\/1\@mobile, .ee-u-2\/2\@mobile, .ee-u-3\/3\@mobile, .ee-u-4\/4\@mobile, .ee-u-5\/5\@mobile, .ee-u-6\/6\@mobile {
    width: 100% !important
  }

  .ee-u-1\/2\@mobile, .ee-u-2\/4\@mobile, .ee-u-3\/6\@mobile {
    width: 50% !important
  }

  .ee-u-1\/3\@mobile, .ee-u-2\/6\@mobile {
    width: 33.33333% !important
  }

  .ee-u-2\/3\@mobile, .ee-u-4\/6\@mobile {
    width: 66.66667% !important
  }

  .ee-u-1\/4\@mobile {
    width: 25% !important
  }

  .ee-u-3\/4\@mobile {
    width: 75% !important
  }

  .ee-u-1\/5\@mobile {
    width: 20% !important
  }

  .ee-u-2\/5\@mobile {
    width: 40% !important
  }

  .ee-u-3\/5\@mobile {
    width: 60% !important
  }

  .ee-u-4\/5\@mobile {
    width: 80% !important
  }

  .ee-u-1\/6\@mobile {
    width: 16.66667% !important
  }

  .ee-u-5\/6\@mobile {
    width: 83.33333% !important
  }
}

@media (max-width: 479px) {
  .ee-player__controls__bar {
    padding: 6px
  }
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ee-grid-columns-tablet-1 .ee-grid__item {
    width: calc(100% / 1)
  }

  .ee-grid-columns-tablet-1.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(2n) {
    width: calc(100% / 1 * 2)
  }

  .ee-grid-columns-tablet-2 .ee-grid__item {
    width: calc(100% / 2)
  }

  .ee-grid-columns-tablet-2.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(4n) {
    width: calc(100% / 2 * 2)
  }

  .ee-grid-columns-tablet-3 .ee-grid__item {
    width: calc(100% / 3)
  }

  .ee-grid-columns-tablet-3.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(6n) {
    width: calc(100% / 3 * 2)
  }

  .ee-grid-columns-tablet-4 .ee-grid__item {
    width: calc(100% / 4)
  }

  .ee-grid-columns-tablet-4.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(8n) {
    width: calc(100% / 4 * 2)
  }

  .ee-grid-columns-tablet-5 .ee-grid__item {
    width: calc(100% / 5)
  }

  .ee-grid-columns-tablet-5.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(10n) {
    width: calc(100% / 5 * 2)
  }

  .ee-grid-columns-tablet-6 .ee-grid__item {
    width: calc(100% / 6)
  }

  .ee-grid-columns-tablet-6.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(12n) {
    width: calc(100% / 6 * 2)
  }

  .ee-grid-columns-tablet-7 .ee-grid__item {
    width: calc(100% / 7)
  }

  .ee-grid-columns-tablet-7.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(14n) {
    width: calc(100% / 7 * 2)
  }

  .ee-grid-columns-tablet-8 .ee-grid__item {
    width: calc(100% / 8)
  }

  .ee-grid-columns-tablet-8.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(16n) {
    width: calc(100% / 8 * 2)
  }

  .ee-grid-columns-tablet-9 .ee-grid__item {
    width: calc(100% / 9)
  }

  .ee-grid-columns-tablet-9.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(18n) {
    width: calc(100% / 9 * 2)
  }

  .ee-grid-columns-tablet-10 .ee-grid__item {
    width: calc(100% / 10)
  }

  .ee-grid-columns-tablet-10.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(20n) {
    width: calc(100% / 10 * 2)
  }

  .ee-grid-columns-tablet-11 .ee-grid__item {
    width: calc(100% / 11)
  }

  .ee-grid-columns-tablet-11.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(22n) {
    width: calc(100% / 11 * 2)
  }

  .ee-grid-columns-tablet-12 .ee-grid__item {
    width: calc(100% / 12)
  }

  .ee-grid-columns-tablet-12.ee-grid-masonry-layout--mixed .ee-grid__item:nth-child(24n) {
    width: calc(100% / 12 * 2)
  }

  .ee-switcher-arrows-tablet-hide .ee-switcher__arrows, .ee-switcher-menu-tablet-hide .ee-switcher__nav {
    display: none
  }

  .ee-switcher-menu-tablet-align--left .ee-switcher__nav {
    -ms-flex-pack: start;
    justify-content: flex-start
  }

  .ee-switcher-menu-tablet-align--left .ee-switcher__nav.ee-nav--stacked {
    -ms-flex-align: start;
    align-items: flex-start
  }

  .ee-switcher-menu-tablet-align--center .ee-switcher__nav {
    -ms-flex-pack: center;
    justify-content: center
  }

  .ee-switcher-menu-tablet-align--center .ee-switcher__nav.ee-nav--stacked {
    -ms-flex-align: center;
    align-items: center
  }

  .ee-switcher-menu-tablet-align--right .ee-switcher__nav {
    -ms-flex-pack: end;
    justify-content: flex-end
  }

  .ee-switcher-menu-tablet-align--right .ee-switcher__nav.ee-nav--stacked {
    -ms-flex-align: end;
    align-items: flex-end
  }

  .ee-switcher-menu-tablet-align--justify .ee-switcher__nav {
    -ms-flex-align: stretch;
    align-items: stretch
  }

  .ee-switcher-menu-tablet-align--justify .ee-switcher__nav__item {
    -ms-flex-positive: 1;
    flex-grow: 1
  }
}

@media print {
  [canvas], body.ee-offcanvas--closing [canvas], body.ee-offcanvas--open [canvas], body.ee-offcanvas--opening [canvas] {
    transform: translate(0, 0) !important
  }

  [off-canvas] {
    display: none !important
  }
}

.bvi-panel-open.mgp-advanced-button:hover {
  background-color: #666;
}

/* =======================
  MEGA-WIDGET
*/
.elementor-widget-mega-widget span.mega-widget-counter-text {
  display: -ms-inline-flexbox;
  display: -webkit-inline-flex;
  display: inline-flex;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 20px;
}

.elementor-widget-mega-widget .mega-widget-link {
  display: inline-block;
  text-align: center;
}

.elementor-align-justify .mega-widget-link {
  display: block;
}

.elementor-widget-mega-widget .mega-widget__icon {
  position: relative;
  margin-right: 18px;
}

.elementor-widget-mega-widget .mega-widget__icon .mega-widget__count {
  position: absolute;
  top: 0;
  right: 0;
  width: 20px;
  height: 20px;
  margin-right: -10px;
  margin-top: -10px;
  font-weight: normal;
  text-align: center;
  font-size: 12px;
  line-height: 20px;
  color: #fff;
  background-color: #ff0d0d;
  border-radius: 50%;
}

.elementor-widget-mega-widget a:hover .mega-widget__count {
  color: #fff;
}

.elementor-widget-mega-widget .woocommerce-Price-amount {
  margin-left: 5px;
}

.megapack-menu-cart__container {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  overflow: hidden;
  position: fixed;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.25);
  -webkit-transition: background-color 0.4s, -webkit-transform 0s;
  transition: background-color 0.4s, -webkit-transform 0s;
  -o-transition: background-color 0.4s, transform 0s;
  transition: background-color 0.4s, transform 0s;
  transition: background-color 0.4s, transform 0s, -webkit-transform 0s;
}

.megapack-menu-cart__container .megapack-menu-cart__main {
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  position: fixed;
  top: 0;
  width: 350px;
  max-width: 100%;
  right: 0;
  bottom: 0;
  padding: 0 30px;
  background-color: white;
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
}

.megapack-menu-cart__container:not(.megapack-menu-cart--shown) {
  background-color: transparent;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transition: background-color 0.4s, -webkit-transform 0s 0.4s;
  transition: background-color 0.4s, -webkit-transform 0s 0.4s;
  -o-transition: background-color 0.4s, transform 0s 0.4s;
  transition: background-color 0.4s, transform 0s 0.4s;
  transition: background-color 0.4s, transform 0s 0.4s, -webkit-transform 0s 0.4s;
}

.megapack-menu-cart__container:not(.megapack-menu-cart--shown) .megapack-menu-cart__main {
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
}

.megapack-menu-cart__container:not(.megapack-menu-cart--shown) .dialog-lightbox-close-button {
  display: none;
}

.megapack-menu-cart__main {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  font-size: 14px;
}

.megapack-menu-cart__close-button {
  width: 25px;
  height: 25px;
  position: relative;
  margin: 20px 0;
  -webkit-align-self: flex-end;
  -ms-flex-item-align: end;
  align-self: flex-end;
  cursor: pointer;
}

.megapack-menu-cart__close-button:before, .megapack-menu-cart__close-button:after {
  content: '';
  position: absolute;
  height: 3px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background: #818a91;
  border-radius: 1px;
}

.megapack-menu-cart__close-button::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.megapack-menu-cart__close-button::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.megapack-menu-cart__products {
  max-height: calc(100vh - 250px);
  overflow: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.megapack-menu-cart__product {
  display: grid;
  grid-template-columns: 25% auto 50px;
  grid-template-rows: 75% auto;
}

.megapack-menu-cart__product-image {
  grid-row-start: 1;
  grid-row-end: 3;
  width: 100%;
}

.megapack-menu-cart__product-image img, .megapack-menu-cart__product-image a {
  display: block;
}

.megapack-menu-cart__product-name {
  grid-column-start: 2;
  grid-column-end: 4;
  margin: 0;
}

.megapack-menu-cart__product-price {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  align-self: end;
  color: #D4D4D4;
  font-weight: 300;
}

.megapack-menu-cart__product-price .amount {
  font-weight: 600;
}

.megapack-menu-cart__product-name, .megapack-menu-cart__product-price {
  font-size: 14px;
  padding-left: 20px;
}

.megapack-menu-cart__product-remove {
  -webkit-align-self: end;
  -ms-flex-item-align: end;
  align-self: end;
  justify-self: end;
  color: #818a91;
  width: 22px;
  height: 22px;
  border-radius: 20px;
  border: 1px solid #D4D4D4;
  text-align: center;
  overflow: hidden;
  position: relative;
}

.megapack-menu-cart__product-remove:before, .megapack-menu-cart__product-remove:after {
  content: '';
  position: absolute;
  height: 1px;
  width: 50%;
  top: 50%;
  left: 25%;
  margin-top: -1px;
  background: #D4D4D4;
  z-index: 1;
}

.megapack-menu-cart__product-remove::before {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.megapack-menu-cart__product-remove::after {
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.megapack-menu-cart__product-remove > a {
  display: block;
  z-index: 2;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  position: absolute;
}

.megapack-menu-cart__product:not(:last-of-type), .megapack-menu-cart__products, .megapack-menu-cart__subtotal {
  border-bottom: solid 1px #D4D4D4;
}

.megapack-menu-cart__product:not(:first-of-type), .megapack-menu-cart__subtotal, .megapack-menu-cart__footer-buttons {
  padding-top: 20px;
}

.megapack-menu-cart__product, .megapack-menu-cart__subtotal {
  padding-bottom: 20px;
}

.megapack-menu-cart__subtotal {
  font-size: 20px;
  text-align: center;
  font-weight: 600;
}

.megapack-menu-cart__footer-buttons {
  font-size: 20px;
  text-align: center;
  display: grid;
  grid-column-gap: 10px;
  grid-row-gap: 10px;
}

.megapack-menu-cart__footer-buttons .elementor-button {
  border-radius: 0;
}

.megapack-menu-cart--buttons-inline .megapack-menu-cart__footer-buttons {
  grid-template-columns: 1fr 1fr;
}

.megapack-menu-cart--buttons-stacked .megapack-menu-cart__footer-buttons {
  grid-template-columns: 1fr;
}

.megapack-menu-cart__toggle .elementor-button {
  background: transparent;
  border-radius: 0;
  color: #818a91;
  border: 1px solid;
  border-color: inherit;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.megapack-menu-cart__toggle .elementor-button-text {
  margin-right: 0.3em;
}

.megapack-menu-cart__toggle .elementor-button-icon {
  position: relative;
  -webkit-transition: color 0.1s;
  -o-transition: color 0.1s;
  transition: color 0.1s;
}

.megapack-menu-cart--items-indicator-bubble .megapack-menu-cart__toggle .elementor-button-icon[data-counter]:before {
  content: attr(data-counter);
  display: block;
  position: absolute;
  min-width: 1.6em;
  height: 1.6em;
  line-height: 1.5em;
  top: -0.7em;
  right: -0.7em;
  border-radius: 100%;
  color: #fff;
  background-color: #d9534f;
  text-align: center;
  font-size: 10px;
}

.megapack-menu-cart--items-indicator-plain .megapack-menu-cart__toggle .elementor-button-icon[data-counter]:before {
  content: attr(data-counter);
  display: inline-block;
  font-weight: normal;
}

.megapack-menu-cart--empty-indicator-hide .megapack-menu-cart__toggle .elementor-button .elementor-button-icon[data-counter]:before {
  content: none;
  display: none;
}
.megapack-menu-cart__container_buttons-inline .megapack-menu-cart__footer-buttons{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.megapack-menu-cart__container_buttons-bottom .megapack-menu-cart__footer-buttons{
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
}
/*  ================================
  MEGA RELATION
*/
.mgp-relation-item_simple a {
  font-weight: 600;
  color: #3a3a3a;
  font-size: 15px;
  font-family: "Roboto", Sans-serif, sans-serif;
}


div.elementor .megapack-product-price-block-yes .price del,
div.elementor .megapack-product-price-block-yes .price ins {
  display: block; }

/* =====================================================
   =                    CUSTOM POSTS                   =
   =====================================================
*/
.mgp-loop-hover-container {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

[data-element_type="posts.megapack-custom"] .elementor-post,
[data-element_type="archive-posts.megapack-archive-custom"] .elementor-post,
.mgp-loop-with-hover .elementor-post {
  position: relative;
}

.mgp-loop-hover-container > .elementor {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 100%;
  top: 0;
}

.mgp-loop-hover-container:hover > .elementor {
  left: 0;
}

.mgp-custom-posts-no-transition .mgp-loop-hover-container:hover > .elementor {
  display: block;
}
.mgp-custom-posts-no-transition .mgp-loop-hover-container {
  overflow: visible;
}
.mgp-custom-posts-no-transition .mgp-loop-hover-container > .elementor{
  display: none;
  left: 0;
}
.mgp-custom-posts-no-transition .mgp-loop-hover-container > .elementor > .elementor-inner{
  background-color: #fff;
}
.elementor-posts--skin-megapack-custom > .elementor-post:hover{
  z-index: 100;
}
/* =====================================================
   =                        PRICE                      =
   =====================================================
*/
.mgp-price-container_right .price{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end;

}
.mgp-price-container_right .price  ins{
  margin-right: .4em;
}
.mgp-price-container_bottom .price{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column-reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}
.mgp-price-container_top .price{
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}