/*!
Video.js Default Styles (http://videojs.com)
Version 4.12.11
Create your own skin at http://designer.videojs.com
*/
/* SKIN
================================================================================
The main class name for all skin-specific styles. To make your own skin,
replace all occurrences of 'vjs-default-skin' with a new name. Then add your new
skin name to your video tag instead of the default skin.
e.g. <video class="video-js my-skin-name">
*/
.vjs-default-skin {
  color: #cccccc;
}
/* Custom Icon Font
--------------------------------------------------------------------------------
The control icons are from a custom font. Each icon corresponds to a character
(e.g. "\e001"). Font icons allow for easy scaling and coloring of icons.
*/
@font-face {
  font-family: 'VideoJS';
  src: url('modules/tmproductvideos/views/fonts/vjs.eot');
  src: url('modules/tmproductvideos/views/fonts/vjs.eot?#iefix') format('embedded-opentype'), url('modules/tmproductvideos/views/fonts/vjs.woff') format('woff'), url('modules/tmproductvideos/views/fonts/vjs.ttf') format('truetype'), url('modules/tmproductvideos/views/fonts/vjs.svg#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
}
/* Base UI Component Classes
--------------------------------------------------------------------------------
*/
/* Slider - used for Volume bar and Seek bar */
.vjs-default-skin .vjs-slider {
  /* Replace browser focus highlight with handle highlight */
  outline: 0;
  position: relative;
  cursor: pointer;
  padding: 0;
  /* background-color-with-alpha */
  background-color: #333333;
  background-color: rgba(51, 51, 51, 0.9);
}
.vjs-default-skin .vjs-slider:focus {
  /* box-shadow */
  -webkit-box-shadow: 0 0 2em #ffffff;
  -moz-box-shadow: 0 0 2em #ffffff;
  box-shadow: 0 0 2em #ffffff;
}
.vjs-default-skin .vjs-slider-handle {
  position: absolute;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-slider-handle:before {
  content: "\e009";
  font-family: VideoJS;
  font-size: 1em;
  line-height: 1;
  text-align: center;
  text-shadow: 0em 0em 1em #fff;
  position: absolute;
  top: 0;
  left: 0;
  /* Rotate the square icon to make a diamond */
  /* transform */
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
/* Control Bar
--------------------------------------------------------------------------------
The default control bar that is a container for most of the controls.
*/
.vjs-default-skin .vjs-control-bar {
  /* Start hidden */
  display: none;
  position: absolute;
  /* Place control bar at the bottom of the player box/video.
     If you want more margin below the control bar, add more height. */
  bottom: 0;
  /* Use left/right to stretch to 100% width of player div */
  left: 0;
  right: 0;
  /* Height includes any margin you want above or below control items */
  height: 3.0em;
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
}
/* Show the control bar only once the video has started playing */
.vjs-default-skin.vjs-has-started .vjs-control-bar {
  display: block;
  /* Visibility needed to make sure things hide in older browsers too. */

  visibility: visible;
  opacity: 1;
  /* transition */
  -webkit-transition: visibility 0.1s, opacity 0.1s;
  -moz-transition: visibility 0.1s, opacity 0.1s;
  -o-transition: visibility 0.1s, opacity 0.1s;
  transition: visibility 0.1s, opacity 0.1s;
}
/* Hide the control bar when the video is playing and the user is inactive  */
.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  display: block;
  visibility: hidden;
  opacity: 0;
  /* transition */
  -webkit-transition: visibility 1s, opacity 1s;
  -moz-transition: visibility 1s, opacity 1s;
  -o-transition: visibility 1s, opacity 1s;
  transition: visibility 1s, opacity 1s;
}
.vjs-default-skin.vjs-controls-disabled .vjs-control-bar {
  display: none;
}
.vjs-default-skin.vjs-using-native-controls .vjs-control-bar {
  display: none;
}
/* The control bar shouldn't show after an error */
.vjs-default-skin.vjs-error .vjs-control-bar {
  display: none;
}
/* Don't hide the control bar if it's audio */
.vjs-audio.vjs-default-skin.vjs-has-started.vjs-user-inactive.vjs-playing .vjs-control-bar {
  opacity: 1;
  visibility: visible;
}
/* IE8 is flakey with fonts, and you have to change the actual content to force
fonts to show/hide properly.
  - "\9" IE8 hack didn't work for this
  - Found in XP IE8 from http://modern.ie. Does not show up in "IE8 mode" in IE9
*/
@media \0screen {
  .vjs-default-skin.vjs-user-inactive.vjs-playing .vjs-control-bar :before {
    content: "";
  }
}
/* General styles for individual controls. */
.vjs-default-skin .vjs-control {
  outline: none;
  position: relative;
  float: left;
  text-align: center;
  margin: 0;
  padding: 0;
  height: 3.0em;
  width: 4em;
}
/* Font button icons */
.vjs-default-skin .vjs-control:before {
  font-family: VideoJS;
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-control:focus:before,
.vjs-default-skin .vjs-control:hover:before {
  text-shadow: 0em 0em 1em #ffffff;
}
.vjs-default-skin .vjs-control:focus {
  /*  outline: 0; */
  /* keyboard-only users cannot see the focus on several of the UI elements when
  this is set to 0 */

}
/* Hide control text visually, but have it available for screenreaders */
.vjs-default-skin .vjs-control-text {
  /* hide-visually */
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}
/* Play/Pause
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-play-control {
  width: 5em;
  cursor: pointer;
}
.vjs-default-skin .vjs-play-control:before {
  content: "\e001";
}
.vjs-default-skin.vjs-playing .vjs-play-control:before {
  content: "\e002";
}
/* Playback toggle
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-playback-rate .vjs-playback-rate-value {
  font-size: 1.5em;
  line-height: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.5);
}
.vjs-default-skin .vjs-playback-rate.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 4em;
  left: -2em;
  list-style: none;
}
/* Volume/Mute
-------------------------------------------------------------------------------- */
.vjs-default-skin .vjs-mute-control,
.vjs-default-skin .vjs-volume-menu-button {
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-mute-control:before,
.vjs-default-skin .vjs-volume-menu-button:before {
  content: "\e006";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-0:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-0:before {
  content: "\e003";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-1:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-1:before {
  content: "\e004";
}
.vjs-default-skin .vjs-mute-control.vjs-vol-2:before,
.vjs-default-skin .vjs-volume-menu-button.vjs-vol-2:before {
  content: "\e005";
}
.vjs-default-skin .vjs-volume-control {
  width: 5em;
  float: right;
}
.vjs-default-skin .vjs-volume-bar {
  width: 5em;
  height: 0.6em;
  margin: 1.1em auto 0;
}
.vjs-default-skin .vjs-volume-level {
  position: absolute;
  top: 0;
  left: 0;
  height: 0.5em;
  /* assuming volume starts at 1.0 */

  width: 100%;
  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-volume-bar .vjs-volume-handle {
  width: 0.5em;
  height: 0.5em;
  /* Assumes volume starts at 1.0. If you change the size of the
     handle relative to the volume bar, you'll need to update this value
     too. */

  left: 4.5em;
}
.vjs-default-skin .vjs-volume-handle:before {
  font-size: 0.9em;
  top: -0.2em;
  left: -0.2em;
  width: 1em;
  height: 1em;
}
/* The volume menu button is like menu buttons (captions/subtitles) but works
    a little differently. It needs to be possible to tab to the volume slider
    without hitting space bar on the menu button. To do this we're not using
    display:none to hide the slider menu by default, and instead setting the
    width and height to zero. */
.vjs-default-skin .vjs-volume-menu-button .vjs-menu {
  display: block;
  width: 0;
  height: 0;
  border-top-color: transparent;
}
.vjs-default-skin .vjs-volume-menu-button .vjs-menu .vjs-menu-content {
  height: 0;
  width: 0;
}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing {
  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
.vjs-default-skin .vjs-volume-menu-button:hover .vjs-menu .vjs-menu-content,
.vjs-default-skin .vjs-volume-menu-button .vjs-menu.vjs-lock-showing .vjs-menu-content {
  height: 2.9em;
  width: 10em;
}
/* Progress
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-progress-control {
  position: absolute;
  left: 0;
  right: 0;
  width: auto;
  font-size: 0.3em;
  height: 1em;
  /* Set above the rest of the controls. */
  top: -1em;
  /* Shrink the bar slower than it grows. */
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* On hover, make the progress bar grow to something that's more clickable.
    This simply changes the overall font for the progress bar, and this
    updates both the em-based widths and heights, as wells as the icon font */
.vjs-default-skin:hover .vjs-progress-control {
  font-size: .9em;
  /* Even though we're not changing the top/height, we need to include them in
      the transition so they're handled correctly. */

  /* transition */
  -webkit-transition: all 0.2s;
  -moz-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
/* Box containing play and load progresses. Also acts as seek scrubber. */
.vjs-default-skin .vjs-progress-holder {
  height: 100%;
}
/* Progress Bars */
.vjs-default-skin .vjs-progress-holder .vjs-play-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress,
.vjs-default-skin .vjs-progress-holder .vjs-load-progress div {
  position: absolute;
  display: block;
  height: 100%;
  margin: 0;
  padding: 0;
  /* updated by javascript during playback */

  width: 0;
  /* Needed for IE6 */
  left: 0;
  top: 0;
}
.vjs-default-skin .vjs-play-progress {
  /*
    Using a data URI to create the white diagonal lines with a transparent
      background. Surprisingly works in IE8.
      Created using http://www.patternify.com
    Changing the first color value will change the bar color.
    Also using a paralax effect to make the lines move backwards.
      The -50% left position makes that happen.
  */

  background: #66a8cc url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAYAAAAGCAYAAADgzO9IAAAAP0lEQVQIHWWMAQoAIAgDR/QJ/Ub//04+w7ZICBwcOg5FZi5iBB82AGzixEglJrd4TVK5XUJpskSTEvpdFzX9AB2pGziSQcvAAAAAAElFTkSuQmCC) -50% 0 repeat;
}
.vjs-default-skin .vjs-load-progress {
  background: #646464 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.2);
}
/* there are child elements of the load progress bar that represent the
   specific time ranges that have been buffered */
.vjs-default-skin .vjs-load-progress div {
  background: #787878 /* IE8- Fallback */;
  background: rgba(255, 255, 255, 0.1);
}
.vjs-default-skin .vjs-seek-handle {
  width: 1.5em;
  height: 100%;
}
.vjs-default-skin .vjs-seek-handle:before {
  padding-top: 0.1em /* Minor adjustment */;
}
/* Live Mode
--------------------------------------------------------------------------------
*/
.vjs-default-skin.vjs-live .vjs-time-controls,
.vjs-default-skin.vjs-live .vjs-time-divider,
.vjs-default-skin.vjs-live .vjs-progress-control {
  display: none;
}
.vjs-default-skin.vjs-live .vjs-live-display {
  display: block;
}
/* Live Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-live-display {
  display: none;
  font-size: 1em;
  line-height: 3em;
}
/* Time Display
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-time-controls {
  font-size: 1em;
  /* Align vertically by making the line height the same as the control bar */
  line-height: 3em;
}
.vjs-default-skin .vjs-current-time {
  float: left;
}
.vjs-default-skin .vjs-duration {
  float: left;
}
/* Remaining time is in the HTML, but not included in default design */
.vjs-default-skin .vjs-remaining-time {
  display: none;
  float: left;
}
.vjs-time-divider {
  float: left;
  line-height: 3em;
}
/* Fullscreen
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-fullscreen-control {
  width: 3.8em;
  cursor: pointer;
  float: right;
}
.vjs-default-skin .vjs-fullscreen-control:before {
  content: "\e000";
}
/* Switch to the exit icon when the player is in fullscreen */
.vjs-default-skin.vjs-fullscreen .vjs-fullscreen-control:before {
  content: "\e00b";
}
/* Big Play Button (play button at start)
--------------------------------------------------------------------------------
Positioning of the play button in the center or other corners can be done more
easily in the skin designer. http://designer.videojs.com/
*/
.vjs-default-skin .vjs-big-play-button {
  left: 0.5em;
  top: 0.5em;
  font-size: 3em;
  display: block;
  z-index: 2;
  position: absolute;
  width: 4em;
  height: 2.6em;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  opacity: 1;
  /* Need a slightly gray bg so it can be seen on black backgrounds */
  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  border: 0.1em solid #3b4249;
  /* border-radius */
  -webkit-border-radius: 0.8em;
  -moz-border-radius: 0.8em;
  border-radius: 0.8em;
  /* box-shadow */
  -webkit-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  -moz-box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  box-shadow: 0px 0px 1em rgba(255, 255, 255, 0.25);
  /* transition */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
/* Optionally center */
.vjs-default-skin.vjs-big-play-centered .vjs-big-play-button {
  /* Center it horizontally */
  left: 50%;
  margin-left: -2.1em;
  /* Center it vertically */
  top: 50%;
  margin-top: -1.4000000000000001em;
}
/* Hide if controls are disabled */
.vjs-default-skin.vjs-controls-disabled .vjs-big-play-button {
  display: none;
}
/* Hide when video starts playing */
.vjs-default-skin.vjs-has-started .vjs-big-play-button {
  display: none;
}
/* Hide on mobile devices. Remove when we stop using native controls
    by default on mobile  */
.vjs-default-skin.vjs-using-native-controls .vjs-big-play-button {
  display: none;
}
.vjs-default-skin:hover .vjs-big-play-button,
.vjs-default-skin .vjs-big-play-button:focus {
  outline: 0;
  border-color: #fff;
  /* IE8 needs a non-glow hover state */
  background-color: #505050;
  background-color: rgba(50, 50, 50, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 3em #ffffff;
  -moz-box-shadow: 0 0 3em #ffffff;
  box-shadow: 0 0 3em #ffffff;
  /* transition */
  -webkit-transition: all 0s;
  -moz-transition: all 0s;
  -o-transition: all 0s;
  transition: all 0s;
}
.vjs-default-skin .vjs-big-play-button:before {
  content: "\e001";
  font-family: VideoJS;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 2.6em;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-big-play-button {
  display: none;
}
/* Error Display
--------------------------------------------------------------------------------
*/
.vjs-error-display {
  display: none;
}
.vjs-error .vjs-error-display {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.vjs-error .vjs-error-display:before {
  content: 'X';
  font-family: Arial;
  font-size: 4em;
  color: #666666;
  /* In order to center the play icon vertically we need to set the line height
     to the same as the button height */

  line-height: 1;
  text-shadow: 0.05em 0.05em 0.1em #000;
  text-align: center /* Needed for IE8 */;
  vertical-align: middle;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -0.5em;
  width: 100%;
}
.vjs-error-display div {
  position: absolute;
  bottom: 1em;
  right: 0;
  left: 0;
  font-size: 1.4em;
  text-align: center;
  padding: 3px;
  background: #000000;
  background: rgba(0, 0, 0, 0.5);
}
.vjs-error-display a,
.vjs-error-display a:visited {
  color: #F4A460;
}
/* Loading Spinner
--------------------------------------------------------------------------------
*/
.vjs-loading-spinner {
  /* Should be hidden by default */
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 4em;
  line-height: 1;
  width: 1em;
  height: 1em;
  margin-left: -0.5em;
  margin-top: -0.5em;
  opacity: 0.75;
}
/* Show the spinner when waiting for data and seeking to a new time */
.vjs-waiting .vjs-loading-spinner,
.vjs-seeking .vjs-loading-spinner {
  display: block;
  /* only animate when showing because it can be processor heavy */
  /* animation */
  -webkit-animation: spin 1.5s infinite linear;
  -moz-animation: spin 1.5s infinite linear;
  -o-animation: spin 1.5s infinite linear;
  animation: spin 1.5s infinite linear;
}
/* Errors are unrecoverable without user interaction so hide the spinner */
.vjs-error .vjs-loading-spinner {
  display: none;
  /* ensure animation doesn't continue while hidden */
  /* animation */
  -webkit-animation: none;
  -moz-animation: none;
  -o-animation: none;
  animation: none;
}
.vjs-default-skin .vjs-loading-spinner:before {
  content: "\e01e";
  font-family: VideoJS;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  text-align: center;
  text-shadow: 0em 0em 0.1em #000;
}
@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(359deg);
  }
}
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
  }
}
@-o-keyframes spin {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(359deg);
  }
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
/* Menu Buttons (Captions/Subtitles/etc.)
--------------------------------------------------------------------------------
*/
.vjs-default-skin .vjs-menu-button {
  float: right;
  cursor: pointer;
}
.vjs-default-skin .vjs-menu {
  display: none;
  position: absolute;
  bottom: 0;
  left: 0em;
  /* (Width of vjs-menu - width of button) / 2 */

  width: 0em;
  height: 0em;
  margin-bottom: 3em;
  border-left: 2em solid transparent;
  border-right: 2em solid transparent;
  border-top: 1.55em solid #000000;
  /* Same width top as ul bottom */

  border-top-color: rgba(7, 40, 50, 0.5);
  /* Same as ul background */

}
/* Button Pop-up Menu */
.vjs-default-skin .vjs-menu-button .vjs-menu .vjs-menu-content {
  display: block;
  padding: 0;
  margin: 0;
  position: absolute;
  width: 10em;
  bottom: 1.5em;
  /* Same bottom as vjs-menu border-top */

  max-height: 15em;
  overflow: auto;
  left: -5em;
  /* Width of menu - width of button / 2 */

  /* background-color-with-alpha */
  background-color: #07141e;
  background-color: rgba(7, 20, 30, 0.7);
  /* box-shadow */
  -webkit-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  -moz-box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
  box-shadow: -0.2em -0.2em 0.3em rgba(255, 255, 255, 0.2);
}
.vjs-default-skin .vjs-menu-button:hover .vjs-control-content .vjs-menu,
.vjs-default-skin .vjs-control-content .vjs-menu.vjs-lock-showing {
  display: block;
}
/* prevent menus from opening while scrubbing (FF, IE) */
.vjs-default-skin.vjs-scrubbing .vjs-menu-button:hover .vjs-control-content .vjs-menu {
  display: none;
}
.vjs-default-skin .vjs-menu-button ul li {
  list-style: none;
  margin: 0;
  padding: 0.3em 0 0.3em 0;
  line-height: 1.4em;
  font-size: 1.2em;
  text-align: center;
  text-transform: lowercase;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-selected {
  background-color: #000;
}
.vjs-default-skin .vjs-menu-button ul li:focus,
.vjs-default-skin .vjs-menu-button ul li:hover,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:focus,
.vjs-default-skin .vjs-menu-button ul li.vjs-selected:hover {
  outline: 0;
  color: #111;
  /* background-color-with-alpha */
  background-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.75);
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
.vjs-default-skin .vjs-menu-button ul li.vjs-menu-title {
  text-align: center;
  text-transform: uppercase;
  font-size: 1em;
  line-height: 2em;
  padding: 0;
  margin: 0 0 0.3em 0;
  font-weight: bold;
  cursor: default;
}
/* Subtitles Button */
.vjs-default-skin .vjs-subtitles-button:before {
  content: "\e00c";
}
/* Captions Button */
.vjs-default-skin .vjs-captions-button:before {
  content: "\e008";
}
/* Chapters Button */
.vjs-default-skin .vjs-chapters-button:before {
  content: "\e00c";
}
.vjs-default-skin .vjs-chapters-button.vjs-menu-button .vjs-menu .vjs-menu-content {
  width: 24em;
  left: -12em;
}
/* Replacement for focus outline */
.vjs-default-skin .vjs-captions-button:focus .vjs-control-content:before,
.vjs-default-skin .vjs-captions-button:hover .vjs-control-content:before {
  /* box-shadow */
  -webkit-box-shadow: 0 0 1em #ffffff;
  -moz-box-shadow: 0 0 1em #ffffff;
  box-shadow: 0 0 1em #ffffff;
}
/*
REQUIRED STYLES (be careful overriding)
================================================================================
When loading the player, the video tag is replaced with a DIV,
that will hold the video tag or object tag for other playback methods.
The div contains the video playback element (Flash or HTML5) and controls,
and sets the width and height of the video.

** If you want to add some kind of border/padding (e.g. a frame), or special
positioning, use another containing element. Otherwise you risk messing up
control positioning and full window mode. **
*/
.video-js {
  background-color: #000;
  position: relative;
  padding: 0;
  /* Start with 10px for base font size so other dimensions can be em based and
     easily calculable. */

  font-size: 10px;
  /* Allow poster to be vertically aligned. */

  vertical-align: middle;
  /*  display: table-cell; */
  /*This works in Safari but not Firefox.*/

  /* Provide some basic defaults for fonts */

  font-weight: normal;
  font-style: normal;
  /* Avoiding helvetica: issue #376 */

  font-family: Arial, sans-serif;
  /* Turn off user selection (text highlighting) by default.
     The majority of player components will not be text blocks.
     Text areas will need to turn user selection back on. */

  /* user-select */
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
/* Playback technology elements expand to the width/height of the containing div
    <video> or <object> */
.video-js .vjs-tech {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
/* Fix for Firefox 9 fullscreen (only if it is enabled). Not needed when
   checking fullScreenEnabled. */
.video-js:-moz-full-screen {
  position: absolute;
}
/* Fullscreen Styles */
body.vjs-full-window {
  padding: 0;
  margin: 0;
  height: 100%;
  /* Fix for IE6 full-window. http://www.cssplay.co.uk/layouts/fixed.html */
  overflow-y: auto;
}
.video-js.vjs-fullscreen {
  position: fixed;
  overflow: hidden;
  z-index: 1000;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  /* IE6 full-window (underscore hack) */
  _position: absolute;
}
.video-js:-webkit-full-screen {
  width: 100% !important;
  height: 100% !important;
}
.video-js.vjs-fullscreen.vjs-user-inactive {
  cursor: none;
}
/* Poster Styles */
.vjs-poster {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
  background-color: #000000;
  cursor: pointer;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  width: 100%;
}
/* Hide the poster after the video has started playing */
.video-js.vjs-has-started .vjs-poster {
  display: none;
}
/* Don't hide the poster if we're playing audio */
.video-js.vjs-audio.vjs-has-started .vjs-poster {
  display: block;
}
/* Hide the poster when controls are disabled because it's clickable
    and the native poster can take over */
.video-js.vjs-controls-disabled .vjs-poster {
  display: none;
}
/* Hide the poster when native controls are used otherwise it covers them */
.video-js.vjs-using-native-controls .vjs-poster {
  display: none;
}
/* Text Track Styles */
/* Overall track holder for both captions and subtitles */
.video-js .vjs-text-track-display {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 3em;
  right: 0;
  pointer-events: none;
}
/* Captions Settings Dialog */
.vjs-caption-settings {
  position: relative;
  top: 1em;
  background-color: #000;
  opacity: 0.75;
  color: #FFF;
  margin: 0 auto;
  padding: 0.5em;
  height: 15em;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  width: 40em;
}
.vjs-caption-settings .vjs-tracksettings {
  top: 0;
  bottom: 2em;
  left: 0;
  right: 0;
  position: absolute;
  overflow: auto;
}
.vjs-caption-settings .vjs-tracksettings-colors,
.vjs-caption-settings .vjs-tracksettings-font {
  float: left;
}
.vjs-caption-settings .vjs-tracksettings-colors:after,
.vjs-caption-settings .vjs-tracksettings-font:after,
.vjs-caption-settings .vjs-tracksettings-controls:after {
  clear: both;
}
.vjs-caption-settings .vjs-tracksettings-controls {
  position: absolute;
  bottom: 1em;
  right: 1em;
}
.vjs-caption-settings .vjs-tracksetting {
  margin: 5px;
  padding: 3px;
  min-height: 40px;
}
.vjs-caption-settings .vjs-tracksetting label {
  display: block;
  width: 100px;
  margin-bottom: 5px;
}
.vjs-caption-settings .vjs-tracksetting span {
  display: inline;
  margin-left: 5px;
}
.vjs-caption-settings .vjs-tracksetting > div {
  margin-bottom: 5px;
  min-height: 20px;
}
.vjs-caption-settings .vjs-tracksetting > div:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  min-height: 0;
}
.vjs-caption-settings label > input {
  margin-right: 10px;
}
.vjs-caption-settings input[type="button"] {
  width: 40px;
  height: 40px;
}
/* Hide disabled or unsupported controls */
.vjs-hidden {
  display: none !important;
}
.vjs-lock-showing {
  display: block !important;
  opacity: 1;
  visibility: visible;
}
/*  In IE8 w/ no JavaScript (no HTML5 shim), the video tag doesn't register.
    The .video-js classname on the video tag also isn't considered.
    This optional paragraph inside the video tag can provide a message to users
    about what's required to play video. */
.vjs-no-js {
  padding: 2em;
  color: #ccc;
  background-color: #333;
  font-size: 1.8em;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 30em;
  height: 15em;
  margin: 0 auto;
}
.vjs-no-js a,
.vjs-no-js a:visited {
  color: #F4A460;
}
/* -----------------------------------------------------------------------------
The original source of this file lives at
https://github.com/videojs/video.js/blob/master/src/css/video-js.less */
/**************************************************************************
		        Style for front-end TM Product Videos
**************************************************************************/

.videowrapper {
  float: none;
  clear: both;
  width: 100%;
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 25px;
  height: 0;
}

.videowrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}.row.full-width {
  margin-left: auto;
  margin-right: auto; }

.container.col-lg-12 {
  float: none;
  padding-left: 15px;
  padding-right: 15px; }
  @media (min-width: 768px) {
    .container.col-lg-12 {
      width: auto;
      max-width: 2560px; } }
  @media (min-width: 992px) {
    .container.col-lg-12 {
      padding-left: 75px;
      padding-right: 75px; } }
  @media (min-width: 1650px) {
    .container.col-lg-12 {
      padding-left: 190px;
      padding-right: 190px; } }

.container .container.col-lg-12 {
  max-width: 1170px;
  padding-left: 0;
  padding-right: 0; }

@media (min-width: 1200px) {
  #header .align-center {
    padding: 10px 0;
    min-height: 80px; } }
@media (min-width: 1360px) {
  #header .align-center {
    padding: 20px 0;
    min-height: 135px; } }
#header > .wrapper {
  padding-top: 52px;
  padding-bottom: 28px; }
  #header > .wrapper [class*='col-'] {
    line-height: 0; }
  @media (min-width: 1200px) {
    #header > .wrapper {
      padding-top: 12px;
      padding-bottom: 12px; }
      #header > .wrapper [class*='col-'] {
        line-height: 1; } }
  #header > .wrapper .module {
    display: inline-block;
    line-height: 1;
    vertical-align: top; }
    @media (max-width: 1199px) {
      #header > .wrapper .module > div {
        vertical-align: top; } }
    @media (max-width: 479px) {
      #header > .wrapper .module > div + div, #header > .wrapper .module > div + form, #header > .wrapper .module > form + div {
        margin-left: 40px; } }
    @media (min-width: 480px) and (max-width: 1199px) {
      #header > .wrapper .module > div + div, #header > .wrapper .module > div + form, #header > .wrapper .module > form + div {
        margin-left: 50px; } }
  @media (min-width: 1200px) {
    #header > .wrapper .inline-menu {
      margin-top: 31px; }
      #header > .wrapper .inline-menu.inset-1 {
        margin-top: 16px; }
      #header > .wrapper .inline-menu > .module {
        display: block;
        border-top: 1px solid #55bee7; }
        #header > .wrapper .inline-menu > .module .top_menu {
          display: inline-block; }
    #header > .wrapper .isStuck .inline-menu {
      margin: -10px 0 0; }
      #header > .wrapper .isStuck .inline-menu .top_menu > ul > li, #header > .wrapper .isStuck .inline-menu .top_menu .stickUpHolder > ul > li {
        padding-top: 23px; }
        #header > .wrapper .isStuck .inline-menu .top_menu > ul > li > a:before, #header > .wrapper .isStuck .inline-menu .top_menu .stickUpHolder > ul > li > a:before {
          top: -24px; } }
  @media (min-width: 1200px) {
    #header > .wrapper.padding-none {
      padding-top: 0;
      padding-bottom: 0; } }
  #header > .wrapper .static-search {
    display: block; }
    #header > .wrapper .static-search #search-toggle, #header > .wrapper .static-search .search-close {
      display: none; }
    #header > .wrapper .static-search #tmsearchbox {
      position: relative;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0;
      visibility: visible;
      z-index: auto; }
      #header > .wrapper .static-search #tmsearchbox .selector, #header > .wrapper .static-search #tmsearchbox #tm_search_query, #header > .wrapper .static-search #tmsearchbox .button-search {
        opacity: 1; }
      #header > .wrapper .static-search #tmsearchbox .selector {
        background: none;
        height: 50px; }
        #header > .wrapper .static-search #tmsearchbox .selector span {
          height: 50px;
          line-height: 50px; }
          #header > .wrapper .static-search #tmsearchbox .selector span:after {
            height: 50px;
            line-height: 50px; }
      #header > .wrapper .static-search #tmsearchbox select {
        height: 50px; }
      #header > .wrapper .static-search #tmsearchbox #tm_search_query {
        width: 100%;
        box-shadow: none;
        border: 1px solid #55bee7;
        border-radius: 2px;
        padding: 5px 65px 5px 225px;
        height: 50px; }
      #header > .wrapper .static-search #tmsearchbox .button-search {
        top: 0;
        bottom: 0;
        right: 0;
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        -webkit-transform: translate(0, 0);
        transform: translate(0, 0);
        background: #7370b4;
        border-radius: 2px;
        width: 50px;
        text-align: center;
        -moz-transition: 0.3s all ease;
        -o-transition: 0.3s all ease;
        -webkit-transition: 0.3s all ease;
        transition: 0.3s all ease; }
        #header > .wrapper .static-search #tmsearchbox .button-search:before {
          color: white;
          line-height: 50px; }
        #header > .wrapper .static-search #tmsearchbox .button-search:hover {
          background: #20252e; }
    #header > .wrapper .static-search #tmsearch_result {
      left: 15px;
      right: 65px;
      top: 100%;
      margin-top: 0; }
