/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

  Mixins available:
    -   css3-prefix             - arguments: Property, Value
    -   background-gradient     - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-horizontal   - arguments: Start Color: #3C3C3C, End Color: #999999
    -   background-radial       - arguments: Start Color: #FFFFFF, Start position: 0%, End Color: #000000, End position: 100%
    -   background-size         - arguments: Width: 100%, Height: 100%
    -   background-opacity      - arguments: Color: #000, Opacity: .85
    -   border-radius           - arguments: Radius: 5px
    -   border-radius-separate  - arguments: Top Left: 5px, Top Right: 5px, Bottom Left: 5px, Bottom Right: 5px
    -   box                     - arguments: Orientation: horizontal, Pack: center, Align: center
    -   box-rgba                - arguments: R: 60, G: 3, B: 12, Opacity: 0.23, Color: #3C3C3C
    -   box-shadow              - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   box-sizing              - arguments: Type: border-box
    -   columns                 - arguments: Count: 3, Gap: 10
    -   double-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Radius: 0
    -   flex                    - arguments: Value: 1
    -   flip                    - arguments: ScaleX: -1
    -   font-face               - arguments: Font Family: myFont, Eot File Src: myFont.eot, Woff File Src: myFont.woff, Ttf File Src: myFont.ttf
    -   opacity                 - arguments: Opacity: 0.5
    -   outline radius          - arguments: Radius: 5px
    -   resize                  - arguments: Direction: both
    -   rotate                  - arguments: Degree: 0, M11: 0, M12: 0, M21: 0, M22: 0
    CSS Matrix Rotation Calculator http://www.boogdesign.com/examples/transforms/matrix-calculator.html
    -   text-shadow             - arguments: X: 2px, Y: 2px, Blur: 5px, Color: rgba(0,0,0,.4)
    -   transform               - arguments: Parameters: null
    -   transform-style         - arguments: Style: preserve-3d
    -   transition              - Default arguments: What: all, Length: 1s, Easing: ease-in-out
    -                            - Examples: @include transition (all 2s ease-in-out);
    -                                        @include transition (opacity 1s ease-in 2s, width 2s ease-out);
    -   triple-borders          - arguments: Color One: #3C3C3C, Color Two: #999999, Color Three: #000000, Radius: 0
    -   keyframes               - arguments: Animation name
                                - content:   Animation css
    -   animation               - arguments: name duration timing-function delay iteration-count direction fill-mode play-state
                                             (http://www.w3schools.com/cssref/css3_pr_animation.asp)

------------------------------------------------------------- */
/* ADDS A BROWSER PREFIX TO THE PROPERTY */
/* Color */
/* Font Size */
/* body font size 15px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* Background */
/* Typography */
/* Meta */
/* 13px */
/* Header */
/* Form */
/* Socials Color */
/* Header */
/* page title */
/* widget */
/* 3rd Extentsion 
 * Variation used for 3rd extensions recommended using in this theme 
*/
/* WooCommerce */
/* Responsive Size */
/* Medium Screen */
/* Small Screen */
/* Extra Small Screen */
/* overlay position  */
/* ANIMATION */
/* Header Top Section */
/* Entry Media */
/* Default Button */
/* CMS Grid */
/* Rev Slider */
/* On Sale */
/* min width 1280px and max width 1599px */
/* All style for RTL language */
@-webkit-keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ } }

@-moz-keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ } }

@-ms-keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ } }

@-o-keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ } }

@keyframes CMSSpin {
  /* Page Loading */
  /* Newton */
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ } }

@keyframes left {
  25% {
    transform: translateX(-250%);
    animation-timing-function: ease-in; }

  50% {
    transform: translateX(-150%); } }

@keyframes right {
  /* wave */
  50% {
    transform: translateX(150%); }

  75% {
    transform: translateX(250%);
    animation-timing-function: ease-in; }

  100% {
    transform: translateX(150%); } }

@keyframes jump1 {
  12% {
    transform: translate(20px, -40px);
    animation-timing-function: ease-in; }

  24% {
    transform: translate(40px, 0); }

  100% {
    transform: translate(40px, 0); } }

@keyframes jump2 {
  12% {
    transform: translate(0, 0); }

  24% {
    transform: translate(20px, -40px);
    animation-timing-function: ease-in; }

  36% {
    transform: translate(40px, 0); }

  100% {
    transform: translate(40px, 0); } }

@keyframes jump3 {
  24% {
    transform: translate(0, 0); }

  36% {
    transform: translate(20px, -40px);
    animation-timing-function: ease-in; }

  48% {
    transform: translate(40px, 0); }

  100% {
    transform: translate(40px, 0); } }

@keyframes wipe {
  /* circus */
  48% {
    transform: translateX(-120px); }

  100% {
    transform: translateX(-120px); } }

@keyframes position {
  50% {
    left: 100%; } }

@keyframes size {
  /* Atom */
  50% {
    transform: scale(0.5, 0.5); } }

@keyframes AtomPosition {
  50% {
    top: 80px;
    left: 80px; } }

@keyframes size {
  50% {
    transform: scale(0.5, 0.5); } }

@keyframes zindex {
  100% {
    z-index: 10; } }

@keyframes shrink {
  /* Fusstion */
  50% {
    transform: scale(0.9, 0.9); } }

@keyframes ball1 {
  50% {
    top: -100%;
    left: 200%;
    background: rgba(127, 127, 0, .5); }

  100% {
    top: 50%;
    left: 100%;
    background: rgba(0, 255, 0, .5);
    z-index: 2; } }

@keyframes ball2 {
  50% {
    top: 200%;
    left: 200%;
    background: rgba(0, 255, 255, .5); }

  100% {
    top: 100%;
    left: 50%;
    background: rgba(0, 0, 255, .5);
    z-index: 1; } }

@keyframes ball3 {
  50% {
    top: 200%;
    left: -100%;
    background: rgba(255, 0, 255, .5); }

  100% {
    top: 50%;
    left: 0%;
    background: rgba(255, 255, 0, .5);
    z-index: 2; } }

@keyframes ball4 {
  /* Mitosis */
  50% {
    top: -100%;
    left: -100%;
    background: rgba(255, 127, 0, .5); }

  100% {
    top: 0%;
    left: 50%;
    background: rgba(255, 0, 0, .5);
    z-index: 1; } }

@keyframes invert {
  100% {
    transform: rotate(180deg); } }

@keyframes Mitosisball1 {
  12% {
    transform: none; }

  26% {
    transform: translateX(25%) scale(1, 0.8); }

  40% {
    transform: translateX(50%) scale(0.8, 0.8); }

  60% {
    transform: translateX(50%) scale(0.8, 0.8); }

  74% {
    transform: translate(50%, 25%) scale(0.6, 0.8); }

  88% {
    transform: translate(50%, 50%) scale(0.6, 0.6); }

  100% {
    transform: translate(50%, 50%) scale(0.6, 0.6); } }

@keyframes Mitosisball2 {
  12% {
    transform: none; }

  26% {
    transform: translateX(25%) scale(1, 0.8); }

  40% {
    transform: translateX(50%) scale(0.8, 0.8); }

  60% {
    transform: translateX(50%) scale(0.8, 0.8); }

  74% {
    transform: translate(50%, -25%) scale(0.6, 0.8); }

  88% {
    transform: translate(50%, -50%) scale(0.6, 0.6); }

  100% {
    transform: translate(50%, -50%) scale(0.6, 0.6); } }

@keyframes Mitosisball3 {
  12% {
    transform: none; }

  26% {
    transform: translateX(-25%) scale(1, 0.8); }

  40% {
    transform: translateX(-50%) scale(0.8, 0.8); }

  60% {
    transform: translateX(-50%) scale(0.8, 0.8); }

  74% {
    transform: translate(-50%, 25%) scale(0.6, 0.8); }

  88% {
    transform: translate(-50%, 50%) scale(0.6, 0.6); }

  100% {
    transform: translate(-50%, 50%) scale(0.6, 0.6); } }

@keyframes Mitosisball4 {
  /* Flower */
  12% {
    transform: none; }

  26% {
    transform: translateX(-25%) scale(1, 0.8); }

  40% {
    transform: translateX(-50%) scale(0.8, 0.8); }

  60% {
    transform: translateX(-50%) scale(0.8, 0.8); }

  74% {
    transform: translate(-50%, -25%) scale(0.6, 0.8); }

  88% {
    transform: translate(-50%, -50%) scale(0.6, 0.6); }

  100% {
    transform: translate(-50%, -50%) scale(0.6, 0.6); } }

@keyframes Flowerball1 {
  6.25% {
    transform: rotate(90deg); }

  12.5% {
    transform: rotate(90deg); }

  18.75% {
    transform: rotate(180deg); }

  25% {
    transform: rotate(180deg); }

  31.25% {
    transform: rotate(270deg); }

  37.5% {
    transform: rotate(270deg); }

  43.75% {
    transform: rotate(360deg); }

  50% {
    transform: rotate(360deg); }

  56.25% {
    transform: rotate(450deg); }

  75% {
    transform: rotate(450deg); }

  87.5% {
    transform: rotate(405deg) scale(1.3, 1.3); }

  100% {
    transform: rotate(360deg) scale(1, 1); } }

@keyframes Flowerball2 {
  12.5% {
    transform: rotate(0); }

  18.75% {
    transform: rotate(90deg); }

  25% {
    transform: rotate(90deg); }

  31.25% {
    transform: rotate(180deg); }

  37.5% {
    transform: rotate(180deg); }

  43.75% {
    transform: rotate(270deg); }

  50% {
    transform: rotate(270deg); }

  56.25% {
    transform: rotate(360deg); }

  62.5% {
    transform: rotate(360deg); }

  68.75% {
    transform: rotate(450deg); }

  75% {
    transform: rotate(450deg); }

  87.5% {
    transform: rotate(405deg) scale(1.3, 1.3); }

  100% {
    transform: rotate(360deg) scale(1, 1); } }

@keyframes Flowerball3 {
  25% {
    transform: rotate(0); }

  31.25% {
    transform: rotate(90deg); }

  75% {
    transform: rotate(90deg); }

  87.5% {
    transform: rotate(45deg) scale(1.3, 1.3); }

  100% {
    transform: rotate(0) scale(1, 1); } }

@keyframes Flowerball4 {
  /* Clock */
  37.5% {
    transform: rotate(0); }

  43.75% {
    transform: rotate(90deg); }

  75% {
    transform: rotate(90deg); }

  87.5% {
    transform: rotate(45deg) scale(1.3, 1.3); }

  100% {
    transform: rotate(0) scale(1, 1); } }

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

@keyframes clock1 {
  0% {
    transform: rotate(-135deg); }

  30% {
    transform: rotate(-450deg); }

  100% {
    transform: rotate(-450deg); } }

@keyframes clock2 {
  5% {
    transform: rotate(-90deg); }

  35% {
    transform: rotate(-405deg); }

  100% {
    transform: rotate(-405deg); } }

@keyframes clock3 {
  10% {
    transform: rotate(-45deg); }

  40% {
    transform: rotate(-360deg); }

  100% {
    transform: rotate(-360deg); } }

@keyframes clock4 {
  /* Washing Machine */
  15% {
    transform: rotate(0); }

  45% {
    transform: rotate(-315deg); }

  100% {
    transform: rotate(-315deg); } }

@keyframes wash {
  /* Pulse */
  100% {
    transform: rotate(1800deg); } }

@keyframes pulse {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 1;
    border-width: 50px; }

  100% {
    transform: scale(1, 1);
    opacity: 0;
    border-width: 0; } }

body {
  word-wrap: break-word; }

.cms-boxed {
  position: relative; }
  @media (min-width: 1280px) {
  .cms-boxed {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto; } }

#cms-loading {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh; }
  #cms-loading .loader {
    width: 100px;
    height: 100px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px;
    -webkit-animation: CMSSpin 0.5s linear infinite;
    -khtml-animation: CMSSpin 0.5s linear infinite;
    -moz-animation: CMSSpin 0.5s linear infinite;
    -ms-animation: CMSSpin 0.5s linear infinite;
    -o-animation: CMSSpin 0.5s linear infinite;
    animation: CMSSpin 0.5s linear infinite;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  #cms-loading .spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -50px 0 0 -50px; }
  #cms-loading .newton .ball {
    height: 50px;
    width: 50px;
    position: absolute;
    left: 50%;
    top: 50%; }
    #cms-loading .newton .ball:before {
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      background: #e84b3a;
      border-radius: 50%;
      position: absolute;
      margin-left: -50%;
      margin-top: -50%; }
    #cms-loading .newton .ball-1:before {
      transform: translateX(-150%);
      animation: 1s ease-out 0s infinite left; }
    #cms-loading .newton .ball-2:before {
      transform: translateX(-50%); }
    #cms-loading .newton .ball-3:before {
      transform: translateX(50%); }
    #cms-loading .newton .ball-4:before {
      transform: translateX(150%);
      animation: 1s ease-out 0s infinite right; }
  #cms-loading .wave.spinner {
    width: 150px;
    height: 30px; }
    #cms-loading .wave .ball {
      height: 30px;
      width: 30px;
      float: left;
      background: #e84b3a;
      border-radius: 50%;
      margin-right: 10px; }
    #cms-loading .wave .ball-1 {
      animation: jump3 1.8s infinite ease-out; }
    #cms-loading .wave .ball-2 {
      animation: jump2 1.8s infinite ease-out; }
    #cms-loading .wave .ball-3 {
      animation: jump1 1.8s infinite ease-out; }
    #cms-loading .wave .ball-4 {
      margin-right: 0;
      animation: wipe 1.8s infinite cubic-bezier(0.5, 0, 0.5, 1); }
  #cms-loading .circus .ball {
    height: 50px;
    width: 50px;
    position: absolute;
    left: 50%;
    top: 50%; }
    #cms-loading .circus .ball:before {
      content: '';
      position: absolute;
      height: 100%;
      width: 100%;
      background: #e84b3a;
      border-radius: 50%;
      margin-left: -50%;
      margin-top: -50%;
      left: -100%;
      animation: position 2s infinite cubic-bezier(0.25, 0, 0.75, 1), size 2s infinite cubic-bezier(0.25, 0, 0.75, 1); }
    #cms-loading .circus .ball-1:before {
      animation-delay: 0s, -0.5s; }
    #cms-loading .circus .ball-2:before {
      animation-delay: -0.5s, -1s; }
    #cms-loading .circus .ball-3:before {
      animation-delay: -1s, -1.5s; }
    #cms-loading .circus .ball-4:before {
      animation-delay: -1.5s, -2s; }
    #cms-loading .circus .spinner {
      height: 100%;
      width: 100%;
      position: absolute; }
  #cms-loading .atom.spinner {
    width: 100px;
    height: 100px; }
    #cms-loading .atom .ball-1 {
      height: 50%;
      width: 50%;
      left: 50%;
      top: 50%;
      position: absolute;
      z-index: 1;
      animation: shrink 4.5s infinite linear; }
    #cms-loading .atom .ball-1:before {
      content: '';
      background: #111;
      border-radius: 50%;
      height: 100%;
      width: 100%;
      position: absolute;
      top: -50%;
      left: -50%; }
    #cms-loading .atom .ball-2, #cms-loading .atom .ball-3, #cms-loading .atom .ball-4 {
      position: absolute;
      width: 100%;
      height: 100%;
      z-index: 0; }
    #cms-loading .atom .ball-2:before, #cms-loading .atom .ball-3:before, #cms-loading .atom .ball-4:before {
      content: '';
      height: 20px;
      width: 20px;
      border-radius: 50%;
      background: #e84b3a;
      top: 0;
      left: 0;
      margin: 0 auto;
      position: absolute; }
    #cms-loading .atom .ball-2 {
      animation: zindex 1.5s 0.75s infinite steps(2, end); }
    #cms-loading .atom .ball-3 {
      transform: rotate(120deg);
      animation: zindex 1.5s -0.25s infinite steps(2, end); }
    #cms-loading .atom .ball-4 {
      transform: rotate(240deg);
      animation: zindex 1.5s 0.25s infinite steps(2, end); }
    #cms-loading .atom .ball-2:before {
      transform: rotate(0);
      animation: AtomPosition 1.5s infinite ease, size 1.5s -1.125s infinite ease; }
    #cms-loading .atom .ball-3:before {
      animation: AtomPosition 1.5s -1s infinite ease, size 1.5s -0.75s infinite ease; }
    #cms-loading .atom .ball-4:before {
      animation: AtomPosition 1.5s -0.5s infinite ease, size 1.5s -0.125s infinite ease; }
  #cms-loading .fussion.spinner {
    width: 30px;
    height: 30px; }
    #cms-loading .fussion .ball {
      height: 50px;
      width: 50px;
      left: 50%;
      top: 50%;
      background: rgba(0, 255, 0, .5);
      border-radius: 50%;
      float: left;
      position: absolute; }
    #cms-loading .fussion .ball-1 {
      background: rgba(255, 0, 0, .5);
      top: 0;
      left: 50%;
      animation: ball1 1s 0s ease infinite;
      z-index: 1; }
    #cms-loading .fussion .ball-2 {
      background: rgba(0, 255, 0, .5);
      top: 50%;
      left: 100%;
      animation: ball2 1s 0s ease infinite;
      z-index: 2; }
    #cms-loading .fussion .ball-3 {
      background: rgba(0, 0, 255, .5);
      top: 100%;
      left: 50%;
      animation: ball3 1s 0s ease infinite;
      z-index: 1; }
    #cms-loading .fussion .ball-4 {
      background: rgba(255, 255, 0, .5);
      top: 50%;
      left: 0%;
      animation: ball4 1s 0s ease infinite;
      z-index: 2; }
  #cms-loading .mitosis.spinner {
    height: 50px;
    width: 50px;
    animation: invert 2s infinite steps(2, end); }
    #cms-loading .mitosis .ball {
      height: 100%;
      width: 100%;
      position: absolute;
      border-radius: 50%;
      top: 0;
      left: 0;
      background: #e84b3a; }
    #cms-loading .mitosis .ball-1 {
      animation: Mitosisball1 1s infinite alternate linear; }
    #cms-loading .mitosis .ball-2 {
      animation: Mitosisball2 1s infinite alternate linear; }
    #cms-loading .mitosis .ball-3 {
      animation: Mitosisball3 1s infinite alternate linear; }
    #cms-loading .mitosis .ball-4 {
      animation: Mitosisball4 1s infinite alternate linear; }
  #cms-loading .flower.spinner {
    width: 26.25px;
    height: 26.25px; }
    #cms-loading .flower .ball {
      height: 30px;
      width: 30px;
      position: absolute;
      background: #e84b3a;
      border-radius: 50%; }
    #cms-loading .flower .ball-1 {
      left: -15px;
      top: -15px;
      transform-origin: 28.125px 28.125px;
      animation: Flowerball1 6s infinite linear; }
    #cms-loading .flower .ball-2 {
      left: 11.25px;
      top: -15px;
      transform-origin: 1.875px 28.125px;
      animation: Flowerball2 6s infinite linear; }
    #cms-loading .flower .ball-3 {
      left: 11.25px;
      top: 11.25px;
      transform-origin: 1.875px 1.875px;
      animation: Flowerball3 6s infinite linear; }
    #cms-loading .flower .ball-4 {
      left: -15px;
      top: 11.25px;
      transform-origin: 28.125px 1.875px;
      animation: Flowerball4 6s infinite linear; }
  #cms-loading .clock.spinner {
    width: 50px;
    height: 50px;
    animation: clock 8s infinite steps(8); }
    #cms-loading .clock .ball {
      height: 50px;
      width: 50px;
      position: absolute; }
    #cms-loading .clock .ball:before {
      content: '';
      border-radius: 50%;
      height: 18.31502px;
      width: 18.31502px;
      position: absolute;
      background: #e84b3a; }
    #cms-loading .clock .ball-1 {
      transform: rotate(-135deg);
      animation: clock1 1s ease-in infinite; }
    #cms-loading .clock .ball-2 {
      transform: rotate(-90deg);
      animation: clock2 1s ease-in infinite; }
    #cms-loading .clock .ball-3 {
      transform: rotate(-45deg);
      animation: clock3 1s ease-in infinite; }
    #cms-loading .clock .ball-4 {
      animation: clock4 1s ease-in infinite; }
  #cms-loading .washing-machine.spinner {
    width: 80px;
    height: 80px;
    animation: wash 2s infinite alternate cubic-bezier(0.5, 0, 0.5, 1); }
    #cms-loading .washing-machine .ball-1 {
      height: 100%;
      width: 100%;
      left: 50%;
      top: 50%;
      position: absolute;
      z-index: 1; }
    #cms-loading .washing-machine .ball-1:before {
      content: '';
      border-radius: 50%;
      border: 15px solid #e84b3a;
      height: 100%;
      width: 100%;
      position: absolute;
      top: -50%;
      left: -50%;
      box-sizing: border-box; }
    #cms-loading .washing-machine .ball-2, #cms-loading .washing-machine .ball-3, #cms-loading .washing-machine .ball-4 {
      width: 80px;
      height: 80px;
      position: absolute;
      z-index: 2; }
    #cms-loading .washing-machine .ball-2:before, #cms-loading .washing-machine .ball-3:before, #cms-loading .washing-machine .ball-4:before {
      border: 5px solid #e84b3a;
      background: #fff;
      content: '';
      border-radius: 50%;
      width: 15px;
      height: 15px;
      position: absolute;
      left: 27.5px;
      top: -5px; }
    #cms-loading .washing-machine .ball-2 {
      transform: rotate(120deg); }
    #cms-loading .washing-machine .ball-3 {
      transform: rotate(240deg); }
  #cms-loading .pulse.spinner {
    width: 100px;
    height: 100px; }
    #cms-loading .pulse .spinner * {
      box-sizing: border-box; }
    #cms-loading .pulse .ball {
      height: 100%;
      width: 100%;
      background: #e84b3a;
      position: absolute;
      border-radius: 50%;
      border: 0px solid #e84b3a;
      animation: pulse 3s infinite; }
    #cms-loading .pulse .ball-2 {
      animation-delay: -0.75s; }
    #cms-loading .pulse .ball-3 {
      animation-delay: -1.5s; }
    #cms-loading .pulse .ball-4 {
      animation-delay: -2.25s; }

#cms-page {
  overflow-x: hidden;
  position: relative; }

.overlay, .overlay-pos {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Vertical Align */ }

.vertical-align {
  top: 50%;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  /* Horizontal Align */
  /* Overlay content */ }

.overlay-wrap {
  position: relative;
  display: block;
  overflow: hidden; }
  .overlay-wrap .overlay {
    background: rgba(17, 17, 17, 0.7);
    color: #fff;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
    .overlay-wrap .overlay .overlay-inner {
      padding: 20px;
      width: 100%; }
      .overlay-wrap .overlay .overlay-inner.bottom-align {
        position: absolute;
        bottom: 0; }
        .overlay-wrap .overlay .overlay-inner.bottom-align.gradient-bg {
          padding: 50px 40px 40px;
          background-color: transparent;
          background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
          background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
          background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
          background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
          background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
          background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
          filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='rgba(0, 0, 0, 0.8)');
          /* top to bottom */ }
          @media (min-width: 992px) {
  .overlay-wrap .overlay .overlay-inner.bottom-align.gradient-bg {
    padding-top: 162px; } }
      .overlay-wrap .overlay .overlay-inner.center-align {
        top: 50%;
        left: 50%;
        position: absolute;
        -webkit-transform: translate(-50%,-50%);
        -khtml-transform: translate(-50%,-50%);
        -moz-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
        -o-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%);
        /* BACKGROUND GRADIENT */
        /* bottom to top */
        /* image fit */ }
      .overlay-wrap .overlay .overlay-inner .icon-group {
        background-color: #fff;
        display: inline-block; }
        .overlay-wrap .overlay .overlay-inner .icon-group a {
          width: 73px;
          height: 73px;
          line-height: 73px;
          display: inline-block;
          text-align: center;
          font-size: 176.47059%;
          position: relative; }
          .overlay-wrap .overlay .overlay-inner .icon-group a:before {
            line-height: 73px; }
          .overlay-wrap .overlay .overlay-inner .icon-group a:after {
            content: "";
            display: block;
            width: 1px;
            height: 33px;
            background: #ddd;
            position: absolute;
            top: 20px;
            right: 0; }
          .overlay-wrap .overlay .overlay-inner .icon-group a:last-child:after {
            display: none; }
      .overlay-wrap .overlay .overlay-inner .icon-list {
        margin-left: -3px;
        margin-right: -3px; }
        .overlay-wrap .overlay .overlay-inner .icon-list > a {
          display: inline-block;
          width: 40px;
          height: 40px;
          line-height: 38px;
          text-align: center;
          font-size: 15px;
          color: #fff;
          border: 1px solid #fff;
          margin: 0 3px;
          -webkit-border-radius: 50%;
          -khtml-border-radius: 50%;
          -moz-border-radius: 50%;
          -ms-border-radius: 50%;
          -o-border-radius: 50%;
          border-radius: 50%;
          /* BACKGROUND GRADIENT */
          /* bottom to top */ }
          .overlay-wrap .overlay .overlay-inner .icon-list > a:hover {
            background-color: #e84b3a;
            border-color: #e84b3a; }
    .overlay-wrap .overlay h1, .overlay-wrap .overlay h2, .overlay-wrap .overlay h3, .overlay-wrap .overlay h4, .overlay-wrap .overlay h5, .overlay-wrap .overlay h6, .overlay-wrap .overlay .entry-meta, .overlay-wrap .overlay .entry-meta a, .overlay-wrap .overlay a {
      color: #fff; }
  .overlay-wrap:hover .overlay {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }

.has-box-shadow {
  border: 1px solid #eee;
  -webkit-box-shadow: 0 1px 9px #ddd;
  -khtml-box-shadow: 0 1px 9px #ddd;
  -moz-box-shadow: 0 1px 9px #ddd;
  -ms-box-shadow: 0 1px 9px #ddd;
  -o-box-shadow: 0 1px 9px #ddd;
  box-shadow: 0 1px 9px #ddd;
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  /* BOX SIZING */
  /* mouse Wheel */ }

.cms-mousewheel {
  overflow: hidden;
  /* Back to Top */ }
  .cms-mousewheel .cms-mousewheel-inner {
    max-height: 411px;
    overflow-x: hidden;
    width: calc(100% + 40px);
    padding-right: 40px; }

#cms-backtotop {
  position: fixed;
  right: 20px;
  background: #e84b3a;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  z-index: 1; }
  #cms-backtotop.off {
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */
    bottom: -100%; }
  #cms-backtotop.on {
    bottom: 15px; }

.cms-header-rev-slider {
  border-bottom: 1px solid #eee; }

.break-row {
  clear: left;
  /* */ }

.wc-filering {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
  cursor: progress;
  /* Logged in */ }

.admin-bar .cms-nav-extra .cms-header-popup .popup.cms-tools {
  top: 32px; }

#cms-header-top {
  /* Main Header */ }
  #cms-header-top > .no-container {
    padding-left: 4.16667%;
    padding-right: 4.16667%; }
  #cms-header-top .widget {
    margin-bottom: 30px; }
    #cms-header-top .widget:last-child {
      margin-bottom: 0; }
  @media (max-width: 991px) {
  #cms-header-top [class*="col-"], #cms-header-top [class^="col-"] {
    margin-top: 30px; }
    #cms-header-top [class*="col-"]:first-child, #cms-header-top [class^="col-"]:first-child {
      margin-top: 0; } }

.cms-header {
  z-index: 2;
  position: relative;
  /* Header inner */ }
  .cms-header .no-container {
    padding-left: 4.16667%;
    padding-right: 4.16667%; }
  .cms-header.has-shadow {
    -webkit-box-shadow: 2px 2px 3px #e5e5e5;
    -khtml-box-shadow: 2px 2px 3px #e5e5e5;
    -moz-box-shadow: 2px 2px 3px #e5e5e5;
    -ms-box-shadow: 2px 2px 3px #e5e5e5;
    -o-box-shadow: 2px 2px 3px #e5e5e5;
    box-shadow: 2px 2px 3px #e5e5e5;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* Breaked out Menu */ }
  .cms-header.break-header .cms-header-hotline, .cms-header.break-header .cms-nav-extra .cms-header-popup .header-icon, .cms-header.break-header .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li > a, .cms-header.break-header .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li > a {
    height: 50px;
    line-height: 50px; }
    .cms-header.break-header .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul, .cms-header.break-header .cms-navigation:not(.mobile-nav) ul.cms-main-navigation {
      margin: 0; }

@media (min-width: 1200px) {
  /* Logo */
    .cms-header-inner2 {
      width: calc(100% - 148px); } }

#cms-header-logo {
  width: 148px;
  max-width: 50%;
  height: 100px;
  display: table; }
  #cms-header-logo a {
    display: table-cell;
    vertical-align: middle; }
    #cms-header-logo a.default {
      padding-right: 20px; }
    #cms-header-logo a.v2 {
      padding-right: 10px;
      padding-left: 10px; }
    #cms-header-logo a:empty {
      display: none; }
    #cms-header-logo a img {
      max-height: 100px; }
  #cms-header-logo .logo-text {
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1; }

.ontop-logo, .sticky-logo {
  display: none;
  /* Ontop Header */ }

