/*!
Video.js Default Styles (http://videojs.com)
Version 4.6.4
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 occurances 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('/wp-content/themes/CHRiiZdesign_V26.1/js/videojs/font/vjs.eot');
  src: url('/wp-content/themes/CHRiiZdesign_V26.1/js/videojs/font/vjs.eot?#iefix') format('embedded-opentype'), url('/wp-content/themes/CHRiiZdesign_V26.1/js/videojs/font/vjs.woff') format('woff'), url('/wp-content/themes/CHRiiZdesign_V26.1/js/videojs/font/vjs.ttf') format('truetype');
  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 hightlight 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;
}
/* 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;
}
/* FontAwsome 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-menu-button .vjs-menu-content {
  height: 2.9em;
}
.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;
}
.vjs-default-skin .vjs-volume-menu-button .vjs-menu .vjs-menu-content {
  width: 6em;
  left: -4em;
}
/* 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 {
  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.4);
}
.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;
  top: 50%;
  margin-top: -0.5em;
  width: 100%;
}
.vjs-error-display div {
  position: absolute;
  font-size: 1.4em;
  text-align: center;
  bottom: 1em;
  right: 1em;
  left: 1em;
}
.vjs-error-display a,
.vjs-error-display a:visited {
  color: #F4A460;
}
/* Loading Spinner
--------------------------------------------------------------------------------
*/
.vjs-loading-spinner {
  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;
  /* 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 in the case of an error */
.video-js.vjs-error .vjs-loading-spinner {
  /* using !important flag because currently the loading spinner
     uses hide()/show() instead of classes. The !important can be
     removed when that's updated */

  display: none !important;
  /* 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-menu {
  display: block;
}
.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";
}
/* 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 vertially 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;
  cursor: pointer;
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  width: 100%;
}
.vjs-poster img {
  display: block;
  margin: 0 auto;
  max-height: 100%;
  padding: 0;
  width: 100%;
}
/* 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 {
  text-align: center;
  position: absolute;
  bottom: 4em;
  /* Leave padding on left and right */
  left: 1em;
  right: 1em;
}
/* Move captions down when controls aren't being shown */
.video-js.vjs-user-inactive.vjs-playing .vjs-text-track-display {
  bottom: 1em;
}
/* Individual tracks */
.video-js .vjs-text-track {
  display: none;
  font-size: 1.4em;
  text-align: center;
  margin-bottom: 0.1em;
  /* Transparent black background, or fallback to all black (oldIE) */
  /* background-color-with-alpha */
  background-color: #000000;
  background-color: rgba(0, 0, 0, 0.5);
}
.video-js .vjs-subtitles {
  color: #ffffff /* Subtitles are white */;
}
.video-js .vjs-captions {
  color: #ffcc66 /* Captions are yellow */;
}
.vjs-tt-cue {
  display: block;
}
/* Hide disabled or unsupported controls */
.vjs-default-skin .vjs-hidden {
  display: none;
}
.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: 20px;
  color: #ccc;
  background-color: #333;
  font-size: 18px;
  font-family: Arial, sans-serif;
  text-align: center;
  width: 300px;
  height: 150px;
  margin: 0px 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 */
/* Magnific Popup CSS */
.mfp-bg {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1042;
  overflow: hidden;
  position: fixed;
  background: #6a6a6a;
  opacity: 0.98;
  filter: alpha(opacity=98);
  background: #585858;
  background: rgba(94, 94, 94, 0.98);
}

.mfp-wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1043;
  position: fixed;
  outline: none !important;
  -webkit-backface-visibility: hidden; }

.mfp-container {
  text-align: center;
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  padding: 0 8px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.mfp-container:before {
  content: '';
  display: inline-block;
  height: 100%;
  vertical-align: middle; }

.mfp-align-top .mfp-container:before {
  display: none; }

.mfp-content {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0 auto;
  text-align: left;
  z-index: 1045; }

.mfp-inline-holder .mfp-content, .mfp-ajax-holder .mfp-content {
  width: 100%;
  cursor: auto; }

.mfp-ajax-cur {
  cursor: progress; }

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  cursor: -moz-zoom-out;
  cursor: -webkit-zoom-out;
  cursor: zoom-out; }

.mfp-zoom {
  cursor: pointer;
  cursor: -webkit-zoom-in;
  cursor: -moz-zoom-in;
  cursor: zoom-in; }

.mfp-auto-cursor .mfp-content {
  cursor: auto; }

.mfp-close, .mfp-arrow, .mfp-preloader, .mfp-counter {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none; }

.mfp-loading.mfp-figure {
  display: none; }

.mfp-hide {
  display: none !important; }

.mfp-preloader {
  text-indent: -999999px;
}

.mfp-s-ready .mfp-preloader {
  display: none; }

.mfp-s-error .mfp-content {
  display: none; }

button.mfp-close, button.mfp-arrow {
  overflow: visible;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
  display: block;
  outline: none;
  padding: 0;
  z-index: 1046;
  -webkit-box-shadow: none;
  box-shadow: none; }
button::-moz-focus-inner {
  padding: 0;
  border: 0; }

.mfp-close {
  width: 44px;
  height: 44px;
  line-height: 44px;
  position: absolute;
  right: 0;
  top: 0;
  text-decoration: none;
  text-align: center;
  opacity: 0.65;
  filter: alpha(opacity=65);
  padding: 0 0 18px 10px;
  color: white;
  font-style: normal;
  font-size: 28px;
  font-family: Arial, Baskerville, monospace; }
  .mfp-close:hover, .mfp-close:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-close:active {
    top: 1px; }

.mfp-close-btn-in .mfp-close {
  color: #333333; }

.mfp-image-holder .mfp-close, .mfp-iframe-holder .mfp-close {
  color: white;
  right: -6px;
  text-align: right;
  padding-right: 6px;
  width: 100%; }

.mfp-counter {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  font-size: 13px;
  line-height: 18px; }

.mfp-arrow {
  position: absolute;
  opacity: 0.65;
  filter: alpha(opacity=65);
  margin: 0;
  top: 50%;
  margin-top: -55px;
  padding: 0;
  width: 90px;
  height: 110px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0); }
  .mfp-arrow:active {
    margin-top: -54px; }
  .mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
    filter: alpha(opacity=100); }
  .mfp-arrow:before, .mfp-arrow:after, .mfp-arrow .mfp-b, .mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent; }
  .mfp-arrow:after, .mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px; }
  .mfp-arrow:before, .mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7; }

.mfp-arrow-left {
  left: 0; }
  .mfp-arrow-left:after, .mfp-arrow-left .mfp-a {
    border-right: 17px solid white;
    margin-left: 31px; }
  .mfp-arrow-left:before, .mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f; }

.mfp-arrow-right {
  right: 0; }
  .mfp-arrow-right:after, .mfp-arrow-right .mfp-a {
    border-left: 17px solid white;
    margin-left: 39px; }
  .mfp-arrow-right:before, .mfp-arrow-right .mfp-b {
    border-left: 27px solid #3f3f3f; }

.mfp-iframe-holder {
  padding-top: 40px;
  padding-bottom: 40px; }
  .mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px; }
  .mfp-iframe-holder .mfp-close {
    top: -40px; }

.mfp-iframe-scaler {
  width: 100%;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%; }
  .mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: black; }

/* Main image in popup */
img.mfp-img {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 40px 0 40px;
  margin: 0 auto; }

/* The shadow behind the image */
.mfp-figure {
  line-height: 0; }
  .mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    background: #444444; }
  .mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px; }
  .mfp-figure figure {
    margin: 0; }

.mfp-bottom-bar {
  margin-top: -36px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  cursor: auto; }

.mfp-title {
  text-align: left;
  line-height: 18px;
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  word-wrap: break-word;
  padding-right: 36px;
  font-weight: 400;
}

.mfp-image-holder .mfp-content {
  max-width: 100%; }

.mfp-gallery .mfp-image-holder .mfp-figure {
  cursor: pointer; }

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
  /**
       * Remove all paddings around the image on small screen
       */
  .mfp-img-mobile .mfp-image-holder {
    padding-left: 0;
    padding-right: 0; }
  .mfp-img-mobile img.mfp-img {
    padding: 0; }
  .mfp-img-mobile .mfp-figure:after {
    top: 0;
    bottom: 0; }
  .mfp-img-mobile .mfp-figure small {
    display: inline;
    margin-left: 5px; }
  .mfp-img-mobile .mfp-bottom-bar {
    background: rgba(0, 0, 0, 0.6);
    bottom: 0;
    margin: 0;
    top: auto;
    padding: 3px 5px;
    position: fixed;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; }
    .mfp-img-mobile .mfp-bottom-bar:empty {
      padding: 0; }
  .mfp-img-mobile .mfp-counter {
    right: 5px;
    top: 3px; }
  .mfp-img-mobile .mfp-close {
    top: 0;
    right: 0;
    width: 35px;
    height: 35px;
    line-height: 35px;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    text-align: center;
    padding: 0; } }

@media all and (max-width: 900px) {
  .mfp-arrow {
    -webkit-transform: scale(0.75);
    transform: scale(0.75); }
  .mfp-arrow-left {
    -webkit-transform-origin: 0;
    transform-origin: 0; }
  .mfp-arrow-right {
    -webkit-transform-origin: 100%;
    transform-origin: 100%; }
  .mfp-container {
    padding-left: 6px;
    padding-right: 6px; } }

.mfp-ie7 .mfp-img {
  padding: 0; }
.mfp-ie7 .mfp-bottom-bar {
  width: 600px;
  left: 50%;
  margin-left: -300px;
  margin-top: 5px;
  padding-bottom: 5px; }
.mfp-ie7 .mfp-container {
  padding: 0; }
.mfp-ie7 .mfp-content {
  padding-top: 44px; }
.mfp-ie7 .mfp-close {
  top: 0;
  right: 0;
  padding-top: 0; }


.mfp-with-zoom .mfp-container,
.mfp-with-zoom.mfp-bg {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  /* ideally, transition speed should match zoom duration */
  -webkit-transition: all 0.3s ease-out; 
  -moz-transition: all 0.3s ease-out; 
  -o-transition: all 0.3s ease-out; 
  transition: all 0.3s ease-out;
}

.mfp-with-zoom.mfp-ready .mfp-container {
    opacity: 1;
}
.mfp-with-zoom.mfp-ready.mfp-bg {
    opacity: 0.8;
}

.mfp-with-zoom.mfp-removing .mfp-container, 
.mfp-with-zoom.mfp-removing.mfp-bg {
  opacity: 0;
}
/*** ESSENTIAL STYLES ***/
.sf-menu, .sf-menu * {
	margin: 0;
	padding: 0;
	list-style: none;
}
.sf-menu li {
	position: relative;
}
.sf-menu ul {
	position: absolute;
	display: none;
	right: 0;
	z-index: 99;
	top:55px;
}
.sf-menu > li {
	display: inline-block;
}
.sf-menu li:hover > ul,
.sf-menu li.sfHover > ul {
	display: block;
}

.sf-menu a {
	display: block;
	position: relative;
}
.sf-menu ul ul {
	top: 0;
	right: 100%;
}


/*** DEMO SKIN ***/
.sf-menu {
}
.sf-menu ul {
}
.sf-menu a {
	text-decoration: none;
}
.sf-menu a {
	color: #fff;
    display: block;
	font-size: 13px;
	font-weight: 600;
    letter-spacing: 0.5px;
    padding: 11px 18px;
    text-transform: uppercase;
}
.sf-menu ul li a {
	font-weight: 500;
}
.sf-menu li {
	-webkit-transition: background .2s;
	transition: background .2s;
}
.sf-menu ul li {
	
}
.sf-menu ul ul li {
}
.sf-menu li:hover,
.sf-menu li.sfHover {
	/* only transition out, not in */
	-webkit-transition: none;
	transition: none;
}


/*** adding the class sf-navbar in addition to sf-menu creates an all-horizontal nav-bar menu ***/
.sf-navbar {
	background: transparent;
	position: relative;
	margin: 0;
	width: 100%;
	text-align: right;
}
/* provide background colour for submenu strip */
/* you should just set the menu's container bg colour rather than use pseudo-elements */
.sf-navbar:before {
	content: '';
	position: absolute;
	left: 0;
	z-index: -1;
	background-color: transparent;
	height: 200%;
	width: 100%;
}
.sf-navbar ul {
	box-shadow: none;
}
.sf-navbar li {
	position: static;
}
.sf-navbar > li > a,
.sf-navbar > li > ul > li > a {
	border: none;
}
.sf-navbar > li > ul {
	text-align: right;
}
.sf-navbar ul li {
	border-top:1px solid rgba(255,255,255,0.05);
	border-right:1px solid rgba(255,255,255,0.05);
	background: rgba(34,34,34,0.95);
	position: relative;
	margin-bottom: 3px;
}
.sf-navbar ul ul li {
	margin-bottom: 0;
}
.sf-navbar ul ul {
	right: 0;
	top: 100%;
}
.sf-navbar ul ul li {
	width: 100%;
}
.sf-navbar > li > ul > li {
	display: inline-block;
	text-align: right;
	margin-left: -4px;
}
.sf-navbar > li > ul > li > ul > li {
	white-space: nowrap; /* no need for Supersubs plugin */
}
body .main-menu-wrap .homemenu .sf-navbar > li > ul > li a,
body .main-menu-wrap .homemenu .top-menu .sf-navbar > li > ul > li a:hover {
	color:#dadada;
}
.sf-navbar li.current {
	background: #BDD2FF;
}
.sf-navbar li:hover,
.sf-navbar li.sfHover,
.sf-navbar ul li.current {
}
.sf-navbar ul li:hover,
.sf-navbar ul li.sfHover,
.sf-navbar ul ul li {
	background: rgba(70,70,70,0.95);
}
.sf-navbar ul ul li:hover,
.sf-navbar ul ul li.sfHover,
.sf-navbar ul ul li.current {
	background: rgba(80,80,80,0.95);
}
.sf-navbar ul li.current > a {
}
.sf-navbar ul li.current-menu-item {
	background: rgba(70,70,70,0.95);
}
.homemenu {
	position: absolute;
	top:13px;
	right:120px;
	width: 90%;
}
.home-regular-menu {
	width: auto;
}
.home-regular-menu .sf-menu li {
	position: relative;
	white-space: normal;
}
.home-regular-menu .sf-menu ul li {
	width: 200px;
}
.home-regular-menu .sf-menu ul ul {
    left: auto;
    right: 200px;
    top: -1px;
}
.home-regular-menu .sf-menu ul li a {
    padding-bottom: 6px;
    padding-top: 6px;
}
.home-regular-menu .sf-navbar > li > ul > li {
    text-align: left;
}
.home-regular-menu .sf-menu ul li a {
	font-size: 12px;
    text-transform: none;
}
.home-regular-menu .sf-menu ul li {
	margin-bottom: 0;
}
.home-regular-menu .sf-navbar > li > ul > li {
	margin-left: 0;
}
.home-regular-menu .sf-navbar ul li {
	border-top:1px solid rgba(255,255,255,0.03);
	border-right:0;
}