#header .nav-section {
  background: #c9faff;
  padding-top: 15px;
  padding-bottom: 15px; }
  @media (min-width: 1200px) {
    #header .nav-section {
      position: relative; }
      #header .nav-section:before {
        content: '';
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        display: block;
        width: 101vw;
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0); }
      #header .nav-section > * {
        position: relative;
        z-index: 1; } }
  #header .nav-section #languages-block-top ul, #header .nav-section #currencies-block-top ul {
    left: auto;
    right: 0;
    text-align: left; }
  #header .nav-section #currencies-block-top {
    margin-right: 36px; }
  #header .nav-section #header-login {
    margin: 0 0 0 19px; }
    @media (min-width: 480px) {
      #header .nav-section #header-login {
        margin-left: 37px; } }
    #header .nav-section #header-login div.current a {
      padding: 0; }
      #header .nav-section #header-login div.current a:before {
        display: none; }
      #header .nav-section #header-login div.current a:hover {
        color: #7370b4; }
    #header .nav-section #header-login div.current.active a {
      color: #7370b4; }
  #header .nav-section.dark-background {
    background: #20252e;
    color: white;
    padding-top: 14px;
    padding-bottom: 14px; }
    @media (min-width: 768px) {
      #header .nav-section.dark-background:before {
        background: #20252e; } }
    #header .nav-section.dark-background ul#header_links li a {
      color: #55bee7; }
      #header .nav-section.dark-background ul#header_links li a:hover, #header .nav-section.dark-background ul#header_links li a.active {
        color: white; }
    #header .nav-section.dark-background #currencies-block-top div.current:after, #header .nav-section.dark-background #languages-block-top div.current:after {
      color: white; }
#header .wishlist-button, #header .compare-button {
  display: inline-block;
  margin: 0;
  position: static;
  vertical-align: top;
  padding-top: 10px; }
  #header .wishlist-button:before, #header .wishlist-button:after, #header .compare-button:before, #header .compare-button:after {
    display: none; }
#header .compare-form {
  margin-left: 35px; }
  @media (min-width: 1200px) and (max-width: 1329px) {
    #header .compare-form {
      margin-left: 20px; } }
  @media (min-width: 1600px) {
    #header .compare-form {
      margin-left: 53px; } }
  @media (max-width: 1199px) {
    #header .compare-form {
      display: inline-block; } }
  @media (max-width: 479px) {
    #header .compare-form {
      display: none; } }
  #header .compare-form .btn {
    text-align: center;
    padding: 0;
    color: inherit;
    opacity: 1;
    box-shadow: none;
    overflow: visible;
    z-index: auto;
    text-align: center; }
    @media (max-width: 1449px) {
      #header .compare-form .btn {
        font-size: 12px; } }
    #header .compare-form .btn:before {
      position: static;
      opacity: 1;
      z-index: auto;
      -moz-transform: scale(1, 1);
      -ms-transform: scale(1, 1);
      -o-transform: scale(1, 1);
      -webkit-transform: scale(1, 1);
      transform: scale(1, 1);
      font-family: 'Thin Regular';
      content: "\e830";
      display: inline-block;
      font-weight: normal;
      font-size: 47px;
      line-height: 1;
      color: #55bee7;
      -moz-transition: 0.3s all ease;
      -o-transition: 0.3s all ease;
      -webkit-transition: 0.3s all ease;
      transition: 0.3s all ease;
      background: none; }
      @media (max-width: 1199px) {
        #header .compare-form .btn:before {
          font-size: 24px; } }
    #header .compare-form .btn span {
      display: block;
      margin-top: 12px;
      line-height: 1; }
      @media (max-width: 1199px) {
        #header .compare-form .btn span {
          font-size: 0; } }
    #header .compare-form .btn .total-compare-val {
      position: absolute;
      top: 0;
      left: 50%;
      color: white;
      background: #7370b4;
      font-size: 9px;
      height: 14px;
      margin-left: 6px;
      line-height: 14px;
      min-width: 14px;
      border-radius: 50%;
      padding: 0 3px;
      text-align: center; }
      @media (min-width: 1200px) {
        #header .compare-form .btn .total-compare-val {
          top: 4px;
          font-size: 10px;
          height: 16px;
          margin-left: 12px;
          line-height: 16px;
          min-width: 16px; } }
    #header .compare-form .btn:hover:before {
      color: #7370b4; }
#header .icon-links {
  position: static; }
  @media (min-width: 1200px) {
    #header .icon-links {
      text-align: right; } }
  #header .icon-links #currencies-block-top, #header .icon-links #languages-block-top, #header .icon-links #tmsearch {
    margin-top: 13px; }
  #header .icon-links .wishlist-button {
    padding: 0; }
    #header .icon-links .wishlist-button .wishlist-link {
      margin-top: 12px;
      margin-left: 51px; }
      #header .icon-links .wishlist-button .wishlist-link a {
        padding: 0; }
        #header .icon-links .wishlist-button .wishlist-link a:before {
          position: static;
          margin: 0;
          font-size: 24px; }
        #header .icon-links .wishlist-button .wishlist-link a span {
          display: none; }
    #header .icon-links .wishlist-button.wishlist-primary .wishlist-link {
      margin-right: 8px;
      margin-left: 0; }
      #header .icon-links .wishlist-button.wishlist-primary .wishlist-link a span {
        display: inline-block;
        margin: 0 0 0 11px;
        line-height: 25px;
        vertical-align: top;
        font-size: 14px; }
  #header .icon-links .shopping_cart {
    margin-left: 35px;
    padding: 0; }
    @media (min-width: 1650px) {
      #header .icon-links .shopping_cart {
        margin-left: 47px; } }
    #header .icon-links .shopping_cart > a:first-child {
      padding: 0; }
      #header .icon-links .shopping_cart > a:first-child:before {
        position: static;
        margin: 0; }
      #header .icon-links .shopping_cart > a:first-child b {
        display: none !important; }
  #header .icon-links #header-login {
    margin-bottom: 0;
    margin-top: 12px;
    margin-right: 55px; }
    #header .icon-links #header-login div.current a {
      padding: 0;
      line-height: 1; }
      #header .icon-links #header-login div.current a span {
        display: none; }
      #header .icon-links #header-login div.current a:before {
        display: inline-block;
        position: static;
        margin: 0; }
    #header .icon-links #header-login .header-login-content {
      left: auto;
      right: 0; }
  #header .icon-links #currencies-block-top, #header .icon-links #languages-block-top {
    margin-right: 35px; }
    @media (min-width: 1650px) {
      #header .icon-links #currencies-block-top, #header .icon-links #languages-block-top {
        margin-right: 51px; } }
    #header .icon-links #currencies-block-top div.current, #header .icon-links #languages-block-top div.current {
      line-height: 22px; }
  #header .icon-links #currencies-block-top {
    margin-right: 20px; }
    @media (min-width: 1650px) {
      #header .icon-links #currencies-block-top {
        margin-right: 40px; } }
  #header .icon-links .top_menu .menu-title, #header .icon-links .top_menu .stickUpHolder .menu-title {
    margin-right: 0; }
    #header .icon-links .top_menu .menu-title:before, #header .icon-links .top_menu .stickUpHolder .menu-title:before {
      margin: 0; }
  @media (min-width: 1200px) {
    #header .icon-links .top_menu ul.menu, #header .icon-links .top_menu .stickUpHolder ul.menu {
      left: auto;
      right: -100px; } }
  #header .icon-links #tmsearch #search-toggle {
    margin: 0; }
#header .header-account-icon #header-login {
  margin-bottom: 0; }
  #header .header-account-icon #header-login div.current a {
    text-transform: none;
    font-weight: 400;
    letter-spacing: 0;
    padding-left: 38px; }
    #header .header-account-icon #header-login div.current a:before {
      display: inline-block; }
  @media (min-width: 1200px) and (max-width: 1649px) {
    #header .header-account-icon #header-login {
      margin-right: 56px; } }
#header .links-primary .wishlist-button .wishlist-link a:before, #header .links-primary .shopping_cart > a:first-child:before, #header .links-primary #header-login div.current a:before, #header .links-primary #tmsearch #search-toggle:before {
  color: #20252e;
  font-size: 26px;
  line-height: 30px;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease; }
#header .links-primary .wishlist-button .wishlist-link a:hover:before, #header .links-primary .shopping_cart > a:first-child:hover:before, #header .links-primary #header-login div.current a:hover:before, #header .links-primary #tmsearch #search-toggle:hover:before {
  color: #7370b4; }
#header .links-primary .top_menu .menu-title {
  font-size: 0; }
  @media (min-width: 1200px) {
    #header .links-primary .top_menu .menu-title {
      margin-left: 65px; } }
  #header .links-primary .top_menu .menu-title:before {
    font-size: 26px;
    line-height: 30px;
    padding-top: 1px;
    color: #20252e; }
  #header .links-primary .top_menu .menu-title:hover:before, #header .links-primary .top_menu .menu-title.active:before {
    color: #7370b4; }