.header-ontop {
  position: absolute;
  left: 0;
  right: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(238, 238, 238, 0.3);
  /* Sticky Header */ }
  .header-ontop .main-logo, .header-ontop .sticky-logo {
    display: none; }
  .header-ontop .ontop-logo {
    display: inline-block; }
  .header-ontop .cms-header-hotline span {
    color: #ccc;
    border-color: #ccc; }
    .header-ontop .cms-header-hotline:hover span {
      color: #fff;
      border-color: #fff; }
  .header-ontop .cms-nav-extra a.header-icon {
    color: #ccc; }
    .header-ontop .cms-nav-extra a.header-icon:hover {
      color: #fff; }

.header-sticky {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 10;
  /* Header Hotline */ }
  .header-sticky .main-logo, .header-sticky .ontop-logo {
    display: none; }
  .header-sticky .sticky-logo {
    display: inline-block; }
  .header-sticky .cms-header-hotline span {
    color: #ccc;
    border-color: #ccc; }
    .header-sticky .cms-header-hotline:hover span {
      color: #fff;
      border-color: #fff; }
  @media (min-width: 1201px) {
  .header-sticky .cms-nav-extra.has-extra .cms-header-popup:before {
    background: transparent; } }

.cms-header-hotline {
  line-height: 100px;
  padding-left: 50px;
  /* Extra attribute */ }
  .cms-header-hotline span {
    display: inline;
    font-size: 16px;
    padding: 11px 20px;
    color: #111;
    letter-spacing: 2.56px;
    border: 2px solid #111; }
  .cms-header-hotline:hover span {
    color: #e84b3a;
    border-color: #e84b3a; }

.cms-nav-extra {
  /* Header Default */ }
  .cms-nav-extra .cms-header-popup {
    height: 100px;
    position: relative; }
    .cms-nav-extra .cms-header-popup .header-icon {
      height: 100px;
      line-height: 100px;
      display: block;
      float: left;
      margin-right: 10px; }
      .cms-nav-extra .cms-header-popup .header-icon:last-child {
        margin-right: 0; }
      .cms-nav-extra .cms-header-popup .header-icon i {
        cursor: pointer;
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        text-align: center;
        font-size: 14px;
        position: relative; }
        .cms-nav-extra .cms-header-popup .header-icon i .cart_total {
          position: absolute;
          top: -5px;
          left: 15px;
          height: 13px;
          min-width: 13px;
          -webkit-border-radius: 50%;
          -khtml-border-radius: 50%;
          -moz-border-radius: 50%;
          -ms-border-radius: 50%;
          -o-border-radius: 50%;
          border-radius: 50%;
          /* BACKGROUND GRADIENT */
          /* bottom to top */
          color: #fff;
          background-color: #111;
          line-height: 13px;
          font-size: 8px;
          padding: 0 3px;
          font-family: Noto Serif; }
    .cms-nav-extra .cms-header-popup .popup {
      display: none;
      width: 320px;
      position: absolute;
      top: 100%;
      z-index: 21;
      background: #fff;
      border: 1px solid #fff;
      padding: 10px;
      vertical-align: inherit; }
      .cms-nav-extra .cms-header-popup .popup.cms-cart {
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px; }
      .cms-nav-extra .cms-header-popup .popup.cms-tools {
        position: fixed;
        top: 0;
        bottom: 0;
        width: 360px;
        max-width: 100%;
        padding: 0; }
        .cms-nav-extra .cms-header-popup .popup.cms-tools .cms-mousewheel-inner {
          max-height: 100%;
          padding: 70px 80px 30px 60px; }
          .cms-nav-extra .cms-header-popup .popup.cms-tools .cms-mousewheel-inner .header-icon {
            line-height: 70px;
            width: 70px;
            height: 70px;
            border: none;
            padding: 0;
            display: block;
            float: none; }
            .cms-nav-extra .cms-header-popup .popup.cms-tools .cms-mousewheel-inner .header-icon i {
              font-size: 35px;
              text-align: left;
              color: red;
              -webkit-transform: translate(-10px, -10px);
              -khtml-transform: translate(-10px, -10px);
              -moz-transform: translate(-10px, -10px);
              -ms-transform: translate(-10px, -10px);
              -o-transform: translate(-10px, -10px);
              transform: translate(-10px, -10px);
              /* BACKGROUND GRADIENT */
              /* bottom to top */
              /* TRANSFORM STYLE */ }
          .cms-nav-extra .cms-header-popup .popup.cms-tools .cms-mousewheel-inner .widget_nav_menu ul.menu li, .cms-nav-extra .cms-header-popup .popup.cms-tools .cms-mousewheel-inner .menu li {
            border-bottom: 0;
            text-transform: uppercase; }
            .cms-nav-extra .cms-header-popup .popup.cms-tools .cms-mousewheel-inner .widget_nav_menu ul.menu li a, .cms-nav-extra .cms-header-popup .popup.cms-tools .cms-mousewheel-inner .menu li a {
              padding-left: 0;
              font-size: 80%; }
        @media (max-width: 767px) {
  .cms-nav-extra .cms-header-popup .popup.cms-tools .cms-mousewheel-inner {
    padding: 30px 40px 30px 20px; } }
      @media (max-width: 320px) {
    .cms-nav-extra .cms-header-popup .popup.cms-search {
      right: -15px !important;
      left: auto !important; } }
  .cms-nav-extra .cms-tools .widget {
    margin-bottom: 60px; }

.cms-header-default {
  /* Header V2 */ }
  @media (min-width: 1200px) {
      .cms-header-default .cms-header-hotline.pull-left {
        padding-left: 115px;
        padding-right: 15px; } }
    @media (min-width: 1200px) {
    .cms-header-default .cms-header-hotline.pull-right {
      padding-left: 20px;
      padding-right: 20px; } }
    @media (max-width: 767px) {
  .cms-header-default .cms-header-hotline {
    display: none; } }

.cms-header-v2 {
  /* Header V3 */ }
  @media (min-width: 1200px) {
  .cms-header-v2 div.cms-main-navigation > ul > li, .cms-header-v2 ul.cms-main-navigation > li {
    display: table-cell;
    width: 1%;
    float: none;
    padding-left: 10px;
    padding-right: 10px; }
    .cms-header-v2 div.cms-main-navigation > ul > li > a, .cms-header-v2 ul.cms-main-navigation > li > a {
      width: 100%;
      text-align: center; } }

.cms-header-v3 {
  /* Header V4 */ }
  .cms-header-v3 #cms-header {
    text-align: center; }
    .cms-header-v3 #cms-header #cms-header-logo {
      display: block;
      height: 120px;
      line-height: 118px;
      border-bottom: 2px solid #ebebeb;
      width: auto;
      max-width: inherit; }
      .cms-header-v3 #cms-header #cms-header-logo a {
        display: block; }
    .cms-header-v3 #cms-header #cms-navigation, .cms-header-v3 #cms-header .cms-nav-extra {
      display: inline-block;
      vertical-align: top;
      text-align: start; }

.cms-header-v4 {
  /* Header V5 */ }
  @media (max-width: 767px) {
    .cms-header-v4 .cms-header-top2 + #cms-header #cms-header-logo {
      padding: 5px 0; }
      .cms-header-v4 .cms-header-top2 + #cms-header #cms-header-logo img {
        background-color: transparent; } }

.cms-header-v5 {
  /* Header V6 */ }
  .cms-header-v5 #cms-header-logo {
    max-width: inherit;
    text-align: center;
    padding-left: 10px;
    padding-right: 10px;
    background-color: #111; }
  @media (min-width: 1200px) {
  .cms-header-v5 .cms-header .no-container {
    padding-left: 0;
    padding-right: 0; }
  .cms-header-v5 #cms-header-logo {
    width: 12.5%; }
  .cms-header-v5 #cms-navigation {
    width: calc(75%); }
    .cms-header-v5 #cms-navigation div.cms-main-navigation > ul > li, .cms-header-v5 #cms-navigation ul.cms-main-navigation > li {
      display: table-cell;
      width: 1%;
      float: none;
      padding-left: 10px;
      padding-right: 10px;
      border-right: 1px solid rgba(136, 136, 136, 0.1);
      -webkit-transition: all 300ms linear 0ms;
      -khtml-transition: all 300ms linear 0ms;
      -moz-transition: all 300ms linear 0ms;
      -ms-transition: all 300ms linear 0ms;
      -o-transition: all 300ms linear 0ms;
      transition: all 300ms linear 0ms;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* TRIPLE BORDERS */ }
      .cms-header-v5 #cms-navigation div.cms-main-navigation > ul > li > a, .cms-header-v5 #cms-navigation ul.cms-main-navigation > li > a {
        width: 100%;
        text-align: center; }
      .cms-header-v5 #cms-navigation div.cms-main-navigation > ul > li:last-child, .cms-header-v5 #cms-navigation ul.cms-main-navigation > li:last-child {
        border-right: 0;
        /* Hover state */ }
      .cms-header-v5 #cms-navigation div.cms-main-navigation > ul > li:hover, .cms-header-v5 #cms-navigation ul.cms-main-navigation > li:hover, .cms-header-v5 #cms-navigation div.cms-main-navigation > ul > li:active, .cms-header-v5 #cms-navigation ul.cms-main-navigation > li:active, .cms-header-v5 #cms-navigation div.cms-main-navigation > ul > li:focus, .cms-header-v5 #cms-navigation ul.cms-main-navigation > li:focus {
        background-color: #111; }
        .cms-header-v5 #cms-navigation div.cms-main-navigation > ul > li:hover > a, .cms-header-v5 #cms-navigation ul.cms-main-navigation > li:hover > a, .cms-header-v5 #cms-navigation div.cms-main-navigation > ul > li:active > a, .cms-header-v5 #cms-navigation ul.cms-main-navigation > li:active > a, .cms-header-v5 #cms-navigation div.cms-main-navigation > ul > li:focus > a, .cms-header-v5 #cms-navigation ul.cms-main-navigation > li:focus > a {
          color: #fff; }
  .cms-header-v5 .cms-nav-extra {
    width: 12.5%; }
    .cms-header-v5 .cms-nav-extra.has-extra .cms-header-popup:before {
      display: none; }
      .cms-header-v5 .cms-nav-extra.has-extra .header-icon {
        display: table-cell;
        vertical-align: middle;
        width: 1%;
        float: none;
        text-align: center;
        padding-left: 10px;
        padding-right: 10px;
        border-left: 1px solid rgba(136, 136, 136, 0.1); }
        .cms-header-v5 .cms-nav-extra.has-extra .header-icon .cart_total {
          top: -3px; } }

.cms-header-v6 {
  /* Header V7 */ }
  @media (min-width: 1201px) {
  .cms-header-v6 #cms-header {
    float: left;
    width: 300px;
    padding-bottom: 30px;
    /* Logo */ }
    .cms-header-v6 #cms-header.header-sticky {
      right: auto;
      bottom: 0; }

    .cms-header-v6 #cms-header > div {
      padding-left: 18.66667%;
      padding-right: 14.13333%; }

    .cms-header-v6 #cms-header.header-ontop #cms-header-logo {
      padding-top: 36px;
      padding-bottom: 60px; }
      .cms-header-v6 #cms-header.header-ontop .cms-nav-extra {
        position: fixed;
        top: 25px;
        right: 5.2%; }
        .cms-header-v6 #cms-header.header-ontop .cms-nav-extra .header-icon i {
          text-align: center; }
          .cms-header-v6 #cms-header.header-ontop .cms-nav-extra .header-icon .cart_total {
            left: 28px !important; }

    .cms-header-v6 #cms-header .cms-header-hotline {
      padding-left: 0; }
  .cms-header-v6 #cms-header-logo {
    display: block;
    height: inherit;
    width: 100%;
    max-width: 100%;
    padding-top: 70px;
    padding-bottom: 45px;
    /* Attribute */ }
  .cms-header-v6 .cms-nav-extra {
    float: none !important; }
    .cms-header-v6 .cms-nav-extra:not(.has-extra) {
      display: none; }

    .cms-header-v6 .cms-nav-extra .cms-header-popup:before {
      display: none; }

    .cms-header-v6 .cms-nav-extra .header-icon i {
      text-align: left; }
      .cms-header-v6 .cms-nav-extra .header-icon .cart_total {
        left: 15px !important;
        right: auto; }
  .cms-header-v6 .cms-navigation {
    max-width: inherit;
    /* Menu */ }
  .cms-header-v6 div.cms-main-navigation > ul > li, .cms-header-v6 ul.cms-main-navigation > li {
    float: none;
    padding-left: 0;
    padding-right: 0;
    /* Main Content */ }
    .cms-header-v6 div.cms-main-navigation > ul > li > a, .cms-header-v6 ul.cms-main-navigation > li > a {
      line-height: 46px;
      height: 46px;
      width: 100%; }

    .cms-header-v6 div.cms-main-navigation > ul > li .sub-menu, .cms-header-v6 ul.cms-main-navigation > li .sub-menu {
      margin-top: 0;
      top: 0;
      left: calc(100% + 40px); }

    .cms-header-v6 div.cms-main-navigation > ul > li:hover .sub-menu, .cms-header-v6 ul.cms-main-navigation > li:hover .sub-menu {
      left: 100%; }
  .cms-header-v6 #cms-page-content-wrapper {
    overflow: hidden;
    -webkit-box-shadow: inset 0px 0px 12px #f7f7f7;
    -khtml-box-shadow: inset 0px 0px 12px #f7f7f7;
    -moz-box-shadow: inset 0px 0px 12px #f7f7f7;
    -ms-box-shadow: inset 0px 0px 12px #f7f7f7;
    -o-box-shadow: inset 0px 0px 12px #f7f7f7;
    box-shadow: inset 0px 0px 12px #f7f7f7;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* BOX SIZING */
    /*Logged in */ }
  .cms-header-v6.admin-bar #cms-header .cms-nav-extra {
    top: 55px; } }
  @media (max-width: 1200px) {
  .cms-header-v6 #cms-header {
    width: 100% !important;
    padding-left: 30px;
    padding-right: 30px; }
  .cms-header-v6 #cms-page-content-wrapper {
    float: none !important; } }

@media (min-width: 1200px) {
    .cms-header-v7 #cms-left-sidebar {
      float: left;
      width: 300px;
      padding-bottom: 30px;
      /* Main Content */ }
      .cms-header-v7 #cms-left-sidebar .cms-left-sidebar-inner {
        padding: 0 20%; }
      .cms-header-v7 #cms-left-sidebar .sidebar-logo {
        padding: 75px 0 40px 0; }
      .cms-header-v7 #cms-left-sidebar .widget {
        margin-bottom: 80px;
        text-align: center; }
        .cms-header-v7 #cms-left-sidebar .widget:last-child {
          margin-bottom: 0; }
    .cms-header-v7 #cms-page-content-wrapper {
      position: relative;
      overflow: hidden;
      -webkit-box-shadow: inset 0px 0px 12px #f7f7f7;
      -khtml-box-shadow: inset 0px 0px 12px #f7f7f7;
      -moz-box-shadow: inset 0px 0px 12px #f7f7f7;
      -ms-box-shadow: inset 0px 0px 12px #f7f7f7;
      -o-box-shadow: inset 0px 0px 12px #f7f7f7;
      box-shadow: inset 0px 0px 12px #f7f7f7;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* BOX SIZING */ }
    .cms-header-v7 .cms-nav-extra #cms-menu-mobile {
      display: table !important; }
    .cms-header-v7 #cms-menu-mobile-close {
      position: absolute;
      top: 0;
      left: 0;
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      color: #111;
      background: #fff;
      z-index: 1;
      font-size: 200%;
      cursor: pointer; }
      .cms-header-v7 #cms-menu-mobile-close:hover {
        background: #111;
        color: #fff; }
    .cms-header-v7 #cms-navigation {
      width: 300px;
      position: fixed;
      top: 0;
      right: -100%;
      bottom: 0;
      padding: 50px 15px;
      overflow: hidden;
      /* Menu */
      -webkit-transition: all 300ms linear 0ms;
      -khtml-transition: all 300ms linear 0ms;
      -moz-transition: all 300ms linear 0ms;
      -ms-transition: all 300ms linear 0ms;
      -o-transition: all 300ms linear 0ms;
      transition: all 300ms linear 0ms;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* TRIPLE BORDERS */
      /* Logged in */ }
      .cms-header-v7 #cms-navigation div.cms-main-navigation {
        width: calc(100% + 30px);
        padding-right: 30px;
        overflow-x: hidden;
        max-height: 100%; }
      .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li {
        float: none;
        padding-left: 0;
        padding-right: 0;
        overflow: hidden; }
        .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li > a, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li > a {
          line-height: 50px;
          height: 50px; }
        .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li .sub-menu, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li .sub-menu {
          max-width: 100%;
          min-width: 100%;
          position: relative;
          max-height: 0;
          border: none;
          padding: 0;
          top: 0;
          left: 0; }
          .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li .sub-menu.submenu-open, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li .sub-menu.submenu-open {
            max-height: 10000px;
            visibility: visible;
            filter: alpha(opacity=100);
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            -webkit-opacity: 1;
            -khtml-opacity: 1;
            -moz-opacity: 1;
            -ms-opacity: 1;
            -o-opacity: 1;
            opacity: 1;
            /* BACKGROUND GRADIENT */
            /* bottom to top */
            /* OUTLINE RADIUS */ }
          .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li .sub-menu .sub-menu, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li .sub-menu .sub-menu {
            padding-top: 10px; }
        .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li .cms-menu-toggle, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li .cms-menu-toggle {
          display: block;
          top: 0px;
          -webkit-transform: translateY(0);
          -khtml-transform: translateY(0);
          -moz-transform: translateY(0);
          -ms-transform: translateY(0);
          -o-transform: translateY(0);
          transform: translateY(0);
          /* BACKGROUND GRADIENT */
          /* bottom to top */
          /* TRANSFORM STYLE */ }
        .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li > .cms-menu-toggle, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li > .cms-menu-toggle {
          top: 10px; }
        .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li:hover, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li:hover {
          /* Grouped */ }
          .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li:hover .sub-menu, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li:hover .sub-menu {
            visibility: hidden;
            filter: alpha(opacity=0);
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
            -webkit-opacity: 0;
            -khtml-opacity: 0;
            -moz-opacity: 0;
            -ms-opacity: 0;
            -o-opacity: 0;
            opacity: 0;
            /* BACKGROUND GRADIENT */
            /* bottom to top */
            /* OUTLINE RADIUS */ }
            .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li:hover .sub-menu.submenu-open, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li:hover .sub-menu.submenu-open {
              visibility: visible;
              filter: alpha(opacity=100);
              -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
              -webkit-opacity: 1;
              -khtml-opacity: 1;
              -moz-opacity: 1;
              -ms-opacity: 1;
              -o-opacity: 1;
              opacity: 1;
              /* BACKGROUND GRADIENT */
              /* bottom to top */
              /* OUTLINE RADIUS */ }
        .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li.group > .sub-menu, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li.group > .sub-menu, .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li .group > .sub-menu, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li .group > .sub-menu {
          max-height: inherit;
          visibility: visible;
          filter: alpha(opacity=100);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
          -webkit-opacity: 1;
          -khtml-opacity: 1;
          -moz-opacity: 1;
          -ms-opacity: 1;
          -o-opacity: 1;
          opacity: 1;
          /* BACKGROUND GRADIENT */
          /* bottom to top */
          /* OUTLINE RADIUS */ }
          .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li.group > .cms-menu-toggle, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li.group > .cms-menu-toggle, .cms-header-v7 #cms-navigation div.cms-main-navigation > ul > li .group > .cms-menu-toggle, .cms-header-v7 #cms-navigation ul.cms-main-navigation > li .group > .cms-menu-toggle {
            display: none; }
      .cms-header-v7 #cms-navigation.open {
        right: 0; }
    .cms-header-v7.admin-bar #cms-navigation {
      top: 32px; } }
  @media (max-width: 1200px) {
  .cms-header-v7 #cms-menu-mobile-close, .cms-header-v7 #cms-left-sidebar {
    display: none; } }

.cms-menu-toggle {
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  cursor: pointer;
  display: block;
  position: absolute;
  top: 3px;
  right: 0;
  /* Mega Menu */
  /* menu icon */ }

.menu-icon {
  margin-right: 10px;
  /* Menu title */ }

.menu-title .title-attribute {
  display: block;
  text-transform: none;
  font-style: italic;
  font-size: 80%;
  /* Badge Icon */ }
  .menu-title .menu-badge {
    position: relative;
    top: -10px;
    margin-left: 10px;
    background-color: #e84b3a;
    color: #fff;
    text-transform: uppercase;
    font-size: 66.6667%;
    line-height: 1;
    padding: 5px 7px; }
    .menu-title .menu-badge:after {
      content: "";
      width: 0;
      height: 0;
      display: block;
      border-width: 2px;
      border-style: solid;
      border-color: #e84b3a transparent transparent #e84b3a;
      position: absolute;
      bottom: -4px;
      left: 0; }

div.cms-main-navigation > ul, ul.cms-main-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  /* Desktop menu */ }
  div.cms-main-navigation > ul li, ul.cms-main-navigation li {
    position: relative;
    display: block; }