/*** arrows (for all except IE7) **/
/* styling for both css and generated arrows */
.sf-arrows .sf-with-ul:after {
	content: '';
	position: absolute;
	font-family: 'FontAwesome';
	content: "\f078";
	font-size: 3px;
	right: 12px;
	top: 17px;
}
.header-menu-wrap .sf-arrows .sf-with-ul:after {
	font-family: 'FontAwesome';
	content: "\f078";
}
.sf-arrows > li > .sf-with-ul:focus:after,
.sf-arrows > li:hover > .sf-with-ul:after,
.sf-arrows > .sfHover > .sf-with-ul:after {
	border-top-color: #000; /* IE8 fallback colour */
}
/* styling for right-facing arrows */
.sf-arrows ul .sf-with-ul:after {
	top:16px;
	right:11px;
	font-family: 'FontAwesome';
	content: "\f078";
}
.sf-arrows ul li > .sf-with-ul:focus:after,
.sf-arrows ul li:hover > .sf-with-ul:after,
.sf-arrows ul .sfHover > .sf-with-ul:after {
}
.responsive-menu-wrap {
	display: none;
}
.mobile-menu-toggle {
	background:#303030;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	text-align: center;
	position: relative;
	z-index: 100;
	height:48px;
}
.logo-mobile img {
	height:20px;
	position: relative;
	top:16px;
}
.mobile-menu-icon {
	position:absolute;
	float:right;
	left:0;
	top:0;
	height:48px;
	width:48px;
	line-height: 48px;
	text-align: center;
	cursor: pointer;
	background:#303030;
	color:#fff;
}
.mobile-menu-icon {
	font-size: 18px;
}
.responsive-mobile-menu {
	background:#303030;
	color:#000;
	width:280px;
	padding-bottom: 50px;
	position: fixed;
	left:-280px;
	top:0;
	float:left;
	z-index: 999;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    transition: all 0.3s ease;
    overflow-y:scroll;
    -webkit-overflow-scrolling: touch;
    height:100%;
}
.responsive-mobile-menu .mobile-menu {
	padding:10px 20px 60px;
	text-align: center;
}
.responsive-mobile-menu #s {
	margin:5px;
}
.responsive-mobile-menu #searchform {
	padding: 25px 0 0 35px;
}
.responsive-mobile-menu #searchform i {
	color:#fff;
}
.responsive-mobile-menu #searchform input {
    width: 150px;
	text-indent: 20px;
	background:#fff;
	color:#000;
	font-weight: 400;
	font-size:11px;
}
.responsive-mobile-menu #searchbutton {

}
.responsive-mobile-menu ul li a {
	padding-bottom:15px;
}
.responsive-mobile-menu ul li a {
	font-size:12px;
	color:#fff;
	font-weight: bold;
	letter-spacing: 0.5px;
	display:block;
	padding: 1px 10px;
	margin-top:10px;
	text-transform: uppercase;
}
.responsive-mobile-menu ul li ul.children-depth-0 a {
	font-size:14px;
	font-weight: normal;
	margin-top:0;
	padding:2px 20px;
	color:#a6a6a6;
	background:none;
}
.responsive-mobile-menu li.menu-item-has-children a {
	border-bottom: 1px solid #3c3939;
	font-weight: bold;
	padding-bottom: 10px;
}
.responsive-mobile-menu ul.sub-menu li a {
	color:#a6a6a6;
	letter-spacing: 0;
	font-weight: 600;
	display:block;
	margin-top:0;
	border-top:0;
	padding-top:6px;
	padding-bottom: 6px;
}
.responsive-mobile-menu .megamenu-textbox {
	font-size:11px;
	line-height:20px;
	color:#eee;
	padding: 2px 20px 20px 20px;
}
.responsive-mobile-menu h6 {
	color:#fff;
	padding:0 0 10px 20px;
	margin:0;
	font-size:14px;
	margin-top:20px;
}
.responsive-mobile-menu ul.sub-menu {
	margin-bottom: 20px;
}
.responsive-mobile-menu li {
	display:block;
}
.responsive-mobile-menu ul li a:hover,
.responsive-mobile-menu li.menu-item-has-children a:hover {
}.flexslider-container-page .flexslider {
	overflow: hidden;
}
.flexslider-container-page ul,
.flexslider-container-page ul li {
	margin:0;
	padding:0;
}
.sc_slideshowtitle {
    color: #000;
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    padding: 20px 0;
    text-align: center;
    width: 100%;
}


.portfolio-element .flexslider-container-page li,
ul.portfolio-list li .flexslider-container-page li,
ul.portfolio-one li .flexslider-container-page li,
ul.portfolio-two li .flexslider-container-page li,
ul.portfolio-three li .flexslider-container-page li,
ul.portfolio-four li .flexslider-container-page li {
	width:auto;
	height:auto;
	padding: 0;
 	margin: 0;
}

.portfolio-element li .flex-direction-nav,
ul.portfolio-list li .flex-direction-nav,
ul.portfolio-one li .flex-direction-nav,
ul.portfolio-two li .flex-direction-nav,
ul.portfolio-three li .flex-direction-nav,
ul.portfolio-four li .flex-direction-nav {
	width:35px;
	height:70px;
	padding: 0;
 	margin: 0;
	position:absolute;
	right:0;
	z-index:90;
}

.portfolio-element li .flex-control-nav,
ul.portfolio-list li .flex-control-nav,
ul.portfolio-one li .flex-control-nav,
ul.portfolio-two li .flex-control-nav,
ul.portfolio-three li .flex-control-nav,
ul.portfolio-four li .flex-control-nav {
	width:auto !important;
	height:auto !important;
	z-index:90;
}

.portfolio-element li .flexslider-container-page .flex-direction-nav li a.next,
ul.portfolio-list li .flexslider-container-page .flex-direction-nav li a.next,
ul.portfolio-one li .flexslider-container-page .flex-direction-nav li a.next,
ul.portfolio-two li .flexslider-container-page .flex-direction-nav li a.next,
ul.portfolio-three li .flexslider-container-page .flex-direction-nav li a.next,
ul.portfolio-four li .flexslider-container-page .flex-direction-nav li a.next {
	left: 5px;
	top:5px;
	}
.portfolio-element li .flexslider-container-page .flex-direction-nav li a.prev,
ul.portfolio-list li .flexslider-container-page .flex-direction-nav li a.prev,
ul.portfolio-one li .flexslider-container-page .flex-direction-nav li a.prev,
ul.portfolio-two li .flexslider-container-page .flex-direction-nav li a.prev,
ul.portfolio-three li .flexslider-container-page .flex-direction-nav li a.prev,
ul.portfolio-four li .flexslider-container-page .flex-direction-nav li a.prev {
	left: 5px;
	top:34px;
	}
.portfolio-element li .flexslider-container-page .flex-direction-nav li a,
ul.portfolio-list li .flexslider-container-page .flex-direction-nav li a,
ul.portfolio-one li .flexslider-container-page .flex-direction-nav li a,
ul.portfolio-two li .flexslider-container-page .flex-direction-nav li a,
ul.portfolio-three li .flexslider-container-page .flex-direction-nav li a,
ul.portfolio-four li .flexslider-container-page .flex-direction-nav li a { 
	margin:0;
	}

.portfolio-grid-element .flexslider-container-page .flex-control-nav,
.portfolio-element .flexslider-container-page .flex-control-nav {
	display:none;
}
.portfolio-grid-element .flexslider-container-page .flex-direction-nav,
.portfolio-element .flexslider-container-page .flex-direction-nav {
	display:none;
}

.portfolio-element .flexslider-container-page {
}
ul.portfolio-four .flexslider-container-page {
}

ul.portfolio-three .flexslider-container-page {
	height: 190px;
}

ul.portfolio-two .flexslider-container-page {
	height: 285px;
}

ul.portfolio-one li .flexslider-container-page {
    min-height: 100px;
}

ul.portfolio-list li .flexslider-container-page {
    height: 195px;
}

.flexslider-container-page { 
	width: 100%;
	margin: 0 auto;
	}
.portfolio-grid-element .flexslider-container-page,
.portfolio-element .flexslider-container-page {
	background-image:url(/wp-content/themes/CHRiiZdesign_V26.1/images/preloaders/circle-spinner.png);
}

.entry-content-wrapper .flexslider-container-page {
	min-height: 50px;
	}
.entry-content .flexslider-container-page {
	min-height:50px;
}

/* FlexSlider Necessary Styles
*********************************/ 
.flexslider-container-page  {width: 100%; margin: 0; padding: 0;  }
.flexslider-container-page .slides li {display: none; list-style-type:none;} /* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider-container-page .slides img {
	max-width: 100%;
	margin: 0 auto;
	display: block;
	}


/* FlexSlider Default Theme
*********************************/
.flexslider-container-page {position: relative;}
.flexslider-container-page .slides li {position: relative; }
.flexslider-container-page .slides li a { border:none; }
/* Suggested container for "Slide" animation setups. Can replace this with your own, if you wish */
.flexslider-container-page .flexslider-container-page {position: relative;}


/* Caption style */
.flexslider-container-page .flex-caption { width: 97%; padding: 1% 2%; position: absolute; left: 0; bottom: 0; background:#000; background: rgba(0,0,0,.6); filter: alpha(opacity=60);text-align:center; color: #fff; font-size: 12px; line-height: 18px;}

/* Direction Nav */
.flexslider-container-page .flex-direction-nav { list-style-type:none; }
.flexslider-container-page .flex-direction-nav li a {
	width: 40px;
	height: 40px;
	display: block;
	border:none;
	background-image: url(/wp-content/themes/CHRiiZdesign_V26.1/images/flexislider/bg_direction_nav_page.png);
	background-repeat: no-repeat;
	background-color: rgba(0,0,0,0.1);
	background-position: 0 0;
	position: absolute;
	z-index:5;
	cursor: pointer;
	text-indent: -9999px;
		transition: all 0.2s;
		-moz-transition: all 0.2s;
		-webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
	} /* set negative margin-top equal to half the height on the directional-nav for perfect vertical centering */
.flexslider-container-page .flex-direction-nav li a.flex-next {
	background-position: -40px 0;
	right: 0;
	}
.flexslider-container-page .flex-direction-nav li a.flex-prev {
	background-position: 0 0;
	right: 40px;
	}
.flexslider-container-page .flex-direction-nav li a.flex-next,
.flexslider-container-page .flex-direction-nav li a.flex-prev  {
    top: 0;
}
.ajax-gridblock-image-wrap .flexslider-container-page .flex-direction-nav li a.flex-next,
.ajax-gridblock-image-wrap .flexslider-container-page .flex-direction-nav li a.flex-prev {

}
.flexslider-container-page .flex-direction-nav:hover li a { 
		transition: all 0.2s;
		-moz-transition: all 0.2s;
		-webkit-transition: all 0.2s;
		-o-transition: all 0.2s;
		background-color:rgba(0,0,0,0.5);
}
.flexslider-container-page .flex-direction-nav li a:hover {
	background-color:#000;
}
/* Control Nav */
.flexslider-container-page .flex-control-nav { 
	list-style-type:none; position: absolute;
	top: 10px;
	left: 0;
	width:100%;
	z-index:80;
	text-align: center;
	display:none;
	} /* set negative margin-left equal to half the width on the control-nav for perfect centering */
.entry-content .flexslider-container-page .flex-control-nav { 
	margin-bottom: 0;
}
.testimonials-wrap .flexslider-container-page .flex-control-nav {
	background:transparent;
	}
.flexslider-container-page .flex-control-nav li {margin: 0; display:inline-block; text-align: center;}
.flexslider-container-page .flex-control-nav li:first-child {margin: 0;}
.flexslider-container-page .flex-control-nav li a {
	width: 13px;
	height: 13px;
	display: block;
	border:none;
	background: url(/wp-content/themes/CHRiiZdesign_V26.1/images/flexislider/bg_control_nav.png) no-repeat 0 0;
	cursor: pointer;
	text-indent: -9999px;
	}
.flexslider-container-page .flex-control-nav li a:hover {background-position: 0 -13px;}
.flexslider-container-page .flex-control-nav li a.flex-active {background-position: 0 -26px; cursor: default;}

.flexslider-container-page {
	overflow: hidden;
}
.flexslider-container-page .slides li {
}


.jp-title {
    background: #84888C;
    color:#fff;
    font-size:10px;
    font-weight: 500;
    letter-spacing: 1px;
    text-align: center;
    padding: 15px 0 0 0;
}

.jp-title ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.jp-gui {
	position: relative;
    background: #84888C;
	overflow: hidden;
}

.jp-jplayer, .jp-audio {
    width: 100%;
    max-width: 100%;
    line-height: 0;
}

.jplayer-shortcode h3 {
    font-size:11px;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}
.jp-controls,
.entry-content ul.jp-controls {
    padding: 0;
    margin: 0;
    list-style: none;
    font-family: "FontAwesome";
}

.jp-controls li {
    display: inline;
}

.jp-controls a,
.entry-content .jp-controls a {
    color: #fff;
}

.jp-play,.jp-pause {
    width: 60px;
    height: 40px;
    display: inline-block;
    text-align: center;
    line-height: 40px;
    border-right: 1px solid #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.jp-controls .jp-play:hover,.jp-controls .jp-pause:hover {
    background-color: #555;
}

.jp-mute,.jp-unmute {
    position: absolute;
    right: 55px;
    top: -1px;
    width: 20px;
    height: 40px;
    display: inline-block;
    line-height: 43px;
}

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

.jp-volume-bar {
    position: absolute;
    right: 10px;
    top: 20px;
    width: 45px;
    height: 2px;
    background-color: #a6a6a6;
    overflow: hidden;
}
.jp-volume-bar:hover {
    cursor: pointer;
}
.jp-volume-bar-value {
    background-color: #fff;
    height: 2px;
}

.jp-progress {
    background-color: #a6a6a6;
    border-radius: 20px 20px 20px 20px;
    overflow: hidden;
    position: absolute;
    left: 74px;
    top: 19px;
    width: 60%;
}

.jp-play-bar {
    height: 2px;
    background-color: #fff;
}
.jp-progress:hover {
    cursor: pointer;
}

.jp-time-holder {
    color: #FFF;
    font-size: 10px;
    line-height: 12px;
    position: absolute;
    right: 90px;
    top: 14px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.3);
}



.fullscreenslideshow-audio {
	position: fixed;
	bottom:50px;
	right:0;
}

.fullscreenslideshow-audio .jp-interface { }
.fullscreenslideshow-audio .jp-audio div.jp-type-single div.jp-interface { background:none; height: 35px; width:35px;}
.fullscreenslideshow-audio .jp-audio {position:absolute; bottom:0; right:5px; z-index:10; }
.fullscreenslideshow-audio .jp-volume-bar { width:40px; }
.fullscreenslideshow-audio .jp-audio div.jp-type-single div.jp-volume-bar { top: 15px; left: 36px; }
.fullscreenslideshow-audio .jp-controls a {
	color:#fff;
}
.fullscreenslideshow-audio .jp-play,
.fullscreenslideshow-audio .jp-pause {
    border: 0;
    bottom: -5px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    position: absolute;
    right: 70px;
    text-align: center;
    width: 60px;
    background: none;
}
.fullscreenslideshow-audio .jp-play:hover,
.fullscreenslideshow-audio .jp-pause:hover {
    background: none;
}

.fullscreenslideshow-audio {
		transition: all 0.5s;
		-moz-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
	opacity: 0;
}
body:hover .fullscreenslideshow-audio {
		transition: all 0.5s;
		-moz-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
	opacity:0.7;
}
body .fullscreenslideshow-audio:hover {
		transition: all 0.5s;
		-moz-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
	opacity: 1;
}

.background-slideshow-controls {
	display:none;
}
a.jp-mute {
	background:none;
}
a.jp-mute:after{
	
}body {
    color:#9C9C9C;
    background-color:#000;
}

.fullpage-contents-wrap,
.sc_slideshowtitle,
.entry-page-wrapper,
.mtheme_portfolio .container,
.portfolio-content-column,
.contents-wrap,
.woocommerce #container,
.archive-page-wrapper {
    background: #000;
    background: rgba(0, 0, 0, 0.85);
}
.fullwidth-theme .container-fullwidth {
    background: #000;
    background: rgba(0, 0, 0, 0.85);
}
.fullwidth-theme .recent-portfolio-single .item-title {
    color:#fff;
}
.person {
    background-color: #000;
    background: rgba(47, 47, 47, 0.5);
}
.person i {
    color:#fff;
}
.person i:hover {
    color:#aaa;
}
a {
    color:#a9a9a9;
}
a:hover {
    color:#fff;
}
.pagination-navigation {
    border-color: #252525;
    }
.entry-content {
    color: #aaaaaa;
    }
.entry-content a:hover {
    color: #fff;
}

.entry-title {
    background: #000;
    background: rgba(0, 0, 0, 0.85);
}
.entry-title h1,
.entry-title h2 {
    border-color: #232323;
    border-color: rgba(255, 255, 255, 0.1);
}
.entry-title h1,
.entry-title h2 {
    color: #eee;
}
.entry-content .readmore_link a {
    color: #bcbcbc;
}

.ajax-gridblock-data h2 a {
    color: #fff;
    }
a.ajax-navigation-arrow i {
    color: #fff;
}
.ajax-loading {
    border-top: 4px solid rgba(255, 255, 255, 0.2);
    border-right: 4px solid rgba(255, 255, 255, 0.2);
    border-bottom: 4px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #ffffff;
}
.flexslider-loader {
    border-top: 4px solid rgba(255, 255, 255, 0.2);
    border-right: 4px solid rgba(255, 255, 255, 0.2);
    border-bottom: 4px solid rgba(255, 255, 255, 0.2);
    border-left: 4px solid #ffffff;
}

.postsummarywrap i {
    color:#fff;
}
.page-link {
    color:#fff;
}
.page-link a {
    background: #373737;
    color: #000000;
    padding: 2px 7px
}
.entry-content-wrapper .sticky {
    border-color: #2F2F2F;
    }
#goto-top {
    border-color: #444444;
    color:#fcfcfc;
    }
.skillbar {
    background: rgba(255, 255, 255, 0.1);
}
.project-details-link i {
    color: #fff;
}

.gridblock-four .work-details,
.gridblock-three .work-details,
.gridblock-two .work-details,
.gridblock-one .work-details  {
    border-color: #262626;
}

    .post-single-tags a {
        background-color: #111;
        border-color: #000;
    }
    .post-single-tags,
    .post-single-tags a {
        color: #888888;
    }
    .entry-content blockquote {
        background: #212121;
    }

#contactform #contact label {
    color:#fff;
}

.entry-content a,
.header-search,
.gridblock-four h4 a,
.gridblock-three h4 a,
.gridblock-two h4 a,
.gridblock-one h4 a,
.gridblock-list h4 a,
.toggle-shortcode-wrap .active,
.toggle-shortcode-wrap .toggle-shortcode:hover,
.project-details a,
.post-single-tags a:hover,
.post-meta-category a:hover,
.post-single-meta a:hover,
.post-navigation a:hover,
.sidebar ul li a:hover,
.entry-post-title h2 a:hover,
.comment-reply-title small a {
    color: #fff;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.readmore_link a:hover {
    color:#fff;
}
.entry-content .fullpage-block h6 {
    color:#aaa;
    }