#header .links-primary .shopping_cart {
  margin-left: 62px; }
  #header .links-primary .shopping_cart > a:first-child:hover:before, #header .links-primary .shopping_cart > a:first-child:focus:before, #header .links-primary .shopping_cart > a:first-child.active:before {
    color: #7370b4; }
@media (min-width: 1200px) {
  #header .links-primary #header-login {
    margin-right: 63px; } }
#header .mobile-items, #header .cur_lang-items {
  margin-top: 48px; }
  #header .mobile-items #languages-block-top, #header .cur_lang-items #languages-block-top {
    margin-top: 44px; }
  #header .mobile-items #currencies-block-top, #header .cur_lang-items #currencies-block-top {
    margin-top: 18px; }
#header > .wishlist-link, #header > .compare-form {
  display: none; }
#header .gray-background {
  margin: 0; }
  @media (min-width: 2560px) {
    #header .gray-background {
      position: relative; }
      #header .gray-background:before {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        background: #c9faff;
        width: 101vw;
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0);
        z-index: -1; } }

@media (min-width: 1650px) {
  .menu-offset-1 .top_menu > ul > li + li, .menu-offset-1 .top_menu .stickUpHolder > ul > li + li {
    margin-left: 120px; } }

.top_menu #languages-block-top, .top_menu #currencies-block-top {
  margin-right: 0; }
  .top_menu #languages-block-top ul, .top_menu #currencies-block-top ul {
    position: static;
    margin: 0;
    box-shadow: none;
    padding: 10px 5px 15px 20px; }
    @media (min-width: 1200px) {
      .top_menu #languages-block-top ul li + li, .top_menu #currencies-block-top ul li + li {
        margin-top: 8px; } }

@media (min-width: 1200px) {
  #index .header-absolute {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    background: none; } }
@media (max-width: 1199px) {
  #index .header-absolute {
    background: #fcfcfd; } }

@media (min-width: 1200px) {
  .position-static {
    position: static; } }

@media (min-width: 1200px) {
  .align-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center; } }

@media (min-width: 1650px) {
  .height-lg {
    min-height: 194px; } }

.border-bottom, .border-bottom-1 {
  border-bottom: 1px solid #55bee7; }

.border-bottom-1 {
  border-color: #dbdbdb; }

.border-top {
  border-top: 1px solid #55bee7; }
  .border-top.row {
    position: relative;
    border-top: none; }
    .border-top.row:before {
      display: block;
      position: absolute;
      top: 0;
      left: 15px;
      right: 15px;
      border-top: 1px solid #55bee7; }

@media (max-width: 1199px) {
  .lg-revers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    flex-direction: column-reverse; } }

.gray-background {
  background: #c9faff;
  padding-bottom: 30px; }
  @media (min-width: 768px) {
    .gray-background {
      padding-bottom: 45px; } }
  @media (min-width: 1200px) {
    .gray-background {
      padding-bottom: 40px; } }

.dark-background {
  background: #20252e;
  color: white; }
  .dark-background .border-bottom, .dark-background .border-bottom-1, .dark-background .border-top {
    border-color: #333945; }
    .dark-background .border-bottom:before, .dark-background .border-bottom-1:before, .dark-background .border-top:before {
      border-color: #333945; }

#footer .dark-background #newsletter_block_left h4 {
  color: white; }
#footer .dark-background #newsletter_block_left .form-group .form-control {
  background: #303640;
  color: #757a82; }

* + .dark-background {
  margin-top: 50px; }
  @media (min-width: 1200px) {
    * + .dark-background {
      margin-top: 80px; } }

.primary-background {
  background-image: -webkit-linear-gradient(left, #7370b4 0%, #7370b4 100%);
  background-image: -o-linear-gradient(left, #7370b4 0%, #7370b4 100%);
  background-image: linear-gradient(to right, #7370b4 0%, #7370b4 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF7370B4', endColorstr='#FF7370B4', GradientType=1);
  padding-bottom: 52px; }
  @media (min-width: 1200px) {
    .primary-background {
      padding-bottom: 89px; } }

.green-background {
  background: #95c126; }

.white-background {
  background-color: white; }

.base-background {
  background-color: #f2f9fa; }

.wrapper + .gray-background {
  margin-top: 30px; }
  @media (min-width: 1200px) {
    .wrapper + .gray-background {
      margin-top: 24px; } }

#columns + .gray-background {
  margin-top: 30px; }
  @media (min-width: 768px) {
    #columns + .gray-background {
      margin-top: 50px; } }
  @media (min-width: 1200px) {
    #columns + .gray-background {
      margin-top: 89px; } }
  #columns + .gray-background.no-margin {
    margin: 0; }

.featured-product-carousel #homefeatured {
  margin: 0;
  max-width: none; }
  .featured-product-carousel #homefeatured > li {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
    clear: none; }
    @media (min-width: 768px) {
      .featured-product-carousel #homefeatured > li .product-container .product-desc {
        display: block; } }
.featured-product-carousel ul.product_list.grid > li .product-container .product-image-container {
  background: none; }
  @media (min-width: 1200px) {
    .featured-product-carousel ul.product_list.grid > li .product-container .product-image-container {
      padding-left: 15%;
      padding-right: 15%; } }
.featured-product-carousel ul.product_list.grid > li .product-container h5 {
  position: relative; }
.featured-product-carousel .bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  left: 0;
  outline: 0;
  height: 50px;
  width: 50px;
  text-align: center;
  margin: -25px 0 0;
  background: white;
  z-index: 999;
  -moz-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.1); }
  @media (min-width: 992px) {
    .featured-product-carousel .bx-wrapper .bx-controls-direction a {
      height: 80px;
      width: 80px;
      margin-top: -40px; } }
  .featured-product-carousel .bx-wrapper .bx-controls-direction a:before {
    font-family: "FontAwesome";
    content: "\f104";
    display: inline-block;
    font-weight: normal;
    font-size: 24px;
    display: inline-block;
    line-height: 50px;
    color: #01a5d5;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease; }
    @media (min-width: 992px) {
      .featured-product-carousel .bx-wrapper .bx-controls-direction a:before {
        line-height: 80px; } }
  .featured-product-carousel .bx-wrapper .bx-controls-direction a:hover {
    background: #f8f8f8; }
    .featured-product-carousel .bx-wrapper .bx-controls-direction a:hover:before {
      color: #2f2c2f; }
  .featured-product-carousel .bx-wrapper .bx-controls-direction a.bx-next {
    left: auto;
    right: 0; }
    .featured-product-carousel .bx-wrapper .bx-controls-direction a.bx-next:before {
      content: '\f105'; }
  .featured-product-carousel .bx-wrapper .bx-controls-direction a:hover {
    color: white; }

.container.featured-product-carousel .bx-wrapper .bx-controls-direction a {
  left: -15px; }
  .container.featured-product-carousel .bx-wrapper .bx-controls-direction a.bx-next {
    left: auto;
    right: -15px; }
  @media (min-width: 992px) {
    .container.featured-product-carousel .bx-wrapper .bx-controls-direction a {
      left: -75px; }
      .container.featured-product-carousel .bx-wrapper .bx-controls-direction a.bx-next {
        right: -75px; } }
  @media (min-width: 1650px) {
    .container.featured-product-carousel .bx-wrapper .bx-controls-direction a {
      left: -190px; }
      .container.featured-product-carousel .bx-wrapper .bx-controls-direction a.bx-next {
        right: -190px; } }

@media (max-width: 767px) {
  .smartblog-type-2 {
    padding-left: 30px;
    padding-right: 30px; } }
.smartblog-type-2 #homepage-blog {
  margin-top: 0; }
  .smartblog-type-2 #homepage-blog .title_block, .smartblog-type-2 #homepage-blog .blog-descr {
    display: none; }
  @media (min-width: 1200px) and (max-width: 1649px) {
    .smartblog-type-2 #homepage-blog .link {
      margin-top: 15px; } }
  .smartblog-type-2 #homepage-blog .blog-image {
    display: block;
    background: white;
    margin: 0;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease; }
    .smartblog-type-2 #homepage-blog .blog-image img {
      width: 100%; }
    @media (min-width: 768px) {
      .smartblog-type-2 #homepage-blog .blog-image {
        padding-top: 66.6%; }
        .smartblog-type-2 #homepage-blog .blog-image:before {
          display: block;
          position: absolute;
          left: 50%;
          top: 50%;
          content: '';
          width: 0;
          height: 0;
          margin-left: -8px;
          border-style: solid;
          border-width: 9px 9px 0 9px;
          border-color: white transparent transparent transparent;
          z-index: 2;
          -moz-transition: 0.3s all ease;
          -o-transition: 0.3s all ease;
          -webkit-transition: 0.3s all ease;
          transition: 0.3s all ease; } }
  .smartblog-type-2 #homepage-blog .post-content {
    position: relative;
    margin-top: 20px; }
    @media (min-width: 768px) {
      .smartblog-type-2 #homepage-blog .post-content {
        position: absolute;
        top: 25%;
        left: 10.3%;
        right: 14%;
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        margin-top: 0; } }
    @media (max-width: 1199px) {
      .smartblog-type-2 #homepage-blog .post-content {
        text-align: center; } }
    @media (min-width: 1360px) {
      .smartblog-type-2 #homepage-blog .post-content {
        padding-left: 100px; } }
    @media (min-width: 1650px) {
      .smartblog-type-2 #homepage-blog .post-content {
        padding-left: 128px; } }
    .smartblog-type-2 #homepage-blog .post-content h5 {
      margin-bottom: 10px; }
      @media (min-width: 768px) {
        .smartblog-type-2 #homepage-blog .post-content h5 {
          margin-bottom: 21px; } }
  .smartblog-type-2 #homepage-blog .date-added {
    position: relative;
    font-size: 13px;
    color: #878787;
    margin-bottom: 5px;
    line-height: 1.3;
    padding-top: 58px; }
    .smartblog-type-2 #homepage-blog .date-added .day {
      position: absolute;
      top: 0;
      left: 0;
      font-size: 58px;
      font-weight: 300;
      color: #20252e;
      line-height: 1; }
      .smartblog-type-2 #homepage-blog .date-added .day:after {
        display: none; }
    @media (min-width: 768px) {
      .smartblog-type-2 #homepage-blog .date-added {
        margin-bottom: 10px; } }
    @media (min-width: 1200px) {
      .smartblog-type-2 #homepage-blog .date-added {
        margin-bottom: 31px; } }
    @media (max-width: 1359px) {
      .smartblog-type-2 #homepage-blog .date-added {
        display: none; } }
    @media (min-width: 1360px) {
      .smartblog-type-2 #homepage-blog .date-added {
        position: absolute;
        left: 9px;
        top: -2px; } }
    @media (min-width: 1200px) and (max-width: 1649px) {
      .smartblog-type-2 #homepage-blog .date-added {
        font-size: 12px;
        padding-top: 50px; }
        .smartblog-type-2 #homepage-blog .date-added .day {
          font-size: 50px; } }
  .smartblog-type-2 #homepage-blog .post-descr {
    color: #878787; }
    @media (min-width: 768px) and (max-width: 1199px) {
      .smartblog-type-2 #homepage-blog .post-descr {
        display: none; } }
  .smartblog-type-2 #homepage-blog .link {
    display: inline-block;
    margin-top: 7px; }
    @media (min-width: 1650px) {
      .smartblog-type-2 #homepage-blog .link {
        margin-top: 20px; } }
  .smartblog-type-2 #homepage-blog .view-all {
    display: none; }
  .smartblog-type-2 #homepage-blog .block_content {
    margin: 0; }
    @media (max-width: 1199px) {
      .smartblog-type-2 #homepage-blog .block_content h5:before {
        left: 50%;
        margin-left: -50px; } }
    .smartblog-type-2 #homepage-blog .block_content > ul {
      display: block; }
      .smartblog-type-2 #homepage-blog .block_content > ul > li {
        position: relative; }
        .smartblog-type-2 #homepage-blog .block_content > ul > li:before {
          display: none; }
        .smartblog-type-2 #homepage-blog .block_content > ul > li:hover .blog-image {
          background: #f2f9fa; }
          .smartblog-type-2 #homepage-blog .block_content > ul > li:hover .blog-image:before {
            border-color: #f2f9fa transparent transparent transparent; }
        @media (min-width: 768px) {
          .smartblog-type-2 #homepage-blog .block_content > ul > li:nth-child(3n+2) .blog-image {
            padding-top: 0;
            padding-bottom: 66.6%; }
            .smartblog-type-2 #homepage-blog .block_content > ul > li:nth-child(3n+2) .blog-image:before {
              top: auto;
              bottom: 50%;
              border-width: 0 9px 9px 9px;
              border-color: transparent transparent #f6f8f9 transparent; }
          .smartblog-type-2 #homepage-blog .block_content > ul > li:nth-child(3n+2) .post-content {
            top: 75%; }
          .smartblog-type-2 #homepage-blog .block_content > ul > li:nth-child(3n+2):hover .blog-image:before {
            border-color: transparent transparent #f2f9fa transparent; } }
      @media (min-width: 768px) {
        .smartblog-type-2 #homepage-blog .block_content > ul {
          margin: 0; }
          .smartblog-type-2 #homepage-blog .block_content > ul > li {
            padding: 0; } }

.smartblog-type-3 #homepage-blog .blog-descr {
  display: block; }
.smartblog-type-3 #homepage-blog .blog-image {
  display: none; }
.smartblog-type-3 #homepage-blog .date-added {
  position: relative;
  font-size: 13px;
  color: #878787;
  margin-bottom: 5px;
  line-height: 1.3;
  padding-top: 58px; }
  .smartblog-type-3 #homepage-blog .date-added .day {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 58px;
    font-weight: 300;
    color: #20252e;
    line-height: 1; }
    .smartblog-type-3 #homepage-blog .date-added .day:after {
      display: none; }
  @media (min-width: 768px) {
    .smartblog-type-3 #homepage-blog .date-added {
      margin-bottom: 10px; } }
  @media (min-width: 1200px) {
    .smartblog-type-3 #homepage-blog .date-added {
      margin-bottom: 31px; } }
.smartblog-type-3 #homepage-blog .post-descr {
  color: #878787; }
.smartblog-type-3 #homepage-blog .link {
  display: inline-block;
  margin-top: 7px; }
  @media (min-width: 1200px) {
    .smartblog-type-3 #homepage-blog .link {
      margin-top: 20px; } }
.smartblog-type-3 #homepage-blog .view-all {
  display: none; }
@media (min-width: 1200px) {
  .smartblog-type-3 #homepage-blog .block_content {
    margin-top: 65px; } }
.smartblog-type-3 #homepage-blog .block_content h5 {
  margin-bottom: 10px; }
  @media (min-width: 992px) {
    .smartblog-type-3 #homepage-blog .block_content h5 {
      margin-bottom: 21px; } }
@media (min-width: 768px) {
  .smartblog-type-3 #homepage-blog .block_content > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex; } }
@media (min-width: 768px) {
  .smartblog-type-3 #homepage-blog .block_content > ul > li:before {
    content: '';
    position: absolute;
    top: 8px;
    bottom: 0;
    right: 0;
    border-right: 1px solid #efefef; } }
@media (min-width: 992px) {
  .smartblog-type-3 #homepage-blog .block_content > ul > li {
    padding-right: 5%; }
    .smartblog-type-3 #homepage-blog .block_content > ul > li:before {
      right: 7%; } }
@media (min-width: 1650px) {
  .smartblog-type-3 #homepage-blog .block_content > ul > li {
    padding-right: 9%; }
    .smartblog-type-3 #homepage-blog .block_content > ul > li:before {
      right: 13%; } }
.smartblog-type-3 #homepage-blog .block_content > ul > li:last-child:before {
  display: none; }

.columns-container > div:last-child {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .columns-container > div:last-child {
      margin-bottom: 60px; } }
  @media (min-width: 1200px) {
    .columns-container > div:last-child {
      margin-bottom: 80px; } }
  .columns-container > div:last-child.gray-background {
    margin-bottom: 0; }
  .columns-container > div:last-child.offset-1 {
    margin-bottom: 0; }
  .columns-container > div:last-child.inset-1 {
    padding-bottom: 0; }
.columns-container > div.no-margin {
  margin: 0; }

.inset-1 {
  padding-bottom: 0; }

@media (min-width: 1200px) {
  .offset-2 {
    padding-bottom: 50px; } }

@media (max-width: 767px) {
  #category .columns-container > div:last-child {
    margin-bottom: 0; } }
@media (min-width: 992px) {
  .footer-container .align-center {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center; } }
.footer-container .wrapper.container {
  padding-top: 70px;
  padding-bottom: 31px; }
  @media (min-width: 1200px) {
    .footer-container .wrapper.container {
      padding-top: 100px; } }
@media (min-width: 768px) {
  .footer-container .wrapper .module + .module {
    margin-top: 27px; } }
.footer-container .wrapper #header_logo + .module {
  margin-top: 36px; }
.footer-container .container > .row {
  padding-top: 30px;
  padding-bottom: 30px; }
  @media (min-width: 768px) {
    .footer-container .container > .row {
      padding-top: 82px;
      padding-bottom: 82px; } }
.footer-container .gray-background {
  padding-bottom: 0; }
.footer-container * + .dark-background {
  margin: 0; }
  .footer-container * + .dark-background .bottom-footer a {
    font-size: 15px;
    color: #bdbdbd; }
    .footer-container * + .dark-background .bottom-footer a:hover {
      color: white; }
.footer-container #footer .inset-1 {
  padding-top: 0;
  padding-bottom: 0; }
@media (min-width: 768px) {
  .footer-container #footer .inset-2 {
    padding-top: 50px;
    padding-bottom: 50px; } }
.footer-container #footer .dark-background li a:hover, .footer-container #footer .gray-background li a:hover {
  color: #55bee7; }
.footer-container #footer .dark-background h4, .footer-container #footer .dark-background h3, .footer-container #footer .gray-background h4, .footer-container #footer .gray-background h3 {
  color: #20252e; }
  .footer-container #footer .dark-background h4 a, .footer-container #footer .dark-background h3 a, .footer-container #footer .gray-background h4 a, .footer-container #footer .gray-background h3 a {
    color: #20252e; }
    .footer-container #footer .dark-background h4 a:hover, .footer-container #footer .dark-background h3 a:hover, .footer-container #footer .gray-background h4 a:hover, .footer-container #footer .gray-background h3 a:hover {
      color: #7370b4; }
.footer-container #footer .dark-background .dark-background .bottom-footer a, .footer-container #footer .gray-background .dark-background .bottom-footer a {
  font-size: 15px;
  color: #bdbdbd; }
  .footer-container #footer .dark-background .dark-background .bottom-footer a:hover, .footer-container #footer .gray-background .dark-background .bottom-footer a:hover {
    color: white; }
.footer-container #footer .dark-background .bottom-footer a, .footer-container #footer .gray-background .bottom-footer a {
  font-size: 15px;
  color: #878787; }
  .footer-container #footer .dark-background .bottom-footer a:hover, .footer-container #footer .gray-background .bottom-footer a:hover {
    color: #7370b4; }
.footer-container #footer .dark-background .dark-background, .footer-container #footer .gray-background .dark-background {
  background: #20252e; }
