/* 1. Configuration and helpers */
/* Variables class */
/* Animations Mixins */
/* Generate PX TO VW */
/* 2. Vendors */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS and IE text size adjust after device orientation change,
 *    without disabling user zoom.
 */
html {
  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined for any HTML5 element in IE 8/9.
 * Correct `block` display not defined for `details` or `summary` in IE 10/11
 * and Firefox.
 * Correct `block` display not defined for `main` in IE 11.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block; }

/**
 * 1. Correct `inline-block` display not defined in IE 8/9.
 * 2. Normalize vertical alignment of `progress` in Chrome, Firefox, and Opera.
 */
audio,
canvas,
progress,
video {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

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

/* Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background-color: transparent; }

/**
 * Improve readability of focused elements when they are also in an
 * active/hover state.
 */
a:active,
a:hover {
  outline: 0; }

/* Text-level semantics
   ========================================================================== */
/**
 * Address styling not present in IE 8/9/10/11, Safari, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari, and Chrome.
 */
b,
strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari and Chrome.
 */
dfn {
  font-style: italic; }

/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9.
 */
mark {
  background: #ff0;
  color: #000; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
  font-size: 80%; }

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

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9/10.
 */
img {
  border: 0;
  vertical-align: middle; }

/**
 * Correct overflow not hidden in IE 9/10/11.
 */
svg:not(:root) {
  overflow: hidden; }

/* Grouping content
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari.
 */
figure {
  margin: 1em 40px; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  box-sizing: content-box;
  height: 0; }

/**
 * Contain overflow in all browsers.
 */
pre {
  overflow: auto; }

/**
 * Address odd `em`-unit font size rendering in all browsers.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em; }

/* Forms
   ========================================================================== */
/**
 * Known limitation: by default, Chrome and Safari on OS X allow very limited
 * styling of `select`, unless a `border` property is set.
 */
/**
 * 1. Correct color not being inherited.
 *    Known issue: affects color of disabled elements.
 * 2. Correct font properties not being inherited.
 * 3. Address margins set differently in Firefox 4+, Safari, and Chrome.
 */
button,
input,
optgroup,
select,
textarea {
  color: inherit;
  /* 1 */
  font: inherit;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address `overflow` set to `hidden` in IE 8/9/10/11.
 */
button {
  overflow: visible; }

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

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

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

/**
 * It's recommended that you don't attempt to style these elements.
 * Firefox's implementation doesn't respect box-sizing, padding, or width.
 *
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Fix the cursor style for Chrome's increment/decrement buttons. For certain
 * `font-size` values of the `input`, it causes the cursor style of the
 * decrement button to change from `default` to `text`.
 */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Address `appearance` set to `searchfield` in Safari and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari and Chrome.
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  box-sizing: content-box;
  /* 2 */ }

/**
 * Remove inner padding and search cancel button in Safari and Chrome on OS X.
 * Safari (but not Chrome) clips the cancel button when the search input has
 * padding (and `textfield` appearance).
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

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

/**
 * Remove default vertical scrollbar in IE 8/9/10/11.
 */
textarea {
  overflow: auto; }

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

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

 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

td,
th {
  padding: 0; }

p {
  margin: 0;
  padding: 0; }

select, input, textarea {
  font-family: inherit;
  color: inherit;
  resize: none;
  outline: none;
  border: none; }

header, nav, div, footer, span, ul, li, label, section, input, fieldset, textarea {
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* 3. Base stuff */
/* open-sans-300 - latin-ext_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  src: url("../css/fonts/open-sans-v15-latin-ext_latin-300.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Light"), local("OpenSans-Light"), url("../css/fonts/open-sans-v15-latin-ext_latin-300.eot?#iefix") format("embedded-opentype"), url("../css/fonts/open-sans-v15-latin-ext_latin-300.woff2") format("woff2"), url("../css/fonts/open-sans-v15-latin-ext_latin-300.woff") format("woff"), url("../css/fonts/open-sans-v15-latin-ext_latin-300.ttf") format("truetype"), url("../css/fonts/open-sans-v15-latin-ext_latin-300.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-regular - latin-ext_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  src: url("../css/fonts/open-sans-v15-latin-ext_latin-regular.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Regular"), local("OpenSans-Regular"), url("../css/fonts/open-sans-v15-latin-ext_latin-regular.eot?#iefix") format("embedded-opentype"), url("../css/fonts/open-sans-v15-latin-ext_latin-regular.woff2") format("woff2"), url("../css/fonts/open-sans-v15-latin-ext_latin-regular.woff") format("woff"), url("../css/fonts/open-sans-v15-latin-ext_latin-regular.ttf") format("truetype"), url("../css/fonts/open-sans-v15-latin-ext_latin-regular.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-700 - latin-ext_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  src: url("../css/fonts/open-sans-v15-latin-ext_latin-700.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Bold"), local("OpenSans-Bold"), url("../css/fonts/open-sans-v15-latin-ext_latin-700.eot?#iefix") format("embedded-opentype"), url("../css/fonts/open-sans-v15-latin-ext_latin-700.woff2") format("woff2"), url("../css/fonts/open-sans-v15-latin-ext_latin-700.woff") format("woff"), url("../css/fonts/open-sans-v15-latin-ext_latin-700.ttf") format("truetype"), url("../css/fonts/open-sans-v15-latin-ext_latin-700.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-600 - latin-ext_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  src: url("../css/fonts/open-sans-v15-latin-ext_latin-600.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans SemiBold"), local("OpenSans-SemiBold"), url("../css/fonts/open-sans-v15-latin-ext_latin-600.eot?#iefix") format("embedded-opentype"), url("../css/fonts/open-sans-v15-latin-ext_latin-600.woff2") format("woff2"), url("../css/fonts/open-sans-v15-latin-ext_latin-600.woff") format("woff"), url("../css/fonts/open-sans-v15-latin-ext_latin-600.ttf") format("truetype"), url("../css/fonts/open-sans-v15-latin-ext_latin-600.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-800 - latin-ext_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  src: url("../css/fonts/open-sans-v15-latin-ext_latin-800.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans ExtraBold"), local("OpenSans-ExtraBold"), url("../css/fonts/open-sans-v15-latin-ext_latin-800.eot?#iefix") format("embedded-opentype"), url("../css/fonts/open-sans-v15-latin-ext_latin-800.woff2") format("woff2"), url("../css/fonts/open-sans-v15-latin-ext_latin-800.woff") format("woff"), url("../css/fonts/open-sans-v15-latin-ext_latin-800.ttf") format("truetype"), url("../css/fonts/open-sans-v15-latin-ext_latin-800.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

/* open-sans-italic - latin-ext_latin */
@font-face {
  font-family: 'Open Sans';
  font-style: italic;
  font-weight: 400;
  src: url("../css/fonts/open-sans-v15-latin-ext_latin-italic.eot");
  /* IE9 Compat Modes */
  src: local("Open Sans Italic"), local("OpenSans-Italic"), url("../css/fonts/open-sans-v15-latin-ext_latin-italic.eot?#iefix") format("embedded-opentype"), url("../css/fonts/open-sans-v15-latin-ext_latin-italic.woff2") format("woff2"), url("../css/fonts/open-sans-v15-latin-ext_latin-italic.woff") format("woff"), url("../css/fonts/open-sans-v15-latin-ext_latin-italic.ttf") format("truetype"), url("../css/fonts/open-sans-v15-latin-ext_latin-italic.svg#OpenSans") format("svg");
  /* Legacy iOS */ }

body {
  color: #000;
  font-weight: normal;
  font-size: 14px;
  font-family: "Open Sans", sans-serif; }

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  color: inherit;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-family: "Open Sans", sans-serif;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

h1 {
  font-size: 40px; }

h2 {
  font-size: 36px; }

h3 {
  font-size: 32px; }

h4 {
  font-size: 28px; }

h5 {
  font-size: 24px; }

h6 {
  font-size: 20px; }

.intro-title {
  font-size: 48px;
  color: #fff;
  line-height: 1.2em; }

@media (min-width: 1025px) {
  .intro-title {
    font-size: 4.6875vw;
    padding-right: 20px; } }

@media (min-width: 1921px) {
  .intro-title {
    font-size: 90px; } }

.medium-title {
  font-size: 36px;
  color: #fff;
  line-height: 1.2em; }

.medium-title .pill {
  margin: 0 5px;
  padding: 2px 6px 3px;
  font-size: 14px;
  font-weight: bold;
  vertical-align: super;
  border-radius: 4px; }

@media (min-width: 1025px) {
  .medium-title {
    font-size: 3.125vw; } }

@media (min-width: 1921px) {
  .medium-title {
    font-size: 60px; } }

.medium-regular-title {
  font-size: 30px;
  line-height: 1.2em; }

@media (min-width: 1025px) {
  .medium-regular-title {
    font-size: 2.5vw; } }

@media (min-width: 1921px) {
  .medium-regular-title {
    font-size: 48px; } }

.regular-title {
  font-size: 28px;
  line-height: 1.2em; }

@media (min-width: 1025px) {
  .regular-title {
    font-size: 36px; } }

.small-title {
  font-size: 24px;
  line-height: 1.2em; }

@media (min-width: 1025px) {
  .small-title {
    font-size: 26px; } }

/**
 * Clear inner floats
 */
.clearfix::after {
  clear: both;
  content: '';
  display: table; }

/**
 * Hide text while making it readable for screen readers
 * 1. Needed in WebKit-based browsers because of an implementation bug;
 *    See: https://code.google.com/p/chromium/issues/detail?id=457146
 */
.hide-text {
  overflow: hidden;
  padding: 0;
  /* 1 */
  text-indent: 101%;
  white-space: nowrap; }

/**
 * Hide element while making it readable for screen readers
 * Shamelessly borrowed from HTML5Boilerplate:
 * https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css#L119-L133
 */
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px; }

.hidden {
  visibility: hidden;
  opacity: 0; }

.visible {
  visibility: visible;
  opacity: 1; }

.full-content {
  width: 100%;
  height: 100%; }

.list {
  lidp-style: none;
  lidp-style-image: none;
  margin: 0;
  padding: 0; }

.vert-center {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%); }

.overflown {
  overflow: hidden; }