.entry-content .blogpost_readmore a {
    color:#aaa;
}
.entry-content .blogpost_readmore a:hover {
    color:#fff;
}

.entry-content .postlist ul li a {
    color:#ababab;
}
.entry-content .postlist ul li a:hover {
    color:#fff;
}

.entry-content table,
.entry-content table tbody td,
.entry-content table th,
.entry-content table td {
    border-color: #333;
}

/*
Sidebar Styles*/

.sidebar-wrapper {
    background: #000;
    background: rgba(31, 31, 31, 0.9);
    }
.sidebar .widget {
    border-color: #232323;
    border-color: rgba(150, 150, 150, 0.1);
}

.sidebar-wrap ,.sidebar-wrap-single {
}
.sidebar {
    color:#aaa;
}

.sidebar h3,
#searchform i {
    color:#fff;
}
.sidebar ul li a,
#searchform input,
.postsummarywrap {
    border-color: #2B2B2B;
}
.sidebar .mtheme-tweets .tweet_list li a {
    color:#6a6a6a;
}
#recentposts_list .recentpost_info .recentpost_title:hover,
#popularposts_list .popularpost_info .popularpost_title:hover  {
    color: #fff;
    }


#wp-calendar tbody td,
#wp-calendar tfoot tr td  {
    border-color: #2D2D2D;
}

.tagcloud a,
#footer .tagcloud a { 
    background:#333;
}
/*
Blog Slideshow*/

.sc_slideshowtitle {
    border-color: #333333;
    color: #bababa;
}

.recent-portfolio-single {
    background: rgba(60, 60, 60, 0.7);
    }

#gridblock-filter-select,
ul.portfolio-share {
    border-color: #3A3A3A;
    color:#fff;
    }
.portfolio-share li a {
    border-color:#444;
}
#gridblock-filter-select:hover {
    color:#fff;
}
#gridblock-filters {
    color:#fff;
}
#gridblock-filters li a {
    color:#fff;
    }
#gridblock-filters:hover li a {
    color:#777;
}
#gridblock-filters li .is-active,
#gridblock-filters li a:focus,
#gridblock-filters a:focus,
#gridblock-filters li .is-active,
#gridblock-filters li .is-active:hover {
    color:#fff;
}
#gridblock-filters a:hover,
#gridblock-filters li a:hover,
#gridblock-filters li a:hover span {
    color: #fff;
    border-color:#fff;
}
#gridblock-filters li a {
    border-bottom: 1px solid #222222;
    }



.mbutton span {
    color: #FFFFFF;
}
.button-text-white .button-icon {
    color:#fff;
}

/*
Related Carousel*/
.recent-single-carousel-wrap {
    }
.gridblock-carousel-wrap .next,
.gridblock-carousel-wrap .prev {
    color: #FFFFFF;
}

    .grid-blank-status {
        background: rgba(55,55,55,0.5);
    }
    .gridblock-element:hover .grid-blank-status {
        background: rgba(55,55,55,0.9);
    }
    .grid-blank-element .grid-blank-status i {
        color: #fff;
    }
    .summary-info .summary-comment a {
        color: #a9a9a9;
    }

.grid-blank-status {
    }
.gridblock-protected i {
    color: #fff;
}
.gridblock-protected {
}
/*
Social
*/
.portfolio-share li:hover i {
    color: #fff;
}
/*
Navigations*/
.portfolio-nav-item i:hover {
    color: #eee;
}

/*To Top Link*/

.entry-content .hrule {
    border-color: #222222;
    }


/*
Portfolio*/

ul.vertical_images .vertical-images-title {
    color: #8F8F8F;
    }

/*Password
*/
#password-protected label {
    color: #F8F8F8;
    }
#password-protected input {
    background:#444;
    border-color:#4a4a4a;
    color:#fff;
}
        #password-protected input[type="submit"]:hover {
            color: #fff;
            border-color:#aaa;
        }
        #password-protected input[type="submit"]:active {
            color: #fff;
            border-color:#aaa;
        }
/*
Pricing Table*/
.pricing-column {
    background: #252525;
}
.pricing-table .pricing-title {
    color: #E8E8E8;
    }

.pricing-table .pricing-price {
    color: #FFFFFF;
}
.pricing-table .pricing-duration {
    color: #000;
    background-color:#fff;
    }
.pricing-table .pricing-row {
    background: #363636;
    border-bottom: 1px solid #454545;
    }
.pricing_highlight .pricing-column {
    background: #515151;
}
.pricing-table .pricing_highlight .pricing-row {
    background: #4A4A4A;
    color:#fff;
}


/*
Blog*/
.entry-content .hrule.top a {
    background: #292929;
    color:#aaa;
}
.entry-content .hrule.top a:hover {
    color:#fff;
}
.summary-info {
    border-color:#222;
}

/*
Comments*/
#commentform label {
    color: #fff;
    }

ol.commentlist li {
    background: #000000;
}
ol.commentlist li.even {
     background: #333;
     border-color:#3a3a3a;
}
ol.commentlist li.odd {
    background: #444;
    border-color:#4a4a4a;
}
#comments {
    color: #e3e3e3;
    }
ol.commentlist li .comment-author,
ol.commentlist li .comment-author a,
ol.commentlist li .comment-author .fn {
    color: #fff;
}
ol.commentlist li .comment-author .fn {
    color: #BFBFBF;
}
ol.commentlist li p {
    color: #A3A3A3;
}
ol.commentlist li .comment-meta a {
    color: #9C9C9C;
    }
ol.commentlist li .reply a {
    color: #D6D6D6;
    border-color:#fff;
}
ol.commentlist li .comment-author .fn a {
    color: #fff;
}
#respond h3 {
    color: #fff;
    }
#commentform input#submit {
    color: #eee;
}
#contactform .button, #commentform input#submit {
    border-color:#fff;
}
#contactform .button:hover,
#commentform input#submit:hover,
ol.commentlist li .reply a:hover,
#respond #commentform input#submit:hover {
    border-color: #fff;
    background-color: #fff;
    color: #000;
}
/*
Pagination*/

.pagination:after {
}
.pagination span.current,
.pagination-info {
    color:#fff;
}
.pagination a {
}
.pagination a:link,
.pagination .navigation-single,
.pagination span.current,
ol.commentlist li .reply a,
.pagination a:visited {
    color: #FFFFFF;
    outline: 0 none;
}
.navigation a:active,
.navigation a:hover {
    color: #fff;
}

/*
Callout*/
.callout {
    border: 1px solid #454545;
}

/*
Slideshow Shortcodes*/
.slideshow-box-content {
    border-color: #2D2D2D;
}
.slideshow-box-content .slideshow-box-title a {
    color: #FFFFFF;
}

/*
Staff Shortcode*/

.person {
    border-color: #292929;
    }
.person:hover {
    border-color: #444;
    }
.person h3, .entry-content .person h3 {
    color: #FFFFFF;
}
.person h4, .entry-content .person h4 {
    color: #BEBEBE;
    }


/*
Testimonials*/

.client-image {
    background: #555555;
    border: 1px solid #222;
    }

.client-say {
    border-color: #3D3D3D;
}
.testimonials-wrap .flexslider-container-page .flex-direction-nav li a {
    background-color: #eee;
    }
.testimonials-wrap #flex-testimonails .flex-direction-nav li a:hover {
    background-color: #aaa;
    }
.client-name {
    color: #fff;
}
.testimonials-wrap .flexslider-container-page .flex-direction-nav li a {
    background-color: #000000;
}

/*
Thumbnails*/
.thumbnails-shortcode .work-details h4 {
    color:#ddd;
}

/*
Accordions */
.wp-accordion {
}
.ui-accordion-header.ui-state-default a {
    color: #D0D0D0;
    }
    .ui-accordion-header.ui-state-default a:hover {
    color:#fff;
    }
.wp-accordion h3.ui-state-active {
    }
.wp-accordion h3 {
    border-top-color: #2D2D2D;
}
    .wp-accordion h3:hover {
        background:#555;
    }
.ui-accordion-content {
    background: #343434;
    border-color:#343434;
}
    .ui-accordion-header-icon {
    background: url(/wp-content/themes/CHRiiZdesign_V26.1/images/icons/accordion-toggle-bright.png) no-repeat 5px 0;
    }
    .ui-state-active .ui-accordion-header-icon  {
    background: url(/wp-content/themes/CHRiiZdesign_V26.1/images/icons/accordion-toggle-bright.png) no-repeat 5px -24px;
    }

.wp-accordion h3 a,
.ui-accordion-header.ui-state-default a {
    background: #1a1a1a;
}
/*
Tabs*/
.ui-tabs .ui-tabs-panel,
.ui-tabs .ui-tabs-nav .ui-state-active a,
.ui-tabs .ui-tabs-nav .ui-state-active a:hover {
    background: #3C3C3C;
    }
.ui-tabs .ui-tabs-nav .ui-state-active a, .ui-tabs .ui-tabs-nav .ui-state-active a:hover {
    color:#fff;
}
.ui-tabs .ui-tabs-nav li a {
    background-color: #222;
}
.ui-tabs .ui-tabs-nav li a:hover {
    color:#eee;
}
.ui-tabs .ui-tabs-panel {
    border-color:#2c2c2c;
}
.ui-tabs .ui-tabs-nav li a:hover{
    color:#000;
    background: #555;
    }
.ui-tabs-vertical,
.ui-tabs-vertical ul{
    background: #3c3c3c;
}
.ui-tabs-vertical .ui-tabs-nav li a {
    border-color:#000;
}
.ui-tabs-vertical .ui-tabs-nav .ui-state-active a,
.ui-tabs-vertical .ui-tabs-nav .ui-state-active a:hover {
}
.ui-tabs-vertical .ui-tabs-panel { 
    border:0;
}

.ui-tabs .tab-contents {
    background: #3e3e3e;
    }

/*
Toggle*/
.entry-content h3.toggle-shortcode:hover{
    color:#fff;
}

/*
Drop Cap*/
.entry-content .dropcap2 {
    background: #6A6A6A;
}
/*
Contact Forms*/

#contact .button,#commentform input#submit,
.wpcf7-form input[type="button"],
.wpcf7-form input[type="submit"],
.wpcf7-form input[type="reset"] {
    color: #fff;
    border-color:#fff;
}
.wpcf7-form p {
    color:#aaa;
}
#contact .button:hover,
.wpcf7-form input[type="button"]:hover,
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form input[type="reset"]:hover {
    color: #000;
    border-color:#fff;
    background: #fff;
    cursor:pointer;
}
/*
Address*/

.contact_address_block .contact_phone:before,
.contact_address_block .contact_mobile:before,
.contact_address_block .contact_email:before,
.contact_address_block .contact_name:before {
    color:#fff;
    }
/*
Search*/
#searchform input {
    border-color: #3E3E3E;
}

.portfolio_widget_about,
.portfoliorelated_widget_about {
    color:#A5A7AE;
}

ul.gridblock-listbox .gridblock-listbox-row .grid-blank-status i {
    color:#fff;
}
ul.gridblock-listbox .gridblock-listbox-row {
    border-bottom-color: #2c2c2c;
    }

/*
Widget Thumbnails*/

.sidebar .infobar-portfoliogrid li img,
.footer-widget .infobar-portfoliogrid li img {
    border-color: #000000;
    }

#recentposts_list li, #popularposts_list li {
    border-bottom-color: #2d2d2d;
}

.footer-container-wrap,
.footer-container {
    background:#000;
}
#footer h3 {
    color:#fff;
}
.footer-widget ul li,
.footer-widget #recentposts_list li,
.footer-widget #popularposts_list li {
    border-color: #282828;
    }
#footer a:hover {
    color:#fff;
}

table {
    border-color: #282828;
}

/*
WooCommerce*/

.woocommerce.single-product .related {
    border-top: 1px solid #212121;
}

.woocommerce-breadcrumb a {
    color: #8f8f8f !important;
    }

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-2 {
    background: #000;
    background: rgba(0,0,0,0.4);
    }

.woocommerce table.cart td.actions,
.woocommerce #content table.cart td.actions,
.woocommerce-page table.cart td.actions,
.woocommerce-page #content table.cart td.actions,
.woocommerce table.shop_table thead {
}

.woocommerce .widget_shopping_cart .total,
.woocommerce-page .widget_shopping_cart .total,
.woocommerce-page.widget_shopping_cart .total,
.woocommerce.widget_shopping_cart .total {
    border-color: #373737;
    }
.woocommerce #content input.button,
.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce-page #content input.button,
.woocommerce-page #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
    border-color: #555;
}
.sidebar .woocommerce .widget_shopping_cart_content {
    border-color: #282828;
}
.woocommerce ul.product_list_widget li {
    border-color: #212121;
    }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border-color:#2a2a2a;
}
.woocommerce ul.products li.product h3, .woocommerce-page ul.products li.product h3 {
    color: #fff;
    }
.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    color: #fff !important;
    }
.woocommerce a.button,
.woocommerce-page a.button,
.woocommerce button.button,
.woocommerce-page button.button,
.woocommerce input.button,
.woocommerce-page input.button,
.woocommerce #respond input#submit,
.woocommerce-page #respond input#submit,
.woocommerce #content input.button,
.woocommerce-page #content input.button {
    color:#dcdcdc !important;
}
.woocommerce a.button:hover,
.woocommerce-page a.button:hover,
.woocommerce button.button:hover,
.woocommerce-page button.button:hover,
.woocommerce input.button:hover,
.woocommerce-page input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page #respond input#submit:hover,
.woocommerce #content input.button:hover,
.woocommerce-page #content input.button:hover {
    color:#fff !important;
}
.woocommerce div.product span.price,
.woocommerce div.product p.price,
.woocommerce #content div.product span.price,
.woocommerce #content div.product p.price,
.woocommerce-page div.product span.price,
.woocommerce-page div.product p.price,
.woocommerce-page #content div.product span.price,
.woocommerce-page #content div.product p.price {
    color:#fff !important;
}
.woocommerce #content nav.woocommerce-pagination ul li a:focus,
.woocommerce #content nav.woocommerce-pagination ul li a:hover,
.woocommerce #content nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,
.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
.woocommerce-page #content nav.woocommerce-pagination ul li span.current,
.woocommerce-page nav.woocommerce-pagination ul li a:focus,
.woocommerce-page nav.woocommerce-pagination ul li a:hover,
.woocommerce-page nav.woocommerce-pagination ul li span.current {
    color:#fff !important;
}

.woocommerce-pagination {
    border-top:1px solid #303030;
}

.mtheme-woo-order-selected {
    border-color:#3a3a3a;
    color: #FFFFFF;
    }
.mtheme-woo-order-selected:hover {
    color:#fff;
}
.mtheme-woo-order-selected-wrap i {
    color:#fff;
}
.mtheme-woo-order-list ul {
    background:#323232;
}
.mtheme-woo-order-list ul li {
    border-color: #2c2c2c;
    }

.woocommerce div.product .product_title,
.woocommerce #content div.product .product_title,
.woocommerce-page div.product .product_title,
.woocommerce-page #content div.product .product_title,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li a {
    color:#fff !important;
    text-shadow:none !important;
}

.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce #content div.product .woocommerce-tabs .panel,
.woocommerce-page div.product .woocommerce-tabs .panel,
.woocommerce-page #content div.product .woocommerce-tabs .panel,
.woocommerce div.product .woocommerce-tabs ul.tabs:before,
.woocommerce #content div.product .woocommerce-tabs ul.tabs:before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs:before,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li:after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:before,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li:after {
    border-color:#3a3a3a !important;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li {
    background:#3a3a3a !important;
}
.woocommerce #content div.product .woocommerce-tabs ul.tabs li {
    border-color: #3a3a3a !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li.active,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li.active,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li.active {
    background:#555 !important;
}

.woocommerce .quantity .plus,
.woocommerce .quantity .minus,
.woocommerce #content .quantity .plus,
.woocommerce #content .quantity .minus,
.woocommerce-page .quantity .plus,
.woocommerce-page .quantity .minus,
.woocommerce-page #content .quantity .plus,
.woocommerce-page #content .quantity .minus {
    background: #777 !important;
    color:#fff !important;
}
.woocommerce .quantity .plus:hover,
.woocommerce .quantity .minus:hover,
.woocommerce #content .quantity .plus:hover,
.woocommerce #content .quantity .minus:hover,
.woocommerce-page .quantity .plus:hover,
.woocommerce-page .quantity .minus:hover,
.woocommerce-page #content .quantity .plus:hover,
.woocommerce-page #content .quantity .minus:hover {
    background-color: #aaa !important;
}

.woocommerce .quantity input.qty,
.woocommerce #content .quantity input.qty,
.woocommerce-page .quantity input.qty,
.woocommerce-page #content .quantity input.qty {
    border-color: #6a6a6a !important;
    background:#000 !important;
    box-shadow: none !important;
    color:#fff !important;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text {
    border-color: #2C2C2C !important;
    }
.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta strong,
.woocommerce-page #reviews #comments ol.commentlist li .comment-text p.meta strong {
    color:#fff !important;
}

.woocommerce-breadcrumb {
    color: #FFFFFF !important;
}

.woocommerce .woocommerce-message .button {
    color:#777 !important;
}
.woocommerce .woocommerce-message .button:hover {
    color:#000 !important;
}