.footer-container #footer .gray-background .gray-background {
  background: #fff; }
.footer-container #footer > .row [class*='col-'] {
  min-height: 0; }
@media (min-width: 992px) {
  .footer-container .without-heading h4 {
    display: none; }
  .footer-container .without-heading > .module:first-child {
    margin-top: 54px; } }
.footer-container .container + .container {
  margin-top: 40px; }
  @media (min-width: 768px) {
    .footer-container .container + .container {
      margin-top: 76px; } }

@media (min-width: 768px) {
  .productscategory-type-2 #productscategory_list li {
    display: block; }
    .productscategory-type-2 #productscategory_list li .product {
      width: 100%;
      padding-left: 0;
      padding-right: 0; }
      .productscategory-type-2 #productscategory_list li .product > div {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center; }
        .productscategory-type-2 #productscategory_list li .product > div .left-block {
          width: 39%; }
          .productscategory-type-2 #productscategory_list li .product > div .left-block .product-image {
            margin: 0; }
        .productscategory-type-2 #productscategory_list li .product > div .right-block {
          width: 61%;
          text-align: left;
          padding-left: 5%;
          padding-right: 6%; }
          .productscategory-type-2 #productscategory_list li .product > div .right-block .product-name {
            margin-top: 0; }
            .productscategory-type-2 #productscategory_list li .product > div .right-block .product-name a {
              font: 500 20px/32px "Roboto", sans-serif;
              color: #20252e; }
              .productscategory-type-2 #productscategory_list li .product > div .right-block .product-name a:hover {
                color: #7370b4; }
          .productscategory-type-2 #productscategory_list li .product > div .right-block .block_description {
            display: block; }
          .productscategory-type-2 #productscategory_list li .product > div .right-block .functional-buttons {
            position: static;
            opacity: 1;
            visibility: visible; }
            .productscategory-type-2 #productscategory_list li .product > div .right-block .functional-buttons .cart-btn {
              margin-top: 15px; }
      .productscategory-type-2 #productscategory_list li .product:last-child > div {
        padding-bottom: 0; }
  .productscategory-type-2 #productscategory_list .bx-wrapper .bx-controls-direction a {
    top: 50%;
    border: 2px solid #e1e1e1; }
    .productscategory-type-2 #productscategory_list .bx-wrapper .bx-controls-direction a:before {
      line-height: 66px; }
  .productscategory-type-2 #productscategory_list .bx-next {
    right: -15px; }
  .productscategory-type-2 #productscategory_list .bx-prev {
    left: -15px; } }
        @media (min-width: 768px) and (min-width: 1200px) {
          .productscategory-type-2 #productscategory_list li .product > div .right-block {
            padding-left: 14%; } }
@media (min-width: 768px) and (min-width: 992px) {
  .productscategory-type-2 #productscategory_list .bx-next {
    right: -40px; }
  .productscategory-type-2 #productscategory_list .bx-prev {
    left: -40px; } }
@media (min-width: 768px) and (min-width: 1200px) {
  .productscategory-type-2 #productscategory_list .bx-next {
    right: -60px; }
  .productscategory-type-2 #productscategory_list .bx-prev {
    left: -60px; } }
@media (min-width: 768px) and (min-width: 1370px) {
  .productscategory-type-2 #productscategory_list .bx-next {
    right: -100px; }
  .productscategory-type-2 #productscategory_list .bx-prev {
    left: -100px; } }

@media (min-width: 1200px) {
  .crossselling-type-2 li.product-box {
    padding-left: 30px;
    padding-right: 30px; } }
@media (min-width: 1650px) {
  .crossselling-type-2 li.product-box {
    padding-left: 50px;
    padding-right: 50px; } }
.crossselling-type-2 .product-image {
  background: none; }
.crossselling-type-2 h5 {
  position: relative;
  padding-top: 32px; }
  .crossselling-type-2 h5:before {
    display: block;
    position: absolute;
    left: 50%;
    top: 0;
    content: '';
    width: 100px;
    margin-left: -50px;
    border-bottom: 2px solid #55bee7; }
  .crossselling-type-2 h5 a {
    font: 500 20px/32px "Roboto", sans-serif;
    color: #20252e; }
    @media (max-width: 1199px) {
      .crossselling-type-2 h5 a {
        font-size: 16px;
        line-height: 1.2; } }
    .crossselling-type-2 h5 a:hover {
      color: #7370b4; }
.crossselling-type-2 .price {
  font-family: "Roboto", sans-serif;
  color: #252a33;
  font-size: 18px;
  font-weight: 400; }

.tmcategory-type2 .category-block h4 {
  margin-bottom: 18px; }
.tmcategory-type2 ul.product_list.grid > li {
  padding-bottom: 0; }
  .tmcategory-type2 ul.product_list.grid > li .product-container {
    position: relative;
    padding-bottom: 146.75%;
    background: white; }
    @media (min-width: 510px) and (max-width: 1359px) {
      .tmcategory-type2 ul.product_list.grid > li .product-container {
        padding-bottom: 160%; } }
    .tmcategory-type2 ul.product_list.grid > li .product-container .left-block {
      position: absolute;
      top: 54%;
      left: 15%;
      right: 15%;
      -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%); }
      @media (min-width: 1360px) {
        .tmcategory-type2 ul.product_list.grid > li .product-container .left-block {
          left: 10%;
          right: 10%; } }
    .tmcategory-type2 ul.product_list.grid > li .product-container .right-block {
      position: static;
      padding: 0; }
      .tmcategory-type2 ul.product_list.grid > li .product-container .right-block .product-heading {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        padding: 8% 25px; }
        @media (min-width: 1360px) {
          .tmcategory-type2 ul.product_list.grid > li .product-container .right-block .product-heading {
            padding-top: 11.5%; } }
      .tmcategory-type2 ul.product_list.grid > li .product-container .right-block .product-name {
        color: #20252e; }
        .tmcategory-type2 ul.product_list.grid > li .product-container .right-block .product-name:hover {
          color: #7370b4; }
      .tmcategory-type2 ul.product_list.grid > li .product-container .right-block .content_price {
        position: absolute;
        bottom: 45px;
        left: 0;
        right: 0;
        padding-left: 15px;
        padding-right: 15px; }
        @media (min-width: 992px) {
          .tmcategory-type2 ul.product_list.grid > li .product-container .right-block .content_price {
            padding-left: 25px;
            padding-right: 25px; } }
    .tmcategory-type2 ul.product_list.grid > li .product-container .new-box, .tmcategory-type2 ul.product_list.grid > li .product-container .sale-box {
      display: none; }
    .tmcategory-type2 ul.product_list.grid > li .product-container .functional-buttons {
      position: absolute;
      bottom: 8px;
      left: 0;
      right: 0; }
.tmcategory-type2 .product_list {
  margin-left: -10px;
  margin-right: -10px; }
  .tmcategory-type2 .product_list > li {
    padding-left: 10px;
    padding-right: 10px; }

@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm-md {
    display: none !important; } }

@media (min-width: 1600px) {
  #homepage-blog .blog-image {
    position: relative;
    overflow: hidden;
    height: 300px;
    margin-bottom: 58px; }
    #homepage-blog .blog-image a {
      position: static; }
    #homepage-blog .blog-image img {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%); } }
#homepage-blog .post-content {
  position: relative; }
#homepage-blog .date-added {
  z-index: 1;
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 75px;
  padding: 5px 10px;
  background-color: white;
  letter-spacing: 0; }
  @media (min-width: 1200px) {
    #homepage-blog .date-added {
      bottom: 89%;
      padding: 20px 0; } }
  #homepage-blog .date-added .day {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 40px;
    font-weight: 300;
    color: #20252e; }
    #homepage-blog .date-added .day:after {
      content: ''; }
  #homepage-blog .date-added .month {
    display: block;
    margin-bottom: 8px;
    font-size: 13px; }
    #homepage-blog .date-added .month:after {
      content: ', '; }
.top_menu {
  padding: 0;
  clear: both;
  float: none;
  text-align: left; }

.stickUpTop {
  width: 100%;
  left: 0;
  top: 0; }
  .stickUpTop:not(.isStuck) {
    position: static !important; }
    .stickUpTop:not(.isStuck) .stickUpHolder {
      padding: 0; }
  .stickUpTop.isStuck {
    background: white;
    -moz-box-shadow: 0px 15px 62px 0px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0px 15px 62px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 15px 62px 0px rgba(0, 0, 0, 0.07);
    animation: 0.3s ease-in-out 0s normal none 1 fadeInDown;
    -webkit-animation: 0.3s ease-in-out 0s normal none 1 fadeInDown;
    -moz-transition: 0.2s all ease;
    -o-transition: 0.2s all ease;
    -webkit-transition: 0.2s all ease;
    transition: 0.2s all ease; }
    .stickUpTop.isStuck #header_logo img {
      max-height: 60px;
      width: auto; }
    .stickUpTop.isStuck .top_menu .is-megamenu {
      top: 100%;
      margin-top: 5px; }

#header .stickUpTop.isStuck .stick-up {
  padding: 10px 0;
  min-height: 55px; }

@media (min-width: 1200px) {
  .inline-menu .stickUpTop.isStuck .top_menu > ul, .inline-menu .stickUpTop.isStuck .top_menu .stickUpHolder > ul {
    padding: 0; } }

.stickUpHolder {
  max-width: 100%; }

@media only screen and (max-width: 1199px) {
  .isStuck .container {
    padding-left: 15px;
    padding-right: 15px; } }