.cms-navigation:not(.mobile-nav) {
  /* Header Ontop */ }
  .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul li, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation li {
    /* First Level */ }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul li:hover > ul, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation li:hover > ul {
      visibility: visible;
      top: 100%;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-opacity: 1;
      -khtml-opacity: 1;
      -moz-opacity: 1;
      -ms-opacity: 1;
      -o-opacity: 1;
      opacity: 1;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* OUTLINE RADIUS */ }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li {
      padding-left: 20px;
      padding-right: 20px;
      float: left;
      overflow: hidden;
      /* Level 2+ */ }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li > a {
      line-height: 100px;
      height: 100px;
      position: relative;
      display: table; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li > a .menu-title, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li > a .menu-title {
        position: relative;
        display: table-cell;
        vertical-align: middle;
        line-height: normal; }
        .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li > a .menu-title:after, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li > a .menu-title:after {
          content: "";
          display: block;
          height: 2px;
          width: 0;
          margin-top: 1px;
          position: absolute;
          left: 0;
          -webkit-transition: all 300ms linear 0ms;
          -khtml-transition: all 300ms linear 0ms;
          -moz-transition: all 300ms linear 0ms;
          -ms-transition: all 300ms linear 0ms;
          -o-transition: all 300ms linear 0ms;
          transition: all 300ms linear 0ms;
          /* BACKGROUND GRADIENT */
          /* bottom to top */
          /* TRIPLE BORDERS */ }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li > .cms-menu-toggle {
      color: #111;
      /* Hover State */ }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:hover, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:hover {
      overflow: visible;
      /* Active State */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:hover > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:hover > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:hover > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:hover > .cms-menu-toggle {
        color: #e84b3a; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:hover > a .menu-title:after, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:hover > a .menu-title:after {
        background-color: #e84b3a;
        width: 100%; }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current-menu-item, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current-menu-item, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current_page_item, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current_page_item, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current-menu-ancestor, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current-menu-ancestor, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current_page_ancestor, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current_page_ancestor, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:active, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:active, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:focus, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:focus {
      /* Has Childrent */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current-menu-item > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current-menu-item > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current_page_item > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current_page_item > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current-menu-ancestor > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current-menu-ancestor > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current_page_ancestor > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current_page_ancestor > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:active > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:active > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:focus > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:focus > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current-menu-item > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current-menu-item > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current_page_item > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current_page_item > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current-menu-ancestor > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current-menu-ancestor > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current_page_ancestor > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current_page_ancestor > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:active > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:active > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:focus > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:focus > .cms-menu-toggle {
        color: #e84b3a; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current-menu-item > a .menu-title:after, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current-menu-item > a .menu-title:after, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current_page_item > a .menu-title:after, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current_page_item > a .menu-title:after, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current-menu-ancestor > a .menu-title:after, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current-menu-ancestor > a .menu-title:after, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.current_page_ancestor > a .menu-title:after, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.current_page_ancestor > a .menu-title:after, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:active > a .menu-title:after, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:active > a .menu-title:after, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li:focus > a .menu-title:after, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li:focus > a .menu-title:after {
        background-color: #e84b3a;
        width: 100%; }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.menu-item-has-children, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.menu-item-has-children, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.page_item_has_children, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.page_item_has_children {
      /* Mega Menu */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.menu-item-has-children > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.menu-item-has-children > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.page_item_has_children > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.page_item_has_children > a {
        padding-right: 10px; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.menu-item-has-children > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.menu-item-has-children > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.page_item_has_children > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.page_item_has_children > .cms-menu-toggle {
        top: 50%;
        padding: 0 10px;
        -webkit-transform: translateY(-50%);
        -khtml-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        /* BACKGROUND GRADIENT */
        /* bottom to top */
        /* TRANSFORM STYLE */ }
        .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.menu-item-has-children > .cms-menu-toggle i:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.menu-item-has-children > .cms-menu-toggle i:before, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.page_item_has_children > .cms-menu-toggle i:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.page_item_has_children > .cms-menu-toggle i:before {
          content: "\f0d7"; }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.has_full_width > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.has_full_width > a {
      padding-right: 0; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.has_full_width > a:after, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.has_full_width > a:after {
        content: "\f0d7";
        display: inline-block;
        font-family: 'FontAwesome';
        margin-left: 10px; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul > li.has_full_width > a + .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation > li.has_full_width > a + .cms-menu-toggle {
        display: none; }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul {
      padding: 0 2px;
      margin: 0;
      position: absolute;
      left: 0;
      top: 200%;
      z-index: 2;
      visibility: hidden;
      min-width: 270px;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-opacity: 0;
      -khtml-opacity: 0;
      -moz-opacity: 0;
      -ms-opacity: 0;
      -o-opacity: 0;
      opacity: 0;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* OUTLINE RADIUS */
      -webkit-transition: all 300ms linear 0ms;
      -khtml-transition: all 300ms linear 0ms;
      -moz-transition: all 300ms linear 0ms;
      -ms-transition: all 300ms linear 0ms;
      -o-transition: all 300ms linear 0ms;
      transition: all 300ms linear 0ms;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* TRIPLE BORDERS */ }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li {
      padding: 0 30px;
      background-color: #111;
      /* not mega menu */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li > a {
        border-bottom: 1px solid rgba(204, 204, 204, 0.1);
        padding: 8px 0;
        position: relative; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li > a:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li > a:before {
        font-family: 'FontAwesome';
        content: "\f105";
        display: inline-block;
        max-width: 0;
        visibility: hidden;
        position: absolute;
        left: 0; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li > .cms-menu-toggle {
        right: 20px; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li > .cms-menu-toggle {
        display: block;
        color: #fff;
        /* Has Children */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li > a:hover, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li > a:hover, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li > .cms-menu-toggle:hover, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li > .cms-menu-toggle:hover {
        color: #e84b3a; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.menu-item-has-children, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.menu-item-has-children, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.page_item_has_children, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.page_item_has_children {
        position: relative;
        /* Hover State */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.menu-item-has-children > .cms-menu-toggle i:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.menu-item-has-children > .cms-menu-toggle i:before, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.page_item_has_children > .cms-menu-toggle i:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.page_item_has_children > .cms-menu-toggle i:before {
        content: "\f105"; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:hover, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:hover {
        /* Active State */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:hover > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:hover > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:hover > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:hover > .cms-menu-toggle {
        color: #e84b3a; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:hover > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:hover > a {
        padding-left: 18px;
        /* Show Level 3 */ }
        .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:hover > a:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:hover > a:before {
          visibility: visible;
          filter: alpha(opacity=100);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
          -webkit-opacity: 1;
          -khtml-opacity: 1;
          -moz-opacity: 1;
          -ms-opacity: 1;
          -o-opacity: 1;
          opacity: 1;
          /* BACKGROUND GRADIENT */
          /* bottom to top */
          /* OUTLINE RADIUS */ }
      @media (min-width: 1200px) {
        .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:hover > ul, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:hover > ul {
          top: 0;
          left: calc(100% + 0px); }
          .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:hover > ul.back, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:hover > ul.back {
            right: calc(100% + 0px);
            left: auto; } }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current-menu-item > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current-menu-item > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current_page_item > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current_page_item > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current-menu-ancestor > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current-menu-ancestor > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current_page_ancestor > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current_page_ancestor > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:active > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:active > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:focus > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:focus > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.actived > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.actived > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current-menu-item > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current-menu-item > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current_page_item > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current_page_item > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current-menu-ancestor > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current-menu-ancestor > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current_page_ancestor > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current_page_ancestor > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:active > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:active > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:focus > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:focus > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.actived > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.actived > .cms-menu-toggle {
        color: #e84b3a; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current-menu-item > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current-menu-item > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current_page_item > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current_page_item > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current-menu-ancestor > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current-menu-ancestor > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current_page_ancestor > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current_page_ancestor > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:active > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:active > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:focus > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:focus > a, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.actived > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.actived > a {
        padding-left: 18px; }
        .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current-menu-item > a:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current-menu-item > a:before, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current_page_item > a:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current_page_item > a:before, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current-menu-ancestor > a:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current-menu-ancestor > a:before, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.current_page_ancestor > a:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.current_page_ancestor > a:before, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:active > a:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:active > a:before, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:focus > a:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:focus > a:before, .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li.actived > a:before, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li.actived > a:before {
          visibility: visible;
          filter: alpha(opacity=100);
          -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
          -webkit-opacity: 1;
          -khtml-opacity: 1;
          -moz-opacity: 1;
          -ms-opacity: 1;
          -o-opacity: 1;
          opacity: 1;
          /* BACKGROUND GRADIENT */
          /* bottom to top */
          /* OUTLINE RADIUS */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:last-child, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:last-child {
        /* Level 3+ */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li:last-child > a, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li:last-child > a {
        border-bottom: none; }
      @media (min-width: 1200px) {
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li ul, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li ul {
        top: 0;
        left: calc(100% + 34px); }
        .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul li ul.back, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul li ul.back {
          right: calc(100% + 34px);
          left: auto; } }
    .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul:not(.multicolumn) li, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul:not(.multicolumn) li {
      /* Sublevel touched right */ }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul:not(.multicolumn) li:first-child, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul:not(.multicolumn) li:first-child {
        padding-top: 30px; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul:not(.multicolumn) li:first-child > .cms-menu-toggle, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul:not(.multicolumn) li:first-child > .cms-menu-toggle {
        top: 33px; }
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul:not(.multicolumn) li:last-child, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul:not(.multicolumn) li:last-child {
        padding-bottom: 20px; }
    @media (min-width: 1200px) {
      .cms-navigation:not(.mobile-nav) div.cms-main-navigation > ul ul.back, .cms-navigation:not(.mobile-nav) ul.cms-main-navigation ul.back {
        right: 0;
        left: auto; } }

.header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li > a, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li > .cms-menu-toggle {
  color: #ccc; }
  .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li > a:after {
    background-color: #ccc; }
  .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li:hover > a, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li:hover > .cms-menu-toggle {
    color: #fff; }
    .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li:hover > a:after {
      background-color: #fff; }
  .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-item > a, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_item > a, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-ancestor > a, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_ancestor > a, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-item > .cms-menu-toggle, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_item > .cms-menu-toggle, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-ancestor > .cms-menu-toggle, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_ancestor > .cms-menu-toggle {
    color: #fff; }
    .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-item > a:after, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_item > a:after, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-ancestor > a:after, .header-ontop .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_ancestor > a:after {
      background-color: #fff; }

.header-ontop #cms-header-logo a {
  color: #ccc; }
  .header-ontop #cms-header-logo a:hover {
    color: #fff; }

.header-ontop .cms-nav-extra .header-icon {
  color: #fff;
  /* Header Sticky */ }

.header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li > a, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li > .cms-menu-toggle {
  color: #ccc; }
  .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li > a:after {
    background-color: #ccc; }
  .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li:hover > a, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li:hover > .cms-menu-toggle {
    color: #fff; }
    .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li:hover > a:after {
      background-color: #fff; }
  .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-item > a, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_item > a, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-ancestor > a, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_ancestor > a, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-item > .cms-menu-toggle, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_item > .cms-menu-toggle, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-ancestor > .cms-menu-toggle, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_ancestor > .cms-menu-toggle {
    color: #fff; }
    .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-item > a:after, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_item > a:after, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current-menu-ancestor > a:after, .header-sticky .cms-navigation:not(.mobile-nav) .cms-main-navigation > ul > li.current_page_ancestor > a:after {
      background-color: #fff; }

.header-sticky .cms-nav-extra .header-icon {
  color: #fff; }

.header-sticky #cms-header-logo a {
  color: #ccc;
  /* Mobile menu */ }
  .header-sticky #cms-header-logo a:hover {
    color: #fff; }

@media (min-width: 1201px) {
    #cms-menu-mobile {
      display: none; } }

@media (max-width: 1200px) {
  .cms-navigation {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 20;
    visibility: hidden;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ } }

.mobile-nav {
  padding: 30px 20px;
  background-color: #111;
  /* Mega Menu */ }
  .mobile-nav.open {
    visibility: visible;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
  .mobile-nav .cms-main-navigation li {
    width: 100%;
    float: none; }
    .mobile-nav .cms-main-navigation li > a {
      height: auto;
      display: block;
      padding: 8px 0;
      color: #fff;
      border-bottom: 1px solid #222; }
      .mobile-nav .cms-main-navigation li > a:hover {
        color: #e84b3a; }
    .mobile-nav .cms-main-navigation li:hover > a {
      color: #e84b3a; }
    .mobile-nav .cms-main-navigation li.current-menu-item, .mobile-nav .cms-main-navigation li.current_page_item, .mobile-nav .cms-main-navigation li.current-menu-ancestor, .mobile-nav .cms-main-navigation li.current-page-ancestor {
      /* Level 2+ */ }
      .mobile-nav .cms-main-navigation li.current-menu-item > a, .mobile-nav .cms-main-navigation li.current_page_item > a, .mobile-nav .cms-main-navigation li.current-menu-ancestor > a, .mobile-nav .cms-main-navigation li.current-page-ancestor > a {
        color: #e84b3a; }
    .mobile-nav .cms-main-navigation li ul:not(.submenu-open) {
      visibility: hidden;
      max-height: 0;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-opacity: 0;
      -khtml-opacity: 0;
      -moz-opacity: 0;
      -ms-opacity: 0;
      -o-opacity: 0;
      opacity: 0;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* OUTLINE RADIUS */ }
      .mobile-nav .cms-main-navigation li ul.submenu-open {
        max-height: 10000px;
        max-width: calc(100% - 20px);
        visibility: visible;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-opacity: 1;
        -khtml-opacity: 1;
        -moz-opacity: 1;
        -ms-opacity: 1;
        -o-opacity: 1;
        opacity: 1;
        /* BACKGROUND GRADIENT */
        /* bottom to top */
        /* OUTLINE RADIUS */ }
      .mobile-nav .cms-main-navigation li ul.submenu-open > .hide-link > .sub-menu, .mobile-nav .cms-main-navigation li ul.submenu-open > .group > .sub-menu {
        visibility: visible;
        max-height: 10000px;
        filter: alpha(opacity=100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        -webkit-opacity: 1;
        -khtml-opacity: 1;
        -moz-opacity: 1;
        -ms-opacity: 1;
        -o-opacity: 1;
        opacity: 1;
        /* BACKGROUND GRADIENT */
        /* bottom to top */
        /* OUTLINE RADIUS */ }
        .mobile-nav .cms-main-navigation li ul.submenu-open > .hide-link > .cms-menu-toggle, .mobile-nav .cms-main-navigation li ul.submenu-open > .group > .cms-menu-toggle {
          display: none !important; }
    .mobile-nav .cms-main-navigation li:last-child > a {
      border-bottom: 0; }

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

.multicolumn {
  min-width: auto;
  background-color: #111;
  /* max width 1199px */
  /* Dropdown Postision */ }
  @media (min-width: 1200px) {
  .multicolumn {
    padding: 30px 0 !important; }
    .multicolumn > li {
      float: left;
      background-color: transparent !important; }

    .multicolumn.columns2 > li {
      width: 50%; }

    .multicolumn.columns3 > li {
      width: 33.333%; }

    .multicolumn.columns4 > li {
      width: 25%; }

    .multicolumn.columns5 > li {
      width: 20%; } }
  .multicolumn li:not(.cms-megamenu) {
    background-color: transparent !important;
    /* GROUP */ }
  @media (min-width: 1200px) {
    .multicolumn .group {
      padding-top: 0;
      padding-bottom: 0; }
      .multicolumn .group > a {
        padding-bottom: 20px;
        margin-bottom: 10px;
        border-bottom: 1px solid #eee;
        width: 100%; }
        .multicolumn .group > a + .cms-menu-toggle i:before {
          content: "\f107" !important; }
      .multicolumn .group > ul {
        position: static !important;
        left: auto !important;
        top: auto !important;
        visibility: visible !important;
        padding: 0 !important;
        margin: 0;
        border: none;
        max-width: 100%;
        min-width: initial !important;
        filter: alpha(opacity=1 !important * 100);
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1 !important * 100)";
        -webkit-opacity: 1 !important;
        -khtml-opacity: 1 !important;
        -moz-opacity: 1 !important;
        -ms-opacity: 1 !important;
        -o-opacity: 1 !important;
        opacity: 1 !important;
        /* BACKGROUND GRADIENT */
        /* bottom to top */
        /* OUTLINE RADIUS */ }
        .multicolumn .group > ul > li {
          padding: 0 !important;
          /* Level 3+ */
          background-color: transparent !important; }
          .multicolumn .group > ul > li:hover ul {
            left: 100%; }
      .multicolumn .group > .cms-menu-toggle {
        display: none; }
      .multicolumn .group:hover > a {
        padding-left: 0 !important; }
        .multicolumn .group:hover > a:before {
          display: none !important; } }
  @media (max-width: 1199px) {
  .multicolumn {
    background-color: transparent !important;
    min-width: calc(100% - 20px); }
    .multicolumn.submenu-open > li {
      margin-top: 30px; } }

ul.sub-menu {
  /* Drop to right */
  /* Widget in Mega menu */ }
  @media (min-width: 1200px) {
  ul.sub-menu.drop_to_right {
    right: 0;
    left: auto !important;
    /* Drop to center */ }
    ul.sub-menu.drop_to_right.back {
      left: 0;
      right: auto; }
  ul.sub-menu.drop_to_center {
    left: 50% !important;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ } }

.cms-main-navigation li.cms-megamenu > a + aside {
  margin-top: 30px; }
  .cms-main-navigation li.cms-megamenu .widget.wg-megamenu {
    margin-bottom: 30px;
    color: #fff; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu .wg-megamenu-title {
      margin-bottom: 22px; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu .wg-megamenu-title:hover {
      color: #e84b3a; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu a {
      color: #fff; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu a:hover {
      color: #e84b3a; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul {
      position: inherit !important;
      visibility: visible !important;
      min-width: auto !important;
      padding: 0;
      left: 0;
      max-height: 10000px;
      filter: alpha(opacity=1 !important * 100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=1 !important * 100)";
      -webkit-opacity: 1 !important;
      -khtml-opacity: 1 !important;
      -moz-opacity: 1 !important;
      -ms-opacity: 1 !important;
      -o-opacity: 1 !important;
      opacity: 1 !important;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* OUTLINE RADIUS */ }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul li {
      padding: 0; }
      .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul li a:before {
        line-height: inherit;
        margin: 0; }
      .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul li:first-child, .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul li:last-child {
        padding: 0 !important; }
      .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul li:hover ul {
        left: 0; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul ul {
      margin: 0 10px; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul.widget_nav_menu a {
      display: block;
      padding: 8px 0; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul.product_list_widget li {
      border-top-color: rgba(204, 204, 204, 0.1); }
      .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul.product_list_widget li a {
        padding-left: 0 !important; }
      .cms-main-navigation li.cms-megamenu .widget.wg-megamenu ul.product_list_widget li a:before {
        display: none; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu .cms-recent-post .cms-recent-item {
      border-bottom-color: rgba(204, 204, 204, 0.1);
      padding-bottom: 16px;
      margin-bottom: 16px; }
      .cms-main-navigation li.cms-megamenu .widget.wg-megamenu .cms-recent-post .cms-recent-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 0; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu .cms-recent-post:not(.style1) .entry-media img {
      max-width: 80px; }
      .cms-main-navigation li.cms-megamenu .widget.wg-megamenu .cms-recent-post:not(.style1) .entry-media + .item-content {
        padding-left: 100px; }
    .cms-main-navigation li.cms-megamenu .widget.wg-megamenu:last-child {
      margin-bottom: 0; }

#cms-page-title-wrapper {
  position: relative;
  background-color: transparent;
  background-image: url(../images/pagetitle/bg-pagetitle.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  background-position: center center;
  margin-bottom: 93px;
  padding-top: 105px;
  padding-bottom: 105px; }
  #cms-page-title-wrapper > img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -moz-object-fit: cover;
    -ms-filter-object-fit: cover;
    -webkit-object-fit: cover;
    /* Image black and white */ }
  #cms-page-title-wrapper:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6); }
  #cms-page-title-wrapper > div {
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    z-index: 1; }

#cms-page-title .page-title-text {
  padding: 0;
  margin: 0;
  color: #fff; }
  #cms-page-title .page-title-text.no-option {
    font-size: 25px;
    line-height: 30px; }
  #cms-page-title img, #cms-page-title .cms-page-subtitle {
    margin-top: 22px; }
  #cms-page-title .cms-page-subtitle {
    color: #ddd; }

#cms-breadcrumb {
  margin-top: 13px;
  font-style: italic;
  color: #aaa; }
  #cms-breadcrumb ul.breadcrumbs {
    list-style: none; }
  #cms-breadcrumb ul.breadcrumbs li {
    display: inline-block;
    vertical-align: top;
    position: relative; }
  #cms-breadcrumb ul.breadcrumbs li:after {
    content: "/";
    display: inline-block;
    padding: 0 5px; }
  #cms-breadcrumb ul.breadcrumbs li:last-child:after {
    display: none; }
  #cms-breadcrumb a {
    color: #aaa; }
  #cms-breadcrumb a:hover {
    color: #e84b3a; }

.cms-breadcrumb {
  display: table; }
  .cms-breadcrumb > * {
    display: table-cell;
    vertical-align: middle; }

.entry-media {
  position: relative;
  overflow: hidden;
  margin-bottom: 28px;
  /* Entry Header */ }
  .entry-media img {
    width: 100%; }
  .entry-media img[alt="Horizontal Featured Image"] {
    width: auto; }
  .entry-media > .entry-media {
    margin-bottom: 0 !important;
    /* Page Featured Image */ }
  .entry-media.page-thumbnail {
    margin-bottom: 80px;
    /* Entry Gallery */ }
  .entry-media.entry-gallery {
    /* Entry Quote */ }
  .entry-media.entry-gallery .slideshow-window {
    margin-bottom: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .entry-media.entry-quote {
    position: relative;
    padding: 55px 60px 48px;
    /* Entry Status */ }
  .entry-media.entry-quote:before {
    content: "";
    display: block;
    background: rgba(17, 17, 17, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Vertical Align */ }
  .entry-media.entry-quote .entry-quote-inner {
    position: relative; }
  .entry-media.entry-quote .entry-quote-inner .entry-meta {
    padding-bottom: 37px; }
  .entry-media.entry-quote .entry-quote-inner .quote-content, .entry-media.entry-quote .entry-quote-inner blockquote {
    font-size: 142.85714%;
    line-height: 150%; }
    .entry-media.entry-quote .entry-quote-inner .quote-content .quote-title, .entry-media.entry-quote .entry-quote-inner blockquote .quote-title, .entry-media.entry-quote .entry-quote-inner .quote-content cite, .entry-media.entry-quote .entry-quote-inner blockquote cite {
      font-size: 200%;
      font-weight: 700;
      text-transform: uppercase;
      padding-top: 52px; }
    .entry-media.entry-quote .entry-quote-inner .quote-content .quote-title a, .entry-media.entry-quote .entry-quote-inner blockquote .quote-title a, .entry-media.entry-quote .entry-quote-inner .quote-content cite a, .entry-media.entry-quote .entry-quote-inner blockquote cite a {
      color: #fff; }
    .entry-media.entry-quote .entry-quote-inner .quote-content .quote-from, .entry-media.entry-quote .entry-quote-inner blockquote .quote-from {
      color: #e84b3a;
      font-size: 60%;
      font-weight: 700;
      letter-spacing: 0.4em;
      text-transform: uppercase;
      padding-top: 8px; }
  .entry-media.entry-quote .entry-quote-inner blockquote {
    padding-top: 0;
    color: #fff; }
    .entry-media.entry-quote .entry-quote-inner blockquote:before {
      display: none; }
  .entry-media.entry-status {
    position: relative;
    padding: 60px 60px 38px;
    /* Gallery item */ }
  .entry-media.entry-status:before {
    content: "";
    display: block;
    background: rgba(17, 17, 17, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Vertical Align */ }
  .entry-media.entry-status .entry-status-inner {
    position: relative; }
  .entry-media.entry-status .entry-status-inner > img {
    width: auto;
    max-width: 200px;
    margin-bottom: 25px; }
  .entry-media.entry-status .entry-status-inner .entry-meta {
    padding-bottom: 6px; }
    .entry-media.entry-status .entry-status-inner .entry-meta li {
      display: block;
      padding: 4px 5px; }
  .entry-media.gallery-grid .gallery-item {
    padding: 15px;
    position: relative;
    display: block; }
  .entry-media.gallery-grid .gallery-item .overlay {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px; }
  .entry-media.gallery-grid .gallery-item .overlay-inner:before, .entry-media.gallery-grid .gallery-item .overlay-inner:after {
    content: "";
    display: inline-block;
    background: #fff; }
    .entry-media.gallery-grid .gallery-item .overlay-inner:before {
      width: 30px;
      height: 4px; }
    .entry-media.gallery-grid .gallery-item .overlay-inner:after {
      width: 4px;
      height: 30px;
      -webkit-transform: translate(-21px, 13px);
      -khtml-transform: translate(-21px, 13px);
      -moz-transform: translate(-21px, 13px);
      -ms-transform: translate(-21px, 13px);
      -o-transform: translate(-21px, 13px);
      transform: translate(-21px, 13px);
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* TRANSFORM STYLE */ }
  .entry-media .row.space-5 {
    margin: -2.5px; }
  .entry-media .row.space-5 [class*="col-"], .entry-media .row.space-5 [class^="col-"] {
    padding: 2.5px; }

.entry-header {
  margin-bottom: 17px;
  /* Entry Title */ }
  .entry-header > .btn {
    float: right;
    margin-left: 30px;
    margin-top: -5px; }

.entry-title {
  margin: 0;
  /* Entry Meta */ }

.entry-meta {
  margin: 0 -23px 17px;
  list-style: none;
  font-size: 86.66667%;
  font-family: Noto Serif;
  color: #999;
  /* Entry Content */ }
  .entry-meta li {
    display: inline-block;
    padding: 0 23px;
    /* Empty */ }
  .entry-meta li a {
    color: #999; }
  .entry-meta li a:hover {
    color: #e84b3a; }
  .entry-meta li i {
    font-size: 115.38462%; }
  .entry-meta:empty {
    margin: 0; }
  .entry-meta.dir-left li > i {
    margin-right: 10px; }
  .entry-meta.dir-right li > i {
    margin-left: 10px; }

.entry-content {
  /* Entry Share / Tags */ }
  .entry-content [class*='wp-image-'], .entry-content [class^='wp-image-'] {
    margin-bottom: 32px; }
  .entry-content [class*='wp-image-'] + .wp-caption-text, .entry-content [class^='wp-image-'] + .wp-caption-text {
    margin-top: -32px; }

.entry-share-tag {
  padding-top: 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eee;
  /* Entry Footer */ }
  .entry-share-tag .title {
    text-transform: uppercase;
    font-size: 93.33333%;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #111;
    padding-right: 20px; }
  .entry-share-tag .entry-tags {
    margin-bottom: 28px; }
  .entry-share-tag .entry-socials-share-list {
    margin: 0 -10px; }
  .entry-share-tag .entry-socials-share-list li {
    padding: 0 10px; }
  .entry-share-tag .entry-socials-share-list a {
    font-size: 93.33333%;
    color: #868686; }
  .entry-share-tag .entry-socials-share-list a:hover {
    color: #e84b3a; }

.entry-footer {
  margin: 25px 0 0;
  clear: both;
  /* POST FORMAT */ }
  .entry-footer:empty {
    display: none; }

.format-gallery, .format-video, .format-audio {
  /**
 * Blog Page 
*/ }
  .format-gallery .carousel + .overlay, .format-video .carousel + .overlay, .format-audio .carousel + .overlay, .format-gallery .entry-video + .overlay, .format-video .entry-video + .overlay, .format-audio .entry-video + .overlay, .format-gallery .entry-audio + .overlay, .format-video .entry-audio + .overlay, .format-audio .entry-audio + .overlay {
    display: none; }

.entry-blog {
  margin-bottom: 50px;
  position: relative; }
  .entry-blog.overlay-wrap {
    overflow: visible; }
  .entry-blog:last-child {
    margin-bottom: 0; }
  .entry-blog:nth-child(2n+1) {
    clear: left; }
  .entry-blog + .paging-navigation {
    margin-top: 30px;
    /* Title */ }
  .entry-blog .entry-title {
    font-size: 23px;
    letter-spacing: 0.02em;
    /* Media */
    /* Meta */ }
  .entry-blog.show-like {
    padding-left: 100px; }
  .entry-blog.show-like > .nectar-love {
    width: 70px;
    text-align: center;
    display: block;
    position: absolute;
    left: 0;
    top: 0; }
  .entry-blog.show-like > .nectar-love i {
    width: 70px;
    height: 70px;
    line-height: 70px;
    color: #fff;
    font-size: 20px;
    background-color: #111;
    margin-bottom: 5px; }
  .entry-blog.show-like > .nectar-love span {
    display: block;
    font-style: italic;
    white-space: nowrap; }
  .entry-blog.show-like > .nectar-love.unselected {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
  @media (max-width: 480px) {
    .entry-blog.show-like {
      padding-left: 45px; }
      .entry-blog.show-like > .nectar-love {
        width: 30px; }
        .entry-blog.show-like > .nectar-love i {
          width: 30px;
          height: 30px;
          line-height: 30px; } }
  .entry-blog:after {
    margin-top: 45px;
    content: "";
    display: block;
    border-top: 1px solid #eee;
    width: 100%; }

.entry-grid {
  /**
 * Custom Post Type 
*/
  /**
 * Single Page Default  
*/ }
  .entry-grid .entry-media {
    margin-bottom: 27px; }

.type-page {
  /**
 * Single Post 
*/ }
  .type-page [class*='wp-image-'], .type-page [class^='wp-image-'] {
    margin-bottom: 32px; }
  .type-page [class*='wp-image-'] + .wp-caption-text, .type-page [class^='wp-image-'] + .wp-caption-text {
    margin-top: -32px; }

.single {
  /* Single Page */
  /* Error 404 */ }
  .single .entry-author {
    margin-top: 44px; }
  .single .entry-author .author-avatar {
    margin: 6px 0 30px; }
  @media (min-width: 768px) {
      .single .entry-author .author-avatar {
        float: left;
        width: 130px; } }
  .single .entry-author .author-info h5 {
    font-size: 14px;
    margin: 0 0 9px;
    font-weight: 600;
    text-transform: none; }
  .single .entry-author .author-info .author-roles {
    font-size: 86.66667%;
    color: #868686;
    margin-top: 0;
    margin-bottom: 20px;
    display: none; }
  @media (min-width: 768px) {
      .single .entry-author .author-info {
        float: left;
        width: calc(100% - 130px); } }
  .single .entry-author .author-info .author-email {
    color: #111;
    padding-top: 5px; }
  .single .entry-author .author-info .user-meta {
    padding-top: 16px;
    display: none; }
    .single .entry-author .author-info .user-meta a {
      padding-right: 15px; }
    .single .entry-author .author-info .user-meta a.facebook {
      color: #4c70b7; }
    .single .entry-author .author-info .user-meta a.twitter {
      color: #4cdbff; }
    .single .entry-author .author-info .user-meta a.gplus {
      color: #ff4c4c; }
  .single .entry-related {
    margin-top: 75px; }
  .single .entry-related .related-title {
    margin: 0 0 50px 0; }
  .single .post-nav {
    margin-top: 22px;
    border-top: 1px solid #eee;
    padding: 0 0;
    /**
	 * Single Portfolio
	 * Single Gallery
	*/ }
  .single .post-nav a {
    padding-top: 17px;
    display: block; }
  .single .post-nav a .nav-label {
    display: block;
    clear: both;
    text-transform: uppercase;
    font-size: 13px;
    font-family: Open Sans;
    font-weight: 600;
    color: #999;
    letter-spacing: 0.08em; }
    .single .post-nav a .nav-label i {
      font-size: 30px;
      color: #111;
      display: inline-block;
      -webkit-transform: translateY(8px);
      -khtml-transform: translateY(8px);
      -moz-transform: translateY(8px);
      -ms-transform: translateY(8px);
      -o-transform: translateY(8px);
      transform: translateY(8px);
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* TRANSFORM STYLE */ }
  .single .post-nav a:hover .nav-label {
    color: #111; }
  .single .post-nav .nav-title-wrap {
    background-position: center;
    background-size: cover; }
  .single .post-nav .nav-title-wrap .nav-title-wrap-inner {
    background-color: rgba(17, 17, 17, 0.6);
    padding: 25px 30px; }
    .single .post-nav .nav-title-wrap .nav-title-wrap-inner .nav-title {
      color: #fff; }
  .single.single-zkportfolio .portfolio-header, .single.single-zkgallery .portfolio-header {
    position: relative;
    padding: 250px 0;
    margin-bottom: 67px;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat; }
  @media (max-width: 991px) {
      .single.single-zkportfolio .portfolio-header, .single.single-zkgallery .portfolio-header {
        padding: 50px 0; } }
  .single.single-zkportfolio .portfolio-header .single-portfolio-title, .single.single-zkgallery .portfolio-header .single-portfolio-title {
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.8);
    color: #888;
    letter-spacing: 0.02em;
    font-style: italic;
    padding: 102px 20px 78px; }
    .single.single-zkportfolio .portfolio-header .single-portfolio-title .entry-title, .single.single-zkgallery .portfolio-header .single-portfolio-title .entry-title {
      font-size: 28px;
      letter-spacing: 0.25em;
      color: #fff; }
    .single.single-zkportfolio .portfolio-header .single-portfolio-title .entry-title + div, .single.single-zkgallery .portfolio-header .single-portfolio-title .entry-title + div {
      margin-top: 14px; }
    .single.single-zkportfolio .portfolio-header .single-portfolio-title img, .single.single-zkgallery .portfolio-header .single-portfolio-title img {
      margin-top: 18px; }
  .single.single-zkportfolio .sp-info, .single.single-zkgallery .sp-info {
    margin-bottom: 30px; }
  .single.single-zkportfolio .sp-info .sp-about, .single.single-zkgallery .sp-info .sp-about {
    margin: 0 0 30px; }
  .single.single-zkportfolio .sp-info .sp-title, .single.single-zkgallery .sp-info .sp-title {
    font-size: 25px;
    margin: 0 0 15px; }
  .single.single-zkportfolio .sp-meta, .single.single-zkgallery .sp-meta {
    margin-bottom: 30px;
    font-size: 13px;
    font-style: italic;
    letter-spacing: 0.02em; }
  .single.single-zkportfolio .sp-meta .detail-categories a, .single.single-zkgallery .sp-meta .detail-categories a {
    color: #868686; }
    .single.single-zkportfolio .sp-meta .detail-categories a:hover, .single.single-zkgallery .sp-meta .detail-categories a:hover {
      color: #e84b3a; }
  .single.single-zkportfolio .sp-meta > div, .single.single-zkgallery .sp-meta > div {
    margin-bottom: 15px; }
    .single.single-zkportfolio .sp-meta > div.details-share a, .single.single-zkgallery .sp-meta > div.details-share a {
      padding: 0 7px;
      color: #868686; }
    .single.single-zkportfolio .sp-meta > div.details-share a:hover, .single.single-zkgallery .sp-meta > div.details-share a:hover {
      color: #111; }
  .single.single-zkportfolio .sp-meta .meta-title, .single.single-zkgallery .sp-meta .meta-title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    color: #111;
    padding-right: 15px;
    font-style: normal;
    font-family: Open Sans; }
  .single.single-zkportfolio .sp-meta .btn, .single.single-zkgallery .sp-meta .btn {
    margin-top: 12px; }
  .single.single-zkportfolio .sp-meta2 > h4, .single.single-zkgallery .sp-meta2 > h4 {
    font-size: 16px;
    margin: 16px 0 10px; }
  .single.single-zkportfolio .sp-meta2 .meta-title, .single.single-zkgallery .sp-meta2 .meta-title {
    font-style: normal; }
    .single.single-zkportfolio .sp-meta2 .meta-title i, .single.single-zkgallery .sp-meta2 .meta-title i {
      color: #111;
      margin-right: 10px; }
    .single.single-zkportfolio .sp-meta2 .meta-title + a, .single.single-zkgallery .sp-meta2 .meta-title + a, .single.single-zkportfolio .sp-meta2 .meta-title + span, .single.single-zkgallery .sp-meta2 .meta-title + span {
      font-style: italic; }
  .single.single-zkportfolio .entry-media, .single.single-zkgallery .entry-media {
    margin-top: 27px; }
  .single.single-zkportfolio .details-count-share, .single.single-zkgallery .details-count-share {
    font-size: 13px;
    margin: 0 -10px;
    padding-top: 20px; }
  .single.single-zkportfolio .details-count-share .total-count, .single.single-zkgallery .details-count-share .total-count {
    letter-spacing: 0.02em;
    font-style: italic;
    display: inline-block; }
    .single.single-zkportfolio .details-count-share .total-count > span, .single.single-zkgallery .details-count-share .total-count > span {
      padding: 0 10px; }
    .single.single-zkportfolio .details-count-share .total-count .count, .single.single-zkgallery .details-count-share .total-count .count {
      font-size: 25px;
      font-family: Open Sans;
      font-weight: 700;
      color: #111;
      font-style: normal; }
    @media (min-width: 992px) {
      .single.single-zkportfolio .details-count-share .total-count, .single.single-zkgallery .details-count-share .total-count {
        border-right: 1px solid #eee;
        padding-right: 20px;
        margin-right: 20px; } }
    @media (max-width: 991px) {
      .single.single-zkportfolio .details-count-share .total-count, .single.single-zkgallery .details-count-share .total-count {
        display: block;
        margin-bottom: 20px; } }
  .single.single-zkportfolio .details-count-share a, .single.single-zkgallery .details-count-share a {
    text-transform: uppercase;
    padding: 0 10px;
    font-family: Open Sans;
    font-weight: 600; }
  .single.single-zkportfolio .entry-related, .single.single-zkgallery .entry-related {
    margin-top: 50px; }
  .single.single-zkportfolio .entry-related .rl-title, .single.single-zkgallery .entry-related .rl-title {
    margin-bottom: 5px; }
  .single.single-zkportfolio .post-nav, .single.single-zkgallery .post-nav {
    margin-top: 40px;
    margin-bottom: -14px;
    padding-top: 23px; }
  .single.single-zkportfolio .post-nav .nav-label, .single.single-zkgallery .post-nav .nav-label {
    letter-spacing: 0.14em;
    color: #111; }
    .single.single-zkportfolio .post-nav .nav-label i, .single.single-zkgallery .post-nav .nav-label i {
      line-height: 1; }
  .single.single-zkportfolio .post-nav a:hover .nav-label, .single.single-zkgallery .post-nav a:hover .nav-label {
    color: #e84b3a; }
  .single.single-zkportfolio .post-nav a[href="?post_type=zkportfolio"], .single.single-zkgallery .post-nav a[href="?post_type=zkportfolio"] {
    padding-top: 27px; }
  .single.zkportfolio-layout-2 #cms-header {
    margin-bottom: 70px; }
  .single.zkportfolio-layout-2 .owl-carousel {
    margin-top: 17px; }
  .single.zkportfolio-layout-2 .overlay-inner h5 {
    font-size: 14px;
    font-weight: 600;
    padding: 0;
    margin: 0 0 5px; }
  .single.zkportfolio-layout-2 .overlay-inner .description {
    color: #ccc; }
  .error404 {
    /* Page template Gallery */ }
  .error404 .logo-404.image {
    margin-bottom: 32px; }
  .error404 .logo-404.text {
    font-size: 250px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: -18px; }
  .error404 .logo-404 + h3 {
    margin-bottom: 48px; }
  .error404 #cms-main {
    padding-top: 212px;
    padding-bottom: 200px; }
  .error404 #cms-footer {
    margin-top: 0; }
  .error404 #cms-footer-bottom.footer-bottom-404 {
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 0.2em;
    font-size: 12px;
    font-weight: 700;
    padding-top: 69px;
    padding-bottom: 67px; }
  .error404.cms-404-default #cms-main {
    background-image: url('../images/bg-404.jpg');
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; }
  .error404.cms-404-default #cms-main h3, .error404.cms-404-default #cms-main .content-area {
    color: #fff; }
  @media (max-width: 767px) {
  .error404 .logo-404.text {
    font-size: 80px;
    margin-bottom: 15px; }
  .error404 #cms-main {
    padding-top: 70px;
    padding-bottom: 70px; } }

.gc-wrapper > a {
  display: block;
  position: relative; }
  .gc-wrapper > a .gc-title-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px;
    text-align: center;
    font-size: 35px;
    line-height: 1.25;
    color: #fff;
    letter-spacing: 0.1em;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#222));
    background-image: -webkit-linear-gradient(top, transparent, #222);
    background-image: -moz-linear-gradient(top, transparent, #222);
    background-image: -ms-linear-gradient(top, transparent, #222);
    background-image: -o-linear-gradient(top, transparent, #222);
    background-image: linear-gradient(top, transparent, #222);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='#222');
    /* top to bottom */
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ }
  .gc-wrapper > a .gc-title-wrap > span {
    display: block; }
  .gc-wrapper > a .gc-title-wrap .gc-title1 {
    font-family: Mr De Haviland;
    padding-bottom: 15px;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ }
  .gc-wrapper > a .gc-title-wrap .gc-title2 {
    font-weight: 700;
    font-family: Open Sans;
    text-transform: uppercase; }
  .gc-wrapper > a:before {
    content: "";
    display: block;
    background-color: rgba(16, 16, 16, 0.4);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ }

@media (min-width: 1200px) {
      .page-template-gallery #cms-main.no-container {
        padding-left: 30px;
        padding-right: 30px; } }
  .page-template-gallery .gc-wrapper > a .gc-title-wrap {
    padding-bottom: 49px; }
  .page-template-gallery .gc-wrapper > a:before {
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
  .page-template-gallery .gc-wrapper > a:hover .gc-title-wrap {
    top: 50%;
    bottom: auto;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    background-image: -webkit-linear-gradient(top, transparent, transparent);
    background-image: -moz-linear-gradient(top, transparent, transparent);
    background-image: -ms-linear-gradient(top, transparent, transparent);
    background-image: -o-linear-gradient(top, transparent, transparent);
    background-image: linear-gradient(top, transparent, transparent);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='transparent');
    /* top to bottom */
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }
    .page-template-gallery .gc-wrapper > a:hover .gc-title-wrap .gc-title1 {
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-opacity: 1;
      -khtml-opacity: 1;
      -moz-opacity: 1;
      -ms-opacity: 1;
      -o-opacity: 1;
      opacity: 1;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* OUTLINE RADIUS */ }
    .page-template-gallery .gc-wrapper > a:hover:before {
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-opacity: 1;
      -khtml-opacity: 1;
      -moz-opacity: 1;
      -ms-opacity: 1;
      -o-opacity: 1;
      opacity: 1;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* OUTLINE RADIUS */ }

.tax-zkgallery_cat {
  /* page template Multi Slider */ }
  .tax-zkgallery_cat .gc-wrapper {
    margin-bottom: 10px; }
  .tax-zkgallery_cat .gc-wrapper .gc-title-wrap {
    top: 50%;
    bottom: auto;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(transparent));
    background-image: -webkit-linear-gradient(top, transparent, transparent);
    background-image: -moz-linear-gradient(top, transparent, transparent);
    background-image: -ms-linear-gradient(top, transparent, transparent);
    background-image: -o-linear-gradient(top, transparent, transparent);
    background-image: linear-gradient(top, transparent, transparent);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='transparent');
    /* top to bottom */
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }
  .tax-zkgallery_cat .gc-wrapper .gc-title-wrap .gc-title1 {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
  .tax-zkgallery_cat .gc-wrapper img {
    width: 100%; }
  .tax-zkgallery_cat .cat-nav-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 100px 40px 40px;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    background-image: -webkit-linear-gradient(top, transparent, #000);
    background-image: -moz-linear-gradient(top, transparent, #000);
    background-image: -ms-linear-gradient(top, transparent, #000);
    background-image: -o-linear-gradient(top, transparent, #000);
    background-image: linear-gradient(top, transparent, #000);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='#000');
    /* top to bottom */ }
  .tax-zkgallery_cat .cat-nav {
    width: calc(50% - 10px); }
  .tax-zkgallery_cat .cat-nav img {
    max-width: 60px; }
  .tax-zkgallery_cat .cat-nav div {
    padding-top: 10px; }
  .tax-zkgallery_cat .cat-nav span {
    display: block; }
  .tax-zkgallery_cat .cat-nav span.cat-name {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    font-family: Open Sans; }
  .tax-zkgallery_cat .cat-nav span.nav-label {
    font-size: 13px;
    color: #868686;
    font-style: italic; }
  .tax-zkgallery_cat .cat-nav.cat-nav-prev {
    float: left; }
  .tax-zkgallery_cat .cat-nav.cat-nav-prev img {
    float: left; }
  .tax-zkgallery_cat .cat-nav.cat-nav-prev div {
    padding-left: 75px; }
  .tax-zkgallery_cat .cat-nav.cat-nav-next {
    text-align: right;
    float: right; }
  .tax-zkgallery_cat .cat-nav.cat-nav-next img {
    float: right; }
  .tax-zkgallery_cat .cat-nav.cat-nav-next div {
    padding-right: 75px; }
  @media (min-width: 1200px) {
    .tax-zkgallery_cat .gc-cat-list {
      padding-left: 60px;
      padding-right: 60px; } }
  .tax-zkgallery_cat .gc-cat-list .entry-gc-title {
    margin: 0; }
  .tax-zkgallery_cat .gc-cat-list .entry-gc-title a {
    font-size: 15px;
    letter-spacing: 0.02em;
    font-weight: 500; }
  .tax-zkgallery_cat .gc-cat-list .entry-tags {
    font-size: 14px;
    font-style: italic;
    color: #868686;
    text-transform: capitalize; }
  .tax-zkgallery_cat .gc-cat-list .entry-tags a {
    color: #868686; }
    .tax-zkgallery_cat .gc-cat-list .entry-tags a:hover {
      color: #fff; }
  .tax-zkgallery_cat .gc-cat-list .nectar-love, .tax-zkgallery_cat .gc-cat-list .popup {
    position: absolute;
    bottom: 20px; }
  .tax-zkgallery_cat .gc-cat-list .nectar-love {
    left: 20px; }
  .tax-zkgallery_cat .gc-cat-list .popup {
    right: 20px; }

.multislider-page-content {
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ccc;
  padding: 15px;
  /* Page split slider */ }
  @media (min-width: 768px) {
  .multislider-page-content {
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* image fit */ } }
  @media (max-width: 767px) {
  .multislider-page-content {
    position: absolute;
    top: 200px;
    left: 15px;
    right: 15px; } }
  .multislider-page-content .multislider-page-content-inner {
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1); }

.page-template-splitslider {
  /* custom page width */ }
  .page-template-splitslider #cms-main {
    height: calc(100vh - 166px); }

@media (min-width: 1600px) {
    body.page-id-1079 .container {
      width: 1470px; }
    body.page-id-1079 #cms-footer .container {
      width: 1170px; } }

@media (min-width: 1920px) {
    body.page-id-1026 .container {
      width: 1720px; }
    body.page-id-1026 #cms-footer .container {
      width: 1720px; } }

.comment-number, .reply-title, .woocommerce-Reviews-title, .comment-reply-title {
  position: relative;
  font-size: 16px;
  margin: 0 0 30px;
  font-weight: 600; }

.comments-area .comment-number, #comments .comment-number {
  margin-top: 29px;
  padding-top: 69px;
  border-top: 1px solid #eee; }
  .comments-area .comment-list, #comments .comment-list, .comments-area .commentlist, #comments .commentlist {
    list-style: none; }
  .comments-area .comment-list ul.children, #comments .comment-list ul.children, .comments-area .commentlist ul.children, #comments .commentlist ul.children {
    list-style: none;
    margin: 0; }
  .comments-area .comment-list .comment .comment-respond, #comments .comment-list .comment .comment-respond, .comments-area .commentlist .comment .comment-respond, #comments .commentlist .comment .comment-respond {
    margin-bottom: 30px; }
  .comments-area li.comment, #comments li.comment {
    border-bottom: 1px solid #eee;
    margin-bottom: 30px;
    padding-bottom: 40px;
    display: block;
    overflow: hidden;
    position: relative; }
  .comments-area li.comment:last-child, #comments li.comment:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0; }
  .comments-area li.comment > ul.children, #comments li.comment > ul.children {
    border-top: 1px solid #eee;
    padding-top: 30px;
    margin-top: 30px; }
  @media (min-width: 992px) {
      .comments-area li.comment > ul.children, #comments li.comment > ul.children {
        padding-left: 100px;
        /* Level 3+ */ } }
  @media (min-width: 992px) {
          .comments-area li.comment > ul.children li.comment > ul.children, #comments li.comment > ul.children li.comment > ul.children {
            padding-left: 30px; } }
  .comments-area li.comment .comment-avatar, #comments li.comment .comment-avatar {
    float: left;
    margin: 0 30px 0 0; }
  .comments-area li.comment .comment-author, #comments li.comment .comment-author {
    margin: 0 0 6px; }
  .comments-area li.comment .comment-meta, #comments li.comment .comment-meta {
    font-size: 86.66667%;
    color: #999;
    margin-bottom: 12px; }
  .comments-area li.comment .comment-meta a, #comments li.comment .comment-meta a {
    color: #999; }
  .comments-area li.comment .comment-content, #comments li.comment .comment-content {
    position: relative; }
  .comments-area li.comment .reply, #comments li.comment .reply {
    /* RTL Language */ }
  .comments-area li.comment .reply a, #comments li.comment .reply a {
    padding: 0 10px;
    font-size: 14px;
    color: #999;
    letter-spacing: 0.08em; }
    .comments-area li.comment .reply a:hover, #comments li.comment .reply a:hover {
      color: #e84b3a; }
  @media (min-width: 992px) {
      .comments-area li.comment .reply, #comments li.comment .reply {
        position: absolute;
        right: 0;
        top: 0; } }
  @media (min-width: 992px) {
        .comments-area li.comment.dir-right > ul.children, #comments li.comment.dir-right > ul.children {
          padding-right: 100px;
          padding-left: 0;
          /* Level 3+ */ } }
    @media (min-width: 992px) {
          .comments-area li.comment.dir-right > ul.children li.comment > ul.children, #comments li.comment.dir-right > ul.children li.comment > ul.children {
            padding-right: 30px;
            padding-left: 0; } }
  .comments-area li.comment.dir-right .comment-avatar, #comments li.comment.dir-right .comment-avatar {
    float: right;
    margin: 0 0 0 30px; }
  .comments-area .comment-respond, #comments .comment-respond {
    border-top: 1px solid #eee;
    margin-top: 45px;
    padding-top: 50px; }
  .comments-area.no-comment .comment-respond, #comments.no-comment .comment-respond {
    margin-top: 30px; }

.cms-comment-pagination {
  padding-top: 40px; }

.comment-form {
  margin: 0 -7.5px;
  /* Page Comment  */ }
  .comment-form .logged-in-as, .comment-form .comment-field {
    padding: 0 7.5px;
    margin-bottom: 15px; }
  .comment-form .form-submit {
    padding: 0 7.5px; }

.page + #comments {
  margin-top: 60px; }

.tag-links {
  /* Images */ }
  .tag-links a + a {
    margin-left: 15px; }

img, img.ajax-loading {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  /* Images */ }
  img[style="visibility:hidden;"], img.ajax-loading[style="visibility:hidden;"], img[style="visibility:hidden"], img.ajax-loading[style="visibility:hidden"] {
    display: none !important; }
  img[width="1"], img.ajax-loading[width="1"], img[height="1"], img.ajax-loading[height="1"] {
    width: 100%; }

.wp-caption {
  max-width: 100%;
  margin-bottom: 20px !important; }
  .wp-caption > a {
    display: block; }
  .wp-caption img {
    width: 100%;
    margin-bottom: 0; }
  .wp-caption .wp-caption-text {
    padding: 5px 10px;
    background: #eee;
    font-style: italic; }

.wp-caption-text {
  font-style: italic;
  /* Gallery */ }

.gallery-caption {
  padding: 5px 10px;
  margin: 0 10px;
  background: #eee;
  font-style: italic;
  /* AlignMent */ }

.alignleft {
  float: left;
  margin-right: 40px;
  margin-bottom: 34px;
  max-width: 100%;
  text-align: left; }
  @media (max-width: 991px) {
  .alignleft {
    margin-right: 15px;
    margin-bottom: 15px; } }

.alignright {
  float: right;
  margin-left: 40px;
  margin-bottom: 34px;
  max-width: 100%;
  text-align: right; }
  @media (max-width: 991px) {
  .alignright {
    margin-left: 15px;
    margin-bottom: 15px; } }

.aligncenter {
  margin: 0 auto 34px;
  max-width: 100%;
  text-align: center;
  /* Iframe, video, audio */ }
  @media (max-width: 991px) {
  .aligncenter {
    margin-bottom: 15px; } }

iframe, video, audio, object, embed {
  max-width: 100%;
  height: 100%;
  vertical-align: top; }

.screen-reader-text, .bypostauthor, .sticky {
  visibility: visible;
  /* Image alignment */ }

img {
  max-width: 100%;
  height: auto; }
  img[style="visibility:hidden"], img.ajax-loading[style="visibility:hidden"] {
    display: none !important; }

.carousel .carousel-control {
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: #fff;
  text-shadow: none;
  font-size: 35px;
  color: #111;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1;
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  /* OUTLINE RADIUS */
  top: 50%;
  width: 100%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  -khtml-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  /* Horizontal Align */
  width: 50px; }
  .carousel .carousel-control:hover {
    background: #111;
    color: #fff; }
  .carousel .carousel-control.left {
    left: 20px; }
  .carousel .carousel-control.right {
    right: 20px; }
  .carousel .open-gal {
    position: absolute;
    right: 20px;
    bottom: 20px; }
  .carousel img {
    width: 100%; }

.owl-carousel {
  /* WP Gallery */ }
  .owl-carousel.owl-drag .owl-stage {
    cursor: ew-resize;
    cursor: -webkit-grab; }
  .owl-carousel.owl-drag.owl-grab .owl-stage {
    cursor: ew-resize; }
  .owl-carousel .owl-video-wrapper {
    /* Next / Prev */ }
  .owl-carousel .owl-video-wrapper .owl-video {
    display: block !important;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .owl-carousel .owl-video-wrapper .owl-video .video-title {
    top: 50%;
    width: 100%;
    position: absolute;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* Horizontal Align */
    margin-top: 50px;
    font-size: 156.25%;
    line-height: 160%;
    font-weight: 700; }
  .owl-carousel .owl-video-wrapper .owl-video-play-icon {
    width: 60px;
    height: 60px;
    margin-left: -30px;
    margin-top: -30px; }
  .owl-carousel.has-nav .owl-nav {
    margin: 30px -15px 0; }
  .owl-carousel.has-nav.nav-tleft, .owl-carousel.has-nav.nav-tright {
    padding-top: 88px; }
  .owl-carousel.has-nav.nav-tleft .owl-nav, .owl-carousel.has-nav.nav-tright .owl-nav {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0; }
    .owl-carousel.has-nav.nav-tleft .owl-nav > div, .owl-carousel.has-nav.nav-tright .owl-nav > div {
      margin: 0;
      background-color: transparent;
      color: #bbb;
      width: 34px !important; }
    .owl-carousel.has-nav.nav-tleft .owl-nav > div:hover, .owl-carousel.has-nav.nav-tright .owl-nav > div:hover {
      color: #111; }
  .owl-carousel.has-nav.nav-tleft .owl-nav {
    text-align: left; }
  .owl-carousel.has-nav.nav-tright .owl-nav {
    text-align: right; }
  .owl-carousel.has-dots .owl-dots {
    margin-top: 25px; }
  .owl-carousel.has-dots .owl-dots .owl-dot {
    cursor: pointer; }
  .owl-carousel.has-dots.dots-progress .owl-dots {
    width: 100%; }
  .owl-carousel.has-dots.dots-progress .owl-dots .owl-dot {
    display: table-cell;
    width: 1%;
    height: 8px;
    margin: 0;
    border: none;
    background-color: #eee;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
    .owl-carousel.has-dots.dots-progress .owl-dots .owl-dot.active, .owl-carousel.has-dots.dots-progress .owl-dots .owl-dot:hover {
      background-color: #bbb; }
    .owl-carousel.has-dots.dots-progress .owl-dots .owl-dot:before {
      content: 'title';
      display: block;
      line-height: 0;
      visibility: hidden;
      filter: alpha(opacity=0);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
      -webkit-opacity: 0;
      -khtml-opacity: 0;
      -moz-opacity: 0;
      -ms-opacity: 0;
      -o-opacity: 0;
      opacity: 0;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* OUTLINE RADIUS */ }
    .owl-carousel.has-dots.dots-progress .owl-dots .owl-dot > span {
      width: 8px;
      height: 8px;
      display: block; }
  .owl-carousel.has-dots.dots-thumbnail .owl-dots {
    margin: 2px -3px; }
  .owl-carousel.has-dots.dots-thumbnail .owl-dots .owl-dot {
    width: auto;
    height: auto;
    margin: 2px;
    border: none;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-opacity: 0.7;
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    -ms-opacity: 0.7;
    -o-opacity: 0.7;
    opacity: 0.7;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
    .owl-carousel.has-dots.dots-thumbnail .owl-dots .owl-dot.active, .owl-carousel.has-dots.dots-thumbnail .owl-dots .owl-dot:hover {
      border: none;
      filter: alpha(opacity=100);
      -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
      -webkit-opacity: 1;
      -khtml-opacity: 1;
      -moz-opacity: 1;
      -ms-opacity: 1;
      -o-opacity: 1;
      opacity: 1;
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* OUTLINE RADIUS */ }
  .owl-carousel .owl-nav {
    text-align: center; }
  .owl-carousel .owl-nav.disabled {
    display: none; }
  .owl-carousel .owl-nav > div {
    display: inline-block;
    text-align: center;
    color: #111;
    position: relative;
    background-color: #eee;
    margin: 0 15px;
    line-height: 43px;
    width: 43px !important;
    height: 43px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .owl-carousel .owl-nav > div:hover {
    color: #fff;
    background-color: #e84b3a; }
  .owl-carousel .owl-nav > div i {
    font-size: 25px;
    line-height: 42px; }
  .owl-carousel .owl-dots {
    text-align: center; }
  .owl-carousel .owl-dots.disabled {
    display: none; }
  .owl-carousel .owl-dots .owl-dot {
    width: 9px;
    height: 9px;
    display: inline-block;
    margin-right: 30px;
    background-color: transparent;
    border: 1px solid #111;
    background: #fff;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ }
  .owl-carousel .owl-dots .owl-dot:last-child {
    margin-right: 0; }
  .owl-carousel .owl-dots .owl-dot:hover, .owl-carousel .owl-dots .owl-dot.active {
    background-color: #111; }
  .owl-carousel.nav-left .owl-nav {
    text-align: left; }
  .owl-carousel.nav-right .owl-nav {
    text-align: right; }
  @media (min-width: 800px) {
    .owl-carousel.nav-vertical .owl-nav {
      margin: 0; }

    .owl-carousel.nav-vertical .owl-prev, .owl-carousel.nav-vertical .owl-next {
      top: 50%;
      width: 100%;
      position: absolute;
      -webkit-transform: translateY(-50%);
      -khtml-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* Horizontal Align */
      width: auto;
      margin: 0; }

    .owl-carousel.nav-vertical .owl-prev {
      left: -30px; }

    .owl-carousel.nav-vertical .owl-next {
      right: -30px; } }
  @media (min-width: 1280px) {
    .owl-carousel.nav-vertical .owl-prev {
      left: -55px; }

    .owl-carousel.nav-vertical .owl-next {
      right: -55px; } }
  @media (min-width: 1366px) {
    .owl-carousel.nav-vertical .owl-prev {
      left: -85px; }

    .owl-carousel.nav-vertical .owl-next {
      right: -85px; } }
  @media (min-width: 992px) and (max-width: 1024px) {
    .owl-carousel.nav-vertical .owl-prev {
      left: -20px; }

    .owl-carousel.nav-vertical .owl-next {
      right: -20px; } }
  .owl-carousel.nav-vertical.inside .owl-prev {
    left: 0; }
  .owl-carousel.nav-vertical.inside .owl-next {
    right: 0; }
  .owl-carousel.nav-vertical-text .owl-prev, .owl-carousel.nav-vertical-text .owl-next {
    text-transform: uppercase;
    font-weight: 700;
    font-family: 'Montserrat';
    color: #111;
    font-size: 125%;
    line-height: 160%;
    border: none;
    border-bottom: 1px solid #111;
    background: transparent;
    letter-spacing: -0.4px;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .owl-carousel.nav-vertical-text .owl-prev i, .owl-carousel.nav-vertical-text .owl-next i {
    width: auto;
    height: auto;
    line-height: inherit; }
  .owl-carousel.nav-vertical-text .owl-prev:hover, .owl-carousel.nav-vertical-text .owl-next:hover {
    background-color: transparent;
    color: #e84b3a;
    border-color: #e84b3a; }
  @media (min-width: 800px) {
    .owl-carousel.nav-vertical-text .owl-prev, .owl-carousel.nav-vertical-text .owl-next {
      top: 50%;
      width: 100%;
      position: absolute;
      -webkit-transform: translateY(-50%);
      -khtml-transform: translateY(-50%);
      -moz-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      -o-transform: translateY(-50%);
      transform: translateY(-50%);
      /* BACKGROUND GRADIENT */
      /* bottom to top */
      /* Horizontal Align */
      margin: 0;
      width: auto; }

    .owl-carousel.nav-vertical-text .owl-prev {
      left: -40px; }

    .owl-carousel.nav-vertical-text .owl-next {
      right: -33px; } }

[id*="gallery-"].gallery, [id^="gallery-"].gallery {
  margin: -10px -15px -15px !important;
  overflow: hidden;
  /* WP Media */ }
  [id*="gallery-"].gallery dl.gallery-item, [id^="gallery-"].gallery dl.gallery-item {
    padding: 15px;
    margin: 0 !important; }
  [id*="gallery-"].gallery dl.gallery-item img, [id^="gallery-"].gallery dl.gallery-item img {
    border: none !important; }

.mejs-container {
  overflow: hidden; }
  .mejs-container .mejs-poster {
    background-size: cover; }
  .mejs-container .me-cannotplay {
    height: auto !important;
    /* Video */ }
  .mejs-container.wp-video-shortcode .mejs-controls:not(.mejs-offscreen) {
    display: none; }
  .mejs-container.wp-video-shortcode .mejs-overlay-button {
    width: 58px;
    height: 58px;
    margin: -29px 0 0 -29px;
    background: url(../images/media-play.png) center center no-repeat;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ }
  .mejs-container.wp-video-shortcode .mejs-overlay:hover .mejs-overlay-button {
    background-position: center center;
    -webkit-transform: scale(1.1);
    -khtml-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }

.btn, .btn-default, button, .button, input[type="submit"], .submit, .vc_general.vc_btn3.btn, .tnp-widget .tnp-field input[type="submit"] {
  color: #fff;
  font-size: 14px;
  font-style: normal;
  line-height: 120%;
  font-weight: 700;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  padding: 12.5px 34px;
  background-color: #111;
  border: 2px solid #111;
  position: relative;
  letter-spacing: 0.08em;
  cursor: pointer;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  /* TRIPLE BORDERS */
  /* Primary Button */ }
  .btn .icon, .btn-default .icon, button .icon, .button .icon, input[type="submit"] .icon, .submit .icon, .vc_general.vc_btn3.btn .icon, .tnp-widget .tnp-field input[type="submit"] .icon {
    margin-left: 15px; }
  .btn.btn-alt, .btn-default.btn-alt, button.btn-alt, .button.btn-alt, input[type="submit"].btn-alt, .submit.btn-alt, .vc_general.vc_btn3.btn.btn-alt, .tnp-widget .tnp-field input[type="submit"].btn-alt, .btn[name="update_cart"], .btn-default[name="update_cart"], button[name="update_cart"], .button[name="update_cart"], input[type="submit"][name="update_cart"], .submit[name="update_cart"], .vc_general.vc_btn3.btn[name="update_cart"], .tnp-widget .tnp-field input[type="submit"][name="update_cart"], .btn.checkout-button, .btn-default.checkout-button, button.checkout-button, .button.checkout-button, input[type="submit"].checkout-button, .submit.checkout-button, .vc_general.vc_btn3.btn.checkout-button, .tnp-widget .tnp-field input[type="submit"].checkout-button {
    background: transparent;
    color: #111; }
  .btn.btn-alt:hover, .btn-default.btn-alt:hover, button.btn-alt:hover, .button.btn-alt:hover, input[type="submit"].btn-alt:hover, .submit.btn-alt:hover, .vc_general.vc_btn3.btn.btn-alt:hover, .tnp-widget .tnp-field input[type="submit"].btn-alt:hover, .btn[name="update_cart"]:hover, .btn-default[name="update_cart"]:hover, button[name="update_cart"]:hover, .button[name="update_cart"]:hover, input[type="submit"][name="update_cart"]:hover, .submit[name="update_cart"]:hover, .vc_general.vc_btn3.btn[name="update_cart"]:hover, .tnp-widget .tnp-field input[type="submit"][name="update_cart"]:hover, .btn.checkout-button:hover, .btn-default.checkout-button:hover, button.checkout-button:hover, .button.checkout-button:hover, input[type="submit"].checkout-button:hover, .submit.checkout-button:hover, .vc_general.vc_btn3.btn.checkout-button:hover, .tnp-widget .tnp-field input[type="submit"].checkout-button:hover, .btn.btn-alt:active, .btn-default.btn-alt:active, button.btn-alt:active, .button.btn-alt:active, input[type="submit"].btn-alt:active, .submit.btn-alt:active, .vc_general.vc_btn3.btn.btn-alt:active, .tnp-widget .tnp-field input[type="submit"].btn-alt:active, .btn[name="update_cart"]:active, .btn-default[name="update_cart"]:active, button[name="update_cart"]:active, .button[name="update_cart"]:active, input[type="submit"][name="update_cart"]:active, .submit[name="update_cart"]:active, .vc_general.vc_btn3.btn[name="update_cart"]:active, .tnp-widget .tnp-field input[type="submit"][name="update_cart"]:active, .btn.checkout-button:active, .btn-default.checkout-button:active, button.checkout-button:active, .button.checkout-button:active, input[type="submit"].checkout-button:active, .submit.checkout-button:active, .vc_general.vc_btn3.btn.checkout-button:active, .tnp-widget .tnp-field input[type="submit"].checkout-button:active, .btn.btn-alt:focus, .btn-default.btn-alt:focus, button.btn-alt:focus, .button.btn-alt:focus, input[type="submit"].btn-alt:focus, .submit.btn-alt:focus, .vc_general.vc_btn3.btn.btn-alt:focus, .tnp-widget .tnp-field input[type="submit"].btn-alt:focus, .btn[name="update_cart"]:focus, .btn-default[name="update_cart"]:focus, button[name="update_cart"]:focus, .button[name="update_cart"]:focus, input[type="submit"][name="update_cart"]:focus, .submit[name="update_cart"]:focus, .vc_general.vc_btn3.btn[name="update_cart"]:focus, .tnp-widget .tnp-field input[type="submit"][name="update_cart"]:focus, .btn.checkout-button:focus, .btn-default.checkout-button:focus, button.checkout-button:focus, .button.checkout-button:focus, input[type="submit"].checkout-button:focus, .submit.checkout-button:focus, .vc_general.vc_btn3.btn.checkout-button:focus, .tnp-widget .tnp-field input[type="submit"].checkout-button:focus {
    background: #111;
    border-color: #111;
    color: #fff; }
  .btn.btn-alt-white, .btn-default.btn-alt-white, button.btn-alt-white, .button.btn-alt-white, input[type="submit"].btn-alt-white, .submit.btn-alt-white, .vc_general.vc_btn3.btn.btn-alt-white, .tnp-widget .tnp-field input[type="submit"].btn-alt-white {
    border-color: #fff;
    background: transparent;
    color: #fff; }
  .btn.btn-alt-white:hover, .btn-default.btn-alt-white:hover, button.btn-alt-white:hover, .button.btn-alt-white:hover, input[type="submit"].btn-alt-white:hover, .submit.btn-alt-white:hover, .vc_general.vc_btn3.btn.btn-alt-white:hover, .tnp-widget .tnp-field input[type="submit"].btn-alt-white:hover {
    background: #fff;
    border-color: #fff;
    color: #111; }
  .btn:hover, .btn-default:hover, button:hover, .button:hover, input[type="submit"]:hover, .submit:hover, .vc_general.vc_btn3.btn:hover, .tnp-widget .tnp-field input[type="submit"]:hover, .btn:active, .btn-default:active, button:active, .button:active, input[type="submit"]:active, .submit:active, .vc_general.vc_btn3.btn:active, .tnp-widget .tnp-field input[type="submit"]:active, .btn:focus, .btn-default:focus, button:focus, .button:focus, input[type="submit"]:focus, .submit:focus, .vc_general.vc_btn3.btn:focus, .tnp-widget .tnp-field input[type="submit"]:focus {
    background: #e84b3a;
    border-color: #e84b3a;
    border-width: 2px;
    color: #fff; }
  .btn.btn-white, .btn-default.btn-white, button.btn-white, .button.btn-white, input[type="submit"].btn-white, .submit.btn-white, .vc_general.vc_btn3.btn.btn-white, .tnp-widget .tnp-field input[type="submit"].btn-white {
    background-color: #fff;
    color: #111;
    border-color: #fff; }
  .btn.btn-white:hover, .btn-default.btn-white:hover, button.btn-white:hover, .button.btn-white:hover, input[type="submit"].btn-white:hover, .submit.btn-white:hover, .vc_general.vc_btn3.btn.btn-white:hover, .tnp-widget .tnp-field input[type="submit"].btn-white:hover {
    background-color: #111;
    color: #fff; }
  .btn:before, .btn-default:before, button:before, .button:before, input[type="submit"]:before, .submit:before, .vc_general.vc_btn3.btn:before, .tnp-widget .tnp-field input[type="submit"]:before {
    margin-right: 15px;
    font-size: 120%;
    vertical-align: top;
    /* Button Size */ }
  .btn.btn-large, .btn-default.btn-large, button.btn-large, .button.btn-large, input[type="submit"].btn-large, .submit.btn-large, .vc_general.vc_btn3.btn.btn-large, .tnp-widget .tnp-field input[type="submit"].btn-large {
    padding-top: 23px;
    padding-bottom: 23px; }

.btn-primary, input.btn-primary[type="submit"], .vc_general.vc_btn3.btn-primary {
  background-color: #e84b3a;
  color: #fff;
  border-color: #e84b3a;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  /* BACKGROUND GRADIENT */
  /* bottom to top */ }
  .btn-primary:hover, input.btn-primary[type="submit"]:hover, .vc_general.vc_btn3.btn-primary:hover {
    background-color: #111;
    border-color: #111;
    color: #fff;
    /* Alt */ }
  .btn-primary.btn-alt, input.btn-primary[type="submit"].btn-alt, .vc_general.vc_btn3.btn-primary.btn-alt {
    color: #e84b3a; }

.btn-block {
  display: block; }

.btn-group {
  margin: -5px; }
  .btn-group .btn-item {
    display: inline-block;
    margin: 5px 3px; }
  .btn-group.square-outline .btn-item {
    width: 45px;
    height: 45px;
    line-height: 45px;
    font-size: 18px;
    text-align: center;
    border: 1px solid; }
  .btn-group.square-outline.white .btn-item {
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff; }
    .btn-group.square-outline.white .btn-item:hover {
      border-color: #fff; }

.cms-load-posts {
  margin-top: 50px; }

input, .tnp-widget .tnp-field input, .tnp-widget .tnp-field input {
  max-width: 100%;
  outline: 0 none transparent; }
  input[type="text"], .tnp-widget .tnp-field input[type="text"], .tnp-widget .tnp-field input[type="text"], input[type="email"], .tnp-widget .tnp-field input[type="email"], .tnp-widget .tnp-field input[type="email"], input[type="password"], .tnp-widget .tnp-field input[type="password"], .tnp-widget .tnp-field input[type="password"], input[type="phone"], .tnp-widget .tnp-field input[type="phone"], .tnp-widget .tnp-field input[type="phone"], input[type="tel"], .tnp-widget .tnp-field input[type="tel"], .tnp-widget .tnp-field input[type="tel"] {
    width: 100%;
    text-align: inherit; }
  input[type="radio"], .tnp-widget .tnp-field input[type="radio"], .tnp-widget .tnp-field input[type="radio"], input[type="checkbox"], .tnp-widget .tnp-field input[type="checkbox"], .tnp-widget .tnp-field input[type="checkbox"] {
    margin-right: 10px; }
  input[type="radio"] + label, .tnp-widget .tnp-field input[type="radio"] + label, .tnp-widget .tnp-field input[type="radio"] + label, input[type="checkbox"] + label, .tnp-widget .tnp-field input[type="checkbox"] + label, .tnp-widget .tnp-field input[type="checkbox"] + label, input[type="radio"] + .label, .tnp-widget .tnp-field input[type="radio"] + .label, .tnp-widget .tnp-field input[type="radio"] + .label, input[type="checkbox"] + .label, .tnp-widget .tnp-field input[type="checkbox"] + .label, .tnp-widget .tnp-field input[type="checkbox"] + .label {
    font-weight: 400;
    color: #111; }

input, select, textarea, .tnp-widget .tnp-field input[type="text"], .tnp-widget .tnp-field input[type="email"] {
  border: 1px solid #eee;
  background: #fff;
  color: #868686;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  /* TRIPLE BORDERS */ }
  input:hover, select:hover, textarea:hover, .tnp-widget .tnp-field input[type="text"]:hover, .tnp-widget .tnp-field input[type="email"]:hover, input:active, select:active, textarea:active, .tnp-widget .tnp-field input[type="text"]:active, .tnp-widget .tnp-field input[type="email"]:active, input:focus, select:focus, textarea:focus, .tnp-widget .tnp-field input[type="text"]:focus, .tnp-widget .tnp-field input[type="email"]:focus, input.woocommerce-invalid, select.woocommerce-invalid, textarea.woocommerce-invalid, .tnp-widget .tnp-field input[type="text"].woocommerce-invalid, .tnp-widget .tnp-field input[type="email"].woocommerce-invalid, input.invalid, select.invalid, textarea.invalid, .tnp-widget .tnp-field input[type="text"].invalid, .tnp-widget .tnp-field input[type="email"].invalid, input.required, select.required, textarea.required, .tnp-widget .tnp-field input[type="text"].required, .tnp-widget .tnp-field input[type="email"].required {
    border-color: #e84b3a; }

.woocommerce-invalid > input, .invalid > input, .required > input {
  border-color: #e84b3a; }

input, textarea, .tnp-widget .tnp-field input[type="text"], .tnp-widget .tnp-field input[type="email"] {
  padding: 8px 15px; }

select, textarea {
  width: 100%;
  max-width: 100%;
  outline: 0 none transparent !important; }

select, .tnp-widget .tnp-field select {
  height: 45px;
  padding: 0 30px 0 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: #fff url("../images/select-arrow.png") right center no-repeat;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  /* BOX */ }

textarea {
  vertical-align: top;
  /* for IE10+ */ }
  textarea[name="order_comments"] {
    min-height: 100px; }

select::-ms-expand {
  display: none;
  /* Form Row */ }

.form-row {
  margin-bottom: 10px;
  /* Custom Select 2 */ }
  @media (min-width: 768px) {
  .form-row.form-row-first, .form-row.form-row-last {
    width: calc(50% - 5px);
    float: left; }
  .form-row.form-row-last {
    float: right; } }
  .form-row.form-row-wide {
    display: block;
    overflow: hidden;
    clear: both; }

.select2-container.select2-container--default .select2-selection--single {
  height: 45px;
  border-color: #eee;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0;
  /* BACKGROUND GRADIENT */
  /* bottom to top */ }
  .select2-container.select2-container--default .select2-selection--single .select2-selection__rendered {
    line-height: 45px; }
  .select2-container.select2-container--default .select2-selection__arrow {
    height: calc(100% - 2px);
    width: 39px;
    background: url('../images/select-arrow.png') center center no-repeat; }
  .select2-container.select2-container--default .select2-selection__arrow b {
    display: none; }
  .select2-container.select2-container--default.select2-dropdown-open .select2-choice, .select2-container.select2-container--default.select2-drop-above .select2-choice, .select2-container.select2-container--default.select2-dropdown-open .select2-choices, .select2-container.select2-container--default.select2-drop-above .select2-choices {
    border: 1px solid #eee;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }

.select2-drop-active {
  border: 1px solid #eee;
  /* post-password-form */ }

form.post-password-form {
  /* Place Holder Text */ }
  form.post-password-form input[name="post_password"] {
    margin-bottom: 30px; }

::-ms-expand {
  border: 0;
  background-color: transparent; }

form input::-ms-clear, form input::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }

* {
  outline: none !important; }
  *:hover, *:active, *:focus {
    outline: none !important; }

.require, .required {
  color: red; }

.regular-color, .primary-color {
  color: #111; }

.accent-color {
  color: #e84b3a; }
  .accent-color:hover {
    color: #111; }

.color-white {
  color: #fff; }

.status-color {
  color: #ffc000; }

.accent-bg {
  background-color: #e84b3a;
  color: #fff; }

.regular-bg, .primary-bg {
  background-color: #111;
  color: #fff; }

.white-bg {
  background: #fff; }

.available {
  color: #7db701; }

.unavailable {
  color: red;
  /* HTML tag and Formating */
  /**
	 * Heading 
	 * @base font size 16px
	*/ }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 15px 0;
  color: #111;
  text-transform: uppercase; }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a, h6 a, .h6 a {
    color: #111; }
  h1 a:hover, .h1 a:hover, h2 a:hover, .h2 a:hover, h3 a:hover, .h3 a:hover, h4 a:hover, .h4 a:hover, h5 a:hover, .h5 a:hover, h6 a:hover, .h6 a:hover, h1 a:active, .h1 a:active, h2 a:active, .h2 a:active, h3 a:active, .h3 a:active, h4 a:active, .h4 a:active, h5 a:active, .h5 a:active, h6 a:active, .h6 a:active, h1 a:focus, .h1 a:focus, h2 a:focus, .h2 a:focus, h3 a:focus, .h3 a:focus, h4 a:focus, .h4 a:focus, h5 a:focus, .h5 a:focus, h6 a:focus, .h6 a:focus {
    color: #e84b3a; }

h1, .h1 {
  margin-bottom: 0; }

h6, .h6 {
  /* link */ }

a {
  color: #111;
  text-decoration: none;
  outline: none;
  -webkit-transition: all 300ms linear 0ms;
  -khtml-transition: all 300ms linear 0ms;
  -moz-transition: all 300ms linear 0ms;
  -ms-transition: all 300ms linear 0ms;
  -o-transition: all 300ms linear 0ms;
  transition: all 300ms linear 0ms;
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  /* TRIPLE BORDERS */
  /* small font */ }
  a:hover, a:active, a:focus {
    color: #e84b3a;
    text-decoration: none;
    outline: none; }
  a:active, a.active, a.actived {
    color: #e84b3a;
    text-decoration: none;
    outline: none; }

small, .small {
  font-size: 86.66667%;
  /* Table */ }

table, .table {
  width: 100%;
  border: 1px solid #eee;
  /* List */ }
  table thead, .table thead {
    color: #222;
    text-transform: uppercase;
    font-size: 105.88235%;
    border: 1px solid #eee; }
  table tr, .table tr {
    border-bottom: 1px solid #eee; }
  table tr:last-child, .table tr:last-child {
    border-bottom: 0; }
  table th, .table th {
    font-weight: 400;
    text-align: left; }
  table th, .table th, table td, .table td {
    padding: 5px;
    overflow: hidden; }

ul, ol {
  padding: 0;
  margin: 0;
  list-style-position: inside;
  /**
	 * Custom style for UL, OL
	 * Just custom style for text inserted via content editor
	 * and on single post / page / post type
	*/ }
  ul ul, ol ul, ul ol, ol ol {
    margin-left: 20px; }
  ul.list-unstyled, ol.list-unstyled {
    list-style: none; }
  ul.list-unstyled li:before, ol.list-unstyled li:before {
    display: none; }
  ul.list-unstyled ul, ol.list-unstyled ul, ul.list-unstyled ol, ol.list-unstyled ol {
    list-style: none; }
  ul.list-inline, ol.list-inline {
    margin-left: -5px;
    margin-right: -5px; }
  ul.list-inline li, ol.list-inline li {
    display: inline-block;
    padding: 0 5px; }
  ul.list-inline li:before, ol.list-inline li:before {
    display: none; }
  ul.nav-justified, ol.nav-justified {
    width: 100%;
    list-style: none; }
  ul.nav-justified li, ol.nav-justified li {
    display: table-cell;
    width: 1%; }
  ul.nav-justified li:before, ol.nav-justified li:before {
    display: none; }
  ul.cms-list, ol.cms-list {
    list-style: none;
    padding: 0;
    margin: 0; }
  ul.cms-list li, ol.cms-list li {
    position: relative;
    list-style: none; }
  ul.cms-list li:before, ol.cms-list li:before {
    content: "\e684";
    display: inline-block;
    font-family: 'Pe-icon-7-stroke';
    font-size: 20px;
    color: #e84b3a;
    padding-right: 10px;
    -webkit-transform: translateY(4px);
    -khtml-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }
  ul.cms-list.disc li, ol.cms-list.disc li {
    padding-bottom: 3px; }
  ul.cms-list.disc li:before, ol.cms-list.disc li:before {
    content: "\.";
    color: #e84b3a;
    font-size: 30px;
    -webkit-transform: translateY(-3px);
    -khtml-transform: translateY(-3px);
    -moz-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    -o-transform: translateY(-3px);
    transform: translateY(-3px);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }
  ul.cms-list.checked li:before, ol.cms-list.checked li:before {
    content: "\f00c";
    font-family: 'FontAwesome';
    -webkit-transform: translateY(0px);
    -khtml-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }
  ul.cms-list.outline-checked li:before, ol.cms-list.outline-checked li:before {
    content: "\e66c"; }

.menu-2cols {
  /* Definition Lists */ }
  @media (min-width: 480px) {
      .menu-2cols ul.menu li {
        width: calc(50% - 3px);
        display: inline-block; } }
  .menu-2cols ul.menu li a {
    text-transform: capitalize !important; }

dl {
  margin: 0;
  /* p */ }
  dl dt {
    font-size: 125%;
    color: #111; }
  dl dd {
    padding: 0;
    margin: 0; }
  dl dd + dt {
    margin-top: 15px; }

p {
  margin: 0 0 12px 0;
  /* Blockquote */ }
  p:last-child {
    margin-bottom: 0; }

blockquote, .blockquote {
  margin: 28px 0 40px 50px;
  padding: 0 0 0 15px;
  font-size: 15px;
  font-style: italic;
  border-left: 2px solid #111;
  /* Check list */ }
  blockquote cite, .blockquote cite, blockquote .cite, .blockquote .cite {
    text-transform: uppercase; }

.checkbox {
  font-weight: 400;
  font-size: 105.88235%;
  display: inline-block;
  /* Disable / Unselected  */ }

.disable, .disabled, .unseclect, .unselected, .inactive, button[disabled], html input[disabled] {
  cursor: not-allowed !important;
  filter: alpha(opacity=50);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -webkit-opacity: 0.5;
  -khtml-opacity: 0.5;
  -moz-opacity: 0.5;
  -ms-opacity: 0.5;
  -o-opacity: 0.5;
  opacity: 0.5;
  /* BACKGROUND GRADIENT */
  /* bottom to top */
  /* OUTLINE RADIUS */
  /* Font style */ }

.italic, .font-italic {
  font-style: italic;
  /* Hightlighted Color */ }

.cms-highlight {
  font-style: italic;
  /* Text Alignment */ }
  .cms-highlight.inline {
    display: inline-block;
    padding: 0 5px;
    margin: 0 5px; }
  .cms-highlight.block {
    padding: 30px;
    margin-top: 50px;
    margin-bottom: 45px;
    display: block;
    clear: both; }

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

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

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

.flex-list {
  /* loop-pagination */ }
  .flex-list .entry-media {
    margin-bottom: 0;
    height: 100%; }
  .flex-list .entry-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -moz-object-fit: cover;
    -ms-filter-object-fit: cover;
    -webkit-object-fit: cover;
    /* Image black and white */ }
  @media (min-width: 992px) {
  .flex-list {
    box-sizing: border-box;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
    .flex-list > div {
      -webkit-box-flex: 1;
      -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
      flex-grow: 1;
      display: flex;
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
      -webkit-box-pack: center;
      -webkit-justify-content: center;
      -ms-flex-pack: center;
      justify-content: center; } }

.paging-navigation {
  width: 100%;
  overflow: hidden; }

.loop-pagination {
  margin: -5px 0; }
  .loop-pagination .page-numbers {
    min-width: 40px;
    height: 40px;
    line-height: 40px;
    white-space: nowrap;
    background: transparent;
    color: #868686;
    display: inline-block;
    text-align: center;
    margin: 5px 3px;
    border: 1px solid #eee;
    vertical-align: top; }
  .loop-pagination .page-numbers:last-child {
    margin-right: 0; }
  .loop-pagination .page-numbers:hover, .loop-pagination .page-numbers.current {
    background: #eee;
    color: #111; }
  .loop-pagination.style2 {
    display: block;
    padding-left: 3.76344%;
    padding-right: 3.76344%; }
  .loop-pagination.style2 .page-numbers {
    background-color: #f7f7f7;
    color: #212121; }
  .loop-pagination.style2 .page-numbers:hover {
    background: #111;
    color: #fff; }
  .loop-pagination.style2 span.page-numbers {
    background: #111;
    color: #fff; }
  .loop-pagination.style2 .prev.page-numbers {
    display: none; }
  .loop-pagination.style2 .next.page-numbers {
    float: right;
    font-size: 12px;
    text-transform: uppercase;
    border-bottom: 2px solid #909090;
    background: transparent;
    color: #111;
    line-height: 24px;
    height: 24px;
    margin: 8px 0; }
  .loop-pagination.style2 .next.page-numbers:hover {
    color: #e84b3a;
    border-color: #111; }

.paging-dots .paging-navigation {
  margin-top: 30px !important; }
  .paging-dots .loop-pagination .page-numbers {
    min-width: inherit;
    width: 10px;
    height: 10px;
    font-size: 0;
    background: #ccc;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    margin-right: 6px; }
  .paging-dots .loop-pagination .page-numbers.next, .paging-dots .loop-pagination .page-numbers.prev {
    display: none; }
  .paging-dots .loop-pagination span.page-numbers {
    background: #e84b3a; }

.paging-classic {
  /* post-navigation */ }
  .paging-classic .paging-navigation {
    text-align: right; }
  .paging-classic .pagination {
    margin-top: 0px; }
  .paging-classic .loop-pagination .page-numbers {
    min-width: inherit;
    width: auto;
    height: auto;
    font-size: 120%;
    line-height: 140%;
    background: transparent;
    margin-right: 0;
    color: #202020;
    border-bottom: 1px solid transparent;
    margin-right: 10px;
    font-weight: 400; }
  .paging-classic .loop-pagination .page-numbers:last-child {
    margin-right: 0; }
  .paging-classic .loop-pagination span.page-numbers {
    color: #202020;
    border-bottom-color: #202020; }

.post-navigation {
  margin-top: 20px;
  /* page-links */ }
  .post-navigation a {
    margin-top: 10px; }

.page-links {
  margin-top: 30px;
  clear: both; }
  .page-links span:not(.page-links-title), .page-links a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    color: #fff;
    display: inline-block;
    text-align: center; }
  .page-links span:not(.page-links-title):hover, .page-links a:hover {
    background: #e84b3a; }
  .page-links a {
    background: #111; }
  .page-links > span:not(.page-links-title) {
    background: #e84b3a; }

.circle, .img-circle {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  /* BACKGROUND GRADIENT */
  /* bottom to top */ }

.rounded, .rounded3 {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  /* BACKGROUND GRADIENT */
  /* bottom to top */ }

.inline {
  display: inline-block; }

[class*="dashicons"], [class^="dashicons"] {
  display: inline-block;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 1;
  font-family: dashicons;
  text-decoration: inherit;
  font-weight: 400;
  font-style: normal;
  vertical-align: top;
  text-align: center;
  -webkit-transition: color 0.1s ease-in 0;
  transition: color 0.1s ease-in 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  /* Right to Left language */ }

body.rtl table th {
  text-align: left; }

#cms-footer {
  margin-top: 160px;
  /* Footer Top */ }
  @media (min-width: 991px) {
    #cms-footer.footer-fixed {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      background: rgba(0, 0, 0, 0); }
      #cms-footer.footer-fixed #cms-footer-top, #cms-footer.footer-fixed #cms-footer-bottom {
        background: rgba(0, 0, 0, 0); } }
  #cms-footer.remove-margin-top {
    margin-top: 0 !important; }
  #cms-footer #cms-footer-panel {
    height: 5px; }
  #cms-footer #cms-footer-panel img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -moz-object-fit: cover;
    -ms-filter-object-fit: cover;
    -webkit-object-fit: cover;
    /* Image black and white */ }

#cms-footer-top {
  padding: 96px 0 12px 0;
  background: #111;
  /* Footer Bottom */ }
  #cms-footer-top .widget + .widget {
    margin-top: 26px; }
  #cms-footer-top .widget .wg-title {
    margin: 0 0 46px 0;
    letter-spacing: 0.08em;
    font-weight: 500; }
  #cms-footer-top .widget .wg-title:after {
    display: none; }
  #cms-footer-top .widget.widget_cms_openhours .wg-title {
    margin-bottom: 24px; }
  #cms-footer-top.layout2 {
    border-top: 1px solid #eee; }
  #cms-footer-top.layout2 .container {
    padding-left: 0;
    padding-right: 0; }
  @media (max-width: 991px) {
  #cms-footer-top {
    background-size: cover;
    background-attachment: fixed; }
    #cms-footer-top .footer-top-wg + .footer-top-wg {
      margin-top: 40px; } }

#cms-footer-bottom {
  background-color: #111;
  padding-top: 30px;
  padding-bottom: 30px; }
  #cms-footer-bottom .footer-logo {
    margin-bottom: 23px; }
  #cms-footer-bottom .cms-social {
    padding-top: 5px; }
  #cms-footer-bottom .cms-social a {
    font-size: 14px; }
  @media (min-width: 1200px) {
    #cms-footer-bottom .no-container {
      padding-left: 40px;
      padding-right: 40px; } }
  #cms-footer-bottom.layout a {
    color: #fff; }
  @media (min-width: 1200px) {
      #cms-footer-bottom.layout3 .no-container {
        padding-left: 30px;
        padding-right: 30px; } }
  #cms-footer-bottom.layout4 .cms-social {
    background-color: #fff;
    padding: 0 0 20px;
    margin: 0 -15px; }
  #cms-footer-bottom.layout4 .copy-right {
    padding: 20px 0; }

.footer-menu .menu {
  margin: -10px -48px;
  text-align: center; }
  .footer-menu .menu li {
    display: inline-block;
    border: none;
    text-transform: uppercase;
    padding: 10px 48px; }
  .footer-menu .menu li a {
    padding: 0;
    color: #fff;
    font-size: 105.88235%; }
  .footer-menu .menu li a:hover {
    color: #fff;
    text-decoration: underline; }

.cms-grid-wraper .layout1 + .paging-navigation {
  margin-top: 0; }
  .cms-grid-wraper .layout-3 + .paging-navigation {
    margin-top: 40px;
    text-align: center; }
  .cms-grid-wraper .layout-7 .entry-header {
    margin-bottom: 6px; }
  .cms-grid-wraper .layout-7 .entry-title a {
    font-size: 14px;
    letter-spacing: 0.08em;
    font-weight: 600; }
  .cms-grid-wraper .layout-7 .overlay-inner {
    padding: 40px 45px; }
  .cms-grid-wraper .layout-7 + .cms_pagination .cms-load-posts {
    margin-top: 38px; }
  .cms-grid-wraper .layout-8 .entry-media {
    margin-bottom: 14px; }
  .cms-grid-wraper .layout-8 .entry-header {
    margin-bottom: 0; }
  .cms-grid-wraper .layout-8 .entry-header .entry-meta {
    margin-bottom: 0; }
    .cms-grid-wraper .layout-8 .entry-header .entry-meta i {
      display: none; }
  .cms-grid-wraper .layout-8 .entry-header .entry-title a {
    font-size: 16px;
    font-weight: 600;
    text-transform: none; }
  .cms-grid-wraper .layout-9 .entry-media {
    margin: 0; }
  .cms-grid-wraper .layout-9 .entry-media > .nectar-love {
    position: absolute;
    left: 0;
    bottom: 0;
    background-color: #111;
    color: #fff;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px; }
    .cms-grid-wraper .layout-9 .entry-media > .nectar-love .nectar-love-count {
      display: none; }
  .cms-grid-wraper .layout-9 .entry-media .overlay .nectar-love-count {
    display: none; }
  .cms-grid-wraper .layout-9 .entry-content {
    border: 1px solid #eee;
    padding: 25px 30px 40px; }
  .cms-grid-wraper .layout-9 .entry-content .entry-header {
    margin-bottom: 12px; }
    .cms-grid-wraper .layout-9 .entry-content .entry-header .entry-title {
      margin-bottom: 9px; }
    .cms-grid-wraper .layout-9 .entry-content .entry-header .entry-meta {
      margin: 0 -8px 0; }
    .cms-grid-wraper .layout-9 .entry-content .entry-header .entry-meta li {
      padding: 0 8px; }

ul.cms-filter-category {
  margin-left: -16px;
  margin-right: -16px;
  margin-bottom: 17px; }
  ul.cms-filter-category li {
    padding: 0 16px 16px; }
  ul.cms-filter-category li:before {
    display: none; }
  ul.cms-filter-category a {
    text-transform: uppercase;
    font-size: 93.33333%;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #999; }
  ul.cms-filter-category a:hover, ul.cms-filter-category a.active {
    color: #111; }

.cms-grid-item {
  /* View all Button */ }
  .cms-grid-item.has-custom-bg .custom-bg {
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 30px;
    /* Blog Layout */ }
  .cms-grid-item > .entry-blog {
    margin-bottom: 50px;
    /* Post format */ }
  .cms-grid-item .format-link .entry-media > .entry-content {
    display: none;
    /* Post Type Service */ }
  .cms-grid-item .entry-service {
    margin-bottom: 22px;
    /* Post Type Team */ }
  .cms-grid-item .entry-service .entry-media + .cms-sv-icon {
    margin-top: 30px; }
  .cms-grid-item .team-pos {
    font-size: 86.66667%;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-top: 7px; }
  .cms-grid-item .team-social {
    margin-top: 37px; }
  @media (min-width: 1200px) {
  .cms-grid-item.col-lg-first {
    clear: left; } }
  @media (max-width: 1199px) {
  .cms-grid-item.col-lg-first {
    clear: none; }
  .cms-grid-item.col-md-first {
    clear: left; } }
  @media (max-width: 991px) {
  .cms-grid-item.col-lg-first, .cms-grid-item.col-md-first {
    clear: none; }
  .cms-grid-item.col-sm-first {
    clear: left; } }
  @media (max-width: 767px) {
  .cms-grid-item.col-lg-first, .cms-grid-item.col-md-first, .cms-grid-item.col-sm-first {
    clear: none; }
  .cms-grid-item.col-xs-first {
    clear: left; } }
  @media (min-width: 768px) and (max-width: 800px) {
  .cms-grid-item .cms-grid-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis; } }

.cms-grid-view-all {
  margin-top: 20px;
  /* CMS Carousel */ }
  .cms-grid-view-all a {
    min-width: 170px; }

.cms-carousel {
  /* CMS Heading */ }
  .cms-carousel + .cms-grid-view-all {
    margin-top: 58px; }
  .cms-carousel.layout-2 .overlay {
    visibility: visible;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
  .cms-carousel.layout-2 .overlay:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 80px;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.8)), to(transparent));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.8), transparent);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.8), transparent);
    background-image: -ms-linear-gradient(top, rgba(0, 0, 0, 0.8), transparent);
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.8), transparent);
    background-image: linear-gradient(top, rgba(0, 0, 0, 0.8), transparent);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='rgba(0, 0, 0, 0.8)', endColorStr='transparent');
    /* BACKGROUND HORIZONTAL */ }
  .cms-carousel.layout-2 .overlay .overlay-inner {
    padding-bottom: 40px;
    padding-top: 50px;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
    background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='rgba(0, 0, 0, 0.8)');
    /* top to bottom */ }
  .cms-carousel.layout-2 .entry-title a {
    font-size: 16px;
    font-weight: 500; }
  @media (min-width: 768px) {
    .cms-carousel.layout-2 .overlay:before {
      height: 200px; }
      .cms-carousel.layout-2 .overlay .overlay-inner {
        padding-top: 174px; }

    .cms-carousel.layout-2 .btn-group {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 40px;
      padding-left: 40px;
      padding-right: 40px; }
      .cms-carousel.layout-2 .btn-group a {
        float: left; }
        .cms-carousel.layout-2 .btn-group a.fa-link {
          float: right; }

    .cms-carousel.layout-2 .entry-content {
      padding-left: 60px;
      padding-right: 60px; } }
  .cms-carousel.layout-3 .overlay .overlay-inner {
    padding-bottom: 40px;
    padding-top: 157px;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, 0.8)));
    background-image: -webkit-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    background-image: -moz-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    background-image: -ms-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    background-image: -o-linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    background-image: linear-gradient(top, transparent, rgba(0, 0, 0, 0.8));
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='rgba(0, 0, 0, 0.8)');
    /* top to bottom */ }
    .cms-carousel.layout-3 .overlay .overlay-inner .btn-group {
      float: right; }
    @media (min-width: 767px) {
        .cms-carousel.layout-3 .overlay .overlay-inner .btn-group {
          position: absolute;
          right: 40px;
          bottom: 40px; } }
  .cms-carousel.layout-3 .entry-header {
    margin-bottom: 7px; }
  .cms-carousel.layout-3 .entry-title a {
    font-size: 14px;
    font-weight: 700; }
  .cms-carousel.layout-3 .entry-meta {
    margin-top: 5px;
    margin-bottom: 0; }
  .cms-carousel.layout-3 .entry-meta > li {
    color: #bababa;
    font-size: 13px; }
    .cms-carousel.layout-3 .entry-meta > li > i {
      display: none; }
    .cms-carousel.layout-3 .entry-meta > li a {
      color: #bababa; }
  .cms-carousel.layout-3.has-dots .owl-dots {
    margin-top: 50px;
    padding: 0 30px; }
  .cms-carousel.layout-3.has-dots .owl-dots .owl-dot {
    height: 5px; }
    .cms-carousel.layout-3.has-dots .owl-dots .owl-dot.active, .cms-carousel.layout-3.has-dots .owl-dots .owl-dot:hover {
      background-color: #111; }
  .cms-carousel.layout-4 .overlay .overlay-inner {
    padding: 45px 40px;
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    background-image: -webkit-linear-gradient(top, transparent, #000);
    background-image: -moz-linear-gradient(top, transparent, #000);
    background-image: -ms-linear-gradient(top, transparent, #000);
    background-image: -o-linear-gradient(top, transparent, #000);
    background-image: linear-gradient(top, transparent, #000);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='#000');
    /* top to bottom */ }
    .cms-carousel.layout-4 .overlay .overlay-inner .entry-header {
      margin-bottom: 5px; }
    @media (min-width: 992px) {
      .cms-carousel.layout-4 .overlay .overlay-inner {
        padding-top: 160px; } }
  .cms-carousel.layout-6 .entry-media {
    margin-bottom: 18px; }
  .cms-carousel.layout-6 .entry-meta {
    margin-bottom: 2px; }
  .cms-carousel.layout-6 .entry-meta > li > i {
    display: none; }
  .cms-carousel.layout-6 .entry-title {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
  .cms-carousel.layout-6 .entry-title a {
    font-size: 16px;
    text-transform: none;
    font-weight: 600;
    letter-spacing: 0; }
  .cms-carousel.layout-6 .cms-grid-item article + article {
    margin-top: 17px; }
  .cms-carousel.dots-thumbnail .entry-media {
    margin-bottom: 0; }

.cms-heading {
  /* CMS Single Fancy Box */ }
  .cms-heading .heading {
    margin: 0; }
  .cms-heading .sub-heading {
    margin-top: 8px; }
  .cms-heading .desccription {
    margin-top: 20px; }
  .cms-heading.layout2 .heading, .cms-heading.layout2 .sub-heading {
    margin-top: 0;
    display: inline-block; }
  .cms-heading.layout2 .heading + .sub-heading:before {
    content: "\00a0";
    display: inline-block; }
  .cms-heading.layout2 .desccription {
    margin-top: -3px;
    font-style: italic; }
  .cms-heading.layout3 .heading {
    margin-top: 24px;
    font-size: 55px; }
  .cms-heading.has-gradirent-bg {
    background-color: transparent;
    background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(#000));
    background-image: -webkit-linear-gradient(top, transparent, #000);
    background-image: -moz-linear-gradient(top, transparent, #000);
    background-image: -ms-linear-gradient(top, transparent, #000);
    background-image: -o-linear-gradient(top, transparent, #000);
    background-image: linear-gradient(top, transparent, #000);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='transparent', endColorStr='#000');
    /* top to bottom */ }

.cms-single-fancybox {
  /* CMS Team */ }
  .cms-single-fancybox[class*="vc_custom_"], .cms-single-fancybox[class^="vc_custom_"] {
    background-repeat: no-repeat !important;
    background-position: center !important; }
  .cms-single-fancybox .cms-fancy-icon {
    font-size: 25px;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */
    margin-bottom: 10px; }
  .cms-single-fancybox .cms-fancybox-title {
    margin: 0 0 15px 0;
    font-size: 106.66667%; }
  .cms-single-fancybox .cms-fancybox-media {
    position: relative;
    margin-bottom: 15px; }
  .cms-single-fancybox .cms-fancybox-price {
    font-style: italic;
    font-size: 93.33333%;
    padding-top: 7px;
    color: #999; }
  .cms-single-fancybox .cms-fancybox-foot {
    margin-top: 15px;
    /* Content Align */ }
  .cms-single-fancybox.text-center {
    /* Color Mode */ }
  .cms-single-fancybox.text-center .cms-fancy-icon {
    margin-left: auto;
    margin-right: auto; }
  .cms-single-fancybox.text-center .cms-fancy-icon + .cms-fancy-content {
    padding-top: 18px; }
  .cms-single-fancybox.white {
    /* Hover */ }
  .cms-single-fancybox.white .cms-fancy-icon, .cms-single-fancybox.white .cms-fancybox-title, .cms-single-fancybox.white .cms-fancybox-title a {
    color: #fff; }
  .cms-single-fancybox.white .cms-fancybox-price {
    color: #ddd; }
  .cms-single-fancybox:hover .cms-fancybox-title, .cms-single-fancybox:hover .cms-fancy-icon {
    color: #e84b3a; }

.cms-team-wrap {
  /* CMS Clients */ }
  .cms-team-wrap .cms-team-media {
    display: block;
    position: relative; }
  .cms-team-wrap .cms-team-media .img-circle {
    width: auto;
    display: inline-block; }
  .cms-team-wrap .cms-team-media img {
    width: auto;
    max-width: 100%; }
  .cms-team-wrap .cms-team-info h5 {
    font-size: 106.66667%;
    margin: 27px 0 5px;
    font-weight: 600; }
  .cms-team-wrap .cms-team-info .position {
    font-size: 86.66667%;
    font-style: italic; }
  .cms-team-wrap .cms-team-socials {
    margin: 10px -8px 0; }
  .cms-team-wrap .cms-team-socials a {
    font-size: 20px;
    padding: 0 8px;
    color: #fff; }
  .cms-team-wrap .cms-team-socials a:hover {
    color: #e84b3a; }
  .cms-team-wrap .cms-team-item-wrap .cms-team-item {
    margin-bottom: 30px; }
  .cms-team-wrap .cms-team-item-wrap .cms-team-item:last-child {
    margin-bottom: 0; }

.cms-clients-wrap {
  /* CMS Images Carousel */ }
  .cms-clients-wrap .owl-carousel .owl-item {
    display: table; }
  .cms-clients-wrap .owl-carousel .owl-item > div {
    display: table-cell;
    vertical-align: middle; }
  .cms-clients-wrap .owl-carousel .owl-item a {
    display: block; }
  .cms-clients-wrap .owl-carousel .owl-item img {
    width: auto;
    display: inline-block;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */
    /* Safari 6.0 - 9.0 */
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    /* Box shadow */ }
  .cms-clients-wrap .owl-carousel .owl-item:hover img {
    /* Safari 6.0 - 9.0 */
    -webkit-filter: none;
    filter: none;
    /* Box shadow */ }

.cms-images-carousel-wrap .owl-stage-outer {
  margin-bottom: 17px;
  /* CMS Testimonial */ }

.cms-testimonial-wrap {
  /* CMS Videos HTML5 */ }
  .cms-testimonial-wrap .author-info .author-avatar {
    display: inline-block;
    margin-bottom: 25px;
    position: relative; }
  .cms-testimonial-wrap .author-info .author-avatar img {
    max-width: 230px; }
  .cms-testimonial-wrap .author-info .author-avatar i {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 28px;
    letter-spacing: -0.0075em;
    color: #fff;
    text-align: center;
    background: #e84b3a;
    position: absolute;
    right: 0;
    bottom: 0;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .cms-testimonial-wrap .author-info .author-name {
    margin: 0 0 2px 0; }
  .cms-testimonial-wrap .author-info .author-position {
    font-size: 86.66667%;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4em; }
  .cms-testimonial-wrap .cms-testimonial-content {
    font-size: 128.57143%;
    line-height: 150%;
    margin-top: 44px;
    /* Color Mode */ }
  .cms-testimonial-wrap.black .cms-testimonial-content {
    background-color: #000;
    color: #fff; }
  .cms-testimonial-wrap .owl-nav:not(.disabled) + .owl-dot {
    margin-top: 45px; }

.cms_videohtml5 {
  position: relative;
  /* CMS Progress */ }
  .cms_videohtml5 video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -moz-object-fit: cover;
    -ms-filter-object-fit: cover;
    -webkit-object-fit: cover;
    /* Image black and white */ }
  .cms_videohtml5 .entry-title {
    letter-spacing: -0.62px;
    font-weight: 700; }
  .cms_videohtml5 .cms-videohtml5-overlay-bg, .cms_videohtml5 .cms_videohtml5_content {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    /* Vertical Align */ }
  .cms_videohtml5 .cms_videohtml5_content_inner {
    width: 100%;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* image fit */ }
  .cms_videohtml5 .cms-play-btn {
    width: 95px;
    height: 95px;
    line-height: 95px;
    font-size: 45px;
    border: 2px solid #111;
    color: #111;
    display: inline-block;
    margin-bottom: 17px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .cms_videohtml5 .cms-play-btn:hover {
    border-color: #e84b3a;
    color: #e84b3a; }
  .cms_videohtml5 .cms-videohtml5-desc {
    font-size: 112.5%;
    line-height: 140%;
    margin-top: 10px; }
  .cms_videohtml5 .btn {
    margin-top: 32px; }
  .cms_videohtml5.color-white .cms-play-btn, .cms_videohtml5.color-white .entry-title {
    color: #fff;
    border-color: #fff; }

.cms-progress-wrap {
  display: block;
  overflow: hidden;
  position: relative;
  /* CMS Counter */ }
  .cms-progress-wrap .cms-progress-header {
    margin-bottom: 7px; }
  .cms-progress-wrap .cms-progress-header h2 {
    margin: 0 0 30px 0;
    font-size: 270.58824%; }
  @media (min-width: 768px) {
    .cms-progress-wrap .cms-progress-header {
      width: 59.3%;
      padding-right: 30px;
      padding-left: 30px; } }
  .cms-progress-wrap .cms-progress-item {
    overflow: hidden; }
  .cms-progress-wrap .cms-progress-item .progress-name {
    display: inline-block;
    clear: both;
    font-size: 129.41176%;
    color: #111;
    position: relative;
    padding-bottom: 33px;
    cursor: pointer; }
  .cms-progress-wrap .cms-progress-item .progress-name:before {
    content: attr(data-item) ".";
    display: inline-block;
    width: 63px;
    height: 63px;
    line-height: 63px;
    text-align: center;
    font-size: 129.41176%;
    margin-right: 45px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ }
    @media (min-width: 1200px) and (max-width: 1440px) {
      .cms-progress-wrap .cms-progress-item .progress-name:before {
        margin-right: 20px; } }
  .cms-progress-wrap .cms-progress-item .progress-name:after {
    content: "";
    display: block;
    width: 1px;
    height: 32px;
    position: absolute;
    left: 31px;
    bottom: -3px;
    background-color: #d6d6d6; }
  @media (min-width: 1200px) {
      .cms-progress-wrap .cms-progress-item .progress-name {
        white-space: nowrap; } }
  @media (min-width: 768px) {
      .cms-progress-wrap .cms-progress-item .progress-name {
        width: 59.3%;
        padding-right: 30px;
        padding-left: 30px; }
        .cms-progress-wrap .cms-progress-item .progress-name:after {
          left: 61px; } }
  .cms-progress-wrap .cms-progress-item:hover .progress-name:before, .cms-progress-wrap .cms-progress-item.active .progress-name:before {
    background-color: #111;
    color: #fff; }
  .cms-progress-wrap .cms-progress-item.active .progress-img-wrap {
    visibility: visible; }
  .cms-progress-wrap .cms-progress-item:last-child .progress-name {
    padding-bottom: 0; }
    .cms-progress-wrap .cms-progress-item:last-child .progress-name:after {
      display: none; }
  .cms-progress-wrap .progress-img-wrap {
    visibility: hidden; }
  .cms-progress-wrap .progress-img-wrap img {
    width: 100%; }
  @media (min-width: 768px) {
    .cms-progress-wrap .progress-img-wrap {
      position: absolute;
      right: 0;
      top: 0;
      width: 40.7%;
      border-left: 1px solid #e2e2e2;
      border-right: 1px solid #e2e2e2;
      padding-top: 148px;
      padding-bottom: 160px; } }
  @media (min-width: 768px) {
  .cms-progress-wrap {
    padding-top: 148px;
    padding-bottom: 160px;
    /* Layout 2 */ } }
  @media (min-width: 768px) {
    .cms-progress-wrap.layout2 .cms-progress-header, .cms-progress-wrap.layout2 .progress-name {
      float: right; }

    .cms-progress-wrap.layout2 .progress-img-wrap {
      left: 0;
      right: auto; } }
  @media (min-width: 1200px) {
    .cms-progress-wrap.layout2 .cms-progress-header {
      padding-left: 133px;
      padding-right: 130px; }

    .cms-progress-wrap.layout2 .progress-name {
      padding-left: 115px;
      padding-right: 130px; }

    .cms-progress-wrap.layout2 .progress-name:after {
      left: 146px; } }

.cms-counter-wraper {
  /* CMS Button */ }
  .cms-counter-wraper .cms-counter-body .counter-icon {
    font-size: 120px;
    line-height: 1;
    margin-bottom: 20px; }
  .cms-counter-wraper .cms-counter-body .cms-counter {
    font-size: 120px;
    line-height: 1;
    font-weight: 700; }
  .cms-counter-wraper .cms-counter-body .cms-counter .prefix, .cms-counter-wraper .cms-counter-body .cms-counter .suffix {
    font-size: 50%; }
    .cms-counter-wraper .cms-counter-body .cms-counter .prefix:empty, .cms-counter-wraper .cms-counter-body .cms-counter .suffix:empty {
      display: none; }
  .cms-counter-wraper .cms-counter-body .cms-counter-title {
    margin: 3px 0 0 0;
    font-size: 12px;
    letter-spacing: 0.4em; }

.cms-button-wrapper {
  /* CMS CountDown */ }
  .cms-button-wrapper > a {
    position: relative; }
  .cms-button-wrapper > a:not(.empty-icon) .btn-icon {
    position: absolute;
    top: 50%;
    font-size: 157.14286%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }
  .cms-button-wrapper > a:not(.empty-icon).icon-left {
    padding-left: 60px; }
    .cms-button-wrapper > a:not(.empty-icon).icon-left .btn-icon {
      left: 28px; }
  .cms-button-wrapper > a:not(.empty-icon).icon-right {
    padding-right: 60px; }
    .cms-button-wrapper > a:not(.empty-icon).icon-right .btn-icon {
      right: 28px; }
  .cms-button-wrapper a.simple {
    text-transform: uppercase;
    color: #e84b3a;
    font-family: 'Montserrat'; }
  .cms-button-wrapper a.simple:hover {
    color: #111; }
  .cms-button-wrapper .btn-icon.sale {
    width: 22px;
    height: 22px;
    line-height: 22px;
    color: #fff;
    text-align: center;
    font-size: 12px;
    position: relative;
    z-index: 1; }
  .cms-button-wrapper .btn-icon.sale + .icon-sale {
    position: absolute;
    left: 0;
    top: -1px;
    display: inline-block;
    vertical-align: middle;
    width: 22px;
    height: 22px;
    line-height: 22px;
    background-color: #d04f2c;
    transform: rotate(-20deg); }
  .cms-button-wrapper .btn-icon.sale + .icon-sale:before, .cms-button-wrapper .btn-icon.sale + .icon-sale:after {
    content: "";
    position: absolute;
    background: inherit;
    height: inherit;
    width: inherit;
    top: 0;
    left: 0;
    z-index: -1;
    transform: rotate(30deg); }
  .cms-button-wrapper .btn-icon.sale + .icon-sale:after {
    transform: rotate(60deg); }

.cms-countdown-bar {
  text-align: center;
  /* CMS Pricing */ }
  .cms-countdown-bar > div {
    display: inline-block;
    width: 130px;
    margin: 0;
    background-color: transparent;
    color: #878787; }
  .cms-countdown-bar > div > span {
    color: #878787;
    margin: 0 0 15px 0; }
  .cms-countdown-bar > div > div {
    color: #535353;
    margin: 0; }
  .cms-countdown-bar.white > div {
    background-color: #fff;
    color: #111 !important; }

.cms-pricing {
  /* CMS Slider Carousel */ }
  .cms-pricing > .owl-stage-outer {
    border: 1px solid #eee;
    -webkit-box-shadow: -5px 6px 14px #f6f6f6;
    -khtml-box-shadow: -5px 6px 14px #f6f6f6;
    -moz-box-shadow: -5px 6px 14px #f6f6f6;
    -ms-box-shadow: -5px 6px 14px #f6f6f6;
    -o-box-shadow: -5px 6px 14px #f6f6f6;
    box-shadow: -5px 6px 14px #f6f6f6;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .cms-pricing .cms-pricing-inner {
    padding: 75px 60px 85px 60px; }
  .cms-pricing .package-name {
    font-size: 35px;
    letter-spacing: 0.08em;
    color: #111; }
  .cms-pricing .package-img {
    margin-bottom: 20px; }
  .cms-pricing .package-title {
    margin: -3px 0 10px 0; }
  .cms-pricing .package-unit {
    font-size: 25px;
    font-style: italic;
    line-height: 1.2;
    padding: 8px 0 36px; }
  .cms-pricing .package-unit .package-plan {
    font-size: 15px; }
  .cms-pricing .package-desc {
    line-height: 250%;
    padding-bottom: 39px; }
  .cms-pricing .package-features {
    padding-bottom: 42px;
    /* Carousel */ }
  .cms-pricing.cms-pricing-carousel .cms-pricing-inner {
    border-right: 1px solid #eee; }

.cms-slider-wrap {
  /* Rev cms_product Shortcode */ }
  .cms-slider-wrap .cms-slide-item {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative; }
  .cms-slider-wrap .cms-slide-item:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    background-color: rgba(0, 0, 0, 0.2); }
  .cms-slider-wrap .container {
    height: 100vh;
    position: relative; }
  .cms-slider-wrap .cms-slide-item-content {
    background-color: #fff;
    padding: 30px 15px;
    float: left;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -khtml-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }
  @media (min-width: 992px) {
    .cms-slider-wrap .cms-slide-item-content {
      padding-left: 70px;
      padding-top: 65px;
      padding-right: 55px;
      padding-bottom: 45px; } }
  .cms-slider-wrap .cms-slideitem-title {
    position: relative;
    margin: 0 0 24px; }
  .cms-slider-wrap .cms-slideitem-title:before {
    display: block;
    content: "";
    width: 80px;
    height: 1px;
    background-color: #111;
    position: absolute;
    left: -120px;
    top: 30px; }
  @media (max-width: 991px) {
      .cms-slider-wrap .cms-slideitem-title:before {
        left: -85px; } }
  .cms-slider-wrap .cms-slideitem-title:hover:before {
    background-color: #e84b3a; }
  @media (max-width: 480px) {
    .cms-slider-wrap .cms-slideitem-title {
      font-size: 30px !important; } }
  .cms-slider-wrap .cms-readmore {
    display: block;
    font-size: 80%;
    text-transform: uppercase;
    letter-spacing: 2.4px;
    margin-top: 23px; }
  .cms-slider-wrap .cms-readmore:after {
    display: inline-block;
    content: "⟶"; }
  .cms-slider-wrap .owl-nav {
    float: right;
    clear: both;
    border: 1px solid #eee;
    margin-top: 35px; }
  .cms-slider-wrap .owl-nav > div {
    width: 38px;
    height: 38px;
    line-height: 38px;
    text-align: center;
    color: #111;
    cursor: pointer;
    font-size: 200%; }
  .cms-slider-wrap .owl-nav > div + div {
    border-left: 1px solid #eee; }
  .cms-slider-wrap .owl-nav > div:hover {
    background-color: #e84b3a;
    color: #fff; }

.cms-sc-product {
  font-size: 14px;
  position: relative;
  /* CMS Popup Video */ }
  .cms-sc-product .cms-sc-product-content {
    visibility: hidden; }
  .cms-sc-product .cms-sc-product-content .cms-sc-product-title:before, .cms-sc-product .cms-sc-product-content .cms-sc-product-title:after {
    visibility: visible; }
  .cms-sc-product .cms-sc-product-title {
    font-size: 14px;
    line-height: 120%;
    font-weight: 700;
    letter-spacing: 0.7px;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    margin: 0 0 5px 0;
    text-transform: capitalize; }
  .cms-sc-product .cms-sc-product-title a {
    color: #fff;
    padding-bottom: 4px;
    display: block; }
  .cms-sc-product .cms-sc-product-title a:hover {
    color: #111; }
  .cms-sc-product .cms-sc-product-title:before, .cms-sc-product .cms-sc-product-title:after {
    content: "";
    display: block;
    position: absolute;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .cms-sc-product .cms-sc-product-title:before {
    width: 5px;
    height: 5px;
    background: #fff;
    bottom: -2.5px; }
  .cms-sc-product .cms-sc-product-title:after {
    width: 11px;
    height: 11px;
    border: 1px solid #fff;
    bottom: -5.5px; }
  .cms-sc-product .cms-sc-product-price {
    font-size: 14px;
    letter-spacing: 0.7px; }
  .cms-sc-product.content-left {
    text-align: right; }
  .cms-sc-product.content-left .cms-sc-product-title {
    padding-left: 30px;
    padding-right: 10px; }
  .cms-sc-product.content-left .cms-sc-product-title:before {
    right: -7.5px; }
  .cms-sc-product.content-left .cms-sc-product-title:after {
    right: -10px; }
  .cms-sc-product.content-left .cms-sc-product-price {
    padding-right: 10px; }
  .cms-sc-product.content-right {
    text-align: left; }
  .cms-sc-product.content-right .cms-sc-product-title {
    padding-left: 10px;
    padding-right: 30px; }
  .cms-sc-product.content-right .cms-sc-product-title:before {
    left: -7.5px; }
  .cms-sc-product.content-right .cms-sc-product-title:after {
    left: -10px; }
  .cms-sc-product.content-right .cms-sc-product-price {
    padding-left: 10px; }
  .cms-sc-product:hover .cms-sc-product-content {
    visibility: visible; }

.cms-popup-video {
  /* CMS Video carousel */ }
  .cms-popup-video .cms-popup-video-inner {
    width: 80%;
    height: 80%;
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* image fit */ }
  .cms-popup-video .cms-popup-video-inner > a {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    font-size: 30px;
    background-color: red;
    color: #fff; }
  .cms-popup-video .wp-video, .cms-popup-video .wp-video-shortcode, .cms-popup-video iframe.cms-popup-video {
    width: 100% !important;
    height: 100% !important; }
  .cms-popup-video > a {
    color: #fff; }
  .cms-popup-video > a i {
    width: 61px;
    height: 61px;
    line-height: 61px;
    text-align: center;
    margin-right: 20px;
    display: inline-block;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    background-color: #fff;
    color: #111; }
  .cms-popup-video > a:hover {
    text-decoration: underline; }

.cms-video-wrap .owl-video-frame, .cms-video-wrap iframe {
  height: 100%; }

.sidebar-area .widget, .wpb_widgetised_column .widget {
  margin-bottom: 55px; }
  .sidebar-area .widget:last-child, .wpb_widgetised_column .widget:last-child {
    margin-bottom: 0; }

.sidebar-shop .wg-title {
  font-size: 15px;
  margin-bottom: 25px; }

.wg-title, .widgettitle {
  margin: 0 0 16px 0;
  /* Menu */ }

.widget_recent_entries .screen-reader-text, .widget_recent_comments .screen-reader-text, .cms_widget_recent_comments .screen-reader-text, .widget_rss .screen-reader-text, .widget_categories .screen-reader-text, .widget_archive .screen-reader-text, .widget_nav_menu .screen-reader-text, .widget_pages .screen-reader-text, .widget_meta .screen-reader-text, .widget_product_categories .screen-reader-text {
  display: none; }
  .widget_recent_entries ul, .widget_recent_comments ul, .cms_widget_recent_comments ul, .widget_rss ul, .widget_categories ul, .widget_archive ul, .widget_nav_menu ul, .widget_pages ul, .widget_meta ul, .widget_product_categories ul {
    list-style: none; }
  .widget_recent_entries ul li, .widget_recent_comments ul li, .cms_widget_recent_comments ul li, .widget_rss ul li, .widget_categories ul li, .widget_archive ul li, .widget_nav_menu ul li, .widget_pages ul li, .widget_meta ul li, .widget_product_categories ul li {
    padding: 0;
    border-bottom: 1px solid #eee;
    letter-spacing: 0.02em;
    padding: 5px 0; }
  .widget_recent_entries ul a, .widget_recent_comments ul a, .cms_widget_recent_comments ul a, .widget_rss ul a, .widget_categories ul a, .widget_archive ul a, .widget_nav_menu ul a, .widget_pages ul a, .widget_meta ul a, .widget_product_categories ul a {
    display: block;
    color: #868686; }
  .widget_recent_entries ul a:hover, .widget_recent_comments ul a:hover, .cms_widget_recent_comments ul a:hover, .widget_rss ul a:hover, .widget_categories ul a:hover, .widget_archive ul a:hover, .widget_nav_menu ul a:hover, .widget_pages ul a:hover, .widget_meta ul a:hover, .widget_product_categories ul a:hover {
    color: #111; }
  .widget_recent_entries ul ul, .widget_recent_comments ul ul, .cms_widget_recent_comments ul ul, .widget_rss ul ul, .widget_categories ul ul, .widget_archive ul ul, .widget_nav_menu ul ul, .widget_pages ul ul, .widget_meta ul ul, .widget_product_categories ul ul {
    margin: 0;
    padding: 0 0 0 10px; }
  .widget_recent_entries ul ul.children li, .widget_recent_comments ul ul.children li, .cms_widget_recent_comments ul ul.children li, .widget_rss ul ul.children li, .widget_categories ul ul.children li, .widget_archive ul ul.children li, .widget_nav_menu ul ul.children li, .widget_pages ul ul.children li, .widget_meta ul ul.children li, .widget_product_categories ul ul.children li, .widget_recent_entries ul ul.sub-menu li, .widget_recent_comments ul ul.sub-menu li, .cms_widget_recent_comments ul ul.sub-menu li, .widget_rss ul ul.sub-menu li, .widget_categories ul ul.sub-menu li, .widget_archive ul ul.sub-menu li, .widget_nav_menu ul ul.sub-menu li, .widget_pages ul ul.sub-menu li, .widget_meta ul ul.sub-menu li, .widget_product_categories ul ul.sub-menu li {
    border-top: 1px solid #eee;
    border-bottom: none; }

.widget_nav_menu, .widget_pages {
  /* Recente Post */ }

.widget_recent_entries {
  /* Search */ }
  .widget_recent_entries a {
    font-weight: 700;
    font-size: 93.33333%; }
  .widget_recent_entries .post-date {
    display: block;
    font-size: 86.66667%;
    color: #999; }

.cms-searchform {
  position: relative;
  /* Calendar */ }
  .cms-searchform input {
    width: 100%;
    padding-right: 60px; }
  .cms-searchform button {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: none;
    background: transparent;
    line-height: 1;
    padding: 10px 19px;
    color: #fff;
    background: #e84b3a; }

.widget_calendar {
  /* Recent Comment */ }
  .widget_calendar .calendar_wrap {
    text-align: center; }
  .widget_calendar #today {
    background: #e84b3a;
    color: #fff; }
  .widget_calendar #today a {
    display: block;
    color: #fff; }
  .widget_calendar #today a:hover {
    color: #fff; }
  .widget_calendar th {
    text-align: center; }

.widget_recent_comments li a {
  display: inline-block;
  font-weight: 700;
  color: #111; }
  .widget_recent_comments li a:hover {
    color: #e84b3a; }

.cms_widget_recent_comments {
  /* RSS */ }
  .cms_widget_recent_comments .recentcomments {
    margin-bottom: 30px; }
  .cms_widget_recent_comments .recentcomments:last-child {
    margin-bottom: 0; }
  .cms_widget_recent_comments .recentcomments > h6 {
    margin-top: 0;
    margin-bottom: 5px; }
  .cms_widget_recent_comments .recentcomments > h6 + .comment-author-link {
    display: block;
    margin-top: -5px;
    margin-bottom: 5px; }
  .cms_widget_recent_comments .comment-text {
    font-style: italic;
    font-size: 86.66667%; }

.widget_rss {
  /* tags cloud */ }
  .widget_rss > ul > li {
    margin-bottom: 15px; }
  .widget_rss > ul > li:last-child {
    margin-bottom: 0; }
  .widget_rss .rsswidget {
    font-weight: 700; }
  .widget_rss .rss-date {
    display: block;
    font-style: italic;
    font-size: 80%;
    color: #e84b3a; }
  .widget_rss cite {
    color: #111; }

.tagcloud {
  margin: -5px 0;
  /* CMS Recent Post */ }
  .tagcloud a {
    padding: 12px 21px;
    margin: 5px 10px 5px 0;
    display: inline-block;
    background: transparent;
    font-size: 86.66667% !important;
    border: 1px solid #eee;
    color: #999;
    line-height: 1.25;
    text-transform: capitalize; }
  .tagcloud a:hover {
    background: #e84b3a;
    color: #fff;
    border-color: #e84b3a; }
  .tagcloud a:last-child {
    margin-right: 0; }

.cms-recent-post {
  /* CMS Social */ }
  .cms-recent-post .cms-recent-item {
    margin-bottom: 20px; }
  .cms-recent-post .cms-recent-item:last-child {
    margin-bottom: 0; }
  .cms-recent-post:not(.style1) .entry-media {
    margin: 0 10px 0 0;
    max-width: 85px; }
  .cms-recent-post:not(.style1) .entry-media img {
    margin-bottom: 0; }
  .cms-recent-post:not(.style1) .entry-media + .item-content {
    padding-left: 105px; }
  .cms-recent-post .entry-title {
    margin-top: 0;
    margin-bottom: 8px; }
  .cms-recent-post .entry-meta {
    margin-bottom: 0; }
  .cms-recent-post .entry-desc, .cms-recent-post .description {
    margin-top: 5px; }
  .cms-recent-post.style1 .cms-recent-item {
    padding-bottom: 0;
    margin: 0 0 10px 0;
    text-align: center;
    border-bottom: none; }
  .cms-recent-post.style1 .entry-title + .description {
    margin-top: 12px; }
  .cms-recent-post.style1 .item-content {
    padding: 26px 30px 0;
    border-top: none; }
  .cms-recent-post.style1 .item-content .entry-footer {
    margin: 11px 0 28px; }
  .cms-recent-post.style1 .wg-meta {
    border-top: 1px solid #eee;
    margin: 0 -30px;
    padding: 10px 15px; }

.cms-social {
  margin: -9px -10px;
  /* CMS Quick Contact  */ }
  .cms-social a {
    display: inline-block;
    padding: 9px 10px;
    font-size: 18px;
    color: #868686; }
  .cms-social a:hover {
    color: #111; }
  .cms-social.horizontal li, .cms-social.icon-text-horizontal li, .cms-social.icon-circle-text-horizontal li, .cms-social.icon-circle-horizontal li {
    display: inline-block; }
  .cms-social.colored {
    margin: -5px; }
  .cms-social.colored a {
    padding: 5px; }
  .cms-social.colored a i {
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #fff;
    background-color: #111;
    display: inline-block;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ }
    .cms-social.colored a i[class*="facebook"], .cms-social.colored a i[class^="facebook"] {
      background-color: #4c70b7; }
    .cms-social.colored a i[class*="pinterest"], .cms-social.colored a i[class^="pinterest"] {
      background: #e13138; }
    .cms-social.colored a i[class*="twitter"], .cms-social.colored a i[class^="twitter"] {
      background: #4cdbff; }
    .cms-social.colored a i[class*="rss"], .cms-social.colored a i[class^="rss"] {
      background: #faa33d; }
    .cms-social.colored a i[class*="vimeo"], .cms-social.colored a i[class^="vimeo"] {
      background: #35c6ea; }
    .cms-social.colored a i[class*="dribbble"], .cms-social.colored a i[class^="dribbble"] {
      background: #ff70b7; }
    .cms-social.colored a i[class*="tumblr"], .cms-social.colored a i[class^="tumblr"] {
      background: #426d9b; }
    .cms-social.colored a i[class^="behance"], .cms-social.colored a i[class*="behance"] {
      background: #1879fd; }
    .cms-social.colored a i[class^="stumbleupon"], .cms-social.colored a i[class*="stumbleupon"] {
      background: #ff5c30; }
    .cms-social.colored a i[class^="dropbox"], .cms-social.colored a i[class*="dropbox"] {
      background: #17a3eb; }
    .cms-social.colored a i[class^="soundcloud"], .cms-social.colored a i[class*="soundcloud"] {
      background: #ff7e30; }
    .cms-social.colored a i[class^="lastfm"], .cms-social.colored a i[class*="lastfm"] {
      background: #f34320; }
    .cms-social.colored a i[class^="flickr"], .cms-social.colored a i[class*="flickr"] {
      background: #ff48a3; }
    .cms-social.colored a i[class^="deviantart"], .cms-social.colored a i[class*="deviantart"] {
      background: #6a8a7b; }
    .cms-social.colored a i[class^="linkedin"], .cms-social.colored a i[class*="linkedin"] {
      background: #4c94db; }
    .cms-social.colored a i[class^="digg"], .cms-social.colored a i[class*="digg"] {
      background: #75788d; }
    .cms-social.colored a i[class^="xing"], .cms-social.colored a i[class*="xing"] {
      background: #1a8e8c; }
    .cms-social.colored a i[class^="github"], .cms-social.colored a i[class*="github"] {
      background: #3f91cb; }
    .cms-social.colored a i[class^="instagram"], .cms-social.colored a i[class*="instagram"] {
      background: #db944c; }
    .cms-social.colored a i[class^="yahoo"], .cms-social.colored a i[class*="yahoo"] {
      background: #ab47ac; }
    .cms-social.colored a i[class^="youtube"], .cms-social.colored a i[class*="youtube"] {
      background: #db4c4c; }
    .cms-social.colored a i[class^="skype"], .cms-social.colored a i[class*="skype"] {
      background: #13c1f3; }
    .cms-social.colored a i[class^="share"], .cms-social.colored a i[class*="share"] {
      background: #25a774; }
    .cms-social.colored a i[class^="wordpress"], .cms-social.colored a i[class*="wordpress"] {
      background: #2592c3; }
    .cms-social.colored a i[class^="plus"], .cms-social.colored a i[class*="plus"] {
      background: ; }
    .cms-social.colored a i[class^="delicious"], .cms-social.colored a i[class*="delicious"] {
      background: #ff9233; }
    .cms-social.colored a i[class^="reddit"], .cms-social.colored a i[class*="reddit"] {
      background: #377bda; }
    .cms-social.colored a i[class^="apple"], .cms-social.colored a i[class*="apple"] {
      background: #b3b5b8; }
    .cms-social.colored a i[class^="vk"], .cms-social.colored a i[class*="vk"] {
      background: #4778ac; }
    .cms-social.colored a i[class^="google"], .cms-social.colored a i[class*="google"] {
      background: #ff4c4c; }
  .cms-social.colored a:hover i {
    background-color: #e84b3a; }
  .cms-social[class*="icon-circle-text-"], .cms-social[class^="icon-circle-text-"] {
    margin-left: -35px;
    margin-right: -35px;
    /* Icon Circle */ }
  .cms-social[class*="icon-circle-text-"] li, .cms-social[class^="icon-circle-text-"] li {
    min-width: 184px; }
  .cms-social[class*="icon-circle-text-"] a, .cms-social[class^="icon-circle-text-"] a {
    display: inline-block;
    padding-left: 35px;
    padding-right: 35px; }
  .cms-social[class*="icon-circle-text-"].colored, .cms-social[class^="icon-circle-text-"].colored {
    margin-left: -17px;
    margin-right: -17px; }
  .cms-social[class*="icon-circle-text-"].colored li a, .cms-social[class^="icon-circle-text-"].colored li a {
    padding-left: 17px;
    padding-right: 17px; }
  .cms-social[class*="icon-circle-text-"]:not(.colored) a i, .cms-social[class^="icon-circle-text-"]:not(.colored) a i {
    width: 30px;
    height: 30px;
    line-height: 30px;
    border-width: 1px;
    border-color: inherit;
    border-style: solid;
    text-align: center;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .cms-social.icon-circle-vertical i, .cms-social.icon-circle-horizontal i, .cms-social.icon-circle-vertical.colored i, .cms-social.icon-circle-horizontal.colored i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    display: block;
    text-align: center;
    font-size: 30px; }
  .cms-social.icon-circle-vertical i, .cms-social.icon-circle-horizontal i {
    background-color: #e1e1e1;
    color: #fff;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .cms-social.icon-circle-vertical i:hover, .cms-social.icon-circle-horizontal i:hover {
    background-color: #e84b3a; }

.cms-quick-contact {
  list-style: none;
  margin: -10px;
  /* CMS Open Hours */ }
  .cms-quick-contact li {
    padding: 10px; }
  .cms-quick-contact.horizontal i {
    font-size: 20px; }
  .cms-quick-contact.horizontal li {
    display: inline-block; }
  .cms-quick-contact.vertical li {
    padding: 10px 10px 10px 35px;
    position: relative; }
  .cms-quick-contact.vertical i {
    position: absolute;
    left: 5px;
    top: 14px; }

.cms-openhour {
  border: 0;
  /* Flickr */ }
  .cms-openhour tr {
    border: 0; }
  .cms-openhour tr td {
    padding-bottom: 10px; }

.widget_flickr .flickr-badge-wrapper {
  margin: -5px; }
  .widget_flickr .flickr-badge-wrapper .flickr_badge_image {
    width: 50%;
    float: left;
    padding: 5px;
    margin: 0;
    height: auto; }
  .widget_flickr .flickr-badge-wrapper .flickr_badge_image img {
    margin: 0;
    float: none;
    width: 100%; }

.no-container {
  padding-left: 15px;
  padding-right: 15px; }

.container, .pull-left, .pull-right {
  max-width: 100%; }

.clear {
  clear: both; }

.nopadding, .nopaddingall {
  padding: 0 !important; }

.nopadding-top {
  padding-top: 0 !important; }

.nopadding-right {
  padding-right: 0 !important; }

.nopadding-bottom {
  padding-bottom: 0 !important; }

.nopadding-left {
  padding-left: 0 !important; }

.nomargin {
  margin: 0 !important; }

.nomargin-top {
  margin-top: 0 !important; }

.nomargin-right {
  margin-right: 0 !important; }

.nomargin-bottom {
  margin-bottom: 0 !important; }

.nomargin-left {
  margin-left: 0 !important; }

.row.space-10 {
  margin-left: -5px;
  margin-right: -5px; }
  .row.space-10 [class*="col-"], .row.space-10 [class^="col-"] {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px; }
  .row.space-5 {
    margin-left: -2.5px;
    margin-right: -2.5px; }
  .row.space-5 [class*="col-"], .row.space-5 [class^="col-"] {
    padding-left: 2.5px;
    padding-right: 2.5px;
    padding-bottom: 5px; }

span[style="line-height:1.714285714;font-size:1rem;"], em[style="line-height:1.714285714;font-size:1rem;"], strong[style="line-height:1.714285714;font-size:1rem;"] {
  font-size: inherit !important; }

*[style="visibility: hidden;"], *[style="visibility: hidden; display: inline;"] {
  display: none !important; }

.vc_row {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: relative; }
  .vc_row[class*="vc_custom_"] {
    background-position: center center !important;
    background-repeat: no-repeat !important;
    background-size: 100% auto !important; }
  .vc_row[data-vc-full-width] {
    overflow: visible !important; }
  .vc_row.vc_parallax {
    overflow: hidden !important;
    /* Equal height */ }
  .vc_row.vc_parallax .vc_parallax-inner {
    background-color: inherit; }
  .vc_row.vc_parallax .vc_parallax-inner:after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    display: block;
    background-color: inherit; }
  .vc_row.vc_parallax.vc_parallax-bottom-left, .vc_row.vc_parallax.vc_parallax-bottom-right {
    background-size: initial !important;
    background-repeat: no-repeat !important;
    background-attachment: inherit !important; }
  .vc_row.vc_parallax.vc_parallax-bottom-left .vc_parallax-inner, .vc_row.vc_parallax.vc_parallax-bottom-right .vc_parallax-inner {
    height: 100% !important;
    top: 0 !important;
    bottom: 0 !important;
    background-size: initial;
    background-repeat: no-repeat;
    background-attachment: inherit;
    background-color: transparent; }
  .vc_row.vc_parallax.vc_parallax-bottom-left {
    background-position: 0 100% !important; }
  .vc_row.vc_parallax.vc_parallax-bottom-left .vc_parallax-inner {
    background-position: 0 100%; }
  .vc_row.vc_parallax.vc_parallax-bottom-right {
    background-position: 100% 100% !important; }
  .vc_row.vc_parallax.vc_parallax-bottom-right .vc_parallax-inner {
    background-position: 100% 100%; }
  .vc_row.vc_row-o-equal-height:not(.vc_row-o-content-middle) > .vc_column_container > div > div {
    height: 100%;
    /* Full width stretch content */ }
  .vc_row:not(.vc_row-no-padding)[data-vc-stretch-content="true"] {
    /* row ontop */ }
  @media (min-width: 1199px) {
    .vc_row:not(.vc_row-no-padding)[data-vc-stretch-content="true"] {
      padding-left: 35px;
      padding-right: 35px; } }
  .vc_row.row-ontop {
    position: relative;
    z-index: 1;
    /* Special Style for some row */ }
  .vc_row.cms-counter .wpb_column {
    position: relative; }
  .vc_row.cms-counter .wpb_column:nth-child(1), .vc_row.cms-counter .wpb_column:nth-child(3) {
    border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .vc_row.cms-counter .wpb_column:nth-child(1), .vc_row.cms-counter .wpb_column:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0 36px; }
  .vc_row.cms-counter .wpb_column:nth-child(3), .vc_row.cms-counter .wpb_column:nth-child(4) {
    padding: 36px 0 10px; }
  @media (min-width: 768px) {
      .vc_row.cms-counter .wpb_column:nth-child(1):before, .vc_row.cms-counter .wpb_column:nth-child(4):before, .vc_row.cms-counter .wpb_column:nth-child(1):after, .vc_row.cms-counter .wpb_column:nth-child(4):after {
        content: "";
        display: block;
        position: absolute;
        background: #fff; }
        .vc_row.cms-counter .wpb_column:nth-child(1):before, .vc_row.cms-counter .wpb_column:nth-child(4):before {
          width: 1px;
          height: 21px; }
        .vc_row.cms-counter .wpb_column:nth-child(1):after, .vc_row.cms-counter .wpb_column:nth-child(4):after {
          height: 1px;
          width: 21px; }
      .vc_row.cms-counter .wpb_column:nth-child(1):before, .vc_row.cms-counter .wpb_column:nth-child(1):after {
        right: -1px;
        bottom: -1px; }
      .vc_row.cms-counter .wpb_column:nth-child(4):before, .vc_row.cms-counter .wpb_column:nth-child(4):after {
        left: -1px;
        top: -1px; } }
  @media (max-width: 767px) {
      .vc_row.cms-counter .wpb_column:nth-child(2) {
        padding-top: 36px; }
      .vc_row.cms-counter .wpb_column:nth-child(3) {
        padding-bottom: 36px; } }
  @media (min-width: 992px) {
    .vc_row.fancy-about-us2 .vc_column_container {
      border-right: 1px solid #eee; }
      .vc_row.fancy-about-us2 .vc_column_container:last-child {
        border-right: none; }

    .vc_row.fancy-about-us2.vc_row-no-padding .vc_column-inner, .vc_row.fancy-about-us2 .vc_column-inner {
      padding: 0 30px; } }
  @media (min-width: 1601px) {
    .vc_row.fancy-about-us2.vc_row-no-padding .vc_column-inner, .vc_row.fancy-about-us2 .vc_column-inner {
      padding: 0 75px; } }
  @media (max-width: 992px) {
    .vc_row.fancy-about-us2 .vc_column_container:nth-of-type(2n) {
      border-right: none; } }

.wpb_column.full-height .wpb_wrapper {
  height: 100vh;
  display: block; }
  .wpb_column.full-left.overlay-bg .vc_column-inner:before, .wpb_column.full-right.overlay-bg .vc_column-inner:before {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: inherit; }
  .wpb_column.full-left .wpb_wrapper, .wpb_column.full-right .wpb_wrapper {
    height: 100%; }
  @media (min-width: 992px) {
    .wpb_column.full-left .cms-video-wrap, .wpb_column.full-right .cms-video-wrap {
      height: 100%; }
      .wpb_column.full-left .cms-video-wrap .cms-carousel, .wpb_column.full-right .cms-video-wrap .cms-carousel {
        top: 50%;
        width: 100%;
        position: absolute;
        -webkit-transform: translateY(-50%);
        -khtml-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        /* BACKGROUND GRADIENT */
        /* bottom to top */
        /* Horizontal Align */ } }
  .wpb_column .vc_column-inner {
    background-position: center center !important; }

.wpb_content_element {
  /* Custom Heading */ }
  .wpb_content_element.wpb_text_column {
    /* Single Image */ }
  .wpb_content_element.wpb_single_image {
    /* WP menu */ }
  .wpb_content_element.wpb_single_image.full-height {
    height: 100%; }
  .wpb_content_element.wpb_single_image.full-height .wpb_wrapper, .wpb_content_element.wpb_single_image.full-height .vc_single_image-wrapper, .wpb_content_element.wpb_single_image.full-height .vc_single_image-img {
    height: 100%;
    object-fit: cover; }
  .wpb_content_element.wpb_single_image.full-width .wpb_wrapper, .wpb_content_element.wpb_single_image.full-width .vc_single_image-wrapper, .wpb_content_element.wpb_single_image.full-width .vc_single_image-img {
    width: 100%; }
  .wpb_content_element.white-bg {
    padding: 25px 30px;
    /* vc_chart  */ }
  @media (max-width: 767px) {
    .wpb_content_element.white-bg {
      padding-left: 30px;
      padding-right: 30px; } }
  .wpb_content_element.vc_chart .vc_chart-legend {
    list-style: none; }
  .wpb_content_element.vc_chart .vc_chart-legend li:before {
    display: none; }

.vc_custom_heading {
  margin: 0 0 29px 0; }
  .vc_custom_heading.bottom-line:after {
    content: "";
    display: block;
    width: 55px;
    height: 3px;
    background-color: #e84b3a;
    margin-top: 13px; }
  .vc_custom_heading.bottom-line.line-center:after {
    margin-left: auto;
    margin-right: auto; }
  .vc_custom_heading.bottom-line.line-white:after {
    background-color: #fff; }

.text-left, .text-center, .text-right, [class*='text-lg-'], [class^='text-lg-'], [class*='text-md-'], [class^='text-md-'], [class*='text-sm-'], [class^='text-sm-'] {
  /* TTA */ }
  .text-left .vc_custom_heading, .text-center .vc_custom_heading, .text-right .vc_custom_heading, [class*='text-lg-'] .vc_custom_heading, [class^='text-lg-'] .vc_custom_heading, [class*='text-md-'] .vc_custom_heading, [class^='text-md-'] .vc_custom_heading, [class*='text-sm-'] .vc_custom_heading, [class^='text-sm-'] .vc_custom_heading {
    text-align: inherit !important; }

.vc_tta-container {
  /* Accordion */
  overflow: hidden;
  /* VC Progress Bar */ }
  .vc_tta-container .vc_tta-accordion {
    /* Tabs */ }
  .vc_tta-container .vc_tta-accordion .vc_tta-panel .vc_tta-controls-icon-circle-arrow {
    width: 25px;
    height: 25px;
    font-size: 22px; }
  .vc_tta-container .vc_tta-accordion .vc_tta-panel.vc_active .vc_tta-controls-icon-circle-arrow:before {
    content: "\e699"; }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-heading, .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-body {
    background: #fff;
    border: 2px solid #111;
    margin-bottom: 0 !important;
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-heading:hover, .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-body:hover {
      background: #e84b3a;
      border-color: #e84b3a; }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title {
    letter-spacing: 0.4em;
    font-size: 86.66667%; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title > a {
      padding: 22px 36px; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title > a:hover {
      color: #fff; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title.vc_tta-controls-icon-position-left > a {
      padding-left: 60px; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title.vc_tta-controls-icon-position-left > a .vc_tta-controls-icon {
      left: 23px; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title.vc_tta-controls-icon-position-right > a {
      padding-right: 60px; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title.vc_tta-controls-icon-position-right > a .vc_tta-controls-icon {
      right: 23px; }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-body {
    padding: 32px 36px 34px 36px;
    /* Hover / Active tab */ }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_active .vc_tta-panel-heading {
    border-color: #e84b3a;
    border-bottom-color: #fff;
    background: #e84b3a; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_active .vc_tta-panel-heading .vc_tta-panel-title > a {
      color: #fff; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_active .vc_tta-panel-body {
      background: #e84b3a;
      border-color: #e84b3a;
      color: #fff; }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-theme.vc_tta-color-theme2 .vc_active .vc_tta-panel-heading {
    border-bottom-color: #e84b3a; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme.vc_tta-color-theme2 .vc_active .vc_tta-panel-body {
      background: #f2f2f2;
      color: #868686;
      border-color: #f2f2f2; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-tabs-container {
    border-bottom: 10px solid #e84b3a; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-tabs-container .vc_tta-tabs-list {
    margin-top: 0;
    margin-bottom: 0; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-tabs-container .vc_tta-tab {
    margin-top: 0;
    margin-bottom: 0; }
    .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-tabs-container .vc_tta-tab > a {
      border: 1px solid #eee;
      font-size: 86.66667%;
      color: #eee;
      text-transform: uppercase;
      font-weight: 700;
      letter-spacing: 0.4em;
      padding: 17px 30px;
      -webkit-border-radius: 2px 2px 0 0;
      -khtml-border-radius: 2px 2px 0 0;
      -moz-border-radius: 2px 2px 0 0;
      -ms-border-radius: 2px 2px 0 0;
      -o-border-radius: 2px 2px 0 0;
      border-radius: 2px 2px 0 0;
      /* BACKGROUND GRADIENT */
      /* bottom to top */ }
    .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-tabs-container .vc_tta-tab > a:after {
      display: none !important; }
    .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-tabs-container .vc_tta-tab:hover > a, .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-tabs-container .vc_tta-tab.vc_active > a {
      color: #fff;
      background: #e84b3a;
      border-color: #e84b3a; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-heading {
    border-color: #111; }
    .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-panels-container .vc_tta-panel .vc_tta-panel-heading .vc_tta-panel-title a {
      font-size: 86.66667%; }
    .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-panels-container .vc_tta-panel.vc_active .vc_tta-panel-heading {
      border-color: #e84b3a;
      background: #e84b3a; }
      .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-panels-container .vc_tta-panel.vc_active .vc_tta-panel-heading .vc_tta-panel-title a {
        color: #fff; }
  .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-panels-container .vc_tta-panel-body {
    padding: 50px 60px;
    background: #f2f2f2;
    border-color: #f2f2f2; }
    .vc_tta-container .vc_tta-tabs.vc_tta-style-theme .vc_tta-panels-container .vc_tta-panel-body .vc_custom_heading {
      margin-bottom: 23px; }

.vc_progress_bar {
  /* Images Carousel */ }
  .vc_progress_bar.theme .vc_single_bar {
    background: transparent;
    margin-bottom: 32px;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .vc_progress_bar.theme .vc_single_bar .vc_label {
    padding: 0 0 6px;
    text-transform: uppercase;
    font-size: 16px; }
    .vc_progress_bar.theme .vc_single_bar .vc_label span.vc_label_units {
      float: right;
      font-size: 14px; }
  .vc_progress_bar.theme .vc_single_bar .vc_bar {
    position: relative;
    height: 7px;
    background-color: #999;
    z-index: 1;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .vc_progress_bar.theme .vc_single_bar:after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 7px;
    background: #eee;
    border: none; }
  .vc_progress_bar.theme.vc_progress-bar-color-white .vc_single_bar .vc_label {
    color: #fff; }
    .vc_progress_bar.theme.vc_progress-bar-color-white .vc_single_bar .vc_label span.vc_label_units {
      color: #fff;
      color: #ddd; }
    .vc_progress_bar.theme.vc_progress-bar-color-white .vc_single_bar:after {
      background: #888; }
  .vc_progress_bar.vc_progress-bar-color-theme .vc_single_bar .vc_label {
    color: #111; }
    .vc_progress_bar.vc_progress-bar-color-theme .vc_single_bar .vc_label span.vc_label_units {
      color: #111; }
  .vc_progress_bar.vc_progress-bar-color-theme .vc_single_bar .vc_bar {
    background-color: #999; }
  .vc_progress_bar.vc_progress-bar-color-theme .vc_single_bar:after {
    background: #eee;
    border: none; }

.wpb_images_carousel.theme {
  /* VC Call To Acction - CTA */ }
  .wpb_images_carousel.theme .vc_images_carousel:not(.vc_carousel_vertical) {
    padding-bottom: 34px; }
  .wpb_images_carousel.theme .vc_images_carousel:not(.vc_carousel_vertical) .vc_carousel-indicators {
    bottom: -6px; }
  .wpb_images_carousel.theme .vc_images_carousel:not(.vc_carousel_vertical) .vc_carousel-indicators li {
    width: 13px;
    height: 13px;
    border-color: #ccc;
    background-color: #ccc; }
    .wpb_images_carousel.theme .vc_images_carousel:not(.vc_carousel_vertical) .vc_carousel-indicators li.vc_active {
      background-color: #fff;
      width: 13px;
      height: 13px; }

.vc_general.vc_cta3.vc_cta3-style-theme {
  /* Remove in vc edit */ }
  .vc_general.vc_cta3.vc_cta3-style-theme .vc_custom_heading {
    margin-bottom: 0;
    text-transform: none;
    font-family: Noto Serif;
    font-style: italic;
    font-weight: 400; }
  @media (min-width: 768px) {
  .vc_general.vc_cta3.vc_cta3-style-theme.vc_cta3-actions-right .vc_cta3-content {
    padding-right: 110px;
    border-right: 1px solid #eee; }
    .vc_general.vc_cta3.vc_cta3-style-theme.vc_cta3-actions-right .vc_cta3-actions {
      padding-left: 110px; } }
  @media (max-width: 767px) {
  .vc_general.vc_cta3.vc_cta3-style-theme.vc_cta3-actions-right .vc_cta3-actions {
    margin-top: 30px; }
  .vc_general.vc_cta3.vc_cta3-style-theme.vc_cta3-actions-left .vc_cta3-actions {
    margin-bottom: 30px; } }

#vc_load-inline-editor.vc_inline-link {
  display: none; }

.wpb_revslider_element.wpb_content_element {
  margin-bottom: 0; }

.rev_slider_wrapper {
  /* Contact Form */ }
  .rev_slider_wrapper .tp-dottedoverlay {
    z-index: 1000; }

.wpcf7-form textarea {
  max-height: 200px; }
  .wpcf7-form .katana-contact input:not(.wpcf7-submit), .wpcf7-form .katana-contact select, .wpcf7-form .katana-contact textarea {
    border-color: #ddd; }

.wpcf7-form-control-wrap {
  display: block;
  vertical-align: top;
  /* NewsLetter */ }

.tnp-widget {
  /* qTranslate X */ }
  .tnp-widget.inline {
    /* Submit button as icon */ }
  .tnp-widget.inline .tnp-field-email, .tnp-widget.inline .tnp-field-button {
    display: inline-block;
    margin-right: -4px;
    vertical-align: top; }
  .tnp-widget.inline .tnp-field-email {
    width: calc(100% - 140px);
    padding-right: 10px; }
  .tnp-widget.inline .tnp-field-button {
    width: 140px; }
  .tnp-widget.inline-icon {
    overflow: hidden; }
  .tnp-widget.inline-icon form {
    position: relative; }
  .tnp-widget.inline-icon .tnp-field-button, .tnp-widget.inline-icon input.tnp-submit {
    width: 41px;
    height: 41px;
    line-height: 41px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    background: #e84b3a; }
  .tnp-widget.inline-icon .tnp-field-button:after {
    font-family: 'FontAwesome';
    content: "\f040";
    display: block;
    color: #fff;
    z-index: 1; }
  .tnp-widget.inline-icon input.tnp-submit {
    font-size: 0;
    border: none;
    background: transparent;
    z-index: 2; }
  .tnp-widget .tnp-field input[type="text"], .tnp-widget .tnp-field input[type="email"] {
    padding-top: 12px;
    padding-bottom: 12px; }

.qtranxs_widget.widget ul {
  margin: 0 -15px;
  /* ZoDonations */ }
  .qtranxs_widget.widget ul li {
    padding: 0 15px;
    margin: 0; }
  .qtranxs_widget.widget ul li a.qtranxs_flag_and_text {
    padding-left: 25px;
    background-position: left center; }
  .qtranxs_widget.widget ul li.active {
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }

.zk-cause-info {
  text-align: start; }
  .zk-cause-info .zk-cause-progress {
    padding-top: 11px;
    padding-bottom: 15px;
    position: relative;
    margin-bottom: -4px; }
  .zk-cause-info .zk-cause-progress .percent {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    background-color: #e84b3a; }
  .zk-cause-info .zk-cause-progress .number {
    min-width: 34px;
    height: 34px;
    line-height: 34px;
    display: inline-block;
    background-color: #e84b3a;
    color: #fff;
    font-size: 12px;
    font-weight: 400;
    text-align: center;
    position: relative;
    margin-left: -17px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .zk-cause-info .zk-cause-progress .number:after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #e84b3a transparent transparent transparent;
    margin-top: -1px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* Center Align */ }
  .zk-cause-info .zk-cause-meta {
    border-top: 4px solid #eee; }
  .zk-cause-info .zk-cause-meta h5 {
    color: #878787; }
  .zk-cause-info .zk-cause-meta span {
    color: #555;
    font-weight: 700;
    font-size: 150%;
    display: block;
    margin-top: -4px; }
  .zk-cause-info .zk-cause-meta li {
    border-left: 1px solid #eee;
    padding-left: 20px;
    padding-top: 4px; }
  .zk-cause-info .zk-cause-meta li:first-child {
    border-left: none;
    padding-left: 0;
    padding-right: 20px; }

.site_donate_form.modal .popup_title {
  background-color: #e84b3a;
  color: #fff; }
  .site_donate_form.modal .popup_content label.button.bordered_1 {
    border-color: #e84b3a;
    color: #e84b3a; }
  .site_donate_form.modal .popup_content label.button:hover, .site_donate_form.modal .popup_content label.button.active {
    border-color: #e84b3a;
    background-color: #e84b3a;
    color: #fff; }
  .site_donate_form.modal .popup_content .row > div {
    margin-bottom: 30px; }

.wc-onsale {
  position: absolute;
  top: 0;
  right: 0;
  width: 80px;
  height: 80px;
  z-index: 1;
  /* Star Rating */ }
  .wc-onsale:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 80px 80px 0;
    border-color: transparent #111 transparent transparent; }
  .wc-onsale span {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    text-transform: uppercase;
    font-size: 14px;
    color: #fff;
    letter-spacing: 0.1em;
    text-align: center;
    font-family: 'Montserrat';
    -webkit-transform: rotate(45deg);
    -khtml-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }

.star-rating {
  font-size: 18px;
  font-family: 'FontAwesome';
  position: relative;
  overflow: hidden;
  width: 86px;
  height: 25px; }
  .star-rating:before {
    content: '\f006\f006\f006\f006\f006';
    color: #888;
    float: left;
    top: 0;
    left: 0;
    position: absolute; }
  .star-rating span {
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 20px; }
  .star-rating span:before {
    content: '\f005\f005\f005\f005\f005';
    top: 0;
    position: absolute;
    left: 0;
    color: #212121; }

.stars {
  margin-left: -15px;
  margin-right: -15px;
  /* Price */ }
  .stars a {
    font-size: 0;
    padding: 0 15px; }
  .stars a:before {
    font-size: 18px;
    font-family: 'FontAwesome'; }
  .stars a.star-1:before {
    content: "\f006"; }
  .stars a.star-2:before {
    content: "\f006\f006"; }
  .stars a.star-3:before {
    content: "\f006\f006\f006"; }
  .stars a.star-4:before {
    content: "\f006\f006\f006\f006"; }
  .stars a.star-5:before {
    content: "\f006\f006\f006\f006\f006"; }
  .stars a:hover.star-1:before, .stars a.active.star-1:before {
    content: "\f005"; }
  .stars a:hover.star-2:before, .stars a.active.star-2:before {
    content: "\f005\f005"; }
  .stars a:hover.star-3:before, .stars a.active.star-3:before {
    content: "\f005\f005\f005"; }
  .stars a:hover.star-4:before, .stars a.active.star-4:before {
    content: "\f005\f005\f005\f005"; }
  .stars a:hover.star-5:before, .stars a.active.star-5:before {
    content: "\f005\f005\f005\f005\f005"; }

.price {
  margin-left: -8px;
  margin-right: -8px;
  /* Quantity */ }
  .price .amount {
    margin: 0 8px; }
  .price del, .price ins {
    text-decoration: none;
    position: relative;
    overflow: hidden; }
  .price del:before, .price ins:before {
    content: "";
    display: inline-block; }
  .price del:before {
    border: 1px solid #333;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 8px;
    -webkit-transform: rotate(-16deg);
    -khtml-transform: rotate(-16deg);
    -moz-transform: rotate(-16deg);
    -ms-transform: rotate(-16deg);
    -o-transform: rotate(-16deg);
    transform: rotate(-16deg);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }

.quantity {
  display: inline-block;
  vertical-align: top; }
  .quantity .input-text {
    width: 50px;
    height: 45px;
    padding: 0 0 0 10px;
    text-align: center; }
  .quantity.buttons_added {
    padding: 0 29px;
    position: relative; }
  .quantity.buttons_added .input-text {
    padding-right: 10px; }
  .quantity.buttons_added .input-text:hover {
    z-index: 1;
    position: relative; }
  .quantity.buttons_added .input-text::-webkit-inner-spin-button, .quantity.buttons_added .input-text::-webkit-outer-spin-button {
    -webkit-appearance: none; }
  .quantity.buttons_added input[type="button"] {
    width: 30px;
    height: 45px;
    padding: 0;
    text-align: center;
    position: absolute;
    top: 0;
    background: #eee; }
  .quantity.buttons_added input[type="button"].minus {
    left: 0; }
  .quantity.buttons_added input[type="button"].plus {
    right: 0; }

.blockUI, .blockMsg, .blockUI.blockOverlay {
  cursor: progress !important;
  /* Cart Form */ }

form.cart {
  margin-bottom: 25px; }
  form.cart .quantity {
    margin-right: 8px; }
  form.cart .button[name="add-to-cart"] {
    padding: 12.5px 15px;
    /* variations */ }
  form.cart table.variations {
    margin-bottom: 30px;
    border: none; }
  form.cart table.variations tr {
    border: none; }

form.woocommerce-cart-form {
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
  margin-bottom: 40px;
  /* Shop table */ }
  form.woocommerce-cart-form + .cart-collaterals {
    display: none; }

.shop_table {
  border: none;
  /* Cart Page */ }
  .shop_table thead {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #111;
    /* cart */ }
  .shop_table thead th {
    padding-bottom: 7px;
    font-weight: 700; }
  .shop_table.cart {
    /* Table Responsive */ }
  .shop_table.cart .remove {
    font-size: 0;
    display: block;
    color: #aaa; }
  .shop_table.cart .remove:before {
    font-size: 16px;
    content: "\f00d";
    display: block;
    font-family: 'FontAwesome'; }
  .shop_table.cart .remove:hover {
    color: red; }
  .shop_table.cart .product-thumbnail {
    width: 120px; }
  .shop_table.cart .product-thumbnail img {
    max-width: 90px; }
  .shop_table.cart .cart_item {
    border-top: 1px solid #eee;
    border-bottom: 0; }
  .shop_table.cart .cart_item td {
    padding-top: 20px;
    padding-bottom: 20px; }
    .shop_table.cart .cart_item td a {
      color: #878787; }
    .shop_table.cart .cart_item td a:hover {
      color: #e84b3a; }
  .shop_table.cart .cart_item:first-child {
    border-top: none; }
  .shop_table.cart .actions {
    text-align: right;
    padding-top: 32px; }
  .shop_table.cart .actions .coupon {
    text-align: start; }
    .shop_table.cart .actions .coupon label {
      display: none; }
    .shop_table.cart .actions .coupon #coupon_code {
      margin-right: 10px; }
  .shop_table.cart .actions .checkout-button {
    margin-left: 6px; }
  @media (min-width: ) {
      .shop_table.cart .actions .coupon {
        width: 52%; }
        .shop_table.cart .actions .coupon #coupon_code {
          max-width: 270px; } }
  @media (min-width: 992px) {
      .shop_table.cart .actions .coupon {
        width: 51%;
        float: left; }
        .shop_table.cart .actions .coupon input {
          float: left; }
        .shop_table.cart .actions .coupon #coupon_code {
          max-width: 260px; } }
  @media (max-width: 991px) {
      .shop_table.cart .actions .coupon {
        margin-bottom: 10px; }
        .shop_table.cart .actions .coupon #coupon_code {
          max-width: 500px; }
      .shop_table.cart .actions .checkout-button, .shop_table.cart .actions input[name="update_cart"] {
        width: calc(50% - 5px); }
      .shop_table.cart .actions input[name="update_cart"] {
        float: left; }
      .shop_table.cart .actions .checkout-button {
        float: right;
        margin: 0; } }
  @media (max-width: 767px) {
      .shop_table.cart .actions .coupon {
        text-align: center;
        margin-bottom: 0; }
      .shop_table.cart .actions .coupon #coupon_code, .shop_table.cart .actions input[name="apply_coupon"], .shop_table.cart .actions .checkout-button, .shop_table.cart .actions input[name="update_cart"] {
        width: 100%;
        max-width: inherit;
        margin: 10px 0 0 0; } }
  @media (max-width: 991px) {
    .shop_table.shop_table_responsive tbody th, .shop_table.shop_table_responsive thead, .shop_table.shop_table_responsive tfoot tr.order_item th {
      display: none; }

    .shop_table.shop_table_responsive tr td {
      display: block;
      text-align: right !important; }
      .shop_table.shop_table_responsive tr td:before {
        content: attr(data-title) ": ";
        font-weight: 700;
        float: left; }
      .shop_table.shop_table_responsive tr td.product-thumbnail {
        display: none; }
      .shop_table.shop_table_responsive tr td.product-remove:before, .shop_table.shop_table_responsive tr td.actions:before {
        display: none; }
      .shop_table.shop_table_responsive tr.cart_item td {
        border-bottom: 1px solid #eee; }
      .shop_table.shop_table_responsive tr.cart_item td:last-child {
        border-bottom: 0; }

    .shop_table.shop_table_responsive tbody tr.order_item td {
      border-bottom: 2px solid #eee; }
      .shop_table.shop_table_responsive tbody tr.order_item td:last-child {
        border-bottom: 0; }

    .shop_table.shop_table_responsive tfoot tr td:before {
      content: attr(data-title); } }

.cart-collaterals {
  /* Checkout Page */ }
  .cart-collaterals > div > div > h2 {
    font-size: 16px;
    margin: 30px 0 50px;
    position: relative; }
  .cart-collaterals .shipping .shipping-calculator-form, .cart-collaterals a.shipping-calculator-button {
    display: none !important; }
  .cart-collaterals .calculate-form .shipping-calculator-form {
    display: block !important; }
  .cart-collaterals button[name="calc_shipping"] {
    width: 100%; }
  .cart-collaterals .calculated_shipping table {
    border-top: 1px solid #eee; }
  .cart-collaterals .calculated_shipping table th {
    padding: 15px 0; }
  .cart-collaterals .calculated_shipping table td {
    padding: 15px 10px; }

form.woocommerce-checkout {
  margin-top: 26px; }

.col2-set {
  display: block;
  overflow: hidden;
  clear: both; }
  @media (min-width: 992px) {
    .col2-set > div {
      width: calc(50% - 15px); }
      .col2-set > div.col-1 {
        float: left; }
      .col2-set > div.col-2 {
        float: right; } }

.woocommerce-billing-fields > h3, .woocommerce-shipping-fields > h3, #order_review_heading {
  font-size: 14px;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 36px 0; }
  .woocommerce-billing-fields > h3 label, .woocommerce-shipping-fields > h3 label, #order_review_heading label {
    font-weight: 700; }

.woocommerce-account-fields {
  display: block;
  clear: both;
  padding-top: 22px; }

#order_review {
  /* Thank you page */ }
  #order_review .woocommerce-checkout-review-order-table {
    margin-bottom: 50px; }
  #order_review #payment .wc_payment_methods {
    margin-bottom: 30px; }
  #order_review #payment .payment_box {
    padding: 0 30px 20px; }
  #order_review #payment label[for="payment_method_paypal"] img, #order_review #payment label[for="payment_method_paypal"] a {
    display: none; }

.woocommerce-thankyou-order-received {
  font-size: 25px;
  color: #111; }

.woocommerce-order-details__title, .woocommerce-customer-details > h2, .woocommerce-column__title, .wc-bacs-bank-details-heading, .wc-bacs-bank-details-account-name {
  font-size: 16px;
  /* Product Images */ }

.woocommerce-product-gallery {
  /* before shop loop */ }
  .woocommerce-product-gallery img {
    width: 100%; }
  .woocommerce-product-gallery .woocommerce-product-gallery__image:nth-child(1) {
    width: 100%;
    display: block; }
  .woocommerce-product-gallery .woocommerce-product-gallery__image:nth-child(n+2), .woocommerce-product-gallery .flex-control-nav li {
    display: inline-block;
    vertical-align: top;
    width: calc(20%);
    /* Gallery Zoom & Slider */ }
  .woocommerce-product-gallery .woocommerce-product-gallery__image:nth-child(n+2) img, .woocommerce-product-gallery .flex-control-nav li img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    -moz-object-fit: cover;
    -ms-filter-object-fit: cover;
    -webkit-object-fit: cover;
    /* Image black and white */ }
  @media (max-width: 480px) {
    .woocommerce-product-gallery .woocommerce-product-gallery__image:nth-child(n+2), .woocommerce-product-gallery .flex-control-nav li {
      width: calc(50%); } }
  .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background: #111; }
  .woocommerce-product-gallery .woocommerce-product-gallery__trigger img {
    display: none !important; }
  .woocommerce-product-gallery .woocommerce-product-gallery__trigger:before {
    color: #fff;
    content: "\f00e";
    font-family: 'FontAwesome';
    font-size: 20px;
    background: transparent;
    visibility: visible;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */
    position: static; }
  .woocommerce-product-gallery .woocommerce-product-gallery__trigger:after {
    display: none; }
  .woocommerce-product-gallery .flex-viewport + .flex-control-nav {
    margin: 5px -5px 0;
    text-align: center; }
  .woocommerce-product-gallery .flex-viewport + .flex-control-nav li {
    padding: 5px; }
  .woocommerce-product-gallery a {
    position: relative;
    display: block;
    /* Gallery Lightbox */ }
  .woocommerce-product-gallery a:before, .woocommerce-product-gallery a:after {
    display: block;
    visibility: hidden;
    filter: alpha(opacity=0);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    -webkit-opacity: 0;
    -khtml-opacity: 0;
    -moz-opacity: 0;
    -ms-opacity: 0;
    -o-opacity: 0;
    opacity: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */
    -webkit-transition: all 300ms linear 0ms;
    -khtml-transition: all 300ms linear 0ms;
    -moz-transition: all 300ms linear 0ms;
    -ms-transition: all 300ms linear 0ms;
    -o-transition: all 300ms linear 0ms;
    transition: all 300ms linear 0ms;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRIPLE BORDERS */ }
  .woocommerce-product-gallery a:before {
    content: "";
    background: rgba(17, 17, 17, 0.8);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0; }
  .woocommerce-product-gallery a:after {
    top: 50%;
    left: 50%;
    position: absolute;
    -webkit-transform: translate(-50%,-50%);
    -khtml-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* image fit */
    color: #fff;
    content: "\f00e";
    font-family: 'FontAwesome';
    font-size: 40px; }
  .woocommerce-product-gallery a:hover:before, .woocommerce-product-gallery a:hover:after {
    visibility: visible;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
  .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper {
    margin: -5px;
    text-align: center; }
  .woocommerce-product-gallery > .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image {
    padding: 5px; }

.zk-before-wc-loop-wrap .woocommerce-result-count, .zk-before-wc-loop-wrap .woocommerce-ordering, .zk-before-wc-loop-wrap a[data-target="#zk-wc-filter"] {
  margin: 0 0 30px;
  display: block; }
  @media (min-width: 767px) {
    .zk-before-wc-loop-wrap .woocommerce-result-count, .zk-before-wc-loop-wrap .woocommerce-ordering, .zk-before-wc-loop-wrap a[data-target="#zk-wc-filter"] {
      display: inline-block;
      vertical-align: top; } }
  .zk-before-wc-loop-wrap .woocommerce-result-count {
    padding-top: 12px; }
  .zk-before-wc-loop-wrap .woocommerce-ordering select {
    height: 50px;
    background-color: #eee;
    font-size: 14px;
    font-style: italic;
    letter-spacing: 0.02em;
    color: #999; }
  .zk-before-wc-loop-wrap:after {
    height: 1px;
    width: 100%;
    background: #eee;
    margin-bottom: 30px; }
  @media (min-width: 767px) {
  .zk-before-wc-loop-wrap .woocommerce-ordering {
    float: right;
    margin-left: 30px; }
  .zk-before-wc-loop-wrap a[data-target="#zk-wc-filter"] {
    float: left; } }

#zk-wc-filter {
  margin-bottom: 42px;
  /* Loop Products */ }

.products {
  margin: 0 -15px;
  display: block;
  overflow: hidden;
  list-style: none; }
  .products .zk-wc-img-wrap {
    position: relative; }
  .products .zk-wc-img-wrap .woocommerce-LoopProduct-link {
    display: block; }
  .products .zk-wc-img-wrap [class*="product_type_"], .products .zk-wc-img-wrap [class^="product_type_"] {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 45px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    color: #fff;
    font-size: 0;
    background: #111; }
  .products .zk-wc-img-wrap [class*="product_type_"]:hover, .products .zk-wc-img-wrap [class^="product_type_"]:hover {
    background: #e84b3a; }
  .products .zk-wc-img-wrap [class*="product_type_"].wc-forward, .products .zk-wc-img-wrap [class^="product_type_"].wc-forward {
    left: auto;
    right: 0; }
  .products .zk-wc-img-wrap [class*="product_type_"]:before, .products .zk-wc-img-wrap [class^="product_type_"]:before {
    font-size: 18px;
    font-family: 'FontAwesome'; }
  .products .zk-wc-img-wrap [class*="product_type_"].loading, .products .zk-wc-img-wrap [class^="product_type_"].loading {
    cursor: progress; }
  .products .wc-loop-title {
    margin: 20px 0 0; }
  .products .price {
    font-size: 14px;
    font-style: italic;
    color: #999; }
  .products .star-rating {
    clear: both;
    margin: 3px auto;
    display: block; }
  .products > .type-product {
    width: 33.33%;
    padding: 0 15px;
    margin: 0 0 30px;
    float: left;
    position: relative;
    text-align: center; }
  .products > .type-product.first {
    clear: left; }
  .products > .type-product img {
    width: 100%; }
  @media (max-width: 1024px) {
    .products > .type-product {
      width: 50%; }
      .products > .type-product.first {
        clear: none; } }
  @media (max-width: 480px) {
    .products > .type-product {
      width: 100%;
      clear: both; } }
  .products.columns-2 > .type-product {
    width: 50%; }
  @media (max-width: 480px) {
      .products.columns-2 > .type-product {
        width: 100%;
        clear: both; } }
  .products.columns-4 > .type-product {
    width: 25%; }
  @media (max-width: 1024px) {
      .products.columns-4 > .type-product {
        width: 50%; }
        .products.columns-4 > .type-product.first {
          clear: none; } }
  @media (max-width: 480px) {
      .products.columns-4 > .type-product {
        width: 100%;
        clear: both; } }
  .products.columns-5 > .type-product {
    width: 20%; }
  @media (max-width: 1024px) {
      .products.columns-5 > .type-product {
        width: 50%; }
        .products.columns-5 > .type-product.first {
          clear: none; } }
  @media (max-width: 480px) {
      .products.columns-5 > .type-product {
        width: 100%;
        clear: both; } }

.related, .upsells, .cross-sells {
  padding: 0 15px; }
  .related > h2, .upsells > h2, .cross-sells > h2 {
    text-align: center;
    text-transform: capitalize;
    font-size: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 17px;
    margin: 45px 0 50px; }

.woocommerce-message, .woocommerce-error {
  margin-bottom: 50px;
  /* Single Products */ }
  .woocommerce-message .wc-forward, .woocommerce-error .wc-forward {
    float: right; }

.single-product .product {
  position: relative; }
  .single-product .wc-onsale {
    left: 0;
    right: auto;
    -webkit-transform: rotate(270deg);
    -khtml-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }
  .single-product .woocommerce-product-gallery {
    margin-bottom: 30px;
    position: relative; }
  @media (min-width: 992px) {
    .single-product .woocommerce-product-gallery {
      float: left;
      width: calc(47.9% - 60px);
      margin-right: 60px; } }
  .single-product .entry-summary {
    margin-bottom: 30px; }
  @media (min-width: 992px) {
    .single-product .entry-summary {
      float: left;
      width: calc(52.1%); } }
  .single-product .entry-summary .product_title {
    font-size: 45px;
    text-transform: capitalize; }
  .single-product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
    margin-right: 20px;
    color: #878787; }
    .single-product .entry-summary .woocommerce-product-rating .woocommerce-review-link:hover {
      color: #e84b3a; }
  .single-product .entry-summary .woocommerce-product-rating .star-rating {
    display: inline-block;
    -webkit-transform: translateY(4px);
    -khtml-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* TRANSFORM STYLE */ }
  .single-product .entry-summary .price {
    font-size: 28px;
    color: #111;
    letter-spacing: 0.05em;
    font-weight: 600;
    padding-top: 8px; }
  .single-product .entry-summary .price del {
    text-decoration: line-through;
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-opacity: 0.7;
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    -ms-opacity: 0.7;
    -o-opacity: 0.7;
    opacity: 0.7;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
    .single-product .entry-summary .price del:before {
      display: none; }
  .single-product .entry-summary .woocommerce-product-details__short-description {
    border-top: 1px solid #eee;
    margin-top: 35px;
    padding: 20px 0 25px; }
  .single-product .product_meta {
    border-top: 1px solid #eee; }
  .single-product .product_meta > span {
    display: block;
    border-bottom: 1px solid #eee;
    padding: 7px 0; }
  .single-product .product_meta .meta-title {
    font-weight: 700;
    color: #111;
    min-width: 130px;
    display: inline-block; }
  .single-product .product_meta .sku, .single-product .product_meta a {
    color: #858585; }
  .single-product .product_meta .sku:hover, .single-product .product_meta a:hover {
    color: #111; }
  .single-product .entry-socials-share-list {
    padding-top: 35px; }
  .single-product .entry-socials-share-list .title {
    min-width: 130px;
    font-weight: 700;
    color: #111; }
  .single-product .entry-socials-share-list a {
    width: 38px;
    height: 38px;
    line-height: 36px;
    border: 1px solid #eee;
    color: #777;
    display: block;
    text-align: center; }
  .single-product .entry-socials-share-list a:hover {
    background: #eee;
    color: #e84b3a; }

.woocommerce-tabs {
  width: 100%;
  clear: both;
  padding-top: 30px;
  /* All WC widget */
  /* Price Filter */ }
  .woocommerce-tabs .wc-tabs {
    text-align: center; }
  .woocommerce-tabs .wc-tabs li {
    display: inline-block; }
  .woocommerce-tabs .wc-tabs li a {
    display: block;
    border: 1px solid #111;
    padding: 10px; }
  .woocommerce-tabs .wc-tabs li.active a, .woocommerce-tabs .wc-tabs li:hover a {
    background: #111;
    border-color: #111;
    color: #fff; }
  .woocommerce-tabs .wc-tab {
    padding: 30px 0 0 0; }

.widget_price_filter {
  /* Products List widget */ }
  .widget_price_filter .price_slider {
    position: relative; }
  .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background: transparent;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    margin: 0;
    padding: 19px 0 0 0; }
  .widget_price_filter .price_slider_wrapper .ui-widget-content:before {
    content: "";
    display: block;
    background-color: #eee;
    height: 3px;
    width: 100%; }
  .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    background-color: #111;
    left: 0;
    bottom: 0; }
  .widget_price_filter .ui-slider .ui-slider-range {
    height: 3px;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    /* BACKGROUND GRADIENT */
    /* bottom to top */ }
  .widget_price_filter .ui-slider .ui-slider-handle {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 0;
    cursor: ew-resize; }
  .widget_price_filter .ui-slider .ui-slider-handle:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 5px 0 5px;
    border-color: #111 transparent transparent transparent; }
  .widget_price_filter .ui-slider .ui-slider-handle:last-child {
    margin-left: -5px; }
  .widget_price_filter .price_slider_amount {
    margin-top: 13px;
    color: #868686;
    letter-spacing: 0.02em; }
  .widget_price_filter .price_label {
    float: right; }

.product_list_widget {
  /* Mini Cart */ }
  .product_list_widget li {
    clear: both;
    display: block;
    overflow: hidden;
    position: relative;
    padding: 0 0 15px;
    margin: 0 0 15px;
    border-bottom: 1px solid #eee; }
  .product_list_widget li:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0; }
  .product_list_widget .remove {
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    display: block;
    color: red;
    background: #fff;
    filter: alpha(opacity=70);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    -webkit-opacity: 0.7;
    -khtml-opacity: 0.7;
    -moz-opacity: 0.7;
    -ms-opacity: 0.7;
    -o-opacity: 0.7;
    opacity: 0.7;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
  .product_list_widget .remove:hover {
    color: #fff;
    background: red;
    filter: alpha(opacity=100);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    -webkit-opacity: 1;
    -khtml-opacity: 1;
    -moz-opacity: 1;
    -ms-opacity: 1;
    -o-opacity: 1;
    opacity: 1;
    /* BACKGROUND GRADIENT */
    /* bottom to top */
    /* OUTLINE RADIUS */ }
  .product_list_widget .wp-post-image {
    float: left;
    max-width: 70px;
    margin-right: 15px; }
  .product_list_widget .product-title, .product_list_widget .quantity {
    display: inline-block;
    clear: both;
    width: calc(100% - 85px);
    font-size: 14px;
    letter-spacing: 0.7px;
    padding: 4px 0 3px 0; }
  .product_list_widget .amount {
    font-style: italic;
    font-size: 14px;
    color: #999;
    letter-spacing: 0.28px; }
  .product_list_widget del {
    color: rgba(255, 0, 0, 0.5); }
  .product_list_widget del .amount {
    color: rgba(255, 0, 0, 0.5); }
  .product_list_widget ins {
    text-decoration: none; }
  .product_list_widget ins .amount {
    color: #111; }

.widget_shopping_cart_content {
  /* Filter */ }
  .widget_shopping_cart_content .total {
    margin: 20px 0 10px; }
  .widget_shopping_cart_content .buttons {
    margin: 0 -10px; }
  .widget_shopping_cart_content .buttons a {
    margin: 10px; }

.filter_wc_wg {
  /* YITH Wishlist */ }
  .filter_wc_wg .wg-title {
    padding-bottom: 11px;
    border-bottom: 1px solid #111; }
  .filter_wc_wg .widget_price_filter .wg-title {
    margin-bottom: 23px; }
  .filter_wc_wg .text_filter_btn, .filter_wc_wg .checkbox_filter_btn {
    border-bottom: 1px solid #eee;
    text-transform: uppercase;
    color: #999;
    font-size: 13px;
    letter-spacing: 0.12em;
    font-family: "Open Sans";
    cursor: pointer;
    font-weight: 700;
    padding: 7px 0; }
  .filter_wc_wg .text_filter_btn:hover, .filter_wc_wg .checkbox_filter_btn:hover, .filter_wc_wg .text_filter_btn.active, .filter_wc_wg .checkbox_filter_btn.active {
    color: #111; }
  .filter_wc_wg .text_filter_btn.active, .filter_wc_wg .checkbox_filter_btn.active {
    cursor: not-allowed; }
  @media (max-width: 991px) {
  .filter_wc_wg > div {
    margin-bottom: 30px; } }

.yith-wcwl-add-to-wishlist {
  display: inline-block;
  margin-bottom: 30px; }
  .yith-wcwl-add-to-wishlist .show {
    display: inline-block !important; }
  .yith-wcwl-add-to-wishlist:before {
    font-family: 'FontAwesome';
    content: "\f004";
    margin-right: 10px;
    color: #111; }
  .yith-wcwl-add-to-wishlist + .clear {
    display: none; }
  .yith-wcwl-add-to-wishlist a {
    font-weight: 700; }

.woocommerce .wishlist_table a[class*="product_type_"]:before {
  font-family: 'FontAwesome'; }
  .woocommerce .wishlist_table td.product-add-to-cart a {
    display: inline-block !important; }

.wishlist_table tr td, .wishlist_table tr th.wishlist-delete, .wishlist_table tr th.product-checkbox {
  text-align: inherit;
  /* YITH Compare */ }

a.compare {
  font-weight: 700;
  margin-left: 40px;
  margin-bottom: 30px;
  display: inline-block; }
  a.compare:before {
    font-family: 'FontAwesome';
    content: "\f1de";
    margin-right: 10px; }

.yith-wcwl-add-to-wishlist.added-wl + div + a.compare {
  margin-left: 0;
  display: block; }

@media (min-width: 1280px) {
  /* Min width 1200 */
    .container {
      width: 1200px; } }

@media (min-width: 1200px) {
  /* Medium Screen */
    .hidden-desktop, .hidden-lg {
      display: none !important;
      /* Left Right Menu */ }
    #cms-navigation-left, #cms-navigation-right {
      width: calc(50% - 74px);
      min-height: 1px; }
    .wpb_column.contact2 {
      padding-left: 100px; }
    .text-lg-right {
      text-align: right; } }

@media (min-width: 992px) {
  /* Small Screen (<= 991px) */
    .wpb_column {
      /* text align */ }
      .wpb_column.full-left, .wpb_column.full-right {
        position: absolute;
        top: 0;
        bottom: 0; }
        .wpb_column.full-left > div, .wpb_column.full-right > div {
          position: absolute;
          bottom: 0;
          height: 100%; }
          .wpb_column.full-left > div[class*='vc_custom_'], .wpb_column.full-right > div[class*='vc_custom_'] {
            padding-left: 0 !important;
            padding-right: 0 !important; }
      .wpb_column.full-left {
        left: 0; }
      .wpb_column.full-right {
        right: 0; }
    .text-md-right {
      text-align: right; }
    .text-md-center {
      text-align: center; }
    .pull-md-right {
      float: right !important; } }

@media (max-width: 991px) {
  /* Extra Small Screen (<= 767px) */
    html body {
      padding: 0; }
    .content-area + #sidebar-area, #sidebar-area + .content-area {
      margin-top: 90px; }
    .text-sm-right {
      text-align: right; }
    .text-sm-center {
      text-align: center; }
    .sm-pull-right {
      float: right; }
    .hidden-sm {
      display: none !important; }
    [class*='col-md-'].pull-left, [class*='col-md-'].pull-right {
      float: none !important; } }

@media (max-width: 767px) {
  /* Max width 480px */
    .text-xs-right {
      text-align: right; }
    .text-xs-center {
      text-align: center; }
    .hidden-xs {
      display: none !important; }
    [class*='col-xs-'].pull-left, [class*='col-xs-'].pull-right {
      float: none !important; } }

@media (max-width: 480px) {
  .hidden-xxs {
    display: none !important; } }

body.rtl ul.menu li a:before, body.rtl ol.menu li a:before {
  content: "\f060"; }
  body.rtl .text-left {
    text-align: right; }
  body.rtl .text-right {
    text-align: left;
    /* Boostrap */ }
  body.rtl .col-md-1, body.rtl .col-md-2, body.rtl .col-md-3, body.rtl .col-md-4, body.rtl .col-md-5, body.rtl .col-md-6, body.rtl .col-md-7, body.rtl .col-md-8, body.rtl .col-md-9, body.rtl .col-md-10, body.rtl .col-md-11, body.rtl .col-md-12, body.rtl .pull-left {
    float: right; }
  body.rtl .pull-right {
    float: left;
    /* Custom */
    /* Min width 1200 */ }
  @media (min-width: 1200px) {
  body.rtl {
    /* Min width 992 */ }
    body.rtl .text-lg-right {
      text-align: left; } }
  @media (min-width: 992px) {
  body.rtl {
    /* Min width 768 */ }
    body.rtl .width-md-50 {
      float: right; }

    body.rtl .wpb_column.full-left {
      left: auto;
      right: 0; }
      body.rtl .wpb_column.full-right {
        right: auto;
        left: 0; } }
  @media (min-width: 768px) {
  body.rtl {
    /* Max width 1200 */ } }
  @media (max-width: 1200px) {
  body.rtl {
    /* max width 991 */ }
    body.rtl .sm-pull-left {
      float: right; }

    body.rtl .sm-pull-right {
      float: left; } }
  @media (max-width: 991px) {
  body.rtl {
    /* Max width 767px */ } }
  @media (max-width: 767px) {
  body.rtl {
    /* Medium Screen */ }
    body.rtl .text-xs-right {
      text-align: left; }

    body.rtl .text-xs-left {
      text-align: right; } }
  @media (min-width: 992px) {
  body.rtl {
    /* Small Screen */ }
    body.rtl .text-md-right {
      text-align: left; }

    body.rtl .pull-md-left {
      float: right; }

    body.rtl .pull-md-right {
      float: left; } }
  @media (max-width: 991px) and (min-width: 768px) {
  body.rtl .text-sm-right {
    text-align: left; }
  body.rtl .sm-pull-left {
    float: right; }
  body.rtl .sm-pull-right {
    float: left; } }