/* On Scroll Animations For Desktop*/
@media (min-width: 1025px) {
  .anim-block .anim-elem {
    -webkit-transition: opacity .7s, visibility .7s;
    -moz-transition: opacity .7s, visibility .7s;
    -ms-transition: opacity .7s, visibility .7s;
    -o-transition: opacity .7s, visibility .7s;
    transition: opacity .7s, visibility .7s;
    will-change: transform, opacity,visibility;
    -webkit-backface-visibility: hidden;
    /* Chrome, Safari, Opera */
    backface-visibility: hidden;
    visibility: hidden;
    opacity: 0; }
  .anim-block .anim-elem.done {
    visibility: visible;
    opacity: 1; }
  .anim-block .anim-elem.top {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    transform: translateY(30px);
    -webkit-transition: opacity .5s, transform .5s, visibility .5s;
    -moz-transition: opacity .5s, transform .5s, visibility .5s;
    -ms-transition: opacity .5s, transform .5s, visibility .5s;
    -o-transition: opacity .5s, transform .5s, visibility .5s;
    transition: opacity .5s, transform .5s, visibility .5s; }
  .anim-block .anim-elem.top.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.top-100 {
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: opacity .7s, transform .7s, visibility .7s;
    -moz-transition: opacity .7s, transform .7s, visibility .7s;
    -ms-transition: opacity .7s, transform .7s, visibility .7s;
    -o-transition: opacity .7s, transform .7s, visibility .7s;
    transition: opacity .7s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.top-100.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.top-phone {
    -webkit-transform: translateY(100px);
    -ms-transform: translateY(100px);
    transform: translateY(100px);
    -webkit-transition: opacity .2s, transform .7s, visibility .7s;
    -moz-transition: opacity .2s, transform .7s, visibility .7s;
    -ms-transition: opacity .2s, transform .7s, visibility .7s;
    -o-transition: opacity .2s, transform .7s, visibility .7s;
    transition: opacity .2s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.top-phone.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.rotate {
    -webkit-transform: rotate(2deg);
    -ms-transform: rotate(2deg);
    transform: rotate(2deg);
    transform-origin: 0 0;
    -webkit-transition: opacity .5s, transform .5s, visibility .5s;
    -moz-transition: opacity .5s, transform .5s, visibility .5s;
    -ms-transition: opacity .5s, transform .5s, visibility .5s;
    -o-transition: opacity .5s, transform .5s, visibility .5s;
    transition: opacity .5s, transform .5s, visibility .5s; }
  .anim-block .anim-elem.rotate.done {
    -webkit-transform: rotate(0);
    -ms-transform: rotate(0);
    transform: rotate(0); }
  .anim-block .anim-elem.left {
    -webkit-transform: translateX(-150px);
    -ms-transform: translateX(-150px);
    transform: translateX(-150px);
    -webkit-transition: opacity .7s, transform .7s, visibility .7s;
    -moz-transition: opacity .7s, transform .7s, visibility .7s;
    -ms-transition: opacity .7s, transform .7s, visibility .7s;
    -o-transition: opacity .7s, transform .7s, visibility .7s;
    transition: opacity .7s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.left.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.left-30 {
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
    -webkit-transition: opacity .7s, transform .7s, visibility .7s;
    -moz-transition: opacity .7s, transform .7s, visibility .7s;
    -ms-transition: opacity .7s, transform .7s, visibility .7s;
    -o-transition: opacity .7s, transform .7s, visibility .7s;
    transition: opacity .7s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.left-30.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.left-aqua {
    -webkit-transform: translateX(-150px);
    -ms-transform: translateX(-150px);
    transform: translateX(-150px);
    -webkit-transition: opacity .2s, transform .7s, visibility .7s;
    -moz-transition: opacity .2s, transform .7s, visibility .7s;
    -ms-transition: opacity .2s, transform .7s, visibility .7s;
    -o-transition: opacity .2s, transform .7s, visibility .7s;
    transition: opacity .2s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.left-aqua.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.right {
    -webkit-transform: translateX(150px);
    -ms-transform: translateX(150px);
    transform: translateX(150px);
    -webkit-transition: opacity .7s, transform .7s, visibility .7s;
    -moz-transition: opacity .7s, transform .7s, visibility .7s;
    -ms-transition: opacity .7s, transform .7s, visibility .7s;
    -o-transition: opacity .7s, transform .7s, visibility .7s;
    transition: opacity .7s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.right.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.right-50 {
    -webkit-transform: translateX(50px);
    -ms-transform: translateX(50px);
    transform: translateX(50px);
    -webkit-transition: opacity .7s, transform .7s, visibility .7s;
    -moz-transition: opacity .7s, transform .7s, visibility .7s;
    -ms-transition: opacity .7s, transform .7s, visibility .7s;
    -o-transition: opacity .7s, transform .7s, visibility .7s;
    transition: opacity .7s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.right-50.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.right-slider {
    -webkit-transform: translateX(150px);
    -ms-transform: translateX(150px);
    transform: translateX(150px);
    -webkit-transition: opacity .2s, transform .7s, visibility .7s;
    -moz-transition: opacity .2s, transform .7s, visibility .7s;
    -ms-transition: opacity .2s, transform .7s, visibility .7s;
    -o-transition: opacity .2s, transform .7s, visibility .7s;
    transition: opacity .2s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.right-slider.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.right-phone {
    -webkit-transform: translateX(150px);
    -ms-transform: translateX(150px);
    transform: translateX(150px);
    -webkit-transition: opacity .3s, transform .7s, visibility .7s;
    -moz-transition: opacity .3s, transform .7s, visibility .7s;
    -ms-transition: opacity .3s, transform .7s, visibility .7s;
    -o-transition: opacity .3s, transform .7s, visibility .7s;
    transition: opacity .3s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.right-phone.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.left-phone {
    -webkit-transform: translateX(-50px);
    -ms-transform: translateX(-50px);
    transform: translateX(-50px);
    -webkit-transition: opacity .3s, transform .7s, visibility .7s;
    -moz-transition: opacity .3s, transform .7s, visibility .7s;
    -ms-transition: opacity .3s, transform .7s, visibility .7s;
    -o-transition: opacity .3s, transform .7s, visibility .7s;
    transition: opacity .3s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.left-phone.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.right-aqua {
    -webkit-transform: translateX(150px);
    -ms-transform: translateX(150px);
    transform: translateX(150px);
    -webkit-transition: opacity .2s, transform .7s, visibility .7s;
    -moz-transition: opacity .2s, transform .7s, visibility .7s;
    -ms-transition: opacity .2s, transform .7s, visibility .7s;
    -o-transition: opacity .2s, transform .7s, visibility .7s;
    transition: opacity .2s, transform .7s, visibility .7s; }
  .anim-block .anim-elem.right-aqua.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.bottom {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
    -webkit-transition: opacity .5s, transform .5s, visibility .5s;
    -moz-transition: opacity .5s, transform .5s, visibility .5s;
    -ms-transition: opacity .5s, transform .5s, visibility .5s;
    -o-transition: opacity .5s, transform .5s, visibility .5s;
    transition: opacity .5s, transform .5s, visibility .5s; }
  .anim-block .anim-elem.bottom.done {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  .anim-block .anim-elem.scale {
    -webkit-transform: scale(0.5);
    -ms-transform: scale(0.5);
    transform: scale(0.5);
    -webkit-transition: opacity .3s, transform .3s, visibility .3s;
    -moz-transition: opacity .3s, transform .3s, visibility .3s;
    -ms-transition: opacity .3s, transform .3s, visibility .3s;
    -o-transition: opacity .3s, transform .3s, visibility .3s;
    transition: opacity .3s, transform .3s, visibility .3s; }
  .anim-block .anim-elem.scale.done {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  .anim-block .anim-elem.width-0 {
    width: 0;
    -webkit-transition: opacity .3s, transform .3s, visibility .3s, width .4s;
    -moz-transition: opacity .3s, transform .3s, visibility .3s, width .4s;
    -ms-transition: opacity .3s, transform .3s, visibility .3s, width .4s;
    -o-transition: opacity .3s, transform .3s, visibility .3s, width .4s;
    transition: opacity .3s, transform .3s, visibility .3s, width .4s; }
  .anim-block .anim-elem.width-0.done {
    width: 100%; }
  .anim-block .anim-elem.height-100 {
    height: 100%;
    visibility: visible;
    opacity: 1;
    -webkit-transition: height .4s;
    -moz-transition: height .4s;
    -ms-transition: height .4s;
    -o-transition: height .4s;
    transition: height .4s; }
  .anim-block .anim-elem.height-100.done {
    height: 0; }
  .anim-block .anim-elem.blink.done {
    animation: blink .5s 1; }
  .anim-block .anim-elem.blink-out.done {
    animation: blink_out .5s 1; }
  .anim-block .anim-elem.delay-01 {
    -webkit-transition-delay: .1s;
    transition-delay: .1s; }
  .anim-block .anim-elem.delay-015 {
    -webkit-transition-delay: .15s;
    transition-delay: .15s; }
  .anim-block .anim-elem.delay-02 {
    -webkit-transition-delay: .2s;
    transition-delay: .2s; }
  .anim-block .anim-elem.delay-03 {
    -webkit-transition-delay: .3s;
    transition-delay: .3s; }
  .anim-block .anim-elem.delay-05 {
    -webkit-transition-delay: .5s;
    transition-delay: .5s; }
  .anim-block .anim-elem.delay-07 {
    -webkit-transition-delay: .7s;
    transition-delay: .7s; }
  .anim-block .anim-elem.delay-09 {
    -webkit-transition-delay: .9s;
    transition-delay: .9s; }
  .anim-block .anim-elem.delay-1 {
    -webkit-transition-delay: 1s;
    transition-delay: 1s; }
  .anim-block .anim-elem.delay-12 {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s; }
  .anim-block .anim-elem.delay-15 {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s; }
  .anim-block .anim-elem.delay-2 {
    -webkit-transition-delay: 2s;
    transition-delay: 2s; }
  .anim-block .anim-elem.delay-3 {
    -webkit-transition-delay: 3s;
    transition-delay: 3s; } }

@keyframes loader-one {
  from {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes blink {
  0% {
    opacity: 1; }
  50% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes scroll_down {
  0% {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); }
  50% {
    -webkit-transform: translateY(5px);
    -ms-transform: translateY(5px);
    transform: translateY(5px); }
  100% {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px); } }

@keyframes grain {
  0% {
    -webkit-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px); }
  20% {
    -webkit-transform: translate3d(40px, -40px, 0px);
    -ms-transform: translate3d(40px, -40px, 0px);
    transform: translate3d(40px, -40px, 0px); }
  40% {
    -webkit-transform: translate3d(-40px, 40px, 0px);
    -ms-transform: translate3d(-40px, 40px, 0px);
    transform: translate3d(-40px, 40px, 0px); }
  60% {
    -webkit-transform: translate3d(-40px, -40px, 0px);
    -ms-transform: translate3d(-40px, -40px, 0px);
    transform: translate3d(-40px, -40px, 0px); }
  80% {
    -webkit-transform: translate3d(40px, 40px, 0px);
    -ms-transform: translate3d(40px, 40px, 0px);
    transform: translate3d(40px, 40px, 0px); }
  100% {
    -webkit-transform: translate3d(0px, 0px, 0px);
    -ms-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px); } }

/* Spinner Animation */
@keyframes rotator {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(270deg); } }

@keyframes dash {
  0% {
    stroke-dashoffset: 187; }
  50% {
    stroke-dashoffset: 46.75;
    transform: rotate(135deg); }
  100% {
    stroke-dashoffset: 187;
    transform: rotate(450deg); } }

/**
 * Set up a decent box model on the root element
 */
html {
  box-sizing: border-box;
  min-height: 100%; }

html.of-hidden {
  overflow: hidden;
  position: relative; }

body {
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  min-height: 100%;
  background: #fff; }

body.of-hidden {
  overflow: hidden;
  position: relative; }

body.ms-class .svg-elem {
  opacity: 1;
  fill: #fff; }

/**
 * Make all elements from the DOM inherit from the parent box-sizing
 * Since `*` has a specificity of 0, it does not override the `html` value
 * making all elements inheriting from the root box-sizing value
 * See: https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-bedp-practice/
 */
*, *::before, *::after {
  box-sizing: inherit; }

/**
 * Basic styles for links
 */
a {
  color: inherit;
  text-decoration: none; }

input, select, textarea {
  outline: none; }

input, textarea {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-radius: 0; }

select {
  outline: none;
  border-radius: 0; }

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

button,
input {
  overflow: visible; }

button,
select {
  /* 1 */
  text-transform: none; }

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

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

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

blockquote {
  padding: 0;
  margin: 0; }

button {
  cursor: pointer;
  border: 0;
  background: transparent;
  padding: 0; }

button:focus {
  outline: 0; }

.sitemap-table {
  margin: 0 auto;
  margin-bottom: 15px;
  vertical-align: top; }

.sitemap-table .sitemap-title {
  padding: 10px 0;
  font-size: 1.4em;
  font-weight: 600; }

.sitemap-table td {
  vertical-align: top; }

.sitemap-table ul {
  width: 400px;
  list-style-type: none;
  padding: 0;
  margin: 0; }

.sitemap-table ul li {
  font-size: 14px;
  line-height: 1.6em;
  color: #343941;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px; }

.sitemap-table ul li:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: #ed1c24;
  position: absolute;
  top: 8px;
  left: 0; }

.ajax-preloader {
  position: absolute;
  background-color: #f9f9f9;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center; }

.ajax-preloader.visible {
  visibility: visible; }

.ajax-preloader .spinner {
  display: block; }

.ajax-preloader .spinner::after {
  content: '';
  display: block;
  width: 46px;
  height: 46px;
  margin: 1px;
  border-radius: 50%;
  border: 5px solid #c5c4c4;
  border-color: #c5c4c4 transparent #c5c4c4 transparent;
  animation: spinner 1.2s linear infinite; }

@keyframes spinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@-moz-keyframes spinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

@-webkit-keyframes spinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

.p-0 {
  padding: 0; }

/* 4. Layout-related sections */
header {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  background-color: #fff;
  font-size: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 11;
  -webkit-transition: transform .5s;
  -moz-transition: transform .5s;
  -ms-transition: transform .5s;
  -o-transition: transform .5s;
  transition: transform .5s;
  backface-visibility: hidden; }

header.active-mobile-menu .header-nav-container {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

header.active-mobile-menu .header-logo-container .header-logo-link {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: opacity .2s, visibility .2s;
  -moz-transition: opacity .2s, visibility .2s;
  -ms-transition: opacity .2s, visibility .2s;
  -o-transition: opacity .2s, visibility .2s;
  transition: opacity .2s, visibility .2s; }

header .header-wrap {
  max-width: 1920px;
  margin: 0 auto;
  backface-visibility: hidden; }

header .header-logo-container {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  backface-visibility: hidden;
  padding-top: 15px;
  padding-bottom: 15px;
  z-index: 2;
  background: #fff; }

header .header-logo-container .header-logo-image {
  display: none; }

header .header-logo-container .header-logo-link {
  width: 46px; }

header .header-logo-container .header-search-btn {
  display: inline-block;
  width: 46px;
  height: 46px;
  border-radius: 23px;
  background-position: center center;
  margin-top: 0;
  margin-right: 10px;
  display: block; }

header .header-logo-container .header-search-btn.active {
  background-position: center center; }

header .header-logo-image-mobile {
  display: inline-block;
  width: 100%; }

header .header-logo-link {
  width: 200px;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
  backface-visibility: hidden;
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity .8s, visibility .8s;
  -moz-transition: opacity .8s, visibility .8s;
  -ms-transition: opacity .8s, visibility .8s;
  -o-transition: opacity .8s, visibility .8s;
  transition: opacity .8s, visibility .8s; }

header .header-logo-image {
  width: 100%;
  display: inline-block;
  backface-visibility: hidden; }

header .header-nav-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 76px;
  -webkit-transition: transform 0.5s;
  transition: transform 0.5s;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%);
  background: #fff; }

header .header-nav {
  width: 100%;
  height: 100%;
  overflow: auto;
  background: #fff;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 30px;
  padding-top: 10px; }

header .header-nav-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-top: 20px;
  padding-bottom: 10px; }

header .nav-list-item {
  display: block;
  margin-bottom: 15px; }

header .nav-list-item.active .nav-list-link:after {
  width: 100%; }

header .dropdown-title {
  display: none; }

@media (min-width: 1025px) {
  header .dropdown {
    margin-left: 10px; }
  header .dropdown .dropdown-title {
    padding-left: 20px;
    padding-right: 25px;
    display: inline-block; }
  header .dropdown .dropdown-title .arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    position: absolute;
    bottom: 6px;
    right: 0; }
  header .dropdown .dropdown-menu {
    padding: 15px;
    min-width: 100%;
    left: 0;
    top: 100%;
    margin-top: -4px;
    position: absolute;
    background-color: #fff;
    visibility: hidden;
    white-space: nowrap;
    margin-left: 50%;
    transform: translateX(-50%); }
  header .dropdown .dropdown-menu .nav-list-item {
    margin: 0;
    display: block;
    text-align: start; }
  header .dropdown .dropdown-menu .nav-list-item .nav-list-link {
    padding-bottom: 10px;
    padding-top: 14px; }
  header .nav-list-item.dropdown:hover .arrow {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 0;
    border-bottom: 5px solid #000;
    position: absolute;
    bottom: 6px;
    right: 0; }
  header .nav-list-item.dropdown:hover .dropdown-menu {
    visibility: visible; } }

header .nav-list-link {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 20px;
  color: #000;
  padding-top: 5px;
  padding-bottom: 5px;
  position: relative;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  backface-visibility: hidden;
  font-weight: 800; }

header .nav-list-link:after,
header .nav-list-link ul:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 4px;
  background: #ed1c24;
  position: absolute;
  left: 0;
  -webkit-transition: width 0.4s;
  transition: width 0.4s; }

header .nav-list-link ul:after {
  top: 0; }

header .nav-list-link:after {
  bottom: 0; }

header .mobile-menu-container {
  float: right; }

header .header-search-btn {
  height: 58px;
  margin-top: 12px;
  display: inline-block;
  width: 70px;
  color: #ccc;
  font-size: 16px;
  float: right;
  display: none;
  background: url(../images/search/search.svg) center 30% no-repeat;
  background-size: 20px; }

header .header-search-btn.active {
  background: url(../images/search/search-active.svg) center 30% no-repeat #2c2c2c;
  background-size: 20px; }

header .search-box {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  display: none;
  background-color: #2c2c2c;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 80px 1.2rem;
  z-index: 21; }

header .search-box.active {
  display: block; }

header .search-box .search-wrap {
  max-width: 772px;
  margin: -35px auto 0;
  text-align: center; }

header .search-box .close-search-menu {
  position: absolute;
  display: block;
  top: 15px;
  right: 15px;
  width: 34px;
  height: 34px;
  transition: 0.1s all cubic-bezier(0, 1.15, 0.46, 1.17);
  border-radius: 100%;
  background-image: url(../images/search/close_error_box.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: #434343;
  border: 2px solid #434343;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

header .search-box .close-search-menu:hover {
  background-color: transparent; }

header .search-box .search-platforms-label {
  display: inline-block;
  font-size: 1.3125rem;
  font-weight: 300;
  line-height: 1;
  color: #dcdcdc;
  margin: 0 0 25px; }

header .search-box .search-platforms-list {
  width: auto;
  float: right;
  margin-right: 15px;
  margin-bottom: 1.8rem;
  padding-left: 0;
  text-align: center; }

header .search-box .search-platforms-list > .platform-button {
  width: 34px;
  height: 34px;
  position: relative;
  z-index: 1;
  display: inline-block;
  vertical-align: top;
  margin: 0 2vw; }

header .search-box .search-platforms-list > .platform-button:last-child {
  margin-right: 0; }

header .search-box .search-platforms-list > .platform-button input {
  display: none; }

header .search-box .search-platforms-list > .platform-button input:checked + label.icon:before {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

header .search-box .search-platforms-list > .platform-button .icon {
  position: relative;
  display: block;
  z-index: 1;
  width: 100%;
  height: 100%;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 35px;
  color: #919191;
  text-align: center; }

header .search-box .search-platforms-list > .platform-button .icon:before {
  opacity: 0;
  content: '';
  background-color: #1e1e1e;
  position: absolute;
  left: -8px;
  top: -8px;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  transition: 0.2s opacity ease-in-out, 0.3s transform cubic-bezier(0, 1.15, 0.46, 1.17);
  z-index: -1;
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8); }

header .search-box .search-platforms-list > .platform-button .icon:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 34px;
  height: 34px;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  border: 2px solid #d4d4d4;
  border-radius: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  opacity: .5; }

header .search-box .search-platforms-list > .platform-button .icon.android:after {
  background-image: url(../images/search/android.svg); }

header .search-box .search-platforms-list > .platform-button .icon.ios:after {
  background-image: url(../images/search/ios.svg); }

header .search-box .search-platforms-list > .platform-button .icon.amazon:after {
  background-image: url(../images/search/amazon.svg); }

header .search-box .search-platforms-list > .platform-button .icon.windows:after {
  background-image: url(../images/search/windows.svg); }

header .search-box .search-platforms-list > .platform-button .icon.windows-phone:after {
  background-image: url(../images/search/windows_phone.svg); }

header .search-box .search-field-wrap {
  clear: both;
  float: left;
  width: 100%;
  height: 86px;
  background-color: #1e1e1e;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 12px;
  border-radius: 100px; }

header .search-box .search-field-icon {
  border-right: 1px solid #686868;
  height: 56px;
  float: left;
  margin-top: 4px;
  margin-left: 24px; }

header .search-box .search-field {
  width: 73%;
  height: 56px;
  font-size: 1.3125rem;
  font-weight: 300;
  line-height: 1;
  color: #dcdcdc;
  border: 0;
  margin: 4px 0 0;
  background: transparent;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

header .search-box .search-button {
  display: inline-block;
  height: 56px;
  width: 100%;
  border-radius: 100px;
  margin-top: 26px;
  font-size: 1rem;
  font-weight: 300;
  background: #ed1c24;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: .2s color ease-in-out;
  box-sizing: border-box; }

header .search-box .search-button.button {
  float: right;
  color: #fff; }

header .mobile-menu-btn-wrap {
  display: inline-block; }

header .menu-btn {
  display: block;
  width: 46px;
  height: 46px;
  cursor: pointer;
  box-sizing: content-box;
  border-radius: 40px;
  background: #000;
  -webkit-transition: background 0.4s;
  transition: background 0.4s; }

header .menu-btn .lines-wrap {
  width: 100%;
  height: 100%;
  display: block;
  position: relative; }

header .menu-btn .line {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  left: 13px;
  -webkit-transition: top .3s, transform .3s, opacity .3s, visibility .3s;
  -moz-transition: top .3s, transform .3s, opacity .3s, visibility .3s;
  -ms-transition: top .3s, transform .3s, opacity .3s, visibility .3s;
  -o-transition: top .3s, transform .3s, opacity .3s, visibility .3s;
  transition: top .3s, transform .3s, opacity .3s, visibility .3s; }

header .menu-btn .line1 {
  top: 16px; }

header .menu-btn .line2 {
  top: 22px; }

header .menu-btn .line3 {
  top: 28px; }

header .menu-btn.active {
  background: #ed1c24; }

header .menu-btn.active .line1 {
  top: 22px; }

header .menu-btn.active .line2 {
  opacity: 0;
  visibility: hidden; }

header .menu-btn.active .line3 {
  top: 22px; }

header .menu-btn.active.rotate-lines .line1 {
  -webkit-transform: rotate(315deg);
  -ms-transform: rotate(315deg);
  transform: rotate(315deg); }

header .menu-btn.active.rotate-lines .line3 {
  -webkit-transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  transform: rotate(225deg); }

header .mobile-logo-container {
  padding-bottom: 30px;
  border-bottom: 5px solid #e2e2e2; }

header .mobile-links-container {
  border-top: 1px solid #e2e2e2; }

header .mobile-links-list {
  margin: 0;
  padding: 0;
  list-style-type: none;
  margin-top: 15px; }

header .mobile-social-container {
  margin-top: 20px;
  text-align: center; }

header .social-list {
  margin: 0;
  padding: 0;
  font-size: 0; }

header .social-list-item {
  display: inline-block;
  vertical-align: middle;
  margin: 0 10px; }

header .social-item-link {
  display: inline-block;
  color: #fff;
  padding: 5px; }

header .icon-container {
  width: 24px;
  height: 24px;
  font-size: 0;
  display: inline-block;
  border-radius: 50px;
  -webkit-transition: background 0.4s;
  transition: background 0.4s; }

header .icon-container.facebook {
  background: #3a5897; }

header .icon-container.twitter {
  background: #54aced; }

header .icon-container.google_plus {
  background: #dc4e41; }

header .icon-container.yt {
  background: #c93737; }

header .icon-container.linkedin {
  background: #0079b8; }

header .icon-image {
  width: 16px;
  display: inline-block;
  vertical-align: middle; }

@media (min-width: 480px) {
  header .header-nav {
    padding-left: 60px;
    padding-right: 60px;
    padding-top: 20px; }
  header .mobile-social-container {
    margin-top: 40px; }
  header .header-nav-list {
    margin-top: 40px;
    padding-bottom: 20px; }
  header .nav-list-item {
    margin-bottom: 25px; }
  header .mobile-links-list {
    margin-top: 25px; }
  header .header-logo-container {
    padding-top: 20px;
    padding-bottom: 20px; }
  header .header-logo-container .header-logo-image {
    display: block; }
  header .header-logo-image-mobile {
    display: none; }
  header .header-logo-link {
    width: 200px; }
  header .header-logo-container .header-logo-link {
    width: 200px; }
  header .search-box {
    padding-bottom: 50px; }
  header .search-box .search-platforms-list > .platform-button {
    width: 45px;
    height: 45px;
    margin: 0 2.2vw; }
  header .search-box .search-platforms-list > .platform-button .icon {
    font-size: 1rem;
    line-height: 45px;
    text-align: center; }
  header .search-box .search-platforms-list > .platform-button .icon:before {
    left: -12px;
    top: -12px;
    width: 69px;
    height: 69px; }
  header .search-box .search-platforms-list > .platform-button .icon:after {
    width: 45px;
    height: 45px; }
  header .search-box .search-button {
    height: 76px;
    width: 76px;
    margin: -6px -5px 0 0; } }

@media (min-width: 720px) {
  header {
    padding-left: 40px;
    padding-right: 40px; }
  header .header-nav {
    padding-top: 50px; }
  header .mobile-social-container {
    margin-top: 100px; } }

@media (min-width: 1025px) {
  header {
    padding-left: 20px;
    padding-right: 20px;
    /* This is a hacky way to disable double border of elements with dropdown */ }
  header .header-logo-link {
    padding-left: 0px; }
  header .nav-list-link {
    padding-top: 25px;
    padding-bottom: 25px;
    font-weight: 700;
    -webkit-transition: padding-top .2s, padding-bottom .2s;
    -moz-transition: padding-top .2s, padding-bottom .2s;
    -ms-transition: padding-top .2s, padding-bottom .2s;
    -o-transition: padding-top .2s, padding-bottom .2s;
    transition: padding-top .2s, padding-bottom .2s; }
  header .nav-list-link:hover:after,
  header .nav-list-link:hover ul:after {
    width: 100%; }
  header .dropdown > .nav-list-link:hover:after {
    width: auto; }
  header .nav-list-item {
    display: inline-block;
    vertical-align: middle;
    margin: 0 20px; }
  header .mobile-menu-container {
    display: none; }
  header .header-logo-container {
    width: auto;
    padding-top: 0;
    padding-bottom: 0; }
  header .header-logo-container .header-search-btn {
    display: none; }
  header .header-nav-container {
    width: calc(100% - 200px);
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    position: relative;
    padding-top: 0;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }
  header .header-nav {
    width: auto;
    height: auto;
    overflow: visible;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    padding-bottom: 0; }
  header .header-nav-list {
    margin-top: 0;
    padding-bottom: 0;
    float: right; }
  header .mobile-logo-container {
    display: none; }
  header .mobile-links-container {
    display: none; }
  header .mobile-social-container {
    display: none; }
  header .header-search-btn {
    display: block; }
  header .search-box {
    padding: 80px 1.875rem; }
  header .search-box .search-wrap {
    margin: 0 auto;
    text-align: center; }
  header .search-box .close-search-menu {
    top: 40px;
    right: 35px;
    width: 45px;
    height: 45px; }
  header .search-box .search-platforms-label {
    float: left;
    margin: .9375rem 1.875rem 0 0; }
  header .search-box .search-platforms-list {
    margin-bottom: 3rem; }
  header .search-box .search-platforms-list > .platform-button {
    margin: 0 1.44rem; }
  header .search-box .search-field-wrap {
    height: 100px; }
  header .search-box .search-field-icon {
    float: left;
    margin-top: 10px;
    margin-left: 24px;
    cursor: pointer;
    padding-left: 5.3125rem;
    background: transparent url(../images/search/search-big.png) no-repeat 5px center;
    transition: 0.2s all ease-in-out; }
  header .search-box .search-field {
    font-size: 1.3125rem;
    margin: 10px 0 0;
    padding: 0rem 1.25rem; }
  header .search-box .search-button {
    display: inline-block;
    height: 76px;
    width: 76px;
    margin: 0;
    border-radius: 50%; } }

@media (min-width: 1281px) {
  header .nav-list-item {
    margin: 0 30px; }
  header .search-box {
    padding: 105px 1.875rem; }
  header .search-box .search-platforms-list {
    margin-bottom: 3.2rem; }
  header .search-box .search-platforms-list > .platform-button {
    margin: 0 1.5rem; }
  header .search-box .search-wrap {
    max-width: 838px; } }

@media (min-width: 1367px) {
  header .nav-list-link {
    padding-top: 29px;
    padding-bottom: 29px; }
  header .header-search-btn {
    margin-top: 20px; } }

.footer {
  padding-top: 50px;
  padding-bottom: 30px; }

@media (min-width: 1025px) {
  .footer {
    margin-bottom: 60px; } }

@media (min-width: 1441px) {
  .footer {
    margin-bottom: 20px; } }

.footer .footr-grid {
  font-size: 0;
  margin-left: -20px;
  margin-right: -20px; }

.footer .footer-grid-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  padding: 0 20px;
  margin-bottom: 20px; }

.footer .footer-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
  margin-top: 25px; }

.footer .footer-list-item {
  margin-bottom: 10px; }

.footer .footer-list-item.address-item {
  margin-bottom: 25px; }

.footer .footer-list-link {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #444444; }

.footer .footer-list-link-social {
  display: inline-block;
  position: relative;
  font-size: 14px;
  color: #444444; }

.footer .social-icon {
  display: inline-block;
  text-align: center;
  color: #fff;
  margin-right: 15px; }

.footer .icon-image {
  width: 16px;
  display: inline-block;
  vertical-align: middle; }

.footer .icon-container {
  width: 24px;
  height: 24px;
  font-size: 16px;
  line-height: 24px;
  display: inline-block;
  border-radius: 50px;
  background: #000;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  text-align: center;
  font-size: 0;
  vertical-align: middle; }

.footer .icon-image {
  width: 16px;
  display: inline-block; }

.footer .footer-copy {
  margin-top: 20px;
  text-align: center; }

.footer .footer-copy-text {
  font-size: 0.835rem;
  line-height: 1.5em;
  font-weight: 400;
  color: #000;
  display: block;
  margin-bottom: 20px;
  text-align: center; }

.footer .footer-copy-text .inline-footer-el {
  display: inline-block; }

.footer .footer-copy-text span {
  margin-right: 10px; }

.footer .footer-copy-text.gray a {
  color: #444444; }

.footer .footer-copy-text.gray a:hover {
  text-decoration: underline; }

.footer .footer-copy-text.red a {
  color: red; }

.footer .footer-copy-text.red a:hover {
  text-decoration: underline; }

.footer .footer-copy-text.footer-links {
  display: block;
  position: relative;
  font-weight: 400; }

.footer .lang-container {
  position: relative;
  text-align: center;
  width: 90px;
  margin: 0 auto; }

.footer .lang-container a {
  color: #000; }

.footer .lang-container .switch-lang-btn {
  width: 120px;
  cursor: pointer; }

.footer .lang-container .lang-popup-footer {
  background: #e0e0e0;
  width: calc(100% + 40px);
  margin: 0 -20px;
  position: absolute;
  bottom: 30px;
  padding: 20px 0; }

.footer .lang-container .lang-popup-footer.hide-item {
  display: none; }

.footer .lang-container .lang-popup-footer .languages-dropdown {
  padding: 5px 0; }

.footer .lang-container .lang-popup-footer .languages-dropdown a {
  color: #000; }

.footer .lang-container .big-button {
  padding: 0 10px; }

.footer .lang-container .disabled-url {
  user-select: none;
  -ms-user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none;
  font-weight: 700 !important;
  color: rgba(0, 0, 0, 0.9) !important; }

.footer .lang-container .planet-lang {
  cursor: pointer;
  background: url(../images/language-icon.svg) no-repeat, center center fixed;
  -webkit-background-size: contain;
  background-size: contain;
  position: absolute;
  left: -22px;
  top: 1px;
  height: 17px;
  width: 17px; }

.footer .lang-container .arrow-lang {
  cursor: pointer;
  background: url(../images/arrow.svg) no-repeat, top, left;
  -webkit-background-size: contain;
  background-size: contain;
  position: absolute;
  right: -25px;
  top: 8px;
  height: 10px;
  width: 10px; }

@media (min-width: 640px) {
  .footer .lang-container {
    position: relative;
    text-align: center;
    width: auto;
    margin: auto; }
  .footer .footer-copy-text {
    max-width: 75%;
    display: inline-block;
    margin-bottom: 0;
    text-align: initial; }
  .footer .footer-copy-text.footer-links {
    display: inline-block;
    position: absolute;
    right: 0; } }

.footer .ed-wrap {
  margin-top: 10px; }

.footer .small-title {
  font-size: 18px; }

@media (min-width: 480px) {
  .footer .ed-wrap {
    position: absolute;
    top: 0;
    right: 30px;
    margin-top: 0; }
  .footer .footer-grid-item {
    width: 50%; }
  .footer .footer-copy {
    text-align: left;
    margin-top: 30px; } }

@media (min-width: 1025px) {
  .footer {
    padding-top: 5.20833vw;
    padding-bottom: 3.90625vw; }
  .footer .footer-grid-item {
    width: 25%;
    margin-bottom: 0; }
  .footer .footer-list-link {
    -webkit-transition: color .4s, opacity .4s;
    -moz-transition: color .4s, opacity .4s;
    -ms-transition: color .4s, opacity .4s;
    -o-transition: color .4s, opacity .4s;
    transition: color .4s, opacity .4s; }
  .footer .footer-list-link:after {
    content: '';
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #444444;
    -webkit-transition: width 0.4s;
    transition: width 0.4s; }
  .footer .footer-list-link a:hover {
    opacity: .6; }
  .footer .footer-list-link .address-wrap {
    line-height: 20px; }
  .footer .footer-list-link-social .social-text {
    -webkit-transition: color .4s, opacity .4s;
    -moz-transition: color .4s, opacity .4s;
    -ms-transition: color .4s, opacity .4s;
    -o-transition: color .4s, opacity .4s;
    transition: color .4s, opacity .4s; }
  .footer .footer-list-link-social .icon-container {
    -webkit-transition: background 0.4s;
    transition: background 0.4s; }
  .footer .footer-list-link-social:hover .social-text {
    opacity: .6; }
  .footer .footer-list-link-social:hover .facebook {
    background: #3a5897; }
  .footer .footer-list-link-social:hover .linkedin {
    background: #0079b8; }
  .footer .footer-list-link-social:hover .twitter {
    background: #54aced; }
  .footer .footer-list-link-social:hover .google_plus {
    background: #dc4e41; }
  .footer .footer-list-link-social:hover .yt {
    background: #c93737; }
  .footer .edesign-text:after {
    content: '';
    width: 0;
    height: 1px;
    background: #000;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transition: width .4s, left .4s;
    -moz-transition: width .4s, left .4s;
    -ms-transition: width .4s, left .4s;
    -o-transition: width .4s, left .4s;
    transition: width .4s, left .4s; }
  .footer .footer-copy {
    margin-top: 3.38542vw; }
  .footer .edesign-link:hover .edesign-text:after {
    width: 100%;
    left: 0; }
  .footer .footer-list-link-social {
    font-size: 13px; }
  .footer .footer-list-link {
    font-size: 13px; } }

@media (min-width: 1151px) {
  .footer .footer-list-link-social {
    font-size: 14px; }
  .footer .footer-list-link {
    font-size: 14px; } }

@media (min-width: 1367px) {
  .footer {
    padding-left: 20px;
    padding-right: 20px; } }

@media (min-width: 1921px) {
  .footer {
    padding-top: 100px;
    padding-bottom: 75px; } }

.partners-section {
  margin-top: 50px; }

.partners-section .regular-title {
  display: inline-block;
  color: #fff;
  position: relative; }

.partners-section .regular-title:after {
  content: '';
  width: 1200px;
  height: 1px;
  background: #474957;
  position: absolute;
  top: calc(50% + 5px);
  left: 100%;
  margin-left: 50px;
  font-size: 36px;
  line-height: 1.2em; }

.partners-section .partners-title-wrap-inner {
  overflow: hidden; }

.partners-section .home-partners-grid {
  font-size: 0;
  margin-top: 50px; }

.partners-section .partners-grid-item {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  padding: 0 20px;
  margin-bottom: 30px; }

.partners-section .partners-logo-image-wrap {
  width: 100%;
  max-width: 180px;
  display: inline-block; }

.partners-section .partners-logo-image {
  max-width: 100%;
  max-height: 100%;
  display: inline-block; }

@media (min-width: 480px) {
  .partners-section .partners-grid-item {
    width: 33.33%; } }

@media (min-width: 720px) {
  .partners-section .partners-grid-item {
    width: 25%; } }

@media (min-width: 1025px) {
  .partners-section {
    margin-top: 5.72917vw; }
  .partners-section .partners-grid-item {
    margin-bottom: 2.86458vw; } }

@media (min-width: 1921px) {
  .partners-section {
    margin-top: 110px; }
  .partners-section .partners-grid-item {
    margin-bottom: 55px; } }

.news-grid .news-grid-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  overflow: hidden; }

.news-grid .news-image-item {
  width: 100%;
  background: #fff;
  display: inline-block;
  vertical-align: top;
  padding: 20px;
  padding-bottom: 0; }

.news-grid .news-image {
  width: 100%;
  display: inline-block; }

.news-grid .news-text-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  background: #fff; }

.news-grid .news-text-item .small-title {
  color: #282828; }

.news-grid .news-text-inner {
  width: 100%;
  height: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
  padding-bottom: 10px; }

.news-grid .news-text-inner-content {
  width: 100%;
  height: auto;
  overflow: hidden; }

@media (min-width: 1025px) {
  .news-grid .news-text-inner {
    padding: 1.5vw 1.5vw 0; }
  .news-grid .news-image {
    max-width: 100%; }
  .news-grid .news-item-title-wrap {
    margin-top: 10px; }
  .news-grid .news-item-title-wrap h3 {
    font-size: 1.5vw;
    line-height: 1.3; } }

.news-grid .date-text {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #000; }

.news-grid .news-item-content-wrap {
  margin-top: 10px; }

.news-grid .news-item-content-wrap p {
  font-size: 14px;
  line-height: 1.3em;
  margin: 0;
  margin-bottom: 10px;
  color: #282828; }

.news-grid .news-item-content-wrap p:last-child {
  margin-bottom: 0; }

.news-grid .news-arrow-container {
  margin: 10px 0; }

.news-grid .news-inner-link-image {
  width: 100%;
  display: inline-block;
  vertical-align: middle; }

.news-grid .news-inner-link {
  display: inline-block;
  color: #282828;
  font-size: 14px; }

.news-grid .icon-right-arrow-container {
  width: 18px;
  display: inline-block;
  vertical-align: middle; }

.news-grid .icon-right-arrow-image {
  width: 100%;
  display: inline-block; }

@media (min-width: 480px) {
  .news-grid {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap; }
  .news-grid .news-grid-item-wrap {
    width: 100%;
    height: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    flex-wrap: wrap; } }

@media (min-width: 640px) {
  .news-grid .news-grid-item {
    margin-top: 15px; }
  .news-grid .news-image-item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding: 0; }
  .news-grid .news-text-item {
    width: 50%;
    height: 100%;
    display: inline-block;
    vertical-align: top; } }

@media (min-width: 1025px) {
  .news-grid .news-grid-item {
    width: 50%;
    margin-top: 0;
    background: #fff; }
  .news-grid .news-grid-item:hover .icon-right-arrow-container:after {
    width: 42px;
    height: 42px;
    opacity: 0;
    visibility: visible;
    transition: width 1s cubic-bezier(0.165, 0.84, 0.44, 1), height 1s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 1s cubic-bezier(0.165, 0.84, 0.44, 1); }
  .news-grid .news-inner-link {
    position: relative;
    -webkit-transition: color 0.4s;
    transition: color 0.4s; }
  .news-grid .news-inner-link .icon-right-arrow-container {
    display: inline-block; }
  .news-grid .news-inner-link .icon-right-arrow-container:after {
    content: '';
    border: 1px solid #666;
    width: 100%;
    height: 100%;
    display: inline-block;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 1;
    visibility: hidden;
    box-sizing: border-box;
    border-radius: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%); }
  .news-grid .small-title {
    font-size: 22px; } }

@media (min-width: 1851px) {
  .news-grid .small-title {
    font-size: 26px; } }

/* 6. Page-specific styles */
.total-wrap {
  margin: 76px auto 0;
  overflow: hidden;
  max-width: 2560px; }

@media (min-width: 480px) {
  .total-wrap {
    margin-top: 78px; } }

@media (min-width: 1025px) {
  .total-wrap {
    overflow: visible; } }

.template-image {
  width: 100%;
  display: inline-block; }

.bf-align:before, header .icon-container:before, .footer .icon-container:before, .news-grid .news-inner-link-image:before, .item-link-circle:before, .scroll-top-btn:before, .home-section .intro-icon-item:before, .home-section .row-inner:before, .template-section .template-nav-link:before, .template-section .template-image-wrap:before, .template-section .title-image-wrap:before, .template-section .success-message-container:before, .template-section .error-message-container:before, .template-section .facts-grid-image-container:before, .template-section .become-partner-btn-container:before, .template-section .partner-form-col .recaptcha-item:before, .template-section .offer-icon:before, .template-section .info-icon:before, .template-section .platform-icon-item:before, .description-section .data-item-icon:before, .screenshots-section .slider-btn:before, .platform-grid .platform-item:before, .template-inner-section.pdf-extra-section .icon-row-item:before, .template-inner-section.pdf-scanner-section .pdf-grid-content:before, .template-inner-section.pdf-scanner-section .pdf-row-icon:before, .template-inner-section.oxford-translator-section .translator-middle-content:before, .template-inner-section.commander-section .icon-row-item:before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  height: 100%; }

.bg-image {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  backface-visibility: hidden; }

.bg-image-outer {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; }

.abs-item-link {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1; }

.main-wrap-content {
  width: 100%;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px; }

@media (min-width: 720px) {
  .main-wrap-content {
    padding-left: 40px;
    padding-right: 40px; } }

@media (min-width: 1025px) {
  .main-wrap-content {
    padding-left: 50px;
    padding-right: 50px; } }

@media (min-width: 1367px) {
  .main-wrap-content {
    padding-left: 5.20833vw;
    padding-right: 5.20833vw; } }

@media (min-width: 1501px) {
  .main-wrap-content {
    padding-left: 10.41667vw;
    padding-right: 10.41667vw; } }

@media (min-width: 1661px) {
  .main-wrap-content {
    padding-left: 13.02083vw;
    padding-right: 13.02083vw; } }

@media (min-width: 1851px) {
  .main-wrap-content {
    padding-left: 15.10417vw;
    padding-right: 15.10417vw; } }

@media (min-width: 1921px) {
  .main-wrap-content {
    padding-left: 300px;
    padding-right: 300px; } }

.vertical-padding-70 {
  padding-top: 40px;
  padding-bottom: 40px; }

@media (min-width: 1025px) {
  .vertical-padding-70 {
    padding-top: 3.64583vw;
    padding-bottom: 3.64583vw; } }

@media (min-width: 1921px) {
  .vertical-padding-70 {
    padding-top: 70px;
    padding-bottom: 70px; } }

.fancybox-thumb {
  height: 100% !important; }

body .cookies-bar {
  display: flex;
  justify-content: space-around;
  transform: matrix(1, 0, 0, 1, 0, 0);
  padding: 0 32px;
  position: fixed;
  width: 100%;
  bottom: -600px;
  left: 0;
  right: 0;
  z-index: 20;
  color: #c2c2c2; }

body .cookies-bar.show {
  bottom: 15px;
  -webkit-transition: all .5s ease-out;
  transition: all .5s ease-out; }

body .cookies-bar .cookie-bar-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 12px 40px;
  font-size: .85rem;
  text-align: center;
  background-color: rgba(38, 38, 38, 0.9);
  border-radius: 5px; }

body .cookies-bar .cookie-bar-content a {
  color: #fff;
  text-decoration: underline; }

body .cookies-bar .cookie-bar-content a:hover {
  text-decoration: none; }

body .cookies-bar .cookie-bar-content .cookie-button {
  padding: .5rem;
  margin-top: 1rem;
  color: #fff;
  border: 2px solid #fff;
  cursor: pointer;
  border-radius: 5px;
  min-width: 90px;
  white-space: nowrap;
  box-sizing: border-box;
  text-align: center;
  display: inline-block;
  text-overflow: ellipsis; }

body .cookies-bar .cookie-bar-content .cookie-button:hover {
  background: #e3151a;
  border: 2px solid transparent;
  color: #fff; }

body .cookies-bar .cookie-bar-content .cookie-button.red {
  background: #e3151a;
  border: 2px solid #e3151a;
  color: #fff; }

body .cookies-bar .cookie-bar-content .cookie-button.red:hover {
  background: #fff;
  border: 2px solid #e3151a;
  color: #e3151a; }

body .cookies-bar .cookie-bar-content .close-cookie {
  position: absolute;
  top: 5px;
  right: 10px;
  cursor: pointer;
  z-index: 10; }

body .cookies-bar .cookie-bar-content .close-cookie img {
  width: 12px;
  height: 12px; }

@media (min-width: 480px) {
  body .cookies-bar .cookie-bar-content {
    text-align: left;
    padding-left: 16px;
    flex-direction: row; }
  body .cookies-bar .cookie-bar-content .cookie-button {
    margin-top: 0;
    margin-left: 10px; } }

.item-link-circle {
  width: 80px;
  height: 80px;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  border-radius: 80px;
  background: #ed1c24;
  text-align: center;
  backface-visibility: hidden; }

.item-link-circle:after {
  content: '';
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  background: #ed1c24;
  border-radius: 80px; }

.item-link-circle .item-link-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  position: relative;
  z-index: 2; }

@media (min-width: 1025px) {
  .item-link-circle {
    -webkit-transition: transform 0.4s;
    transition: transform 0.4s; }
  .item-link-circle:after {
    -webkit-transition: transform 0.4s;
    transition: transform 0.4s; }
  .item-link-circle:hover:after {
    -webkit-animation: circleZoom .7s;
    /* Safari 4.0 - 8.0 */
    animation: circleZoom .7s; } }

.label-btn {
  display: inline-block;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1em;
  font-weight: 700;
  padding: 15px 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff; }

.label-btn.red {
  background: #ed1c24;
  border-color: #ed1c24;
  color: #fff; }

.label-btn.detail-btn {
  font-size: 16px; }

.link-btn {
  display: inline-block;
  cursor: pointer;
  vertical-align: middle;
  font-size: 13px;
  line-height: 1em;
  font-weight: 700;
  padding: 15px 25px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border: 1px solid #fff;
  border-radius: 5px;
  color: #fff; }

.link-btn.all-news {
  border-color: #686d88; }

.link-btn.details-news {
  background: #fff;
  border-color: #e2e2e2;
  color: #282828; }

.link-btn.red {
  background: #ed1c24;
  border-color: #ed1c24;
  color: #fff; }

.link-btn.red-border {
  background: #ed1c24;
  border-color: #ed1c24;
  color: #fff; }

.link-btn.black {
  border-color: #000;
  color: #000; }

.link-btn.detail-btn {
  font-size: 16px; }

@media (min-width: 1025px) {
  .link-btn {
    -webkit-transition: color .4s, background .4s, border-color .4s;
    -moz-transition: color .4s, background .4s, border-color .4s;
    -ms-transition: color .4s, background .4s, border-color .4s;
    -o-transition: color .4s, background .4s, border-color .4s;
    transition: color .4s, background .4s, border-color .4s; }
  .link-btn:hover {
    background: #ed1c24;
    border-color: #ed1c24; }
  .link-btn:hover.all-news {
    color: #686d88;
    background: #fff;
    border-color: #fff; }
  .link-btn:hover.details-news {
    color: #fff;
    background: #ed1c24;
    border-color: #ed1c24; }
  .link-btn:hover.black {
    color: #fff; }
  .link-btn:hover.red {
    background: #fff;
    border-color: #fff;
    color: #ed1c24; }
  .link-btn:hover.red-border {
    background: #fff;
    color: #ed1c24; } }

@media (min-width: 1367px) {
  .link-btn {
    padding: 20px 30px; } }

.load-more-btn {
  display: inline-block;
  font-size: 16px;
  line-height: 1em;
  font-weight: 700;
  color: #000;
  padding: 15px 35px;
  border-radius: 5px;
  border: 1px solid #000; }

.load-more-btn.filter-btn {
  padding: 12px 50px; }

@media (min-width: 1025px) {
  .load-more-btn {
    -webkit-transition: color .4s, background .4s, border-color .3s;
    -moz-transition: color .4s, background .4s, border-color .3s;
    -ms-transition: color .4s, background .4s, border-color .3s;
    -o-transition: color .4s, background .4s, border-color .3s;
    transition: color .4s, background .4s, border-color .3s; }
  .load-more-btn:hover {
    color: #fff;
    background: #ed1c24;
    border-color: #ed1c24; }
  .load-more-btn.black-btn:hover {
    color: #fff;
    background: #000;
    border-color: #000; } }

.faq-btn .faq-btn-inner {
  width: 29px;
  height: 29px;
  display: inline-block;
  border-radius: 30px;
  border: 1px solid #3b3939;
  position: relative; }

.faq-btn .faq-btn-inner:before {
  content: '';
  display: inline-block;
  width: 11px;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 8px;
  background: #3b3939;
  -webkit-transition: transform .2s, background .4s;
  -moz-transition: transform .2s, background .4s;
  -ms-transition: transform .2s, background .4s;
  -o-transition: transform .2s, background .4s;
  transition: transform .2s, background .4s; }

.faq-btn .faq-btn-inner:after {
  content: '';
  display: inline-block;
  width: 11px;
  height: 1px;
  position: absolute;
  top: 13px;
  left: 8px;
  background: #3b3939;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: transform .2s, background .4s;
  -moz-transition: transform .2s, background .4s;
  -ms-transition: transform .2s, background .4s;
  -o-transition: transform .2s, background .4s;
  transition: transform .2s, background .4s; }

@media (min-width: 1025px) {
  .faq-btn .faq-btn-inner {
    -webkit-transition: background .4s, border-color .4s;
    -moz-transition: background .4s, border-color .4s;
    -ms-transition: background .4s, border-color .4s;
    -o-transition: background .4s, border-color .4s;
    transition: background .4s, border-color .4s; }
  .faq-btn:hover .faq-btn-inner {
    border-color: #ed1c24;
    background: #ed1c24; }
  .faq-btn:hover .faq-btn-inner:before {
    background: #fff; }
  .faq-btn:hover .faq-btn-inner:after {
    background: #fff; } }

.solid-btn {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1em;
  color: #000;
  font-weight: 700;
  background: #fff;
  border-radius: 4px;
  padding: 15px 20px; }

@media (min-width: 1025px) {
  .solid-btn {
    -webkit-transition: background .4s, color .4s;
    -moz-transition: background .4s, color .4s;
    -ms-transition: background .4s, color .4s;
    -o-transition: background .4s, color .4s;
    transition: background .4s, color .4s; }
  .solid-btn:hover {
    color: #fff;
    background: #000; } }

.solid-large-btn {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  line-height: 1em;
  color: #fff;
  font-weight: 700;
  background: #ed1c24;
  border-radius: 4px;
  padding: 15px 50px;
  border: 1px solid #ed1c24;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.solid-large-btn.buy-btn {
  padding: 15px 35px; }

@media (min-width: 1025px) {
  .solid-large-btn {
    -webkit-transition: background .4s, color .4s;
    -moz-transition: background .4s, color .4s;
    -ms-transition: background .4s, color .4s;
    -o-transition: background .4s, color .4s;
    transition: background .4s, color .4s; }
  .solid-large-btn:hover {
    color: #ed1c24;
    background: #fff;
    border: 1px solid transparent; } }

.scroll-top-btn {
  width: 48px;
  height: 48px;
  display: inline-block;
  border-radius: 60px;
  border: 1px solid #000;
  text-align: center;
  font-size: 0; }

.scroll-top-btn .arrow-container {
  width: 18px;
  display: inline-block;
  vertical-align: middle;
  -webkit-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  transform: rotate(-90deg); }

.scroll-top-btn .template-image {
  -webkit-transition: opacity .4s, visibility .4s;
  -moz-transition: opacity .4s, visibility .4s;
  -ms-transition: opacity .4s, visibility .4s;
  -o-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s; }

.scroll-top-btn .template-image-hover {
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: opacity .4s, visibility .4s;
  -moz-transition: opacity .4s, visibility .4s;
  -ms-transition: opacity .4s, visibility .4s;
  -o-transition: opacity .4s, visibility .4s;
  transition: opacity .4s, visibility .4s; }

@media (min-width: 1025px) {
  .scroll-top-btn {
    -webkit-transition: background .4s, bordr-color .4s;
    -moz-transition: background .4s, bordr-color .4s;
    -ms-transition: background .4s, bordr-color .4s;
    -o-transition: background .4s, bordr-color .4s;
    transition: background .4s, bordr-color .4s; }
  .scroll-top-btn:hover {
    background: #ed1c24;
    border-color: #ed1c24; }
  .scroll-top-btn:hover .template-image {
    visibility: hidden;
    opacity: 0; }
  .scroll-top-btn:hover .template-image-hover {
    visibility: visible;
    opacity: 1; } }

@media (min-width: 1367px) {
  .scroll-top-btn {
    width: 60px;
    height: 60px; } }

@-webkit-keyframes circleZoom {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  20% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

@keyframes circleZoom {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); }
  20% {
    -webkit-transform: scale(1.5);
    -ms-transform: scale(1.5);
    transform: scale(1.5); }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1); } }

.svg-container {
  display: none; }

.svg-container .svg-path {
  display: block;
  width: 100%;
  height: 100%; }

.svg-container .filled {
  fill: #ffffff; }

.svg-container .filled path {
  fill: #ffffff; }

.svg-container .svg-elem {
  opacity: .35; }

@media (min-width: 1025px) {
  .svg-container {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1; } }

.mouse-scroll-down {
  z-index: 5;
  pointer-events: none; }

.mouse-scroll-down.pointer {
  cursor: pointer;
  pointer-events: all; }

.home-section .officesuite-logo {
  background: url("../images/home/logo_officesuite.svg") no-repeat top center;
  background-size: contain;
  width: 100%;
  height: 55px;
  text-indent: -9999px;
  left: auto;
  right: auto;
  position: relative; }

.home-section .bg-image.header-image {
  background-image: url("../images/home/home-intro-bg.jpg"); }

.home-section .intro-section-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5; }

.home-section .intro-icon-row {
  margin-bottom: 20px;
  font-size: 0; }

.home-section .intro-icon-wrap {
  width: 20px;
  display: inline-block;
  vertical-align: middle; }

.home-section .intro-icon-item {
  width: 30px;
  height: 30px;
  border-radius: 40px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 10px; }

.home-section .intro-icon-image {
  width: 100%;
  display: inline-block; }

.home-section .single-col-row.scanner-item {
  overflow: hidden;
  font-size: 0; }

.home-section .single-col-row.scanner-item.drive-section .medium-title,
.home-section .single-col-row.scanner-item.drive-section .row-text {
  color: #000; }

.home-section .single-col-row.scanner-item.drive-section .item-label {
  font-size: 20px; }

.home-section .single-col-row.scanner-item.drive-section .scanner-phone-container {
  bottom: 0;
  margin-top: 0;
  height: 100%; }

@media (min-width: 1025px) {
  .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container {
    bottom: auto;
    top: 0;
    right: -40px; } }

@media (min-width: 1501px) {
  .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container {
    right: -55px; } }

.home-section .single-col-row.scanner-item.drive-section .scanner-phone-container-inner {
  margin-top: 0;
  position: relative; }

@media (min-width: 1025px) {
  .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container-inner {
    position: relative;
    top: 50%;
    transform: translateY(-50%); }
  .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container-inner img {
    max-width: 450px; } }

@media (min-width: 1281px) {
  .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container-inner img {
    max-width: 500px; } }

@media (min-width: 1367px) {
  .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container-inner img {
    max-width: 550px; } }

@media (min-width: 1661px) {
  .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container-inner img {
    max-width: 700px; } }

.home-section .single-col-row.scanner-item .col-row-wrap {
  padding-top: 60px;
  padding-bottom: 80vw; }

.home-section .single-col-row.scanner-item .bg-image.pdf-bg-image {
  background-color: #343941;
  background-image: url("../images/home/laptop_mobile.png");
  background-size: 100%;
  background-position: bottom; }

.home-section .single-col-row.scanner-item .bg-image.drive-bg-image {
  background-image: url("../images/home/MobiDrive_Screens_Responsive.png");
  background-size: 70% auto;
  background-position: center bottom 60px; }

.home-section .intro-row {
  overflow: hidden; }

.home-section .intro-row .officesuite-wrap .row-text {
  font-size: 18px; }

.home-section .intro-row .row-text {
  font-size: 26px; }

.home-section .intro-row .col-row-wrap {
  width: auto;
  z-index: 3; }

.home-section .intro-row .row-inner-wrap {
  z-index: 4; }

.home-section .intro-row .svg-container {
  z-index: 2; }

.home-section .col-row-wrap {
  padding: 80px 60px;
  text-align: center;
  z-index: 3; }

.home-section .row-inner {
  width: 100%;
  height: 100%;
  font-size: 0;
  position: static; }

.home-section .row-inner-wrap {
  width: 100%;
  display: inline-block;
  vertical-align: middle; }

.home-section .item-label {
  text-align: center; }

.home-section .item-label-image-wrap {
  width: 70px;
  display: inline-block;
  text-align: center; }

.home-section .item-label-image {
  max-width: 100%;
  display: inline-block; }

.home-section .row-content {
  margin-top: 30px; }

.home-section .row-text {
  font-size: 20px;
  color: #fff;
  margin: 0;
  margin-bottom: 0; }

.home-section .row-text:last-child {
  margin-bottom: 0; }

.home-section .row-text-wrap {
  margin-top: 10px; }

.home-section .item-link-container {
  z-index: 2;
  margin-top: 30px; }

.home-section .two-col-row {
  font-size: 0; }

.home-section .two-col-item {
  width: 100%;
  overflow: hidden; }

.home-section .two-col-item.commander {
  background: #318fec; }

.home-section .two-col-item.commander .block-image-container {
  text-align: right; }

.home-section .two-col-item.commander .block-image-wrap {
  margin-right: -20px; }

.home-section .two-col-item.dictionary {
  background: #2c4d79; }

.home-section .two-col-item.dictionary .block-image-container {
  text-align: left; }

.home-section .two-col-item.dictionary .block-image-wrap {
  margin-left: -40px; }

.home-section .two-col-item.dictionary .item-link-container {
  left: auto;
  right: 20px; }

.home-section .two-col-item.aqua {
  background: #067d7b; }

.home-section .two-col-item.aqua .block-image-wrap {
  margin-left: -40px;
  z-index: 1; }

.home-section .two-col-item.aqua .block-image-container {
  margin-top: 0;
  text-align: right; }

.home-section .two-col-item.ub-reader .row-text br {
  display: none; }

.home-section .two-col-item.ub-reader .col-row-wrap {
  padding-top: 80px;
  padding-bottom: 80px; }

.home-section .two-col-item.ub-reader .item-link-container {
  position: relative;
  margin-top: 30px;
  left: 0;
  bottom: 0; }

.home-section .two-col-item.ub-reader .row-content {
  padding-right: 0; }

.home-section .two-col-item .row-inner-wrap {
  vertical-align: top; }

.home-section .two-col-item .item-link-container {
  position: absolute;
  bottom: 35px;
  left: 20px;
  margin-top: 0; }

.home-section .two-col-item .col-row-wrap {
  padding-top: 60px;
  padding-bottom: 0; }

.home-section .block-image {
  max-width: 100%;
  display: inline-block; }

.home-section .block-image-container {
  margin-top: 25px; }

.home-section .block-image-wrap {
  width: 250px;
  display: inline-block; }

.home-section .oxford-letters {
  width: 100%;
  display: inline-block; }

.home-section .scanner-phone-container {
  display: none;
  z-index: 1;
  text-align: right; }

.home-section .scanner-phone-image-wrap {
  width: 430px;
  max-width: 795px;
  display: inline-block;
  font-size: 0;
  margin-right: -20px; }

.home-section .scanner-phone-image {
  width: 100%;
  display: inline-block; }

.home-section .scanner-list-container {
  position: absolute;
  bottom: -77px;
  right: 20%; }

.home-section .scanner-list-image-wrap {
  width: 430px;
  max-width: 483px;
  display: inline-block;
  font-size: 0; }

.home-section .scanner-list-image {
  width: 100%;
  display: inline-block; }

.home-section .aqua-mail-image {
  max-width: 100%;
  display: inline-block; }

.home-section .aqua-mail-image-wrap {
  width: 190px;
  position: absolute;
  bottom: 0;
  left: 62%; }

.home-section .ub-item-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: 0.5; }

.home-section .home-news-section {
  padding: 40px 0; }

.home-section .home-news-section .medium-title {
  padding-bottom: 15px; }

@media (min-width: 720px) {
  .home-section .home-news-section .medium-title {
    padding-bottom: 0; } }

@media (min-width: 720px) {
  .home-section .all-news-btn-container {
    position: absolute;
    top: 0;
    right: 0; } }

.home-section .home-news-grid {
  font-size: 0;
  margin-top: 40px;
  margin-left: -20px;
  margin-right: -20px; }

.home-section .oxford-letters-container {
  display: none; }

.home-section .drive-transparent-bg {
  background: url(../images/home/MobiDrive_Logo.svg) bottom -70px right 130% no-repeat #fff;
  background-size: 130% auto; }

@media (min-width: 480px) {
  .home-section .officesuite-logo {
    width: 300px;
    height: 55px;
    left: -75px;
    position: relative; }
  .home-section .col-row-wrap.officesuite-wrap {
    padding: 80px 105px; }
  .home-section .officesuite-wrap .row-text-wrap {
    margin-top: 0; }
  .home-section .intro-row {
    padding-top: 30px; }
  .home-section .intro-icon-row {
    position: absolute;
    top: -40px;
    left: 5px;
    font-size: 0;
    margin-bottom: 0; }
  .home-section .block-image-wrap {
    width: 280px; }
  .home-section .item-label {
    display: inline-block;
    vertical-align: top; }
  .home-section .item-label-image-wrap {
    width: 50px;
    margin-top: 5px; }
  .home-section .col-row-wrap {
    text-align: left; }
  .home-section .row-content {
    width: calc(100% - 50px);
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    margin-top: 0; }
  .home-section .block-image-container {
    display: inline-block;
    margin-left: 70px;
    margin-top: 30px;
    text-align: left; }
  .home-section .item-link-container {
    top: 0;
    bottom: auto;
    left: auto;
    right: 0; }
  .home-section .pdf-transparent-bg {
    background: url(../images/home/PDF-Extra_Logo.svg) bottom -80px right 25% no-repeat #343941; }
  .home-section .drive-transparent-bg {
    background-position: bottom -120px right 2%;
    background-size: auto; }
  .home-section .single-col-row.scanner-item .col-row-wrap {
    padding-bottom: 0; }
  .home-section .single-col-row.scanner-item .bg-image {
    display: none; }
  .home-section .single-col-row.scanner-item .scanner-phone-container {
    display: block; }
  .home-section .two-col-item.commander .item-link-container {
    left: auto;
    right: 13%;
    top: auto;
    bottom: 100px; }
  .home-section .two-col-item.commander .block-image-wrap {
    margin-right: 0; }
  .home-section .two-col-item.dictionary .item-link-container {
    left: auto;
    right: 13%;
    top: auto;
    bottom: 100px; }
  .home-section .two-col-item.dictionary .block-image-wrap {
    margin-left: 0; }
  .home-section .two-col-item.aqua .item-link-container {
    left: auto;
    right: 13%;
    top: auto;
    bottom: 100px; }
  .home-section .two-col-item.ub-reader .item-link-container {
    margin-left: 70px; }
  .home-section .two-col-item .row-content {
    padding-right: 90px; }
  .home-section .scanner-phone-image-wrap {
    margin-right: -60px;
    width: 500px; }
  .home-section .scanner-phone-container {
    margin-top: -30px; }
  .home-section .scanner-list-container {
    right: 28%; }
  .home-section .scanner-list-image-wrap {
    width: 500px; }
  .home-section .home-news-grid {
    margin-left: 0;
    margin-right: 0;
    margin-top: 30px; }
  .home-section .home-news-section {
    padding: 50px 0; } }

@media (min-width: 720px) {
  .home-section .col-row-wrap {
    padding: 80px 40px; }
  .home-section .col-row-wrap.officesuite-wrap {
    padding: 80px 85px; }
  .home-section .block-image-wrap {
    width: 350px; }
  .home-section .aqua-mail-image-wrap {
    width: 235px; }
  .home-section .two-col-item.aqua .block-image-wrap {
    margin-left: -50px; }
  .home-section .two-col-item.ub-reader .row-text br {
    display: block; } }

@media (min-width: 1025px) {
  .home-section .officesuite-logo {
    width: 435px;
    height: 70px;
    left: -120px; }
  .home-section .intro-row .officesuite-wrap .row-text {
    font-size: 21px; }
  .home-section .intro-section-overlay {
    display: none; }
  .home-section .intro-icon-row {
    top: -40px; }
  .home-section .intro-icon-item {
    width: 30px;
    height: 30px; }
  .home-section .single-col-row {
    padding-top: 39.0625vw; }
  .home-section .single-col-row.scanner-item .row-content {
    width: 50%;
    max-width: 675px; }
  .home-section .single-col-row.scanner-item .col-row-wrap {
    padding-top: 3.38542vw;
    padding-bottom: 3.90625vw; }
  .home-section .col-row-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 3.38542vw;
    padding-bottom: 3.90625vw;
    padding-left: 4.16667vw;
    padding-right: 4.16667vw; }
  .home-section .col-row-wrap.officesuite-wrap {
    padding-left: 8.85417vw;
    padding-right: 8.85417vw; }
  .home-section .item-label {
    font-size: 4.6875vw; }
  .home-section .row-inner {
    position: relative; }
  .home-section .row-content {
    width: calc(100% - 4.69vw);
    padding-left: 2.08333vw;
    padding-right: 0; }
  .home-section .item-link-container {
    margin-top: 2.60417vw; }
  .home-section .two-col-item {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    padding-top: 39.0625vw; }
  .home-section .two-col-item.commander .block-image-wrap {
    width: 19.6875vw; }
  .home-section .two-col-item.commander .item-link-container {
    bottom: 0;
    top: auto;
    right: 0; }
  .home-section .two-col-item.dictionary .block-image-wrap {
    width: 20.57292vw; }
  .home-section .two-col-item.dictionary .item-link-container {
    bottom: 0;
    top: auto;
    right: 0; }
  .home-section .two-col-item.aqua {
    overflow: hidden; }
  .home-section .two-col-item.aqua .block-image-wrap {
    width: 24.42708vw;
    margin-left: -75px; }
  .home-section .two-col-item.aqua .item-link-container {
    bottom: 0;
    top: auto;
    left: auto;
    right: 0; }
  .home-section .two-col-item.ub-reader .item-link-container {
    position: absolute;
    bottom: 0;
    top: auto;
    left: auto;
    right: 0;
    margin: 0; }
  .home-section .two-col-item.ub-reader .col-row-wrap {
    padding-top: 3.38542vw;
    padding-bottom: 3.90625vw;
    padding-left: 4.16667vw;
    padding-right: 4.16667vw; }
  .home-section .two-col-item.ub-reader .row-text br {
    display: none; }
  .home-section .two-col-item .col-row-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 3.38542vw;
    padding-bottom: 3.90625vw;
    padding-left: 4.16667vw;
    padding-right: 4.16667vw; }
  .home-section .two-col-item .item-link-container {
    top: auto;
    bottom: 0; }
  .home-section .two-col-item .row-content {
    padding-right: 0; }
  .home-section .oxford-letters-image-wrap {
    width: 15.83333vw; }
  .home-section .scanner-list-image-wrap {
    width: 25.15625vw; }
  .home-section .block-image-container {
    position: absolute;
    bottom: 0;
    left: calc(4.17vw + 81px);
    margin-left: 2.08333vw;
    margin-top: 0; }
  .home-section .scanner-phone-image-wrap {
    width: 54.6875vw;
    max-width: 1050px;
    margin-right: 0; }
  .home-section .item-label-image-wrap {
    width: 4.21875vw;
    max-width: 81px;
    margin-top: 0; }
  .home-section .scanner-phone-container {
    position: absolute;
    bottom: 0px;
    right: 0px; }
  .home-section .scanner-list-container {
    bottom: -77px;
    right: 27.29167vw; }
  .home-section .aqua-mail-image-wrap {
    width: 16.09375vw;
    left: 13.28125vw; }
  .home-section .home-news-section {
    padding: 70px 0; }
  .home-section .home-news-grid {
    margin-top: 2.60417vw; } }

@media (min-width: 1367px) {
  .home-section .officesuite-logo {
    width: 500px;
    height: 85px;
    left: -135px; }
  .home-section .home-news-section {
    padding: 90px 0; }
  .home-section .intro-icon-row {
    top: -60px; }
  .home-section .intro-icon-item {
    width: 36px;
    height: 36px; }
  .home-section .intro-icon-wrap {
    width: 25px; }
  .home-section .oxford-letters-container {
    display: block;
    position: absolute;
    top: 5.20833vw;
    left: 380px; } }

@media (min-width: 1661px) {
  .home-section .officesuite-logo {
    width: 540px;
    height: 100px;
    left: -130px; }
  .home-section .col-row-wrap.officesuite-wrap {
    padding-left: 7.55208vw;
    padding-right: 7.55208vw; }
  .home-section .two-col-item.aqua .block-image-wrap {
    margin-left: -65px; }
  .home-section .two-col-item.ub-reader .medium-title {
    color: #000; }
  .home-section .two-col-item.ub-reader .row-text {
    color: #000; }
  .home-section .two-col-item.ub-reader .row-text br {
    display: block; }
  .home-section .ub-item-overlay {
    display: none; } }

@media (min-width: 1921px) {
  .home-section .row-content {
    max-width: 100%; }
  .home-section .single-col-row {
    padding-top: 750px; }
  .home-section .single-col-row.scanner-item .col-row-wrap {
    padding-top: 65px;
    padding-bottom: 75px; }
  .home-section .two-col-item {
    padding-top: 750px; }
  .home-section .two-col-item.commander .block-image-wrap {
    width: 378px; }
  .home-section .two-col-item.dictionary .block-image-wrap {
    width: 395px; }
  .home-section .two-col-item.aqua .block-image-wrap {
    width: 469px; }
  .home-section .two-col-item.ub-reader .col-row-wrap {
    padding-top: 65px;
    padding-bottom: 75px;
    padding-left: 80px;
    padding-right: 80px; }
  .home-section .two-col-item .col-row-wrap {
    padding-top: 65px;
    padding-bottom: 75px;
    padding-left: 80px;
    padding-right: 80px; }
  .home-section .block-image-container {
    margin-left: 40px; }
  .home-section .aqua-mail-image-wrap {
    width: 309px;
    left: 255px; }
  .home-section .item-label {
    font-size: 90px; }
  .home-section .home-news-grid {
    margin-top: 50px; } }

.news-section {
  background: #f3f3f3; }

.news-section .medium-title {
  color: #282828; }

.news-section .news-sort-container {
  font-size: 36px;
  line-height: 1.2em;
  margin-top: 15px; }

.news-section .filter-label {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.2em;
  font-weight: 800;
  color: #282828;
  margin-right: 20px; }

.news-section .filter-select::-ms-expand {
  display: none; }

.news-section .filter-select {
  max-width: 250px;
  min-width: 190px;
  width: 13.02083vw;
  height: 45px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  padding: 0 15px;
  padding-right: 45px;
  font-size: 12px;
  line-height: 1.2em;
  font-weight: 800;
  color: #282828;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  position: relative;
  background: #fff url(../images/elements/select.svg) no-repeat center right; }

.news-section .news-list-container {
  margin-top: 20px;
  font-size: 0;
  margin-left: -20px;
  margin-right: -20px; }

.news-section .news-grid-item {
  margin-bottom: 1px; }

.news-section .load-more-wrap {
  margin-top: 30px; }

@media (min-width: 640px) {
  .news-section .news-list-container {
    margin-left: 0;
    margin-right: 0; } }

@media (min-width: 1025px) {
  .news-section .news-top-container {
    padding-right: 350px; }
  .news-section .news-sort-container {
    font-size: 3.125vw;
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 0; }
  .news-section .news-list-container {
    margin-top: 2.08333vw; }
  .news-section .news-list-container {
    margin-top: 40px; }
  .news-section .load-more-wrap {
    margin-top: 3.64583vw;
    text-align: center; } }

.template-section {
  /* support help */
  /* support download */
  /* faq-container */
  /* support contact */ }

.template-section .template-top-section {
  padding-top: 180px;
  overflow: hidden; }

.template-section .template-top-section .template-title-wrap {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.template-section .template-top-section .medium-title {
  color: #fff; }

.template-section .template-nav {
  background: #f3f3f3;
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  padding: 20px; }

.template-section .template-nav-link-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #000; }

.template-section .template-nav-item {
  width: 100%;
  display: inline-block;
  vertical-align: middle; }

.template-section .template-nav-item:last-child .template-nav-link {
  border-right: none;
  margin-bottom: 0; }

.template-section .template-nav-item.active .template-nav-link-text {
  color: #ed1c24; }

.template-section .template-nav-item.active .template-nav-link:after {
  width: 100%;
  left: 0; }

.template-section .template-nav-link {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  padding: 10px 0;
  margin-bottom: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.template-section .template-nav-link:after {
  content: '';
  width: 0;
  height: 3px;
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 50%;
  background: #ed1c24; }

.template-section .medium-regular-title {
  color: #000;
  font-weight: 300; }

.template-section .template-content-inner {
  background: #f3f3f3; }

.template-section .main-template-grid {
  font-size: 0; }

.template-section .template-image-wrap {
  width: 136px;
  height: 136px;
  border-radius: 100px;
  border: 1px solid #e2e2e2;
  text-align: center;
  background: #fff; }

.template-section .icon-support-container {
  width: 80px;
  display: inline-block;
  vertical-align: middle; }

.template-section .template-image-item {
  display: inline-block;
  vertical-align: middle; }

.template-section .template-text-item {
  width: 100%;
  margin-top: 30px; }

.template-section .template-text-item p {
  font-size: 16px;
  line-height: 1.5em;
  color: #343941;
  margin-bottom: 15px; }

.template-section .template-text-item p:last-child {
  margin-bottom: 0; }

.template-section .template-text-item a {
  font-size: 16px;
  line-height: 1.5em;
  color: #ed1c24;
  text-decoration: underline; }

.template-section .template-help-grid {
  font-size: 0; }

.template-section .template-help-grid .small-title {
  width: calc(100% - 80px);
  display: inline-block;
  vertical-align: middle;
  padding-left: 20px; }

.template-section .three-col-item {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px; }

.template-section .template-image {
  width: 100%;
  display: inline-block;
  vertical-align: middle; }

.template-section .icon-refund-container {
  width: 53px;
  display: inline-block;
  vertical-align: middle;
  padding-top: 6px; }

.template-section .icon-registration-container {
  width: 48px;
  display: inline-block;
  vertical-align: middle; }

.template-section .icon-re-download-container {
  width: 58px;
  display: inline-block;
  vertical-align: middle;
  padding-right: 7px; }

.template-section .title-image-wrap {
  width: 80px;
  height: 80px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 80px;
  border: 1px solid #e2e2e2;
  text-align: center;
  background: #fff; }

.template-section .three-col-content {
  margin-top: 15px; }

.template-section .three-col-content p {
  font-size: 16px;
  line-height: 1.5em;
  color: #343941;
  margin-bottom: 20px; }

.template-section .three-col-content p:last-child {
  margin-bottom: 0; }

.template-section .template-sub-text {
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  color: #343941;
  margin-top: 20px; }

.template-section .download-fld {
  width: 100%;
  max-width: 515px;
  background: #fff;
  font-size: 16px;
  padding: 15px 12px;
  border-radius: 5px;
  color: #000;
  border: 1px solid #e2e2e2; }

.template-section .download-row {
  margin-bottom: 25px; }

.template-section .faq-container {
  padding-left: 20px;
  padding-right: 20px; }

.template-section .faq-nav-img {
  width: 32px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 20px;
  opacity: .3; }

.template-section .faq-nav {
  margin: 0;
  padding: 0;
  list-style-type: none; }

.template-section .faq-nav-btn {
  width: 100%;
  display: inline-block;
  padding: 15px 20px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  text-align: left;
  font-size: 0; }

.template-section .faq-nav-btn:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 1px;
  background: #e2e2e2;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transition: height .2s, background .4s;
  -moz-transition: height .2s, background .4s;
  -ms-transition: height .2s, background .4s;
  -o-transition: height .2s, background .4s;
  transition: height .2s, background .4s; }

.template-section .faq-btn-text {
  width: calc(100% - 52px);
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  color: #000;
  -webkit-transition: color .4s;
  -moz-transition: color .4s;
  -ms-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s; }

.template-section .faq-nav-img {
  -webkit-transition: opacity .4s;
  -moz-transition: opacity .4s;
  -ms-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s; }

.template-section .faq-nav-item.active {
  pointer-events: none; }

.template-section .faq-nav-item.active .faq-nav-img {
  opacity: 1; }

.template-section .faq-nav-item.active .faq-nav-btn:after {
  content: '';
  display: inline-block;
  width: 100%;
  height: 3px;
  background: #ed1c24;
  position: absolute;
  bottom: 0;
  left: 0; }

.template-section .faq-nav-item.active .faq-btn-text {
  color: #ed1c24; }

.template-section .faq-row {
  padding-top: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e2e2e2; }

.template-section .faq-row.active .faq-row-title {
  color: #ed1c24; }

.template-section .faq-row.active .faq-btn .faq-btn-inner:before {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.template-section .faq-row.active .faq-btn .faq-btn-inner:after {
  -webkit-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  transform: rotate(360deg); }

.template-section .faq-row:last-child {
  border-bottom: none; }

.template-section .faq-title-wrap {
  font-size: 0;
  padding-right: 50px; }

.template-section .faq-row-title {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 20px;
  color: #000;
  cursor: pointer;
  -webkit-transition: color .4s;
  -moz-transition: color .4s;
  -ms-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s; }

.template-section .faq-questions-container {
  margin-top: 30px; }

.template-section .faq-row-content {
  display: none;
  padding-top: 20px;
  padding-bottom: 10px; }

.template-section .faq-row-content p, .template-section .faq-row-content ul {
  font-size: 16px;
  color: #343941; }

.template-section .faq-row-content strong {
  font-weight: 700; }

.template-section .faq-row-content a {
  font-size: 16px;
  text-decoration: underline;
  color: #ed1c24; }

.template-section .faq-row-content ul {
  list-style-type: none;
  padding: 0; }

.template-section .faq-row-content ul li {
  padding-left: 15px;
  position: relative; }

.template-section .faq-row-content ul li:after {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 10px;
  background: #ed1c24;
  display: inline-block;
  position: absolute;
  top: 7px;
  left: 0; }

.template-section .faq-btn-container {
  display: inline-block;
  vertical-align: middle;
  position: absolute;
  top: 2px;
  right: 0; }

.template-section .tab-content:not(.active) {
  display: none; }

.template-section .contact-form-container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px; }

.template-section .template-contact-form {
  font-size: 0;
  position: relative;
  margin-left: -20px;
  margin-right: -20px; }

.template-section .template-form-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  margin-bottom: 20px;
  padding-left: 20px;
  padding-right: 20px; }

.template-section .template-form-item.active .template-form-fld {
  border-color: #000; }

.template-section .template-form-item.active .label-template-form-fld {
  font-size: 10px;
  top: 5px; }

.template-section .template-form-item.error-fld .template-form-fld {
  border-color: #ed1c24;
  background: #fde9ea; }

.template-section .template-form-item.error-fld .recaptcha-item {
  border-color: #ed1c24; }

.template-section .template-form-fld {
  width: 100%;
  font-size: 14px;
  color: #000;
  padding: 20px 15px;
  padding-bottom: 10px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  background: #fff;
  -webkit-transition: border-color .4s, background .4s;
  -moz-transition: border-color .4s, background .4s;
  -ms-transition: border-color .4s, background .4s;
  -o-transition: border-color .4s, background .4s;
  transition: border-color .4s, background .4s; }

.template-section .template-form-fld.text-message {
  width: 100%;
  height: 120px;
  resize: none; }

.template-section .label-template-form-fld {
  font-size: 16px;
  color: #9d9d9d;
  position: absolute;
  top: 14px;
  left: 0;
  padding: 0 15px;
  -webkit-transition: font-size .3s, transform .3s, top .3s;
  -moz-transition: font-size .3s, transform .3s, top .3s;
  -ms-transition: font-size .3s, transform .3s, top .3s;
  -o-transition: font-size .3s, transform .3s, top .3s;
  transition: font-size .3s, transform .3s, top .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.template-section .recaptcha-item {
  display: inline-block;
  vertical-align: top;
  border: 1px solid transparent;
  border-radius: 4px;
  -webkit-transition: border-color .4s;
  -moz-transition: border-color .4s;
  -ms-transition: border-color .4s;
  -o-transition: border-color .4s;
  transition: border-color .4s;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9);
  margin-left: -17px; }

.template-section .recaptcha-item.error-fld {
  border-color: #ed1c24; }

.template-section .template-form-btn-container {
  margin-top: 20px;
  -webkit-transition: opacity .4s;
  -moz-transition: opacity .4s;
  -ms-transition: opacity .4s;
  -o-transition: opacity .4s;
  transition: opacity .4s; }

.template-section .success-message-container {
  display: none;
  position: absolute;
  text-align: left;
  overflow: hidden;
  padding-left: 10px;
  bottom: -25px;
  width: calc(100% - 20px);
  height: 35px;
  background-color: #d4edda70;
  margin: 40px 10px 25px; }

.template-section .success-message-container.contact-support {
  width: calc(100% - 45px);
  margin: -50px 0px 0px 23px; }

.template-section .success-message-container .success-message {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent url(../images/store/green-check/green-bg.png) no-repeat left center;
  background-size: contain;
  vertical-align: super; }

.template-section .success-message-container .success-message:after {
  content: '';
  position: absolute;
  background: transparent url(../images/store/green-check/check-tick.png) no-repeat left center;
  background-size: contain;
  height: 10px;
  width: 10px;
  left: 5px;
  top: 5px;
  -webkit-animation: animate 5s ease-in;
  animation: animate 0.5s ease-in; }

.template-section .success-message-container h5 {
  vertical-align: top;
  font-size: 15px;
  display: inline-block;
  color: #155724;
  padding: 0 10px;
  font-weight: 500; }

.template-section .success-message-container.active {
  display: block; }

.template-section .success-message-container-wrap {
  display: inline-block;
  vertical-align: bottom;
  margin-bottom: 200px;
  color: #000; }

@media (min-width: 350px) {
  .template-section .recaptcha-item {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    margin-left: 0; } }

@media (min-width: 480px) {
  .template-section .success-message-container-wrap {
    vertical-align: middle;
    margin-bottom: 0; } }

.template-section .error-message-container {
  display: none;
  position: absolute;
  text-align: left;
  overflow: hidden;
  padding-left: 10px;
  bottom: -25px;
  width: calc(100% - 20px);
  height: 35px;
  border-color: #ed1c24;
  border: 1px solid #ed1c24;
  border-radius: 5px;
  background-color: #fde9ea;
  color: #ed1c24;
  margin: 40px 10px 25px;
  font-size: 13px; }

.template-section .error-message-container.contact-support {
  width: calc(100% - 45px);
  margin: -50px 0px 0px 23px; }

.template-section .error-message-container.active {
  display: block; }

@media (min-width: 720px) {
  .template-section {
    /* support help */
    /* faq-container */
    /* support contact */ }
  .template-section .template-top-section .template-title-wrap {
    padding-left: 40px;
    padding-right: 40px; }
  .template-section .template-nav {
    padding: 0; }
  .template-section .template-nav-link {
    width: 100%;
    height: 100%;
    text-align: center;
    padding: 20px 10px;
    border-right: 1px solid #cfcfcf;
    margin-bottom: 0; }
  .template-section .template-nav-link-text {
    font-size: 14px; }
  .template-section .template-nav-item {
    width: 20%; }
  .template-section .content-title-wrap {
    text-align: center; }
  .template-section .template-text-item {
    width: calc(100% - 190px);
    display: inline-block;
    vertical-align: middle;
    padding-left: 50px;
    margin-top: 0; }
  .template-section .template-image-wrap {
    width: 190px;
    height: 190px; }
  .template-section .icon-support-container {
    width: 106px; }
  .template-section .three-col-item {
    padding-left: 40px;
    padding-right: 40px; }
  .template-section .faq-container {
    padding-left: 40px;
    padding-right: 40px; }
  .template-section .contact-form-container {
    width: 100%;
    max-width: 1140px;
    padding-left: 40px;
    padding-right: 40px; }
  .template-section .template-form-item.half-width {
    width: 50%; } }

@media (min-width: 1025px) {
  .template-section {
    /* support help */
    /* support download */
    /* faq-container */
    /* support contact */ }
  .template-section .success-message-container {
    bottom: auto;
    top: 13px; }
  .template-section .template-top-section {
    padding-top: 17.70833vw; }
  .template-section .template-top-section .template-title-wrap {
    padding-left: 4.16667vw;
    padding-right: 4.16667vw; }
  .template-section .template-nav-link-text {
    font-size: 16px;
    -webkit-transition: color .4s;
    -moz-transition: color .4s;
    -ms-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s; }
  .template-section .template-nav-link:after {
    -webkit-transition: width .4s, left .4s;
    -moz-transition: width .4s, left .4s;
    -ms-transition: width .4s, left .4s;
    -o-transition: width .4s, left .4s;
    transition: width .4s, left .4s; }
  .template-section .template-nav-link:hover:after {
    width: 100%;
    left: 0; }
  .template-section .template-nav-link:hover .template-nav-link-text {
    color: #ed1c24; }
  .template-section .template-text-item {
    padding-left: 8.33333vw;
    padding-right: 8.33333vw; }
  .template-section .template-text-item p {
    margin-bottom: 1.30208vw; }
  .template-section .template-text-item a {
    -webkit-transition: opacity .4s;
    -moz-transition: opacity .4s;
    -ms-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s; }
  .template-section .template-text-item a:hover {
    opacity: .7; }
  .template-section .template-help-grid {
    padding-left: 4.16667vw;
    padding-right: 4.16667vw;
    overflow: hidden; }
  .template-section .template-help-grid .small-title {
    padding-left: 1.5625vw; }
  .template-section .template-help-grid-inner {
    margin-left: -2.08333vw;
    margin-right: -2.08333vw; }
  .template-section .three-col-item {
    padding-left: 2.08333vw;
    padding-right: 2.08333vw; }
  .template-section .three-col-content {
    margin-bottom: 1.5625vw; }
  .template-section .template-download-grid {
    padding-left: 4.16667vw;
    padding-right: 4.16667vw;
    overflow: hidden; }
  .template-section .template-download-grid .three-col-item {
    min-width: 540px; }
  .template-section .faq-container {
    padding-left: 6.25vw;
    padding-right: 6.25vw;
    display: flex;
    flex-wrap: wrap; }
  .template-section .faq-nav-container {
    width: 250px;
    padding-top: 2.34375vw; }
  .template-section .faq-questions-container {
    width: calc(100% - 250px);
    padding-left: 2.60417vw;
    margin-top: 0; }
  .template-section .faq-nav-btn:hover .faq-nav-img {
    opacity: 1; }
  .template-section .faq-nav-btn:hover .faq-btn-text {
    color: #ed1c24; }
  .template-section .faq-nav-btn:hover:after {
    height: 3px;
    background: #ed1c24; }
  .template-section .faq-row-content {
    padding-top: 2.08333vw; }
  .template-section .faq-row-content a {
    -webkit-transition: opacity .4s;
    -moz-transition: opacity .4s;
    -ms-transition: opacity .4s;
    -o-transition: opacity .4s;
    transition: opacity .4s; }
  .template-section .faq-row-content a:hover {
    opacity: .7; }
  .template-section .contact-form-container {
    width: 100%;
    max-width: 1140px;
    padding-left: 50px;
    padding-right: 50px; }
  .template-section .template-contact-form {
    margin-left: -1.04167vw;
    margin-right: -1.04167vw; }
  .template-section .template-form-item {
    padding-left: 1.04167vw;
    padding-right: 1.04167vw; }
  .template-section .template-form-btn-container {
    position: absolute;
    top: 5px;
    right: 0;
    margin-top: 0; } }

@media (min-width: 1151px) {
  .template-section {
    /* support help */ }
  .template-section .three-col-item {
    width: 33.333%;
    display: inline-block;
    vertical-align: top;
    padding-left: 40px;
    padding-right: 40px;
    margin-bottom: 0; } }

@media (min-width: 1367px) {
  .template-section {
    /* faq section */ }
  .template-section .template-nav-link-text {
    font-size: 18px; }
  .template-section .faq-nav-container {
    width: 17.7vw; }
  .template-section .faq-questions-container {
    width: calc(100% - 17.7vw); }
  .template-section .faq-row-title {
    font-size: 24px; }
  .template-section .faq-btn-text {
    font-size: 18px; } }

@media (min-width: 1921px) {
  .template-section .template-top-section {
    padding-top: 340px; }
  .template-section .template-top-section .template-title-wrap {
    padding-left: 80px;
    padding-right: 80px; }
  .template-section .template-text-item {
    padding-left: 160px;
    padding-right: 160px; }
  .template-section .faq-nav-container {
    padding-top: 45px; }
  .template-section .faq-row-content {
    padding-top: 40px; } }

.shopping-cart .errors {
  visibility: hidden;
  color: #852d12;
  background-color: #ffefeab3;
  padding: 10px;
  margin-bottom: 25px; }

.shopping-cart .errors.visible {
  visibility: visible; }

.shopping-cart .errors .error-image {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/error-icon.png") no-repeat, top, center;
  background-size: contain;
  vertical-align: super; }

.shopping-cart .errors .error-container {
  color: #e30614;
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  width: 90%; }

.shopping-cart .error-container-discount {
  display: none;
  bottom: -25px;
  left: 5px;
  color: #e30614; }

.shopping-cart .error-container-discount.visible {
  display: inline-block; }

.shopping-cart .valign {
  height: 100%; }

.shopping-cart .valign .middle {
  display: table-cell;
  vertical-align: middle; }

.shopping-cart .wrapper {
  margin: 100px 0;
  width: 100%;
  position: relative;
  text-align: center; }

.shopping-cart .wrapper > p {
  font-size: 20px;
  font-weight: 400;
  padding: 10px;
  display: inline-block; }

.shopping-cart .wrapper > p.redirect {
  background: #ebe5e5;
  border-radius: 5px; }

.shopping-cart .template-top-section h1 {
  float: left; }

.shopping-cart .template-top-section .secured-transaction {
  float: none;
  clear: both;
  margin: 0 auto;
  text-align: center;
  padding-top: 15px; }

.shopping-cart .template-top-section .secured-transaction h3 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: left; }

.shopping-cart .template-top-section .secured-transaction .secured-group .element {
  height: 45px;
  float: left; }

.shopping-cart .template-top-section .secured-transaction .secured-group .element:first-child {
  margin-right: 0; }

.shopping-cart .template-top-section .secured-transaction .secured-group .element img {
  height: 100%;
  width: auto;
  display: block; }

.shopping-cart .shopping-cart-form {
  width: 100%;
  float: left;
  min-width: 280px; }

.shopping-cart .shopping-cart-form.remove-padding {
  padding-top: 0; }

.shopping-cart .shopping-cart-form .value-item {
  line-height: 25px;
  font-weight: 600;
  text-align: right; }

.shopping-cart .shopping-cart-form .value-item.subtotal {
  margin-top: 20px;
  border-top: 1px solid #e0e0e0;
  padding: 10px 0 0 0; }

.shopping-cart .shopping-cart-form .value-item.discount {
  padding-right: 0;
  color: #ff8410; }

.shopping-cart .shopping-cart-form .row {
  z-index: 1;
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: .9375rem;
  margin-bottom: 1.5625rem; }

.shopping-cart .shopping-cart-form .image {
  float: left;
  width: 3.3125rem;
  margin: 0 0 .625rem 0; }

.shopping-cart .shopping-cart-form .image img {
  display: block;
  width: 100%; }

.shopping-cart .shopping-cart-form .title-large {
  width: calc(100% - 70px);
  font-size: 1.1rem;
  padding-bottom: 20px;
  float: right;
  color: #373737;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  font-weight: 700;
  line-height: 1.2; }

.shopping-cart .shopping-cart-form .title-large a {
  height: 75px;
  vertical-align: middle;
  transition: .3s opacity ease-in-out;
  color: #373737; }

.shopping-cart .shopping-cart-form .title-large .mobisystems-trademark {
  font-size: 55%;
  display: block;
  font-weight: 500;
  padding-bottom: 2px; }

.shopping-cart .shopping-cart-form .content {
  width: 100%;
  float: right;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  position: relative; }

.shopping-cart .shopping-cart-form .content .item-specf {
  float: left;
  width: 100%; }

.shopping-cart .shopping-cart-form .content .app-platform-support {
  float: left;
  width: 100%;
  margin: .9375rem 0;
  font-size: 0.9rem;
  font-weight: 500; }

.shopping-cart .shopping-cart-form .content .app-platform-support .app-select-platform {
  float: left;
  padding-left: 0; }

.shopping-cart .shopping-cart-form .content .app-platform-support .app-select-platform .select-field {
  border: 1px solid #ccc !important;
  margin-top: 0;
  width: auto;
  float: left; }

.shopping-cart .shopping-cart-form .content .app-platform-support .label {
  display: none;
  float: left;
  width: auto;
  padding-top: .625rem;
  padding-bottom: .625rem; }

.shopping-cart .shopping-cart-form .content .app-platform-support .label.lb-version {
  display: inline-block;
  margin: 0 10px; }

.shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms {
  margin-right: 15px;
  float: left; }

.shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms .icon {
  box-sizing: border-box;
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  margin-left: .8125rem;
  margin-right: .125rem;
  border: 1px solid #cacaca;
  border-radius: 100%;
  background-size: 100% 100%;
  background-position: center center;
  background-repeat: no-repeat; }

.shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms .icon.android {
  background-image: url("../images/store/icons_os/b_android.svg"); }

.shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms .icon.windows {
  background-image: url("../images/store/icons_os/b_windows.svg"); }

.shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms .icon.ios {
  background-image: url("../images/store/icons_os/b_ios.svg"); }

.shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms .icon.amazon {
  background-image: url("../images/store/icons_os/b_amazon.svg"); }

.shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms .icon.windows-phone {
  background-image: url("../images/store/icons_os/b_windows_phone.svg"); }

.shopping-cart .shopping-cart-form .content .item-price-quantit {
  height: 45px;
  width: 100%;
  float: left; }

.shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-quantity {
  float: left;
  padding-left: 0; }

.shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-quantity .filter-select {
  margin-top: 0;
  width: auto; }

.shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-price {
  height: 45px;
  right: 0;
  position: absolute;
  text-align: right;
  margin-right: 0;
  min-width: 140px !important; }

.shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-price .app-price {
  line-height: 45px; }

.shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-price .app-price .old {
  font-size: 1rem;
  font-weight: 600;
  padding-right: 5px; }

.shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-price .app-price .value {
  font-size: 1.5rem;
  font-weight: 600; }

.shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-price .app-price .value.color-red {
  color: #e30614; }

.shopping-cart .shopping-cart-form .download-protection-support {
  background-color: #f3f4f4;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-weight: 500;
  padding: 20px;
  line-height: 20px;
  font-size: 17px;
  margin: 0 -20px; }

.shopping-cart .shopping-cart-form .download-protection-support > * {
  display: inline-block; }

.shopping-cart .shopping-cart-form .download-protection-support .label-info {
  font-weight: 600;
  width: 65%; }

.shopping-cart .shopping-cart-form .download-protection-support .label-info .open-info {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px solid #e3151a;
  padding-bottom: 1px;
  color: #e3151a;
  cursor: pointer; }

.shopping-cart .shopping-cart-form .download-protection-support .label-info .open-info:hover {
  border-bottom: 1px solid #f3f4f400;
  padding-bottom: 1px; }

.shopping-cart .shopping-cart-form .download-protection-support .fit-right {
  width: auto;
  float: right; }

.shopping-cart .shopping-cart-form .download-protection-support .price {
  float: right;
  height: 100%;
  font-size: 1.0625rem; }

.shopping-cart .shopping-cart-form .download-protection-support .shopping-cart-delete {
  float: right;
  width: 14px;
  height: 20px;
  background: url("../images/search/close_error_box.svg") no-repeat;
  background-size: 100%;
  background-position: 50% 50%;
  margin-left: 10px; }

.shopping-cart .shopping-cart-form .shopping-cart-total {
  float: left;
  width: 100%;
  padding-top: 1.5625rem; }

.shopping-cart .shopping-cart-form .shopping-cart-total .value-item.total {
  float: left;
  font-weight: 700;
  width: 100%;
  padding: 20px 0;
  border-top: none;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.1rem; }

.shopping-cart .shopping-cart-form .shopping-cart-total .value-item.total .total-value {
  font-size: 1.3125rem; }

.shopping-cart .shopping-cart-form .checkout-buttons {
  float: left;
  width: 100%;
  padding-top: 1rem; }

.shopping-cart .shopping-cart-form .checkout-buttons .left {
  width: 100%;
  margin-bottom: 45px;
  float: left; }

.shopping-cart .shopping-cart-form .checkout-buttons label {
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  display: block;
  margin-bottom: .625rem; }

.shopping-cart .shopping-cart-form .checkout-buttons .discount-wrap {
  height: 45px; }

.shopping-cart .shopping-cart-form .checkout-buttons .discount-wrap > * {
  position: absolute !important; }

.shopping-cart .shopping-cart-form .checkout-buttons .discount-wrap .border-red {
  border: 1px solid #e30614; }

.shopping-cart .shopping-cart-form .checkout-buttons input.field {
  width: 47%;
  left: 0;
  margin: 0 0 10px 0;
  position: absolute;
  float: left;
  display: block;
  font-size: 1rem;
  height: 45px;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  border: 1px solid #BDBEC1; }

.shopping-cart .shopping-cart-form .checkout-buttons .load-more-btn {
  width: 48%;
  right: 0;
  margin-left: -5%;
  position: relative;
  z-index: 1;
  height: 45px;
  float: left;
  display: block;
  font-size: 1rem;
  border: 1px solid #BDBEC1;
  border-radius: 5px;
  padding: 10px 5px;
  font-weight: 500;
  background: #F3F3F3; }

.shopping-cart .shopping-cart-form .checkout-buttons .load-more-btn:hover {
  color: #fff;
  background: #e30614;
  border: 1px solid  #e30614; }

.shopping-cart .shopping-cart-form .checkout-buttons .next-step-btn-wrap {
  float: none;
  display: block;
  margin: 0 auto;
  clear: both; }

.shopping-cart .shopping-cart-form .checkout-buttons .next-step {
  color: #fff;
  border: 1px solid #e30614;
  background-color: #e30614;
  border-radius: 5px;
  height: 65px;
  font-size: 1.3125rem;
  float: none;
  display: block;
  margin: 0 auto;
  width: auto;
  padding: 0 45px;
  border-radius: 5px;
  font-weight: 600; }

.shopping-cart .shopping-cart-form .checkout-buttons .next-step:hover {
  background: #fff;
  border: 1px solid #e3151a;
  color: #e3151a; }

.shopping-cart .shopping-cart-bar {
  float: left;
  width: 100%;
  padding-bottom: 0; }

.shopping-cart .shopping-cart-bar .download-protection-banner {
  margin: 0 -20px;
  padding: 4.875rem;
  background: url("../images/store/download-protection.svg") center right no-repeat #2c2c2c;
  background-size: auto 100%;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center; }

.shopping-cart .shopping-cart-bar .download-protection-banner .dp-title {
  color: #83d656;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 1.25rem; }

.shopping-cart .shopping-cart-bar .download-protection-banner .text {
  color: #ccc;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.3; }

.shopping-cart .grey-space-element {
  height: 3rem;
  background: #f3f4f4; }

@media (min-width: 640px) {
  .shopping-cart .errors .error-image {
    vertical-align: initial; } }

@media (min-width: 720px) {
  .shopping-cart .template-top-section .secured-transaction {
    float: right;
    clear: none; }
  .shopping-cart .shopping-cart-form .title-large {
    font-size: 1.5rem; }
  .shopping-cart .shopping-cart-form .content .app-platform-support {
    font-size: 1.1rem; }
  .shopping-cart .shopping-cart-form .content .app-platform-support .label {
    display: inline; }
  .shopping-cart .shopping-cart-form .content .app-platform-support .label.lb-version {
    display: inline-block;
    margin: 0 10px; }
  .shopping-cart .shopping-cart-form .content .app-platform-support .app-select-platform {
    float: left;
    padding-left: 20px;
    margin-right: -40px; }
  .shopping-cart .shopping-cart-form .download-protection-support {
    margin: 0; }
  .shopping-cart .shopping-cart-bar .download-protection-banner {
    margin: 0; } }

@media (min-width: 1025px) {
  .shopping-cart .shopping-cart-form {
    width: 75%;
    float: left; }
  .shopping-cart .shopping-cart-form .title-large {
    float: left;
    margin-left: 10px;
    width: 55%; }
  .shopping-cart .shopping-cart-form .row {
    border-bottom: 0;
    padding-bottom: 0;
    margin-bottom: 0; }
  .shopping-cart .shopping-cart-form .content .app-platform-support {
    padding-left: 70px;
    margin-top: -15px;
    font-size: 0.8rem; }
  .shopping-cart .shopping-cart-form .content .app-platform-support .label.lb-version {
    float: none;
    margin: 0 10px;
    display: inline-block;
    font-weight: 700;
    vertical-align: super; }
  .shopping-cart .shopping-cart-form .content .app-platform-support .label.lb-version.lb-vertical {
    vertical-align: bottom; }
  .shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms .icon {
    width: 2rem;
    height: 2rem; }
  .shopping-cart .shopping-cart-form .content .item-price-quantit {
    height: 45px;
    float: left;
    position: absolute;
    width: 35%;
    right: 0;
    bottom: calc(100% + 10px); }
  .shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-price {
    margin-right: 0; }
  .shopping-cart .shopping-cart-form .shopping-cart-total .label {
    float: right; }
  .shopping-cart .shopping-cart-form .shopping-cart-total .value-item.total {
    padding: 10px 0px 45px;
    border-bottom: 0;
    font-size: 1.5rem; }
  .shopping-cart .shopping-cart-form .shopping-cart-total .value-item.total .total-value {
    font-size: 1.8rem; }
  .shopping-cart .shopping-cart-form .shopping-cart-total .value-item.total .label {
    display: inline-block;
    position: absolute;
    right: 0;
    text-align: center; }
  .shopping-cart .shopping-cart-form .checkout-buttons {
    padding-top: 0; }
  .shopping-cart .shopping-cart-form .checkout-buttons > * {
    display: inline-block;
    vertical-align: top; }
  .shopping-cart .shopping-cart-form .checkout-buttons .left {
    width: 50%;
    margin-bottom: 0; }
  .shopping-cart .shopping-cart-form .checkout-buttons .left label {
    line-height: 1.2rem;
    margin-top: -1.825rem;
    font-size: 14px; }
  .shopping-cart .shopping-cart-form .checkout-buttons .next-step-btn-wrap {
    position: absolute;
    right: 0;
    text-align: center;
    clear: none; }
  .shopping-cart .shopping-cart-form .checkout-buttons .next-step {
    display: inline-block;
    vertical-align: top;
    width: auto;
    height: 45px;
    font-size: 1.1rem; }
  .shopping-cart .shopping-cart-bar {
    width: 22%;
    float: right; }
  .shopping-cart .grey-space-element {
    margin-top: 20px; } }

@media (min-width: 1281px) {
  .shopping-cart .shopping-cart-form {
    width: 68%;
    float: left; }
  .shopping-cart .shopping-cart-bar {
    width: 28%;
    float: right; } }

@media (min-width: 1661px) {
  .shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms {
    width: auto; }
  .shopping-cart .grey-space-element {
    margin-top: 0px;
    margin-bottom: -30px; } }

.template-bottom-section .grey-space-element {
  height: 3rem;
  background: #f3f4f4; }

.template-top-section h1 {
  float: left; }

.template-top-section .secured-transaction {
  float: none;
  clear: both;
  margin: 0 auto;
  text-align: center;
  padding-top: 15px; }

.template-top-section .secured-transaction h3 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: left; }

.template-top-section .secured-transaction .secured-group .element {
  height: 45px;
  float: left; }

.template-top-section .secured-transaction .secured-group .element:first-child {
  margin-right: 15px; }

.template-top-section .secured-transaction .secured-group .element img {
  height: 100%;
  width: auto;
  display: block; }

.shopping-checkout .errors {
  visibility: hidden;
  color: #852d12;
  background-color: #ffefeab3;
  padding: 10px;
  margin-bottom: 25px; }

.shopping-checkout .errors.visible {
  visibility: visible; }

.shopping-checkout .errors .error-image {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/error-icon.png") no-repeat, top, center;
  background-size: contain;
  vertical-align: super; }

.shopping-checkout .errors .error-container {
  color: #e30614;
  padding: 0 5px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  width: 90%; }

.shopping-checkout.template-section .template-content-inner {
  padding-bottom: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff; }

.shopping-checkout.template-section .template-content-inner .checkout-errors {
  position: absolute;
  z-index: 3;
  width: 100%;
  left: 0;
  margin-top: 0;
  bottom: -10px; }

.shopping-checkout.template-section .template-content-inner .title-small {
  margin: 20px 0; }

.shopping-checkout.template-section .template-content-inner .box-checkout {
  width: 100%;
  padding-bottom: 10px;
  display: inline-block;
  background: #fff;
  height: auto; }

.shopping-checkout.template-section .template-content-inner .box-checkout > h3 {
  font-weight: 600;
  font-size: 25px; }

.shopping-checkout.template-section .template-content-inner .box-checkout .payment-option {
  margin: 20px 0; }

.shopping-checkout.template-section .template-content-inner .box-checkout .payment-option .payment-type {
  margin-left: 0; }

.shopping-checkout.template-section .template-content-inner .box-checkout .text-content {
  line-height: 25px;
  margin-top: 15px; }

.shopping-checkout.template-section .template-content-inner .box-checkout .text-content.paypal, .shopping-checkout.template-section .template-content-inner .box-checkout .text-content.alipay, .shopping-checkout.template-section .template-content-inner .box-checkout .text-content.card {
  display: none; }

.shopping-checkout.template-section .template-content-inner .box-checkout .text-content.active {
  display: block; }

.shopping-checkout.template-section .template-content-inner .box-checkout .text-content p {
  text-align: justify;
  text-justify: inter-word;
  width: 100%; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset {
  padding: 15px 0 0 0;
  width: 100%; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset #newsletter {
  visibility: hidden; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset.address .disabled-fields {
  opacity: 0.5;
  -webkit-pointer-events: none;
  -moz-pointer-events: none;
  -ms-pointer-events: none;
  pointer-events: none; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .row {
  text-align: left;
  margin-bottom: 20px;
  font-size: 17px; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .row select {
  background: transparent url("../images/elements/select.svg") no-repeat center right;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  appearance: none; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset label {
  margin-bottom: 20px; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset input,
.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .select-field {
  margin-top: 10px;
  width: 100%;
  font-size: 14px;
  color: #000;
  padding: 15px 10px;
  border: 1px solid #e2e2e2;
  border-radius: 5px;
  background: #fff;
  -webkit-transition: border-color .4s, background .4s;
  -moz-transition: border-color .4s, background .4s;
  -ms-transition: border-color .4s, background .4s;
  -o-transition: border-color .4s, background .4s;
  transition: border-color .4s, background .4s; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset input.not-valid, .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .select-field.not-valid {
  border: 1px solid #e3151a;
  color: #e3151a; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .select-field {
  width: calc(50% - 3px);
  width: -moz-calc(50% - 3px);
  width: -webkit-calc(50% - 3px);
  width: -o-calc(50% - 3px); }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .select-field.select-country {
  display: block;
  width: 100%; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .checkbox-group .checkbox-field {
  position: absolute;
  top: -10%;
  left: -10%;
  border: 0;
  width: auto; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .checkbox-group .checkbox {
  padding-left: 2.2rem;
  line-height: 1.5;
  font-size: 14px;
  position: relative;
  cursor: pointer; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .checkbox-group .checkbox:before {
  content: '';
  width: 25px;
  height: 25px;
  position: absolute;
  top: 8px;
  left: 0px;
  background: transparent url("../images/store/check-white.png") no-repeat center center;
  background-size: 100%;
  display: block; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .checkbox-group .checkbox.checked:before {
  background: transparent url("../images/store/check-red.png") no-repeat center center;
  background-size: 100%; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .button-group.right {
  width: 100%;
  height: auto;
  margin-top: 40px;
  position: relative; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .button-group.right .center-button-group {
  margin: 0 auto;
  width: 100%;
  text-align: center; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .button-group.right .center-button-group .button {
  font-weight: 600;
  margin: 0.625rem;
  display: inline-block;
  font-size: 1.125rem;
  border-radius: 5px;
  padding: 2%;
  width: 42%;
  vertical-align: text-bottom;
  line-height: 1;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: 0.2s color ease-in-out;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .button-group.right .center-button-group .button.gray {
  color: #000;
  background: #fff;
  border: 1px solid #000; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .button-group.right .center-button-group .button.gray:hover {
  background: #e3151a;
  border: 1px solid transparent;
  color: #fff; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .button-group.right .center-button-group .button.red {
  background: #e3151a;
  border: 1px solid #e3151a;
  color: #fff; }

.shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .button-group.right .center-button-group .button.red:hover {
  background: #fff;
  border: 1px solid #e3151a;
  color: #e3151a; }

.shopping-checkout.template-section .template-content-inner .box-checkout .payment-type {
  margin-left: 55px;
  width: 100%;
  display: inline-block; }

.shopping-checkout.template-section .template-content-inner .box-checkout .payment-type-logo {
  float: left; }

.shopping-checkout.template-section .template-content-inner .box-checkout .payment-type-logo.card {
  width: 280px; }

.shopping-checkout.template-section .template-content-inner .box-checkout .payment-type-label {
  font-size: 17px;
  height: 34px;
  width: 130px;
  line-height: 34px;
  position: relative;
  float: left;
  cursor: pointer;
  padding-left: 2rem;
  margin-right: 0.9375rem; }

.shopping-checkout.template-section .template-content-inner .box-checkout .payment-type-label.clicked:before {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  padding: 2px;
  top: 5px;
  left: 0;
  border-radius: 100%;
  border: 4px solid #e3151a;
  background: #fff;
  display: block; }

.shopping-checkout.template-section .template-content-inner .box-checkout .payment-type-label:before {
  content: '';
  width: 24px;
  height: 24px;
  position: absolute;
  padding: 2px;
  top: 5px;
  left: 0;
  border-radius: 100%;
  border: 1px solid black;
  background: #fff;
  display: block; }

@media (min-width: 720px) {
  .shopping-checkout .template-top-section .secured-transaction {
    float: right;
    clear: none; }
  .shopping-checkout.template-section .template-content-inner .box-checkout .title-small {
    padding-left: 55px; }
  .shopping-checkout.template-section .template-content-inner .box-checkout .payment-option .payment-type {
    margin-left: 55px; }
  .shopping-checkout.template-section .template-content-inner .box-checkout .text-content {
    padding-left: 55px; }
  .shopping-checkout.template-section .template-content-inner .box-checkout .text-content .fieldset {
    padding: 15px 55px 0 0;
    width: 70%; }
  .shopping-checkout.template-section .template-content-inner .box-checkout .text-content p {
    padding: 15px 55px 0 0;
    width: 70%; } }

@media (min-width: 1025px) {
  .shopping-checkout.template-section .template-content-inner {
    flex-direction: row;
    padding-bottom: 0; }
  .shopping-checkout.template-section .template-content-inner .checkout-errors {
    width: 80%;
    left: 55px;
    margin-top: 40px;
    bottom: auto; }
  .shopping-checkout.template-section .template-content-inner .box-checkout {
    width: 50%;
    padding-bottom: 50px;
    padding-top: 40px; }
  .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .row select {
    width: calc(50% - 13px);
    width: -moz-calc(50% - 13px);
    width: -webkit-calc(50% - 13px);
    width: -o-calc(50% - 13px); }
  .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .row select:first-child {
    margin-right: 20px; }
  .shopping-checkout.template-section .template-content-inner .box-checkout .title-small {
    padding-left: 55px;
    margin: 50px 0; } }

@media (min-width: 1281px) {
  .shopping-checkout.template-section .template-content-inner {
    padding-left: 0;
    padding-right: 0;
    width: 80%; }
  .shopping-checkout.template-section .template-content-inner .checkout-errors {
    width: 80%;
    left: 55px;
    margin-top: 25px; }
  .shopping-checkout.template-section .template-content-inner .box-checkout .payment-type-logo.card {
    width: auto; } }

.shopping-confirm-order .system-status {
  overflow: hidden;
  text-overflow: ellipsis; }

.shopping-confirm-order .system-status.status-error {
  color: #e3151a;
  background-color: #ffefeab3;
  width: 80%;
  padding: 10px;
  margin-bottom: 25px;
  text-align: center;
  margin: 50px auto;
  font-size: 1.3em; }

.shopping-confirm-order .template-top-section h1 {
  float: left; }

.shopping-confirm-order .template-top-section h1 p {
  font-size: 15px;
  width: 100%;
  line-height: 20px; }

.shopping-confirm-order .template-top-section .secured-transaction {
  float: none;
  clear: both;
  margin: 0 auto;
  text-align: center;
  padding-top: 15px; }

.shopping-confirm-order .template-top-section .secured-transaction h4 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: left; }

.shopping-confirm-order .template-top-section .secured-transaction .secured-group .element {
  height: 45px;
  float: left; }

.shopping-confirm-order .template-top-section .secured-transaction .secured-group .element:first-child {
  margin-right: 15px; }

.shopping-confirm-order .template-top-section .secured-transaction .secured-group .element img {
  height: 100%;
  width: auto;
  display: block; }

.shopping-confirm-order.template-section .template-section-wrap {
  background: #fff;
  width: 100%; }

.shopping-confirm-order.template-section .template-section-wrap .flex-container {
  width: 100%;
  display: flex;
  flex-direction: column; }

.shopping-confirm-order.template-section .template-section-wrap .grey-space-element {
  height: 1.5rem;
  background: #f3f4f4; }

.shopping-confirm-order.template-section .template-section-wrap .template-title-wrap-inner {
  color: #fff;
  font-size: 20px; }

.shopping-confirm-order.template-section .template-section-wrap .text-content {
  margin: 55px; }

.shopping-confirm-order.template-section .template-section-wrap .text-content a {
  color: #000;
  background: #fff;
  border: 1px solid #000;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 15px;
  border-radius: 5px;
  line-height: 1;
  overflow: hidden;
  transition: 0.2s color ease-in-out;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block; }

.shopping-confirm-order.template-section .template-section-wrap .text-content a:hover {
  background: #e3151a;
  border: 1px solid transparent;
  color: #fff; }

.shopping-confirm-order.template-section .template-section-wrap .text-content p {
  display: block;
  width: 100%;
  text-align: center; }

.shopping-confirm-order.template-section .template-section-wrap .text-content h3 {
  font-weight: 600;
  font-size: 25px; }

.shopping-confirm-order.template-section .template-section-wrap .text-content .order-title {
  margin-bottom: 20px; }

.shopping-confirm-order.template-section .template-section-wrap .text-content .row {
  font-size: 17px;
  padding: 15px 0; }

.shopping-confirm-order.template-section .template-section-wrap .text-content .row .label {
  width: 100%;
  display: inline-block; }

.shopping-confirm-order.template-section .template-section-wrap .text-content .row .value {
  font-weight: 600; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons {
  height: auto;
  margin: 55px;
  position: relative; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .shopping-cart-total {
  width: 100%;
  position: relative;
  margin: 20px 0; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .shopping-cart-total .label {
  width: 100%;
  display: block;
  font-weight: 600; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .shopping-cart-total .value-item.subtotal {
  font-size: 15px; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .shopping-cart-total .value-item.discount {
  font-size: 15px;
  color: #ff8410; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .shopping-cart-total .value-item.total {
  font-size: 30px; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .shopping-cart-total .value-item.total .label {
  white-space: nowrap;
  padding-right: 0; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text {
  display: block; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text.right {
  width: 100%; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text.left {
  width: 100%; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text.left .valign.fit .middle {
  font-size: 17px; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text.left a {
  color: #e3151a; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text.left a:hover {
  text-decoration: underline; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .button {
  color: #fff;
  border: 1px solid #e3151a;
  background-color: #e3151a;
  border-radius: 5px;
  height: 45px;
  font-size: 1.125rem;
  float: none;
  display: block;
  font-weight: 300;
  border-radius: 5px;
  margin: 0;
  width: auto;
  padding: 0 45px;
  font-weight: 600; }

.shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .button:hover {
  background: #fff;
  border: 1px solid #e3151a;
  color: #e3151a; }

.shopping-confirm-order.template-section .template-section-wrap .grey-space-element.last {
  height: 3rem; }

@media (min-width: 720px) {
  .shopping-confirm-order .template-top-section .secured-transaction {
    float: right;
    clear: none; }
  .shopping-confirm-order .template-top-section .template-section-wrap .text-content .row .label {
    display: inline-block;
    width: 100%; } }

@media (min-width: 1025px) {
  .shopping-confirm-order .template-top-section h1 {
    float: left; }
  .shopping-confirm-order .template-top-section h1 p {
    font-size: 17px;
    width: 500px;
    line-height: 25px; }
  .shopping-confirm-order.template-section .template-section-wrap .text-content .row .label {
    display: inline-block;
    width: 200px; }
  .shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons {
    height: 150px;
    margin: 25px 55px; }
  .shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .shopping-cart-total {
    width: 100%;
    position: absolute;
    right: 40px;
    margin: 0; }
  .shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .shopping-cart-total .label {
    text-align: right;
    padding-right: 5px; }
  .shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text {
    display: inline-block;
    height: 100%; }
  .shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text.right {
    width: calc(30% - 5px); }
  .shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text.left {
    width: 70%; }
  .shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .button {
    float: right;
    margin-top: 20px; }
  .shopping-confirm-order.template-section .template-section-wrap .box {
    display: inline-block;
    vertical-align: text-top;
    width: calc(50% - 5px);
    padding-left: 40px; }
  .shopping-confirm-order.template-section .template-section-wrap form .text-content {
    padding-left: 40px; }
  .shopping-confirm-order.template-section .template-section-wrap form .text-content .row .label {
    width: 200px; }
  .shopping-confirm-order.template-section .template-section-wrap .left.checkout-order-text {
    padding-left: 40px; }
  .shopping-confirm-order.template-section .template-section-wrap .grey-space-element.first {
    display: none; } }

@media (min-width: 1281px) {
  .shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text.right {
    width: calc(30% - 5px); }
  .shopping-confirm-order.template-section .template-section-wrap form .checkout-buttons .checkout-order-text.left {
    width: 70%; } }

@media (min-width: 1661px) {
  .shopping-confirm-order.template-section .template-section-wrap .wrap-80 {
    width: 80%;
    margin: 0 auto; } }

.shopping-order-details .template-top-section h1 {
  float: left; }

.shopping-order-details .template-top-section .secured-transaction {
  float: none;
  clear: both;
  margin: 0 auto;
  text-align: center;
  padding-top: 15px; }

.shopping-order-details .template-top-section .secured-transaction h4 {
  font-size: 1rem;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 0.5rem;
  color: #fff;
  text-align: left; }

.shopping-order-details .template-top-section .secured-transaction .secured-group .element {
  height: 45px;
  float: left; }

.shopping-order-details .template-top-section .secured-transaction .secured-group .element:first-child {
  margin-right: 15px; }

.shopping-order-details .template-top-section .secured-transaction .secured-group .element img {
  height: 100%;
  width: auto;
  display: block; }

.shopping-order-details .grey-space-element {
  height: 3rem;
  background: #f3f4f4; }

.shopping-order-details.template-section .template-section-wrap .flex-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: #fff; }

.shopping-order-details.template-section .template-section-wrap .flex-container .inner-padding {
  width: 100%;
  margin: 0 auto;
  padding: 15px; }

.shopping-order-details.template-section .template-section-wrap .flex-container .system-status {
  font-size: 16px;
  margin: 0 0 30px;
  padding: 0 0 0 50px;
  font-weight: 400;
  line-height: 1.4; }

.shopping-order-details.template-section .template-section-wrap .flex-container .system-status.status-success {
  background: transparent url("../images/store/green-check/green-bg.png") no-repeat left center;
  background-size: 35px;
  height: 50px;
  position: relative; }

.shopping-order-details.template-section .template-section-wrap .flex-container .system-status.status-success > p {
  padding: 2px; }

.shopping-order-details.template-section .template-section-wrap .flex-container .system-status.status-success:after {
  content: '';
  position: absolute;
  background: transparent url("../images/store/green-check/check-tick.png") no-repeat left center;
  background-size: contain;
  height: 16px;
  width: 16px;
  left: 9px;
  top: 16px;
  -webkit-animation: animate 5s ease-in;
  animation: animate 0.5s ease-in; }

@-webkit-keyframes animate {
  from {
    -webkit-transform: rotate(-45deg) scale(0.4);
    -moz-transform: rotate(-45deg) scale(0.4);
    -o-transform: rotate(-45deg) scale(0.4);
    -ms-transform: rotate(-45deg) scale(0.4);
    transform: rotate(-45deg) scale(0.4); }
  to {
    -webkit-transform: rotate(0deg) scale(1.1);
    -moz-transform: rotate(0deg) scale(1.1);
    -o-transform: rotate(0deg) scale(1.1);
    -ms-transform: rotate(0deg) scale(1.1);
    transform: rotate(0deg) scale(1.1); } }

@keyframes animate {
  from {
    -webkit-transform: rotate(-45deg) scale(0.4);
    -moz-transform: rotate(-45deg) scale(0.4);
    -o-transform: rotate(-45deg) scale(0.4);
    -ms-transform: rotate(-45deg) scale(0.4);
    transform: rotate(-45deg) scale(0.4); }
  to {
    -webkit-transform: rotate(0deg) scale(1.1);
    -moz-transform: rotate(0deg) scale(1.1);
    -o-transform: rotate(0deg) scale(1.1);
    -ms-transform: rotate(0deg) scale(1.1);
    transform: rotate(0deg) scale(1.1); } }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content > p.order-text {
  margin: 30px 0;
  color: #808080;
  font-size: 16px;
  padding: 0; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .order-title {
  font-weight: 600;
  margin-top: 35px;
  font-size: 25px; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content p {
  padding: 10px 0 0 0;
  font-size: 17px; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap {
  margin: 0vw 0vw 1.56vw;
  width: 100%;
  line-height: 35px; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table {
  border-top: 0px;
  font-size: 1rem;
  width: 100%; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .row {
  display: block;
  width: 100%;
  line-height: 1.4; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .row:first-child {
  display: none; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col {
  display: block;
  padding: 10px 0 20px 0;
  text-align: center;
  width: 100%;
  padding: 10px;
  margin: 15px 0;
  border: 1px solid #eaeced; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col .button {
  display: inline-block;
  margin: 0 auto;
  width: auto;
  font-weight: 500; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col .button .middle {
  width: auto;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #e30614;
  background-color: #e30614;
  padding: 0 45px;
  height: 35px; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col .button .middle:hover {
  background: #fff;
  color: #e30614;
  border: 1px solid #e30614;
  transition: 0.2s all cubic-bezier(0.075, 0.82, 0.165, 1); }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col .label {
  display: block;
  width: 100%;
  font-weight: 600;
  font-size: 17px;
  background: #eaeced;
  padding: 10px 0; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col .label.mobile_only {
  display: block; }

.shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col > p {
  font-size: 15px;
  font-weight: 500; }

@media (min-width: 720px) {
  .shopping-order-details .template-top-section .secured-transaction {
    float: right;
    clear: none; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .inner-padding {
    width: 80%;
    padding: 55px; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .system-status {
    font-size: 17px; } }

@media (min-width: 1025px) {
  .shopping-order-details.template-section .template-section-wrap .flex-container .system-status {
    padding: 20px 20px 20px 100px;
    font-size: 1.3125rem; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .system-status.status-success {
    background-size: contain;
    height: 70px; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .system-status.status-success:after {
    height: 34px;
    width: 34px;
    left: 17px;
    top: 17px; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content > p.order-text {
    margin: 30px 0;
    color: #808080;
    font-size: 16px;
    padding: 0; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .order-title {
    font-weight: 600;
    margin-top: 35px;
    font-size: 25px; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content p {
    padding: 10px 0 0 0;
    font-size: 17px; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap {
    float: left; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table {
    float: left;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    margin: 15px 0; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .row {
    display: table;
    float: left;
    border-bottom: #eaeced 2px solid; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .row:first-child {
    display: table;
    background-color: #eaeced; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .row:first-child .col {
    padding: 20px; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .row:first-child .col .label {
    font-weight: 600; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col {
    display: table-cell;
    padding: 10px 0 20px 0;
    vertical-align: middle;
    width: 35%;
    border: none;
    margin: 0; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col.col-tw-35 {
    width: 35%; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col.col-tw-30 {
    width: 30%; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col.col-tw-20 {
    width: 20%; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col.col-tw-15 {
    width: 15%; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col .button {
    float: none; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col .button .middle {
    height: 45px; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col .label {
    padding: 0; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col .label.mobile_only {
    display: none;
    font-size: 20px; }
  .shopping-order-details.template-section .template-section-wrap .flex-container .text-content .table-wrap .table .col p {
    padding: 0; } }

.template-section {
  /* 	partners */
  /* partners contact */
  /* careers */ }

.template-section .about-content p {
  font-size: 16px;
  line-height: 1.5em;
  color: #343941;
  margin-bottom: 25px; }

.template-section .about-content strong {
  font-weight: 700; }

.template-section .about-content a {
  font-size: 16px;
  line-height: 1.5em;
  color: #ed1c24;
  text-decoration: underline; }

.template-section .about-partners-container {
  padding-top: 80px;
  padding-bottom: 50px;
  margin-top: -40px; }

.template-section .about-partners-container .partners-section {
  margin-top: 0; }

.template-section .facts-section {
  text-align: center; }

.template-section .facts-section .bg-image {
  opacity: .5; }

.template-section .facts-grid {
  font-size: 0;
  margin-top: 30px;
  margin-left: -20px;
  margin-right: -20px; }

.template-section .facts-grid .color-text {
  color: #ed1c24; }

.template-section .facts-grid-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 30px; }

.template-section .facts-grid-image-container {
  width: 130px;
  height: 130px;
  border-radius: 200px;
  margin: 0 auto;
  border: 1px solid #e2e2e2;
  background: #fff; }

.template-section .facts-grid-image-wrap {
  width: 84px;
  display: inline-block;
  vertical-align: middle; }

.template-section .facts-grid-content {
  margin-top: 15px; }

.template-section .facts-grid-text {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5em;
  color: #000;
  padding: 0 30px; }

.template-section .award-row-item {
  width: 100%;
  max-width: 390px;
  display: inline-block;
  margin-top: 20px; }

.template-section .award-label-container {
  margin: 0 auto; }

.template-section .award-label {
  width: 124px;
  display: inline-block; }

.template-section .facts-slider-container {
  margin-left: -20px;
  margin-right: -20px;
  background: #f3f3f3; }

.template-section .facts-slider {
  overflow: hidden;
  padding-bottom: 60px; }

.template-section .facts-slider-slide {
  padding: 30px 20px;
  font-size: 0; }

.template-section .slide-image-container {
  width: 150px;
  height: 150px;
  border-radius: 200px;
  display: inline-block;
  vertical-align: top;
  overflow: hidden; }

.template-section .slide-content {
  margin-top: 30px; }

.template-section .quote {
  width: 85px;
  display: inline-block;
  vertical-align: middle; }

.template-section .slide-logo-container {
  width: calc(100% - 85px);
  display: inline-block;
  vertical-align: middle;
  padding-left: 50px; }

.template-section .slide-logo-image {
  max-width: 100%;
  display: inline-block; }

.template-section .slide-text {
  font-size: 18px;
  line-height: 1.3em;
  font-style: italic;
  color: #1c0c06;
  margin-top: 20px; }

.template-section .person-name {
  display: block;
  margin-top: 30px;
  color: #ed1c24;
  font-size: 16px; }

.template-section .slide-source {
  margin-top: 10px;
  display: block;
  color: #666666;
  font-size: 14px; }

.template-section .facts-slider-pagination.swiper-pagination {
  bottom: 30px; }

.template-section .facts-slider-pagination.swiper-pagination .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
  background: #000;
  margin: 0 20px;
  border: none;
  position: relative;
  -webkit-transition: background .4s;
  -moz-transition: background .4s;
  -ms-transition: background .4s;
  -o-transition: background .4s;
  transition: background .4s; }

.template-section .facts-slider-pagination.swiper-pagination .swiper-pagination-bullet:after {
  content: '';
  width: 26px;
  height: 26px;
  border-radius: 30px;
  border: 1px solid #9d9d9d;
  position: absolute;
  top: -10px;
  left: -10px;
  opacity: 0;
  -webkit-transition: opacity .4s, vivibility .4s;
  -moz-transition: opacity .4s, vivibility .4s;
  -ms-transition: opacity .4s, vivibility .4s;
  -o-transition: opacity .4s, vivibility .4s;
  transition: opacity .4s, vivibility .4s; }

.template-section .facts-slider-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #ed1c24; }

.template-section .facts-slider-pagination.swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active:after {
  opacity: 1;
  visibility: visible; }

.template-section .facts-slider-section {
  z-index: 2; }

.template-section .content-title-text {
  max-width: 640px;
  margin: 0 auto;
  margin-top: 20px; }

.template-section .content-title-text p {
  font-size: 16px;
  line-height: 1.5em;
  color: #666666;
  margin-bottom: 25px; }

.template-section .content-title-text p:last-child {
  margin-bottom: 0; }

.template-section .content-title-text strong {
  font-weight: 700; }

.template-section .template-grid {
  font-size: 0; }

.template-section .partners-grid-element {
  background: #f3f3f3;
  margin-bottom: 20px; }

.template-section .partners-grid-element .template-grid-title-wrap {
  text-align: center; }

.template-section .template-grid-logo-wrap {
  width: 125px;
  max-width: 184px;
  display: inline-block;
  vertical-align: middle; }

.template-section .template-grid-item {
  width: 50%;
  display: inline-block;
  vertical-align: middle;
  padding: 20px;
  text-align: center; }

.template-section .template-grid-title-wrap {
  margin-bottom: 20px; }

.template-section .become-partner-section {
  padding: 40px 20px;
  padding-top: 30px;
  background: #ed1c24; }

.template-section .become-partner-icon-container {
  display: inline-block;
  vertical-align: middle;
  margin-right: 25px; }

.template-section .become-partner-icon {
  width: 100px; }

.template-section .become-partner-content {
  margin-top: 20px; }

.template-section .become-partner-content .small-title {
  font-weight: 700;
  color: #fff; }

.template-section .become-partner-text-wrap {
  margin-top: 15px; }

.template-section .become-partner-text-wrap p {
  font-size: 16px;
  line-height: 1.5em;
  color: #fff;
  margin-bottom: 10px; }

.template-section .become-partner-text-wrap p:last-child {
  margin-bottom: 0; }

.template-section .become-partner-btn-container {
  margin-top: 40px; }

.template-section .become-partner-container {
  font-size: 0; }

.template-section .partners-contact-container {
  width: 100%;
  max-width: 920px;
  margin: 0 auto; }

.template-section .partners-contact-container .template-contact-form {
  margin-left: -10px;
  margin-right: -10px; }

.template-section .partners-contact-container .template-form-item {
  padding-left: 10px;
  padding-right: 10px; }

.template-section .form-partner-title-wrap {
  color: #000;
  margin-bottom: 20px; }

.template-section .partner-form-col {
  width: 100%;
  display: inline-block;
  vertical-align: top; }

.template-section .careers-content-section .content-title-text {
  max-width: 100%; }

.template-section .careers-content-section .faq-row:last-child {
  border-bottom: 1px solid #e2e2e2; }

.template-section .careers-content-top {
  padding-bottom: 40px; }

.template-section .careers-positions {
  border-top: 1px solid #e2e2e2; }

.template-section .careers-positions .empty-positions {
  font-size: 15px;
  line-height: 18px;
  text-align: left; }

.template-section .careers-content-title-wrap {
  color: #000; }

.template-section .careers-content-top-text {
  margin-top: 20px; }

.template-section .careers-content-top-text p {
  font-size: 16px;
  color: #444444; }

.template-section .profile-grid {
  font-size: 0; }

.template-section .profile-grid-title-wrap {
  color: #000; }

.template-section .profil-item-list {
  margin-top: 20px; }

.template-section .profil-item-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }

.template-section .profil-item-list ul li {
  font-size: 14px;
  line-height: 24px;
  color: #444444;
  position: relative;
  padding-left: 20px; }

.template-section .profil-item-list ul li:after {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: #000;
  position: absolute;
  top: 9px;
  left: 3px; }

.template-section .offer-grid-container {
  margin-top: 50px; }

.template-section .offer-grid {
  font-size: 0;
  margin-top: 40px;
  margin-left: -20px;
  margin-right: -20px; }

.template-section .offer-title-wrap {
  color: #000; }

.template-section .offer-grid-item {
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 30px; }

.template-section .offer-icon {
  width: 115px;
  height: 115px;
  border-radius: 200px;
  border: 1px solid #e2e2e2;
  background: #fff;
  text-align: center; }

.template-section .offer-image-wrap {
  width: 76px;
  display: inline-block;
  vertical-align: middle; }

.template-section .offer-item-text-container {
  margin-top: 20px; }

.template-section .offer-item-text {
  font-size: 16px;
  line-height: 1.5em;
  color: #000; }

.template-section .offer-item-text.color-text {
  color: #ed1c24;
  font-weight: 700; }

.template-section .careers-btn-row {
  font-size: 0;
  margin-top: 20px; }

.template-section .careers-btn-container {
  margin-bottom: 20px; }

.template-section .profile-grid-item:first-child {
  margin-bottom: 30px; }

@media (min-width: 480px) {
  .template-section {
    /* partners */
    /* careers */ }
  .template-section .facts-slider-container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
    background: #f3f3f3; }
  .template-section .become-partner-content {
    width: calc(100% - 125px);
    display: inline-block;
    vertical-align: middle; }
  .template-section .careers-btn-container {
    width: 50%;
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 0; }
  .template-section .careers-btn-container:last-child {
    text-align: right; }
  .template-section .offer-grid-item {
    width: 50%;
    display: inline-block;
    vertical-align: top; } }

@media (min-width: 640px) {
  .template-section {
    /* partners */ }
  .template-section .facts-grid-item {
    width: 50%; }
  .template-section .slide-content {
    width: calc(100% - 150px);
    display: inline-block;
    vertical-align: top;
    padding-left: 40px;
    margin-top: 0; }
  .template-section .slide-logo-container {
    text-align: right; }
  .template-section .template-grid-item {
    width: 25%; } }

@media (min-width: 720px) {
  .template-section {
    /* partners contact */
    /* careers */ }
  .template-section .company-nav .template-nav-item {
    width: 25%; }
  .template-section .become-partner-section {
    padding: 50px 40px;
    padding-top: 40px;
    background: #ed1c24; }
  .template-section .partner-form-col {
    width: 50%; }
  .template-section .partner-form-col .template-form-btn-container {
    position: relative;
    top: 0;
    left: 0;
    margin-top: 20px;
    text-align: right; }
  .template-section .partner-form-col .recaptcha-item {
    width: 100%;
    height: 124px;
    text-align: center;
    border: 1px solid #e2e2e2;
    border-radius: 4px; }
  .template-section .partner-form-col .google-recapcha {
    display: inline-block;
    vertical-align: middle; }
  .template-section .profile-grid-item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    padding-right: 20px; }
  .template-section .profile-grid-item:first-child {
    margin-bottom: 0; }
  .template-section .profile-grid {
    margin-left: -20px;
    margin-right: -20px; } }

@media (min-width: 1025px) {
  .template-section {
    /* 	partners */
    /* careers */ }
  .template-section .about-partners-container {
    padding-top: 150px;
    padding-bottom: 60px;
    margin-top: -5.72917vw; }
  .template-section .facts-grid {
    margin-top: 4.42708vw; }
  .template-section .facts-grid-item {
    width: 25%;
    margin-bottom: 0; }
  .template-section .facts-grid-image-container {
    width: 10.9375vw;
    height: 10.9375vw; }
  .template-section .facts-grid-image-wrap {
    width: 7.08333vw; }
  .template-section .facts-grid-content {
    margin-top: 20px; }
  .template-section .facts-grid-text {
    padding: 0; }
  .template-section .award-row {
    margin-top: 3.64583vw;
    padding-bottom: 20px; }
  .template-section .facts-slider {
    padding-bottom: 6.25vw; }
  .template-section .facts-slider-slide {
    padding: 3.125vw 2.86458vw; }
  .template-section .slide-content {
    padding-left: 2.08333vw; }
  .template-section .slide-text {
    margin-top: 2.08333vw; }
  .template-section .person-name {
    margin-top: 1.5625vw; }
  .template-section .facts-slider-pagination.swiper-pagination {
    bottom: 3.125vw; }
  .template-section .facts-slider-pagination.swiper-pagination .swiper-pagination-bullet {
    margin: 0 1.82292vw; }
  .template-section .facts-slider-pagination.swiper-pagination .swiper-pagination-bullet:hover {
    background: #ed1c24; }
  .template-section .facts-slider-pagination.swiper-pagination .swiper-pagination-bullet:hover:after {
    opacity: 1;
    visibility: visible; }
  .template-section .content-title-text {
    margin-top: 1.5625vw; }
  .template-section .partners-grid-element {
    margin-bottom: 2.08333vw; }
  .template-section .template-grid-item {
    width: 16.666%;
    padding: 30px 20px; }
  .template-section .template-grid-title-wrap {
    margin-bottom: 2.08333vw; }
  .template-section .template-grid-logo-wrap {
    width: 135px; }
  .template-section .become-partner-section {
    padding: 35px 30px;
    background: #ed1c24; }
  .template-section .become-partner-container {
    padding-right: 250px; }
  .template-section .become-partner-btn-container {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    font-size: 0;
    margin-top: 0; }
  .template-section .profil-item-list {
    margin-top: 1.82292vw; }
  .template-section .offer-grid-container {
    margin-top: 3.64583vw; }
  .template-section .offer-grid {
    margin-top: 3.125vw; }
  .template-section .offer-grid-item {
    width: 25%;
    margin-bottom: 3.125vw; }
  .template-section .offer-item-text-container {
    margin-top: 1.5625vw; }
  .template-section .offer-icon {
    width: 9.89583vw;
    height: 9.89583vw;
    margin: 0 auto; }
  .template-section .offer-image-wrap {
    width: 6.5625vw; }
  .template-section .careers-btn-row {
    margin-top: 0; } }

@media (min-width: 1367px) {
  .template-section {
    /* 	partners */ }
  .template-section .template-grid-logo-wrap {
    width: 9.58333vw; } }

@media (min-width: 1921px) {
  .template-section {
    /* 	partners */ }
  .template-section .facts-grid-image-container {
    width: 210px;
    height: 210px; }
  .template-section .facts-grid-image-wrap {
    width: 136px; }
  .template-section .about-partners-container {
    margin-top: 110px; }
  .template-section .facts-grid {
    margin-top: 85px; }
  .template-section .award-row {
    margin-top: 70px; }
  .template-section .facts-slider {
    padding-bottom: 120px; }
  .template-section .facts-slider-slide {
    padding: 60px 55px; }
  .template-section .slide-content {
    padding-left: 40px; }
  .template-section .slide-text {
    margin-top: 40px; }
  .template-section .person-name {
    margin-top: 30px; }
  .template-section .facts-slider-pagination.swiper-pagination {
    bottom: 60px; }
  .template-section .facts-slider-pagination.swiper-pagination .swiper-pagination-bullet {
    margin: 0 35px; }
  .template-section .content-title-text {
    margin-top: 30px; }
  .template-section .partners-grid-element {
    margin-bottom: 40px; }
  .template-section .template-grid-title-wrap {
    margin-bottom: 40px; }
  .template-section .profil-item-list {
    margin-top: 35px; }
  .template-section .offer-grid-container {
    margin-top: 70px; }
  .template-section .offer-grid {
    margin-top: 60px; }
  .template-section .offer-grid-item {
    margin-bottom: 60px; }
  .template-section .offer-item-text-container {
    margin-top: 30px; }
  .template-section .offer-icon {
    width: 190px;
    height: 190px; }
  .template-section .offer-image-wrap {
    width: 126px; } }

.template-section .main-contacts-grid {
  margin-left: -20px;
  margin-right: -20px;
  font-size: 0; }

.template-section .main-contacts-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 40px; }

.template-section .main-contacts-item:last-child {
  margin-bottom: 0; }

.template-section .contacts-item-title {
  font-size: 18px;
  font-weight: 700;
  color: #000; }

.template-section .contacts-item-content {
  margin-top: 10px; }

.template-section .contacts-item-content-text {
  font-size: 14px;
  line-height: 1.6em;
  color: #444444; }

.template-section .contacts-item-link {
  display: inline-block;
  margin-top: 15px;
  color: #444444;
  font-size: 14px;
  line-height: 1em;
  font-weight: 700; }

.template-section .contacts-item-link.contacts-label {
  margin-right: 5px; }

.template-section .contacts-item-link span {
  display: inline-block;
  position: relative; }

.template-section .contacts-item-link span:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #444444;
  position: absolute;
  bottom: 0;
  left: 0; }

.template-section .map-grid {
  font-size: 0;
  display: flex;
  flex-wrap: wrap;
  overflow: hidden; }

.template-section .map-item {
  width: 100%;
  height: 400px;
  display: inline-block;
  vertical-align: top;
  background: #f3f3f3; }

.template-section .map-item-wrap {
  width: 100%;
  height: 100%; }

.template-section .map-contacts {
  width: 100%;
  height: 100%; }

.template-section .map-contacts div {
  position: static; }

.template-section .info-item {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  background: #f3f3f3;
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 40px;
  padding-bottom: 40px; }

.template-section .info-row {
  font-size: 0;
  margin-bottom: 40px; }

.template-section .info-row:last-child {
  margin-bottom: 0; }

.template-section .info-icon-image {
  width: 72px;
  display: inline-block;
  vertical-align: middle; }

.template-section .info-icon {
  width: 120px;
  height: 120px;
  border: 1px solid #e2e2e2;
  border-radius: 120px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  text-align: center; }

.template-section .info-content-container {
  width: 100%;
  max-width: 580px;
  display: inline-block;
  vertical-align: middle;
  margin-top: 5px; }

.template-section .info-content-container p {
  font-size: 14px;
  line-height: 1.5em;
  color: #444444; }

.template-section .info-content-text-container {
  margin-top: 5px; }

.template-section .info-content-link {
  display: inline-block;
  font-size: 14px;
  color: #ed1c24;
  position: relative; }

.template-section .info-content-link:after {
  content: '';
  width: 100%;
  height: 1px;
  background: #ed1c24;
  position: absolute;
  bottom: 0;
  left: 0; }

.template-section .info-window-text {
  font-size: 14px;
  color: #444444;
  margin-top: 15px;
  margin-bottom: 15px; }

.template-section .info_content {
  max-width: 250px; }

@media (min-width: 640px) {
  .template-section .main-contacts-item {
    width: 50%; }
  .template-section .info-item {
    padding-top: 30px;
    padding-bottom: 40px; }
  .template-section .info-content-container {
    width: calc(100% - 120px);
    padding-left: 20px;
    margin-top: 0; }
  .template-section .info-row {
    margin-bottom: 25px; }
  .template-section .info-content-text-container {
    margin-top: 10px; } }

@media (min-width: 720px) {
  .template-section .info-item {
    padding-left: 40px;
    padding-right: 40px; }
  .template-section .map-item {
    height: 500px; } }

@media (min-width: 1025px) {
  .template-section .contact-page .main-wrap-content {
    padding-left: 20px;
    padding-right: 20px; }
  .template-section .contact-page .contacts-item-content-text,
  .template-section .contact-page .contacts-item-link:not(span) {
    font-size: 13px; }
  .template-section .contacts-item-content {
    margin-top: 1.82292vw; }
  .template-section .contacts-item-link span:after {
    width: 0;
    left: 50%;
    -webkit-transition: width .4s, left .4s;
    -moz-transition: width .4s, left .4s;
    -ms-transition: width .4s, left .4s;
    -o-transition: width .4s, left .4s;
    transition: width .4s, left .4s; }
  .template-section .contacts-item-link:hover span:after {
    width: 100%;
    left: 0; }
  .template-section .main-contacts-item {
    width: 20%;
    margin-bottom: 0; }
  .template-section .info-item {
    padding-left: 50px;
    padding-right: 50px; }
  .template-section .info-content-container {
    padding-left: 2.08333vw; }
  .template-section .info-content-link:after {
    width: 0;
    left: 50%;
    -webkit-transition: width .4s, left .4s;
    -moz-transition: width .4s, left .4s;
    -ms-transition: width .4s, left .4s;
    -o-transition: width .4s, left .4s;
    transition: width .4s, left .4s; }
  .template-section .info-content-link:hover:after {
    width: 100%;
    left: 0; } }

@media (min-width: 1367px) {
  .template-section .info-item {
    padding-right: 5.20833vw; } }

@media (min-width: 1441px) {
  .template-section .map-item {
    width: 50%;
    height: auto; }
  .template-section .info-item {
    width: 50%; } }

@media (min-width: 1501px) {
  .template-section .contact-page .main-wrap-content {
    padding-left: 10.41667vw;
    padding-right: 10.41667vw; }
  .template-section .info-item {
    padding-right: 10.41667vw; } }

@media (min-width: 1661px) {
  .template-section .contact-page .contacts-item-content-text,
  .template-section .contact-page .contacts-item-link {
    font-size: 14px; }
  .template-section .info-item {
    padding-right: 13.02083vw; } }

@media (min-width: 1851px) {
  .template-section .contact-page .main-wrap-content {
    padding-left: 11.10417vw;
    padding-right: 11.10417vw; }
  .template-section .info-item {
    padding-right: 15.10417vw; } }

@media (min-width: 1921px) {
  .template-section .info-item {
    padding-right: 340px; } }

.news-details {
  background: #f3f3f3; }

.news-details .details-news-grid {
  font-size: 0; }

.news-details .details-news-item {
  width: 100%;
  margin-bottom: 20px; }

.news-details .details-news-image-wrap {
  display: inline-block; }

.news-details .details-news-image {
  max-width: 100%;
  display: inline-block; }

.news-details .news-date-text {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: #282828; }

.news-details .details-news-content-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.3em;
  color: #282828; }

.news-details .details-news-content-text h1 {
  font-size: 28px;
  color: #282828;
  margin-bottom: 15px; }

.news-details .details-news-content-text h2 {
  font-size: 26px;
  color: #282828;
  margin-bottom: 15px; }

.news-details .details-news-content-text h3 {
  font-size: 24px;
  color: #282828;
  margin-bottom: 15px; }

.news-details .details-news-content-text h4 {
  font-size: 22px;
  color: #282828;
  margin-bottom: 15px; }

.news-details .details-news-content-text h5 {
  font-size: 20px;
  color: #282828;
  margin-bottom: 15px; }

.news-details .details-news-content-text h6 {
  font-size: 18px;
  color: #282828;
  margin-bottom: 15px; }

.news-details .details-news-content-text p {
  margin-bottom: 15px; }

.news-details .details-news-content-text strong {
  font-weight: 700; }

.news-details .details-news-content-text a {
  font-size: 14px;
  line-height: 1.3em;
  color: #282828;
  text-decoration: underline; }

.news-details .details-news-content-text i {
  font-style: italic; }

.news-details .details-news-content-text ul {
  list-style-type: none;
  font-size: 14px;
  line-height: 1.3em;
  color: #282828;
  padding: 0;
  margin: 0;
  margin-bottom: 15px; }

.news-details .details-news-content-text ul li {
  padding-left: 20px;
  margin-bottom: 10px; }

.news-details .details-news-content-text ul li:before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 10px;
  background: #ed1c24;
  position: absolute;
  top: 5px;
  left: 0; }

.news-details .detail-news-btn-wrap {
  padding-top: 15px; }

@media (min-width: 1025px) {
  .news-details .details-news-item {
    width: 50%;
    display: inline-block;
    vertical-align: top;
    margin-bottom: 0; }
  .news-details .details-news-content {
    padding-left: 2.08333vw; }
  .news-details .details-news-content-text {
    color: #282828; }
  .news-details .details-news-content-text h1 {
    font-size: 36px; }
  .news-details .details-news-content-text h2 {
    font-size: 32px;
    color: #282828;
    margin-bottom: 15px; }
  .news-details .details-news-content-text h3 {
    font-size: 30px;
    color: #282828;
    margin-bottom: 15px; }
  .news-details .details-news-content-text h4 {
    font-size: 28px;
    color: #282828;
    margin-bottom: 15px; }
  .news-details .details-news-content-text h5 {
    font-size: 26px;
    color: #282828;
    margin-bottom: 15px; }
  .news-details .details-news-content-text h6 {
    font-size: 24px;
    color: #282828;
    margin-bottom: 15px; } }

@media (min-width: 1921px) {
  .news-details .details-news-content {
    padding-left: 40px; } }

.template-section .price-color-text .old {
  color: #000; }

.template-section.dictionaries-section .template-top-section .medium-title {
  color: #fff; }

.template-section.dictionaries-section .template-top-section h6 {
  color: #fff; }

.template-section.dictionaries-section .filter-wrap {
  margin-left: -12px;
  margin-right: -12px;
  font-size: 0; }

.template-section.dictionaries-section .filter-wrap-sort {
  position: relative;
  padding: 20px;
  z-index: 1; }

.template-section.dictionaries-section .filter-wrap-sort .dictionaries-sort-container {
  position: absolute;
  right: 20px;
  top: 18px; }

.template-section.dictionaries-section .filter-wrap-sort .filter-label-sort {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  line-height: 1.2em;
  font-weight: 800;
  color: #282828;
  margin-right: 20px; }

.template-section.dictionaries-section .filter-wrap-sort .filter-select-sort {
  max-width: 250px;
  min-width: 190px;
  width: 13.02083vw;
  height: 45px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #e2e2e2;
  border-radius: 2px;
  padding: 0 15px;
  padding-right: 45px;
  font-size: 12px;
  line-height: 1.2em;
  font-weight: 800;
  color: #282828;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  position: relative;
  background: #fff url(../images/elements/select.svg) no-repeat center right; }

.template-section.dictionaries-section .filter-wrap-sort .filter-select-sort::-ms-expand {
  display: none; }

.template-section .template-nav-filter {
  background: #f3f3f3;
  text-align: center;
  padding: 30px 20px; }

.template-section .filter-group {
  width: 100%;
  display: inline-block;
  vertical-align: bottom;
  padding-left: 12px;
  padding-right: 12px;
  margin-bottom: 10px;
  text-align: left; }

.template-section .filter-group.right-align {
  margin-top: 20px; }

.template-section .filter-label {
  width: 100%;
  display: inline-block;
  vertical-align: middle;
  font-size: 14px;
  color: #000;
  padding-right: 5px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: left; }

.template-section .filter-select::-ms-expand {
  display: none; }

.template-section .filter-select {
  width: 100%;
  height: 45px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 0 15px;
  padding-right: 45px;
  margin-top: 5px;
  font-size: 14px;
  line-height: 1.2em;
  color: #282828;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  position: relative;
  background: #fff url(../images/elements/select.svg) no-repeat center right; }

.template-section .dictionaries-grid {
  padding-top: 40px;
  padding-bottom: 30px;
  overflow: hidden;
  font-size: 0; }

.template-section .dictionaries-grid-wrap {
  margin-left: -10px;
  margin-right: -10px;
  display: flex;
  flex-wrap: wrap; }

.template-section .dictionaries-grid-item {
  padding-left: 10px;
  padding-right: 10px;
  margin-bottom: 20px; }

.template-section .dictionaries-grid-item-wrap {
  width: 100%;
  height: 100%;
  background: #f3f3f3;
  padding: 35px 20px; }

.template-section .dictionaries-label-image {
  width: 70px; }

.template-section .dictionaries-label-item {
  display: inline-block;
  vertical-align: top; }

.template-section .dictionaries-content-item {
  margin-top: 10px; }

.template-section .dictionaries-content-title-wrap .small-title {
  color: #000;
  font-weight: 700; }

.template-section .dictionaries-content {
  margin-top: 20px; }

.template-section .dictionaries-content p {
  font-size: 16px;
  line-height: 1.5em;
  color: #444444; }

.template-section .price-row {
  margin-top: 25px; }

.template-section .price-label {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 700;
  color: #000; }

.template-section .price-color-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
  font-weight: 700;
  color: #ed1c24;
  margin-left: 5px; }

.template-section .platform-icon-item {
  width: 30px;
  height: 30px;
  border-radius: 40px;
  background: #fff;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  margin-right: 10px;
  margin-bottom: 10px; }

.template-section .platform-icon-wrap {
  width: 20px;
  display: inline-block;
  vertical-align: middle; }

.template-section .bottom-row {
  margin-top: 15px;
  height: 160px; }

.template-section .buttons-item-container {
  margin-top: 20px; }

.template-section .button-item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 10px; }

.template-section .button-item:last-child {
  margin-right: 0; }

.template-section .load-more-wrap {
  text-align: center; }

@media (min-width: 640px) {
  .template-section .template-nav-filter {
    padding: 30px 40px; }
  .template-section .filter-group {
    width: 50%;
    margin-bottom: 20px; }
  .template-section .filter-group:nth-child(n+3) {
    margin-bottom: 0; }
  .template-section .filter-group.right-align {
    text-align: right;
    margin-top: 0; }
  .template-section .dictionaries-content-item {
    width: calc(100% - 70px);
    height: 100%;
    display: inline-block;
    vertical-align: top;
    padding-left: 35px;
    margin-top: 0; }
  .template-section .bottom-row {
    height: 100px; } }

@media (min-width: 720px) {
  .template-section .template-nav-filter {
    padding: 30px 40px; }
  .template-section .dictionaries-grid-item-wrap {
    padding: 35px 40px; }
  .template-section .bottom-row {
    margin-top: 15px;
    -ms-box-orient: horizontal;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-around;
    justify-content: space-around;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-align-items: stretch;
    align-items: stretch; }
  .template-section .app-platforms {
    flex: 1; }
  .template-section .buttons-item-container {
    margin-top: 20px;
    flex: 2; } }

@media (min-width: 1025px) {
  .template-section .template-nav-filter {
    padding: 15px 40px; }
  .template-section .filter-select {
    width: calc(100% - 60px);
    font-size: 16px;
    margin-top: 0; }
  .template-section .filter-label {
    width: 60px;
    font-size: 16px;
    text-align: right; }
  .template-section .filter-group {
    width: 25%;
    max-width: 330px;
    vertical-align: middle;
    padding-right: 1.30208vw;
    margin-bottom: 0; }
  .template-section .filter-group:nth-child(even) {
    padding-right: 1.30208vw; }
  .template-section .filter-group:last-child {
    padding-right: 0; }
  .template-section .dictionaries-grid {
    padding-bottom: 2.60417vw; } }

@media (min-width: 1151px) {
  .template-section .dictionaries-grid-item {
    width: 50%;
    display: inline-block;
    vertical-align: top; }
  .template-section .dictionaries-content-item-inner {
    height: 100%;
    padding-bottom: 120px; }
  .template-section .bottom-row {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0; } }

@media (min-width: 1367px) {
  .template-section .platform-icon-item {
    width: 36px;
    height: 36px; }
  .template-section .platform-icon-wrap {
    width: 25px; }
  .template-section .dictionaries-grid-item {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px; }
  .template-section .dictionaries-grid-wrap {
    margin-left: -20px;
    margin-right: -20px; } }

@media (min-width: 1661px) {
  .template-section .dictionaries-content-item-inner {
    padding-bottom: 75px; }
  .template-section .bottom-row {
    height: 60px; }
  .template-section .app-platforms {
    width: calc(100% - 320px);
    display: inline-block;
    vertical-align: middle; }
  .template-section .buttons-item-container {
    width: 320px;
    display: inline-block;
    vertical-align: middle;
    text-align: right;
    margin-top: 0; } }

.template-inner-section .template-inner-intro {
  padding-top: 60px;
  padding-bottom: 60px; }

.template-inner-section .template-inner-intro-wrap {
  padding-left: 20px;
  padding-right: 20px; }

.template-inner-section .intro-grid {
  width: 100%;
  font-size: 0;
  display: inline-block;
  vertical-align: middle; }

.template-inner-section .template-image {
  width: 100%;
  display: inline-block; }

.template-inner-section .intro-label-image {
  width: 70px;
  display: inline-block; }

.template-inner-section .intro-label-item {
  display: inline-block;
  vertical-align: top; }

.template-inner-section .intro-content-item {
  width: 100%;
  margin-top: 10px; }

.template-inner-section .intro-content-item .medium-title {
  color: #fff; }

.template-inner-section .intro-content-item .medium-title .pill {
  background: #ed1c24; }

.template-inner-section .intro-content-item-inner {
  display: inline-block; }

.template-inner-section .intro-content-text {
  font-size: 20px;
  color: #fff;
  margin-top: 10px; }

.template-inner-section .price-container {
  display: none;
  margin-top: 20px; }

.template-inner-section .price-container h4 {
  color: white;
  font-weight: bold; }

.template-inner-section .price-container h4 span {
  display: none;
  font-size: 20px;
  font-weight: normal; }

.template-inner-section .price-container h6 {
  color: #ed1c24;
  text-decoration: line-through;
  font-weight: bold; }

.template-inner-section .intro-btn-container {
  margin-top: 15px; }

.template-inner-section .intro-btn-item {
  display: inline-block;
  vertical-align: middle;
  margin-top: 10px;
  margin-bottom: 10px;
  margin-right: 10px; }

.template-inner-section .intro-btn-item:last-child {
  margin-right: 0; }

.template-inner-section .intro-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  opacity: .5; }

@media (min-width: 720px) {
  .template-inner-section .template-inner-intro-wrap {
    padding-left: 40px;
    padding-right: 40px; }
  .template-inner-section .intro-label-item {
    margin-top: 5px; }
  .template-inner-section .intro-content-item {
    width: calc(100% - 80px);
    display: inline-block;
    vertical-align: top;
    padding-left: 20px;
    margin-top: 0; } }

@media (min-width: 1025px) {
  .template-inner-section .template-inner-intro {
    padding-top: 5.72917vw;
    padding-bottom: 5.72917vw; }
  .template-inner-section .template-inner-intro-wrap {
    padding-left: 3.64583vw;
    padding-right: 3.64583vw; }
  .template-inner-section .intro-content-item {
    padding-left: 2.08333vw; }
  .template-inner-section .intro-label-item {
    margin-top: 0.52083vw; }
  .template-inner-section .price-container {
    margin-top: 1.04167vw; }
  .template-inner-section .intro-btn-container {
    margin-top: 0.78125vw; }
  .template-inner-section .intro-label-image {
    width: 80px; } }

@media (min-width: 1367px) {
  .template-inner-section .intro-overlay {
    display: none; } }

@media (min-width: 1921px) {
  .template-inner-section .template-inner-intro {
    padding-top: 110px;
    padding-bottom: 110px; } }

.description-section {
  background: #f3f3f3;
  color: #000;
  overflow: hidden; }

.description-section .info-data-row {
  font-size: 0;
  margin-top: 20px; }

.description-section .info-data-item {
  min-width: 140px;
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
  margin-bottom: 30px; }

.description-section .data-item-icon {
  width: 42px;
  height: 42px;
  display: inline-block;
  vertical-align: middle;
  border: 1px solid #666666;
  text-align: center;
  border-radius: 50px; }

.description-section .data-item-text {
  width: calc(100% - 42px);
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px; }

.description-section .data-item-text .item-text-top {
  width: 100%;
  display: inline-block;
  font-size: 12px;
  color: #ed1c24; }

.description-section .data-item-text .item-text {
  width: 100%;
  display: inline-block;
  font-size: 16px;
  color: #343941; }

.description-section .data-item-image {
  display: inline-block;
  vertical-align: middle; }

.description-section .data-item-image.whats-new {
  width: 24px;
  height: 24px; }

.description-section .data-item-image.whats-new .template-image {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  background-image: url(../images/dictionaries/version-white.png); }

.description-section .info-data-content p {
  font-size: 16px;
  margin-bottom: 5px; }

.description-section .info-data-content p:last-child {
  margin-bottom: 0; }

.description-section .info-data-content strong {
  font-weight: 600; }

.description-section .info-data-content-sub {
  margin-top: 30px; }

.description-section .info-data-content-sub p {
  font-size: 16px;
  margin-bottom: 5px; }

.description-section .info-data-content-sub p:last-child {
  margin-bottom: 0; }

.description-section .info-data-content-sub strong {
  font-weight: 600; }

.description-section .description-content-container {
  margin-top: 30px; }

.description-section .description-content-container a:not(.link-btn) {
  color: #ed1c24; }

.description-section .description-content-container a:not(.link-btn):hover {
  text-decoration: underline; }

.description-section .description-content-item {
  margin-bottom: 30px; }

.description-section .description-content-item ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }

.description-section .description-content-item ul li {
  font-size: 14px;
  line-height: 1.6em;
  color: #343941;
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px; }

.description-section .description-content-item ul li:not(.no-list-style):after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: #ed1c24;
  position: absolute;
  top: 8px;
  left: 0; }

.description-section .description-content-item p {
  font-size: 14px;
  line-height: 1.6em;
  color: #343941;
  position: relative;
  margin-bottom: 10px; }

.description-section .description-content-item h6 {
  font-size: 20px;
  line-height: 1.6em;
  color: #343941;
  position: relative;
  margin-top: 30px;
  margin-bottom: 20px; }

.description-section .description-content-list {
  margin-top: 20px; }

.description-section .description-content-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }

.description-section .description-content-list ul li {
  font-size: 14px;
  line-height: 1.6em;
  color: #343941;
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px; }

.description-section .description-content-list ul li:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: #ed1c24;
  position: absolute;
  top: 8px;
  left: 0; }

.description-section .show-hide-button {
  position: absolute;
  font-weight: 600;
  bottom: 0;
  padding: 20px 0px 0px 30px;
  height: 70px;
  width: calc(100% - 30px);
  background: #ed1c24; }

.description-section .show-hide-button .info-data-row, .description-section .show-hide-button .info-data-item {
  margin: 0; }

.description-section .show-hide-button .info-data-row .info-data-item, .description-section .show-hide-button .info-data-item .info-data-item {
  position: relative; }

.description-section .show-hide-button .info-data-row .info-data-item .show-hide-versions, .description-section .show-hide-button .info-data-item .info-data-item .show-hide-versions {
  padding: 5px 0 5px 0;
  border: 0; }

.description-section .show-hide-button .info-data-row .info-data-item .show-hide-versions div, .description-section .show-hide-button .info-data-item .info-data-item .show-hide-versions div {
  display: none; }

.description-section .show-hide-button .info-data-row .info-data-item .show-hide-versions div.visible, .description-section .show-hide-button .info-data-item .info-data-item .show-hide-versions div.visible {
  display: inline-block; }

.description-section .show-hide-button .info-data-row .info-data-item .show-hide-versions .show-hide-link, .description-section .show-hide-button .info-data-item .info-data-item .show-hide-versions .show-hide-link {
  padding: 0 25px 0; }

.description-section .show-hide-button .info-data-row .info-data-item .show-item-icon, .description-section .show-hide-button .info-data-item .info-data-item .show-item-icon {
  position: absolute;
  left: 0; }

.description-section .show-hide-button .info-data-row .info-data-item .show-item-icon.more, .description-section .show-hide-button .info-data-item .info-data-item .show-item-icon.more {
  border: solid #ffffff;
  border-width: 0px 1px 1px 0;
  display: inline-block;
  padding: 6px;
  top: -3px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg); }

.description-section .show-hide-button .info-data-row .info-data-item .show-item-icon.less, .description-section .show-hide-button .info-data-item .info-data-item .show-item-icon.less {
  border: solid #ffffff;
  border-width: 0px 1px 1px 0;
  display: inline-block;
  padding: 6px;
  top: 4px;
  transform: rotate(225deg);
  -webkit-transform: rotate(225deg); }

.description-section .description-alert-item {
  color: #fff;
  font-size: 0;
  margin-bottom: 30px;
  top: 0;
  right: 0;
  text-overflow: ellipsis;
  overflow: hidden; }

.description-section .description-alert-item .item-text-top {
  color: #fff; }

.description-section .description-alert-item .item-text {
  color: #fff; }

.description-section .description-alert-item .data-item-icon {
  border-color: #fff; }

.description-section .description-alert-item .small-title {
  color: #fff; }

.description-section .description-alert-item .description-content-list {
  margin-top: 0; }

.description-section .description-alert-item .description-content-list ul li {
  color: #fff; }

.description-section .description-alert-item .description-content-list ul li:after {
  background: #fff; }

.description-section .description-alert-item-wrap {
  background: #ed1c24;
  padding: 30px; }

.description-section .description-alert-item-wrap .static-content {
  padding: 1px;
  min-height: 245px;
  font-weight: 500; }

.description-section .description-alert-item-wrap:last-child {
  padding: 30px 30px 60px; }

.description-section .discription-btn-container {
  font-size: 0; }

.description-section .discription-btn-item {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  margin-bottom: 10px; }

.description-section .scroll-top-container {
  margin-top: 20px; }

@media (min-width: 1025px) {
  .description-section .scroll-top-container {
    display: inline-block;
    position: absolute;
    bottom: 7px;
    right: 0;
    margin-top: 0; }
  .description-section .scroll-top-container.scroll-top-wide {
    bottom: -60px; } }

@media (min-width: 1025px) {
  .description-section .info-data-row {
    margin-top: 1.5625vw; }
  .description-section .info-data-item {
    margin-bottom: 1.82292vw; }
  .description-section .description-content-container {
    margin-top: 40px; }
  .description-section .description-content-list {
    margin-top: 2.08333vw; }
  .description-section .description-content-item {
    width: 50%;
    padding-right: 20px;
    margin-bottom: 2.60417vw; }
  .description-section .description-alert-item {
    width: 50%;
    padding-left: 20px;
    margin-bottom: 0;
    position: absolute;
    top: 0;
    right: 0; } }

@media (min-width: 1025px) {
  .description-section .info-data-row {
    margin-top: 30px; }
  .description-section .info-data-item {
    margin-bottom: 35px; }
  .description-section .description-content-list {
    margin-top: 40px; }
  .description-section .description-content-item {
    margin-bottom: 50px; } }

.screenshots-section {
  background: #f9f9f9; }

.screenshots-section .medium-regular-title {
  color: #2b2e40;
  font-weight: 300; }

.screenshots-section .screenshots-slider {
  font-size: 0;
  cursor: pointer; }

.screenshots-section .screenshots-slide {
  width: auto;
  display: inline-block; }

.screenshots-section .screenshots-image {
  max-width: 100%;
  max-height: 100%;
  display: inline-block; }

.screenshots-section .screenshot-subtitle {
  font-size: 16px;
  font-weight: 700;
  color: #2b2e40;
  margin-top: 10px; }

.screenshots-section .screenshots-image-wrap {
  height: 450px;
  display: inline-block; }

.screenshots-section .screenshots-slide-inner {
  display: inline-block; }

.screenshots-section .slider-controls {
  display: none; }

.screenshots-section .slider-btn {
  width: 45px;
  height: 45px;
  display: inline-block;
  text-align: center;
  border: 1px solid #000;
  border-radius: 60px;
  margin-left: 10px;
  cursor: pointer; }

.screenshots-section .slider-btn .template-image-hover {
  display: none; }

.screenshots-section .slider-btn-image-wrap {
  width: 18px;
  display: inline-block;
  vertical-align: middle; }

.screenshots-section .slider-prev .slider-btn-image-wrap {
  -webkit-transform: scale(-1);
  -ms-transform: scale(-1);
  transform: scale(-1); }

.screenshots-section .screenshots-slider-outer {
  padding-top: 30px;
  position: relative; }

@media (min-width: 480px) {
  .screenshots-section .slider-controls {
    font-size: 0;
    display: block;
    position: absolute;
    bottom: 100%;
    right: 0; } }

@media (min-width: 1025px) {
  .screenshots-section .screenshots-slider-outer {
    padding-top: 2.60417vw; }
  .screenshots-section .slider-btn {
    -webkit-transition: border-color .4s, background .4s;
    -moz-transition: border-color .4s, background .4s;
    -ms-transition: border-color .4s, background .4s;
    -o-transition: border-color .4s, background .4s;
    transition: border-color .4s, background .4s; }
  .screenshots-section .slider-btn .template-image-hover {
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .4s, visibility .4s;
    -moz-transition: opacity .4s, visibility .4s;
    -ms-transition: opacity .4s, visibility .4s;
    -o-transition: opacity .4s, visibility .4s;
    transition: opacity .4s, visibility .4s; }
  .screenshots-section .slider-btn .template-image {
    -webkit-transition: opacity .4s, visibility .4s;
    -moz-transition: opacity .4s, visibility .4s;
    -ms-transition: opacity .4s, visibility .4s;
    -o-transition: opacity .4s, visibility .4s;
    transition: opacity .4s, visibility .4s; }
  .screenshots-section .slider-btn:hover {
    background: #ed1c24;
    border-color: #ed1c24; }
  .screenshots-section .slider-btn:hover .template-image {
    opacity: 0;
    visibility: hidden; }
  .screenshots-section .slider-btn:hover .template-image-hover {
    opacity: 1;
    visibility: visible; }
  .screenshots-section .screenshots-title-wrap {
    padding-right: 150px; }
  .screenshots-section .screenshot-subtitle {
    margin-top: 1.5625vw; }
  .screenshots-section .screenshots-image-wrap {
    height: 33.85417vw; } }

@media (min-width: 1367px) {
  .screenshots-section .slider-btn {
    width: 60px;
    height: 60px; }
  .screenshots-section .screenshots-image-wrap {
    height: 28.38542vw; } }

@media (min-width: 1921px) {
  .screenshots-section .screenshots-image-wrap {
    height: 545px; } }

.platform-grid {
  width: 100%;
  font-size: 0; }

.platform-grid .platform-grid-wrap {
  display: flex;
  flex-flow: row wrap;
  background: #f3f3f3; }

.platform-grid .platform-item {
  flex: 1;
  padding: 15px;
  position: relative;
  border-right: 1px solid #e2e2e2; }

.platform-grid .platform-item:last-child {
  border-right: none; }

.platform-grid .platform-item:after {
  content: '';
  display: inline-block;
  width: 0;
  height: 3px;
  background: #ed1c24;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transition: width .4s, left .4s;
  -moz-transition: width .4s, left .4s;
  -ms-transition: width .4s, left .4s;
  -o-transition: width .4s, left .4s;
  transition: width .4s, left .4s; }

.platform-grid .platform-item.active {
  pointer-events: none; }

.platform-grid .platform-item.active:after {
  width: 100%;
  left: 0; }

.platform-grid .platform-item.active .template-image-hover {
  opacity: 1;
  visibility: visible; }

.platform-grid .platform-item.active .platform-text-item {
  color: #ed1c24; }

.platform-grid .platform-item-content {
  width: 100%;
  display: inline-block;
  vertical-align: middle; }

.platform-grid .platform-image-item {
  width: 25px;
  position: relative;
  display: inline-block; }

.platform-grid .template-image {
  width: 100%;
  display: inline-block;
  -webkit-transition: opacity .4s, vivibility .4s;
  -moz-transition: opacity .4s, vivibility .4s;
  -ms-transition: opacity .4s, vivibility .4s;
  -o-transition: opacity .4s, vivibility .4s;
  transition: opacity .4s, vivibility .4s; }

.platform-grid .template-image-hover {
  width: 100%;
  height: 100%;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 1;
  -webkit-transition: opacity .4s, vivibility .4s;
  -moz-transition: opacity .4s, vivibility .4s;
  -ms-transition: opacity .4s, vivibility .4s;
  -o-transition: opacity .4s, vivibility .4s;
  transition: opacity .4s, vivibility .4s; }

.platform-grid .platform-text-item {
  display: none; }

@media (min-width: 1025px) {
  .platform-grid .platform-text-item {
    display: inline-block;
    vertical-align: middle;
    padding-left: 15px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    font-size: 16px;
    -webkit-transition: color .4s;
    -moz-transition: color .4s;
    -ms-transition: color .4s;
    -o-transition: color .4s;
    transition: color .4s;
    color: #000; }
  .platform-grid .platform-item:hover:after {
    width: 100%;
    left: 0; }
  .platform-grid .platform-item:hover .template-image-hover {
    opacity: 1;
    visibility: visible; }
  .platform-grid .platform-item:hover .platform-text-item {
    color: #ed1c24; } }

@media (min-width: 1367px) {
  .platform-grid .platform-text-item {
    font-size: 18px; }
  .platform-grid .platform-image-item {
    width: 30px; }
  .platform-grid .platform-item {
    padding: 20px; } }

.template-section .bg-image {
  background-image: url("/images/company/careers-intro-bg.jpg"); }

.template-section .careers-content-section {
  background: #f3f3f3; }

.template-section .careers-content-section .content-title-text,
.template-section .careers-content-section .content-title-text * {
  font-size: 16px !important; }

.template-section .careers-content-section .profile-grid-item {
  padding-top: 50px; }

.template-section .careers-content-section .content-title-wrap {
  background: #fff; }

.template-section .careers-content-section ul, .template-section .careers-content-section p, .template-section .careers-content-section strong {
  color: #000; }

.template-section .careers-content-section li {
  text-align: initial; }

.template-section .careers-content-section h2, .template-section .careers-content-section h6, .template-section .careers-content-section .profile-grid {
  margin-bottom: 30px; }

.template-section .careers-content-section .content-title-text {
  margin: 0 10%; }

.template-inner-section.aqua-mail-section .template-inner-intro {
  overflow: hidden; }

.template-inner-section.aqua-mail-section .template-inner-section-wrap {
  overflow: hidden; }

.template-inner-section.aqua-mail-section .intro-content-item-inner h1 {
  white-space: nowrap; }

.template-inner-section.aqua-mail-section .intro-content-item-inner .price-container {
  display: block; }

.template-inner-section .template-product-top {
  padding-top: 40px;
  padding-bottom: 40px;
  z-index: 2;
  font-size: 0; }

.template-inner-section .template-top-text {
  margin-top: 20px; }

.template-inner-section .template-top-text p {
  font-size: 16px;
  line-height: 1.5em;
  color: #444444;
  margin-bottom: 15px; }

.template-inner-section .template-top-text p:last-child {
  margin-bottom: 0; }

.template-inner-section .template-top-text strong {
  font-weight: 700; }

.template-inner-section .template-top-section-image {
  width: 220px;
  display: inline-block;
  z-index: 1; }

.template-inner-section .template-product-middle {
  padding-top: 40px;
  padding-bottom: 40px; }

.template-inner-section .aqua-mail-middle-section {
  text-align: right; }

.template-inner-section .aqua-mail-middle-list {
  margin-top: 25px; }

.template-inner-section .aqua-mail-middle-list ul {
  list-style-type: none;
  padding: 0;
  margin: 0; }

.template-inner-section .aqua-mail-middle-list ul li {
  padding-left: 15px;
  font-size: 16px;
  line-height: 1.5em;
  color: #444444;
  margin-bottom: 15px; }

.template-inner-section .aqua-mail-middle-list ul li:before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: #444444;
  position: absolute;
  top: 9px;
  left: 0; }

.template-inner-section .aqua-mail-middle-list ul li:last-child {
  margin-bottom: 0; }

.template-inner-section .aqua-mail-middle-list ul li span {
  display: block; }

.template-inner-section .aqua-mail-middle-list strong {
  font-weight: 700; }

.template-inner-section .aqua-mail-middle-inner {
  text-align: left;
  padding-top: 36%; }

.template-inner-section .aqua-mail-middle-image {
  width: 100%;
  position: absolute;
  top: -105px;
  left: 0;
  z-index: -1; }

.template-inner-section .template-product-bottom {
  padding-top: 20px; }

.template-inner-section .aqua-mail-bottom-grid {
  font-size: 0;
  text-align: right; }

.template-inner-section .aqua-mail-bottom-grid-inner {
  text-align: left; }

.template-inner-section .aqua-mail-bottom-info {
  padding-bottom: 30px; }

.template-inner-section .aqua-mail-bottom-image {
  display: none; }

.template-inner-section .aqua-mail-bottom-list {
  margin-top: 30px; }

.template-inner-section .aqua-mail-bottom-list-item {
  font-size: 0;
  margin-bottom: 30px; }

.template-inner-section .aqua-label-image {
  width: 60px;
  display: inline-block;
  vertical-align: top; }

.template-inner-section .aqua-mail-bottom-text {
  width: calc(100% - 60px);
  display: inline-block;
  vertical-align: top;
  padding-left: 15px; }

.template-inner-section .aqua-mail-bottom-text p {
  font-size: 16px;
  line-height: 1.5em;
  color: #444444; }

.template-inner-section .aqua-mail-bottom-text strong {
  font-weight: 700; }

.template-inner-section .template-top-title-wrap br {
  display: none; }

@media (min-width: 480px) {
  .template-inner-section .template-product-top-wrap {
    display: flex; }
  .template-inner-section .template-top-section-image {
    order: 2; }
  .template-inner-section .template-top-info {
    order: 1; }
  .template-inner-section .template-top-info {
    width: calc(100% - 220px);
    display: inline-block; }
  .template-inner-section .aqua-label-image {
    width: 70px; }
  .template-inner-section .aqua-mail-bottom-text {
    width: calc(100% - 70px); }
  .template-inner-section .aqua-mail-middle-image {
    top: -190px; } }

@media (min-width: 640px) {
  .template-inner-section .aqua-mail-middle-inner {
    width: 50%;
    max-width: 600px;
    display: inline-block;
    text-align: left;
    padding-top: 0; }
  .template-inner-section .aqua-mail-bottom-info {
    width: calc(100% - 180px);
    display: inline-block;
    vertical-align: top;
    padding-bottom: 30px;
    padding-right: 30px; }
  .template-inner-section .aqua-mail-bottom-image {
    width: 180px;
    display: inline-block;
    vertical-align: bottom; } }

@media (min-width: 720px) {
  .template-inner-section .template-top-section-image {
    bottom: 0;
    right: 0;
    position: absolute; }
  .template-inner-section .template-product-top-wrap {
    display: block; }
  .template-inner-section .template-top-title-wrap br {
    display: inline-block; } }

@media (min-width: 1025px) {
  .template-inner-section .template-product-top {
    padding-top: 5.72917vw;
    padding-bottom: 5.72917vw; }
  .template-inner-section .template-top-info {
    width: calc(100% - 25vw); }
  .template-inner-section .template-top-section-image {
    width: 23.59375vw;
    position: absolute;
    bottom: -4.16667vw;
    right: 0; }
  .template-inner-section .template-product-middle {
    padding-top: 6.25vw;
    padding-bottom: 10.9375vw; }
  .template-inner-section .aqua-mail-middle-image {
    top: -26.04167vw; }
  .template-inner-section .aqua-mail-middle-list {
    margin-top: 2.08333vw; }
  .template-inner-section .aqua-mail-middle-list ul li {
    margin-bottom: 1.5625vw; }
  .template-inner-section .template-product-bottom {
    padding-top: 4.16667vw; }
  .template-inner-section .aqua-mail-bottom-grid-inner {
    width: 74%;
    display: inline-block; }
  .template-inner-section .aqua-mail-bottom-image {
    width: 16.66vw; }
  .template-inner-section .aqua-mail-bottom-list {
    margin-top: 2.60417vw; }
  .template-inner-section .aqua-mail-bottom-list-item {
    margin-bottom: 2.60417vw; }
  .template-inner-section .aqua-mail-bottom-text {
    padding-left: 1.30208vw; }
  .template-inner-section .aqua-mail-bottom-info {
    width: calc(100% - 16.66vw);
    padding-right: 3.64583vw; }
  .template-inner-section .aqua-label-image {
    width: 4.6875vw;
    min-width: 65px; }
  .template-inner-section .aqua-mail-bottom-text {
    width: calc(100% - 4.69vw); }
  .template-inner-section .template-top-text {
    margin-top: 30px; } }

@media (min-width: 1921px) {
  .template-inner-section .template-product-top {
    padding-top: 110px;
    padding-bottom: 110px; }
  .template-inner-section .template-product-bottom {
    padding-top: 12.16667vw; }
  .template-inner-section .template-product-middle {
    padding-top: 120px;
    padding-bottom: 210px; }
  .template-inner-section .template-top-section-image {
    width: 453px;
    bottom: -80px; }
  .template-inner-section .aqua-mail-middle-image {
    top: -500px; } }

.template-inner-section.pdf-extra-section .template-inner-section-wrap {
  overflow: hidden; }

.template-inner-section.pdf-extra-section .intro-content-text-inner {
  margin-bottom: 30px; }

.template-inner-section.pdf-extra-section .intro-content-text-inner:last-child {
  margin-bottom: 0; }

.template-inner-section.pdf-extra-section .intro-content-item-inner {
  width: 100%;
  max-width: 570px; }

.template-inner-section.pdf-extra-section .intro-content-item-inner h1 {
  white-space: nowrap; }

.template-inner-section.pdf-extra-section .intro-content-item-inner .price-container {
  display: block; }

.template-inner-section.pdf-extra-section .intro-content-item-inner .price-container h4 span {
  display: inline; }

.template-inner-section.pdf-extra-section .intro-bottom-container {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0; }

.template-inner-section.pdf-extra-section .intro-bottom-container-inner {
  height: 50px; }

.template-inner-section.pdf-extra-section .intro-image-wrap {
  width: 600px;
  display: inline-block;
  position: absolute;
  bottom: -65px;
  right: 0; }

.template-inner-section.pdf-extra-section .template-top-section-image {
  width: 100%;
  position: relative;
  bottom: 0;
  right: 0;
  display: inline-block;
  vertical-align: top; }

.template-inner-section.pdf-extra-section .template-top-info {
  margin-top: 30px;
  text-align: left; }

.template-inner-section.pdf-extra-section .template-product-top {
  font-size: 0; }

.template-inner-section.pdf-extra-section .top-icon-row {
  margin-top: 20px;
  font-size: 0; }

.template-inner-section.pdf-extra-section .icon-row-item {
  width: 30%;
  border-radius: 60px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 1.5% 6%;
  text-align: center; }

.template-inner-section.pdf-extra-section .icon-row-item:last-child {
  margin-right: 0; }

.template-inner-section.pdf-extra-section .icon-row-image {
  width: 40px;
  display: inline-block;
  vertical-align: middle; }

.template-inner-section.pdf-extra-section .icon-row-title {
  margin-top: 10px; }

.template-inner-section.pdf-extra-section .top-bg-image {
  display: none; }

.template-inner-section.pdf-extra-section .template-inner-intro {
  z-index: 3; }

.template-inner-section.pdf-extra-section .template-product-middle {
  z-index: 3; }

.template-inner-section.pdf-extra-section .middle-icons-grid {
  font-size: 0;
  text-align: center;
  margin-top: 30px;
  margin-left: -20px;
  margin-right: -20px; }

.template-inner-section.pdf-extra-section .middle-icon-item {
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
  padding-right: 20px; }

.template-inner-section.pdf-extra-section .middle-icon-item-double {
  width: 90%;
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
  padding-right: 20px; }

.template-inner-section.pdf-extra-section .middle-icon-image {
  display: none;
  width: 100%;
  max-width: 130px;
  margin: 0 auto; }

.template-inner-section.pdf-extra-section .middle-icon-image-lg {
  width: 100%;
  max-width: 520px;
  margin: 0 auto; }

.template-inner-section.pdf-extra-section .icon-title {
  text-align: center;
  font-size: 12px;
  color: #000;
  font-weight: 600; }

.template-inner-section.pdf-extra-section .pdf-extra-bottom-container {
  text-align: right; }

.template-inner-section.pdf-extra-section .pdf-extra-bottom-info {
  text-align: left; }

.template-inner-section.pdf-extra-section .bottom-bg-image {
  display: none; }

.template-inner-section.pdf-extra-section .template-product-bottom {
  padding-bottom: 50px; }

.template-inner-section.pdf-extra-section .intro-bottom-container {
  display: none; }

.template-inner-section.pdf-extra-section .template-product-top-wrap {
  display: block;
  text-align: center; }

@media (min-width: 480px) {
  .template-inner-section.pdf-extra-section .top-bg-image {
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .15; }
  .template-inner-section.pdf-extra-section .template-top-section-image {
    width: 160px;
    position: relative;
    bottom: 0;
    right: 0;
    display: inline-block;
    vertical-align: top; }
  .template-inner-section.pdf-extra-section .template-top-info {
    width: calc(100% - 160px);
    max-width: 540px;
    padding-left: 25px;
    display: inline-block;
    vertical-align: top;
    margin-top: 0; }
  .template-inner-section.pdf-extra-section .template-product-top-wrap {
    text-align: left; } }

@media (min-width: 720px) {
  .template-inner-section.pdf-extra-section .template-top-section-image {
    width: 26.04167vw;
    padding-top: 4.16667vw; }
  .template-inner-section.pdf-extra-section .template-top-info {
    width: calc(100% - 16.72vw);
    padding-left: 2.08333vw;
    padding-top: 4.16667vw;
    display: inline-block;
    vertical-align: top;
    max-width: 430px; }
  .template-inner-section.pdf-extra-section .icon-row-item {
    width: 16%;
    margin: 1%; }
  .template-inner-section.pdf-extra-section .middle-icon-item-double {
    width: 66.66%; }
  .template-inner-section.pdf-extra-section .middle-icon-image {
    display: block; } }

@media (min-width: 1025px) {
  .template-inner-section.pdf-extra-section .intro-bottom-container .main-wrap-content,
  .template-inner-section.pdf-extra-section .template-product-top .main-wrap-content {
    padding-left: 3.64583vw;
    padding-right: 3.64583vw; }
  .template-inner-section.pdf-extra-section .intro-content-text-inner {
    margin-bottom: 2.60417vw; }
  .template-inner-section.pdf-extra-section .intro-image-wrap {
    width: 37.5vw;
    bottom: -3.38542vw; }
  .template-inner-section.pdf-extra-section .template-top-section-image {
    width: 36.45833vw; }
  .template-inner-section.pdf-extra-section .top-icon-row {
    margin-top: 2.08333vw; }
  .template-inner-section.pdf-extra-section .icon-row-item {
    margin-right: 1.04167vw;
    margin-bottom: 1.04167vw; }
  .template-inner-section.pdf-extra-section .middle-icons-grid {
    margin-top: 3.125vw;
    margin-left: -3.125vw;
    margin-right: -3.125vw; }
  .template-inner-section.pdf-extra-section .icon-title-wrap {
    margin-top: 30px; }
  .template-inner-section.pdf-extra-section .middle-icon-item {
    padding-left: 4.16667vw;
    padding-right: 4.16667vw; }
  .template-inner-section.pdf-extra-section .template-product-middle {
    padding-top: 1.5625vw;
    padding-bottom: 2.60417vw; }
  .template-inner-section.pdf-extra-section .template-product-bottom {
    padding-top: 14.0625vw;
    padding-bottom: 20.83333vw;
    min-height: 57.29167vw; }
  .template-inner-section.pdf-extra-section .bottom-bg-image {
    width: 70.57292vw;
    max-width: 1355px;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0; }
  .template-inner-section.pdf-extra-section .pdf-extra-bottom-info {
    width: 48%;
    display: inline-block;
    text-align: left; }
  .template-inner-section.pdf-extra-section .pdf-extra-middle-inner {
    width: 51%; }
  .template-inner-section.pdf-extra-section .top-bg-image {
    opacity: 1; }
  .template-inner-section.pdf-extra-section .intro-bottom-container {
    display: block; } }

@media (min-width: 1281px) {
  .template-inner-section.pdf-extra-section .template-top-info {
    max-width: 540px; } }

@media (min-width: 1367px) {
  .template-inner-section.pdf-extra-section .icon-row-item {
    width: 70px;
    height: 70px; }
  .template-inner-section.pdf-extra-section .icon-title {
    text-align: center;
    font-size: 14px; } }

@media (min-width: 1921px) {
  .template-inner-section.pdf-extra-section .pdf-extra-bottom-info {
    margin-top: 270px; }
  .template-inner-section.pdf-extra-section .bottom-bg-image {
    max-width: 1165px; }
  .template-inner-section.pdf-extra-section .template-product-bottom {
    padding-bottom: 400px;
    min-height: 1100px; }
  .template-inner-section.pdf-extra-section .template-product-middle {
    padding-top: 30px;
    padding-bottom: 50px; } }

.template-inner-section.pdf-scanner-section .template-inner-intro {
  overflow: hidden; }

.template-inner-section.pdf-scanner-section .template-inner-section-wrap {
  overflow: hidden; }

.template-inner-section.pdf-scanner-section .pdf-intro-bg {
  display: none; }

.template-inner-section.pdf-scanner-section .intro-content-item-inner {
  max-width: 550px; }

.template-inner-section.pdf-scanner-section .pdf-grid {
  font-size: 0;
  text-align: center; }

.template-inner-section.pdf-scanner-section .pdf-grid-inner {
  display: block; }

.template-inner-section.pdf-scanner-section .template-top-info {
  text-align: right; }

.template-inner-section.pdf-scanner-section .template-product-list {
  max-width: 380px; }

.template-inner-section.pdf-scanner-section .template-top-section-image {
  display: inline-block;
  width: 170px;
  bottom: 0;
  position: relative; }

.template-inner-section.pdf-scanner-section .template-top-info {
  width: 100%; }

.template-inner-section.pdf-scanner-section .pdf-grid-image-item {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 30px; }

.template-inner-section.pdf-scanner-section .pdf-grid-content {
  text-align: left; }

.template-inner-section.pdf-scanner-section .pdf-middle-image {
  width: 170px;
  display: inline-block; }

.template-inner-section.pdf-scanner-section .pdf-middle-section {
  text-align: right; }

.template-inner-section.pdf-scanner-section .pdf-middle-section .pdf-grid-image-item {
  bottom: 0; }

.template-inner-section.pdf-scanner-section .pdf-content-text {
  margin-top: 20px; }

.template-inner-section.pdf-scanner-section .pdf-content-text p {
  font-size: 16px;
  color: #444444;
  line-height: 1.5em; }

.template-inner-section.pdf-scanner-section .pdf-top-bg-image {
  display: none; }

.template-inner-section.pdf-scanner-section .template-product-top {
  z-index: 0; }

.template-inner-section.pdf-scanner-section .pdf-content-row {
  font-size: 0;
  margin-bottom: 15px; }

.template-inner-section.pdf-scanner-section .pdf-content-row:last-child {
  margin-bottom: 0; }

.template-inner-section.pdf-scanner-section .pdf-row-icon {
  width: 55px;
  height: 55px;
  display: inline-block;
  vertical-align: middle;
  background: #2c4d79;
  border-radius: 50px;
  text-align: center; }

.template-inner-section.pdf-scanner-section .pdf-row-image {
  width: 34px;
  display: inline-block;
  vertical-align: middle; }

.template-inner-section.pdf-scanner-section .pdf-row-text {
  width: calc(100% - 65px);
  display: inline-block;
  vertical-align: middle;
  padding-left: 15px; }

.template-inner-section.pdf-scanner-section .pdf-row-text span {
  display: block;
  font-size: 16px;
  line-height: 1.5em;
  font-weight: 300; }

.template-inner-section.pdf-scanner-section .pdf-row-text strong {
  font-weight: 700; }

.template-inner-section.pdf-scanner-section .bottom-bg-image {
  display: none; }

.template-inner-section.pdf-scanner-section .template-product-bottom {
  padding-bottom: 60px; }

.template-inner-section.pdf-scanner-section .pdf-bottom-container .pdf-grid-content {
  width: 100%;
  padding-right: 0; }

.template-inner-section.pdf-scanner-section .pdf-grid-content-wrap {
  display: inline-block;
  vertical-align: middle; }

@media (min-width: 480px) {
  .template-inner-section.pdf-scanner-section .pdf-top-bg-image {
    width: 100%;
    position: absolute;
    display: inline-block;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .2; }
  .template-inner-section.pdf-scanner-section .pdf-grid-inner {
    display: flex; }
  .template-inner-section.pdf-scanner-section .pdf-grid-content {
    width: calc(100% - 170px);
    display: inline-block;
    vertical-align: middle;
    padding-right: 25px;
    order: 1; }
  .template-inner-section.pdf-scanner-section .pdf-grid-image-item {
    order: 2;
    margin-bottom: 0; }
  .template-inner-section.pdf-scanner-section .bottom-bg-image {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: .2; } }

@media (min-width: 1025px) {
  .template-inner-section.pdf-scanner-section .pdf-intro-bg {
    width: 55.72917vw;
    height: 29.58333vw;
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0; }
  .template-inner-section.pdf-scanner-section .pdf-intro-bg .template-image {
    height: 100%; }
  .template-inner-section.pdf-scanner-section .pdf-grid {
    width: 70%;
    display: inline-block; }
  .template-inner-section.pdf-scanner-section .template-top-section-image {
    width: 16.92708vw;
    max-width: 325px; }
  .template-inner-section.pdf-scanner-section .pdf-middle-image {
    width: 16.92708vw;
    max-width: 325px; }
  .template-inner-section.pdf-scanner-section .pdf-grid-image-item {
    position: absolute;
    right: 0;
    bottom: 7.29167vw; }
  .template-inner-section.pdf-scanner-section .pdf-grid-content {
    width: calc(100% - 16.93vw);
    padding-right: 80px; }
  .template-inner-section.pdf-scanner-section .pdf-bottom-container .pdf-grid-content {
    width: calc(100% - 16.93vw);
    padding-right: 80px; }
  .template-inner-section.pdf-scanner-section .pdf-content-text {
    margin-top: 40px; }
  .template-inner-section.pdf-scanner-section .pdf-middle-section {
    text-align: right; }
  .template-inner-section.pdf-scanner-section .pdf-middle-section .pdf-grid-image-item {
    bottom: -12.76042vw; }
  .template-inner-section.pdf-scanner-section .pdf-top-bg-image {
    width: 81.35417vw;
    max-width: 1562px;
    opacity: 1; }
  .template-inner-section.pdf-scanner-section .template-product-bottom {
    padding-top: 9.89583vw;
    padding-bottom: 9.375vw; }
  .template-inner-section.pdf-scanner-section .bottom-bg-image {
    opacity: 1; }
  .template-inner-section.pdf-scanner-section .pdf-bottom-container {
    text-align: right; }
  .template-inner-section.pdf-scanner-section .pdf-bottom-container .pdf-grid {
    text-align: right; } }

@media (min-width: 1367px) {
  .template-inner-section.pdf-scanner-section .pdf-row-icon {
    width: 65px;
    height: 65px; }
  .template-inner-section.pdf-scanner-section .pdf-row-image {
    width: 42px; } }

@media (min-width: 1661px) {
  .template-inner-section.pdf-scanner-section .pdf-intro-bg {
    right: 10.9375vw; }
  .template-inner-section.pdf-scanner-section .pdf-grid {
    width: 75%; } }

@media (min-width: 1921px) {
  .template-inner-section.pdf-scanner-section .pdf-grid-image-item {
    bottom: 140px; }
  .template-inner-section.pdf-scanner-section .pdf-middle-section .pdf-grid-image-item {
    bottom: -245px; }
  .template-inner-section.pdf-scanner-section .pdf-grid-content {
    width: calc(100% - 325px); }
  .template-inner-section.pdf-scanner-section .pdf-bottom-container .pdf-grid-content {
    width: calc(100% - 325px); }
  .template-inner-section.pdf-scanner-section .template-product-bottom {
    padding-top: 190px;
    padding-bottom: 180px; } }

.template-inner-section.oxford-dictionary-section .template-inner-intro {
  overflow: hidden; }

.template-inner-section.oxford-dictionary-section .template-inner-section-wrap {
  overflow: hidden; }

.template-inner-section.oxford-dictionary-section .oxford-letters {
  display: inline-block;
  width: 100%; }

.template-inner-section.oxford-dictionary-section .oxford-letters-container {
  width: 300px;
  position: absolute;
  top: 50%;
  left: 70%;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.template-inner-section.oxford-dictionary-section .oxford-middle-image {
  display: none; }

.template-inner-section.oxford-dictionary-section .template-top-info {
  margin-top: 30px; }

.template-inner-section.oxford-dictionary-section .oxford-middle-inner {
  font-size: 0; }

.template-inner-section.oxford-dictionary-section .oxford-middle-phone {
  width: 155px;
  display: inline-block;
  vertical-align: middle; }

.template-inner-section.oxford-dictionary-section .oxford-middle-content {
  text-align: left;
  margin-top: 30px; }

.template-inner-section.oxford-dictionary-section .bottom-bg-image {
  display: none; }

.template-inner-section.oxford-dictionary-section .template-product-bottom .bg-image {
  z-index: -1; }

.template-inner-section.oxford-dictionary-section .oxford-bottom-container {
  text-align: right; }

.template-inner-section.oxford-dictionary-section .oxford-bottom-content {
  max-width: 560px;
  margin-top: 20px; }

.template-inner-section.oxford-dictionary-section .oxford-bottom-content p {
  font-size: 16px;
  line-height: 1.5em;
  color: #444444; }

.template-inner-section.oxford-dictionary-section .template-bottom-title-wrap {
  max-width: 660px; }

.template-inner-section.oxford-dictionary-section .template-product-bottom {
  padding-top: 0;
  padding-bottom: 50px; }

.template-inner-section.oxford-dictionary-section .oxford-bottom-info {
  text-align: left; }

.template-inner-section.oxford-dictionary-section .template-top-section-image {
  width: 161px; }

.template-inner-section.oxford-dictionary-section .template-top-text br {
  display: none; }

.template-inner-section.oxford-dictionary-section .template-product-middle {
  padding-top: 0; }

@media (min-width: 480px) {
  .template-inner-section.oxford-dictionary-section .template-top-info {
    width: calc(100% - 161px);
    padding-right: 30px;
    margin-top: 0; }
  .template-inner-section.oxford-dictionary-section .bottom-bg-image {
    width: 100%;
    max-width: 700px;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
    opacity: .2; }
  .template-inner-section.oxford-dictionary-section .oxford-middle-image {
    width: 100%;
    display: inline-block;
    position: absolute;
    top: -120px;
    left: 0;
    opacity: .2; } }

@media (min-width: 640px) {
  .template-inner-section.oxford-dictionary-section .oxford-middle-content {
    width: calc(100% - 250px);
    display: inline-block;
    vertical-align: middle;
    padding-left: 35px;
    margin-top: 0; }
  .template-inner-section.oxford-dictionary-section .oxford-bottom-info {
    width: 60%;
    display: inline-block;
    vertical-align: middle; }
  .template-inner-section.oxford-dictionary-section .template-product-bottom {
    padding-top: 110px;
    padding-bottom: 70px; }
  .template-inner-section.oxford-dictionary-section .bottom-bg-image {
    opacity: 1; } }

@media (min-width: 720px) {
  .template-inner-section.oxford-dictionary-section .template-product-middle {
    padding-top: 40px; } }

@media (min-width: 1025px) {
  .template-inner-section.oxford-dictionary-section .template-top-section-image {
    bottom: 0;
    width: 16.61458vw;
    max-width: 319px; }
  .template-inner-section.oxford-dictionary-section .oxford-letters-container {
    width: 15.625vw;
    max-width: 300px; }
  .template-inner-section.oxford-dictionary-section .oxford-middle-image {
    top: -17.1875vw;
    opacity: 1; }
  .template-inner-section.oxford-dictionary-section .oxford-middle-phone {
    width: 16.40625vw;
    max-width: 315px; }
  .template-inner-section.oxford-dictionary-section .oxford-middle-content {
    width: calc(100% - 16.5vw);
    padding-left: 5.72917vw; }
  .template-inner-section.oxford-dictionary-section .template-product-middle {
    padding-top: 3.125vw; }
  .template-inner-section.oxford-dictionary-section .template-product-bottom {
    padding-top: 18.22917vw;
    padding-bottom: 15.625vw;
    margin-top: 50px; }
  .template-inner-section.oxford-dictionary-section .oxford-middle-inner {
    width: 60%; }
  .template-inner-section.oxford-dictionary-section .template-top-info {
    width: calc(100% - 25vw);
    padding-right: 0; }
  .template-inner-section.oxford-dictionary-section .template-top-text br {
    display: inline-block; }
  .template-inner-section.oxford-dictionary-section .bottom-bg-image {
    max-width: 100%; }
  .template-inner-section.oxford-dictionary-section .oxford-bottom-content {
    margin-top: 40px; }
  .template-inner-section.oxford-dictionary-section .intro-content-item-inner {
    max-width: 520px; } }

@media (min-width: 1281px) {
  .template-inner-section.oxford-dictionary-section .oxford-letters-container {
    left: 60%; }
  .template-inner-section.oxford-dictionary-section .oxford-middle-inner {
    width: 100%; } }

@media (min-width: 1661px) {
  .template-inner-section.oxford-dictionary-section .oxford-letters-container {
    left: 50%; }
  .template-inner-section.oxford-dictionary-section .oxford-bottom-info {
    width: calc(100% - 16.5vw);
    padding-left: 5.72917vw; } }

@media (min-width: 1921px) {
  .template-inner-section.oxford-dictionary-section .template-product-middle {
    padding-top: 60px; }
  .template-inner-section.oxford-dictionary-section .template-product-bottom {
    padding-top: 350px;
    padding-bottom: 300px; }
  .template-inner-section.oxford-dictionary-section .oxford-bottom-info {
    width: calc(100% - 315px);
    padding-left: 120px; }
  .template-inner-section.oxford-dictionary-section .oxford-middle-content {
    width: calc(100% - 315px);
    padding-left: 120px; } }

@media (min-width: 140em) {
  .template-inner-section.oxford-dictionary-section .bottom-bg-image {
    max-width: 90%; } }

@media (min-width: 160em) {
  .template-inner-section.oxford-dictionary-section .bottom-bg-image {
    max-width: 80%; } }

.template-inner-section .template-product-list {
  margin-top: 20px; }

.template-inner-section .template-product-list ol {
  list-style-type: none;
  padding: 0;
  margin: 0;
  color: #000;
  counter-reset: my-counter;
  font-size: 0; }

.template-inner-section .template-product-list ol span {
  display: block; }

.template-inner-section .template-product-list ol strong {
  font-weight: 700; }

.template-inner-section .template-product-list ol li {
  margin-bottom: 15px;
  counter-increment: my-counter; }

.template-inner-section .template-product-list ol li:before {
  content: counter(my-counter);
  width: 55px;
  color: #fff;
  display: inline-block;
  vertical-align: middle;
  font-size: 28px;
  line-height: 55px;
  font-weight: 300;
  background: #2c4d79;
  border-radius: 40px;
  text-align: center; }

.template-inner-section .template-product-list ol li:last-child {
  margin-bottom: 0; }

.template-inner-section .template-product-list ol p {
  width: calc(100% - 55px);
  font-size: 16px;
  line-height: 1.5em;
  display: inline-block;
  vertical-align: middle;
  color: #444444;
  padding-left: 20px; }

@media (min-width: 1025px) {
  .template-inner-section .template-product-list {
    margin-top: 50px; } }

@media (min-width: 1367px) {
  .template-inner-section .template-product-list ol li:before {
    width: 65px;
    font-size: 36px;
    line-height: 65px; }
  .template-inner-section .template-product-list ol p {
    width: calc(100% - 65px);
    padding-left: 25px; } }

.template-inner-section .of-container {
  overflow: hidden; }

.template-inner-section.oxford-translator-section .template-inner-section-wrap {
  overflow: hidden; }

.template-inner-section.oxford-translator-section .template-inner-intro {
  overflow: hidden; }

.template-inner-section.oxford-translator-section .translator-middle-section {
  font-size: 0; }

.template-inner-section.oxford-translator-section .translator-middle-phone {
  width: 160px;
  display: inline-block; }

.template-inner-section.oxford-translator-section .translator-middle-content {
  margin-top: 30px; }

.template-inner-section.oxford-translator-section .translator-middle-content-inner {
  display: inline-block;
  vertical-align: top; }

.template-inner-section.oxford-translator-section .translator-middle-bg {
  display: none; }

.template-inner-section.oxford-translator-section .bottom-bg-image {
  display: none; }

.template-inner-section.oxford-translator-section .template-product-bottom {
  z-index: 2;
  padding-top: 10px;
  padding-bottom: 70px; }

.template-inner-section.oxford-translator-section .template-top-section-image {
  width: 160px;
  display: inline-block; }

.template-inner-section.oxford-translator-section .template-top-info {
  margin-top: 30px; }

@media (min-width: 480px) {
  .template-inner-section.oxford-translator-section .translator-middle-inner {
    display: flex;
    flex-wrap: wrap; }
  .template-inner-section.oxford-translator-section .translator-middle-phone {
    order: 2; }
  .template-inner-section.oxford-translator-section .translator-middle-content {
    width: calc(100% - 170px);
    order: 1;
    display: inline-block;
    margin-top: 0;
    text-align: left;
    padding-right: 25px; }
  .template-inner-section.oxford-translator-section .template-top-info {
    width: calc(100% - 160px);
    padding-right: 25px;
    margin-top: 0; }
  .template-inner-section.oxford-translator-section .template-product-middle {
    text-align: right; } }

@media (min-width: 720px) {
  .template-inner-section.oxford-translator-section .translator-middle-section {
    display: inline-block;
    width: 73%; }
  .template-inner-section.oxford-translator-section .translator-middle-content-inner {
    vertical-align: middle; }
  .template-inner-section.oxford-translator-section .translator-middle-bg {
    width: 100%;
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: .15; }
  .template-inner-section.oxford-translator-section .bottom-bg-image {
    width: 100%;
    position: absolute;
    display: inline-block;
    right: 0;
    bottom: 0;
    z-index: -1;
    opacity: .15; }
  .template-inner-section.oxford-translator-section .translator-bottom-info {
    width: 55%; } }

@media (min-width: 1025px) {
  .template-inner-section.oxford-translator-section .template-top-section-image {
    width: 16.61458vw;
    max-width: 319px; }
  .template-inner-section.oxford-translator-section .translator-middle-phone {
    width: 16.40625vw;
    max-width: 315px; }
  .template-inner-section.oxford-translator-section .translator-middle-content {
    width: calc(100% - 16.41vw);
    display: inline-block;
    padding-right: 3.38542vw; }
  .template-inner-section.oxford-translator-section .bottom-bg-image {
    width: 72.55208vw;
    max-width: 1393px;
    opacity: 1; }
  .template-inner-section.oxford-translator-section .template-product-bottom {
    padding-top: 9.375vw;
    padding-bottom: 9.375vw;
    min-height: 40.10417vw; }
  .template-inner-section.oxford-translator-section .translator-middle-section {
    width: 67%; }
  .template-inner-section.oxford-translator-section .template-top-info {
    width: calc(100% - 16.62vw);
    padding-right: 7.8125vw; }
  .template-inner-section.oxford-translator-section .translator-middle-bg {
    opacity: 1; } }

@media (min-width: 1661px) {
  .template-inner-section.oxford-translator-section .translator-middle-section {
    width: 73%; } }

@media (min-width: 1921px) {
  .template-inner-section.oxford-translator-section .template-top-info {
    padding-right: 150px; }
  .template-inner-section.oxford-translator-section .translator-middle-content {
    width: calc(100% - 315px);
    padding-right: 65px; }
  .template-inner-section.oxford-translator-section .template-product-bottom {
    padding-top: 180px;
    padding-bottom: 180px;
    min-height: 770px; } }

.template-inner-section.commander-section .template-inner-section-wrap {
  overflow: hidden; }

.template-inner-section.commander-section .intro-content-text-inner {
  margin-bottom: 30px; }

.template-inner-section.commander-section .intro-content-text-inner:last-child {
  margin-bottom: 0; }

.template-inner-section.commander-section .intro-content-item-inner {
  width: 100%;
  max-width: 570px; }

.template-inner-section.commander-section .intro-content-item-inner h1 {
  white-space: nowrap; }

.template-inner-section.commander-section .intro-content-item-inner .price-container {
  display: block; }

.template-inner-section.commander-section .intro-bottom-container {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0; }

.template-inner-section.commander-section .intro-bottom-container-inner {
  height: 50px; }

.template-inner-section.commander-section .intro-image-wrap {
  width: 160px;
  display: inline-block;
  position: absolute;
  bottom: -20px;
  right: 0; }

.template-inner-section.commander-section .template-top-section-image {
  width: 160px;
  position: relative;
  bottom: 0;
  right: 0;
  display: inline-block;
  vertical-align: top; }

.template-inner-section.commander-section .template-top-info {
  margin-top: 30px;
  text-align: left; }

.template-inner-section.commander-section .template-product-top {
  font-size: 0; }

.template-inner-section.commander-section .top-icon-row {
  margin-top: 20px;
  font-size: 0; }

.template-inner-section.commander-section .icon-row-item {
  width: 55px;
  height: 55px;
  border-radius: 60px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
  margin-bottom: 15px;
  text-align: center;
  background: #2c4d79; }

.template-inner-section.commander-section .icon-row-item:last-child {
  margin-right: 0; }

.template-inner-section.commander-section .icon-row-image {
  width: 24px;
  display: inline-block;
  vertical-align: middle; }

.template-inner-section.commander-section .top-bg-image {
  display: none; }

.template-inner-section.commander-section .template-inner-intro {
  z-index: 3; }

.template-inner-section.commander-section .template-product-middle {
  z-index: 3; }

.template-inner-section.commander-section .middle-icons-grid {
  font-size: 0;
  margin-top: 30px;
  margin-left: -20px;
  margin-right: -20px; }

.template-inner-section.commander-section .middle-icon-item {
  width: 33.33%;
  display: inline-block;
  vertical-align: top;
  padding-left: 20px;
  padding-right: 20px; }

.template-inner-section.commander-section .middle-icon-image {
  width: 100%;
  max-width: 130px;
  margin: 0 auto; }

.template-inner-section.commander-section .icon-title-wrap {
  margin-top: 15px; }

.template-inner-section.commander-section .icon-title {
  text-align: center;
  font-size: 14px;
  color: #000;
  font-weight: 600; }

.template-inner-section.commander-section .commander-bottom-container {
  text-align: right; }

.template-inner-section.commander-section .commander-bottom-info {
  text-align: left; }

.template-inner-section.commander-section .bottom-bg-image {
  display: none; }

.template-inner-section.commander-section .template-product-bottom {
  padding-bottom: 50px; }

.template-inner-section.commander-section .intro-bottom-container {
  display: none; }

.template-inner-section.commander-section .template-product-top-wrap {
  display: block;
  text-align: center; }

@media (min-width: 480px) {
  .template-inner-section.commander-section .top-bg-image {
    width: 100%;
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .15; }
  .template-inner-section.commander-section .template-top-info {
    width: calc(100% - 160px);
    max-width: 540px;
    padding-left: 25px;
    display: inline-block;
    vertical-align: top;
    margin-top: 0; }
  .template-inner-section.commander-section .template-product-top-wrap {
    text-align: left; } }

@media (min-width: 1025px) {
  .template-inner-section.commander-section .intro-content-text-inner {
    margin-bottom: 2.60417vw; }
  .template-inner-section.commander-section .intro-image-wrap {
    width: 16.40625vw;
    bottom: -3.64583vw; }
  .template-inner-section.commander-section .template-top-section-image {
    width: 16.71875vw; }
  .template-inner-section.commander-section .template-top-info {
    width: calc(100% - 16.72vw);
    padding-left: 5.72917vw;
    padding-top: 4.16667vw;
    display: inline-block;
    vertical-align: top;
    max-width: 430px; }
  .template-inner-section.commander-section .top-icon-row {
    margin-top: 2.08333vw; }
  .template-inner-section.commander-section .icon-row-item {
    margin-right: 1.30208vw;
    margin-bottom: 1.30208vw; }
  .template-inner-section.commander-section .middle-icons-grid {
    margin-top: 3.125vw;
    margin-left: -3.125vw;
    margin-right: -3.125vw; }
  .template-inner-section.commander-section .icon-title-wrap {
    margin-top: 30px; }
  .template-inner-section.commander-section .middle-icon-item {
    padding-left: 3.125vw;
    padding-right: 3.125vw; }
  .template-inner-section.commander-section .template-product-middle {
    padding-top: 1.5625vw;
    padding-bottom: 2.60417vw; }
  .template-inner-section.commander-section .template-product-bottom {
    padding-top: 14.0625vw;
    padding-bottom: 20.83333vw;
    min-height: 45.3125vw; }
  .template-inner-section.commander-section .bottom-bg-image {
    width: 70.57292vw;
    max-width: 1355px;
    display: inline-block;
    position: absolute;
    left: 0;
    bottom: 0; }
  .template-inner-section.commander-section .commander-bottom-info {
    width: 48%;
    display: inline-block;
    text-align: left; }
  .template-inner-section.commander-section .commander-middle-inner {
    width: 51%; }
  .template-inner-section.commander-section .top-bg-image {
    opacity: 1; }
  .template-inner-section.commander-section .intro-bottom-container {
    display: block; } }

@media (min-width: 1281px) {
  .template-inner-section.commander-section .template-top-info {
    max-width: 540px; } }

@media (min-width: 1367px) {
  .template-inner-section.commander-section .icon-row-item {
    width: 65px;
    height: 65px; }
  .template-inner-section.commander-section .icon-row-image {
    width: 28px; } }

@media (min-width: 1921px) {
  .template-inner-section.commander-section .intro-image-wrap {
    width: 315px;
    bottom: -70px; }
  .template-inner-section.commander-section .template-top-section-image {
    width: 321px; }
  .template-inner-section.commander-section .template-top-info {
    padding-left: 110px; }
  .template-inner-section.commander-section .commander-bottom-info {
    margin-top: 270px; }
  .template-inner-section.commander-section .template-product-bottom {
    padding-bottom: 400px;
    min-height: 870px; }
  .template-inner-section.commander-section .template-product-middle {
    padding-top: 30px;
    padding-bottom: 50px; } }

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  background-color: rgba(41, 41, 41, 0.45);
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  display: none;
  padding: 1rem; }

.popup-wrap {
  margin: 0 auto;
  max-width: 420px;
  color: #fff;
  position: relative;
  z-index: 5; }

.popup-closing-area {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.popup-title,
.popup-text {
  width: 100%;
  float: left; }

.popup-title {
  background-color: #43d368;
  text-align: center;
  padding: 0.8rem 2.5rem;
  position: relative;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  font-size: 1rem; }

.popup-title.title-large {
  font-weight: 500; }

.popup-text {
  background-color: #fff;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 1.4rem 1rem;
  color: #000;
  font-size: 0.85rem;
  line-height: 1.2rem; }

.popup-text p:last-child {
  margin-bottom: 0px !important; }

.popup-close-button {
  width: 20px;
  height: 22px;
  background: url("../images/elements/X-popup.png") no-repeat 0 0;
  background-size: 100%;
  position: absolute;
  top: calc(50% - 10px);
  right: 15px; }

.open-popup {
  cursor: pointer; }

.valign {
  position: relative;
  display: table; }

.valign.fit {
  width: 100%;
  height: 100%; }

.valign .middle {
  display: table-cell;
  vertical-align: middle; }

@media (min-width: 720px) {
  .popup-overlay {
    padding: 1.875rem; }
  .popup-title {
    font-size: 1.1rem;
    padding: 0.8rem 3.125rem; }
  .popup-text {
    padding: 1.8rem 1.5rem;
    font-size: 0.85rem; } }

.alipay-container .wrapper {
  margin: 100px 0;
  width: 100%;
  position: relative;
  text-align: center; }

.alipay-container .wrapper > p {
  font-size: 20px;
  font-weight: 400;
  padding: 10px;
  display: inline-block; }

.alipay-container .wrapper > p.redirect {
  background: #ebe5e5;
  border-radius: 5px; }

.download-protection-section#downloadScrollTo {
  padding: 2vw 4.16667vw;
  overflow: hidden; }

.download-protection-section h3 {
  margin: 50px 0 20px; }

.download-protection-section .table {
  width: 100%; }

.download-protection-section .table td {
  border: 2px solid #ececec;
  padding: 1.04vw;
  line-height: 1.4; }

.download-protection-section .table tr td:nth-of-type(3) {
  border-right: none; }

.download-protection-section .table tr td:nth-of-type(4) {
  border-left: none; }

.download-protection-section .table tr td:last-of-type {
  display: none;
  border-left: none;
  border-right: none; }

.download-protection-section .button.orders {
  display: block;
  height: 45px;
  width: 200px;
  margin: 0;
  padding: 0 45px;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 45px;
  font-size: 1.125rem;
  background-color: #e3151a;
  border: 1px solid #e3151a;
  border-radius: 5px;
  border-radius: 5px; }

.download-protection-section .button.orders:hover,
.download-protection-section .button.orders.touched {
  color: #e3151a;
  background: #fff;
  border: 1px solid #e3151a; }

.download-protection-section .table .label {
  font-weight: 500;
  font-size: 1rem; }

.download-protection-section .table .value {
  font-style: italic;
  font-size: 0.875rem; }

@media only screen and (max-width: 1025px) {
  .download-protection-section .table td {
    display: block;
    border-bottom-width: 1px; }
  .download-protection-section .table tr td:first-of-type {
    border-top-width: 2px; }
  .download-protection-section .table tr td:last-of-type {
    display: block;
    height: 30px; }
  .download-protection-section .table tr td:nth-of-type(3),
  .download-protection-section .table tr td:nth-of-type(4) {
    border-left: 2px solid #ececec;
    border-right: 2px solid #ececec; }
  .download-protection-section .table .label {
    font-size: 1.125rem; }
  .download-protection-section .table .value {
    font-size: 1rem; } }

.download-form .errors {
  bottom: -15px;
  left: 5px;
  color: #852d12;
  background-color: #ffefeab3;
  display: none;
  width: 100%;
  max-width: 515px;
  padding: 10px 10px 10px 35px;
  border-radius: 5px; }

.download-form .errors::before {
  content: '';
  width: 20px;
  height: 20px;
  left: 5px;
  background: url("../images/error-icon.png") no-repeat, top, center;
  background-size: contain;
  vertical-align: super;
  position: absolute; }

.error-page-section .main-wrap-content {
  padding: 5vw;
  color: #343941;
  text-align: center; }

.error-page-section .error-code {
  margin-bottom: 1vw;
  font-size: 10vw;
  line-height: 1; }

.error-page-section .error-message {
  margin-bottom: 3.5vw;
  font-size: 2.2vw;
  font-weight: 600;
  line-height: 1; }

.error-page-section .button {
  padding: 0.85vw 1.40vw;
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1;
  transition: 0.2s color ease-in-out;
  border-radius: 5px;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block; }

.error-page-section .button.red {
  background: #e3151a;
  border: 1px solid #e3151a;
  color: #fff; }

.error-page-section .button.red:hover {
  background: #fff;
  border: 1px solid #e3151a;
  color: #e3151a; }

@media only screen and (max-width: 640px) {
  .error-page-section .error-code {
    margin-bottom: 1vw;
    font-size: 5rem; }
  .error-page-section .error-message {
    margin-bottom: 10vw;
    padding: 0;
    font-size: .9rem;
    line-height: 1.1rem; }
  .error-page-section .button {
    display: block;
    max-width: 300px;
    margin: 0 auto;
    padding: .5rem;
    font-size: .9rem; } }

.text-content-single-page {
  background: #f9f9f9; }

.text-content-single-page .title {
  text-align: center;
  margin: 60px 0;
  padding-top: 60px; }

.text-content-single-page .text-page {
  padding: 0 10% 7%;
  line-height: 1.7em;
  font-size: 1.2em;
  font-weight: 300; }

.text-content-single-page .text-page.blocks {
  padding: 0 10% 7%;
  margin-top: -7%; }

.text-content-single-page .text-content {
  font-size: 16px;
  font-weight: 300; }

.text-content-single-page .text-content li {
  list-style-type: none;
  padding-left: 10px; }

.text-content-single-page .text-content li:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: #ed1c24;
  position: absolute;
  top: 10px;
  left: -5px; }

.text-content-single-page.total-wrapper {
  padding-top: 110px; }

.text-content-single-page.total-wrapper p {
  padding: 10px 0; }

.text-content-single-page.total-wrapper p strong {
  display: inline; }

.text-content-single-page h1 {
  font-weight: 600;
  font-size: 30px; }

.text-content-single-page h1 span {
  font-size: inherit !important; }

.text-content-single-page h2 {
  font-size: 25px;
  font-weight: 600; }

.text-content-single-page h2 span {
  font-size: inherit !important; }

.text-content-single-page h3 {
  font-size: 20px;
  font-weight: 500; }

.text-content-single-page h3 span {
  font-size: inherit !important; }

.text-content-single-page h4 {
  font-size: 15px;
  font-weight: 500; }

.text-content-single-page h4 span {
  font-size: inherit !important; }

.text-content-single-page.center {
  text-align: center; }

.text-content-single-page .page-images-inline {
  width: 400px;
  display: inline-block;
  margin-right: 20px; }

.text-content-single-page .euro-p a {
  font-weight: 600; }

.text-content-single-page .static-url, .text-content-single-page a {
  color: red;
  text-decoration: none; }

.text-content-single-page .static-url:hover, .text-content-single-page a:hover {
  text-decoration: underline; }

.text-content-single-page .static-url.block-link, .text-content-single-page a.block-link {
  display: block;
  padding: 0 5px 10px;
  font-weight: 600; }

.text-content-single-page .static-url.w-300, .text-content-single-page a.w-300 {
  width: 300px; }

.text-content-single-page .static-url.w-400, .text-content-single-page a.w-400 {
  width: 400px; }

.text-content-single-page ul li strong {
  display: inline-block; }

.text-content-single-page .element-normal {
  font-weight: 500;
  padding: 15px 0; }

.text-content-single-page .row {
  margin: 15px 0; }

.text-content-single-page .element-bold {
  font-weight: 600;
  padding: 30px 0 10px; }

.text-content-single-page .element-left {
  text-align: left;
  margin: 0 auto;
  max-width: 400px; }

.text-content-single-page label {
  display: block;
  padding-bottom: 5px; }

.text-content-single-page input, .text-content-single-page select {
  display: inline-block;
  border: 1px solid #a3a3a3;
  font-size: 15px;
  height: 30px;
  margin-bottom: 5px; }

.text-content-single-page .checkbox {
  width: 20px;
  height: 20px;
  float: left;
  margin: 4px 10px 0 0;
  padding: 8px; }

.text-content-single-page input[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-transform: scale(1.5);
  -o-transform: scale(1.5); }

.text-content-single-page input[type=checkbox]:not(:root) {
  height: 20px;
  width: 20px; }

.text-content-single-page strong {
  display: block;
  padding: 10px 0; }

.text-content-single-page .phone-select, .text-content-single-page .number-field {
  width: 150px;
  display: inline-block; }

.text-content-single-page button {
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  margin: 20px 0;
  width: auto;
  border-radius: 5px;
  color: #fff;
  border: 1px solid #e30614;
  background-color: #e30614;
  padding: 10px 45px; }

.text-content-single-page button:hover {
  background: #fff;
  color: #e30614;
  border: 1px solid #e30614;
  transition: 0.2s all cubic-bezier(0.075, 0.82, 0.165, 1); }

.text-content-single-page .list-element {
  margin: 20px 0; }

.text-content-single-page .list-element img, .text-content-single-page .list-element a {
  display: inline-block; }

.text-content-single-page .list-element a {
  margin-left: 10px; }

.text-content-single-page #compTable {
  overflow: auto; }

.text-content-single-page table.compare-table {
  width: 98%;
  border: 1px solid #e2e2e2; }

.text-content-single-page table.compare-table tr {
  border-bottom: 1px solid #e2e2e2; }

.text-content-single-page table.compare-table tr:nth-child(odd) td {
  background: #e7e7e7; }

.text-content-single-page table.compare-table th {
  background: #333;
  color: #fff;
  text-transform: uppercase;
  font-size: 2vw;
  padding: 25px 10px;
  font-weight: 400; }

@media only screen and (min-width: 1024px) {
  .text-content-single-page table.compare-table th {
    font-size: 18px; } }

.text-content-single-page table.compare-table tr th {
  border-right: 1px solid #fff; }

.text-content-single-page table.compare-table tr td {
  padding: 10px 15px;
  color: #000;
  line-height: 30px; }

@media only screen and (max-width: 1024px) {
  .text-content-single-page table.compare-table tr td {
    text-align: center;
    line-height: 20px; } }

@media only screen and (max-width: 640px) {
  .text-content-single-page table.compare-table th {
    padding: 25px 5px; }
  .text-content-single-page table.compare-table tr td {
    text-align: center;
    line-height: 20px;
    font-size: 13px;
    padding: 15px 5px; } }

@media only screen and (max-width: 440px) {
  .text-content-single-page table.compare-table tr td {
    font-size: 12px; } }

.text-content-single-page table.compare-table tr:nth-child(odd) td.has-checkmark {
  background-color: #e7e7e7; }

.text-content-single-page table.compare-table tr td.has-checkmark {
  background: url(../images/table-check.png) 50% 50% no-repeat; }

.text-content-single-page table.compare-table tr th:last-child {
  background: #f04745;
  border-right: none; }

.text-content-single-page table.compare-table.cart-table tr th:last-child {
  background: #333; }

.text-content-single-page table.compare-table.cart-table tr th:first-child {
  text-align: left;
  padding: 15px; }

.text-content-single-page table.compare-table.cart-table tr td {
  text-align: center;
  line-height: 20px; }

.text-content-single-page table.compare-table.cart-table tr td:first-child {
  width: 40%;
  text-align: left; }

.text-content-single-page .email-ver, .text-content-single-page .login-err, .text-content-single-page .login-msg {
  text-align: center; }

.text-content-single-page table.compare-table.cart-table tr:nth-child(odd) td {
  background: 0 0; }

.text-content-single-page table.compare-table.cart-table tr:nth-child(even) td {
  background: #e7e7e7; }

.text-content-single-page .airwatch-content a {
  font-weight: 600; }

.text-content-single-page .airwatch-content h1 {
  padding: 25px 0 15px; }

.text-content-single-page .airwatch-content strong {
  display: inline-block; }

.text-content-single-page .airwatch-content ul li {
  list-style-type: none;
  padding-left: 10px; }

.text-content-single-page .airwatch-content ul li:after {
  content: '';
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 10px;
  background: #ed1c24;
  position: absolute;
  top: 10px;
  left: -5px; }

.help-pages {
  position: relative;
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 500px;
  overflow: hidden; }

.help-pages .iframe-page {
  padding-top: 50px;
  flex: 1 1 auto;
  display: flex;
  border: none; }

@media (min-width: 640px) {
  .help-pages {
    min-height: 700px; } }

@media (min-width: 720px) {
  .help-pages {
    min-height: 800px; } }

@media (min-width: 1025px) {
  .help-pages {
    min-height: 800px; } }

@media (min-width: 1281px) {
  .help-pages {
    min-height: 900px; } }

.activate-pages h1 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 26px;
  margin-bottom: 10px; }

.activate-pages h1 img {
  display: block;
  margin: 0 auto 15px auto;
  width: 50px;
  height: 50px; }

.activate-pages h1 span {
  display: block;
  font-weight: 700;
  color: #000; }

.activate-pages.steps-ode .main-wrap-content .activate-step .block-title {
  color: #4498F2; }

.activate-pages.steps-ode .main-wrap-content .bottom-activation-text p > strong {
  color: #4498F2; }

.activate-pages.steps-ode .play-store-btn,
.activate-pages.steps-ode .app-store-btn {
  display: inline-block;
  width: 200px;
  height: 60px;
  background-image: url(../images/activate/ODE/AppStore_Btn.svg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  margin-top: 10px; }

.activate-pages.steps-ode .play-store-btn {
  background-image: url(../images/activate/ODE/GooglePlay_Btn.svg); }

.activate-pages .main-wrap-content {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 25px;
  border-bottom: 1px solid #959595; }

.activate-pages .main-wrap-content .activate-step {
  max-width: 300px;
  -webkit-align-self: center;
  -moz-align-self: center;
  -ms-align-self: center;
  align-self: center; }

.activate-pages .main-wrap-content .activate-step .block-title {
  color: #ed1c24;
  font-weight: 700;
  font-size: 36px;
  padding-bottom: 10px; }

.activate-pages .main-wrap-content .activate-step .block-body {
  font-size: 14px;
  line-height: 18px; }

.activate-pages .main-wrap-content .activate-step .block-body small {
  padding-top: 10px;
  line-height: 13px;
  font-size: 10px;
  margin-bottom: -10px;
  display: block; }

.activate-pages .main-wrap-content .activate-step .block-body .btn-wrap {
  padding-top: 10px; }

.activate-pages .main-wrap-content .activate-step .block-body .btn-wrap .link-btn {
  clear: both;
  padding: 10px 15px; }

.activate-pages .main-wrap-content .activate-step .block-image img {
  max-width: 100%; }

.activate-pages .main-wrap-content .bottom-activation-text {
  padding-top: 30px;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  flex-grow: 1;
  width: 100%; }

.activate-pages .main-wrap-content .store-buttons {
  padding-top: 20px;
  text-align: center; }

.ie-11 .activate-pages .main-wrap-content .activate-step {
  width: 1px;
  min-width: 300px; }

.ie-11 .activate-pages .main-wrap-content .activate-step .block-image img {
  max-width: 100%;
  max-height: 320px; }

@media (min-width: 640px) {
  .ie-11 .activate-pages .main-wrap-content .activate-step {
    width: 1px;
    min-width: 360px;
    max-height: 620px; } }

@media (min-width: 720px) {
  .activate-pages h1 {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
    font-size: 32px;
    margin-bottom: 25px; }
  .activate-pages .main-wrap-content {
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-justify-content: space-around;
    -moz-justify-content: space-around;
    -ms-justify-content: space-around;
    justify-content: space-around;
    -ms-flex-pack: space-around; }
  .activate-pages .main-wrap-content .activate-step {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-align-self: stretch;
    -moz-align-self: stretch;
    -ms-align-self: stretch;
    align-self: stretch;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100%;
    max-width: 30%; }
  .activate-pages .main-wrap-content .activate-step .block-image {
    margin-top: auto; }
  .activate-pages .main-wrap-content .store-buttons {
    text-align: left; }
  .ie-11 .activate-pages .main-wrap-content .activate-step {
    width: 1px;
    min-width: 220px; } }

@media (min-width: 1025px) {
  .activate-pages h1 {
    padding-top: 2rem;
    padding-bottom: 2rem;
    font-size: 40px; }
  .activate-pages h1 img {
    display: block;
    margin: 0 auto 10px auto; }
  .activate-pages h1 span {
    display: block;
    font-weight: 700;
    color: #000; }
  .activate-pages .main-wrap-content {
    margin: 0 20px;
    width: auto;
    padding-left: 70px;
    padding-right: 70px;
    padding-bottom: 40px;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between; }
  .activate-pages .main-wrap-content .activate-step:nth-child(2) {
    margin: 0 30px; }
  .activate-pages .store-buttons {
    padding-top: 20px; }
  .ie-11 .activate-pages .main-wrap-content .activate-step {
    width: 1px;
    min-width: 30%; } }

@media (min-width: 1367px) {
  .ie-11 .activate-pages .main-wrap-content .activate-step {
    width: 1px;
    min-width: 25%;
    max-width: 28%; }
  .activate-pages .main-wrap-content .bottom-activation-text {
    padding-top: 60px;
    margin-bottom: 0px; } }

@media (min-width: 1441px) {
  .activate-pages .main-wrap-content {
    padding-bottom: 60px;
    width: 1340px;
    margin: 0 auto;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    -ms-flex-pack: center; }
  .activate-pages .main-wrap-content .activate-step {
    max-width: 300px; }
  .activate-pages .main-wrap-content .activate-step:nth-child(2) {
    margin: 0 110px; }
  .activate-pages .store-buttons {
    padding-top: 30px; } }

@media (min-width: 1661px) {
  .activate-pages .main-wrap-content {
    padding-bottom: 120px;
    width: 1340px;
    margin: 0 auto;
    -webkit-justify-content: space-between;
    -moz-justify-content: space-between;
    -ms-justify-content: space-between;
    justify-content: space-between;
    -ms-flex-pack: space-between; }
  .activate-pages .main-wrap-content .activate-step:nth-child(2) {
    margin: 0 50px; }
  .activate-pages .main-wrap-content .bottom-activation-text {
    padding-top: 80px;
    margin-bottom: -60px; } }

/* . Slider styles */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide, .swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative; }

/* Auto Height */
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-transition-property: -webkit-transform, height;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform, height; }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

/* 3D Container */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  -moz-perspective: 1200px;
  -o-perspective: 1200px;
  perspective: 1200px; }

.swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10; }

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  /* Safari 4+, Chrome */
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Chrome 10+, Safari 5.1+, iOS 5+ */
  background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 3.6-15 */
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Opera 11.10-12.00 */
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  /* Firefox 16+, IE10, Opera 12.50+ */ }

/* Coverflow */
.swiper-container-coverflow .swiper-wrapper, .swiper-container-flip .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px; }

/* Cube + Flip */
.swiper-container-cube, .swiper-container-flip {
  overflow: visible; }

.swiper-container-cube .swiper-slide, .swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1; }

.swiper-container-cube .swiper-slide .swiper-slide, .swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-active .swiper-slide-active, .swiper-container-flip .swiper-slide-active, .swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto; }

.swiper-container-cube .swiper-slide-shadow-top, .swiper-container-cube .swiper-slide-shadow-bottom, .swiper-container-cube .swiper-slide-shadow-left, .swiper-container-cube .swiper-slide-shadow-right, .swiper-container-flip .swiper-slide-shadow-top, .swiper-container-flip .swiper-slide-shadow-bottom, .swiper-container-flip .swiper-slide-shadow-left, .swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden; }

/* Cube */
.swiper-container-cube .swiper-slide {
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active, .swiper-container-cube .swiper-slide-next, .swiper-container-cube .swiper-slide-prev, .swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0; }

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -moz-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active.swiper-slide-active {
  pointer-events: auto; }

/* Arrows */
.swiper-button-prev, .swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat; }

.swiper-button-prev.swiper-button-disabled, .swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev, .swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto; }

.swiper-button-next, .swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto; }

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

/* Common Styles */
.swiper-pagination-fraction, .swiper-pagination-custom, .swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 50px;
  left: 0;
  width: 100%; }

/* Bullets */
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  vertical-align: middle;
  border-radius: 100%;
  box-sizing: border-box;
  border: 1px solid #fff; }

.swiper-pagination-bullet button {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -webkit-appearance: none;
  appearance: none; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff; }

.swiper-pagination-bullet-active {
  background: #fff;
  width: 12px;
  height: 12px; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 5px 0;
  display: block; }

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 8px; }

/* Progress */
.swiper-pagination-progress {
  background: rgba(0, 0, 0, 0.25);
  position: absolute; }

.swiper-pagination-progress .swiper-pagination-progressbar {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  -o-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -moz-transform-origin: left top;
  -ms-transform-origin: left top;
  -o-transform-origin: left top;
  transform-origin: left top; }

.swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
  -webkit-transform-origin: right top;
  -moz-transform-origin: right top;
  -ms-transform-origin: right top;
  -o-transform-origin: right top;
  transform-origin: right top; }

.swiper-container-horizontal > .swiper-pagination-progress {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0; }

.swiper-container-vertical > .swiper-pagination-progress {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0; }

.swiper-pagination-progress.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.5); }

.swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
  background: #fff; }

.swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
  background: #000; }

body .fancybox-close {
  display: none; }

body .fancybox-overlay {
  background: #000000a1 !important;
  overflow: hidden; }

body .fancybox-close-top {
  position: absolute;
  z-index: 8060 !important;
  top: 10px;
  right: 10px;
  width: 20px;
  height: 20px;
  background: url("../images/elements/close-btn.png") no-repeat top center;
  background-size: contain; }

body .fancybox-nav {
  position: absolute;
  display: block;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  height: 50px;
  width: 30px; }

body .fancybox-nav.arrow-right {
  right: 10px;
  z-index: 8060 !important;
  background: url("../images/elements/arrow-right.png") no-repeat center right;
  background-size: contain; }

body .fancybox-nav.arrow-left {
  left: 10px;
  z-index: 8060 !important;
  background: url("../images/elements/arrow-left.png") no-repeat center left;
  background-size: contain; }

body .scrollDisabled {
  position: fixed !important;
  margin-top: 0 !important;
  width: 100% !important; }

@media (max-width: 720px) {
  body .fancybox-image {
    max-width: 80% !important;
    max-height: 80% !important;
    margin: 0 10% !important; } }

@media (min-width: 720px) {
  body .fancybox-close-top {
    top: 25px;
    right: 25px;
    height: 30px;
    width: 30px; }
  body .fancybox-nav {
    width: 50px; }
  body .fancybox-nav.arrow-left {
    z-index: 8060 !important;
    left: 25px; }
  body .fancybox-nav.arrow-right {
    z-index: 8060 !important;
    right: 25px; } }

/* . Lang Specific */
.ja-jp .row-content {
  width: auto; }

.ja-jp .item-link-text {
  font-size: 13px; }

.ja-jp .filter-group .filter-label {
  width: 80px; }

.ja-jp .filter-group .filter-select {
  width: calc(100% - 80px); }

.ja-jp header .search-box .search-platforms-list > .platform-button .icon.all {
  font-size: 0.9rem; }

.rtl-off {
  display: inline !important; }

.rtl-only {
  display: none !important; }

.rtl-show {
  display: none !important; }

.ltr {
  direction: ltr;
  display: inline-block; }

body.rtl {
  direction: rtl;
  text-align: right; }

body.rtl .sitemap-table.isLTR,
body.rtl .main-wrap-content.isLTR {
  direction: ltr;
  text-align: left; }

body.rtl .rtl-off {
  display: none !important; }

body.rtl .rtl-only {
  display: inline !important; }

body.rtl .cookies-bar .cookie-bar-content .close-cookie {
  right: auto;
  left: 10px; }

@media (min-width: 480px) {
  body.rtl .cookies-bar .cookie-bar-content {
    text-align: right;
    padding-left: 40px;
    padding-right: 16px; }
  body.rtl .cookies-bar .cookie-bar-content .cookie-button {
    margin-left: 0;
    margin-right: 10px; } }

body.rtl .text-left {
  text-align: left;
  direction: ltr; }

body.rtl .dir-ltr {
  direction: ltr; }

body.rtl .description-section .description-content-container.isLTR {
  direction: ltr;
  text-align: left; }

body.rtl .description-section .description-content-container.isLTR .description-alert-item {
  right: 0;
  left: auto;
  padding-right: 0;
  padding-left: 20px; }

body.rtl .description-section .description-content-container.isLTR .description-alert-item-wrap {
  direction: ltr;
  text-align: left; }

body.rtl .description-section .description-content-container.isLTR .scroll-top-container {
  right: 0;
  left: auto; }

body.rtl .description-section .description-content-container.isLTR .data-item-text {
  padding-left: 5px;
  padding-right: 0; }

body.rtl .description-section .description-content-container.isLTR .description-content-item ul li,
body.rtl .description-section .description-content-container.isLTR .description-content-list ul li {
  padding-left: 20px;
  padding-right: 0; }

body.rtl .description-section .description-content-container.isLTR .description-content-item ul li::after,
body.rtl .description-section .description-content-container.isLTR .description-content-list ul li::after {
  left: 0;
  right: auto; }

body.rtl .description-section .description-content-container.isLTR .info-data-item {
  margin-left: 0;
  margin-right: 10px; }

body.rtl .description-section .description-content-container.isLTR .show-hide-button {
  padding: 20px 0 5px 30px;
  text-align: left; }

body.rtl .description-section .description-content-container.isLTR .show-hide-button .show-item-icon {
  right: auto;
  left: 0; }

body.rtl .description-section .description-content-container.isLTR .discription-btn-container {
  direction: rtl; }

body.rtl .template-content-section.careers-content-section.isLTR {
  direction: ltr;
  text-align: left; }

body.rtl .template-content-section.careers-content-section.isLTR .faq-title-wrap {
  padding-left: 0;
  padding-right: 50px; }

body.rtl .template-section .bg-image.dictionary {
  background-image: url("../images/RTL_Images/Dictionaries/intro-dictionaries-bg.jpg"); }

body.rtl .template-section .filter-select {
  background-position: center left;
  padding-right: 15px;
  padding-left: 45px; }

body.rtl .svg-container .svg-path {
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

body.rtl .rtl-image {
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

body.rtl .dir-ltr {
  direction: ltr;
  display: inline-block; }

body.rtl .download-protection-section .table tr td:nth-of-type(4) {
  border-left: 2px solid #ececec;
  border-right: 0; }

body.rtl .support .bg-image,
body.rtl .aqua-mail-section .bg-image {
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

body.rtl .flip-image-header .bg-image {
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

body.rtl .flip-image-header .medium-title {
  float: right; }

body.rtl .text-page .details-news-item-wrap {
  direction: ltr;
  text-align: left; }

body.rtl header .mobile-menu-container,
body.rtl header .header-search-btn {
  float: left; }

body.rtl header .header-logo-container .header-search-btn {
  margin-right: 0;
  margin-left: 10px; }

@media (min-width: 1025px) {
  body.rtl header .header-nav-list {
    float: left; } }

@media (min-width: 480px) {
  body.rtl header .search-box .close-search-menu {
    left: 15px;
    right: auto; } }

@media (min-width: 1025px) {
  body.rtl header .search-box .close-search-menu {
    left: 35px;
    right: auto; } }

body.rtl header .search-box .search-platforms-list {
  margin: 0; }

body.rtl header .search-box .search-platforms-list {
  float: left;
  margin-bottom: 25px;
  margin-right: 0; }

body.rtl header .search-box .search-platforms-list > .platform-button:first-child {
  margin-right: 0 !important; }

@media (min-width: 480px) {
  body.rtl header .search-box .search-platforms-list > .platform-button:last-child {
    margin: 0 2.2vw; } }

@media (min-width: 1025px) {
  body.rtl header .search-box .search-platforms-list > .platform-button:last-child {
    margin: 0 1.5rem; } }

@media (min-width: 1025px) {
  body.rtl header .search-box .search-platforms-label {
    float: right; } }

body.rtl header .search-box .search-button.button {
  float: left;
  margin: -6px 0 0 -5px; }

@media (min-width: 1025px) {
  body.rtl header .search-box .search-button.button {
    margin: 0; } }

body.rtl header .search-box .search-field-icon {
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
  float: right;
  margin-left: 0;
  margin-right: 24px; }

@media (min-width: 640px) {
  body.rtl header .search-box .search-field-icon {
    float: right;
    margin-right: 24px;
    margin-left: 0; } }

body.rtl .footer .social-icon {
  margin-left: 15px;
  margin-right: 0; }

body.rtl .footer .social-text span,
body.rtl .footer .tel-item {
  direction: ltr; }

body.rtl .footer .footer-copy {
  text-align: right; }

body.rtl .footer .footer-copy .footer-links {
  right: auto;
  left: 0; }

@media (min-width: 640px) {
  body.rtl .footer .footer-copy .footer-links {
    left: 15px; } }

body.rtl .template-section .facts-slider {
  text-align: center; }

body.rtl .template-section .empty-positions {
  text-align: right; }

body.rtl .template-section .become-partner-icon-container {
  margin-right: 0;
  margin-left: 25px; }

body.rtl .template-section .profil-item-list ul li,
body.rtl .template-section .faq-row-content ul li {
  padding-right: 20px;
  padding-left: 0; }

body.rtl .template-section .profil-item-list ul li:after,
body.rtl .template-section .faq-row-content ul li:after {
  right: 3px;
  left: auto; }

body.rtl .template-section .profil-item-list.isLTR ul li,
body.rtl .template-section .faq-row-content.isLTR ul li {
  padding-right: 0;
  padding-left: 20px; }

body.rtl .template-section .profil-item-list.isLTR ul li:after,
body.rtl .template-section .faq-row-content.isLTR ul li:after {
  right: auto;
  left: 3px; }

body.rtl .template-section .template-help-grid .small-title {
  padding-right: 20px;
  padding-left: 0; }

body.rtl .template-section .contacts-item-link span {
  direction: ltr; }

body.rtl .template-section .faq-title-wrap {
  padding-right: 0;
  padding-left: 50px; }

body.rtl .template-section .faq-container.isLTR {
  direction: ltr;
  text-align: left; }

body.rtl .template-section .faq-container.isLTR .faq-title-wrap {
  padding-right: 50px;
  padding-left: 0; }

body.rtl .template-section .faq-container.isRTL .faq-nav-btn {
  text-align: right; }

body.rtl .template-section .faq-container.isRTL .faq-nav-img {
  margin-left: 20px;
  margin-right: 0; }

body.rtl .template-section .faq-container.isRTL .faq-btn-container {
  left: 0;
  right: auto; }

body.rtl .template-section .faq-container.isRTL .faq-title-wrap {
  padding-right: 0;
  padding-left: 50px; }

@media (min-width: 1025px) {
  body.rtl .template-section .faq-container.isRTL .faq-questions-container {
    padding-right: 2.60417vw;
    padding-left: 0; } }

@media (min-width: 640px) {
  body.rtl .template-section .info-content-container {
    padding-left: 0;
    padding-right: 20px; } }

@media (min-width: 1025px) {
  body.rtl .template-section .info-item {
    padding-right: 50px;
    padding-left: 50px; }
  body.rtl .template-section .info-content-container {
    padding-left: 0;
    padding-right: 2.08333vw; }
  body.rtl .template-section .become-partner-container {
    padding-left: 250px;
    padding-right: 0; }
  body.rtl .template-section .become-partner-btn-container {
    left: 0;
    right: auto; }
  body.rtl .template-section .template-form-btn-container {
    right: auto;
    left: 0; }
  body.rtl .template-section .label-template-form-fld {
    left: auto;
    right: 0; } }

@media (min-width: 1661px) {
  body.rtl .template-section .buttons-item-container {
    text-align: left; } }

@media (min-width: 1851px) {
  body.rtl .template-section .info-item {
    padding-right: 50px;
    padding-left: 15.10417vw; } }

@media (min-width: 1921px) {
  body.rtl .template-section .info-item {
    padding-left: 340px; } }

body.rtl .home-section .bg-image.header-image {
  background-image: url("../images/RTL_Images/Home/home-intro-bg.jpg"); }

body.rtl .home-section .bg-image.bg-oxdt {
  background-image: url("../images/RTL_Images/Home/bg-oxdt.jpg"); }

body.rtl .home-section .officesuite-logo {
  left: auto;
  right: -8px;
  text-indent: 9999px;
  white-space: nowrap; }

body.rtl .home-section .row-content,
body.rtl .home-section .item-link-container {
  text-align: center; }

body.rtl .home-section .single-col-row.scanner-item .col-row-wrap {
  padding-bottom: 90vw; }

body.rtl .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container {
  right: auto;
  left: 15px; }

@media (min-width: 1025px) {
  body.rtl .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container {
    right: auto;
    left: 45px; }
  body.rtl .home-section .single-col-row.scanner-item.drive-section .scanner-phone-container .scanner-phone-image {
    float: left; } }

body.rtl .home-section .single-col-row.scanner-item .pdf-bg-image {
  background-image: url("../images/RTL_Images/Home/Mobile.png"); }

body.rtl .home-section .pdf-transparent-bg {
  background-position: bottom -80px left 25%; }

body.rtl .home-section .drive-transparent-bg {
  background-position: bottom -120px left 2%; }

body.rtl .home-section .two-col-item.dictionary .item-link-container {
  right: auto;
  left: 20px; }

body.rtl .home-section .two-col-item.commander .item-link-container {
  right: 20px;
  left: auto; }

body.rtl .home-section .intro-icon-row {
  left: auto;
  right: 5px; }

body.rtl .home-section .partners-section .regular-title:after {
  left: auto;
  right: 100%;
  margin-left: 0;
  margin-right: 50px; }

body.rtl .home-section .col-row-wrap {
  text-align: right; }

body.rtl .home-section .abs-item-link {
  right: auto;
  left: 0; }

@media (min-width: 720px) {
  body.rtl .home-section .all-news-btn-container {
    right: auto;
    left: 0; } }

body.rtl .home-section .oxford-letters-image-wrap .rtl-show {
  display: block !important; }

body.rtl .home-section .scanner-phone-image-wrap {
  margin-right: -110px; }

@media (min-width: 480px) {
  body.rtl .home-section .row-content,
  body.rtl .home-section .item-link-container {
    text-align: right; }
  body.rtl .home-section .single-col-row.scanner-item .col-row-wrap {
    padding-bottom: 0; }
  body.rtl .home-section .two-col-item.commander .item-link-container {
    right: auto;
    left: 20px; }
  body.rtl .home-section .two-col-item .item-link-container {
    right: auto;
    left: 0;
    margin-right: 70px;
    margin-left: 70px; }
  body.rtl .home-section .col-row-wrap {
    right: 0;
    left: auto; }
  body.rtl .home-section .row-inner .row-content {
    padding-right: 20px; }
  body.rtl .home-section .scanner-phone-image-wrap {
    margin-left: -70px;
    float: left;
    margin-right: 0; } }

@media (min-width: 1025px) {
  body.rtl .home-section .block-image-container {
    margin-left: 8vw; }
  body.rtl .home-section .oxford-letters-container {
    left: -60px; }
  body.rtl .home-section .two-col-item.ub-reader .item-link-container,
  body.rtl .home-section .scanner-phone-container {
    right: auto;
    left: 0; } }

body.rtl .template-inner-section .medium-regular-title {
  text-align: right; }

body.rtl .template-inner-section .template-product-list ol p {
  padding-right: 20px;
  padding-left: 0;
  text-align: right; }

body.rtl .template-inner-section.pdf-extra-section .pdf-extra-bottom-info {
  text-align: right; }

body.rtl .template-inner-section.pdf-extra-section .template-product-top-wrap {
  text-align: right; }

body.rtl .template-inner-section.pdf-extra-section .pdf-extra-bottom-container {
  text-align: left; }

body.rtl .template-inner-section.pdf-extra-section .bottom-bg-image {
  width: 60.57292vw; }

body.rtl .template-inner-section.aqua-mail-section .aqua-mail-bottom-grid,
body.rtl .template-inner-section.aqua-mail-section .aqua-mail-bottom-grid-inner {
  text-align: left; }

body.rtl .template-inner-section.aqua-mail-section .aqua-mail-middle-inner {
  text-align: right; }

body.rtl .template-inner-section.aqua-mail-section .aqua-mail-middle-inner ul li {
  padding-left: auto;
  padding-right: 15px; }

body.rtl .template-inner-section.aqua-mail-section .aqua-mail-middle-inner ul li:before {
  left: auto;
  right: 0; }

body.rtl .template-inner-section.aqua-mail-section .aqua-mail-bottom-info {
  padding-right: 0;
  padding-left: 3.64583vw; }

body.rtl .template-inner-section.aqua-mail-section .aqua-mail-bottom-text {
  padding-right: 30px;
  padding-left: 0;
  text-align: right; }

body.rtl .template-inner-section.oxford-dictionary-section .oxford-bottom-container {
  text-align: left; }

body.rtl .template-inner-section.oxford-dictionary-section .oxford-bottom-content p {
  text-align: right; }

body.rtl .template-inner-section.pdf-scanner-section .pdf-bottom-container .pdf-grid-content,
body.rtl .template-inner-section.pdf-scanner-section .pdf-grid-content {
  text-align: right; }

body.rtl .template-inner-section.pdf-scanner-section .pdf-grid-content-wrap {
  text-align: right; }

body.rtl .template-inner-section.pdf-scanner-section .pdf-row-text {
  padding-right: 15px;
  padding-left: 0; }

@media (min-width: 1025px) {
  body.rtl .template-inner-section.pdf-scanner-section .pdf-top-bg-image {
    left: auto;
    right: 0; }
  body.rtl .template-inner-section.pdf-scanner-section .template-top-info,
  body.rtl .template-inner-section.pdf-scanner-section .pdf-middle-section,
  body.rtl .template-inner-section.pdf-scanner-section .pdf-bottom-container,
  body.rtl .template-inner-section.pdf-scanner-section .pdf-bottom-container .pdf-grid {
    text-align: left; }
  body.rtl .template-inner-section.pdf-scanner-section .pdf-grid-image-item {
    left: 0;
    right: auto; }
  body.rtl .template-inner-section.pdf-scanner-section .pdf-bottom-container .pdf-grid-content,
  body.rtl .template-inner-section.pdf-scanner-section .pdf-grid-content {
    padding-left: 80px;
    padding-right: 0;
    text-align: right; }
  body.rtl .template-inner-section.pdf-scanner-section .pdf-grid-content-wrap {
    text-align: right;
    padding-right: 0;
    padding-left: 80px;
    margin-top: 50px; } }

body.rtl .template-inner-section.aqua-mail-section .aqua-mail-bottom-info {
  padding-left: 3.64583vw; }

body.rtl .template-inner-section.aqua-mail-section .aqua-mail-bottom-text {
  padding-right: 1.30208vw; }

body.rtl .template-inner-section.aqua-mail-section .aqua-label-image {
  min-width: initial; }

body.rtl .template-inner-section .screenshots-section .slider-controls,
body.rtl .template-inner-section .anim-block .anim-elem.left.done {
  direction: ltr; }

body.rtl .template-inner-section .intro-btn-item {
  margin-right: 0;
  margin-left: 10px; }

body.rtl .template-inner-section .intro-image-wrap {
  right: auto;
  left: 0;
  bottom: -100px; }

body.rtl .template-inner-section .template-top-info {
  text-align: right;
  padding-left: 0;
  padding-right: 25px; }

body.rtl .template-inner-section .icon-row-item {
  margin-left: 15px;
  margin-right: 0; }

body.rtl .template-inner-section .description-section .info-data-item {
  margin-right: 0;
  margin-left: 10px; }

body.rtl .template-inner-section .description-section .data-item-text {
  padding-right: 5px;
  padding-left: 0; }

body.rtl .template-inner-section .description-section .description-content-item {
  padding-right: 0;
  padding-left: 20px; }

body.rtl .template-inner-section .description-section .description-content-item ul li,
body.rtl .template-inner-section .description-section .description-content-list ul li {
  padding-right: 20px;
  padding-left: 0; }

body.rtl .template-inner-section .description-section .description-content-item ul li::after,
body.rtl .template-inner-section .description-section .description-content-list ul li::after {
  right: 0;
  left: auto; }

body.rtl .template-inner-section .description-section .show-hide-button {
  padding: 20px 30px 0px 0px; }

body.rtl .template-inner-section .description-section .show-hide-button .show-item-icon {
  right: 0;
  left: auto; }

@media (min-width: 480px) {
  body.rtl .template-inner-section .screenshots-section .slider-controls {
    right: auto;
    left: 0; } }

@media (min-width: 640px) {
  body.rtl .template-inner-section .aqua-mail-middle-inner {
    float: left; }
  body.rtl .template-inner-section .oxford-middle-content,
  body.rtl .template-inner-section .oxford-bottom-info {
    padding-right: 35px;
    padding-left: 0; } }

@media (min-width: 720px) {
  body.rtl .template-inner-section .intro-content-item {
    padding-left: 0;
    padding-right: 20px; }
  body.rtl .template-inner-section .template-top-section-image {
    right: auto;
    left: 0; } }

@media (min-width: 1025px) {
  body.rtl .template-inner-section .intro-content-item {
    padding-left: 0;
    padding-right: 2.08333vw; }
  body.rtl .template-inner-section .template-product-top-wrap {
    text-align: right; }
  body.rtl .template-inner-section .template-product-list {
    text-align: right; }
  body.rtl .template-inner-section .template-top-info {
    padding-right: 5.72917vw; }
  body.rtl .template-inner-section .commander-bottom-info {
    text-align: right;
    float: left; }
  body.rtl .template-inner-section .bottom-bg-image {
    left: auto;
    right: 0; }
  body.rtl .template-inner-section .description-section .description-alert-item {
    right: auto;
    left: 0;
    padding-right: 20px;
    padding-left: 0; }
  body.rtl .template-inner-section .description-section .scroll-top-container {
    right: auto;
    left: 0; }
  body.rtl .template-inner-section .oxford-middle-content,
  body.rtl .template-inner-section .oxford-bottom-info {
    padding-right: 5.72917vw;
    padding-left: 0; } }

@media (min-width: 1367px) {
  body.rtl .template-inner-section.oxford-dictionary-section .template-product-list ol p {
    padding-right: 25px;
    padding-left: 0; } }

@media (min-width: 1921px) {
  body.rtl .template-inner-section .oxford-middle-content,
  body.rtl .template-inner-section .oxford-bottom-info {
    padding-right: 120px;
    padding-left: 0; }
  body.rtl .template-inner-section .template-top-info {
    padding-right: 110px; } }

body.rtl .dictionaries-section.template-section .filter-label {
  text-align: right; }

body.rtl .dictionaries-section.template-section .template-top-section .medium-title {
  float: right; }

body.rtl .dictionaries-section.template-section .filter-group {
  text-align: right; }

@media (min-width: 640px) {
  body.rtl .dictionaries-section.template-section .filter-group {
    text-align: left; } }

body.rtl .dictionaries-section.template-section .filter-select,
body.rtl .dictionaries-section.template-section .filter-select-sort {
  padding-left: 45px;
  padding-right: 15px;
  background-position: center left; }

body.rtl .dictionaries-section.template-section .filter-wrap-sort .dictionaries-sort-container {
  right: 0;
  left: 20px;
  text-align: left; }

body.rtl .dictionaries-section.template-section .filter-wrap-sort .dictionaries-sort-container .filter-label-sort {
  margin-right: 0;
  margin-left: 20px; }

body.rtl .dictionaries-section.template-section .price-color-text {
  margin-left: 0;
  margin-right: 5px; }

body.rtl .dictionaries-section.template-section .platform-icon-item {
  margin-right: 0;
  margin-left: 10px; }

body.rtl .dictionaries-section.template-section .button-item {
  margin-right: 0;
  margin-left: 10px; }

@media (min-width: 640px) {
  body.rtl .dictionaries-section.template-section .dictionaries-content-item {
    padding-left: 0;
    padding-right: 35px; } }

body.rtl .shopping-cart .shopping-cart-form .value-item {
  text-align: left; }

body.rtl .shopping-cart .shopping-cart-form #recalculate-discount {
  left: 0;
  float: right;
  right: auto;
  margin-right: -5%;
  margin-left: 0; }

body.rtl .shopping-cart .shopping-cart-form #discountCode {
  right: 0;
  left: auto;
  float: right; }

body.rtl .shopping-cart .shopping-cart-form .image {
  float: right; }

body.rtl .shopping-cart .shopping-cart-form .title-large {
  padding-right: 20px; }

body.rtl .shopping-cart .shopping-cart-form .content {
  float: left; }

body.rtl .shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-price {
  left: 0;
  text-align: left;
  right: auto; }

body.rtl .shopping-cart .shopping-cart-form .content .item-price-quantit .shopping-cart-quantity {
  float: right; }

body.rtl .shopping-cart .shopping-cart-form .content .item-specf {
  float: right; }

body.rtl .shopping-cart .shopping-cart-form .content .app-platform-support .app-select-platform {
  float: right;
  padding: 0; }

body.rtl .shopping-cart .shopping-cart-form .content .app-platform-support .app-select-platform .select-field {
  float: right; }

body.rtl .shopping-cart .shopping-cart-form .content .app-platform-support .label {
  float: right; }

body.rtl .shopping-cart .shopping-cart-form .content .app-platform-support .app-platforms {
  float: right;
  margin-right: 0;
  margin-left: 15px; }

body.rtl .shopping-cart .shopping-cart-form .download-protection-support .fit-right {
  float: left; }

body.rtl .shopping-cart .shopping-cart-form .download-protection-support .fit-right .shopping-cart-delete {
  float: left;
  margin-left: 0;
  margin-right: 10px; }

@media (min-width: 720px) {
  body.rtl .shopping-cart .content .app-platform-support .app-select-platform {
    float: right;
    padding-right: 20px;
    padding-left: 0;
    margin-left: -40px;
    margin-right: 15px; } }

@media (min-width: 1025px) {
  body.rtl .shopping-cart .shopping-cart-bar {
    float: left; }
  body.rtl .shopping-cart .shopping-cart-form {
    float: right; }
  body.rtl .shopping-cart .shopping-cart-form .title-large {
    float: right;
    margin-left: 0;
    margin-right: 15px;
    padding-right: 0; }
  body.rtl .shopping-cart .shopping-cart-form .content .item-price-quantit {
    float: right;
    right: auto;
    left: 0; }
  body.rtl .shopping-cart .shopping-cart-form .content .app-platform-support {
    padding-left: 0;
    padding-right: 70px; }
  body.rtl .shopping-cart .shopping-cart-form .content .app-platform-support .label.lb-version.lb-vertical {
    float: none; }
  body.rtl .shopping-cart .shopping-cart-form .shopping-cart-total .value-item.total .label {
    left: 0;
    right: auto; }
  body.rtl .shopping-cart .shopping-cart-form .checkout-buttons .next-step-btn-wrap {
    right: auto;
    left: 0; }
  body.rtl .shopping-cart .shopping-cart-form .checkout-buttons .load-more-btn {
    float: right;
    right: auto;
    left: 0; }
  body.rtl .shopping-cart .shopping-cart-form .checkout-buttons input.field {
    float: right;
    right: 0;
    left: auto; }
  body.rtl .shopping-cart .shopping-cart-form .checkout-buttons .left {
    float: right; } }

body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout .payment-type-label {
  float: right;
  padding-right: 0;
  margin-left: 0.9375rem;
  padding-left: 2rem;
  margin-right: 0; }

body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout .payment-type-logo {
  float: right; }

body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .row {
  text-align: right; }

body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .row select {
  background-position: center left; }

body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .checkbox-group .checkbox {
  padding-right: 2.2rem;
  padding-left: 0;
  text-align: right; }

body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .checkbox-group .checkbox::before {
  right: 0;
  left: auto; }

@media (min-width: 720px) {
  body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset {
    padding: 15px 0 0 0;
    width: 90%; } }

@media (min-width: 1025px) {
  body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout {
    padding-right: 50px; }
  body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset {
    padding: 15px 0 0 30px;
    width: 70%; }
  body.rtl .shopping-checkout.template-section .template-content-inner .box-checkout .fieldset .row select:first-child {
    margin-right: 0;
    margin-left: 20px; } }

body.rtl .shopping-order-details.template-section .template-section-wrap .flex-container .system-status.status-success {
  padding: 0 50px 0 0;
  background-position: right center; }

body.rtl .shopping-order-details.template-section .template-section-wrap .flex-container .system-status.status-success::after {
  left: 0;
  right: 9px; }

@media (min-width: 1025px) {
  body.rtl .shopping-order-details.template-section .template-section-wrap .flex-container .system-status.status-success {
    padding: 20px 100px 20px 20px; }
  body.rtl .shopping-order-details.template-section .template-section-wrap .flex-container .system-status.status-success::after {
    left: 0;
    right: 17px; } }