.top_menu, .top_menu .stickUpHolder {
  display: inline-block;
  line-height: 0; }
  @media (min-width: 1200px) {
    .top_menu, .top_menu .stickUpHolder {
      position: relative; } }
  .top_menu > ul, .top_menu .stickUpHolder > ul {
    padding: 17px 0;
    margin: 0; }
    .top_menu > ul > li, .top_menu .stickUpHolder > ul > li {
      width: 100%;
      position: relative;
      z-index: 1; }
      .top_menu > ul > li > a, .top_menu .stickUpHolder > ul > li > a {
        border-right: none; }
      .top_menu > ul > li > a, .top_menu .stickUpHolder > ul > li > a {
        display: inline-block;
        position: relative;
        padding: 0;
        font: 700 16px/22px "Roboto", sans-serif;
        line-height: 22px;
        color: #20252e;
        text-transform: uppercase;
        letter-spacing: 0.04em; }
        .top_menu > ul > li > a.sf-with-ul:after, .top_menu .stickUpHolder > ul > li > a.sf-with-ul:after {
          font-family: "FontAwesome";
          content: "\f107";
          display: inline-block;
          font-weight: normal;
          font-size: 14px;
          line-height: 1;
          -moz-transition: 0.3s all ease;
          -o-transition: 0.3s all ease;
          -webkit-transition: 0.3s all ease;
          transition: 0.3s all ease;
          margin-left: 10px; }
      .top_menu > ul > li.sfHover > a, .top_menu > ul > li.sfHoverForce > a, .top_menu > ul > li > a:hover, .top_menu .stickUpHolder > ul > li.sfHover > a, .top_menu .stickUpHolder > ul > li.sfHoverForce > a, .top_menu .stickUpHolder > ul > li > a:hover {
        color: #7370b4; }
      .top_menu > ul > li:hover > a.sf-with-ul:after, .top_menu > ul > li.sfHover > a.sf-with-ul:after, .top_menu > ul > li > a:hover.sf-with-ul:after, .top_menu .stickUpHolder > ul > li:hover > a.sf-with-ul:after, .top_menu .stickUpHolder > ul > li.sfHover > a.sf-with-ul:after, .top_menu .stickUpHolder > ul > li > a:hover.sf-with-ul:after {
        -moz-transform: rotate(-180deg);
        -ms-transform: rotate(-180deg);
        -o-transform: rotate(-180deg);
        -webkit-transform: rotate(-180deg);
        transform: rotate(-180deg); }
      .top_menu > ul > li:hover > span.menu-mobile-grover:before, .top_menu .stickUpHolder > ul > li:hover > span.menu-mobile-grover:before {
        color: #7370b4; }
      .top_menu > ul > li ul.is-simplemenu, .top_menu > ul > li ul.is-simplemenu ul, .top_menu .stickUpHolder > ul > li ul.is-simplemenu, .top_menu .stickUpHolder > ul > li ul.is-simplemenu ul {
        background: #fff; }
        .top_menu > ul > li ul.is-simplemenu > li > a.sf-with-ul:before, .top_menu > ul > li ul.is-simplemenu ul > li > a.sf-with-ul:before, .top_menu .stickUpHolder > ul > li ul.is-simplemenu > li > a.sf-with-ul:before, .top_menu .stickUpHolder > ul > li ul.is-simplemenu ul > li > a.sf-with-ul:before {
          position: absolute;
          top: 50%;
          right: 5px;
          width: 20px;
          height: 20px;
          margin-top: -10px;
          line-height: 20px;
          text-align: center;
          font-family: "FontAwesome";
          content: "\f105";
          display: inline-block;
          font-weight: normal;
          color: #c1c7cb;
          -moz-transition: 0.3s all ease;
          -o-transition: 0.3s all ease;
          -webkit-transition: 0.3s all ease;
          transition: 0.3s all ease; }
        .top_menu > ul > li ul.is-simplemenu > li.sfHover > a.sf-with-ul:before, .top_menu > ul > li ul.is-simplemenu > li.sfHoverForce > a.sf-with-ul:before, .top_menu > ul > li ul.is-simplemenu ul > li.sfHover > a.sf-with-ul:before, .top_menu > ul > li ul.is-simplemenu ul > li.sfHoverForce > a.sf-with-ul:before, .top_menu .stickUpHolder > ul > li ul.is-simplemenu > li.sfHover > a.sf-with-ul:before, .top_menu .stickUpHolder > ul > li ul.is-simplemenu > li.sfHoverForce > a.sf-with-ul:before, .top_menu .stickUpHolder > ul > li ul.is-simplemenu ul > li.sfHover > a.sf-with-ul:before, .top_menu .stickUpHolder > ul > li ul.is-simplemenu ul > li.sfHoverForce > a.sf-with-ul:before {
          right: 0;
          color: #20252e; }
        .top_menu > ul > li ul.is-simplemenu li + li, .top_menu > ul > li ul.is-simplemenu ul li + li, .top_menu .stickUpHolder > ul > li ul.is-simplemenu li + li, .top_menu .stickUpHolder > ul > li ul.is-simplemenu ul li + li {
          margin-top: 0; }
      .top_menu > ul > li > ul.is-simplemenu, .top_menu .stickUpHolder > ul > li > ul.is-simplemenu {
        right: auto;
        left: -20px;
        top: 100%;
        margin-left: 0; }
      .top_menu > ul > li + li, .top_menu .stickUpHolder > ul > li + li {
        margin-top: 28px; }
      .top_menu > ul > li .menu-mobile, .top_menu .stickUpHolder > ul > li .menu-mobile {
        padding-top: 16px;
        padding-bottom: 16px; }
        .top_menu > ul > li .menu-mobile .menu-mobile-grover:before, .top_menu .stickUpHolder > ul > li .menu-mobile .menu-mobile-grover:before {
          font-size: 14px; }
  .top_menu ul.menu, .top_menu .stickUpHolder ul.menu {
    display: none;
    position: absolute;
    top: 100%;
    left: -15px;
    width: 400px;
    background: white;
    margin-top: 20px;
    padding: 44px 49px;
    -moz-box-shadow: 0px 15px 62px 0px rgba(0, 0, 0, 0.07);
    -webkit-box-shadow: 0px 15px 62px 0px rgba(0, 0, 0, 0.07);
    box-shadow: 0px 15px 62px 0px rgba(0, 0, 0, 0.07);
    max-height: calc(100vh - 70px);
    overflow-y: auto; }
    .top_menu ul.menu::-webkit-scrollbar-button, .top_menu .stickUpHolder ul.menu::-webkit-scrollbar-button {
      width: 2px;
      height: 0;
      background-color: transparent; }
    .top_menu ul.menu::-webkit-scrollbar-track, .top_menu .stickUpHolder ul.menu::-webkit-scrollbar-track {
      background-color: transparent; }
    .top_menu ul.menu::-webkit-scrollbar-thumb, .top_menu .stickUpHolder ul.menu::-webkit-scrollbar-thumb {
      border-radius: 0;
      background-color: #7370b4; }
    .top_menu ul.menu::-webkit-scrollbar-thumb:hover, .top_menu .stickUpHolder ul.menu::-webkit-scrollbar-thumb:hover {
      background-color: #8381bd; }
    .top_menu ul.menu::-webkit-scrollbar, .top_menu .stickUpHolder ul.menu::-webkit-scrollbar {
      width: 4px; }
    @media (max-width: 1199px) {
      .top_menu ul.menu, .top_menu .stickUpHolder ul.menu {
        max-width: 100%;
        left: 50%;
        -moz-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
        -o-transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        transform: translate(-50%, 0); } }
    .top_menu ul.menu > li:last-child, .top_menu .stickUpHolder ul.menu > li:last-child {
      margin-bottom: 40px; }
  .top_menu li.simple, .top_menu li li, .top_menu .stickUpHolder li.simple, .top_menu .stickUpHolder li li {
    position: relative;
    z-index: 1; }
  .top_menu li li a, .top_menu .stickUpHolder li li a {
    font-size: 16px;
    line-height: 1.3;
    color: #20252e;
    display: inline-block; }
    .top_menu li li a:hover, .top_menu .stickUpHolder li li a:hover {
      color: #7370b4; }
  .top_menu li li.sfHover > a, .top_menu li li.sfHoverForce > a, .top_menu .stickUpHolder li li.sfHover > a, .top_menu .stickUpHolder li li.sfHoverForce > a {
    color: #7370b4; }
  .top_menu li li + li, .top_menu .stickUpHolder li li + li {
    margin-top: 15px; }
  .top_menu .menu_badge, .top_menu .stickUpHolder .menu_badge {
    position: absolute;
    top: -2px;
    left: 5px;
    z-index: 2;
    font-size: 10px;
    display: inline-block;
    background: #f00;
    color: #fff;
    padding: 1px 5px 2px 5px;
    line-height: 12px;
    border-radius: 3px;
    margin-left: 10px; }
  .top_menu .is-megamenu, .top_menu .stickUpHolder .is-megamenu {
    width: 100%;
    display: none; }
    .top_menu .is-megamenu .megamenu-row + .megamenu-row, .top_menu .stickUpHolder .is-megamenu .megamenu-row + .megamenu-row {
      border-top: 1px solid #ccc; }
    @media (max-width: 1199px) {
      .top_menu .is-megamenu .megamenu-row .megamenu-col, .top_menu .stickUpHolder .is-megamenu .megamenu-row .megamenu-col {
        width: 100%; }
        .top_menu .is-megamenu .megamenu-row .megamenu-col + .megamenu-col, .top_menu .stickUpHolder .is-megamenu .megamenu-row .megamenu-col + .megamenu-col {
          margin-top: 10px; }
        .top_menu .is-megamenu .megamenu-row .megamenu-col:first-child .menu-heading h3, .top_menu .stickUpHolder .is-megamenu .megamenu-row .megamenu-col:first-child .menu-heading h3 {
          margin-top: 0; } }
    .top_menu .is-megamenu .products, .top_menu .stickUpHolder .is-megamenu .products {
      display: none; }
    .top_menu .is-megamenu ul.content, .top_menu .stickUpHolder .is-megamenu ul.content {
      overflow: hidden; }
      .top_menu .is-megamenu ul.content > li > a, .top_menu .stickUpHolder .is-megamenu ul.content > li > a {
        position: relative;
        font-size: 15px;
        line-height: 1.3;
        font-weight: 400;
        color: #7370b4; }
        .top_menu .is-megamenu ul.content > li > a:hover, .top_menu .stickUpHolder .is-megamenu ul.content > li > a:hover {
          color: #20252e; }
        .top_menu .is-megamenu ul.content > li > a.sf-with-ul, .top_menu .stickUpHolder .is-megamenu ul.content > li > a.sf-with-ul {
          font-size: 16px;
          color: #20252e;
          margin-bottom: 24px; }
          .top_menu .is-megamenu ul.content > li > a.sf-with-ul:hover, .top_menu .stickUpHolder .is-megamenu ul.content > li > a.sf-with-ul:hover {
            color: #7370b4; }
      @media (max-width: 1199px) {
        .top_menu .is-megamenu ul.content > li + li, .top_menu .stickUpHolder .is-megamenu ul.content > li + li {
          margin-top: 10px; } }
      .top_menu .is-megamenu ul.content .menu-heading h3, .top_menu .stickUpHolder .is-megamenu ul.content .menu-heading h3 {
        margin: 15px 0 15px;
        font-size: 16px;
        line-height: 1.3;
        font-weight: 400;
        color: #20252e; }
        @media (min-width: 1200px) {
          .top_menu .is-megamenu ul.content .menu-heading h3, .top_menu .stickUpHolder .is-megamenu ul.content .menu-heading h3 {
            margin-bottom: 24px;
            margin-top: 0; } }
      .top_menu .is-megamenu ul.content .megamenu_banner, .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner {
        padding-left: 5px;
        padding-right: 35px;
        display: none; }
        .top_menu .is-megamenu ul.content .megamenu_banner a, .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner a {
          display: inline-block;
          position: relative;
          margin: 0;
          text-transform: none;
          letter-spacing: 0;
          color: inherit;
          font: inherit;
          max-width: 100%; }
        .top_menu .is-megamenu ul.content .megamenu_banner .description, .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description {
          position: absolute;
          top: 50%;
          right: 0;
          -moz-transform: translate(0, -50%);
          -ms-transform: translate(0, -50%);
          -o-transform: translate(0, -50%);
          -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
          width: 50%; }
          .top_menu .is-megamenu ul.content .megamenu_banner .description h2, .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description h2 {
            font-family: "Roboto", sans-serif;
            font-weight: 300;
            font-size: 20px;
            line-height: 1.29412;
            color: #20252e;
            margin: 0; }
            .top_menu .is-megamenu ul.content .megamenu_banner .description h2 + p, .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description h2 + p {
              margin-top: 10px; }
          .top_menu .is-megamenu ul.content .megamenu_banner .description p, .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description p {
            font-size: 13px;
            line-height: 1.66667; }
          .top_menu .is-megamenu ul.content .megamenu_banner .description .btn, .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description .btn {
            margin-top: 7px; }
      .top_menu .is-megamenu ul.content ul, .top_menu .stickUpHolder .is-megamenu ul.content ul {
        display: none; }
  .top_menu .menu-title, .top_menu .stickUpHolder .menu-title {
    display: inline-block;
    position: relative;
    cursor: pointer;
    line-height: 1.3125;
    margin-right: 48px;
    -moz-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    -webkit-transition: 0.3s all ease;
    transition: 0.3s all ease; }
    .top_menu .menu-title:before, .top_menu .stickUpHolder .menu-title:before {
      font-family: "FontAwesome";
      content: "\f0c9";
      display: inline-block;
      font-weight: normal;
      font-size: 16px;
      color: #55bee7;
      -moz-transition: 0.3s all ease;
      -o-transition: 0.3s all ease;
      -webkit-transition: 0.3s all ease;
      transition: 0.3s all ease;
      margin-right: 18px; }
      @media (min-width: 1200px) {
        .top_menu .menu-title:before, .top_menu .stickUpHolder .menu-title:before {
          color: #7370b4; } }
    @media (max-width: 1199px) {
      .top_menu .menu-title, .top_menu .stickUpHolder .menu-title {
        font-size: 0;
        margin-right: 0; }
        .top_menu .menu-title:before, .top_menu .stickUpHolder .menu-title:before {
          margin: 0;
          padding-top: 2px; } }
    .top_menu .menu-title:hover, .top_menu .menu-title.active, .top_menu .stickUpHolder .menu-title:hover, .top_menu .stickUpHolder .menu-title.active {
      color: #20252e; }
      .top_menu .menu-title:hover:before, .top_menu .menu-title.active:before, .top_menu .stickUpHolder .menu-title:hover:before, .top_menu .stickUpHolder .menu-title.active:before {
        color: #7370b4; }
        @media (min-width: 1200px) {
          .top_menu .menu-title:hover:before, .top_menu .menu-title.active:before, .top_menu .stickUpHolder .menu-title:hover:before, .top_menu .stickUpHolder .menu-title.active:before {
            color: #55bee7; } }
  .top_menu .menu-mobile-grover, .top_menu .stickUpHolder .menu-mobile-grover {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 25px; }
    .top_menu .menu-mobile-grover:before, .top_menu .stickUpHolder .menu-mobile-grover:before {
      position: absolute;
      content: "\f107";
      font-family: 'FontAwesome';
      font-size: 16px;
      top: 10px;
      right: 6px;
      -moz-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
      -o-transform: translate(0, -50%);
      -webkit-transform: translate(0, -50%);
      transform: translate(0, -50%);
      cursor: pointer;
      z-index: 1;
      -moz-transition: 0.3s all ease;
      -o-transition: 0.3s all ease;
      -webkit-transition: 0.3s all ease;
      transition: 0.3s all ease; }
    .top_menu .menu-mobile-grover:hover, .top_menu .stickUpHolder .menu-mobile-grover:hover {
      color: #7370b4; }
    .top_menu .menu-mobile-grover + a, .top_menu .stickUpHolder .menu-mobile-grover + a {
      position: relative; }
  .top_menu .menu-mobile-grover.active:before, .top_menu .stickUpHolder .menu-mobile-grover.active:before {
    content: "\f106"; }
  .top_menu .is-simplemenu li .menu-mobile-grover:before, .top_menu .stickUpHolder .is-simplemenu li .menu-mobile-grover:before {
    top: 18px;
    font-size: 18px; }
  .top_menu .is-simplemenu li a, .top_menu .stickUpHolder .is-simplemenu li a {
    padding: 3px 0; }
  .top_menu .is-simplemenu li li a, .top_menu .stickUpHolder .is-simplemenu li li a {
    padding-left: 20px; }
  .top_menu .is-simplemenu li li li a, .top_menu .stickUpHolder .is-simplemenu li li li a {
    padding-left: 30px; }
  .top_menu .is-simplemenu li li li li a, .top_menu .stickUpHolder .is-simplemenu li li li li a {
    padding-left: 40px; }
  .top_menu li.simple ul, .top_menu .stickUpHolder li.simple ul {
    display: none; }
  @media (max-width: 1199px) {
    .top_menu .megamenu-col.col-sm-3, .top_menu .stickUpHolder .megamenu-col.col-sm-3 {
      float: left;
      width: 50%; }
      .top_menu .megamenu-col.col-sm-3.first-in-line-sm, .top_menu .stickUpHolder .megamenu-col.col-sm-3.first-in-line-sm {
        clear: left; } }
  @media (max-width: 479px) {
    .top_menu .megamenu-col.col-sm-3, .top_menu .stickUpHolder .megamenu-col.col-sm-3 {
      width: 100%; } }

div:not(.inline-menu) > .module .top_menu .is-megamenu .megamenu-row .megamenu-col, div:not(.inline-menu) > .module .top_menu .stickUpHolder .is-megamenu .megamenu-row .megamenu-col {
  width: 100%; }
  div:not(.inline-menu) > .module .top_menu .is-megamenu .megamenu-row .megamenu-col + .megamenu-col, div:not(.inline-menu) > .module .top_menu .stickUpHolder .is-megamenu .megamenu-row .megamenu-col + .megamenu-col {
    margin-top: 15px; }
  div:not(.inline-menu) > .module .top_menu .is-megamenu .megamenu-row .megamenu-col.products, div:not(.inline-menu) > .module .top_menu .stickUpHolder .is-megamenu .megamenu-row .megamenu-col.products {
    display: none; }
  div:not(.inline-menu) > .module .top_menu .is-megamenu .megamenu-row .megamenu-col:first-child > ul.content > .menu-heading, div:not(.inline-menu) > .module .top_menu .stickUpHolder .is-megamenu .megamenu-row .megamenu-col:first-child > ul.content > .menu-heading {
    margin-top: 0; }
div:not(.inline-menu) > .module .top_menu .is-megamenu ul.content > li, div:not(.inline-menu) > .module .top_menu .stickUpHolder .is-megamenu ul.content > li {
  margin-left: 10px; }
  div:not(.inline-menu) > .module .top_menu .is-megamenu ul.content > li + li, div:not(.inline-menu) > .module .top_menu .stickUpHolder .is-megamenu ul.content > li + li {
    margin-top: 12px; }
div:not(.inline-menu) > .module .top_menu .is-megamenu ul.content .menu-heading, div:not(.inline-menu) > .module .top_menu .stickUpHolder .is-megamenu ul.content .menu-heading {
  margin-left: 0;
  margin-top: 15px; }
  div:not(.inline-menu) > .module .top_menu .is-megamenu ul.content .menu-heading h3, div:not(.inline-menu) > .module .top_menu .stickUpHolder .is-megamenu ul.content .menu-heading h3 {
    margin-bottom: 15px; }

@media (min-width: 1200px) {
  .inline-menu .top_menu, .inline-menu .top_menu .stickUpHolder {
    display: block;
    position: static; }
    .inline-menu .top_menu .products, .inline-menu .top_menu .stickUpHolder .products {
      display: block; } }
@media (min-width: 1360px) {
  .inline-menu .top_menu > ul, .inline-menu .top_menu .stickUpHolder > ul {
    padding: 34px 0; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu > ul > li, .inline-menu .top_menu .stickUpHolder > ul > li {
    position: static;
    width: auto;
    float: left;
    margin-top: 0;
    padding-top: 25px;
    padding-bottom: 12px; }
    .inline-menu .top_menu > ul > li:last-child, .inline-menu .top_menu .stickUpHolder > ul > li:last-child {
      margin-bottom: 0; }
    .inline-menu .top_menu > ul > li > a, .inline-menu .top_menu .stickUpHolder > ul > li > a {
      display: block; }
      .inline-menu .top_menu > ul > li > a:after, .inline-menu .top_menu .stickUpHolder > ul > li > a:after {
        display: none; }
      .inline-menu .top_menu > ul > li > a:before, .inline-menu .top_menu .stickUpHolder > ul > li > a:before {
        display: block;
        position: absolute;
        content: '';
        border-top: 3px solid #7370b4;
        top: -26px;
        left: 0;
        right: 0;
        -moz-transition: 0.3s all ease;
        -o-transition: 0.3s all ease;
        -webkit-transition: 0.3s all ease;
        transition: 0.3s all ease;
        opacity: 0; }
    .inline-menu .top_menu > ul > li.sfHover > a, .inline-menu .top_menu > ul > li.sfHoverForce > a, .inline-menu .top_menu > ul > li > a:hover, .inline-menu .top_menu .stickUpHolder > ul > li.sfHover > a, .inline-menu .top_menu .stickUpHolder > ul > li.sfHoverForce > a, .inline-menu .top_menu .stickUpHolder > ul > li > a:hover {
      color: #20252e; }
      .inline-menu .top_menu > ul > li.sfHover > a:before, .inline-menu .top_menu > ul > li.sfHoverForce > a:before, .inline-menu .top_menu > ul > li > a:hover:before, .inline-menu .top_menu .stickUpHolder > ul > li.sfHover > a:before, .inline-menu .top_menu .stickUpHolder > ul > li.sfHoverForce > a:before, .inline-menu .top_menu .stickUpHolder > ul > li > a:hover:before {
        opacity: 1; }
    .inline-menu .top_menu > ul > li.simple, .inline-menu .top_menu .stickUpHolder > ul > li.simple {
      position: relative; } }
    @media (min-width: 1200px) and (min-width: 1360px) and (max-width: 1479px) {
      .inline-menu .top_menu > ul > li > a, .inline-menu .top_menu .stickUpHolder > ul > li > a {
        font-size: 14px; } }
    @media (min-width: 1200px) and (min-width: 1200px) and (max-width: 1359px) {
      .inline-menu .top_menu > ul > li > a, .inline-menu .top_menu .stickUpHolder > ul > li > a {
        font-size: 13px; } }
@media only screen and (min-width: 1200px) {
  .inline-menu .top_menu > ul > li ul.is-simplemenu, .inline-menu .top_menu > ul > li ul.is-simplemenu ul, .inline-menu .top_menu .stickUpHolder > ul > li ul.is-simplemenu, .inline-menu .top_menu .stickUpHolder > ul > li ul.is-simplemenu ul {
    display: none;
    width: 275px;
    top: -34px;
    left: 100%;
    margin-left: 45px;
    position: absolute;
    z-index: 99;
    background: #fafafa;
    -moz-box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.06);
    padding: 34px 42px 34px 42px; }
    .inline-menu .top_menu > ul > li ul.is-simplemenu li li a, .inline-menu .top_menu > ul > li ul.is-simplemenu ul li li a, .inline-menu .top_menu .stickUpHolder > ul > li ul.is-simplemenu li li a, .inline-menu .top_menu .stickUpHolder > ul > li ul.is-simplemenu ul li li a {
      padding-left: 0; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu > ul > li ul.is-simplemenu li + li, .inline-menu .top_menu > ul > li ul.is-simplemenu ul li + li, .inline-menu .top_menu .stickUpHolder > ul > li ul.is-simplemenu li + li, .inline-menu .top_menu .stickUpHolder > ul > li ul.is-simplemenu ul li + li {
    margin-top: 8px; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu > ul > li > ul.is-simplemenu, .inline-menu .top_menu .stickUpHolder > ul > li > ul.is-simplemenu {
    top: 100%;
    left: -45px;
    margin-top: 10px;
    background: white; } }
@media (min-width: 1360px) {
  .inline-menu .top_menu > ul > li > ul.is-simplemenu, .inline-menu .top_menu .stickUpHolder > ul > li > ul.is-simplemenu {
    margin-top: 19px; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu > ul > li + li, .inline-menu .top_menu .stickUpHolder > ul > li + li {
    margin-left: 23px; } }
@media (min-width: 1360px) {
  .inline-menu .top_menu > ul > li + li, .inline-menu .top_menu .stickUpHolder > ul > li + li {
    margin-left: 34px; } }
@media (min-width: 1650px) and (max-width: 1799px) {
  .inline-menu .top_menu > ul > li + li, .inline-menu .top_menu .stickUpHolder > ul > li + li {
    margin-left: 27px; } }
@media (min-width: 1800px) {
  .inline-menu .top_menu > ul > li + li, .inline-menu .top_menu .stickUpHolder > ul > li + li {
    margin-left: 45px; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu ul.menu, .inline-menu .top_menu .stickUpHolder ul.menu {
    display: block;
    position: static;
    top: auto;
    left: auto;
    width: auto;
    box-shadow: none;
    background: none;
    margin: 0;
    padding: 0;
    max-height: none;
    overflow: visible; } }
@media (min-width: 1200px) and (max-width: 1359px) {
  .inline-menu .top_menu li li a, .inline-menu .top_menu .stickUpHolder li li a {
    font-size: 13px; } }
.inline-menu .top_menu .menu_badge, .inline-menu .top_menu .stickUpHolder .menu_badge {
  top: -2px;
  right: -5px;
  left: auto; }
@media only screen and (min-width: 1200px) {
  .inline-menu .top_menu .is-megamenu, .inline-menu .top_menu .stickUpHolder .is-megamenu {
    position: absolute;
    top: 100%;
    left: 15px;
    right: 15px;
    width: auto;
    padding: 0 15px;
    margin-top: 10px;
    max-height: calc(100vh - 55px);
    overflow: auto;
    background: #fff;
    -moz-box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.06);
    -webkit-box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 7px 29px 0px rgba(0, 0, 0, 0.06); } }
  @media only screen and (min-width: 1200px) and (min-width: 1360px) {
    .inline-menu .top_menu .is-megamenu, .inline-menu .top_menu .stickUpHolder .is-megamenu {
      margin-top: 17px; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu .is-megamenu .megamenu-row, .inline-menu .top_menu .stickUpHolder .is-megamenu .megamenu-row {
    padding-left: 23px; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu .is-megamenu .megamenu-row .megamenu-col, .inline-menu .top_menu .stickUpHolder .is-megamenu .megamenu-row .megamenu-col {
    padding-top: 25px;
    padding-bottom: 25px; } }
@media (min-width: 1360px) {
  .inline-menu .top_menu .is-megamenu .megamenu-row .megamenu-col, .inline-menu .top_menu .stickUpHolder .is-megamenu .megamenu-row .megamenu-col {
    padding-top: 38px;
    padding-bottom: 38px; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu .is-megamenu ul.content > li:first-child > a, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content > li:first-child > a {
    margin-top: 46px; }
    .inline-menu .top_menu .is-megamenu ul.content > li:first-child > a.sf-with-ul, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content > li:first-child > a.sf-with-ul {
      margin-top: 0; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu .is-megamenu ul.content .megamenu_banner, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner {
    display: block; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu .is-megamenu ul.content .megamenu_banner .description p, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description p {
    padding-right: 12%; } }
@media (min-width: 1360px) {
  .inline-menu .top_menu .is-megamenu ul.content .megamenu_banner .description h2, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description h2 {
    font-size: 26px; }
    .inline-menu .top_menu .is-megamenu ul.content .megamenu_banner .description h2 + p, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description h2 + p {
      margin-top: 21px; }
  .inline-menu .top_menu .is-megamenu ul.content .megamenu_banner .description p, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description p {
    font-size: 15px; }
  .inline-menu .top_menu .is-megamenu ul.content .megamenu_banner .description .btn, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description .btn {
    min-width: 170px;
    margin-top: 15px; } }
@media (min-width: 1650px) {
  .inline-menu .top_menu .is-megamenu ul.content .megamenu_banner .description h2, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description h2 {
    font-size: 34px; }
  .inline-menu .top_menu .is-megamenu ul.content .megamenu_banner .description p, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description p {
    font-size: 18px; }
  .inline-menu .top_menu .is-megamenu ul.content .megamenu_banner .description .btn, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content .megamenu_banner .description .btn {
    min-width: 195px;
    margin-top: 32px; } }
@media (min-width: 1200px) {
  .inline-menu .top_menu .is-megamenu ul.content ul, .inline-menu .top_menu .stickUpHolder .is-megamenu ul.content ul {
    opacity: 1 !important;
    display: block !important; } }
.inline-menu .top_menu .is-megamenu .products, .inline-menu .top_menu .stickUpHolder .is-megamenu .products {
  background: white; }
  .inline-menu .top_menu .is-megamenu .products ul.content, .inline-menu .top_menu .stickUpHolder .is-megamenu .products ul.content {
    padding-left: 24px;
    padding-right: 24px; }
    .inline-menu .top_menu .is-megamenu .products ul.content li + li, .inline-menu .top_menu .stickUpHolder .is-megamenu .products ul.content li + li {
      margin-top: 30px; }
  .inline-menu .top_menu .is-megamenu .products .menu-heading h3, .inline-menu .top_menu .stickUpHolder .is-megamenu .products .menu-heading h3 {
    margin-bottom: 5px; }
.inline-menu .top_menu .is-megamenu .product, .inline-menu .top_menu .stickUpHolder .is-megamenu .product {
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center; }
  .inline-menu .top_menu .is-megamenu .product .product-image, .inline-menu .top_menu .stickUpHolder .is-megamenu .product .product-image {
    max-width: 95px;
    margin-right: 35px; }
    .inline-menu .top_menu .is-megamenu .product .product-image a, .inline-menu .top_menu .stickUpHolder .is-megamenu .product .product-image a {
      max-width: 100%; }
  .inline-menu .top_menu .is-megamenu .product .product-info .product-name, .inline-menu .top_menu .stickUpHolder .is-megamenu .product .product-info .product-name {
    margin-top: 0;
    margin-bottom: 5px; }
    .inline-menu .top_menu .is-megamenu .product .product-info .product-name a, .inline-menu .top_menu .stickUpHolder .is-megamenu .product .product-info .product-name a {
      color: #20252e; }
      .inline-menu .top_menu .is-megamenu .product .product-info .product-name a:hover, .inline-menu .top_menu .stickUpHolder .is-megamenu .product .product-info .product-name a:hover {
        color: #7370b4; }
  .inline-menu .top_menu .is-megamenu .product .product-info .new-price, .inline-menu .top_menu .stickUpHolder .is-megamenu .product .product-info .new-price {
    margin-right: 5px; }
.inline-menu .top_menu .is-megamenu li a, .inline-menu .top_menu .stickUpHolder .is-megamenu li a {
  font-size: 15px;
  color: #7370b4; }
  .inline-menu .top_menu .is-megamenu li a:hover, .inline-menu .top_menu .stickUpHolder .is-megamenu li a:hover {
    color: #20252e; }
@media only screen and (min-width: 1200px) {
  .inline-menu .top_menu .menu-title, .inline-menu .top_menu .stickUpHolder .menu-title {
    display: none; } }
@media only screen and (min-width: 1200px) {
  .inline-menu .top_menu .menu-mobile-grover:before, .inline-menu .top_menu .stickUpHolder .menu-mobile-grover:before {
    /* display: none; */
   } }

.red {
  background: #f00; }

.menuvideowrapper {
  clear: both;
  float: none;
  height: 0;
  padding-bottom: 56.25%;
  padding-top: 25px;
  position: relative;
  width: 100%; }

.menuvideowrapper iframe {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%; }

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
  height: auto; }

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

.frontend-map {
  min-height: 200px; }

/**** Left/Right column menu ****/
.left_column_menu .block_content li, .right_column_menu .block_content li {
  position: relative; }
.left_column_menu .block_content li.simple ul, .right_column_menu .block_content li.simple ul {
  display: none; }
  @media only screen and (min-width: 1200px) {
    .left_column_menu .block_content li.simple ul, .right_column_menu .block_content li.simple ul {
      position: absolute;
      top: -1px;
      width: 200px;
      border: 1px solid #ccc;
      background: #fff;
      z-index: 999; } }
  @media only screen and (max-width: 1199px) {
    .left_column_menu .block_content li.simple ul li, .right_column_menu .block_content li.simple ul li {
      border-top: 1px solid #ccc;
      position: relative; }
      .left_column_menu .block_content li.simple ul li a, .right_column_menu .block_content li.simple ul li a {
        display: block;
        padding: 10px 0 10px 15px;
        position: relative; }
      .left_column_menu .block_content li.simple ul li li a, .right_column_menu .block_content li.simple ul li li a {
        padding-left: 25px; } }
.left_column_menu .block_content > ul > li, .right_column_menu .block_content > ul > li {
  border-top: 1px solid #ccc;
  position: relative; }
  .left_column_menu .block_content > ul > li > a, .right_column_menu .block_content > ul > li > a {
    display: block;
    padding: 10px 0;
    position: relative; }
  .left_column_menu .block_content > ul > li:first-child, .right_column_menu .block_content > ul > li:first-child {
    border: none; }
.left_column_menu .block_content span.menu_badge, .right_column_menu .block_content span.menu_badge {
  font-size: 10px;
  display: inline-block;
  background: #f00;
  color: #fff;
  padding: 1px 5px 2px 5px;
  line-height: 12px;
  border-radius: 3px;
  margin-left: 10px; }
.left_column_menu .block_content li.simple li a, .right_column_menu .block_content li.simple li a {
  padding: 4px 5px;
  display: block; }
.left_column_menu .block_content div.is-megamenu, .right_column_menu .block_content div.is-megamenu {
  display: none; }
  .left_column_menu .block_content div.is-megamenu ul, .right_column_menu .block_content div.is-megamenu ul {
    display: block !important;
    opacity: 1 !important; }
    .left_column_menu .block_content div.is-megamenu ul.content > li > a, .right_column_menu .block_content div.is-megamenu ul.content > li > a {
      font-weight: bold;
      text-transform: uppercase; }
    .left_column_menu .block_content div.is-megamenu ul.content > li li, .right_column_menu .block_content div.is-megamenu ul.content > li li {
      padding-left: 5px; }
  @media only screen and (min-width: 1200px) {
    .left_column_menu .block_content div.is-megamenu, .right_column_menu .block_content div.is-megamenu {
      position: absolute;
      top: 0;
      width: 600px;
      padding: 15px;
      background: #fff;
      border: 1px solid #ccc;
      z-index: 999; } }
  @media (min-width: 480px) and (max-width: 1199px) {
    .left_column_menu .block_content div.is-megamenu .megamenu-col.col-sm-3, .right_column_menu .block_content div.is-megamenu .megamenu-col.col-sm-3 {
      width: 50%;
      float: left; }
      .left_column_menu .block_content div.is-megamenu .megamenu-col.col-sm-3.first-in-line-sm, .right_column_menu .block_content div.is-megamenu .megamenu-col.col-sm-3.first-in-line-sm {
        clear: left; } }
.left_column_menu .block_content .menu-mobile-grover:after, .right_column_menu .block_content .menu-mobile-grover:after {
  position: absolute;
  right: 0;
  top: 12px;
  height: 15px;
  width: 15px;
  line-height: 15px;
  font-size: 15px;
  content: "\f107";
  font-family: 'FontAwesome';
  z-index: 1;
  cursor: pointer; }
.left_column_menu .block_content .menu-mobile-grover.active:after, .right_column_menu .block_content .menu-mobile-grover.active:after {
  content: "\f106"; }

.left_column_menu li.simple ul {
  right: -200px; }

.right_column_menu li.simple ul {
  left: -200px; }

.left_column_menu div.is-megamenu {
  right: -600px; }

.right_column_menu div.is-megamenu {
  left: -600px; }

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -30%, 0);
    transform: translate3d(0, -30%, 0); }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none; } }
.mpsl-hide-script {
  display: none;
}

.mpsl-layer .mpsl-button-red,
#footer .mpsl-layer .mpsl-button-red,
.mpsl-layer .mpsl-button-red:hover,
#footer .mpsl-layer .mpsl-button-red:hover {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  padding: 12px 28px 13px;
  text-decoration: none;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #e75d4a;
  text-shadow: 0px 1px 0px #c03826;
  -webkit-box-shadow: 0px 2px 0px 0px #cd3f2b;
  -moz-box-shadow: 0px 2px 0px 0px #cd3f2b;
  box-shadow: 0px 2px 0px 0px #cd3f2b;
}

.mpsl-layer .mpsl-button-green,
#footer .mpsl-layer .mpsl-button-green,
.mpsl-layer .mpsl-button-green:hover,
#footer .mpsl-layer .mpsl-button-green:hover {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  padding: 12px 28px 13px;
  text-decoration: none;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #58cf6e;
  text-shadow: 0px 1px 0px #17872d;
  -webkit-box-shadow: 0px 2px 0px 0px #2ea044;
  -moz-box-shadow: 0px 2px 0px 0px #2ea044;
  box-shadow: 0px 2px 0px 0px #2ea044;
}

.mpsl-layer .mpsl-button-blue,
#footer .mpsl-layer .mpsl-button-blue,
.mpsl-layer .mpsl-button-blue:hover,
#footer .mpsl-layer .mpsl-button-blue:hover {
  font-family: 'Open Sans', sans-serif;
  font-size: 18px;
  padding: 12px 28px 13px;
  text-decoration: none;
  color: #fff;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  background-color: #e75d4a;
  text-shadow: 0px 1px 0px #c03826;
  -webkit-box-shadow: 0px 2px 0px 0px #cd3f2b;
  -moz-box-shadow: 0px 2px 0px 0px #cd3f2b;
  box-shadow: 0px 2px 0px 0px #cd3f2b;
}

.mpsl-layer .mpsl-header-dark,
#footer .mpsl-layer .mpsl-header-dark {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -0.025em;
  color: #000;
}

.mpsl-layer .mpsl-header-white,
#footer .mpsl-layer .mpsl-header-white {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 48px;
  letter-spacing: -0.025em;
  color: #fff;
}

.mpsl-layer .mpsl-sub-header-dark,
#footer .mpsl-layer .mpsl-sub-header-dark {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 26px;
  padding: 14px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
}

.mpsl-layer .mpsl-sub-header-white,
#footer .mpsl-layer .mpsl-sub-header-white {
  font-family: 'Open Sans', sans-serif;
  font-weight: 300;
  font-size: 26px;
  padding: 14px;
  background-color: rgba(255, 255, 255, 0.6);
  color: #000;
}

.mpsl-layer .mpsl-text-dark,
#footer .mpsl-layer .mpsl-text-dark {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #000;
  text-shadow: 0px 1px 0px rgba(255, 255, 255, 0.45);
}

.mpsl-layer .mpsl-text-white,
#footer .mpsl-layer .mpsl-text-white {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  color: #fff;
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.45);
}

.ms_arrows .ms_prev, .ms_arrows .ms_next {
  height: 30px;
  width: 30px;
  outline: 0;
  margin: 0;
  text-align: center;
  background-image: none;
  background: none;
  opacity: 1;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
  margin-top: -15px;
}
@media (min-width: 768px) {
  .ms_arrows .ms_prev, .ms_arrows .ms_next {
    background: white;
    height: 70px;
    width: 70px;
    margin-top: -35px;
  }
}
.ms_arrows .ms_prev:before, .ms_arrows .ms_next:before {
  font-family: "FontAwesome";
  font-weight: 400;
  font-style: normal;
  display: inline-block;
  font-size: 20px;
  line-height: 30px;
  color: #01a5d5;
  -webkit-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
@media (min-width: 768px) {
  .ms_arrows .ms_prev:before, .ms_arrows .ms_next:before {
    line-height: 70px;
  }
}
@media (min-width: 768px) {
  .ms_arrows .ms_prev:hover, .ms_arrows .ms_next:hover {
    background: #f8f8f8;
  }
}
.ms_arrows .ms_prev:hover:before, .ms_arrows .ms_next:hover:before {
  color: #2f2c2f;
}
.ms_arrows .ms_prev {
  left: 0;
}
.ms_arrows .ms_prev:before {
  content: '\f104';
}
.ms_arrows .ms_next {
  right: 0;
}
.ms_arrows .ms_next:before {
  content: '\f105';
}

@media (max-width: 767px) {
  .heading-xs {
    top: 50% !important;
    transform: translateY(-50%) !important;
    left: auto !important;
    right: 10% !important;
    width: 40% !important;
    max-width: 400px !important;
    text-align: right;
  }
  .heading-xs h2 {
    font-size: 30px !important;
    line-height: 1.2 !important;
  }
}
@media (max-width: 479px) {
  .heading-xs {
    max-width: 300px !important;
  }
  .heading-xs h2 {
    font-size: 20px !important;
  }
}
#content.bootstrap,
#content.nobootstrap {
  padding-top: 10px;
}
#content .page-head,
#content .bootstrap .page-head {
  display: none;
}
.ui-resizable-handle {
  background: none;
  display: none !important;
}
.layer-selected {
  z-index: 2000 !important;
}
.layer-selected:before,
.layer-selected:after {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.layer-selected:before {
  border: 1px solid #fff !important;
}
.layer-selected:after {
  border: 1px dashed #000 !important;
}
.layer-selected .ui-resizable-handle {
  display: block !important;
  width: 6px;
  height: 6px;
  border: 1px solid #000;
  background: #fff;
}
.layer-selected .ui-resizable-handle.ui-resizable-n {
  top: -6px;
  left: 50%;
  margin-left: -3px;
}
.layer-selected .ui-resizable-handle.ui-resizable-s {
  left: 50%;
  margin-left: -3px;
  margin-bottom: -2px;
}
.layer-selected .ui-resizable-handle.ui-resizable-w {
  top: 50%;
  left: -6px;
  margin-top: -3px;
}
.layer-selected .ui-resizable-handle.ui-resizable-e {
  top: 50%;
  right: -6px;
  margin-top: -3px;
}
.layer-selected .ui-resizable-handle.ui-resizable-nw {
  top: -6px;
  left: -6px;
}
.layer-selected .ui-resizable-handle.ui-resizable-ne {
  top: -6px;
  right: -6px;
}
.layer-selected .ui-resizable-handle.ui-resizable-sw {
  bottom: -6px;
  left: -6px;
}
.layer-selected .ui-resizable-handle.ui-resizable-se {
  bottom: -6px;
  right: -6px;
}
.mpsl-layers-table .layer-control-selected,
.mpsl-layer-presets-table .layer-preset-control-selected {
  background-color: #e5e5e5 !important;
}
.mpsl-layers-table .layer-control-selected > td,
.mpsl-layer-presets-table .layer-preset-control-selected > td {
  background-color: inherit !important;
}
.mpsl-layer-presets-table.mpsl-layer-presets-table-disabled {
  opacity: 0.6;
}
#mpsl-workground {
  width: 100%;
  margin-bottom: 10px;
}
#mpsl-workground > .mpsl-slider-wrapper {
  position: relative;
  margin: 0 auto;
  overflow-x: scroll;
  overflow-y: hidden;
}
#mpsl-workground > .mpsl-slider-wrapper > .mpsl-slide-bg-wrapper {
  position: absolute;
  width: 100%;
  background-color: #fff;
}
#mpsl-workground > .mpsl-slider-wrapper > .mpsl-slide-bg-wrapper > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#mpsl-workground > .mpsl-slider-wrapper > .motoslider_wrapper {
  width: 100%;
  margin: 0 auto;
}
#mpsl-workground > .mpsl-slider-wrapper > .motoslider_wrapper > .ms_wrapper {
  overflow: visible;
}
#mpsl-workground > .mpsl-slider-wrapper > .motoslider_wrapper .ms_current_slide > .ms_slide_wrapper {
  display: none;
}
#mpsl-workground > .mpsl-slider-wrapper > .motoslider_wrapper .ms_current_slide > .ms_slide_wrapper .mpsl-slider-grid-helper {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  border: 1px dashed #4affff;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
#mpsl-workground > .mpsl-slider-wrapper > .motoslider_wrapper .ms_current_slide .layers:hover {
  cursor: pointer !important;
}
#mpsl-workground > .mpsl-slider-wrapper > .motoslider_wrapper .ms_current_slide .layers > .ms_layer.mpsl-editor-white-space-nowrap {
  white-space: nowrap !important;
}
#mpsl-workground > .mpsl-slider-wrapper > .motoslider_wrapper .ms_current_slide .layers.mpsl-editor-wh-auto {
  width: auto !important;
  height: auto !important;
}
#mpsl-workground > .mpsl-slider-wrapper > .motoslider_wrapper .ms_current_slide .layers.mpsl-editor-layer-pos {
  left: 0 !important;
  right: auto !important;
}
#mpsl-workground > .mpsl-slider-wrapper > .motoslider_wrapper .ms_current_slide .layers.mpsl-pos-left-auto {
  left: auto !important;
}
#mpsl-workground > .mpsl-slider-wrapper .mpsl-slide-border-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}
#mpsl-workground > .mpsl-slider-wrapper .mpsl-slide-border-wrapper > .mpsl-slide-border {
  position: relative;
  margin: 0 auto;
  width: 960px;
  height: 100%;
  outline: 1px dashed #4affff;
}
.ms_layer p,
.ms_layer h1,
.ms_layer h2,
.ms_layer h3,
.ms_layer h4,
.ms_layer h5 {
  margin: 0;
  padding: 0;
  font: inherit;
  color: inherit;
}
.mpsl-layer-control-panel {
  margin: 15px 0;
}
.mpsl-layer-control-panel > .mpsl-layer-control-panel-left {
  float: left;
}
.mpsl-layer-control-panel > .mpsl-layer-control-panel-right {
  float: right;
}
.mpsl-layers-container,
.mpsl-style-editor-wrapper {
  overflow: hidden;
}
.mpsl-layers-container .mpsl-layer-settings-wrapper,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .mpsl-layers-container .mpsl-layer-settings-wrapper,
  .mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper,
  .mpsl-layers-container .mpsl-style-editor-settings-wrapper,
  .mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper {
    width: -webkit-calc(100% - 260px);
    width: -moz-calc(100% - 260px);
    width: calc(100% - 260px);
    margin-right: 20px;
    float: left;
    min-height: 250px;
  }
}
@media screen and (max-device-width: 1024px) {
  .mpsl-layers-container .mpsl-layer-settings-wrapper,
  .mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper,
  .mpsl-layers-container .mpsl-style-editor-settings-wrapper,
  .mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper {
    margin-bottom: 20px;
  }
}
.mpsl-layers-container .mpsl-layer-settings-wrapper.mpsl-hide-options .mpsl-option-wrapper,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper.mpsl-hide-options .mpsl-option-wrapper,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper.mpsl-hide-options .mpsl-option-wrapper,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper.mpsl-hide-options .mpsl-option-wrapper {
  display: none;
}
.mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option {
  display: inline-block;
  width: 100%;
}
.mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option.mpsl-option-checkbox input,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option.mpsl-option-checkbox input,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-checkbox input,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-checkbox input,
.mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option.mpsl-option-select input,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option.mpsl-option-select input,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-select input,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-select input {
  margin: 0 5px 0 0;
}
.mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option.mpsl-option-hidden,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option.mpsl-option-hidden,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-hidden,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-hidden {
  display: none;
}
.mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option label,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option label,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option label,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option label {
  display: inline-block;
  min-width: 50px;
}
@media screen and (max-width: 1266px) {
  .mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option label,
  .mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option label,
  .mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option label,
  .mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option label {
    min-width: 0px;
  }
}
.mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option.mpsl-option-radio_group label,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option.mpsl-option-radio_group label,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-radio_group label,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-radio_group label {
  min-width: 0;
}
.mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option textarea,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option textarea,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option textarea,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option textarea {
  width: 100%;
}
.mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option-text input,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option-text input,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option-text input,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option-text input {
  width: 100%;
}
@media screen and (max-device-width: 1024px) {
  .mpsl-layers-container .mpsl-layer-settings-wrapper .mpsl-option-text input,
  .mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .mpsl-option-text input,
  .mpsl-layers-container .mpsl-style-editor-settings-wrapper .mpsl-option-text input,
  .mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .mpsl-option-text input {
    width: 100%;
  }
  .mpsl-layers-container .mpsl-layer-settings-wrapper label,
  .mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper label,
  .mpsl-layers-container .mpsl-style-editor-settings-wrapper label,
  .mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper label {
    display: inline-block;
    min-width: 30px;
  }
}
.mpsl-layers-container .mpsl-layer-settings-wrapper .table th,
.mpsl-style-editor-wrapper .mpsl-layer-settings-wrapper .table th,
.mpsl-layers-container .mpsl-style-editor-settings-wrapper .table th,
.mpsl-style-editor-wrapper .mpsl-style-editor-settings-wrapper .table th {
  font-size: 13px;
  padding: 5px 10px;
}
.mpsl-layers-container #mpsl-layer-preset-list-wrapper .mpsl-layer-preset-private,
.mpsl-style-editor-wrapper #mpsl-layer-preset-list-wrapper .mpsl-layer-preset-private {
  font-style: italic;
}
.mpsl-layers-container #mpsl-layer-preset-list-wrapper .mpsl-layer-preset-label,
.mpsl-style-editor-wrapper #mpsl-layer-preset-list-wrapper .mpsl-layer-preset-label {
  max-width: 225px;
  padding: 8px 10px;
}
.mpsl-layers-container #mpsl-layer-preset-list-wrapper .mpsl-layer-preset-remove-handle,
.mpsl-style-editor-wrapper #mpsl-layer-preset-list-wrapper .mpsl-layer-preset-remove-handle {
  background: url("modules/motopressslider/views/img/sprite.png?ver=1.2.6") no-repeat -3px -38px;
  width: 1px;
  padding: 8px 10px;
}
.mpsl-layers-container #mpsl-layer-preset-list-wrapper .mpsl-layer-preset-remove-handle:hover,
.mpsl-style-editor-wrapper #mpsl-layer-preset-list-wrapper .mpsl-layer-preset-remove-handle:hover {
  background-position: -30px -38px;
}
.mpsl-layers-container .mpsl-layers-list-wrapper,
.mpsl-style-editor-wrapper .mpsl-layers-list-wrapper {
  margin-top: 20px;
  max-height: 250px;
}
@media screen and (min-width: 1024px) {
  .mpsl-layers-container .mpsl-layers-list-wrapper,
  .mpsl-style-editor-wrapper .mpsl-layers-list-wrapper {
    float: left;
    width: 240px;
    margin-top: 0;
  }
}
.mpsl-layers-container .mpsl-layers-list-wrapper > table,
.mpsl-style-editor-wrapper .mpsl-layers-list-wrapper > table {
  border-bottom: none;
}
.mpsl-layers-container .mpsl-layers-list-wrapper > table th,
.mpsl-style-editor-wrapper .mpsl-layers-list-wrapper > table th {
  font-size: 13px;
  padding: 5px 10px;
}
.mpsl-layers-container .mpsl-layers-list-wrapper .mpsl-layers-list-child-wrapper,
.mpsl-style-editor-wrapper .mpsl-layers-list-wrapper .mpsl-layers-list-child-wrapper {
  overflow-y: auto;
}
.mpsl-layers-container .mpsl-layers-list-wrapper .mpsl-layers-list-child-wrapper > table,
.mpsl-style-editor-wrapper .mpsl-layers-list-wrapper .mpsl-layers-list-child-wrapper > table {
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.mpsl-layers-container .mpsl-layers-list-wrapper .mpsl-layer-drag-handle,
.mpsl-style-editor-wrapper .mpsl-layers-list-wrapper .mpsl-layer-drag-handle {
  background: url("modules/motopressslider/views/img/sprite.png?ver=1.2.6") no-repeat 3px -3px;
  cursor: move;
  width: 1px;
  padding: 8px 10px;
}
.mpsl-layers-container .mpsl-layers-list-wrapper .mpsl-layer-label,
.mpsl-style-editor-wrapper .mpsl-layers-list-wrapper .mpsl-layer-label {
  padding-top: 8px;
  padding-bottom: 8px;
  min-height: 19px;
}
.mpsl-style-editor-wrapper {
  overflow: visible;
}
.mpsl-style-editor-wrapper .mpsl-layer-presets-table {
  width: 100%;
}
.mpsl-preloader,
.mpsl-global-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  background-image: url("modules/motopressslider/views/img/loading.gif?ver=1.2.6");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  z-index: 10000;
}
.mpsl-global-preloader {
  position: fixed;
}
.mpsl-layer-fix {
  position: absolute !important;
  margin: 0 !important;
}
.mpsl-layer-fix .mpsl-layer-child-fix {
  position: relative !important;
  margin: 0 !important;
  left: auto !important;
  top: auto !important;
  right: auto !important;
  bottom: auto !important;
}
.mpsl-layer-fix .mpsl-layer-child-fix.ms_video_layer {
  max-width: none;
}
.mpsl-layer-fix .mpsl-image-layer-child-fix,
.mpsl-layer-fix .mpsl-image-layer-child-fix > img,
.mpsl-layer-fix .mpsl-video-layer-child-fix {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: border-box !important;
  box-sizing: border-box !important;
  width: 100% !important;
}
.mpsl-layer-fix .mpsl-image-layer-child-fix,
.mpsl-layer-fix .mpsl-image-layer-child-fix > img {
  font-size: 0 !important;
}
.mpsl-layer-fix .mpsl-video-layer-child-fix {
  height: 100% !important;
}
.mpsl-layer-handle {
  z-index: 1001;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mpsl-layer-style-list optgroup:empty {
  display: none;
}
.mpsl-style-editor-dialog {
  overflow: visible;
  z-index: 1040 !important;
}
.mpsl-style-editor-dialog span.mpsl-se-title-left,
.mpsl-style-editor-dialog span.mpsl-se-title-right {
  display: inline-block;
}
.mpsl-style-editor-dialog span.mpsl-se-title-left {
  width: 70%;
}
.mpsl-style-editor-dialog span.mpsl-se-title-right {
  width: 25%;
  margin-left: 35px;
}
#mpsl-style-editor-modal {
  overflow: visible;
  max-height: 680px !important;
}
#mpsl-style-editor-modal input[type="number"] {
  width: 80px;
}
#mpsl-style-editor-modal #mpsl-style-editor-wrapper {
  margin: 0;
  padding-bottom: 0;
}
#mpsl-style-editor-modal #mpsl-style-editor-wrapper .panel-footer {
  height: auto;
  margin-top: 0;
}
#mpsl-style-editor-modal .mpsl-preset-allow-style-wrapper {
  display: inline-block;
}
#mpsl-style-editor-modal .mpsl-preset-allow-style-wrapper .mpsl-option-checkbox {
  margin: 0;
}
#mpsl-style-editor-modal .mpsl-preset-allow-style-wrapper .mpsl-option-checkbox input {
  float: none;
  vertical-align: middle;
}
#mpsl-style-editor-modal .mpsl-preset-allow-style-wrapper .mpsl-option-checkbox .checkbox {
  margin: 0;
}
#mpsl-style-editor-modal .mpsl-style-editor-area {
  padding: 10px;
}
#mpsl-style-editor-modal .mpsl-style-editor-footer {
  clear: both;
  margin-top: 0;
  margin-bottom: 0;
}
#mpsl-style-editor-modal .mpsl-style-editor-footer fieldset {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper {
  border: none !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  padding: 0 !important;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .mpsl-settings-tab-content .tabs-panel {
  max-height: 100%;
  overflow-y: auto;
  margin: 0;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .ui-widget,
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .ui-widget button {
  /*font-family: "Open Sans", sans-serif;*/
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper > ul {
  background: none !important;
  padding: 0 0 0 10px !important;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  /*font-family: "Open Sans",sans-serif;*/
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper > ul > li {
  padding: 0 !important;
  border: 1px solid #ccc !important;
  border-bottom: none !important;
  background: #e4e4e4 !important;
  -webkit-border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  border-radius: 0 !important;
  font-weight: 600 !important;
  font-size: 15px !important;
  line-height: 24px !important;
  outline: none !important;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper > ul > li > a {
  padding: 4px 15px !important;
  color: #555;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper > ul > li.ui-tabs-active {
  border-bottom: 1px solid #f1f1f1 !important;
  background: #f1f1f1 !important;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper > ul > li.ui-tabs-active > a {
  color: #000;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper #mpsl_title {
  width: 320px;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-hidden {
  display: none;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-radio_buttons label {
  vertical-align: middle;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-radio_buttons label:last-of-type {
  margin-right: 20px;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .mpsl-option .button-secondary,
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .mpsl-option .button-primary {
  vertical-align: inherit;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-codemirror label {
  font-weight: bold;
}
#mpsl-style-editor-modal .mpsl-style-editor-settings-wrapper .mpsl-option.mpsl-option-codemirror .CodeMirror {
  margin-top: 10px;
}
#mpsl-style-editor-wrapper > .mpsl-style-editor-content {
  max-height: 640px !important;
  overflow: hidden;
}
#mpsl-style-editor-wrapper > .mpsl-style-editor-content > table {
  width: 100%;
}
#mpsl-style-editor-wrapper > .mpsl-style-editor-content > table > tbody > tr > td {
  vertical-align: top;
}
#mpsl-style-editor-wrapper > .mpsl-style-editor-content > table > tbody > tr > td:first-child {
  width: 70%;
}
#mpsl-style-editor-wrapper > .mpsl-style-editor-content > table > tbody > tr > td:last-child {
  width: 25%;
}
#mpsl-style-editor-wrapper > .mpsl-style-editor-content #mpsl-style-editor-settings-wrapper {
  width: 100%;
}
#mpsl-style-editor-wrapper > .mpsl-style-editor-content #mpsl-style-editor-settings-wrapper .ui-tabs-panel.ui-widget-content {
  overflow: auto;
}
#mpsl-style-editor-wrapper > .mpsl-style-editor-content .ui-tabs-panel {
  padding-top: 0;
  padding-bottom: 0;
}
#mpsl-style-editor-wrapper > .mpsl-style-editor-footer {
  border-top: solid 1px #e5e5e5;
}
#mpsl-style-editor-wrapper #mpsl-layer-preset-list-child-wrapper {
  overflow-y: auto;
}
#mpsl-style-editor-wrapper .mpsl-option-codemirror > .CodeMirror {
  border: solid 1px #dedede;
}
#mpsl-style-editor-wrapper #mpsl-style-mode-switcher {
  display: inline-block;
  font-size: 13px;
  margin-bottom: 8px;
  margin-left: 10px;
}
#mpsl-style-editor-preview-area {
  height: 100px;
  border: solid 1px #dedede;
  position: relative;
  overflow: hidden;
  margin-bottom: 10px;
}
#mpsl-style-editor-preview-area > .mpsl-style-editor-preview {
  position: absolute !important;
  margin: 0 !important;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%) !important;
  white-space: nowrap !important;
  line-height: normal;
}
#mpsl-style-editor-preview-area > .mpsl-style-editor-bg-toggle {
  position: absolute;
  width: 15px;
  height: 15px;
  bottom: 10px;
  left: 10px;
  cursor: pointer;
}
#mpsl-preset-styles-wrapper {
  display: none;
}
#tmhtmlcontent_top {
  padding-top: 2px;
 }
  @media (max-width: 1199px) {
    #tmhtmlcontent_top {
      display: none; } }
  #tmhtmlcontent_top ul {
    margin: 0; }
  #tmhtmlcontent_top .contact-info .item-html > p {
    display: inline-block;
    margin-right: 21px;
    margin-bottom: 0;
    position: relative;
    padding-left: 27px;
    color: #878787; }
    @media (min-width: 1200px) {
      #tmhtmlcontent_top .contact-info .item-html > p {
        margin-right: 34px;
        font-size: 15px; } }
    #tmhtmlcontent_top .contact-info .item-html > p:last-child {
      margin-right: 0; }
    #tmhtmlcontent_top .contact-info .item-html > p i {
      position: absolute;
      left: 0;
      top: 0;
      font-size: 16px;
      color: #7370b4; }
    #tmhtmlcontent_top .contact-info .item-html > p a {
      color: #20252e; }
      @media (min-width: 1200px) {
        #tmhtmlcontent_top .contact-info .item-html > p a {
          font-weight: 400;
          letter-spacing: 0.04em; } }
      #tmhtmlcontent_top .contact-info .item-html > p a:hover {
        color: #7370b4; }