.woocommerce table.shop_table th,
.woocommerce-page table.shop_table th {
    color: #fff;
}
.woocommerce .shop_table .product-name,
.woocommerce .shop_table .product-price,
.woocommerce .shop_table .product-subtotal {
    color: #ffffff;
    }

.woocommerce table.shop_table td,
.woocommerce-page table.shop_table td {
    border: none !important;
}
.woocommerce table.cart th,
.woocommerce table.cart td,
.woocommerce #content table.cart th,
.woocommerce #content table.cart td,
.woocommerce-page table.cart th,
.woocommerce-page table.cart td,
.woocommerce-page #content table.cart th,
.woocommerce-page #content table.cart td {
    color:#fff;
}

.shop_table .cart_table_item {
    padding: 20px 0;
}
.woocommerce .shop_table .even {
    background:#222;
}
.woocommerce .shop_table .odd {
    background:#333;
}
.woocommerce .cart_totals strong {
    color:#aaa;
}
.woocommerce .cart_totals h2 {
    color: #fff;
    }

.woocommerce .related h2,
.woocommerce .upsells h2,
.woocommerce .cross-sells h2 {
    color: #fff;
}
.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
    border-color: #2F2F2F !important;
    }

.woocommerce .checkout_table_item {
    background: #303030;
}
.woocommerce .checkout_table_item .product-quantity {
    color:#fff;
}
.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th,
.woocommerce-page table.shop_table tfoot td,
.woocommerce-page table.shop_table tfoot th {
    border:0 !important;
}
.woocommerce ul.products li.product h3,
.woocommerce-page ul.products li.product h3 {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
.woocommerce-page table.shop_table strong {
    color:#fff;
}
.woocommerce #payment, .woocommerce-page #payment {
    background: #4E4E4E !important;
    }
.woocommerce #payment ul.payment_methods, .woocommerce-page #payment ul.payment_methods {
    border-bottom: 1px solid #333 !important;
}
.woocommerce #payment div.form-row, .woocommerce-page #payment div.form-row {
    border-top: 1px solid #555 !important;
}
.woocommerce #payment .payment_methods li label{
    color:#fff !important;
}
.woocommerce .woocommerce-info a {
    color:#444;
}
.woocommerce .woocommerce-info a {
    color:#000;
}
.woocommerce table th,
.woocommerce table td {
    color: #fff;
}
.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
    border-top: 5px solid #fff;
    }
.woocommerce .shipping-calculator-button {
    border: 1px solid #aaa;
    color: #aaa;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
    color: #fff;
}
.woocommerce form .form-row textarea,
.woocommerce-page form .form-row textarea {
    height: 185px !important;
    }

.woocommerce table.shop_table,
.woocommerce-page table.shop_table {
    border-radius:0 !important;
}
.woocommerce table.shop_table thead {
}
.woocommerce .cart-collaterals .cart_totals tr td,
.woocommerce .cart-collaterals .cart_totals tr th,
.woocommerce-page .cart-collaterals .cart_totals tr td,
.woocommerce-page .cart-collaterals .cart_totals tr th {
    border-top: 1px solid #454345 !important;
}
.woocommerce #content nav.woocommerce-pagination ul li a:focus,
.woocommerce #content nav.woocommerce-pagination ul li a:hover,
.woocommerce #content nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:focus,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce-page #content nav.woocommerce-pagination ul li a:focus,
.woocommerce-page #content nav.woocommerce-pagination ul li a:hover,
.woocommerce-page #content nav.woocommerce-pagination ul li span.current,
.woocommerce-page nav.woocommerce-pagination ul li a:focus,
.woocommerce-page nav.woocommerce-pagination ul li a:hover,
.woocommerce-page nav.woocommerce-pagination ul li span.current {
    background: #000;
    color:#fff;
}
.woocommerce nav.woocommerce-pagination ul li,
.woocommerce #content nav.woocommerce-pagination ul li,
.woocommerce-page nav.woocommerce-pagination ul li,
.woocommerce-page #content nav.woocommerce-pagination ul li {
    border-color:#222 !important;
}
.woocommerce table.shop_table thead th,
.woocommerce-page table.shop_table thead th {
    border-bottom: 1px solid #ffffff !important;
}

.woocommerce #order_review table.shop_table,
#order_review .woocommerce-page table.shop_table {
    border-color: #fff !important;
}

.woocommerce .mtheme-woocommerce-description-wrap .add_to_cart_button:after {
    color:#fff;
}
.woocommerce p.stars a:hover {
    color:#fff !important;
}
    .woocommerce-breadcrumb a:hover {
        color:#fff !important;
    }

.woocommerce ul.products li.product .price .from,
.woocommerce-page ul.products li.product .price .from,
.woocommerce ul.products li.product .price del,
.woocommerce-page ul.products li.product .price del {
    color: #ddd !important;
}
.woocommerce table.variations td {
    color:#fff;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    background: rgba(65, 65, 65, 0.5);
    }
.mtheme-woocommerce-description-wrap-last {
}
.woocommerce #content div.product div.summary,
.woocommerce div.product div.summary,
.woocommerce-page #content div.product div.summary,
.woocommerce-page div.product div.summary,
.woocommerce div.product .woocommerce-tabs .panel,
.woocommerce #content div.product .woocommerce-tabs .panel,
.woocommerce-page div.product .woocommerce-tabs .panel,
.woocommerce-page #content div.product .woocommerce-tabs .panel {
    background: rgba(44, 44, 44, 0.5);
    }
.woocommerce .mtheme-woocommerce-description-wrap:hover .add_to_cart_button:after,
.woocommerce .mtheme-woocommerce-description-wrap:hover .add_to_cart_button {
    color:#fff !important;
}


.sidebar .woocommerce .widget_shopping_cart_content {
    background: #1f1f1f;
}

.person-socials {
    border-color:#333333;
}

.postsummarywrap {
    }
.donutcounter-item,
.time-count-data {
    color:#fff;
}

ul.portfolio-share {
    border-color: #2F2F2F;
}


#gridblock-filter-select {
    border-color: #696969;
    }

#gridblock-filter-select:hover,
.mtheme-woo-order-selected:hover {
    border-color: #eee;
    }
.top-bar-wrap {
    background: #292929;
}
.social-header-wrap ul li.social-icon:hover i {
}
#copyright {
}

.client-position:after,
.client-position:before {
    background: #eee;
    }

#recentposts_list .recentpost_info .recentpost_title,
#popularposts_list .popularpost_info .popularpost_title {
    color: #ddd;
    }

.divider-line {
    border-top:1px solid #4F4F4F;
}
.divider-double {
    border-top:3px double #4F4F4F;
}
.divider-stripes {
    background-image: url(/wp-content/themes/CHRiiZdesign_V26.1/images/darkskin/dividers/stripes.png);
}
.divider-thinfade {
background: -moz-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%, rgba(255,255,255,0) 90%); /* FF3.6+ */
background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,rgba(255,255,255,1)), color-stop(90%,rgba(255,255,255,0))); /* Chrome,Safari4+ */
background: -webkit-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 90%); /* Chrome10+,Safari5.1+ */
background: -o-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 90%); /* Opera 12+ */
background: -ms-radial-gradient(center, ellipse cover,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 90%); /* IE10+ */
background: radial-gradient(ellipse at center,  rgba(255,255,255,1) 0%,rgba(255,255,255,0) 90%); /* W3C */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#00ffffff',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}
.divider-threelines {
    border-top:3px double #4F4F4F;
    border-bottom:1px solid #4F4F4F;
}
.divider-circleline {
    background-image: url(/wp-content/themes/CHRiiZdesign_V26.1/images/darkskin/dividers/circleline.png);
}
.divider-stripedcenter {
    background-image: url(/wp-content/themes/CHRiiZdesign_V26.1/images/darkskin/dividers/stripedcenter.png);
}
.divider-linedcenter {
    background-image: url(/wp-content/themes/CHRiiZdesign_V26.1/images/darkskin/dividers/linedcenter.png);
}

.shopping-bag-header-link {
    background-image: url(/wp-content/themes/CHRiiZdesign_V26.1/images/icons/shopping_bag_white.png);
}

.entry-content .entry-post-title h2 a:hover,
.quote_author {
    color:#fff;
}

#commentform-section,
.commentform-wrap {
    background: #252525;
    }
h4#comments {
    color: #FFFFFF;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6,
.person h3,
.entry-content .person h3,
.client-position,
.pagination-info {
    color: #fff;
}


.gridblock-four h4 a,
.gridblock-three h4 a,
.gridblock-two h4 a,
.gridblock-one h4 a,
.gridblock-list h4 a,
.header-search:hover,
.social-header-wrap ul li i,
.social-header-wrap ul li.social-icon,
.social-header-wrap ul li.contact-text,
.social-header-wrap ul li.contact-text i,
.social-header-wrap ul li.contact-text a,
.postsummarywrap a,
.sidebar a,
.portfolio-share li a,
.min-search .icon-search,
.header-shopping-cart a i,
.header-shopping-cart a,
ul.gridblock-listbox .work-details h4 a,
.woocommerce ul.products li.product h3,
.woocommerce-page ul.products li.product h3 {
    color:#C6C6C6;
}
.gridblock-four .work-description,
.gridblock-three .work-description,
.gridblock-two .work-description,
.gridblock-one .work-description {
    color: #828282;
    }

.entry-content .highlight {
    color: #171717;
}

    .social-header-wrap ul li.contact-text a:hover,
    .postsummarywrap a:hover,
    .client-company a:hover,
    .portfolio-share li a:hover,
    .woocommerce ul.products li.product h3:hover,
    .woocommerce-page ul.products li.product h3:hover,
    .woocommerce .product_meta a:hover,
    .min-search .icon-search:hover,
    .entry-content .entry-post-title h2 a,
    .ajax-gridblock-data h2 a:hover,
    ul.gridblock-listbox .work-details h4 a:hover,
    .gridblock-filter-select-text {
        color:#fff;
    }


.gridblock-gallery-preloader {
  border-top: 5px solid rgba(255, 255, 255, 0.2);
  border-right: 5px solid rgba(255, 255, 255, 0.2);
  border-bottom: 5px solid rgba(255, 255, 255, 0.2);
  border-left: 5px solid #aaa;
}
/*

	Supersized - Fullscreen Slideshow
	
*/
#supersized-loader {}
.single-mtheme_featured #supersized-loader {}
#supersized {  display:block; position:fixed; left:0; top:0; overflow:hidden; z-index:-999; height:100%; width:100%; }
.page-is-fullscreen #supersized {
	z-index:0;
}
	#supersized img { width:auto; height:auto; position:relative; display:none; outline:none; border:none; }
		#supersized.speed img { -ms-interpolation-mode:nearest-neighbor; image-rendering: -moz-crisp-edges; }	/*Speed*/
		#supersized.quality img { -ms-interpolation-mode:bicubic; image-rendering: optimizeQuality; }			/*Quality*/
	
	#supersized li { display:block; list-style:none; z-index:-30; position:fixed; overflow:hidden; top:0; left:0; width:100%; height:100%; background:#111; }
	#supersized a { width:100%; height:100%; display:block; }
		#supersized li.prevslide { z-index:-20; }
		#supersized li.activeslide { z-index:-10; }
		#supersized li.image-loading { background:#111 url(/wp-content/themes/CHRiiZdesign_V26.1/images/supersized/fullscreen_loader.png) no-repeat center center; width:100%; height:100%; }
			#supersized li.image-loading img{ visibility:hidden; }
		#supersized li.prevslide img, #supersized li.activeslide img{ display:inline; }


#slidecounter
{
	color: #999;
	float: left;
	font-size: 14px;
	line-height: 42px;
	margin: 0px 10px 0 15px;
	text-shadow: #000 0 -1px 0;
}
#slidecaption,
#static_slidecaption {
	display: block;
	text-align: center;
	width:100%;
	left: 0;
	bottom: 0;
	margin: 0;
	position: fixed;
	z-index: 1;
}
.slideshow_content_wrap {
	padding: 50px 50px 68px;
}
.slideshow_title,
.static_slideshow_title {
	color:#fff;
	display: block;
	font-size: 72px;
	font-weight: 400;
	letter-spacing: -1px;
	line-height: 60px;
	margin: 0;
	padding: 0;
	position: relative;
	top:50px;
}
.static_slideshow_title {
	top:0;
}
.slideshow_text_shift_up {
	padding-bottom: 150px;
}
.slideshow_caption,
.static_slideshow_caption {
	color: #fff;
	color: rgba(255,255,255,0.8);
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	letter-spacing: 0.6px;
	line-height: 22px;
	margin: 20px 0 0;
	padding-top: 20px;
	position: relative;
	width: 640px;
	border-top:1px solid #fff;
	border-top:1px solid rgba(255,255,255,0.1);
	padding-bottom: 180px;
	min-height: 66px;
}
.slideshow_caption p,
.static_slideshow_caption p {
	margin:0;
}
.slideshow_caption a,
.static_slideshow_caption a {
	color:#fff;
	}
.slideshow_caption a:hover,
.static_slideshow_caption a:hover {
	}
.slideshow_content_link,
.static_slideshow_content_link {
	padding-top:50px;
}	
.slideshow_content_link a,
.static_slideshow_content_link a {
	color:#fff;
	padding: 10px 20px;
	border: 1px solid #fff;
	font-size:11px;
	text-transform: uppercase;
	letter-spacing: 2px;
	margin-bottom: 30px;
	display: inline-block;
	background:rgba(255,255,255,0);
	border-radius: 30px;
	font-weight: 600;
}
.slideshow_content_link a:hover,
.static_slideshow_content_link a:hover {
	background:rgba(255,255,255,1);
	color:#000;
	transition: all 0.4s;
	-moz-transition: all 0.4s;
	-webkit-transition: all 0.4s;
	-o-transition: all 0.4s;
}
#navigation
{
	float: right;
	margin: 0px 20px 0 0;
}
#play-button{
	color: #FFFFFF;
	font-size: 14px;
	line-height: 42px;
	position: relative;
	right: -1px;
	top: 60px;
	z-index: 99;
}
#play-button:hover
{
	background-position: 0 1px;
	cursor: pointer;
	opacity: 1;
}
.super-navigation
{
	bottom: 50%;
	height: 92px;
	position: fixed;
	right: 0;
	width: 100%;
	z-index: 100;
		transition: all 0.5s;
		-moz-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
}
#prevslide,
#nextslide {
	color:#fff;
	height: 45px;
	opacity: 0.5;
	position: absolute;
	width: 45px;
	border-radius: 70px;
	line-height: 45px;
	text-align: center;
	font-size: 50px;
	z-index: 99;
}
#prevslide {
    bottom: 0;
    left: 50px;
}
#nextslide
{
	bottom: 0;
	right: 50px;
}
#controls-wrapper {
}
#controls {
	bottom: 50%;
	line-height: 22px;
	position: fixed;
	right: 67px;
	z-index: 5;
}
#prevslide:active, #nextslide:active
{
}
#prevslide:hover, #nextslide:hover
{
	cursor: pointer;
}
ul#slide-list
{
	float: left;
	left: 50%;
	padding: 15px 0;
	position: absolute;
}
ul#slide-list li
{
	float: left;
	height: 12px;
	list-style: none;
	margin: 0 5px 0 0;
	width: 12px;
}
ul#slide-list li.current-slide a, ul#slide-list li.current-slide a:hover
{
	background-position: 0 0px;
}
ul#slide-list li a
{
	background: url('/wp-content/themes/CHRiiZdesign_V26.1/images/supersized/nav-dot.png') no-repeat 0 -24px;
	display: block;
	height: 12px;
	width: 12px;
}
ul#slide-list li a:hover
{
	background-position: 0 -12px;
	cursor: pointer;
}
#tray-button
{
	float: right;
	margin-right: 50px;
	opacity: 0.6;
}
#tray-button:hover
{
	background-position: 0 1px;
	cursor: pointer;
	opacity: 1;
}
#progress-back
{
	bottom: 0;
	height: 2px;
	left: 0;
	position: fixed;
	width: 100%;
	z-index: 100;
	opacity: 0.5;
}
#progress-bar
{
	background: #fff;
	border-top:1px solid #000;
	height: 6px;
	position: relative;
	width: 100%;
}
#nextthumb,#prevthumb
{
	background: #ddd;
	border: 1px solid #fff;
	bottom: 61px;
	display: none;
	height: 75px;
	overflow: hidden;
	position: fixed;
	webkit-box-shadow: 0 0 5px #000;
	width: 100px;
	z-index: 2;
}
#nextthumb
{
	right: 12px;
}
#prevthumb
{
	left: 12px;
}
#nextthumb img, #prevthumb img
{
	height: auto;
	width: 150px;
}
#nextthumb:active, #prevthumb:active
{
	bottom: 59px;
}
#nextthumb:hover, #prevthumb:hover
{
	cursor: pointer;
}
#thumb-tray
{
	bottom: 0;
	height: 160px;
	left: 0;
	overflow: hidden;
	position: fixed;
	text-align: center;
	width: 100%;
	z-index: 3;
}
#thumb-back, #thumb-forward
{
	bottom: 42px;
	height: 108px;
	position: absolute;
	width: 40px;
	z-index: 5;
}
#thumb-back
{
	background: url('/wp-content/themes/CHRiiZdesign_V26.1/images/supersized/thumb-back.png') no-repeat center center;
	left: 0;
}
#thumb-forward
{
	background: url('/wp-content/themes/CHRiiZdesign_V26.1/images/supersized/thumb-forward.png') no-repeat center center;
	right: 0;
}
#thumb-back:hover, #thumb-forward:hover
{
	background-color: rgba(256,256,256, 0.1);
	cursor: pointer;
}
#thumb-back:hover
{
	border-right: 1px solid rgba(256,256,256, 0.2);
}
#thumb-forward:hover
{
	border-left: 1px solid rgba(256,256,256, 0.2);
}
ul#thumb-list
{
	display: inline-block;
	left: 0px;
	list-style: none;
	padding: 0 0px;
	position: relative;
}
ul#thumb-list li
{
	
	display: inline;
	float: left;
	list-style: none;
	margin: 0;
	margin-right: 5px;
	margin-top: 8px;
	overflow: hidden;
	width: 60px;
	height: 60px;
	border: 2px solid rgba(255,255,255,1);
	-webkit-box-shadow: -1px -1px 4px rgba(0, 0, 0, 0.85);
	-moz-box-shadow:    -1px -1px 4px rgba(0, 0, 0, 0.85);
	box-shadow:         -1px -1px 4px rgba(0, 0, 0, 0.85);

	-webkit-border-radius: 55px;
	-moz-border-radius: 55px;
	border-radius: 55px;
	z-index:999;

}
ul#thumb-list li img
{
	height: auto;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease;
	width: 60px;
	height: 60px;	
	-webkit-border-radius: 55px;
	-moz-border-radius: 55px;
	border-radius: 55px;
	opacity:1;

}
ul#thumb-list li.current-thumb img, ul#thumb-list li:hover img
{
	filter: alpha(opacity=100);
	ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease;
}
ul#thumb-list li.current-thumb
{
	border: 2px solid rgba(255,255,255,1);
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease;
}
ul#thumb-list li:hover
{
	border: 2px solid rgba(155,155,155,1);
	cursor: pointer;
	-webkit-transition: all 0.2s ease-in;
	-moz-transition: all 0.2s ease-in;
	transition: all 0.2s ease;
}
body:hover #controls,
body:hover #controls{
	opacity:0.7;
		transition: all 0.5s;
		-moz-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
}
#controls,
#controls {
	opacity:0;
		transition: all 0.5s;
		-moz-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
}
body:hover #prevslide,
body:hover #nextslide{
	opacity:0.7;
		transition: all 0.5s;
		-moz-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
}
#prevslide,
#nextslide {
	opacity:0;
		transition: all 0.5s;
		-moz-transition: all 0.5s;
		-webkit-transition: all 0.5s;
		-o-transition: all 0.5s;
}
body #prevslide:hover,
body #nextslide:hover,
body:hover #controls:hover {
	opacity:1;
}