@media (min-width: 768px) {
  #tmhtmlcontent_topColumn {
    margin-top: 30px; } }
@media (min-width: 1200px) {
  #tmhtmlcontent_topColumn {
    margin-top: 60px; } }
#tmhtmlcontent_topColumn > ul {
  margin-left: -10px;
  margin-right: -10px;
  margin-bottom: 0; }
  #tmhtmlcontent_topColumn > ul > li {
    padding-left: 10px;
    padding-right: 10px;
    margin-top: 20px; }
    #tmhtmlcontent_topColumn > ul > li .item-link {
      display: block;
      position: relative;
      overflow: hidden;
      color: white; }
      #tmhtmlcontent_topColumn > ul > li .item-link img {
        -moz-transform: scale(1, 1);
        -ms-transform: scale(1, 1);
        -o-transform: scale(1, 1);
        -webkit-transform: scale(1, 1);
        transform: scale(1, 1);
        -moz-transition: 0.6s all ease;
        -o-transition: 0.6s all ease;
        -webkit-transition: 0.6s all ease;
        transition: 0.6s all ease;
        will-change: transform; }
      #tmhtmlcontent_topColumn > ul > li .item-link .item-html {
        position: absolute;
        left: 0;
        right: 0;
        padding: 15px;
        z-index: 1;
        text-align: center; }
        @media (min-width: 1200px) {
          #tmhtmlcontent_topColumn > ul > li .item-link .item-html {
            padding: 35px; } }
      #tmhtmlcontent_topColumn > ul > li .item-link:hover img {
        -moz-transform: scale(1.05, 1.05);
        -ms-transform: scale(1.05, 1.05);
        -o-transform: scale(1.05, 1.05);
        -webkit-transform: scale(1.05, 1.05);
        transform: scale(1.05, 1.05); }
    #tmhtmlcontent_topColumn > ul > li h3 {
      font: 500 24px/32px "Roboto", sans-serif;
      margin: 0; }
      @media (min-width: 768px) and (max-width: 1199px) {
        #tmhtmlcontent_topColumn > ul > li h3 {
          font-size: 20px;
          line-height: 1.2; } }
    #tmhtmlcontent_topColumn > ul > li p {
      font-size: 18px;
      margin: 0; }
      @media (min-width: 768px) and (max-width: 1199px) {
        #tmhtmlcontent_topColumn > ul > li p {
          font-size: 16px;
          line-height: 1.3; } }
    #tmhtmlcontent_topColumn > ul > li h3 + p {
      margin-top: 6px; }
    #tmhtmlcontent_topColumn > ul > li img {
      max-width: 100%;
      width: 100%;
      height: auto; }

#tmhtmlcontent_home {
  margin-top: 40px;
  margin-bottom: 20px; }
  @media (min-width: 1200px) {
    #tmhtmlcontent_home {
      margin-top: 75px;
      margin-bottom: 34px; } }
  #tmhtmlcontent_home > ul > li {
    margin-bottom: 30px; }
    #tmhtmlcontent_home > ul > li:last-child, #tmhtmlcontent_home > ul > li:nth-last-child(2) {
      margin-bottom: 0; }
    @media (max-width: 767px) {
      #tmhtmlcontent_home > ul > li:nth-child(even) {
        clear: left; } }
    @media (min-width: 768px) {
      #tmhtmlcontent_home > ul > li {
        margin-bottom: 45px; }
        #tmhtmlcontent_home > ul > li:nth-child(3n+2) {
          clear: left; }
        #tmhtmlcontent_home > ul > li:nth-last-child(3) {
          margin-bottom: 0; } }
    @media (min-width: 1200px) {
      #tmhtmlcontent_home > ul > li {
        margin-bottom: 76px; } }
    #tmhtmlcontent_home > ul > li.block-heading {
      width: 100%;
      margin-bottom: 25px; }
      @media (min-width: 1200px) {
        #tmhtmlcontent_home > ul > li.block-heading {
          margin-bottom: 42px; } }
      #tmhtmlcontent_home > ul > li.block-heading .item-html {
        padding: 0; }
      #tmhtmlcontent_home > ul > li.block-heading h3 {
        font: 500 24px/32px "Roboto", sans-serif;
        color: #20252e;
        margin: 0; }
    #tmhtmlcontent_home > ul > li .item-link {
      display: block; }
      #tmhtmlcontent_home > ul > li .item-link img {
        width: 100%;
        height: auto; }
    #tmhtmlcontent_home > ul > li > .item-link, #tmhtmlcontent_home > ul > li > .item-img {
      float: left;
      width: 30%;
      margin-right: 15px; }
      @media (min-width: 992px) {
        #tmhtmlcontent_home > ul > li > .item-link, #tmhtmlcontent_home > ul > li > .item-img {
          width: 49%;
          margin-right: 19px; } }
      @media (max-width: 479px) {
        #tmhtmlcontent_home > ul > li > .item-link, #tmhtmlcontent_home > ul > li > .item-img {
          display: none; } }
    #tmhtmlcontent_home > ul > li .item-html {
      overflow: hidden;
      padding-top: 8px;
      font-size: 16px; }
      #tmhtmlcontent_home > ul > li .item-html li a {
        color: #878787; }
        #tmhtmlcontent_home > ul > li .item-html li a:hover {
          color: #20252e; }
      #tmhtmlcontent_home > ul > li .item-html li + li {
        margin-top: 10px; }
        @media (min-width: 1200px) {
          #tmhtmlcontent_home > ul > li .item-html li + li {
            margin-top: 14px; } }
      #tmhtmlcontent_home > ul > li .item-html .link {
        margin-top: 15px; }
        @media (min-width: 1200px) {
          #tmhtmlcontent_home > ul > li .item-html .link {
            margin-top: 26px; } }
    #tmhtmlcontent_home > ul > li .item-title {
      margin: 0 0 15px;
      font-size: 18px;
      font-weight: 400; }
      @media (min-width: 1200px) {
        #tmhtmlcontent_home > ul > li .item-title {
          font-size: 20px;
          margin-bottom: 22px; } }
      #tmhtmlcontent_home > ul > li .item-title a {
        color: #20252e; }
        #tmhtmlcontent_home > ul > li .item-title a:hover {
          color: #7370b4; }

#tmhtmlcontent_footer h3 {
  font: 500 20px/32px "Roboto", sans-serif;
  margin: 0 0 8px; }
  @media (min-width: 768px) {
    #tmhtmlcontent_footer h3 {
      margin-bottom: 21px; } }
#tmhtmlcontent_footer p {
  color: #878787; }
  @media (min-width: 1600px) {
    #tmhtmlcontent_footer p {
      padding-right: 20px; } }

      /*Własny kod CSS*/