.background-slideshow-controls {
	display:none;
}

#slideshow-data,#nav-thumbflip .next, #nav-thumbflip .prev { display:none; }


/*
Since version 1.3.2
*/

.super-navigation {
    position: static;
}
#prevslide, #nextslide {
	 position:fixed;
	 bottom: 50%;
}
/* ----------------------------------
IE Specific
----------------------------------- *//*! Generated by Font Squirrel (https://www.fontsquirrel.com) on March 17, 2018 */



@font-face {
    font-family: 'crimson';
    src: url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/crimson-webfont.woff2') format('woff2'),
         url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/crimson-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'raleway';
    src: url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/raleway-webfont.woff2') format('woff2'),
         url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/raleway-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'fontawesome';
    src: url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/fontawesome-webfont.woff2') format('woff2'),
         url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/fontawesome-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}/*! Generated by Font Squirrel (https://www.fontsquirrel.com) on March 17, 2018 */



@font-face {
    font-family: 'crimson';
    src: url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/crimson-webfont.woff2') format('woff2'),
         url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/crimson-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'raleway';
    src: url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/raleway-webfont.woff2') format('woff2'),
         url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/raleway-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}




@font-face {
    font-family: 'fontawesome';
    src: url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/fontawesome-webfont.woff2') format('woff2'),
         url('/wp-content/themes/CHRiiZdesign_V26.1/css/font_eigen/eigen/fontawesome-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;

}/*!
 *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
/* FONT PATH
 * -------------------------- */
@font-face {
  font-family: 'FontAwesome';
  src: url('/wp-content/themes/CHRiiZdesign_V26.1/css/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0');
  src: url('/wp-content/themes/CHRiiZdesign_V26.1/css/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('/wp-content/themes/CHRiiZdesign_V26.1/css/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('/wp-content/themes/CHRiiZdesign_V26.1/css/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('/wp-content/themes/CHRiiZdesign_V26.1/css/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
  
  /*src: url('https://www.chriiz.com/wp-content/themes/CHRiiZdesign_V2017/css/font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0');
  src: url('https://www.chriiz.com/wp-content/themes/CHRiiZdesign_V2017/css/font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0') format('embedded-opentype'), url('https://www.chriiz.com/wp-content/themes/CHRiiZdesign_V2017/css/font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0') format('woff'), url('https://www.chriiz.com/wp-content/themes/CHRiiZdesign_V2017/css/font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0') format('truetype'), url('https://www.chriiz.com/wp-content/themes/CHRiiZdesign_V2017/css/font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular') format('svg');
  font-weight: normal;*/
  font-style: normal;
}
.fa {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%;
}
.fa-2x {
  font-size: 2em;
}
.fa-3x {
  font-size: 3em;
}
.fa-4x {
  font-size: 4em;
}
.fa-5x {
  font-size: 5em;
}
.fa-fw {
  width: 1.28571429em;
  text-align: center;
}
.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none;
}
.fa-ul > li {
  position: relative;
}
.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center;
}
.fa-li.fa-lg {
  left: -1.85714286em;
}
.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em;
}
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.fa.pull-left {
  margin-right: .3em;
}
.fa.pull-right {
  margin-left: .3em;
}
.fa-spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-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% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
  }
}
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -moz-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  transform: scale(-1, 1);
}
.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -moz-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  -o-transform: scale(1, -1);
  transform: scale(1, -1);
}
.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle;
}
.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center;
}
.fa-stack-1x {
  line-height: inherit;
}
.fa-stack-2x {
  font-size: 2em;
}
.fa-inverse {
  color: #ffffff;
}
/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000";
}
.fa-music:before {
  content: "\f001";
}
.fa-search:before {
  content: "\f002";
}
.fa-envelope-o:before {
  content: "\f003";
}
.fa-heart:before {
  content: "\f004";
}
.fa-star:before {
  content: "\f005";
}
.fa-star-o:before {
  content: "\f006";
}
.fa-user:before {
  content: "\f007";
}
.fa-film:before {
  content: "\f008";
}
.fa-th-large:before {
  content: "\f009";
}
.fa-th:before {
  content: "\f00a";
}
.fa-th-list:before {
  content: "\f00b";
}
.fa-check:before {
  content: "\f00c";
}
.fa-times:before {
  content: "\f00d";
}
.fa-search-plus:before {
  content: "\f00e";
}
.fa-search-minus:before {
  content: "\f010";
}
.fa-power-off:before {
  content: "\f011";
}
.fa-signal:before {
  content: "\f012";
}
.fa-gear:before,
.fa-cog:before {
  content: "\f013";
}
.fa-trash-o:before {
  content: "\f014";
}
.fa-home:before {
  content: "\f015";
}
.fa-file-o:before {
  content: "\f016";
}
.fa-clock-o:before {
  content: "\f017";
}
.fa-road:before {
  content: "\f018";
}
.fa-download:before {
  content: "\f019";
}
.fa-arrow-circle-o-down:before {
  content: "\f01a";
}
.fa-arrow-circle-o-up:before {
  content: "\f01b";
}
.fa-inbox:before {
  content: "\f01c";
}
.fa-play-circle-o:before {
  content: "\f01d";
}
.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e";
}
.fa-refresh:before {
  content: "\f021";
}
.fa-list-alt:before {
  content: "\f022";
}
.fa-lock:before {
  content: "\f023";
}
.fa-flag:before {
  content: "\f024";
}
.fa-headphones:before {
  content: "\f025";
}
.fa-volume-off:before {
  content: "\f026";
}
.fa-volume-down:before {
  content: "\f027";
}
.fa-volume-up:before {
  content: "\f028";
}
.fa-qrcode:before {
  content: "\f029";
}
.fa-barcode:before {
  content: "\f02a";
}
.fa-tag:before {
  content: "\f02b";
}
.fa-tags:before {
  content: "\f02c";
}
.fa-book:before {
  content: "\f02d";
}
.fa-bookmark:before {
  content: "\f02e";
}
.fa-print:before {
  content: "\f02f";
}
.fa-camera:before {
  content: "\f030";
}
.fa-font:before {
  content: "\f031";
}
.fa-bold:before {
  content: "\f032";
}
.fa-italic:before {
  content: "\f033";
}
.fa-text-height:before {
  content: "\f034";
}
.fa-text-width:before {
  content: "\f035";
}
.fa-align-left:before {
  content: "\f036";
}
.fa-align-center:before {
  content: "\f037";
}
.fa-align-right:before {
  content: "\f038";
}
.fa-align-justify:before {
  content: "\f039";
}
.fa-list:before {
  content: "\f03a";
}
.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b";
}
.fa-indent:before {
  content: "\f03c";
}
.fa-video-camera:before {
  content: "\f03d";
}
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e";
}
.fa-pencil:before {
  content: "\f040";
}
.fa-map-marker:before {
  content: "\f041";
}
.fa-adjust:before {
  content: "\f042";
}
.fa-tint:before {
  content: "\f043";
}
.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044";
}
.fa-share-square-o:before {
  content: "\f045";
}
.fa-check-square-o:before {
  content: "\f046";
}
.fa-arrows:before {
  content: "\f047";
}
.fa-step-backward:before {
  content: "\f048";
}
.fa-fast-backward:before {
  content: "\f049";
}
.fa-backward:before {
  content: "\f04a";
}
.fa-play:before {
  content: "\f04b";
}
.fa-pause:before {
  content: "\f04c";
}
.fa-stop:before {
  content: "\f04d";
}
.fa-forward:before {
  content: "\f04e";
}
.fa-fast-forward:before {
  content: "\f050";
}
.fa-step-forward:before {
  content: "\f051";
}
.fa-eject:before {
  content: "\f052";
}
.fa-chevron-left:before {
  content: "\f053";
}
.fa-chevron-right:before {
  content: "\f054";
}
.fa-plus-circle:before {
  content: "\f055";
}
.fa-minus-circle:before {
  content: "\f056";
}
.fa-times-circle:before {
  content: "\f057";
}
.fa-check-circle:before {
  content: "\f058";
}
.fa-question-circle:before {
  content: "\f059";
}
.fa-info-circle:before {
  content: "\f05a";
}
.fa-crosshairs:before {
  content: "\f05b";
}
.fa-times-circle-o:before {
  content: "\f05c";
}
.fa-check-circle-o:before {
  content: "\f05d";
}
.fa-ban:before {
  content: "\f05e";
}
.fa-arrow-left:before {
  content: "\f060";
}
.fa-arrow-right:before {
  content: "\f061";
}
.fa-arrow-up:before {
  content: "\f062";
}
.fa-arrow-down:before {
  content: "\f063";
}
.fa-mail-forward:before,
.fa-share:before {
  content: "\f064";
}
.fa-expand:before {
  content: "\f065";
}
.fa-compress:before {
  content: "\f066";
}
.fa-plus:before {
  content: "\f067";
}
.fa-minus:before {
  content: "\f068";
}
.fa-asterisk:before {
  content: "\f069";
}
.fa-exclamation-circle:before {
  content: "\f06a";
}
.fa-gift:before {
  content: "\f06b";
}
.fa-leaf:before {
  content: "\f06c";
}
.fa-fire:before {
  content: "\f06d";
}
.fa-eye:before {
  content: "\f06e";
}
.fa-eye-slash:before {
  content: "\f070";
}
.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071";
}
.fa-plane:before {
  content: "\f072";
}
.fa-calendar:before {
  content: "\f073";
}
.fa-random:before {
  content: "\f074";
}
.fa-comment:before {
  content: "\f075";
}
.fa-magnet:before {
  content: "\f076";
}
.fa-chevron-up:before {
  content: "\f077";
}
.fa-chevron-down:before {
  content: "\f078";
}
.fa-retweet:before {
  content: "\f079";
}
.fa-shopping-cart:before {
  content: "\f07a";
}
.fa-folder:before {
  content: "\f07b";
}
.fa-folder-open:before {
  content: "\f07c";
}
.fa-arrows-v:before {
  content: "\f07d";
}
.fa-arrows-h:before {
  content: "\f07e";
}
.fa-bar-chart-o:before {
  content: "\f080";
}
.fa-twitter-square:before {
  content: "\f081";
}
.fa-facebook-square:before {
  content: "\f082";
}
.fa-camera-retro:before {
  content: "\f083";
}
.fa-key:before {
  content: "\f084";
}
.fa-gears:before,
.fa-cogs:before {
  content: "\f085";
}
.fa-comments:before {
  content: "\f086";
}
.fa-thumbs-o-up:before {
  content: "\f087";
}
.fa-thumbs-o-down:before {
  content: "\f088";
}
.fa-star-half:before {
  content: "\f089";
}
.fa-heart-o:before {
  content: "\f08a";
}
.fa-sign-out:before {
  content: "\f08b";
}
.fa-linkedin-square:before {
  content: "\f08c";
}
.fa-thumb-tack:before {
  content: "\f08d";
}
.fa-external-link:before {
  content: "\f08e";
}
.fa-sign-in:before {
  content: "\f090";
}
.fa-trophy:before {
  content: "\f091";
}
.fa-github-square:before {
  content: "\f092";
}
.fa-upload:before {
  content: "\f093";
}
.fa-lemon-o:before {
  content: "\f094";
}
.fa-phone:before {
  content: "\f095";
}
.fa-square-o:before {
  content: "\f096";
}
.fa-bookmark-o:before {
  content: "\f097";
}
.fa-phone-square:before {
  content: "\f098";
}
.fa-twitter:before {
  content: "\f099";
}
.fa-facebook:before {
  content: "\f09a";
}
.fa-github:before {
  content: "\f09b";
}
.fa-unlock:before {
  content: "\f09c";
}
.fa-credit-card:before {
  content: "\f09d";
}
.fa-rss:before {
  content: "\f09e";
}
.fa-hdd-o:before {
  content: "\f0a0";
}
.fa-bullhorn:before {
  content: "\f0a1";
}
.fa-bell:before {
  content: "\f0f3";
}
.fa-certificate:before {
  content: "\f0a3";
}
.fa-hand-o-right:before {
  content: "\f0a4";
}
.fa-hand-o-left:before {
  content: "\f0a5";
}
.fa-hand-o-up:before {
  content: "\f0a6";
}
.fa-hand-o-down:before {
  content: "\f0a7";
}
.fa-arrow-circle-left:before {
  content: "\f0a8";
}
.fa-arrow-circle-right:before {
  content: "\f0a9";
}
.fa-arrow-circle-up:before {
  content: "\f0aa";
}
.fa-arrow-circle-down:before {
  content: "\f0ab";
}
.fa-globe:before {
  content: "\f0ac";
}
.fa-wrench:before {
  content: "\f0ad";
}
.fa-tasks:before {
  content: "\f0ae";
}
.fa-filter:before {
  content: "\f0b0";
}
.fa-briefcase:before {
  content: "\f0b1";
}
.fa-arrows-alt:before {
  content: "\f0b2";
}
.fa-group:before,
.fa-users:before {
  content: "\f0c0";
}
.fa-chain:before,
.fa-link:before {
  content: "\f0c1";
}
.fa-cloud:before {
  content: "\f0c2";
}
.fa-flask:before {
  content: "\f0c3";
}
.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4";
}
.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5";
}
.fa-paperclip:before {
  content: "\f0c6";
}
.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7";
}
.fa-square:before {
  content: "\f0c8";
}
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9";
}
.fa-list-ul:before {
  content: "\f0ca";
}
.fa-list-ol:before {
  content: "\f0cb";
}
.fa-strikethrough:before {
  content: "\f0cc";
}
.fa-underline:before {
  content: "\f0cd";
}
.fa-table:before {
  content: "\f0ce";
}
.fa-magic:before {
  content: "\f0d0";
}
.fa-truck:before {
  content: "\f0d1";
}
.fa-pinterest:before {
  content: "\f0d2";
}
.fa-pinterest-square:before {
  content: "\f0d3";
}
.fa-google-plus-square:before {
  content: "\f0d4";
}
.fa-google-plus:before {
  content: "\f0d5";
}
.fa-money:before {
  content: "\f0d6";
}
.fa-caret-down:before {
  content: "\f0d7";
}
.fa-caret-up:before {
  content: "\f0d8";
}
.fa-caret-left:before {
  content: "\f0d9";
}
.fa-caret-right:before {
  content: "\f0da";
}
.fa-columns:before {
  content: "\f0db";
}
.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc";
}
.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd";
}
.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de";
}
.fa-envelope:before {
  content: "\f0e0";
}
.fa-linkedin:before {
  content: "\f0e1";
}
.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2";
}
.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3";
}
.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4";
}
.fa-comment-o:before {
  content: "\f0e5";
}
.fa-comments-o:before {
  content: "\f0e6";
}
.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7";
}
.fa-sitemap:before {
  content: "\f0e8";
}
.fa-umbrella:before {
  content: "\f0e9";
}
.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea";
}
.fa-lightbulb-o:before {
  content: "\f0eb";
}
.fa-exchange:before {
  content: "\f0ec";
}
.fa-cloud-download:before {
  content: "\f0ed";
}
.fa-cloud-upload:before {
  content: "\f0ee";
}
.fa-user-md:before {
  content: "\f0f0";
}
.fa-stethoscope:before {
  content: "\f0f1";
}
.fa-suitcase:before {
  content: "\f0f2";
}
.fa-bell-o:before {
  content: "\f0a2";
}
.fa-coffee:before {
  content: "\f0f4";
}
.fa-cutlery:before {
  content: "\f0f5";
}
.fa-file-text-o:before {
  content: "\f0f6";
}
.fa-building-o:before {
  content: "\f0f7";
}
.fa-hospital-o:before {
  content: "\f0f8";
}
.fa-ambulance:before {
  content: "\f0f9";
}
.fa-medkit:before {
  content: "\f0fa";
}
.fa-fighter-jet:before {
  content: "\f0fb";
}
.fa-beer:before {
  content: "\f0fc";
}
.fa-h-square:before {
  content: "\f0fd";
}
.fa-plus-square:before {
  content: "\f0fe";
}
.fa-angle-double-left:before {
  content: "\f100";
}
.fa-angle-double-right:before {
  content: "\f101";
}
.fa-angle-double-up:before {
  content: "\f102";
}
.fa-angle-double-down:before {
  content: "\f103";
}
.fa-angle-left:before {
  content: "\f104";
}
.fa-angle-right:before {
  content: "\f105";
}
.fa-angle-up:before {
  content: "\f106";
}
.fa-angle-down:before {
  content: "\f107";
}
.fa-desktop:before {
  content: "\f108";
}
.fa-laptop:before {
  content: "\f109";
}
.fa-tablet:before {
  content: "\f10a";
}
.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b";
}
.fa-circle-o:before {
  content: "\f10c";
}
.fa-quote-left:before {
  content: "\f10d";
}
.fa-quote-right:before {
  content: "\f10e";
}
.fa-spinner:before {
  content: "\f110";
}
.fa-circle:before {
  content: "\f111";
}
.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112";
}
.fa-github-alt:before {
  content: "\f113";
}
.fa-folder-o:before {
  content: "\f114";
}
.fa-folder-open-o:before {
  content: "\f115";
}
.fa-smile-o:before {
  content: "\f118";
}
.fa-frown-o:before {
  content: "\f119";
}
.fa-meh-o:before {
  content: "\f11a";
}
.fa-gamepad:before {
  content: "\f11b";
}
.fa-keyboard-o:before {
  content: "\f11c";
}
.fa-flag-o:before {
  content: "\f11d";
}
.fa-flag-checkered:before {
  content: "\f11e";
}
.fa-terminal:before {
  content: "\f120";
}
.fa-code:before {
  content: "\f121";
}
.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122";
}
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123";
}
.fa-location-arrow:before {
  content: "\f124";
}
.fa-crop:before {
  content: "\f125";
}
.fa-code-fork:before {
  content: "\f126";
}
.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127";
}
.fa-question:before {
  content: "\f128";
}
.fa-info:before {
  content: "\f129";
}
.fa-exclamation:before {
  content: "\f12a";
}
.fa-superscript:before {
  content: "\f12b";
}
.fa-subscript:before {
  content: "\f12c";
}
.fa-eraser:before {
  content: "\f12d";
}
.fa-puzzle-piece:before {
  content: "\f12e";
}
.fa-microphone:before {
  content: "\f130";
}
.fa-microphone-slash:before {
  content: "\f131";
}
.fa-shield:before {
  content: "\f132";
}
.fa-calendar-o:before {
  content: "\f133";
}
.fa-fire-extinguisher:before {
  content: "\f134";
}
.fa-rocket:before {
  content: "\f135";
}
.fa-maxcdn:before {
  content: "\f136";
}
.fa-chevron-circle-left:before {
  content: "\f137";
}
.fa-chevron-circle-right:before {
  content: "\f138";
}
.fa-chevron-circle-up:before {
  content: "\f139";
}
.fa-chevron-circle-down:before {
  content: "\f13a";
}
.fa-html5:before {
  content: "\f13b";
}
.fa-css3:before {
  content: "\f13c";
}
.fa-anchor:before {
  content: "\f13d";
}
.fa-unlock-alt:before {
  content: "\f13e";
}
.fa-bullseye:before {
  content: "\f140";
}
.fa-ellipsis-h:before {
  content: "\f141";
}
.fa-ellipsis-v:before {
  content: "\f142";
}
.fa-rss-square:before {
  content: "\f143";
}
.fa-play-circle:before {
  content: "\f144";
}
.fa-ticket:before {
  content: "\f145";
}
.fa-minus-square:before {
  content: "\f146";
}
.fa-minus-square-o:before {
  content: "\f147";
}
.fa-level-up:before {
  content: "\f148";
}
.fa-level-down:before {
  content: "\f149";
}
.fa-check-square:before {
  content: "\f14a";
}
.fa-pencil-square:before {
  content: "\f14b";
}
.fa-external-link-square:before {
  content: "\f14c";
}
.fa-share-square:before {
  content: "\f14d";
}
.fa-compass:before {
  content: "\f14e";
}
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150";
}
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151";
}
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152";
}
.fa-euro:before,
.fa-eur:before {
  content: "\f153";
}
.fa-gbp:before {
  content: "\f154";
}
.fa-dollar:before,
.fa-usd:before {
  content: "\f155";
}
.fa-rupee:before,
.fa-inr:before {
  content: "\f156";
}
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157";
}
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158";
}
.fa-won:before,
.fa-krw:before {
  content: "\f159";
}
.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a";
}
.fa-file:before {
  content: "\f15b";
}
.fa-file-text:before {
  content: "\f15c";
}
.fa-sort-alpha-asc:before {
  content: "\f15d";
}
.fa-sort-alpha-desc:before {
  content: "\f15e";
}
.fa-sort-amount-asc:before {
  content: "\f160";
}
.fa-sort-amount-desc:before {
  content: "\f161";
}
.fa-sort-numeric-asc:before {
  content: "\f162";
}
.fa-sort-numeric-desc:before {
  content: "\f163";
}
.fa-thumbs-up:before {
  content: "\f164";
}
.fa-thumbs-down:before {
  content: "\f165";
}
.fa-youtube-square:before {
  content: "\f166";
}
.fa-youtube:before {
  content: "\f167";
}
.fa-xing:before {
  content: "\f168";
}
.fa-xing-square:before {
  content: "\f169";
}
.fa-youtube-play:before {
  content: "\f16a";
}
.fa-dropbox:before {
  content: "\f16b";
}
.fa-stack-overflow:before {
  content: "\f16c";
}
.fa-instagram:before {
  content: "\f16d";
}
.fa-flickr:before {
  content: "\f16e";
}
.fa-adn:before {
  content: "\f170";
}
.fa-bitbucket:before {
  content: "\f171";
}
.fa-bitbucket-square:before {
  content: "\f172";
}
.fa-tumblr:before {
  content: "\f173";
}
.fa-tumblr-square:before {
  content: "\f174";
}
.fa-long-arrow-down:before {
  content: "\f175";
}
.fa-long-arrow-up:before {
  content: "\f176";
}
.fa-long-arrow-left:before {
  content: "\f177";
}
.fa-long-arrow-right:before {
  content: "\f178";
}
.fa-apple:before {
  content: "\f179";
}
.fa-windows:before {
  content: "\f17a";
}
.fa-android:before {
  content: "\f17b";
}
.fa-linux:before {
  content: "\f17c";
}
.fa-dribbble:before {
  content: "\f17d";
}
.fa-skype:before {
  content: "\f17e";
}
.fa-foursquare:before {
  content: "\f180";
}
.fa-trello:before {
  content: "\f181";
}
.fa-female:before {
  content: "\f182";
}
.fa-male:before {
  content: "\f183";
}
.fa-gittip:before {
  content: "\f184";
}
.fa-sun-o:before {
  content: "\f185";
}
.fa-moon-o:before {
  content: "\f186";
}
.fa-archive:before {
  content: "\f187";
}
.fa-bug:before {
  content: "\f188";
}
.fa-vk:before {
  content: "\f189";
}
.fa-weibo:before {
  content: "\f18a";
}
.fa-renren:before {
  content: "\f18b";
}
.fa-pagelines:before {
  content: "\f18c";
}
.fa-stack-exchange:before {
  content: "\f18d";
}
.fa-arrow-circle-o-right:before {
  content: "\f18e";
}
.fa-arrow-circle-o-left:before {
  content: "\f190";
}
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191";
}
.fa-dot-circle-o:before {
  content: "\f192";
}
.fa-wheelchair:before {
  content: "\f193";
}
.fa-vimeo-square:before {
  content: "\f194";
}
.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195";
}
.fa-plus-square-o:before {
  content: "\f196";
}
.fa-space-shuttle:before {
  content: "\f197";
}
.fa-slack:before {
  content: "\f198";
}
.fa-envelope-square:before {
  content: "\f199";
}
.fa-wordpress:before {
  content: "\f19a";
}
.fa-openid:before {
  content: "\f19b";
}
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c";
}
.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d";
}
.fa-yahoo:before {
  content: "\f19e";
}
.fa-google:before {
  content: "\f1a0";
}
.fa-reddit:before {
  content: "\f1a1";
}
.fa-reddit-square:before {
  content: "\f1a2";
}
.fa-stumbleupon-circle:before {
  content: "\f1a3";
}
.fa-stumbleupon:before {
  content: "\f1a4";
}
.fa-delicious:before {
  content: "\f1a5";
}
.fa-digg:before {
  content: "\f1a6";
}
.fa-pied-piper-square:before,
.fa-pied-piper:before {
  content: "\f1a7";
}
.fa-pied-piper-alt:before {
  content: "\f1a8";
}
.fa-drupal:before {
  content: "\f1a9";
}
.fa-joomla:before {
  content: "\f1aa";
}
.fa-language:before {
  content: "\f1ab";
}
.fa-fax:before {
  content: "\f1ac";
}
.fa-building:before {
  content: "\f1ad";
}
.fa-child:before {
  content: "\f1ae";
}
.fa-paw:before {
  content: "\f1b0";
}
.fa-spoon:before {
  content: "\f1b1";
}
.fa-cube:before {
  content: "\f1b2";
}
.fa-cubes:before {
  content: "\f1b3";
}
.fa-behance:before {
  content: "\f1b4";
}
.fa-behance-square:before {
  content: "\f1b5";
}
.fa-steam:before {
  content: "\f1b6";
}
.fa-steam-square:before {
  content: "\f1b7";
}
.fa-recycle:before {
  content: "\f1b8";
}
.fa-automobile:before,
.fa-car:before {
  content: "\f1b9";
}
.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba";
}
.fa-tree:before {
  content: "\f1bb";
}
.fa-spotify:before {
  content: "\f1bc";
}
.fa-deviantart:before {
  content: "\f1bd";
}
.fa-soundcloud:before {
  content: "\f1be";
}
.fa-database:before {
  content: "\f1c0";
}
.fa-file-pdf-o:before {
  content: "\f1c1";
}
.fa-file-word-o:before {
  content: "\f1c2";
}
.fa-file-excel-o:before {
  content: "\f1c3";
}
.fa-file-powerpoint-o:before {
  content: "\f1c4";
}
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5";
}
.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6";
}
.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7";
}
.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8";
}
.fa-file-code-o:before {
  content: "\f1c9";
}
.fa-vine:before {
  content: "\f1ca";
}
.fa-codepen:before {
  content: "\f1cb";
}
.fa-jsfiddle:before {
  content: "\f1cc";
}
.fa-life-bouy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd";
}
.fa-circle-o-notch:before {
  content: "\f1ce";
}
.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0";
}
.fa-ge:before,
.fa-empire:before {
  content: "\f1d1";
}
.fa-git-square:before {
  content: "\f1d2";
}
.fa-git:before {
  content: "\f1d3";
}
.fa-hacker-news:before {
  content: "\f1d4";
}
.fa-tencent-weibo:before {
  content: "\f1d5";
}
.fa-qq:before {
  content: "\f1d6";
}
.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7";
}
.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8";
}
.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9";
}
.fa-history:before {
  content: "\f1da";
}
.fa-circle-thin:before {
  content: "\f1db";
}
.fa-header:before {
  content: "\f1dc";
}
.fa-paragraph:before {
  content: "\f1dd";
}
.fa-sliders:before {
  content: "\f1de";
}
.fa-share-alt:before {
  content: "\f1e0";
}
.fa-share-alt-square:before {
  content: "\f1e1";
}
.fa-bomb:before {
  content: "\f1e2";
}
/* #Tablet (Landscape)
================================================== */
@media only screen and (max-width: 1024px) {

	#searchform input {
	    width: 118px;
	}

	.header-block-wrap {
		display: none;
	}
	.title-container-wrap {
		padding-left: 20px;
		padding-right: 20px;
	}
	
	.container,
	.container-boxed,
	.title-container,
	.footer-container,
	.header-search-wrap #searchform input,
	.top-bar-wrap-boxed {
	    width: 920px;
	}
	.container-boxed .container,
	.container-boxed .footer-container  {
		padding-left: 30px;
		padding-right: 30px;
		width: auto;
	}
	.page-template-template-fullpage-php .container-boxed .container {
		padding-left: 0;
		padding-right: 0;
	}
	.responsive-menu-wrap {
	    display: block;
	}
	.portfolio-nav-wrap {
		top:-27px;
	}
	.fullwidth-theme .portfolio-nav-wrap {
		top:-37px;
	}
	.portfolio-nav {
		position: static;
	}

	#wp-calendar thead th {
		padding:7px;
	}
	.single-mtheme_portfolio .sidebar-wrap-single {
		margin-top:26px;
	}
	#demopanel {
		display:none !important;
	}

}

/* #Tablet (Portrait)
================================================== */

    /* Note: Design for a width of 768px */

@media only screen and (min-width: 768px) and (max-width: 959px) {

	.container,
	.container-boxed,
	.title-container,
	.footer-container,
	.header-search-wrap #searchform input,
	.top-bar-wrap-boxed {
	    width: 700px;
	}

	.header-block-wrap {
		display: none;
	}

	.container-boxed .container,
	.container-boxed .footer-container  {
		padding-left: 30px;
		padding-right: 30px;
		width: auto;
	}
	.page-template-template-fullpage-php .container-boxed .container {
		padding-left: 0;
		padding-right: 0;
	}

	.sidebar-wrap,
	.sidebar-wrap-single {
		position: static;
	}

	.sidebar-widget .infobar-portfoliogrid li {
	    border: medium none;
	    float: left;
	    margin: 0;
	    padding: 0;
	    width: 16.6%;
	}
	.footer-widget .infobar-portfoliogrid li {
	    border: medium none;
	    float: left;
	    margin: 0;
	    padding: 0;
	    width: 14.2%;
	}
	.grid-list-portfolio-related ul li {
		width: 13%;
	}

	.top-menu-wrap {
		width:100%;
	}
	.top-bar-wrap,
	.header-elements-wrap,
	.container,
	.title-container,
	.slideshow_content_wrap{
	}

	#flex-testimonails .flex-direction-nav {
		display:none;
	}
	/* Search Input */
	#searchform input {
	    width: 198px;
	}

	/* Ajax Portfolio */
	.ajax-gallery-navigation {
		float:none;
	}
	#ajax-gridblock-wrap .gridblock-contents-wrap {
		margin-top:0;
	}


	/* Main mneu and Logo */
	.logo {
		float: none;
	}

	/* Header search OFF */
	.header-search-wrap {
		display:none;
	}

	/* Mobile Menu ON */
	.responsive-menu-wrap {
		display:block;
	}
	/* Main Menu and Header Menu OFF */
	.mainmenu-navigation {
		display:none;
	}
	.header-menu-wrap,
	.sticky-menu-activate {
		display:none;
	}

	.container-boxed {
	}
	
	/* Set Sidebar 100% */
	.sidebar-wrap,
	.sidebar-wrap-single {
		width:100%;
		margin-top:30px;
		padding-top:30px;
	}
	.fullwidth-theme .sidebar {
		padding:80px;
	}
	#recentposts_list .recent_thumbnail,
	#popularposts_list .popular_thumbnail {
		height: auto;
	}
	.sidebar-widget {
	}

	/* Column based layouts to 100% */
	.two-column,
	.fullwidth-theme .two-column {
		width:100%;
	}

	.service-item {
		margin-bottom: 30px;
	}

	/* All Collumns 100% */
	.column1,
	.column2,
	.column3,
	.column4,
	.column5,
	.column6, 
	.column32,
	.column43,
	.column52,
	.column53,
	.service-column-1 .service-item,
	.service-column-2 .service-item,
	.service-column-3 .service-item,
	.service-column-4 .service-item,
	.service-column-5 .service-item,
	.service-column-6 .service-item
	.service-item-space,
	.pricing-table .column2,
	.pricing-table .column3,
	.pricing-table .column4,
	.pricing-table .column5,
	.pricing-table .column6,
	#footer .footer-column {
		width:100%;
	}
	.person {
		width: 350px;
		max-width: 100%;
		margin: 0 auto;
	}
	/* Portfolio blocks to 100% */
	.gridblock-two .gridblock-element,
	.gridblock-three .gridblock-element,
	.gridblock-four .gridblock-element {
		width:50%;
	}
	.gridblock-one .gridblock-element {
		width: 100%;
	}
	.thumbnails-shortcode .gridblock-three .clearfix {
		display: none;
	}
	/* Portfolio container to 100% */
	#gridblock-container {
		width:100%;
	}

	.photowall-wrap {
		padding-top: 0;
		top:30px;
	}
	/* Clients columns to 50% each - 2 columns */
	.client-column-1 .client-item,
	.client-column-2 .client-item,
	.client-column-3 .client-item,
	.client-column-4 .client-item,
	.client-column-5 .client-item,
	.client-column-6 .client-item,
	.client-column-7 .client-item,
	.client-column-8 .client-item,
	.client-column-9 .client-item,
	.client-column-10 .client-item {
		text-align: center;
		width:50%;
		margin-bottom: 40px;
	}

	/* Testimonial block */
	.testimonial-say {
		margin-bottom: 20px;
	}

	/* Tabs */
	.ui-tabs .ui-tabs-nav li {
		width:100% !important;
	}

	/* Post header Navigation */
	.portfolio-nav-wrap {
		top:-27px;
	}
	.fullwidth-theme .portfolio-nav-wrap {
		top:-37px;
	}

	.portfolio-nav {
		position: static;
	}
	.post-previous {
		float: left;
	}

	/* Comments Adjust */
	ol.commentlist li p {
		margin-left: 0;
	}
	ol.commentlist li {
		padding:20px;
	}

	/* Callout */
	.callout-text {
		float: none;
		margin-bottom: 20px;
		text-align: center;
	}
	.callout .callout-title {
		margin-bottom: 20px;
	}
	.callout-button {
		float:none;
		text-align: center;
	}
	.callout h2.callout-title {
		margin-top:20px;
	}
	.callout-desc {
		width:100%;
	}
	.callout {
		text-align: center;
		padding-top:40px;
		padding-bottom:40px;
	}

	.sidebar-widget #searchform input {
		width:76%;
	}

	#footer .footer-column {
		margin-right:0;
		margin-left:0;
		margin-top:30px;
	}

	#demopanel { display:none;}

	.slideshow_title, .static_slideshow_title {
		font-size: 52px;
		line-height: 55px;
	}
	
	.slideshow_content_wrap {
		padding: 50px 0 20px;
	}
	.slideshow_caption,.static_slideshow_caption {
		width: auto;
		margin:10px 30px;
		line-height: 17px;
	}
	.slideshow_caption, .static_slideshow_caption {
		padding-bottom: 10px;
	}
	.slideshow_text_shift_up {
		padding-bottom: 50px;
	}

	.sc_slideshowtitle {
		font-size:16px;
		line-height: 18px;
	}

	.social-header-wrap ul li.contact-text {
		top:0;
	}

	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	.entry-content .entry-post-title h2 a,
	.entry-title h1,
	.entry-content p,
	.work-description,
	.postsummarywrap,
	.sidebar h3,
	.sidebar,
	.sidebar a,
	#copyright,
	.gridblock-four h4 a,
	.gridblock-three h4 a,
	.gridblock-two h4 a,
	.gridblock-one h4 a,
	.gridblock-list h4 a,
	#gridblock-filters li a,
	h1.item-title,
	h2.item-title,
	h3.item-title,
	h4.item-title,
	h5.item-title,
	h6.item-title,
	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6,
	.portfolio-share li.sharethis,
	.mbutton span,
	.mobile-menu-toggle,
	.responsive-mobile-menu ul li a,
	.responsive-mobile-menu ul.sub-menu li a,
	.slideshow_title,
	.slideshow_caption,
	.sc_slideshowtitle,
	.callout .callout-title,
	.pagination,
	.boxtitle-hover a,
	.ui-tabs .ui-tabs-nav li a,
	.ui-accordion-header.ui-state-default a,
	.ajax-gridblock-data h2 a {
	}
	.sidebar,
	.entry-content,
	.postsummarywrap,
	.mbutton span,
	.gridblock-four .work-description,
	.gridblock-three .work-description,
	.gridblock-two .work-description,
	.gridblock-one .work-description,
	.gridblock-four h4 a,
	.gridblock-three h4 a,
	.gridblock-two h4 a,
	.gridblock-one h4 a,
	.gridblock-list h4 a {
	}

	#demopanel {
		display:none !important;
	}

	.portfolio-nav-wrap {
		top:-27px;
	}
	.fullwidth-theme .portfolio-nav-wrap {
		top:-37px;
	}
	.portfolio-nav {
		position: static;
	}

	.ui-tabs-vertical .ui-tabs-panel,
	.ui-tabs-vertical ul {
		width: 100%;
	}

	.woocommerce #content div.product div.images,
	.woocommerce div.product div.images,
	.woocommerce-page #content div.product div.images,
	.woocommerce-page div.product div.images {
	    width: 100% !important;
	}
	.woocommerce #content div.product div.summary,
	.woocommerce div.product div.summary,
	.woocommerce-page #content div.product div.summary,
	.woocommerce-page div.product div.summary {
		width: auto !important;
	}
	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product {
	    width: 49.7% !important;
	}

}