.banner-reklamowy {
  margin-top: 1em;
  margin-bottom: 1em;
}
.tmhomepagecategorygallery-block {
  position: relative;
  z-index: 1;
  width: 100%;
  clear: both; }
  .tmhomepagecategorygallery-block #tmhomepagecategorygallery {
    margin: 0; }
    .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li {
      position: relative;
      z-index: 1;
      background: white;
      height: auto;
      padding-bottom: 31.25%; }
      @media (min-width: 480px) and (max-width: 767px) {
        .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li {
          height: 240px;
          padding-bottom: 0; } }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:before {
        display: block;
        position: absolute;
        left: 50%;
        top: 0;
        right: 0;
        bottom: 0;
        content: '';
        background: #fcfcfd;
        z-index: 1; }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:after {
        display: block;
        position: absolute;
        right: 50%;
        top: 50%;
        content: '';
        width: 0;
        height: 0;
        margin-top: -8px;
        border-style: solid;
        border-width: 8.5px 9px 8.5px 0;
        border-color: transparent #fcfcfd transparent transparent;
        z-index: 1; }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li > a {
        display: block;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        right: 50%; }
        @media (min-width: 768px) {
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li > a:after {
            font-family: 'Material Icons';
            content: "\e5c4";
            display: inline-block;
            font-weight: normal;
            font-size: 40px;
            position: absolute;
            left: 100%;
            top: 50%;
            -moz-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            -o-transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            color: white;
            -moz-transition: 0.3s all ease;
            -o-transition: 0.3s all ease;
            -webkit-transition: 0.3s all ease;
            transition: 0.3s all ease;
            transition-delay: 0.1s;
            z-index: 1;
            opacity: 0; }
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li > a:before {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            background: rgba(32, 37, 46, 0.4);
            -moz-transition: 0.4s all ease;
            -o-transition: 0.4s all ease;
            -webkit-transition: 0.4s all ease;
            transition: 0.4s all ease;
            opacity: 0;
            z-index: 1; }
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li > a:hover:after {
            left: 50%;
            opacity: 1; }
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li > a:hover:before {
            opacity: 1; } }
        .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li > a img {
          position: absolute;
          top: 0;
          right: 0;
          height: 100%;
          width: auto;
          max-width: none; }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content {
        position: absolute;
        left: 50%;
        right: 0;
        top: 50%;
        padding: 30px 4%;
        -moz-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
        z-index: 2; }
        @media (min-width: 1370px) {
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content {
            padding-left: 6%;
            padding-right: 6%; } }
        @media (min-width: 1650px) {
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content {
            padding-left: 11.4%;
            padding-right: 11.4%; } }
        .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-html p {
          font-size: 16px;
          font-weight: 300;
          line-height: 1.2;
          margin: 0; }
        @media (max-width: 990px) {
            .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-html p {
              font-size: 12px!important; } }
        @media (max-width: 730px) {
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content {
              left: 0%!important; } 
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li > a {
              right:0%!important;}
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:before {
            left:0%;
            background: rgb(252, 252, 253, 0.75);
          }
            }
        .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-name {
          position: relative;
          margin: 4px 0 0;
          color: #20252e;
          padding-bottom: 8px;
          font-weight: 300;
          line-height: 1.2; }
          @media (min-width: 480px) {
            .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-name {
              font-size: 22px; } }
          @media (min-width: 1200px) {
            .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-name {
              font-size: 36px;
              padding-bottom: 19px; } }
          @media (min-width: 1360px) {
            .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-name {
              font-size: 50px; } }
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-name:before {
            display: block;
            position: absolute;
            left: 0;
            bottom: 0;
            content: '';
            width: 100px;
            border-bottom: 2px solid #e1e1e1; }
        .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-description {
          margin: 14px 0 0; }
          @media (min-width: 1200px) {
            .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-description {
              margin-top: 25px; } }
          @media (max-width: 991px) {
            .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-description {
              display: none; } }
        .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-button {
          margin-top: 25px; }
          @media (min-width: 1200px) {
            .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-button {
              min-width: 160px;
              margin-top: 35px; } }
          @media (max-width: 1199px) {
            .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-button {
              padding-top: 12px;
              padding-bottom: 12px; } }
          @media (max-width: 479px) {
            .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li .tmhomepagecategorygallery-content .tmhomepagecategorygallery-button {
              display: none; } }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:nth-child(4n + 3):before {
        background: #fbfbfb; }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:nth-child(4n + 3):after {
        border-color: transparent #fbfbfb transparent transparent; }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:nth-child(even):before {
        left: 0;
        right: 50%;
        background: #f6f8f9; }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:nth-child(even):after {
        right: auto;
        left: 50%;
        border-width: 8.5px 0 8.5px 9px;
        border-color: transparent transparent transparent #f6f8f9; }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:nth-child(even) > a {
        left: 50%;
        right: 0; }
        @media (min-width: 768px) {
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:nth-child(even) > a:after {
            content: '\e5c8';
            left: 0; }
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:nth-child(even) > a:hover:after {
            left: 50%; } }
        @media (min-width: 480px) and (max-width: 767px) {
          .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:nth-child(even) > a img {
            -moz-transform: translate(15%, 0);
            -ms-transform: translate(15%, 0);
            -o-transform: translate(15%, 0);
            -webkit-transform: translate(15%, 0);
            transform: translate(15%, 0); } }
      .tmhomepagecategorygallery-block #tmhomepagecategorygallery > li:nth-child(even) .tmhomepagecategorygallery-content {
        left: 0;
        right: 50%; }
  .tmhomepagecategorygallery-block #tmhomepagecategorygallery-nav {
    position: absolute;
    z-index: 1;
    top: 0;
    right: 15px; }
    .tmhomepagecategorygallery-block #tmhomepagecategorygallery-nav > li.current-item > a, .tmhomepagecategorygallery-block #tmhomepagecategorygallery-nav #tmhomepagecategorygallery-nav > li > a:hover {
      color: #f00; }
/**************************************************************************
		        Style TM Manufacturer Block
**************************************************************************/
#tm_manufacturers_block {
  margin-top: 50px; }
  @media (min-width: 1200px) {
    #tm_manufacturers_block {
      margin-top: 79px; } }
  #tm_manufacturers_block h4 {
    font: 500 24px/32px "Roboto", sans-serif;
    color: #20252e;
    margin: 0 0 20px; }
  #tm_manufacturers_block .manufacturers_items {
    margin-bottom: 0; }
    #tm_manufacturers_block .manufacturers_items .manufacturer_item {
      text-align: center; }
      @media (min-width: 1200px) {
        #tm_manufacturers_block .manufacturers_items .manufacturer_item {
          width: calc(100% / 9); } }
      #tm_manufacturers_block .manufacturers_items .manufacturer_item a {
        display: inline-block;
        max-width: 100%; }
        #tm_manufacturers_block .manufacturers_items .manufacturer_item a img {
          opacity: 0.35;
          -moz-transition: 0.4s all ease;
          -o-transition: 0.4s all ease;
          -webkit-transition: 0.4s all ease;
          transition: 0.4s all ease;
          will-change: opacity; }
        #tm_manufacturers_block .manufacturers_items .manufacturer_item a:hover img {
          opacity: 1; }
  #tm_manufacturers_block .bx-wrapper {
    margin: 0 auto !important; }
    #tm_manufacturers_block .bx-wrapper .manufacturers_items {
      margin: 0; }
      #tm_manufacturers_block .bx-wrapper .manufacturers_items li.caroucel_item {
        width: 25%; }
    #tm_manufacturers_block .bx-wrapper .bx-controls .bx-pager .bx-pager-link.active, #tm_manufacturers_block .bx-wrapper .bx-controls .bx-pager .bx-pager-link:hover {
      background: #777; }
    #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a {
      height: 30px;
      width: 30px;
      color: #7370b4;
      text-align: center;
      top: 50%;
      margin-top: -15px; }
      #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a:before {
        font-family: 'Material Icons';
        content: "\e5c8";
        display: inline-block;
        font-weight: normal;
        font-size: 25px;
        line-height: 30px;
        color: inherit; }
      #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a.bx-prev {
        left: 0; }
        @media (min-width: 992px) {
          #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a.bx-prev {
            left: -25px; }
            #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a.bx-prev:hover {
              left: -30px; } }
        #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a.bx-prev:before {
          content: '\e5c4'; }
      #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a.bx-next {
        right: 0; }
        @media (min-width: 992px) {
          #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a.bx-next {
            right: -25px; }
            #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a.bx-next:hover {
              right: -30px; } }
      #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a:hover {
        color: #20252e; }
      #tm_manufacturers_block .bx-wrapper .bx-controls .bx-controls-direction a.disabled {
        display: inline-block;
        color: #e1e3e4;
        cursor: default; }
#top-filter, #column-filter {
  position: relative; }
  #top-filter .loading, #column-filter .loading {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    background: #f2f9fa;
    left: 0;
    top: 0;
    opacity: 0.5; }
  #top-filter label.parameter-name, #column-filter label.parameter-name {
    font-size: 18px;
    font-weight: normal;
    color: #333333;
    margin-bottom: 15px; }
  #top-filter .select-range, #column-filter .select-range {
    overflow: hidden;
    *zoom: 1; }
    #top-filter .select-range .form-group, #column-filter .select-range .form-group {
      float: left;
      width: 50%; }
      #top-filter .select-range .form-group:first-child, #column-filter .select-range .form-group:first-child {
        padding-right: 1px; }
      #top-filter .select-range .form-group:last-child, #column-filter .select-range .form-group:last-child {
        padding-left: 1px; }

#index #top-filter {
  position: relative;
  margin-bottom: 70px;
  padding: 6.5% 6.5% 6.9%;
  background: url("themes/theme1421/img/filter-bg.jpg") no-repeat center;
  background-size: cover; }
  #index #top-filter::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(85, 190, 231, 0.65); }
  #index #top-filter .filter-info {
    display: block; }
  #index #top-filter #adv-filter {
    display: none; }
  #index #top-filter .filter-navigation {
    min-height: 79px; }
  @media (max-width: 767px) {
    #index #top-filter .filter-body {
      padding-bottom: 90px; } }
  #index #top-filter select {
    max-width: 400px; }

body:not(#index) #top-filter .filter-body {
  padding: 40px;
  max-width: none;
  background: #7370b4; }
  body:not(#index) #top-filter .filter-body .filter-content {
    display: none;
    padding-bottom: 50px; }
    body:not(#index) #top-filter .filter-body .filter-content label, body:not(#index) #top-filter .filter-body .filter-content label.parameter-name {
      color: white; }
  body:not(#index) #top-filter .filter-body .btn.result {
    padding: 15px 25px;
    -moz-box-shadow: inset 0 0 0 2px white;
    -webkit-box-shadow: inset 0 0 0 2px white;
    box-shadow: inset 0 0 0 2px white;
    color: white;
    min-width: 190px;
    bottom: 40px;
    right: 40px; }
    body:not(#index) #top-filter .filter-body .btn.result:before {
      content: "";
      position: absolute;
      z-index: -1;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      background: #20252e;
      opacity: 0;
      -moz-transform: scaleY(0);
      -ms-transform: scaleY(0);
      -o-transform: scaleY(0);
      -webkit-transform: scaleY(0);
      transform: scaleY(0);
      -moz-transition: 0.4s all ease-out;
      -o-transition: 0.4s all ease-out;
      -webkit-transition: 0.4s all ease-out;
      transition: 0.4s all ease-out; }
    body:not(#index) #top-filter .filter-body .btn.result:hover, body:not(#index) #top-filter .filter-body .btn.result:focus, body:not(#index) #top-filter .filter-body .btn.result:active {
      color: white;
      -moz-box-shadow: inset 0 0 0 2px #e1e1e1;
      -webkit-box-shadow: inset 0 0 0 2px #e1e1e1;
      box-shadow: inset 0 0 0 2px #e1e1e1; }
      body:not(#index) #top-filter .filter-body .btn.result:hover:before, body:not(#index) #top-filter .filter-body .btn.result:focus:before, body:not(#index) #top-filter .filter-body .btn.result:active:before {
        -moz-transform: scaleY(2);
        -ms-transform: scaleY(2);
        -o-transform: scaleY(2);
        -webkit-transform: scaleY(2);
        transform: scaleY(2);
        opacity: 1; }
    body:not(#index) #top-filter .filter-body .btn.result:active:focus:before, body:not(#index) #top-filter .filter-body .btn.result:active:before, body:not(#index) #top-filter .filter-body .btn.result:focus:before, body:not(#index) #top-filter .filter-body .btn.result.disabled:before, body:not(#index) #top-filter .filter-body .btn.result.btn[disabled]:before {
      background: #2a313d; }
  body:not(#index) #top-filter .filter-body.active #adv-filter {
    opacity: 0;
    visibility: hidden; }
  body:not(#index) #top-filter .filter-body.active .filter-content {
    display: block; }
body:not(#index) #top-filter .filter-navigation {
  padding: 0; }
body:not(#index) #top-filter #filter-selected-parameters {
  margin-top: -4px; }
  body:not(#index) #top-filter #filter-selected-parameters li {
    margin-top: 4px;
    margin-bottom: 0;
    border: none; }
    @media (min-width: 480px) {
      body:not(#index) #top-filter #filter-selected-parameters li {
        padding: 15px 32px 15px 15px; } }
    body:not(#index) #top-filter #filter-selected-parameters li i {
      right: 14px; }
body:not(#index) #top-filter h1 {
  display: block;
  margin: 50px 0 23px;
  font-size: 58px;
  font-weight: 300;
  color: #20252e; }
body:not(#index) #top-filter #adv-filter {
  float: right;
  padding: 15px 25px;
  -moz-box-shadow: inset 0 0 0 2px white;
  -webkit-box-shadow: inset 0 0 0 2px white;
  box-shadow: inset 0 0 0 2px white;
  color: white;
  min-width: 190px; }
  body:not(#index) #top-filter #adv-filter::before {
    background: white; }
  body:not(#index) #top-filter #adv-filter:hover {
    color: #20252e; }

#module-tmadvancedfilter-filter #center_column > .page-heading {
  display: none; }

#top-filter .form-group {
  margin-bottom: 0; }
#top-filter h1 {
  display: none; }
#top-filter h3 {
  font-size: 24px;
  font-weight: 300;
  color: white;
  margin: 0 0 13px 0;
  text-align: center; }
  @media (min-width: 768px) {
    #top-filter h3 {
      font-size: 36px; } }
  @media (min-width: 1200px) {
    #top-filter h3 {
      font-size: 58px; } }
#top-filter .filter-info {
  display: none; }
#top-filter .filter-description {
  color: white;
  font-size: 18px;
  font-weight: 300;
  text-align: center; }
#top-filter .top-filter-row {
  padding: 15px 10px 10px; }
  @media (min-width: 768px) {
    #top-filter .top-filter-row {
      padding: 20px 30px 32px; } }
  #top-filter .top-filter-row.filter-info {
    position: relative;
    padding-top: 0; }
#top-filter div.selector {
  height: 45px;
  line-height: 43px;
  border-color: #ebebeb; }
  #top-filter div.selector span {
    height: 43px;
    line-height: 43px;
    width: 100% !important; }
    #top-filter div.selector span:after {
      height: 43px;
      line-height: 43px; }
  #top-filter div.selector select {
    height: 43px; }
#top-filter .form-control {
  height: 45px;
  padding-left: 16px;
  padding-right: 16px;
  border-color: #ebebeb; }
#top-filter .filter-body {
  position: relative;
  background: white;
  max-width: 863px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 2px;
  padding: 20px 25px 25px; }
  @media (min-width: 992px) {
    #top-filter .filter-body {
      padding: 34px 50px 50px; } }
  #top-filter .filter-body .top-filter-row {
    padding: 0; }
    @media (min-width: 480px) {
      #top-filter .filter-body .top-filter-row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        align-items: center; } }
    #top-filter .filter-body .top-filter-row.filter-info {
      padding-top: 0; }
    #top-filter .filter-body .top-filter-row label.parameter-name {
      font-size: 14px;
      margin: 0 29px 0 0; }
      @media (min-width: 480px) {
        #top-filter .filter-body .top-filter-row label.parameter-name {
          min-width: 85px;
          text-align: right; }
          #top-filter .filter-body .top-filter-row label.parameter-name + div {
            flex: 1 1 auto; } }
      @media (min-width: 992px) {
        #top-filter .filter-body .top-filter-row label.parameter-name {
          min-width: 110px; } }
    #top-filter .filter-body .top-filter-row .values-list {
      font-size: 14px;
      padding: 12px 0; }
      #top-filter .filter-body .top-filter-row .values-list label {
        margin: 0; }
    #top-filter .filter-body .top-filter-row + .top-filter-row {
      margin-top: 7px; }
      @media (min-width: 480px) {
        #top-filter .filter-body .top-filter-row + .top-filter-row {
          margin-top: 2px; } }
    @media (min-width: 768px) {
      #top-filter .filter-body .top-filter-row.form-group:first-child {
        margin-top: 49px; } }
  @media (max-width: 767px) {
    #top-filter .filter-body #top-filter-layout-2 > div:last-child {
      margin-top: 2px; }
    #top-filter .filter-body div.selector {
      width: 100% !important; } }
#top-filter .filter-content button {
  position: absolute;
  left: 25px;
  bottom: 25px;
  min-width: 190px; }
  @media (max-width: 479px) {
    #top-filter .filter-content button {
      left: 50%;
      -moz-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
      -o-transform: translate(-50%, 0);
      -webkit-transform: translate(-50%, 0);
      transform: translate(-50%, 0); } }
  @media (min-width: 768px) {
    #top-filter .filter-content button {
      right: 25px;
      left: auto; } }
  @media (min-width: 992px) {
    #top-filter .filter-content button {
      right: 50px;
      bottom: 50px; } }
#top-filter .filter-navigation {
  position: relative;
  overflow: hidden;
  padding: 20px 0 0; }
  @media (min-width: 768px) {
    #top-filter .filter-navigation {
      padding-top: 31px;
      padding-right: 210px; } }

#top-filter #filter-selected-parameters {
  float: left;
  padding: 0;
  margin-bottom: 0;
  margin-top: -4px; }
  #top-filter #filter-selected-parameters li {
    position: relative;
    float: left;
    margin-right: 2px;
    margin-top: 4px;
    padding: 5px 25px 5px 10px;
    background: #fff;
    border: 2px solid #e1e1e1;
    border-radius: 2px;
    font-size: 14px;
    line-height: 20px;
    color: #252a33; }
    @media (min-width: 480px) {
      #top-filter #filter-selected-parameters li {
        padding: 12px 29px 12px 14px; } }
    #top-filter #filter-selected-parameters li i {
      position: absolute;
      right: 6px;
      top: 50%;
      margin-top: -8px;
      cursor: pointer;
      font-size: 16px;
      line-height: 1;
      color: #7370b4;
      -moz-transition: 0.3s all ease;
      -o-transition: 0.3s all ease;
      -webkit-transition: 0.3s all ease;
      transition: 0.3s all ease; }
      @media (min-width: 480px) {
        #top-filter #filter-selected-parameters li i {
          right: 10px; } }
      #top-filter #filter-selected-parameters li i:hover {
        color: #20252e; }

#index #top-filter {
  margin-bottom: 0; }

#column-filter .column-filter-row {
  padding: 20px 30px 20px;
  margin-bottom: 10px;
  background: #f6f6f6; }
  #column-filter .column-filter-row.filter-info {
    padding-top: 0; }
#column-filter #filter-selected-parameters {
  padding: 8px;
  background: #f6f6f6; }
  #column-filter #filter-selected-parameters li {
    overflow: hidden;
    width: 100%;
    margin-bottom: 5px; }
    #column-filter #filter-selected-parameters li i {
      float: right;
      padding-left: 5px;
      cursor: pointer; }
      #column-filter #filter-selected-parameters li i:hover {
        color: #f00; }