/*  #Mobile (Portrait)
================================================== */

    /* Note: Design for a width of 320px */

@media only screen and (max-width: 767px) {

	.entry-page-wrapper, .entry-content-wrapper,
	.search-page-wrap, .woocommerce #container {
	    padding: 45px 40px;
	}
	.container-outer {
		margin-top: 70px;
	}
	.container {
	    margin-bottom: 70px;
	}

	.entry-title {
	    padding-left: 40px;
	    padding-right: 40px;
	}

	.container,
	.container-boxed,
	.title-container,
	.footer-container,
	.header-search-wrap #searchform input,
	.top-bar-wrap-boxed {
	    width: 300px;
	    max-width: 100%;
	}
	.container-boxed .container,
	.container-boxed .footer-container  {
		padding-left: 30px;
		padding-right: 30px;
		width: auto;
	}
	.page-template-template-fullpage-php .container-boxed .container {
		padding-left: 0;
		padding-right: 0;
	}
	.sidebar-wrap,
	.sidebar-wrap-single {
		position: static;
	}

	.logo img {
		max-width: 100px;
	}

	.top-menu-wrap {
		width:100%;
	}
	.top-bar-wrap,
	.header-elements-wrap,
	.container,
	.title-container,
	.slideshow_content_wrap{
	}

	#flex-testimonails .flex-direction-nav {
		display:none;
	}

	/* Search Input */
	#searchform input {
	    width: 198px;
	}

	/* Audio Progress Bar */
	.jp-progress {
		display:none;
	}
	.fullscreenslideshow-audio {
		display: none;
	}

	/* Ajax Portfolio */
	.ajax-gallery-navigation {
		float:none;
	}
	#ajax-gridblock-wrap .gridblock-contents-wrap {
		margin-top:0;
	}


	/* Main mneu and Logo */
	.header-block-wrap {
		display: none;
	}
	.logo {
		float: none;
	}

	/* Header search OFF */
	.header-search-wrap {
		display:none;
	}

	/* Mobile Menu ON */
	.responsive-menu-wrap {
		display:block;
	}
	/* Main Menu and Header Menu OFF */
	.mainmenu-navigation {
		display:none;
	}
	.header-menu-wrap,
	.sticky-menu-activate {
		display:none;
	}

	.container-boxed {
	}
	
	/* Set Sidebar 100% */
	.sidebar-wrap,
	.sidebar-wrap-single {
		width:100%;
		margin-top:30px;
		padding-top:30px;
	}
	#recentposts_list .recent_thumbnail,
	#popularposts_list .popular_thumbnail {
		height: auto;
	}
	.sidebar-widget {
	}

	/* Column based layouts to 100% */
	.two-column,
	.fullwidth-theme .two-column {
		width:100%;
	}

	.service-item {
		margin-bottom: 30px;
	}

	/* All Collumns 100% */
	.column1,
	.column2,
	.column3,
	.column4,
	.column5,
	.column6, 
	.column32,
	.column43,
	.column52,
	.column53,
	.service-column-1 .service-item,
	.service-column-2 .service-item,
	.service-column-3 .service-item,
	.service-column-4 .service-item,
	.service-column-5 .service-item,
	.service-column-6 .service-item
	.service-item-space,
	.pricing-table .column2,
	.pricing-table .column3,
	.pricing-table .column4,
	.pricing-table .column5,
	.pricing-table .column6,
	#footer .footer-column {
		width:100%;
	}
	/* Portfolio blocks to 100% */
	.gridblock-one .gridblock-element,
	.gridblock-two .gridblock-element,
	.gridblock-three .gridblock-element,
	.gridblock-four .gridblock-element {
		width:100%;
	}
	/* Portfolio container to 100% */
	#gridblock-container {
		width:100%;
	}
	/* Clients columns to 50% each - 2 columns */
	.client-column-1 .client-item,
	.client-column-2 .client-item,
	.client-column-3 .client-item,
	.client-column-4 .client-item,
	.client-column-5 .client-item,
	.client-column-6 .client-item,
	.client-column-7 .client-item,
	.client-column-8 .client-item,
	.client-column-9 .client-item,
	.client-column-10 .client-item {
		text-align: center;
		width:50%;
		margin-bottom: 40px;
	}

	/* Testimonial block */
	.testimonial-say {
		margin-bottom: 20px;
	}

	/* Tabs */
	.ui-tabs .ui-tabs-nav li {
		width:100% !important;
	}

	/* Post header Navigation */
	.portfolio-nav-wrap {
		top:-27px;
	}
	.fullwidth-theme .portfolio-nav-wrap {
		top:-37px;
	}
	.portfolio-nav {
		position: static;
	}
	.post-previous {
		float: left;
	}

	/* Comments Adjust */
	ol.commentlist li p {
		margin-left: 0;
	}
	ol.commentlist li {
		padding:20px;
	}

	/* Callout */
	.callout-text {
		float: none;
		margin-bottom: 20px;
		text-align: center;
	}
	.callout .callout-title {
		margin-bottom: 20px;
	}
	.callout-button {
		float:none;
		text-align: center;
	}
	.callout h2.callout-title {
		margin-top:20px;
	}
	.callout-desc {
		width:100%;
	}
	.callout {
		text-align: center;
		padding-top:40px;
		padding-bottom:40px;
	}

	.sidebar-widget #searchform input {
		width:73%;
	}

	#footer .footer-column {
		margin-right:0;
		margin-left:0;
		margin-top:30px;
	}

	#demopanel { display:none;}

	.menu-toggle-wrap {
		display:none;
	}

	.slideshow_title, .static_slideshow_title {
		font-size: 32px;
		line-height: 30px;
		font-weight: 400;
		letter-spacing: -2px;
	}

	.slideshow_content_wrap {
		padding:10px;
	}
	.slideshow_caption, .static_slideshow_caption {
		padding-bottom: 10px;
	}
	.slideshow_text_shift_up {
		padding-bottom: 50px;
	}

	.slideshow_caption,.static_slideshow_caption {
		line-height: 14px;
		font-size: 12px;
		margin:10px 20px;
		width: auto;
	}
	.sc_slideshowtitle {
		font-size:16px;
		line-height: 18px;
	}
	.slideshow_caption, .static_slideshow_caption {
		font-weight: 600;
	}
	.super-navigation,
	#controls-wrapper #controls {
		display:none;
	}

	.postformat_contents {
		padding-left:0;
		padding-right: 0;
	}

	.post-single-meta {
		float: none;
	}

	.social-header-wrap ul li.contact-text {
		top:0;
	}

	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	.entry-content .entry-post-title h2 a,
	.entry-title h1,
	.entry-content p,
	.work-description,
	.postsummarywrap,
	.sidebar h3,
	.sidebar,
	.sidebar a,
	#copyright,
	.gridblock-four h4 a,
	.gridblock-three h4 a,
	.gridblock-two h4 a,
	.gridblock-one h4 a,
	.gridblock-list h4 a,
	#gridblock-filters li a,
	h1.item-title,
	h2.item-title,
	h3.item-title,
	h4.item-title,
	h5.item-title,
	h6.item-title,
	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6,
	.portfolio-share li.sharethis,
	.mbutton span,
	.mobile-menu-toggle,
	.responsive-mobile-menu ul li a,
	.responsive-mobile-menu ul.sub-menu li a,
	.slideshow_title,
	.slideshow_caption,
	.sc_slideshowtitle,
	.callout .callout-title,
	.pagination,
	.boxtitle-hover a,
	.ui-tabs .ui-tabs-nav li a,
	.ui-accordion-header.ui-state-default a,
	.ajax-gridblock-data h2 a {
	}
	.sidebar,
	.entry-content,
	.postsummarywrap,
	.mbutton span,
	.gridblock-four .work-description,
	.gridblock-three .work-description,
	.gridblock-two .work-description,
	.gridblock-one .work-description,
	.gridblock-four h4 a,
	.gridblock-three h4 a,
	.gridblock-two h4 a,
	.gridblock-one h4 a,
	.gridblock-list h4 a {
	}

	.photowall-wrap {
	    top: 20px;
	    padding-top: 
	}

	.header-widgets .wpml-lang-selector-wrap {
		margin:0 auto;
		text-align: center;
		
	}
	.header-widgets #lang_sel {
		float:none;
	}
	.top-bar-wrap {
		height: auto;
	}

	#demopanel {
		display:none !important;
	}

	#gridblock-filter-select,
	#gridblock-filters {
		width: 100%;
	}

	.bloglist-small .post-format-media {
		float:none;
		width: 100%;
	}

	ul.gridblock-listbox .gridblock-image-link {
		width:100%;
		float: none;
	}
	ul.gridblock-listbox .work-details {
		margin: 20px 0;
	}

	.ui-tabs-vertical .ui-tabs-panel,
	.ui-tabs-vertical ul {
		width: 100%;
	}

	.entry-content .pullquote-left,
	.entry-content .pullquote-right,
	.entry-content .pullquote-center {
		float:none;
		margin: 0 0 25px 0;
		padding: 0;
		width: 100%;
	}

/*
WooCommerce*/

	.woocommerce div.product div.summary,
	.woocommerce #content div.product div.summary,
	.woocommerce-page div.product div.summary,
	.woocommerce-page #content div.product div.summary {
		width:100% !important;
	}
	.woo-single-flexslider {
		max-width: 100% !important;
		width: 100% !important;
	}
	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product {
	    width: 97% !important;
	}

/*
	Product Filters
*/
	.woocommerce .woocommerce-result-count,
	.woocommerce-page .woocommerce-result-count {
	    float: none !important;
	}
	.woocommerce .woocommerce-ordering,
	.woocommerce-page .woocommerce-ordering {
	    float: none !important;
	    margin-top:30px !important;
	}

	.mtheme-woo-order-selected {
		width:240px;
	}
	.mtheme-woo-order-list ul {
		width: 251px;
	}
	.mtheme-woo-order-selected-wrap i {
		position: absolute;
	}
	.mtheme-woo-order-selected,
	.mtheme-woo-order-list ul {
		left: 0;
		right:auto;
	}

	/*
	Product Details*/

	.woocommerce div.product .woocommerce-tabs,
	.woocommerce #content div.product .woocommerce-tabs,
	.woocommerce-page div.product .woocommerce-tabs,
	.woocommerce-page #content div.product .woocommerce-tabs {
	    width: 100%;
	}
/*
	Cart*/

	.woocommerce table.cart img,
	.woocommerce #content table.cart img,
	.woocommerce-page table.cart img,
	.woocommerce-page #content table.cart img,
	.woocommerce table.cart .product-thumbnail,
	.woocommerce #content table.cart .product-thumbnail,
	.woocommerce-page table.cart .product-thumbnail,
	.woocommerce-page #content table.cart .product-thumbnail {
    	width: 40px !important;
	}
	.woocommerce .shop_table.cart .product-quantity,
	.woocommerce .shop_table.cart .product-price {
		display:none;
	}
	.woocommerce table.cart td.actions,
	.woocommerce #content table.cart td.actions,
	.woocommerce-page table.cart td.actions,
	.woocommerce-page #content table.cart td.actions {
	    padding: 10px !important;
	}
	.woocommerce .cart .button,
	.woocommerce .cart input.button,
	.woocommerce-page .cart .button,
	.woocommerce-page .cart input.button {
	    margin-top: 10px;
	}

	.woocommerce .cart .button,
	.woocommerce .cart input.button,
	.woocommerce-page .cart .button,
	.woocommerce-page .cart input.button {
	    float: none !important;
	    margin-bottom: 20px !important;
	}

	.woocommerce .col2-set .col-1, 
	.woocommerce-page .col2-set .col-1,
	.woocommerce .col2-set .col-2, 
	.woocommerce-page .col2-set .col-2  {
	    float: none !important;
	    width: auto !important;
	    margin-bottom: 40px;
	}

	.woocommerce #content table.cart td.actions .button,
	.woocommerce #content table.cart td.actions .input-text,
	.woocommerce #content table.cart td.actions input,
	.woocommerce table.cart td.actions .button,
	.woocommerce table.cart td.actions .input-text,
	.woocommerce table.cart td.actions input,
	.woocommerce-page #content table.cart td.actions .button,
	.woocommerce-page #content table.cart td.actions .input-text,
	.woocommerce-page #content table.cart td.actions input,
	.woocommerce-page table.cart td.actions .button,
	.woocommerce-page table.cart td.actions .input-text,
	.woocommerce-page table.cart td.actions input {
	    width: 100%;
	    margin-bottom: 0 !important;
	}

	.woocommerce table.cart td.actions .coupon .input-text,
	.woocommerce #content table.cart td.actions .coupon .input-text,
	.woocommerce-page table.cart td.actions .coupon .input-text,
	.woocommerce-page #content table.cart td.actions .coupon .input-text {
	    width: 100% !important;
	}
	.woocommerce #content div.product div.images,
	.woocommerce div.product div.images,
	.woocommerce-page #content div.product div.images,
	.woocommerce-page div.product div.images {
	    width: 100% !important;
	}
	.woocommerce #content div.product div.summary,
	.woocommerce div.product div.summary,
	.woocommerce-page #content div.product div.summary,
	.woocommerce-page div.product div.summary {
		width: auto !important;
	}
	/*
	Carousel
	*/
	.horizontal-carousel-outer,
	.horizontal-carousel-inner {
		overflow: visible;
		width: 100% !important;
		height: auto;
	}
	.horizontal-carousel {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		position: static;
	}
	.horizontal-carousel .hc-slides {
		width: 100% !important;
		height: auto !important;
	}
	.horizontal-carousel li {
		display: block;
		height: auto !important;
		width: auto !important;
		max-width: 100% !important;
		margin: 0;
		position: static;
	}
	.horizontal-carousel li .hc-image-wrap {
		height: auto !important;
		width: auto !important;
		margin:20px;
	}
	.horizontal-carousel li img {
		opacity: 1;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		min-height: 0;
	}
	.carousel-captions {
		display: none;
	}
	.fullscreen-horizontal-carousel .prev-hcarousel,
	.fullscreen-horizontal-carousel .next-hcarousel {
		display: none;
	}
	.responsive-titles {
		display: block;
	}

	#html5videocontrol {
		display: none;
	}
		
}

/* #Mobile (Landscape)
================================================== */

    /* Note: Design for a width of 480px */

@media only screen and (min-width: 480px) and (max-width: 767px) {

	.entry-page-wrapper, .entry-content-wrapper,
	.search-page-wrap, .woocommerce #container {
	    padding: 45px 40px;
	}

	.container-outer {
		margin-top: 70px;
	}
	.container {
	    margin-bottom: 70px;
	}

	.entry-title {
	    padding-left: 40px;
	    padding-right: 40px;
	}

	.container,
	.container-boxed,
	.title-container,
	.footer-container,
	.top-bar-wrap-boxed {
	    width: 470px;
	}
	.container-boxed .container,
	.container-boxed .footer-container  {
		padding-left: 30px;
		padding-right: 30px;
		width: auto;
	}
	.page-template-template-fullpage-php .container-boxed .container {
		padding-left: 0;
		padding-right: 0;
	}

	.sidebar-wrap,
	.sidebar-wrap-single {
		position: static;
	}
	.fullwidth-theme .sidebar {
		padding:80px;
	}

	.top-menu-wrap {
		width:100%;
	}
	.top-bar-wrap,
	.header-elements-wrap,
	.container,
	.title-container,
	.slideshow_content_wrap{
	}

	#flex-testimonails .flex-direction-nav {
		display:none;
	}
	/* Search Input */
	#searchform input {
	    width: 198px;
	}

	/* Audio Progress Bar */
	.jp-progress {
		display: block;
		width: 40%;
	}
	.fullscreenslideshow-audio {
		display: none;
	}

	/* Ajax Portfolio */
	.ajax-gallery-navigation {
		float:none;
	}
	#ajax-gridblock-wrap .gridblock-contents-wrap {
		margin-top:0;
	}


	/* Main mneu and Logo */
	.header-block-wrap {
		display: none;
	}
	.logo {
		float: none;
	}

	/* Header search OFF */
	.header-search-wrap {
		display:none;
	}

	/* Mobile Menu ON */
	.responsive-menu-wrap {
		display:block;
	}
	/* Main Menu and Header Menu OFF */
	.mainmenu-navigation {
		display:none;
	}
	.header-menu-wrap,
	.sticky-menu-activate {
		display:none;
	}

	.container-boxed {
	}
	
	/* Set Sidebar 100% */
	.sidebar-wrap,
	.sidebar-wrap-single {
		width:100%;
		margin-top:30px;
		padding-top:30px;
	}
	.fullwidth-theme .sidebar {
		padding:80px;
	}
	#recentposts_list .recent_thumbnail,
	#popularposts_list .popular_thumbnail {
		height: auto;
	}
	.sidebar-widget {
	}

	/* Column based layouts to 100% */
	.two-column,
	.fullwidth-theme .two-column {
		width:100%;
	}

	.service-item {
		margin-bottom: 30px;
	}

	/* All Collumns 100% */
	.column1,
	.column2,
	.column3,
	.column4,
	.column5,
	.column6, 
	.column32,
	.column43,
	.column52,
	.column53,
	.service-column-1 .service-item,
	.service-column-2 .service-item,
	.service-column-3 .service-item,
	.service-column-4 .service-item,
	.service-column-5 .service-item,
	.service-column-6 .service-item
	.service-item-space,
	.pricing-table .column2,
	.pricing-table .column3,
	.pricing-table .column4,
	.pricing-table .column5,
	.pricing-table .column6,
	#footer .footer-column {
		width:100%;
	}
	/* Portfolio blocks to 100% */
	.gridblock-one .gridblock-element,
	.gridblock-two .gridblock-element,
	.gridblock-three .gridblock-element,
	.gridblock-four .gridblock-element {
		width:100%;
	}
	/* Portfolio container to 100% */
	#gridblock-container {
		width:100%;
	}
	/* Clients columns to 50% each - 2 columns */
	.client-column-1 .client-item,
	.client-column-2 .client-item,
	.client-column-3 .client-item,
	.client-column-4 .client-item,
	.client-column-5 .client-item,
	.client-column-6 .client-item,
	.client-column-7 .client-item,
	.client-column-8 .client-item,
	.client-column-9 .client-item,
	.client-column-10 .client-item {
		text-align: center;
		width:50%;
		margin-bottom: 40px;
	}

	/* Testimonial block */
	.testimonial-say {
		margin-bottom: 20px;
	}

	/* Tabs */
	.ui-tabs .ui-tabs-nav li {
		width:100% !important;
	}

	/* Post header Navigation */
	.portfolio-nav-wrap {
		top:-27px;
	}
	.fullwidth-theme .portfolio-nav-wrap {
		top:-37px;
	}
	.portfolio-nav {
		position: static;
	}
	.post-previous {
		float: left;
	}

	/* Comments Adjust */
	ol.commentlist li p {
		margin-left: 0;
	}
	ol.commentlist li {
		padding:20px;
	}

	/* Callout */
	.callout-text {
		float: none;
		margin-bottom: 20px;
		text-align: center;
	}
	.callout .callout-title {
		margin-bottom: 20px;
	}
	.callout-button {
		float:none;
		text-align: center;
	}
	.callout h2.callout-title {
		margin-top:20px;
	}
	.callout-desc {
		width:100%;
	}
	.callout {
		text-align: center;
		padding-top:40px;
		padding-bottom:40px;
	}

	.sidebar-widget #searchform input {
		width:76%;
	}

	#footer .footer-column {
		margin-right:0;
		margin-left:0;
		margin-top:30px;
	}

	#demopanel { display:none;}

	.menu-toggle-wrap {
		display:none;
	}

	.slideshow_title, .static_slideshow_title {
		font-size: 44px;
		line-height: 42px;
	}
	.slideshow_caption, .static_slideshow_caption {
		font-weight: 600;
	}

	.slideshow_content_wrap {
		padding:10px;
	}
	.slideshow_caption, .static_slideshow_caption {
		padding-bottom: 0;
	}
	.slideshow_text_shift_up {
		padding-bottom: 50px;
	}
	.slideshow_caption,.static_slideshow_caption {
		line-height: 14px;
		font-size: 14px;
		width: auto;
		margin: 10px 20px;
	}
	.sc_slideshowtitle {
		font-size:16px;
		line-height: 18px;
	}

	.postformat_contents {
		padding-left:0;
		padding-right: 0;
	}

	.post-single-meta {
		float: none;
	}

	.social-header-wrap ul li.contact-text {
		top:0;
	}

	body,
	h1,
	h2,
	h3,
	h4,
	h5,
	h6,
	.entry-content .entry-post-title h2 a,
	.entry-title h1,
	.entry-content p,
	.work-description,
	.postsummarywrap,
	.sidebar h3,
	.sidebar,
	.sidebar a,
	#copyright,
	.gridblock-four h4 a,
	.gridblock-three h4 a,
	.gridblock-two h4 a,
	.gridblock-one h4 a,
	.gridblock-list h4 a,
	#gridblock-filters li a,
	h1.item-title,
	h2.item-title,
	h3.item-title,
	h4.item-title,
	h5.item-title,
	h6.item-title,
	.entry-content h1,
	.entry-content h2,
	.entry-content h3,
	.entry-content h4,
	.entry-content h5,
	.entry-content h6,
	.portfolio-share li.sharethis,
	.mbutton span,
	.mobile-menu-toggle,
	.responsive-mobile-menu ul li a,
	.responsive-mobile-menu ul.sub-menu li a,
	.slideshow_title,
	.slideshow_caption,
	.sc_slideshowtitle,
	.callout .callout-title,
	.pagination,
	.boxtitle-hover a,
	.ui-tabs .ui-tabs-nav li a,
	.ui-accordion-header.ui-state-default a,
	.ajax-gridblock-data h2 a {
	}
	.sidebar,
	.entry-content,
	.postsummarywrap,
	.mbutton span,
	.gridblock-four .work-description,
	.gridblock-three .work-description,
	.gridblock-two .work-description,
	.gridblock-one .work-description,
	.gridblock-four h4 a,
	.gridblock-three h4 a,
	.gridblock-two h4 a,
	.gridblock-one h4 a,
	.gridblock-list h4 a {
	}

	.photowall-wrap {
	    top: 20px;
	    padding-top: 
	}

	.header-widgets .wpml-lang-selector-wrap {
		margin:0 auto;
		text-align: center;
		
	}
	.header-widgets #lang_sel {
		float:none;
	}
	.top-bar-wrap {
		height: auto;
	}
	
	#demopanel {
		display:none !important;
	}

	#gridblock-filter-select,
	#gridblock-filters {
		width: 100%;
	}

	.bloglist-small .post-format-media {
		float:none;
		width: 100%;
	}

	ul.gridblock-listbox .gridblock-image-link {
	width:100%;
	float: none;
	}
	ul.gridblock-listbox .work-details {
	margin: 20px 0;
	}

	.ui-tabs-vertical .ui-tabs-panel,
	.ui-tabs-vertical ul {
		width: 100%;
	}


/*
woocommerce*/

	.woocommerce div.product div.summary,
	.woocommerce #content div.product div.summary,
	.woocommerce-page div.product div.summary,
	.woocommerce-page #content div.product div.summary {
		width:100% !important;
	}
/*
	Product Columns
*/
	.woocommerce ul.products li.product,
	.woocommerce-page ul.products li.product {
	    width: 49.7% !important;
	}


/*
	Product Filters
*/
	.woocommerce .woocommerce-result-count,
	.woocommerce-page .woocommerce-result-count {
	    float: none !important;
	}
	.woocommerce .woocommerce-ordering,
	.woocommerce-page .woocommerce-ordering {
	    float: none !important;
	    margin-top:30px !important;
	}
	.mtheme-woo-order-selected {
		width:400px;
	}
	.mtheme-woo-order-list ul {
		width: 409px;
	}
	.mtheme-woo-order-selected-wrap i {
		position: absolute;
	}
	.mtheme-woo-order-selected,
	.mtheme-woo-order-list ul {
		left: 0;
		right:auto;
	}

	/*
	Product Details*/

	.woocommerce div.product .woocommerce-tabs,
	.woocommerce #content div.product .woocommerce-tabs,
	.woocommerce-page div.product .woocommerce-tabs,
	.woocommerce-page #content div.product .woocommerce-tabs {
	    width: 100%;
	}
/*
	Cart*/
	.woocommerce table.cart img,
	.woocommerce #content table.cart img,
	.woocommerce-page table.cart img,
	.woocommerce-page #content table.cart img,
	.woocommerce table.cart .product-thumbnail,
	.woocommerce #content table.cart .product-thumbnail,
	.woocommerce-page table.cart .product-thumbnail,
	.woocommerce-page #content table.cart .product-thumbnail {
	    width: 80px !important;
	}
	.woocommerce .shop_table.cart .product-quantity {
		display:none;
	}

	.woocommerce .shop_table.cart .product-price {
		display: block;
	}

	.woocommerce table.cart td.actions .coupon,
	.woocommerce #content table.cart td.actions .coupon,
	.woocommerce-page table.cart td.actions .coupon,
	.woocommerce-page #content table.cart td.actions .coupon {
	    float: none !important;
	}
	.woocommerce .cart .button,
	.woocommerce .cart input.button,
	.woocommerce-page .cart .button,
	.woocommerce-page .cart input.button {
	    float: none !important;
	    margin-bottom: 20px !important;
	}

	.woocommerce .col2-set .col-1, 
	.woocommerce-page .col2-set .col-1,
	.woocommerce .col2-set .col-2, 
	.woocommerce-page .col2-set .col-2  {
	    float: none !important;
	    width: auto !important;
	    margin-bottom: 40px;
	}
	.woocommerce #content div.product div.images,
	.woocommerce div.product div.images,
	.woocommerce-page #content div.product div.images,
	.woocommerce-page div.product div.images {
	    width: 100% !important;
	}
	.woocommerce #content div.product div.summary,
	.woocommerce div.product div.summary,
	.woocommerce-page #content div.product div.summary,
	.woocommerce-page div.product div.summary {
		width: auto !important;
	}

	/*
	Carousel
	*/
	.horizontal-carousel-outer,
	.horizontal-carousel-inner {
		overflow: visible;
		width: 100% !important;
	}
	.horizontal-carousel {
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		position: static;
	}
	.horizontal-carousel li {
		display: block;
		height: auto;
		width: auto !important;
		max-width: 100% !important;
		margin: 0;
	}
	.horizontal-carousel li .hc-image-wrap {
		height: auto !important;
		width: auto !important;
		margin: 20px;
	}
	.horizontal-carousel li img {
		opacity: 1;
		width: 100% !important;
		max-width: 100% !important;
		height: auto !important;
		min-height: 0;
	}
	.carousel-captions {
		display: none;
	}
	.horizontal-carousel-inner .prev-hcarousel,
	.horizontal-carousel-inner .next-hcarousel {
		display: none;
	}
	.responsive-titles {
		display: block;
	}
	.prev-hcarousel,
	.next-hcarousel {
		display: none;
	}

	#html5videocontrol {
		display: none;
	}
	
}

/* iPhone 5 ----------- */
@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : landscape) and (-webkit-device-pixel-ratio: 2){
/* Styles */
}

@media only screen and (min-device-width: 320px) and (max-device-height: 568px) and (orientation : portrait) and (-webkit-device-pixel-ratio: 2){
/* Styles */
}

/* iPhone 6 Portrait */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : portrait) {
	.container,
	.container-boxed,
	.title-container,
	.footer-container,
	.header-search-wrap #searchform input,
	.top-bar-wrap-boxed {
	    width: 360px;
	}
}

/* iPhone 6 landscape */
@media only screen and (min-device-width: 375px) and (max-device-width: 667px) and (orientation : landscape) {
	.container,
	.container-boxed,
	.title-container,
	.footer-container,
	.header-search-wrap #searchform input,
	.top-bar-wrap-boxed {
	    width: 660px;
	}

}

/* iPhone 6+ Portrait */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation : portrait) {

	.container,
	.container-boxed,
	.title-container,
	.footer-container,
	.header-search-wrap #searchform input,
	.top-bar-wrap-boxed {
	    width: 400px;
	}

}

/* iPhone 6+ landscape */
@media only screen and (min-device-width: 414px) and (max-device-width: 736px) and (orientation : landscape) {

	.container,
	.container-boxed,
	.title-container,
	.footer-container,
	.header-search-wrap #searchform input,
	.top-bar-wrap-boxed {
	    width: 720px;
	}

}