/* -------------------------------------------------------------
  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 */
/* Background */
/* Typography */
/* Header */
/* Form */
/* Socials Color */
/* Header */
/* widget */
/* Responsive Size */
/* Medium Screen */
/* Small Screen */
/* Extra Small Screen */
/* overlay position  */
/* ANIMATION */
/* Header Top Section */
/* Entry Media */
/* Default Button */
/* CMS Grid */
/* Rev Slider */
/* min width 1280px and max width 1599px */
@-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 */
    /* 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 */
    /* 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 */
    /* 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 */
    /* 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 */
    /* 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 */ }
  #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: #aeaeae;
      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: #aeaeae;
      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: #aeaeae;
      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: #282a2d;
      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: #aeaeae;
      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: #aeaeae; }
    #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: #aeaeae;
      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: #aeaeae; }
    #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 #aeaeae;
      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 #aeaeae;
      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: #aeaeae;
      position: absolute;
      border-radius: 50%;
      border: 0px solid #aeaeae;
      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 */
  /* Horizontal Align */
  /* Overlay content */ }

.overlay-wrap {
  position: relative;
  overflow: hidden; }
  .overlay-wrap .overlay {
    background: rgba(40, 42, 45, 0.8);
    -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 */
    /* 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 */
    /* OUTLINE RADIUS */
    /* Hover state */ }
    .overlay-wrap .overlay .overlay-inner {
      padding: 20px;
      width: 100%;
      /* Effect  */ }
      .overlay-wrap .overlay .overlay-inner.bottom-align {
        position: absolute;
        bottom: 0; }
      .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 */
        /* Spin */ }
      .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.left-right {
        left: -100%;
        right: 100%; }
      .overlay-wrap .overlay.left-right .overlay-inner {
        left: 200%;
        right: auto; }
    .overlay-wrap .overlay.right-left {
      left: 100%;
      right: -100%; }
      .overlay-wrap .overlay.right-left .overlay-inner {
        right: 200%;
        left: -200%; }
    .overlay-wrap .overlay.top-bottom {
      bottom: 100%;
      top: -100%; }
      .overlay-wrap .overlay.top-bottom .overlay-inner {
        top: 200%;
        bottom: -200%; }
    .overlay-wrap .overlay.bottom-top {
      bottom: -100%;
      top: 100%; }
      .overlay-wrap .overlay.bottom-top .overlay-inner {
        top: -200%;
        bottom: 200%; }
    .overlay-wrap .overlay.zoom-in {
      -webkit-transform: scale(1.5);
      -khtml-transform: scale(1.5);
      -moz-transform: scale(1.5);
      -ms-transform: scale(1.5);
      -o-transform: scale(1.5);
      transform: scale(1.5);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
    .overlay-wrap .overlay.zoom-out {
      -webkit-transform: scale(0);
      -khtml-transform: scale(0);
      -moz-transform: scale(0);
      -ms-transform: scale(0);
      -o-transform: scale(0);
      transform: scale(0);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
  .overlay-wrap:hover .overlay, .overlay-wrap:active .overlay, .overlay-wrap:focus .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 */
    /* OUTLINE RADIUS */ }
    .overlay-wrap:hover .overlay.left-right, .overlay-wrap:active .overlay.left-right, .overlay-wrap:focus .overlay.left-right, .overlay-wrap:hover .overlay.right-left, .overlay-wrap:active .overlay.right-left, .overlay-wrap:focus .overlay.right-left {
      left: 0;
      right: 0; }
      .overlay-wrap:hover .overlay.left-right .overlay-inner, .overlay-wrap:active .overlay.left-right .overlay-inner, .overlay-wrap:focus .overlay.left-right .overlay-inner, .overlay-wrap:hover .overlay.right-left .overlay-inner, .overlay-wrap:active .overlay.right-left .overlay-inner, .overlay-wrap:focus .overlay.right-left .overlay-inner {
        left: 0;
        right: 0;
        -webkit-transition: all 300ms ease-out 100ms;
        -khtml-transition: all 300ms ease-out 100ms;
        -moz-transition: all 300ms ease-out 100ms;
        -ms-transition: all 300ms ease-out 100ms;
        -o-transition: all 300ms ease-out 100ms;
        transition: all 300ms ease-out 100ms;
        /* BACKGROUND GRADIENT */
        /* TRIPLE BORDERS */ }
    .overlay-wrap:hover .overlay.top-bottom, .overlay-wrap:active .overlay.top-bottom, .overlay-wrap:focus .overlay.top-bottom, .overlay-wrap:hover .overlay.bottom-top, .overlay-wrap:active .overlay.bottom-top, .overlay-wrap:focus .overlay.bottom-top {
      top: 0;
      bottom: 0; }
      .overlay-wrap:hover .overlay.top-bottom .overlay-inner, .overlay-wrap:active .overlay.top-bottom .overlay-inner, .overlay-wrap:focus .overlay.top-bottom .overlay-inner, .overlay-wrap:hover .overlay.bottom-top .overlay-inner, .overlay-wrap:active .overlay.bottom-top .overlay-inner, .overlay-wrap:focus .overlay.bottom-top .overlay-inner {
        top: 50%;
        bottom: auto;
        -webkit-transition: all 300ms ease-out 100ms;
        -khtml-transition: all 300ms ease-out 100ms;
        -moz-transition: all 300ms ease-out 100ms;
        -ms-transition: all 300ms ease-out 100ms;
        -o-transition: all 300ms ease-out 100ms;
        transition: all 300ms ease-out 100ms;
        /* BACKGROUND GRADIENT */
        /* TRIPLE BORDERS */ }
    .overlay-wrap:hover .overlay.zoom-in, .overlay-wrap:active .overlay.zoom-in, .overlay-wrap:focus .overlay.zoom-in {
      -webkit-transform: scale(1);
      -khtml-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
    .overlay-wrap:hover .overlay.zoom-out, .overlay-wrap:active .overlay.zoom-out, .overlay-wrap:focus .overlay.zoom-out {
      -webkit-transform: scale(1);
      -khtml-transform: scale(1);
      -moz-transform: scale(1);
      -ms-transform: scale(1);
      -o-transform: scale(1);
      transform: scale(1);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }

.has-box-shadow {
  -webkit-box-shadow: 0 0 95px #999;
  -khtml-box-shadow: 0 0 95px #999;
  -moz-box-shadow: 0 0 95px #999;
  -ms-box-shadow: 0 0 95px #999;
  -o-box-shadow: 0 0 95px #999;
  box-shadow: 0 0 95px #999;
  /* BACKGROUND GRADIENT */
  /* 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: #aeaeae;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  font-size: 30px;
  z-index: 1;
  /* Social */ }
  #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 */
    /* OUTLINE RADIUS */
    bottom: -100%; }
  #cms-backtotop.on {
    bottom: 15px; }

.cms-social {
  margin: -5px -12px;
  /* VC Element */ }
  .cms-social a {
    display: inline-block;
    padding: 5px 12px; }
    .cms-social a:hover {
      color: #aeaeae; }
  .cms-social.horizontal li {
    float: left; }
  .cms-social.colored a {
    padding: 5px;
    margin: -5px; }
    .cms-social.colored a i {
      width: 50px;
      height: 50px;
      line-height: 50px;
      text-align: center;
      font-size: 20px;
      color: #fff;
      background-color: #282a2d;
      display: 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 */
      /* 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-plus"], .cms-social.colored a i[class*="google-plus"] {
        background: #ff4c4c; }
    .cms-social.colored a:hover i {
      background-color: #aeaeae; }

.cms-el-social .title {
  padding: 0;
  margin: 0;
  float: left;
  letter-spacing: 2.4px;
  font-weight: 400;
  color: #282a2d;
  font-size: 80%; }
  .cms-el-social .title:after {
    width: 100px;
    height: 1px;
    background-color: #282a2d;
    margin: 0 10px 0 30px;
    display: inline-block;
    content: ""; }
  .cms-el-social .cms-social a {
    font-size: 146.6667%;
    padding: 5px 20px; }
  .cms-el-social .cms-social.colored a {
    vertical-align: top;
    margin: 5px;
    padding: 0; }
  .cms-el-social.colored .title {
    margin-top: 34px; }
  .cms-el-social.white .title {
    color: #fff; }
  .cms-el-social.white .title:after {
    background-color: #fff; }
  .cms-el-social.white a {
    color: #fff; }
  .cms-el-social.white a:hover {
    color: #aeaeae; }
  .cms-el-social.circle-grey a {
    width: 46px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    background-color: #eee;
    color: #282a2d;
    margin-left: 10px;
    padding: 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 */ }
  .cms-el-social.circle-grey a:hover {
    background-color: #282a2d;
    color: #fff; }
  .cms-el-social.vertical .title {
    margin-top: 0; }
  .cms-el-social.vertical .cms-social a {
    padding-left: 18px;
    padding-right: 18px; }
  .cms-el-social.vertical.style1 {
    -webkit-transform: translate(-50%, -50%) rotate(-90deg) translate(-50%, 50%);
    -khtml-transform: translate(-50%, -50%) rotate(-90deg) translate(-50%, 50%);
    -moz-transform: translate(-50%, -50%) rotate(-90deg) translate(-50%, 50%);
    -ms-transform: translate(-50%, -50%) rotate(-90deg) translate(-50%, 50%);
    -o-transform: translate(-50%, -50%) rotate(-90deg) translate(-50%, 50%);
    transform: translate(-50%, -50%) rotate(-90deg) translate(-50%, 50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-el-social.vertical.style1 i {
    -webkit-transform: rotate(90deg);
    -khtml-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */ }
  .cms-el-social.vertical.style2 {
    bottom: 0;
    border-left: 2px solid ;
    padding-left: 30px;
    -webkit-transform: rotate(270deg) translate(100%, 100%);
    -khtml-transform: rotate(270deg) translate(100%, 100%);
    -moz-transform: rotate(270deg) translate(100%, 100%);
    -ms-transform: rotate(270deg) translate(100%, 100%);
    -o-transform: rotate(270deg) translate(100%, 100%);
    transform: rotate(270deg) translate(100%, 100%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    -webkit-transform-origin: bottom right 0;
    -khtml-transform-origin: bottom right 0;
    -moz-transform-origin: bottom right 0;
    -ms-transform-origin: bottom right 0;
    -o-transform-origin: bottom right 0;
    transform-origin: bottom right 0;
    /* BACKGROUND GRADIENT */
    /* TRANSITION */ }
  .cms-el-social.vertical.style3 {
    -webkit-transform: rotate(90deg);
    -khtml-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    /* BACKGROUND GRADIENT */
    filter: progid:DXImageTransform.Microsoft.Matrix(M11=0, M12=0, M21=0, M22=0, sizingMethod='auto expand');
    zoom: 1;
    /* TEXT SHADOW */
    -webkit-transform-origin: left top 0;
    -khtml-transform-origin: left top 0;
    -moz-transform-origin: left top 0;
    -ms-transform-origin: left top 0;
    -o-transform-origin: left top 0;
    transform-origin: left top 0;
    /* BACKGROUND GRADIENT */
    /* TRANSITION */ }
  .cms-el-social.vertical.style3 i {
    -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 */
    /* TRANSFORM STYLE */ }
  .cms-el-social.vertical.style4 {
    -webkit-transform: rotate(-90deg) translateY(100%);
    -khtml-transform: rotate(-90deg) translateY(100%);
    -moz-transform: rotate(-90deg) translateY(100%);
    -ms-transform: rotate(-90deg) translateY(100%);
    -o-transform: rotate(-90deg) translateY(100%);
    transform: rotate(-90deg) translateY(100%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    -webkit-transform-origin: left bottom 0;
    -khtml-transform-origin: left bottom 0;
    -moz-transform-origin: left bottom 0;
    -ms-transform-origin: left bottom 0;
    -o-transform-origin: left bottom 0;
    transform-origin: left bottom 0;
    /* BACKGROUND GRADIENT */
    /* TRANSITION */ }
  .cms-el-social.vertical.style5 {
    padding-top: 62px;
    white-space: nowrap;
    -webkit-transform: rotate(90deg) translate(100%, 50%);
    -khtml-transform: rotate(90deg) translate(100%, 50%);
    -moz-transform: rotate(90deg) translate(100%, 50%);
    -ms-transform: rotate(90deg) translate(100%, 50%);
    -o-transform: rotate(90deg) translate(100%, 50%);
    transform: rotate(90deg) translate(100%, 50%);
    /* BACKGROUND GRADIENT */
    /* TRANSFORM STYLE */
    -webkit-transform-origin: right top 0;
    -khtml-transform-origin: right top 0;
    -moz-transform-origin: right top 0;
    -ms-transform-origin: right top 0;
    -o-transform-origin: right top 0;
    transform-origin: right top 0;
    /* BACKGROUND GRADIENT */
    /* TRANSITION */ }
  .cms-el-social.vertical.style5 i {
    -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 */
    /* TRANSFORM STYLE */ }

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

.page-template-page-blog, body.archive, body.category {
  /* Error  Page */ }
  .page-template-page-blog .format-quote .entry-media.entry-quote, body.archive .format-quote .entry-media.entry-quote, body.category .format-quote .entry-media.entry-quote {
    font-style: normal; }
  .page-template-page-blog .cms_pagination, body.archive .cms_pagination, body.category .cms_pagination {
    margin-top: 10px; }

.error404 {
  /* Maintenance Page */ }
  .error404 .logo-404 {
    font-size: 1000%;
    line-height: 1; }
  .error404 .logo-404.text {
    margin-bottom: 40px; }
  .error404 .entry-title {
    font-size: 505.88235%;
    margin-bottom: 19px; }
  .error404 .entry-message {
    font-size: 88.23529%; }
  @media (min-width: 1199px) {
  .error404 .content-area {
    min-height: 454px;
    display: table;
    margin-bottom: 70px; }
    .error404 .content-area header {
      display: table-cell;
      vertical-align: middle; } }

.page-template-page-maintenance {
  /* Coming Soon */ }
  .page-template-page-maintenance .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar:before {
    background: rgba(255, 255, 255, 0.3); }
  .page-template-page-maintenance .wpb_content_element.vc_progress_bar .vc_general.vc_single_bar .vc_label_units {
    position: absolute; }
  @media (max-width: 480px) {
    .page-template-page-maintenance .vc_custom_heading {
      font-size: 35px !important; } }

.page-template-page-comingsoon #cms-main {
  margin-top: -140px; }
  .page-template-page-comingsoon .cms-newsletter form:before {
    color: #fff; }
  .page-template-page-comingsoon .cms-newsletter form .newsletter-email {
    border-bottom-color: #fff; }
    .page-template-page-comingsoon .cms-newsletter form .newsletter-email::-webkit-input-placeholder {
      color: #fff; }
    .page-template-page-comingsoon .cms-newsletter form .newsletter-email:-moz-placeholder {
      color: #fff; }
    .page-template-page-comingsoon .cms-newsletter form .newsletter-email::-moz-placeholder {
      color: #fff; }
    .page-template-page-comingsoon .cms-newsletter form .newsletter-email:-ms-input-placeholder {
      color: #fff; }
  .page-template-page-comingsoon #cms-footer-bottom {
    color: #fff; }

.break-row {
  clear: left;
  /* 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: 15px;
    padding-right: 15px; }
  #cms-header-top .widget {
    margin-top: 30px; }
  #cms-header-top .widget:first-child {
    margin-top: 0; }

.cms-header {
  z-index: 2;
  position: relative;
  /* Header inner */ }
  .cms-header .no-container {
    padding-left: 0;
    padding-right: 0; }
  .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 */
    /* Breaked out Menu */ }
  .cms-header.break-header .cms-header-hotline, .cms-header.break-header .cms-nav-extra .cms-header-popup, .cms-header.break-header .cms-nav-extra .cms-header-popup .header-icon, .cms-header.break-header div.cms-main-navigation > ul > li > a, .cms-header.break-header ul.cms-main-navigation > li > a {
    height: 70px;
    line-height: 70px; }

@media (min-width: 1200px) {
  /* Logo */
    .cms-header-inner2:not(.pull-none) {
      max-width: calc(100% - 243px) !important; } }

#cms-header-logo {
  width: 243px;
  max-width: 50%;
  height: 140px;
  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: 140px; }
  #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;
  /* 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: #fff;
    border-color: #fff; }
  .header-ontop .cms-header-hotline:hover span {
    color: #fff;
    border-color: #fff; }
  @media (min-width: 1201px) {
  .header-ontop .cms-nav-extra.has-extra .cms-header-popup:before {
    /* background: $menu_ontop_link_color;  */
    background: transparent; } }

.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: #282a2d;
    border-color: #282a2d; }
  .header-sticky .cms-header-hotline:hover span {
    color: #aeaeae;
    border-color: #aeaeae; }
  @media (min-width: 1201px) {
  .header-sticky .cms-nav-extra.has-extra .cms-header-popup:before {
    background: transparent; } }

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

.cms-nav-extra {
  /* Header Default */ }
  .cms-nav-extra .cms-header-popup {
    height: 140px;
    position: relative; }
  .cms-nav-extra .cms-header-popup .header-icon {
    height: 140px;
    display: table;
    float: left; }
  .cms-nav-extra .cms-header-popup .header-icon i {
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
    width: 50px;
    text-align: center;
    font-size: 25px;
    position: relative; }
    @media (max-width: 480px) {
      .cms-nav-extra .cms-header-popup .header-icon i {
        width: 40px; } }
    .cms-nav-extra .cms-header-popup .header-icon i .cart_total {
      position: absolute;
      top: 28%;
      left: 28px;
      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 */
      color: #fff;
      background-color: #282a2d;
      line-height: 13px;
      font-size: 8px;
      padding: 0 3px;
      font-family: Ropa Sans; }
  .cms-nav-extra .cms-header-popup .popup {
    display: none;
    width: 320px;
    position: absolute;
    top: 100%;
    z-index: 21;
    background: #fff;
    border: 1px solid #eee;
    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 */
          /* 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; } }
  .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: #282a2d; }
  @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 */
      /* 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: #282a2d; }
        .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: 375px;
    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 .cms-social {
      margin-top: 28px;
      padding-top: 40px;
      border-top: 1px solid #e1e1e1; }
      .cms-header-v6 #cms-header .cms-social a {
        font-size: 23px; }
  .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 */
    /* 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: 375px;
      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 */
      /* 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: #282a2d;
      background: #fff;
      z-index: 1;
      font-size: 200%;
      cursor: pointer; }
      .cms-header-v7 #cms-menu-mobile-close:hover {
        background: #282a2d;
        color: #fff; }
    .cms-header-v7 #cms-navigation {
      width: 375px;
      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 */
      /* 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 */
            /* 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 */
          /* 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 */
            /* 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 */
              /* 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 */
          /* 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;
  /* Badge Icon */ }

.menu-title {
  position: relative;
  display: table-cell;
  vertical-align: middle;
  line-height: normal; }
  .menu-title .title-attribute {
    display: block;
    text-transform: capitalize;
    font-style: italic; }
  .menu-title .menu-badge {
    position: relative;
    top: -10px;
    margin-left: 10px;
    background-color: #9f0909;
    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: #9f0909 transparent transparent #9f0909;
    position: absolute;
    bottom: -4px;
    left: 0; }

div.cms-main-navigation > ul, ul.cms-main-navigation {
  list-style: none;
  padding: 0;
  margin: 0;
  /* Header Ontop */ }
  div.cms-main-navigation > ul li, ul.cms-main-navigation li {
    position: relative;
    display: block;
    /* First Level */ }
  div.cms-main-navigation > ul li a, ul.cms-main-navigation li a {
    display: table;
    /* Has Children */ }
  div.cms-main-navigation > ul li.menu-item-has-children, ul.cms-main-navigation li.menu-item-has-children, div.cms-main-navigation > ul li.page_item_has_children, ul.cms-main-navigation li.page_item_has_children {
    /* Show Level 2+ */ }
  div.cms-main-navigation > ul li:hover > ul, 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 */
    /* OUTLINE RADIUS */ }
  div.cms-main-navigation > ul > li, ul.cms-main-navigation > li {
    margin-left: 38px;
    margin-right: 38px;
    float: left;
    overflow: hidden;
    /* Level 2+ */ }
  div.cms-main-navigation > ul > li > a, ul.cms-main-navigation > li > a {
    line-height: 140px;
    height: 140px;
    /* Hover State */ }
  div.cms-main-navigation > ul > li:hover, ul.cms-main-navigation > li:hover {
    overflow: visible;
    /* Active State */ }
  div.cms-main-navigation > ul > li:hover > a, ul.cms-main-navigation > li:hover > a {
    color: #aeaeae; }
  div.cms-main-navigation > ul > li.current-menu-item, ul.cms-main-navigation > li.current-menu-item, div.cms-main-navigation > ul > li.current_page_item, ul.cms-main-navigation > li.current_page_item, div.cms-main-navigation > ul > li.current-menu-ancestor, ul.cms-main-navigation > li.current-menu-ancestor, div.cms-main-navigation > ul > li.current_page_ancestor, ul.cms-main-navigation > li.current_page_ancestor, div.cms-main-navigation > ul > li:active, ul.cms-main-navigation > li:active, div.cms-main-navigation > ul > li:focus, ul.cms-main-navigation > li:focus {
    /* Has Childrent */ }
  div.cms-main-navigation > ul > li.current-menu-item > a, ul.cms-main-navigation > li.current-menu-item > a, div.cms-main-navigation > ul > li.current_page_item > a, ul.cms-main-navigation > li.current_page_item > a, div.cms-main-navigation > ul > li.current-menu-ancestor > a, ul.cms-main-navigation > li.current-menu-ancestor > a, div.cms-main-navigation > ul > li.current_page_ancestor > a, ul.cms-main-navigation > li.current_page_ancestor > a, div.cms-main-navigation > ul > li:active > a, ul.cms-main-navigation > li:active > a, div.cms-main-navigation > ul > li:focus > a, ul.cms-main-navigation > li:focus > a {
    color: #aeaeae; }
  div.cms-main-navigation > ul > li.menu-item-has-children > .cms-menu-toggle, ul.cms-main-navigation > li.menu-item-has-children > .cms-menu-toggle, div.cms-main-navigation > ul > li.page_item_has_children > .cms-menu-toggle, ul.cms-main-navigation > li.page_item_has_children > .cms-menu-toggle {
    display: none;
    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 */
    /* TRANSFORM STYLE */ }
    div.cms-main-navigation > ul > li.menu-item-has-children > .cms-menu-toggle i:before, ul.cms-main-navigation > li.menu-item-has-children > .cms-menu-toggle i:before, div.cms-main-navigation > ul > li.page_item_has_children > .cms-menu-toggle i:before, ul.cms-main-navigation > li.page_item_has_children > .cms-menu-toggle i:before {
      content: "\f107"; }
  div.cms-main-navigation > ul ul, ul.cms-main-navigation ul {
    padding: 33px 25px 40px;
    margin: 0;
    position: absolute;
    left: 0;
    top: 200%;
    z-index: 2;
    visibility: hidden;
    border: 1px solid #eee;
    min-width: 267.5px;
    background-color: #fff;
    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 */
    /* 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 */
    /* TRIPLE BORDERS */ }
  div.cms-main-navigation > ul ul li, ul.cms-main-navigation ul li {
    padding: 10px 20px;
    /* Sublevel touched right */ }
  div.cms-main-navigation > ul ul li > a, ul.cms-main-navigation ul li > a, div.cms-main-navigation > ul ul li > .cms-menu-toggle, ul.cms-main-navigation ul li > .cms-menu-toggle {
    color: #282a2d;
    /* Has Children */ }
    div.cms-main-navigation > ul ul li > a:hover, ul.cms-main-navigation ul li > a:hover, div.cms-main-navigation > ul ul li > .cms-menu-toggle:hover, ul.cms-main-navigation ul li > .cms-menu-toggle:hover {
      color: #aeaeae; }
  div.cms-main-navigation > ul ul li.menu-item-has-children, ul.cms-main-navigation ul li.menu-item-has-children, div.cms-main-navigation > ul ul li.page_item_has_children, ul.cms-main-navigation ul li.page_item_has_children {
    position: relative;
    /* Hover State */ }
    div.cms-main-navigation > ul ul li.menu-item-has-children > .cms-menu-toggle i:before, ul.cms-main-navigation ul li.menu-item-has-children > .cms-menu-toggle i:before, div.cms-main-navigation > ul ul li.page_item_has_children > .cms-menu-toggle i:before, ul.cms-main-navigation ul li.page_item_has_children > .cms-menu-toggle i:before {
      content: "\f105"; }
  div.cms-main-navigation > ul ul li:hover, ul.cms-main-navigation ul li:hover {
    /* Active State */ }
    div.cms-main-navigation > ul ul li:hover > a, ul.cms-main-navigation ul li:hover > a, div.cms-main-navigation > ul ul li:hover > .cms-menu-toggle, ul.cms-main-navigation ul li:hover > .cms-menu-toggle {
      color: #aeaeae;
      /* Show Level 3 */ }
    @media (min-width: 1200px) {
        div.cms-main-navigation > ul ul li:hover > ul, ul.cms-main-navigation ul li:hover > ul {
          top: 0;
          left: calc(100% + 0px); }
          div.cms-main-navigation > ul ul li:hover > ul.back, ul.cms-main-navigation ul li:hover > ul.back {
            right: calc(100% + 0px);
            left: auto; } }
  div.cms-main-navigation > ul ul li.current-menu-item, ul.cms-main-navigation ul li.current-menu-item, div.cms-main-navigation > ul ul li.current_page_item, ul.cms-main-navigation ul li.current_page_item, div.cms-main-navigation > ul ul li.current-menu-ancestor, ul.cms-main-navigation ul li.current-menu-ancestor, div.cms-main-navigation > ul ul li.current_page_ancestor, ul.cms-main-navigation ul li.current_page_ancestor, div.cms-main-navigation > ul ul li:active, ul.cms-main-navigation ul li:active, div.cms-main-navigation > ul ul li:focus, ul.cms-main-navigation ul li:focus, div.cms-main-navigation > ul ul li.actived, ul.cms-main-navigation ul li.actived {
    /* Level 3+ */ }
    div.cms-main-navigation > ul ul li.current-menu-item > a, ul.cms-main-navigation ul li.current-menu-item > a, div.cms-main-navigation > ul ul li.current_page_item > a, ul.cms-main-navigation ul li.current_page_item > a, div.cms-main-navigation > ul ul li.current-menu-ancestor > a, ul.cms-main-navigation ul li.current-menu-ancestor > a, div.cms-main-navigation > ul ul li.current_page_ancestor > a, ul.cms-main-navigation ul li.current_page_ancestor > a, div.cms-main-navigation > ul ul li:active > a, ul.cms-main-navigation ul li:active > a, div.cms-main-navigation > ul ul li:focus > a, ul.cms-main-navigation ul li:focus > a, div.cms-main-navigation > ul ul li.actived > a, ul.cms-main-navigation ul li.actived > a, div.cms-main-navigation > ul ul li.current-menu-item > .cms-menu-toggle, ul.cms-main-navigation ul li.current-menu-item > .cms-menu-toggle, div.cms-main-navigation > ul ul li.current_page_item > .cms-menu-toggle, ul.cms-main-navigation ul li.current_page_item > .cms-menu-toggle, div.cms-main-navigation > ul ul li.current-menu-ancestor > .cms-menu-toggle, ul.cms-main-navigation ul li.current-menu-ancestor > .cms-menu-toggle, div.cms-main-navigation > ul ul li.current_page_ancestor > .cms-menu-toggle, ul.cms-main-navigation ul li.current_page_ancestor > .cms-menu-toggle, div.cms-main-navigation > ul ul li:active > .cms-menu-toggle, ul.cms-main-navigation ul li:active > .cms-menu-toggle, div.cms-main-navigation > ul ul li:focus > .cms-menu-toggle, ul.cms-main-navigation ul li:focus > .cms-menu-toggle, div.cms-main-navigation > ul ul li.actived > .cms-menu-toggle, ul.cms-main-navigation ul li.actived > .cms-menu-toggle {
      color: #aeaeae; }
  @media (min-width: 1200px) {
        div.cms-main-navigation > ul ul li ul, ul.cms-main-navigation ul li ul {
          top: 0;
          left: calc(100% + 0px); }
          div.cms-main-navigation > ul ul li ul.back, ul.cms-main-navigation ul li ul.back {
            right: calc(100% + 0px);
            left: auto; } }
  @media (min-width: 1200px) {
      div.cms-main-navigation > ul ul.back, ul.cms-main-navigation ul.back {
        right: 0;
        left: auto; } }

.header-ontop .cms-main-navigation > ul > li {
  /* Header Sticky */ }
  .header-ontop .cms-main-navigation > ul > li.current-menu-item > a, .header-ontop .cms-main-navigation > ul > li.current_page_item > a, .header-ontop .cms-main-navigation > ul > li.current-menu-ancestor > a, .header-ontop .cms-main-navigation > ul > li.current_page_ancestor > a {
    color: #fff; }

.header-sticky .cms-main-navigation > ul > li {
  /* Mobile menu */ }
  .header-sticky .cms-main-navigation > ul > li.current-menu-item > a, .header-sticky .cms-main-navigation > ul > li.current_page_item > a, .header-sticky .cms-main-navigation > ul > li.current-menu-ancestor > a, .header-sticky .cms-main-navigation > ul > li.current_page_ancestor > a {
    color: #aeaeae; }

@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 */
    /* 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 */
    /* TRIPLE BORDERS */ } }

.mobile-nav {
  padding: 30px 20px;
  /* 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 */
    /* OUTLINE RADIUS */ }
  .mobile-nav .cms-main-navigation li {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%; }
  .mobile-nav .cms-main-navigation li > a {
    height: auto;
    padding: 5px 20px; }
    .mobile-nav .cms-main-navigation li > .cms-menu-toggle {
      display: block !important;
      margin: 0;
      top: 0 !important;
      -webkit-transform: translateY(0) !important;
      -khtml-transform: translateY(0) !important;
      -moz-transform: translateY(0) !important;
      -ms-transform: translateY(0) !important;
      -o-transform: translateY(0) !important;
      transform: translateY(0) !important;
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ }
  .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 {
    /* 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 {
      color: #aeaeae !important; }
  .mobile-nav .cms-main-navigation li ul {
    position: relative;
    border: none;
    max-height: 0;
    padding: 0 10px 0 25px;
    left: 0 !important;
    right: auto !important;
    max-width: 100%;
    width: 100% !important; }
    .mobile-nav .cms-main-navigation li ul:not(.submenu-open) {
      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 */
      /* OUTLINE RADIUS */
      /* grouped */ }
    .mobile-nav .cms-main-navigation li ul .group {
      padding-right: 15px; }
      .mobile-nav .cms-main-navigation li ul .group ul {
        padding-left: 0; }
    .mobile-nav .cms-main-navigation li ul > li > a {
      padding-left: 0; }
    .mobile-nav .cms-main-navigation li ul.submenu-open {
      max-height: 10000px;
      visibility: visible;
      top: 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 */
      /* 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;
        top: 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 */
        /* 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; }

li.has_full_width {
  position: static !important; }

.multicolumn {
  min-width: auto;
  overflow: hidden;
  /* max width 1199px */
  /* Dropdown Postision */ }
  .multicolumn > li {
    float: left; }
  .multicolumn.columns2 > li {
    width: 50%; }
  @media (max-width: 767px) {
      .multicolumn.columns2 > li {
        width: 100%; } }
  .multicolumn.columns3 > li {
    width: 33.333%; }
  @media (max-width: 767px) {
      .multicolumn.columns3 > li {
        width: 100%; } }
  .multicolumn.columns4 > li {
    width: 25%; }
  @media (max-width: 991px) {
      .multicolumn.columns4 > li {
        width: 50%; } }
  @media (max-width: 767px) {
      .multicolumn.columns4 > li {
        width: 100%; } }
  .multicolumn.columns5 {
    /* GROUP */ }
  .multicolumn.columns5 > li {
    width: 20%; }
  @media (max-width: 991px) {
      .multicolumn.columns5 > li {
        width: 50%; } }
  @media (max-width: 767px) {
      .multicolumn.columns5 > li {
        width: 100%; } }
  @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 > ul {
        position: static;
        left: auto !important;
        top: auto !important;
        visibility: visible;
        padding: 0;
        margin: 0;
        border: none;
        max-width: 100%;
        min-width: initial;
        width: 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 */
        /* OUTLINE RADIUS */ }
        .multicolumn .group > ul li {
          /* Level 3+ */
          padding-left: 0; }
          .multicolumn .group > ul li:hover ul {
            left: 100%; }
      .multicolumn .group > .cms-menu-toggle {
        display: none; } }
  ul.sub-menu.drop_to_right {
    right: 0;
    left: auto;
    /* 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 */
    /* TRANSFORM STYLE */ }

#cms-page-title-wrapper {
  position: relative;
  margin-bottom: 120px;
  padding-top: 164px;
  padding-bottom: 245px; }
  #cms-page-title-wrapper:not(.no-bg-color) {
    background-color: transparent; }
  #cms-page-title-wrapper:not(.no-bg-img) {
    background-image: url(../images/pagetitle/bg-pagetitle.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center bottom; }
  #cms-page-title-wrapper:before {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    display: block; }
  #cms-page-title-wrapper > div {
    padding-left: 15px;
    padding-right: 15px; }
  @media (min-width: 992px) {
      #cms-page-title-wrapper.layout7 #cms-breadcrumb {
        position: absolute;
        left: 0;
        bottom: 0;
        text-align: left; } }

#cms-page-title .page-title-text {
  padding: 0;
  margin: 0; }
  #cms-page-title .page-title-text.no-option {
    font-size: 74px;
    line-height: 81px;
    letter-spacing: -1px;
    font-style: normal;
    color: #fff; }
  #cms-page-title .page-title-text + #cms-breadcrumb {
    margin-top: 15px; }

#cms-page-subtitle .page-title-subtext {
  padding: 0;
  margin: 0;
  color: #fff;
  text-transform: initial;
  font-size: 115.4%;
  letter-spacing: 0.9px; }
  #cms-page-subtitle .page-title-subtext span {
    font-style: italic; }

#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: "/";
    padding: 0 10px; }
  #cms-breadcrumb ul.breadcrumbs li:last-child:after {
    display: none; }
  #cms-breadcrumb ul.breadcrumbs.no-option li {
    color: #fff; }
  #cms-breadcrumb ul.breadcrumbs.no-option a {
    color: #fff; }
    #cms-breadcrumb ul.breadcrumbs.no-option a:hover {
      color: #fff; }

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

.entry-media {
  position: relative;
  margin-bottom: 33px;
  overflow: hidden;
  /* Entry Header */ }
  .entry-media img {
    width: 100%; }
  .entry-media img[alt="Horizontal Featured Image"] {
    width: auto; }
  .entry-media > .entry-media {
    margin-bottom: 0;
    /* Entry Quote */ }
  .entry-media.entry-quote {
    padding-left: 20px;
    padding-right: 20px;
    /* Gallery item */ }
  .entry-media.gallery-grid {
    margin: -18px -15px; }
  .entry-media.gallery-grid .gallery-item {
    margin: 18px 0;
    display: block; }

.entry-header {
  margin-bottom: 17px;
  /* Entry Title */ }

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

.entry-socials-share-list {
  margin-left: -10px !important;
  margin-right: -10px !important;
  border-top: 1px solid #eee;
  padding-top: 55px;
  margin-top: 53px;
  /* Entry Meta */ }
  .entry-socials-share-list li {
    padding: 0 10px !important;
    text-transform: uppercase;
    letter-spacing: 0.663px; }
  .entry-socials-share-list li i {
    font-size: 88.23529%; }

.entry-meta {
  font-size: 88.23529%;
  font-style: italic;
  letter-spacing: 1.2px;
  color: #939393;
  /* Entry Content */ }
  .entry-meta a {
    color: #939393; }
  .entry-meta a:hover {
    color: #aeaeae; }
  .entry-meta.entry-meta-nav {
    text-transform: uppercase;
    color: #282a2d; }
  .entry-meta.entry-meta-nav .meta-title {
    min-width: 120px;
    display: inline-block; }
  .entry-meta.entry-meta-nav .post-date {
    text-transform: none;
    color: #aeaeae; }
  .entry-meta.entry-meta-nav li {
    margin-bottom: 15px; }
  .entry-meta.entry-meta-nav li:last-child {
    margin-bottom: 0; }
  .entry-meta.entry-meta-nav .details-share a {
    padding-right: 18px; }
  .entry-meta.entry-meta-nav .details-share a:last-child {
    padding-right: 0; }
  .entry-meta.entry-meta-nav .details-share a:hover {
    color: #282a2d; }

.entry-content {
  /* Entry 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-tags {
  margin-top: 15px;
  /* Entry Footer */ }

.entry-footer {
  margin-top: 25px;
  clear: both;
  /* POST FORMAT */ }
  .entry-footer:empty {
    display: none; }
  .entry-footer .entry-readmore + .entry-edit {
    margin-left: 30px; }

.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-top: 30px; }
  .entry-blog:first-child {
    margin-top: 0; }
  .entry-blog + .paging-navigation {
    margin-top: 60px; }

body {
  /**
 * Single Page 
*/ }
  body.blog .content-area .entry-blog:before, body.archive .content-area .entry-blog:before, body.search .content-area .entry-blog:before {
    content: "";
    display: block;
    margin: 0 15px 30px;
    border-top: 1px solid #eee; }
  body.blog .content-area .entry-blog:first-child:before, body.archive .content-area .entry-blog:first-child:before, body.search .content-area .entry-blog:first-child:before {
    display: none; }
  @media (min-width: 992px) {
        body.blog .content-area .entry-blog .entry-media, body.archive .content-area .entry-blog .entry-media, body.search .content-area .entry-blog .entry-media {
          margin-bottom: 0; } }

.single .entry-media {
  margin-bottom: 23px; }
  .single .entry-header {
    margin-bottom: 27px; }
  .single .entry-header .entry-title {
    letter-spacing: 0.9px; }
  .single .entry-header .entry-title + .entry-meta {
    margin-top: 10px;
    color: #282a2d;
    font-style: normal;
    font-size: 94.11765%; }
    .single .entry-header .entry-title + .entry-meta a {
      color: #282a2d; }
      .single .entry-header .entry-title + .entry-meta a:hover {
        color: #aeaeae; }
  .single .entry-header .entry-meta + .entry-title {
    margin-top: 5px; }
  .single .entry-related {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 50px; }
  .single .entry-author {
    margin-top: 53px;
    border-top: 1px solid #eee;
    padding-top: 72px;
    display: block;
    overflow: hidden;
    text-align: center; }
  .single .entry-author .author-avatar {
    float: left;
    width: 103px;
    margin-right: 35px;
    text-transform: uppercase; }
  .single .entry-author .author-avatar img {
    -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 */ }
  .single .entry-author .author-info {
    float: left;
    background: #f5f5f5;
    position: relative;
    color: #999;
    line-height: 158.82353%;
    min-height: 115px;
    padding: 16px 30px 20px;
    width: calc(100% - 138px); }
  .single .entry-author .author-info:before {
    content: "";
    display: block;
    position: absolute;
    left: -10px;
    top: calc(50% - 5px);
    border-style: solid;
    border-width: 5px;
    border-color: transparent #eee transparent transparent; }
  .single .entry-footer {
    margin-top: 53px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 55px 0; }
  .single #comments {
    margin-top: 56px;
    /* Custom Post Type */ }
  .single.single-portfolio .entry-media {
    margin-bottom: 30px; }
  .single.single-portfolio .entry-header {
    margin-bottom: 16px; }
  .single.single-portfolio .entry-content + .entry-meta {
    margin-top: 30px; }
  .single.single-portfolio .entry-meta {
    font-size: 17px; }
  .single.single-portfolio .entry-meta .detail-categories a {
    color: #282a2d; }
    .single.single-portfolio .entry-meta .detail-categories a:hover {
      color: #aeaeae; }

.comments-area, #comments {
  /* Page */ }
  .comments-area .comment-number, #comments .comment-number {
    text-transform: uppercase;
    margin-bottom: 45px;
    padding-bottom: 15px;
    border-bottom: 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; }
  .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 .author-avatar, #comments .author-avatar, .comments-area .comment_container, #comments .comment_container {
    position: relative;
    z-index: 1; }
  .comments-area .author-avatar img, #comments .author-avatar img, .comments-area .comment_container img, #comments .comment_container img {
    position: relative;
    z-index: 1;
    -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 */ }
  .comments-area .comment-wrap, #comments .comment-wrap, .comments-area .comment-text, #comments .comment-text {
    position: relative; }
  .comments-area .comment-wrap .entry-content, #comments .comment-wrap .entry-content, .comments-area .comment-text .entry-content, #comments .comment-text .entry-content {
    background: #f5f5f5;
    padding: 15px 20px 20px;
    position: relative;
    min-height: 60px; }
  .comments-area .comment-wrap .entry-content:before, #comments .comment-wrap .entry-content:before, .comments-area .comment-text .entry-content:before, #comments .comment-text .entry-content:before {
    content: "";
    display: block;
    position: absolute;
    left: -10px;
    top: 27px;
    border-style: solid;
    border-width: 5px;
    border-color: transparent #eee transparent transparent; }
  .comments-area .comment-wrap .comment-header, #comments .comment-wrap .comment-header, .comments-area .comment-text .comment-header, #comments .comment-text .comment-header {
    margin-top: 5px;
    margin-bottom: 22px;
    text-transform: uppercase; }
  .comments-area .comment-wrap .comment-author, #comments .comment-wrap .comment-author, .comments-area .comment-text .comment-author, #comments .comment-text .comment-author {
    margin: 0; }
  .comments-area .comment-wrap .comment-date, #comments .comment-wrap .comment-date, .comments-area .comment-text .comment-date, #comments .comment-text .comment-date {
    font-style: italic;
    font-size: 88.23529%;
    color: ;
    text-transform: none;
    margin-right: 15px;
    padding-top: 3px; }
  .comments-area .comment-wrap .comment-edit-link, #comments .comment-wrap .comment-edit-link, .comments-area .comment-text .comment-edit-link, #comments .comment-text .comment-edit-link, .comments-area .comment-wrap .comment-reply-link, #comments .comment-wrap .comment-reply-link, .comments-area .comment-text .comment-reply-link, #comments .comment-text .comment-reply-link {
    text-decoration: underline; }
  .comments-area .comment-wrap .comment-edit-link, #comments .comment-wrap .comment-edit-link, .comments-area .comment-text .comment-edit-link, #comments .comment-text .comment-edit-link {
    margin-left: 15px; }
  .comments-area .comment-wrap .entry-content, #comments .comment-wrap .entry-content, .comments-area .comment-text .entry-content, #comments .comment-text .entry-content {
    margin-bottom: 0; }
  @media (min-width: 992px) {
  .comments-area .comment-list ul.children, #comments .comment-list ul.children, .comments-area .commentlist ul.children, #comments .commentlist ul.children {
    margin-left: 70px;
    padding-left: 20px;
    padding-top: 30px;
    border-top: 1px solid #eee; }
    .comments-area .comment-list ul.children ul.children, #comments .comment-list ul.children ul.children, .comments-area .commentlist ul.children ul.children, #comments .commentlist ul.children ul.children {
      margin-left: 25px;
      padding-left: 0; }
      .comments-area .comment-list ul.children ul.children ul.children, #comments .comment-list ul.children ul.children ul.children, .comments-area .commentlist ul.children ul.children ul.children, #comments .commentlist ul.children ul.children ul.children {
        margin-left: 15px;
        padding-left: 0; }
  .comments-area .author-avatar, #comments .author-avatar, .comments-area .comment_container img, #comments .comment_container img {
    float: left;
    margin-top: 0;
    margin-right: 20px; }
  .comments-area .comment-wrap, #comments .comment-wrap, .comments-area .comment-text, #comments .comment-text {
    float: left;
    width: calc(100% - 95px); } }
  @media (max-width: 991px) {
  .comments-area, #comments {
    /* Respond */ }
    .comments-area .comment_container img, #comments .comment_container img {
      display: inherit;
      margin: 0 auto; }

    .comments-area .comment-wrap, #comments .comment-wrap, .comments-area .comment-text, #comments .comment-text {
      padding: 10px 15px 0; }
      .comments-area .comment-wrap .entry-content:before, #comments .comment-wrap .entry-content:before, .comments-area .comment-text .entry-content:before, #comments .comment-text .entry-content:before {
        left: calc(50% - 5px);
        top: -10px;
        border-color: transparent transparent #eee transparent; } }
  .comments-area .comment-respond, #comments .comment-respond {
    margin-top: 25px;
    padding-top: 23px;
    border-top: 1px solid #eee; }
  .comments-area .comment-respond .reply-title, #comments .comment-respond .reply-title {
    text-transform: uppercase;
    margin-bottom: 39px; }
  .comments-area .comment-respond .comment-form, #comments .comment-respond .comment-form {
    position: relative;
    padding-left: 95px; }
  .comments-area .comment-respond .comment-form .comment-form-avatar, #comments .comment-respond .comment-form .comment-form-avatar {
    position: absolute;
    left: 0;
    top: 0; }
  @media (max-width: 480px) {
      .comments-area .comment-respond .comment-form, #comments .comment-respond .comment-form {
        padding-left: 45px; }
        .comments-area .comment-respond .comment-form .comment-form-avatar, #comments .comment-respond .comment-form .comment-form-avatar {
          width: 35px; } }
  .comments-area .comment-respond .comment-form-comment, #comments .comment-respond .comment-form-comment {
    margin-bottom: 10px; }
  .comments-area .comment-respond .comment-form-author, #comments .comment-respond .comment-form-author, .comments-area .comment-respond .comment-form-email, #comments .comment-respond .comment-form-email, .comments-area .comment-respond .comment-form-url, #comments .comment-respond .comment-form-url {
    margin-bottom: 10px; }
  .comments-area .comment-respond textarea, #comments .comment-respond textarea, .comments-area .comment-respond input[type="text"], #comments .comment-respond input[type="text"] {
    border: 1px solid #eee;
    background-color: #f7f7f7;
    color: #777; }
  .comments-area .comment-respond .form-submit, #comments .comment-respond .form-submit {
    margin-top: 23px;
    margin-bottom: 0;
    position: relative;
    display: block;
    overflow: hidden; }
  .comments-area .comment-respond .form-submit:before, #comments .comment-respond .form-submit:before {
    position: absolute;
    right: 23px;
    top: 18px;
    content: "\f344";
    display: block;
    font-family: "dashicons";
    color: #fff; }
  .comments-area .comment-respond .form-submit #submit, #comments .comment-respond .form-submit #submit {
    padding-right: 55px; }
  .comments-area .comment-respond .form-submit:hover:before, #comments .comment-respond .form-submit:hover:before {
    color: #282a2d; }

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

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

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

.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: 15px;
  margin-bottom: 15px;
  max-width: 100%;
  text-align: left; }

.alignright {
  float: right;
  margin-left: 15px;
  max-width: 100%;
  text-align: right;
  margin-bottom: 15px; }

.aligncenter {
  margin: 0 auto 15px;
  max-width: 100%;
  text-align: center;
  /* Iframe, video, audio */ }

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: #282a2d;
  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 */
  /* 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 */
  /* Horizontal Align */
  width: 50px; }
  .carousel .carousel-control:hover {
    background: #282a2d;
    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 Media */ }
  .owl-carousel .owl-video-wrapper .owl-video-play-icon {
    width: 141px;
    height: 141px;
    margin-left: -70.5px;
    margin-top: -70.5px; }
  @media (max-width: 480px) {
    .owl-carousel .owl-video-wrapper .owl-video-play-icon {
      width: 70px;
      height: 70px;
      margin-left: -35px;
      margin-top: -35px;
      background-size: cover; } }
  .owl-carousel .owl-controls {
    margin-top: 0;
    text-align: center; }
  .owl-carousel .owl-controls .owl-nav > div {
    float: left;
    color: #bebebe;
    position: relative;
    background-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 */
    /* TRIPLE BORDERS */ }
    .owl-carousel .owl-controls .owl-nav > div:hover {
      color: #282a2d; }
    .owl-carousel .owl-controls .owl-nav > div i {
      width: 74px;
      height: 74px;
      line-height: 74px; }
  .owl-carousel .owl-controls .owl-nav .owl-prev:after {
    display: block;
    content: "";
    width: 1px;
    height: 33px;
    background: #bebebe;
    position: absolute;
    bottom: 20px;
    right: -0.5px;
    z-index: 1; }
  .owl-carousel .owl-controls .owl-nav + .owl-dots {
    margin-top: 20px; }
  .owl-carousel .owl-controls .owl-dots .owl-dot {
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-right: 10px;
    background-color: #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 */ }
    .owl-carousel .owl-controls .owl-dots .owl-dot:last-child {
      margin-right: 0; }
    .owl-carousel .owl-controls .owl-dots .owl-dot.active {
      background-color: #282a2d; }
  @media (min-width: 480px) {
  .owl-carousel.has-nav {
    padding-left: 100px; }
    .owl-carousel.has-nav.nav_right {
      padding-left: 0;
      padding-right: 100px; }
      .owl-carousel.has-nav.nav_right .owl-controls .owl-nav {
        right: 0;
        left: auto; }

    .owl-carousel.has-nav.black .owl-controls .owl-nav > div {
      color: #bebebe;
      background-color: #47494c; }
      .owl-carousel.has-nav.black .owl-controls .owl-nav > div:hover {
        color: #fff; }
  .owl-carousel .owl-controls .owl-nav {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 74px; }
    .owl-carousel .owl-controls .owl-nav i {
      height: 26px;
      width: 17px;
      font-size: 26px;
      overflow: hidden; }

    .owl-carousel .owl-controls .owl-nav .owl-prev:after {
      width: 33px;
      height: 1px;
      bottom: -0.5px;
      left: 20px;
      right: auto; }
  .owl-carousel.has-dots .owl-nav {
    bottom: 45px; } }
  @media (max-width: 480px) {
  .owl-carousel .owl-controls .owl-nav {
    display: inline-block;
    margin-top: 20px; }
    .owl-carousel .owl-controls .owl-nav i {
      -webkit-transform: rotate(-90deg);
      -khtml-transform: rotate(-90deg);
      -moz-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
      -o-transform: rotate(-90deg);
      transform: rotate(-90deg);
      /* BACKGROUND GRADIENT */
      /* TRANSFORM STYLE */ } }

.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 */
    /* 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 */
    /* TRANSFORM STYLE */ }

.btn, .btn-default, button, .button, input[type="submit"], .submit, .vc_inline-link, .cms-load-posts a {
  display: inline-block;
  background-color: #282a2d;
  color: #fff;
  font-size: 105.88235%;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  padding: 18px 25px;
  text-align: center;
  line-height: inherit;
  border: 1px solid #282a2d;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  /* BACKGROUND GRADIENT */
  -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 */
  /* TRIPLE BORDERS */
  /* Primary Button */ }
  .btn .icon, .btn-default .icon, button .icon, .button .icon, input[type="submit"] .icon, .submit .icon, .vc_inline-link .icon, .cms-load-posts a .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_inline-link.btn-alt, .cms-load-posts a.btn-alt {
    background: #fff;
    color: #282a2d; }
  .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_inline-link.btn-alt:hover, .cms-load-posts a.btn-alt: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_inline-link.btn-alt:active, .cms-load-posts a.btn-alt: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_inline-link.btn-alt:focus, .cms-load-posts a.btn-alt:focus {
    background: #282a2d;
    border-color: #282a2d;
    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_inline-link.btn-alt-white, .cms-load-posts a.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_inline-link.btn-alt-white:hover, .cms-load-posts a.btn-alt-white:hover {
    background: #fff;
    color: #282a2d;
    border-color: #fff; }
  .btn:hover, .btn-default:hover, button:hover, .button:hover, input[type="submit"]:hover, .submit:hover, .vc_inline-link:hover, .cms-load-posts a:hover, .btn:active, .btn-default:active, button:active, .button:active, input[type="submit"]:active, .submit:active, .vc_inline-link:active, .cms-load-posts a:active, .btn:focus, .btn-default:focus, button:focus, .button:focus, input[type="submit"]:focus, .submit:focus, .vc_inline-link:focus, .cms-load-posts a:focus {
    background: #fff;
    border-color: #282a2d;
    color: #282a2d; }
  .btn.btn-white, .btn-default.btn-white, button.btn-white, .button.btn-white, input[type="submit"].btn-white, .submit.btn-white, .vc_inline-link.btn-white, .cms-load-posts a.btn-white {
    background-color: #fff;
    color: #282a2d;
    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_inline-link.btn-white:hover, .cms-load-posts a.btn-white:hover {
    background-color: #282a2d;
    color: #fff; }
  .btn:before, .btn-default:before, button:before, .button:before, input[type="submit"]:before, .submit:before, .vc_inline-link:before, .cms-load-posts a:before {
    margin-right: 15px;
    font-size: 147.05882%;
    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_inline-link.btn-large, .cms-load-posts a.btn-large {
    padding-top: 23px;
    padding-bottom: 23px; }

.btn-primary {
  background-color: transparent;
  color: #282a2d;
  font-size: 80%;
  text-transform: uppercase;
  letter-spacing: 2.4px;
  padding: 9.5px 25px;
  text-align: center;
  display: inline-block;
  line-height: inherit;
  -webkit-border-radius: 0px;
  -khtml-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
  border-radius: 0px;
  /* BACKGROUND GRADIENT */
  -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 */
  /* TRIPLE BORDERS */ }
  .btn-primary:hover {
    background-color: #282a2d;
    border-color: #282a2d;
    color: #fff; }

.btn-block {
  display: block; }

.btn-group {
  margin: -2px 0; }
  .btn-group .btn {
    margin-top: 2px;
    margin-bottom: 2px; }

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

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

input, select, textarea {
  border: 1px solid #f6f6f6;
  background: #f6f6f6;
  color: #acacac;
  -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 */
  -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 */
  /* TRIPLE BORDERS */ }
  input:hover, select:hover, textarea:hover, input:active, select:active, textarea:active, input:focus, select:focus, textarea:focus {
    border-color: #aeaeae; }

input, textarea {
  padding: 12px 20px; }

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

select {
  height: 50px;
  padding: 0 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: 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 {
    margin-left: 10px; } }

.select2-container .select2-choice {
  padding: 12px 20px;
  overflow: hidden;
  border: 1px solid #f6f6f6;
  color: inherit;
  text-decoration: none;
  background: #f6f6f6;
  -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 */ }
  .select2-container .select2-choice .select2-arrow {
    height: calc(100% - 4px);
    width: 39px;
    background: url('../images/select-arrow.png') center center no-repeat;
    margin: 2px; }
  .select2-container .select2-choice .select2-arrow:before {
    display: none; }
  .select2-container .select2-choice .select2-arrow b {
    display: none; }
  .select2-container.select2-dropdown-open .select2-choice, .select2-container.select2-drop-above .select2-choice, .select2-container.select2-dropdown-open .select2-choices, .select2-container.select2-drop-above .select2-choices {
    border: 1px solid #f6f6f6;
    -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 */ }

.select2-drop-active {
  border: 1px solid #f6f6f6;
  /* Place Holder Text */ }

::-moz-placeholder {
  color: #a1a1a1;
  font-style: italic;
  font-size: 94.11765%; }

:-ms-input-placeholder {
  color: #a1a1a1;
  font-style: italic;
  font-size: 94.11765%; }

::-webkit-input-placeholder {
  color: #a1a1a1;
  font-style: italic;
  font-size: 94.11765%; }

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

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

.require, .required {
  color: red; }

.regular-color, .primary-color {
  color: #282a2d; }

.accent-color {
  color: #aeaeae; }

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

.regular-bg {
  background-color: #282a2d;
  color: #fff; }

.available {
  color: #7db701; }

.unavailable {
  color: red;
  /* HTML tag and Formating */
  /* Heading */ }

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  margin: 15px 0;
  font-weight: inherit;
  color: #282a2d; }
  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: #282a2d; }
  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: #aeaeae; }

h1, .h1 {
  /* 46px */
  font-size: 270.58824%;
  line-height: 120%; }

h2, .h2 {
  /* 46px */
  font-size: 211.76471%;
  line-height: 120%; }

h3, .h3 {
  /* 30px */
  font-size: 176.47059%;
  line-height: 120%; }

h4, .h4 {
  /* 22px */
  font-size: 129.41176%;
  line-height: 120%; }

h5, .h5 {
  /* 20px */
  font-size: 117.64706%;
  line-height: 120%; }

h6, .h6 {
  /* 17px */
  font-size: 100%;
  line-height: 141.17647%;
  /* link */ }

a {
  color: #282a2d;
  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 */
  /* TRIPLE BORDERS */
  /* small font */ }
  a:hover, a:active, a:focus {
    color: #aeaeae;
    text-decoration: none;
    outline: none; }
  a:active, a.active, a.actived {
    color: #aeaeae;
    text-decoration: none;
    outline: none; }

small, .small {
  font-size: 88.23529%;
  /* 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;
  /* Definition Lists */ }
  ul ul, ol ul, ul ol, ol ol {
    margin-left: 20px; }
  ul.list-unstyled, ol.list-unstyled {
    list-style: 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; }

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

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

blockquote, .blockquote {
  color: #282a2d;
  padding: 70px 0 0;
  margin: 0;
  line-height: 136.36364%;
  font-size: 129.41176%;
  font-style: normal;
  letter-spacing: 0.66px;
  /* Check list */ }
  blockquote:before, .blockquote:before {
    content: '“';
    display: block;
    clear: both;
    font-size: 374%;
    line-height: 1px;
    margin-bottom: -5px; }
  blockquote cite, .blockquote cite {
    text-transform: uppercase;
    font-style: normal;
    display: block;
    clear: both; }

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

.disable, .disabled, .unseclect, .unselected, .inactive {
  cursor: not-allowed;
  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 */
  /* OUTLINE RADIUS */
  /* Font style */ }

.italic, .font-italic {
  font-style: italic;
  /* Text Alignment */ }

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

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

.content-align-right, .text-right {
  text-align: right;
  /* loop-pagination */ }

.loop-pagination {
  margin: -5px 0; }
  .loop-pagination .page-numbers {
    min-width: 49px;
    height: 49px;
    line-height: 49px;
    white-space: nowrap;
    font-size: 18px;
    font-weight: 400;
    background: #aeaeae;
    color: #fff;
    display: inline-block;
    text-align: center;
    margin: 5px 6px 5px 0; }
  .loop-pagination .page-numbers:last-child {
    margin-right: 0; }
  .loop-pagination .page-numbers:hover {
    background: #282a2d; }
  .loop-pagination .page-numbers.dots {
    background: transparent;
    color: #999;
    min-width: inherit; }
  .loop-pagination span.page-numbers {
    background: #282a2d; }
  .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: #282a2d;
    color: #fff; }
  .loop-pagination.style2 span.page-numbers {
    background: #282a2d;
    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: #282a2d;
    line-height: 24px;
    height: 24px;
    margin: 8px 0; }
  .loop-pagination.style2 .next.page-numbers:hover {
    color: #aeaeae;
    border-color: #282a2d; }

.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 */
    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: #aeaeae; }

.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: #aeaeae; }
  .page-links a {
    background: #282a2d; }
  .page-links > span:not(.page-links-title) {
    background: #aeaeae; }

.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 */ }

.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 */ }

.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: 100px;
  /* Footer Top */ }
  #cms-footer.remove-margin-top {
    margin-top: 0 !important; }

#cms-footer-top {
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  /* Footer Bottom */ }
  #cms-footer-top .widget + .widget {
    margin-top: 18px; }
  #cms-footer-top .widget .wg-title {
    margin: 0 0 23px 0; }
  #cms-footer-top .widget .wg-title:after {
    display: none; }
  #cms-footer-top .widget ul.menu {
    /* Custom some widget layout */ }
  #cms-footer-top .widget ul.menu li {
    border-bottom: none;
    padding-bottom: 11px; }
    #cms-footer-top .widget ul.menu li:last-child {
      padding-bottom: 0; }
    #cms-footer-top .widget ul.menu li a {
      padding: 0;
      position: relative;
      -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 */
      /* TRIPLE BORDERS */ }
      #cms-footer-top .widget ul.menu li a:before {
        content: '+';
        position: absolute;
        left: 0;
        font-size: 200%;
        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 */
        /* OUTLINE RADIUS */ }
      #cms-footer-top .widget ul.menu li a:hover {
        padding-left: 30px;
        text-decoration: underline; }
        #cms-footer-top .widget ul.menu li a:hover: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 */
          /* OUTLINE RADIUS */ }
  #cms-footer-top .widget.widget_recent_entries a {
    font-size: 105.88235%; }
  #cms-footer-top .cms-social a {
    font-size: 120%; }
  @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: #282a2d;
  padding-top: 108px;
  padding-bottom: 105px; }
  #cms-footer-bottom .footer-logo {
    margin-bottom: 23px; }
  #cms-footer-bottom .cms-social a {
    font-size: 28px; }
  @media (max-width: 991px) {
  #cms-footer-bottom aside {
    margin-top: 40px; }
    #cms-footer-bottom aside:first-child, #cms-footer-bottom aside:empty {
      margin-top: 0; } }
  #cms-footer-bottom .not-footer-bottom aside.cms-social {
    margin-top: 50px; }

.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; }

ul.cms-filter-category {
  margin-left: -20px;
  margin-right: -20px;
  margin-bottom: 65px; }
  ul.cms-filter-category li {
    padding-left: 20px;
    padding-right: 20px; }
  ul.cms-filter-category a {
    font-size: 117.64706%;
    letter-spacing: -0.94px; }
  ul.cms-filter-category a:hover, ul.cms-filter-category a.active {
    color: #282a2d; }

.cms-grid-view-all {
  margin-top: 20px; }

.cms-grid.layout-1 {
  /* Layout 2 */ }
  .cms-grid.layout-1 .cms-grid-item .overlay {
    background: transparent; }
  .cms-grid.layout-1 .cms-grid-item .overlay .overlay-inner {
    padding: 0;
    text-align: right; }
    .cms-grid.layout-1 .cms-grid-item .overlay .overlay-inner .btn {
      padding-top: 23px;
      padding-bottom: 23px; }
      .cms-grid.layout-1 .cms-grid-item .overlay .overlay-inner .btn:hover {
        background-color: #fff;
        border-color: #fff; }
  .cms-grid.layout-2 .cms-grid-item {
    margin-bottom: 35px !important; }
  .cms-grid.layout-2 .entry-media {
    margin-bottom: 18px; }
  .cms-grid.layout-2 .entry-header .entry-title {
    margin-bottom: 2px; }
  .cms-grid.layout-2 .entry-meta {
    font-style: normal; }
  .cms-grid.layout-2 + .cms_pagination .cms-load-posts {
    margin-top: 17px; }

.cms-grid-item .entry-media {
  margin-bottom: 16px; }
  .cms-grid-item .entry-media .entry-media {
    margin-bottom: 0; }
  .cms-grid-item .entry-media .cms-grid-woo-addtocart-icon + .added_to_cart:before {
    content: "\e66e";
    font-family: 'Pe-icon-7-stroke'; }
  .cms-grid-item .entry-header {
    margin-bottom: 0; }
  .cms-grid-item .entry-header .entry-title {
    margin-bottom: 5px; }
  .cms-grid-item .entry-content {
    margin-top: 18px; }
  .cms-grid-item .cms-grid-readmore {
    margin-top: 15px; }
  .cms-grid-item .cms-grid-readmore a {
    margin-top: 10px; }
  .cms-grid-item.has-custom-bg {
    /* item large */ }
  .cms-grid-item.has-custom-bg .custom-bg {
    padding: 0 24px 16px; }
  .cms-grid-item.has-custom-bg.no-media .custom-bg {
    padding: 13px 24px 16px; }
  .cms-grid-item.has-custom-bg .type-product .custom-bg {
    padding-bottom: 36px; }
  .cms-grid-item.item-large .entry-title {
    font-size: 141.17647%;
    margin-bottom: 4px; }
  .cms-grid-item.item-large.has-custom-bg .custom-bg {
    padding: 17px 39px 46px; }
  @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; } }
  @media (max-width: 320px) {
 }

.cms-grid-masonry {
  /* CMS Carousel */ }

.cms-carousel {
  /* CMS Heading */ }
  .cms-carousel .entry-meta {
    font-size: inherit;
    font-style: normal;
    letter-spacing: 0;
    margin-bottom: 4px; }
  .cms-carousel .entry-header {
    margin-bottom: 7px; }
  .cms-carousel .price {
    color: #ac2020;
    font-size: 141.17647%;
    font-style: italic;
    /* Custom background */ }
  .cms-carousel .price ins {
    text-decoration: none; }
  .cms-carousel.has-custom-bg .custom-bg {
    padding: 0 25px 32px; }
  @media (min-width: 992px) {
    .cms-carousel[id*="cms-carousel"], .cms-carousel[id^="cms-carousel"] {
      padding-left: 0;
      overflow: visible; }
      .cms-carousel[id*="cms-carousel"] .owl-controls .owl-nav, .cms-carousel[id^="cms-carousel"] .owl-controls .owl-nav {
        left: -100px; }
      .cms-carousel[id*="cms-carousel"].nav-right .owl-controls .owl-nav, .cms-carousel[id^="cms-carousel"].nav-right .owl-controls .owl-nav {
        left: auto;
        right: -100px; } }

.cms-heading-wrap {
  /* CMS Single Fancy Box */ }
  .cms-heading-wrap .cms-heading {
    margin-bottom: 23px; }
  .cms-heading-wrap .cms-heading:after {
    content: "";
    display: block;
    margin-top: 32px;
    width: 60px;
    height: 1px;
    background-color: #282a2d; }
  .cms-heading-wrap .cms-sub-heading {
    padding: 0;
    margin: 0; }
  .cms-heading-wrap .cms-sub-heading:empty {
    display: none; }
  .cms-heading-wrap .signature.text span {
    color: #282a2d;
    font-size: 300%;
    display: inline-block;
    line-height: 1;
    -webkit-transform: rotate(-10deg) skew(0, -10deg);
    -khtml-transform: rotate(-10deg) skew(0, -10deg);
    -moz-transform: rotate(-10deg) skew(0, -10deg);
    -ms-transform: rotate(-10deg) skew(0, -10deg);
    -o-transform: rotate(-10deg) skew(0, -10deg);
    transform: rotate(-10deg) skew(0, -10deg);
    /* BACKGROUND GRADIENT */
    /* Layout 2 */ }
  .cms-heading-wrap.layout2 {
    /* Color Mode */ }
  @media (min-width: 992px) {
      .cms-heading-wrap.layout2 .cms-heading {
        margin-bottom: 0; } }
  .cms-heading-wrap.white .cms-heading, .cms-heading-wrap.white .cms-sub-heading {
    color: #fff; }
  .cms-heading-wrap.white .cms-heading:after {
    background-color: #fff; }
  .cms-heading-wrap.text-right .cms-heading:after {
    margin-left: calc(100% - 60px); }
  .cms-heading-wrap.text-center .cms-heading:after {
    margin-left: auto;
    margin-right: auto; }

.cms-single-fancybox {
  /* CMS Team */ }
  .cms-single-fancybox .cms-fancy-icon {
    font-size: 45px;
    float: left; }
  .cms-single-fancybox .cms-fancy-icon + .cms-fancy-content {
    padding-left: 65px; }
  .cms-single-fancybox .cms-fancybox-title {
    font-size: 164.70588%;
    margin: 0 0 8px 0; }
  .cms-single-fancybox .cms-fancybox-media {
    position: relative;
    margin-bottom: 15px; }
  .cms-single-fancybox .cms-fancybox-desc {
    letter-spacing: 1.2px;
    color: #939393; }
  .cms-single-fancybox .cms-fancybox-foot {
    margin-top: 15px;
    /* Content Align */ }
  .cms-single-fancybox.text-right .cms-fancy-icon {
    float: right; }
  .cms-single-fancybox.text-right .cms-fancy-icon + .cms-fancy-content {
    padding-right: 65px; }
  .cms-single-fancybox.text-center .cms-fancy-icon {
    float: none; }
  .cms-single-fancybox.text-center .cms-fancy-icon + .cms-fancy-content {
    padding-left: 0; }

.cms-team-wrap {
  /* CMS Clients */ }
  .cms-team-wrap .cms-team-item {
    background: #fff; }
  .cms-team-wrap .cms-team-media {
    display: block;
    overflow: hidden;
    margin-bottom: 29px; }
  .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 {
    padding: 0 30px 35px; }
  .cms-team-wrap h5 {
    margin: 0;
    font-size: 147.05882%; }
  .cms-team-wrap .position {
    margin-top: -1px; }
  .cms-team-wrap .description {
    margin-top: 15px; }

.cms-clients-wrap {
  /* CMS Testimonial */ }
  .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; }

.cms-testimonial-wrap {
  /* CMS Videos */ }
  .cms-testimonial-wrap .cms-carousel-item {
    background-color: #fff;
    padding: 55px 25px 60px; }
  .cms-testimonial-wrap .cms-carousel-item .author-avatar img {
    -webkit-transform-style: inherit;
    -khtml-transform-style: inherit;
    -moz-transform-style: inherit;
    -ms-transform-style: inherit;
    -o-transform-style: inherit;
    transform-style: inherit;
    /* BACKGROUND GRADIENT */ }
  .cms-testimonial-wrap .description {
    font-size: 123.52941%;
    line-height: 133.33333%;
    color: #7f7f7f; }
  .cms-testimonial-wrap .author-name {
    font-size: 105.88235%;
    text-transform: uppercase;
    color: #282a2d;
    margin-bottom: 3px;
    margin-top: 15px; }
  .cms-testimonial-wrap .author-position {
    font-size: 105.88235%;
    color: #a1a1a1;
    /* Color Mode */ }
  .cms-testimonial-wrap.black .cms-carousel-item {
    background-color: #282a2d; }
  .cms-testimonial-wrap.black .author-name {
    color: #fff; }
  @media (min-width: 480px) {
  .cms-testimonial-wrap .author-avatar {
    float: left;
    padding-left: 10px;
    display: inline-block;
    padding-top: 5px;
    /* Content Align */ }
    .cms-testimonial-wrap .author-avatar + .cms-testimonial-content {
      padding-left: 115px; }
  .cms-testimonial-wrap.text-center .author-avatar {
    float: none;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    margin-bottom: 10px; }
    .cms-testimonial-wrap.text-center .author-avatar + .cms-testimonial-content {
      padding-left: 0; }
  .cms-testimonial-wrap.text-right .author-avatar {
    float: right; }
    .cms-testimonial-wrap.text-right .author-avatar + .cms-testimonial-content {
      padding-right: 115px;
      padding-left: 0; } }
  @media (max-width: 479px) {
  .cms-testimonial-wrap .author-avatar {
    display: inline-block;
    float: none; } }

.cms-video-wrap {
  /* CMS Progress */ }
  @media (min-width: 480px) {
  .cms-video-wrap .cms-el-title {
    text-align: center; }
  .cms-video-wrap .owl-carousel {
    padding-right: 100px;
    padding-left: 0; }
    .cms-video-wrap .owl-carousel .owl-controls .owl-nav {
      left: auto;
      right: 0;
      bottom: auto;
      top: 41.66667%; } }
    @media (min-width: 480px) and (max-width: 767px) {
      .cms-video-wrap .owl-carousel .owl-controls .owl-nav {
        top: auto;
        bottom: 0; } }
  @media (min-width: 992px) {
  .cms-video-wrap {
    margin-left: -15px;
    margin-right: -15px; }
    .cms-video-wrap .cms-el-title {
      padding: 0;
      margin: 0;
      height: 100px;
      position: absolute;
      top: 0;
      left: 0;
      letter-spacing: 4.8px;
      -webkit-transform: rotate(-90deg) translate(-80%,-50%);
      -khtml-transform: rotate(-90deg) translate(-80%,-50%);
      -moz-transform: rotate(-90deg) translate(-80%,-50%);
      -ms-transform: rotate(-90deg) translate(-80%,-50%);
      -o-transform: rotate(-90deg) translate(-80%,-50%);
      transform: rotate(-90deg) translate(-80%,-50%);
      /* BACKGROUND GRADIENT */ }

    .cms-video-wrap .owl-carousel {
      padding-left: 100px; } }

.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: #282a2d;
    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 */
    -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 */
    /* 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: #282a2d;
    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-head {
    margin-bottom: 10px; }
  .cms-counter-wraper .cms-counter-body .cms-icon {
    font-size: 280%;
    margin-bottom: 33px; }
  .cms-counter-wraper .cms-counter-body .cms-counter {
    font-size: 423.52941%;
    margin: 0 0 -15px;
    line-height: 130%; }
  .cms-counter-wraper .cms-counter-body .cms-counter .prefix {
    padding-right: 10px; }
  .cms-counter-wraper .cms-counter-body .cms-counter .suffix {
    padding-left: 10px; }
  .cms-counter-wraper .cms-counter-body .cms-counter .prefix:empty, .cms-counter-wraper .cms-counter-body .cms-counter .suffix:empty {
    display: none; }
  .cms-button-wrapper {
    /* CMS CountDown */ }
  .cms-button-wrapper > a {
    position: relative; }
  .cms-button-wrapper a.simple span {
    text-decoration: underline; }
  .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: 145px;
    height: 145px;
    margin: 1.5px;
    padding: 46px 10px 0;
    background-color: #282a2d;
    color: #fff; }
  .cms-countdown-bar > div > div {
    font-size: 280%;
    font-weight: 700; }
  .cms-countdown-bar > div > span {
    font-size: 80%;
    display: block;
    padding-top: 16px;
    text-transform: uppercase; }
  .cms-countdown-bar.white > div {
    background-color: #fff;
    color: #282a2d !important; }

.cms-pricing {
  background: #fff;
  padding-bottom: 50px;
  -webkit-box-shadow: 0px 0px 50px #f4f4f4;
  -khtml-box-shadow: 0px 0px 50px #f4f4f4;
  -moz-box-shadow: 0px 0px 50px #f4f4f4;
  -ms-box-shadow: 0px 0px 50px #f4f4f4;
  -o-box-shadow: 0px 0px 50px #f4f4f4;
  box-shadow: 0px 0px 50px #f4f4f4;
  /* BACKGROUND GRADIENT */
  /* CMS Slider Carousel */ }
  .cms-pricing .pricing-header {
    position: relative;
    padding: 34px 15px 20px 15px; }
  .cms-pricing .pricing-header img {
    width: 100%; }
  .cms-pricing .pricing-header .pricing-title {
    font-size: 141.17647%;
    margin: 0 0 15px 0; }
  .cms-pricing .pricing-header .pricing-title i {
    margin-right: 15px; }
    .cms-pricing .pricing-header .pricing-title i:not(.visible) {
      display: none; }
  .cms-pricing .pricing-image {
    width: 100%;
    margin-bottom: 30px; }
  .cms-pricing .unit-price {
    font-size: 300%; }
  .cms-pricing ul.pricing-feature {
    padding: 0 15px; }
  .cms-pricing ul.pricing-feature li {
    list-style: none;
    padding-bottom: 26px; }
  .cms-pricing .pricing-btn {
    white-space: nowrap; }
  .cms-pricing:not(.featured) .pricing-btn {
    margin-top: 18px;
    position: absolute;
    left: 50%;
    -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 */
    /* Featured */ }
  .cms-pricing.featured {
    background: #282a2d;
    color: #fff;
    padding-bottom: 30px; }
  .cms-pricing.featured .pricing-header {
    padding-top: 42px;
    padding-bottom: 32px; }
  .cms-pricing.featured .pricing-title {
    color: #fff; }
  .cms-pricing.featured .pricing-image {
    margin-bottom: 41px; }
  .cms-pricing.featured .pricing-btn {
    margin-top: 9px; }

.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 */
    /* 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: #282a2d;
    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: #aeaeae; }
  @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: #282a2d;
    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: #aeaeae;
    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: #282a2d; }
  .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 */ }
  .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 NewsLetter */ }
  .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 */
    /* Spin */ }
  .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 */
    background-color: #fff;
    color: #282a2d; }
  .cms-popup-video > a:hover {
    text-decoration: underline; }

.sidebar-area .widget, .wpb_widgetised_column .widget {
  margin-bottom: 35px; }
  .sidebar-area .widget:last-child, .wpb_widgetised_column .widget:last-child {
    margin-bottom: 0; }
  .sidebar-area .widget.widget_cms_widget_recent_post, .wpb_widgetised_column .widget.widget_cms_widget_recent_post {
    margin-bottom: 47px; }
  .sidebar-area .widget.widget_newsletterwidget, .wpb_widgetised_column .widget.widget_newsletterwidget {
    background-color: #f8f8f8;
    padding: 50px 30px 55px; }
  .sidebar-area .widget.widget_newsletterwidget .wg-title, .wpb_widgetised_column .widget.widget_newsletterwidget .wg-title {
    margin-bottom: 35px; }
  .sidebar-area .widget.widget_newsletterwidget .newsletter-widget, .wpb_widgetised_column .widget.widget_newsletterwidget .newsletter-widget {
    margin-top: 25px; }
    .sidebar-area .widget.widget_newsletterwidget .newsletter-widget form input.newsletter-email, .wpb_widgetised_column .widget.widget_newsletterwidget .newsletter-widget form input.newsletter-email {
      background-color: #fff;
      color: #aeaeae;
      margin-bottom: 10px;
      padding-left: 15px; }
      .sidebar-area .widget.widget_newsletterwidget .newsletter-widget form input.newsletter-submit, .wpb_widgetised_column .widget.widget_newsletterwidget .newsletter-widget form input.newsletter-submit {
        min-width: 140px; }

.widget > ul:not(.cms-social) {
  padding: 0;
  margin: 0;
  list-style: none; }

.wg-title {
  margin: 0 0 27px 0;
  /* Menu */ }

.widget_nav_menu, .widget_pages, .widget_categories, .widget_archive, .widget_meta, .widget_product_categories {
  /* Recenter Post */ }
  .widget_nav_menu .screen-reader-text, .widget_pages .screen-reader-text, .widget_categories .screen-reader-text, .widget_archive .screen-reader-text, .widget_meta .screen-reader-text, .widget_product_categories .screen-reader-text {
    display: none; }
  .widget_nav_menu ul, .widget_pages ul, .widget_categories ul, .widget_archive ul, .widget_meta ul, .widget_product_categories ul {
    list-style: none; }
  .widget_nav_menu ul li, .widget_pages ul li, .widget_categories ul li, .widget_archive ul li, .widget_meta ul li, .widget_product_categories ul li {
    position: relative;
    color: #aeaeae;
    border-bottom: 1px solid #f6f6f6; }
  .widget_nav_menu ul li a, .widget_pages ul li a, .widget_categories ul li a, .widget_archive ul li a, .widget_meta ul li a, .widget_product_categories ul li a {
    position: relative;
    display: inline-block;
    color: #aeaeae;
    padding: 9px 0 8px 20px; }
    .widget_nav_menu ul li a:hover, .widget_pages ul li a:hover, .widget_categories ul li a:hover, .widget_archive ul li a:hover, .widget_meta ul li a:hover, .widget_product_categories ul li a:hover {
      color: #282a2d; }
  .widget_nav_menu ul li.current-cat > a, .widget_pages ul li.current-cat > a, .widget_categories ul li.current-cat > a, .widget_archive ul li.current-cat > a, .widget_meta ul li.current-cat > a, .widget_product_categories ul li.current-cat > a, .widget_nav_menu ul li.current-cat > .count, .widget_pages ul li.current-cat > .count, .widget_categories ul li.current-cat > .count, .widget_archive ul li.current-cat > .count, .widget_meta ul li.current-cat > .count, .widget_product_categories ul li.current-cat > .count {
    color: #282a2d; }
    .widget_nav_menu ul li.current-cat > a:before, .widget_pages ul li.current-cat > a:before, .widget_categories ul li.current-cat > a:before, .widget_archive ul li.current-cat > a:before, .widget_meta ul li.current-cat > a:before, .widget_product_categories ul li.current-cat > a:before, .widget_nav_menu ul li.current-cat > .count:before, .widget_pages ul li.current-cat > .count:before, .widget_categories ul li.current-cat > .count:before, .widget_archive ul li.current-cat > .count:before, .widget_meta ul li.current-cat > .count:before, .widget_product_categories ul li.current-cat > .count:before {
      border-color: transparent transparent transparent #282a2d; }
  .widget_nav_menu ul ul, .widget_pages ul ul, .widget_categories ul ul, .widget_archive ul ul, .widget_meta ul ul, .widget_product_categories ul ul {
    margin: 0; }
  .widget_nav_menu ul ul li, .widget_pages ul ul li, .widget_categories ul ul li, .widget_archive ul ul li, .widget_meta ul ul li, .widget_product_categories ul ul li {
    /* Level 3+ */ }
    .widget_nav_menu ul ul li a, .widget_pages ul ul li a, .widget_categories ul ul li a, .widget_archive ul ul li a, .widget_meta ul ul li a, .widget_product_categories ul ul li a {
      margin-left: 35px; }
    .widget_nav_menu ul ul li a:before, .widget_pages ul ul li a:before, .widget_categories ul ul li a:before, .widget_archive ul ul li a:before, .widget_meta ul ul li a:before, .widget_product_categories ul ul li a:before {
      content: "";
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      left: 0;
      top: 17px;
      border-style: solid;
      border-width: 5px;
      border-color: transparent transparent transparent #aeaeae; }
    .widget_nav_menu ul ul li:first-child, .widget_pages ul ul li:first-child, .widget_categories ul ul li:first-child, .widget_archive ul ul li:first-child, .widget_meta ul ul li:first-child, .widget_product_categories ul ul li:first-child {
      border-top: 1px solid #f6f6f6; }
    .widget_nav_menu ul ul li:last-child, .widget_pages ul ul li:last-child, .widget_categories ul ul li:last-child, .widget_archive ul ul li:last-child, .widget_meta ul ul li:last-child, .widget_product_categories ul ul li:last-child {
      border-bottom: 0; }
    .widget_nav_menu ul ul li ul li a, .widget_pages ul ul li ul li a, .widget_categories ul ul li ul li a, .widget_archive ul ul li ul li a, .widget_meta ul ul li ul li a, .widget_product_categories ul ul li ul li a {
      margin-left: 45px; }
  .widget_nav_menu ul ul ul, .widget_pages ul ul ul, .widget_categories ul ul ul, .widget_archive ul ul ul, .widget_meta ul ul ul, .widget_product_categories ul ul ul {
    margin-left: 10px; }
  .widget_nav_menu ul.product-categories > li > a, .widget_pages ul.product-categories > li > a, .widget_categories ul.product-categories > li > a, .widget_archive ul.product-categories > li > a, .widget_meta ul.product-categories > li > a, .widget_product_categories ul.product-categories > li > a {
    padding-left: 0; }

.widget_recent_entries {
  /* Search */ }
  .widget_recent_entries li {
    padding: 13.5px 0; }
  .widget_recent_entries li:first-child {
    padding-top: 0; }
  .widget_recent_entries li:last-child {
    padding-bottom: 0; }
  .widget_recent_entries a {
    display: block; }
  .widget_recent_entries .post-date {
    display: block;
    font-style: italic;
    font-size: 88.23529%; }

.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;
    color: #333;
    font-size: 25px;
    line-height: 1;
    padding: 0 10px 0 0; }

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

.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: 88.23529%; }

.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: #aeaeae; }
  .widget_rss cite {
    color: #282a2d; }

.tagcloud a {
  padding: 10px 20px;
  margin: 5px 6px 5px 0;
  display: inline-block;
  color: #999;
  background: #f5f5f5;
  letter-spacing: 0.75px;
  font-size: inherit !important;
  /* CMS Recent Post */ }
  .tagcloud a:hover {
    background: #282a2d;
    color: #fff; }
  .tagcloud a:last-child {
    margin-right: 0; }

.cms-recent-post .cms-recent-item {
  padding: 0;
  margin-bottom: 28px; }
  .cms-recent-post .cms-recent-item:last-child {
    margin-bottom: 0; }
  .cms-recent-post .entry-media {
    margin: 0 10px 0 0;
    max-width: 99px; }
  .cms-recent-post .entry-media img {
    margin-bottom: 0; }
  .cms-recent-post .entry-media + .item-content {
    padding-left: 109px; }
  .cms-recent-post .entry-title {
    margin-top: 0;
    margin-bottom: 5px; }
  .cms-recent-post .entry-desc, .cms-recent-post .description {
    margin-top: 5px; }

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

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

.clear {
  clear: both; }

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 top;
  background-repeat: no-repeat;
  position: relative; }
  .vc_row[class*="vc_custom_"] {
    background-position: center top !important;
    background-repeat: no-repeat !important;
    background-size: 100%; }
  .vc_row[data-vc-full-width] {
    overflow: visible !important; }
  .vc_row.vc_parallax {
    overflow: hidden !important;
    /* Full width stretch content */ }
  .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:not(.vc_row-no-padding)[data-vc-stretch-content="true"] {
    /* Custom Class */ }
  @media (min-width: 1199px) {
    .vc_row:not(.vc_row-no-padding)[data-vc-stretch-content="true"] {
      padding-left: 55px;
      padding-right: 55px; } }
  .vc_row.services-counter .vc_column-inner {
    border-right: 1px solid #e2e2e2; }
  .vc_row.services-counter .wpb_column:last-child .vc_column-inner {
    border-right: 0; }
  @media (max-width: 767px) {
    .vc_row.services-counter .wpb_column:nth-child(2n) .vc_column-inner {
      border-right: 0; } }
  .vc_row.about-progress {
    background-position: right center !important;
    background-repeat: no-repeat !important;
    background-size: auto 100% !important;
    /* row ontop */ }
  .vc_row.row-ontop {
    position: relative;
    z-index: 1;
    /* add box shadow */ }
  .vc_row.has-box-shadow {
    -webkit-box-shadow: 0 0 95px #999;
    -khtml-box-shadow: 0 0 95px #999;
    -moz-box-shadow: 0 0 95px #999;
    -ms-box-shadow: 0 0 95px #999;
    -o-box-shadow: 0 0 95px #999;
    box-shadow: 0 0 95px #999;
    /* BACKGROUND GRADIENT */
    /* BOX SIZING */ }

.wpb_column.full-height .wpb_wrapper {
  height: 100vh;
  display: block; }
  .wpb_column.has-box-shadow {
    -webkit-box-shadow: 0 0 95px #999;
    -khtml-box-shadow: 0 0 95px #999;
    -moz-box-shadow: 0 0 95px #999;
    -ms-box-shadow: 0 0 95px #999;
    -o-box-shadow: 0 0 95px #999;
    box-shadow: 0 0 95px #999;
    /* BACKGROUND GRADIENT */
    /* BOX SIZING */ }
  @media (min-width: 992px) {
  .wpb_column.no-padding-md .vc_column-inner {
    padding-left: 0;
    padding-right: 0;
    letter-spacing: -1.41px; } }

.wpb_content_element {
  /* Custom Heading */ }
  .wpb_content_element.wpb_text_column ul {
    margin-left: 45px;
    list-style-position: outside;
    list-style-image: url('../images/list-dist.png'); }
  .wpb_content_element.wpb_text_column ul li {
    padding-left: 13px;
    padding-bottom: 7px; }

.vc_custom_heading {
  margin: 0;
  /* TTA - Accordion */ }

.vc_tta-container {
  overflow: hidden; }
  .vc_tta-container .vc_tta-panel .vc_tta-controls-icon-circle-arrow {
    width: 25px;
    height: 25px;
    font-size: 25px; }
  .vc_tta-container .vc_tta-panel.vc_active .vc_tta-controls-icon-circle-arrow:before {
    content: "\e695"; }
  .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 {
    border: 2px solid #f4f4f4;
    background: #f4f4f4;
    -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 */
    /* 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: #fff;
      border-color: #464542; }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title {
    font-size: 17px;
    color: #aeaeae;
    /* Hover / Active tab */ }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title > a {
      color: #aeaeae;
      padding-top: 16.5px;
      padding-bottom: 16.5px;
      padding-left: 18px; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-panel-title > a:hover {
      color: #282a2d; }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_active .vc_tta-panel-heading {
    border-color: #464542;
    background: #fff; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_active .vc_tta-panel-heading .vc_tta-panel-title > a {
      color: #282a2d; }
    .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_active .vc_tta-panel-body {
      background: #464542;
      color: #fff;
      padding-bottom: 25px; }
  .vc_tta-container .vc_tta-accordion.vc_tta-style-theme .vc_tta-controls-icon-position-right .vc_tta-controls-icon {
    right: 6px; }

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

.rev_slider_wrapper .tp-dottedoverlay {
  z-index: 1000; }

.tparrows.hender {
  width: 75px;
  height: 73px;
  background: #fff; }
  .tparrows.hender:before {
    font-family: "dashicons";
    font-size: 25px;
    color: #aeaeae;
    line-height: 73px; }
  .tparrows.hender.tp-leftarrow:before {
    content: "\f340"; }
  .tparrows.hender.tp-rightarrow:before {
    content: "\f344"; }
  .tparrows.hender.tp-rightarrow:after {
    display: block;
    content: "";
    height: 33px;
    width: 1px;
    position: absolute;
    left: -0.5px;
    bottom: 20px;
    background: #bebebe;
    z-index: 1; }
  .tparrows.hender:hover:before {
    color: #282a2d; }

.beside_slider:not(.style2) {
  text-transform: uppercase;
  font-size: 24px;
  color: #282a2d;
  line-height: 24px; }
  .beside_slider:not(.style2) .cms-rev-counter {
    display: block;
    line-height: normal;
    background: #fff;
    width: 144px;
    height: 144px;
    letter-spacing: 0;
    padding-top: 45px;
    text-align: center !important; }
  @media (max-width: 1280px) {
    .beside_slider:not(.style2) .cms-rev-counter {
      float: left; } }
  .beside_slider:not(.style2) .current {
    font-size: 60px;
    line-height: 60px;
    color: #282a2d; }
  .beside_slider:not(.style2) .total {
    font-size: 24px;
    line-height: 24px;
    color: #bfbfbf;
    margin-top: -50px; }
  .beside_slider:not(.style2) .total:before {
    content: "/";
    display: inline-block; }
  .beside_slider:not(.style2) .title {
    padding: 60px 30px;
    background: #fff;
    display: block;
    letter-spacing: 3.84px;
    position: relative;
    float: left; }
  @media (min-width: 1280px) {
    .beside_slider:not(.style2) .title {
      padding: 60px 146px 60px 430px;
      margin-top: -144px;
      float: none;
      -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 */
      -webkit-transform-origin: 0 0 0;
      -khtml-transform-origin: 0 0 0;
      -moz-transform-origin: 0 0 0;
      -ms-transform-origin: 0 0 0;
      -o-transform-origin: 0 0 0;
      transform-origin: 0 0 0;
      /* BACKGROUND GRADIENT */ }
      .beside_slider:not(.style2) .title:before {
        display: block;
        content: "";
        height: 1px;
        background: #e2e2e2;
        left: 0;
        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 */
        /* Horizontal Align */
        width: 377px; } }
  @media (max-width: 1280px) {
  .beside_slider:not(.style2) {
    display: none !important; } }

.beside_slider.style2 {
  background: #fff;
  padding: 30px 25px 30px 30px;
  min-width: 80%;
  margin: 0 auto;
  text-transform: uppercase;
  font-size: 24px;
  color: #282a2d;
  line-height: 24px;
  overflow-y: hidden;
  -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 */
  /* Contact Form */ }
  .beside_slider.style2 .title {
    padding: 25px 160px 24px 54px;
    display: inline-block;
    letter-spacing: 3.84px; }
  .beside_slider.style2 .arrow-wrap {
    float: right; }
  .beside_slider.style2 .arrow-wrap .rev-prev, .beside_slider.style2 .arrow-wrap .rev-next {
    width: 75px;
    height: 73px;
    line-height: 73px;
    background: #fff;
    position: relative;
    cursor: pointer;
    float: left;
    color: #bebebe;
    font-size: 25px; }
  .beside_slider.style2 .arrow-wrap .rev-prev:hover:before, .beside_slider.style2 .arrow-wrap .rev-next:hover:before {
    color: #282a2d; }
  .beside_slider.style2 .arrow-wrap .rev-next:after {
    display: block;
    content: "";
    height: 33px;
    width: 1px;
    position: absolute;
    left: -0.5px;
    bottom: 20px;
    background: #bebebe;
    z-index: 1; }
  @media (min-width: 992px) {
  .beside_slider.style2 {
    width: 900px; } }
  @media (min-width: 1280px) {
  .beside_slider.style2 {
    width: 1000px; } }
  @media (min-width: 1600px) {
  .beside_slider.style2 {
    width: 1538px; } }
  @media (max-width: 767px) {
  .beside_slider.style2 {
    display: none !important; } }

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

.wpcf7-form-control::-moz-placeholder {
  font-style: italic;
  font-size: 94.11765%; }

.wpcf7-form-control:-ms-input-placeholder {
  font-style: italic;
  font-size: 94.11765%; }

.wpcf7-form-control::-webkit-input-placeholder {
  font-style: italic;
  font-size: 94.11765%; }

.cms-cf7-contactus {
  /* NewsLetter */ }
  .cms-cf7-contactus > div:not(.row) {
    margin-bottom: 15px; }
  .cms-cf7-contactus > .row {
    margin-left: -7.5px;
    margin-right: -7.5px; }
  .cms-cf7-contactus > .row > div {
    margin-bottom: 15px;
    padding-left: 7.5px;
    padding-right: 7.5px; }
  .cms-cf7-contactus .wpcf7-submit {
    margin-top: 25px; }

.widget_newsletterwidget form, .cms-newsletter form {
  position: relative; }
  .widget_newsletterwidget form:after, .cms-newsletter form:after {
    font-family: 'FontAwesome';
    content: "\f003";
    display: block;
    color: #fff;
    font-size: 150%; }
  .widget_newsletterwidget form input.newsletter-email, .cms-newsletter form input.newsletter-email {
    background: #34373a;
    border-color: #34373a; }
  .widget_newsletterwidget form input.newsletter-submit, .cms-newsletter form input.newsletter-submit {
    font-size: 0;
    border: none;
    background: transparent; }
  .widget_newsletterwidget form input.newsletter-submit, .cms-newsletter form input.newsletter-submit, .widget_newsletterwidget form:after, .cms-newsletter form:after {
    width: 55px;
    height: 51px;
    line-height: 51px;
    position: absolute;
    top: 0;
    right: 0;
    text-align: center; }

span.onsale {
  background: #9f0909;
  color: #fff;
  height: 40px;
  line-height: 40px;
  letter-spacing: 1.2px;
  text-align: center;
  text-transform: uppercase;
  padding: 0 5px;
  position: absolute;
  top: 0;
  right: 15px;
  z-index: 1;
  /* Price */ }

.price {
  /** Products item
 * Style for product list item 
*/ }
  .price ins {
    text-decoration: inherit; }
  .price del {
    padding-right: 15px;
    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 */
    /* OUTLINE RADIUS */ }

.type-product {
  /* Global Style
 * Style use for all class name, element 
*/
  /* Variations */ }
  .type-product .overlay-wrap {
    background: #fafafa; }
  .type-product .summary {
    padding: 0 25px 32px; }
  .type-product .entry-media {
    margin-bottom: 25px; }
  .type-product .entry-media .entry-media {
    margin-bottom: 0; }
  .type-product .entry-header {
    margin-bottom: 11px; }
  .type-product .entry-meta {
    font-size: inherit;
    font-style: normal;
    letter-spacing: 0;
    margin-bottom: 4px; }
  .type-product .price {
    color: #d04f2c;
    font-size: 141.17647%;
    font-style: italic; }

dl.variation {
  padding-left: 0;
  border-left: none;
  display: block;
  overflow: hidden;
  /* Rating */ }
  dl.variation dt {
    font-weight: 400;
    padding: 0;
    margin: 0 4px 0 0;
    font-size: inherit;
    float: left;
    clear: left;
    text-transform: capitalize; }
  dl.variation dd {
    padding: 0;
    margin: 0; }

.star-rating {
  font-size: 17px;
  width: 90px;
  height: 24px;
  letter-spacing: 2px;
  text-align: left;
  display: block;
  position: relative;
  /* Star on review form */ }
  .star-rating:before {
    font-family: 'FontAwesome';
    content: "\f005\f005\f005\f005\f005";
    position: absolute;
    top: 0;
    left: 0;
    color: #ddd; }
  .star-rating span {
    overflow: hidden;
    height: 24px;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0; }
  .star-rating span:before {
    color: #ffd24d;
    font-family: 'FontAwesome';
    content: "\f005\f005\f005\f005\f005";
    font-size: 17px; }

p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  color: #ddd; }
  p.stars a:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 1em;
    height: 1em;
    line-height: 1;
    font-family: 'FontAwesome';
    content: "\f005";
    text-indent: 0; }
  p.stars.selected a:not(.active):before, p.stars.selected a.active:before, p.stars:hover a:before {
    content: "\f005";
    color: #ffd24d; }

.wc-forward {
  display: inline-block;
  /* Remove icon */ }

a.remove {
  width: 16px;
  height: 16px;
  line-height: 14px;
  font-size: 20px;
  color: #aaa !important;
  border: 1px solid #aaa;
  text-align: center;
  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 */
  /* Result Count */ }
  a.remove:hover {
    color: red !important;
    border-color: red; }

.woocommerce-result-count {
  /* Product Ordering */ }
  @media (min-width: 768px) {
  .woocommerce-result-count {
    float: left;
    max-width: 50%;
    padding-top: 15px; } }

.woocommerce-ordering {
  margin-bottom: 35px; }
  @media (min-width: 768px) {
  .woocommerce-ordering {
    float: right;
    max-width: 50%;
    min-width: 250px; } }

.woocommerce-error, .woocommerce-info, .woocommerce-message {
  padding: 30px 30px 30px 60px;
  margin: 0 0 30px;
  position: relative;
  background-color: #f7f6f7;
  border-top: 3px solid #1e85be;
  word-wrap: break-word;
  /* Message */ }
  .woocommerce-error:before, .woocommerce-info:before, .woocommerce-message:before {
    font-family: 'FontAwesome';
    content: "\f05a";
    display: inline-block;
    position: absolute;
    top: 30px;
    left: 30px;
    color: #1e85be; }
  .woocommerce-error .button, .woocommerce-info .button, .woocommerce-message .button {
    margin-right: 20px; }
  .woocommerce-error + .checkout_coupon, .woocommerce-info + .checkout_coupon, .woocommerce-message + .checkout_coupon {
    margin-bottom: 30px; }

.woocommerce-message {
  display: block;
  overflow: hidden;
  border-top-color: #8fae1b;
  /* Error */ }
  .woocommerce-message .wc-forward {
    float: right;
    margin-left: 20px; }
  .woocommerce-message:before {
    content: "\f058";
    color: #8fae1b; }

.woocommerce-error {
  list-style: none;
  color: red;
  border-top-color: red;
  /* Quantity */ }
  .woocommerce-error:before {
    content: "\f05c";
    color: red; }

.quantity {
  float: left;
  margin-right: 15px;
  /* Shop Table */ }
  .quantity input {
    padding: 0;
    width: 63px;
    height: 63px;
    text-align: center !important;
    text-indent: 10px;
    background: #fafafa;
    border-color: #fafafa;
    -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 */
    /* TRIPLE BORDERS */
    /* Installed plugin: WooCommerce Quantity Increment */ }
  .quantity input:hover, .quantity input:active, .quantity input:focus {
    background: #aeaeae;
    border-color: #aeaeae;
    color: #fff; }
  .quantity.buttons_added input {
    text-indent: 0;
    float: left;
    width: 40px;
    /* remove Number Input Spinners */ }
  .quantity.buttons_added input.minus, .quantity.buttons_added input.plus {
    font-size: 0;
    background-position: center center;
    background-repeat: no-repeat; }
  .quantity.buttons_added input.minus {
    background-image: url('../images/icon/minus.png'); }
  .quantity.buttons_added input.plus {
    background-image: url('../images/icon/plus.png'); }
  .quantity.buttons_added input[type=number] {
    -moz-appearance: textfield; }
  .quantity.buttons_added input[type=number]::-webkit-inner-spin-button, .quantity.buttons_added input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; }
  @media (max-width: 320px) {
    .quantity.buttons_added {
      margin-bottom: 15px; } }

table.shop_table {
  border: none;
  /* Columns Set */ }
  table.shop_table thead th {
    padding-top: 21px;
    padding-bottom: 20px; }
  table.shop_table tr {
    border-bottom: 1px solid #eee; }
  table.shop_table tr.cart_item, table.shop_table tr.order_item, table.shop_table tr.order {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    font-size: 105.88235%; }
  table.shop_table tr.cart_item a:not(.button), table.shop_table tr.order_item a:not(.button), table.shop_table tr.order a:not(.button) {
    color: #202020; }
    table.shop_table tr.cart_item a:not(.button):hover, table.shop_table tr.order_item a:not(.button):hover, table.shop_table tr.order a:not(.button):hover {
      color: #aeaeae; }
  table.shop_table tr.cart_item .product-price, table.shop_table tr.order_item .product-price, table.shop_table tr.order .product-price, table.shop_table tr.cart_item .product-subtotal, table.shop_table tr.order_item .product-subtotal, table.shop_table tr.order .product-subtotal {
    color: #fe0000; }
  table.shop_table tr.cart_item .quantity input, table.shop_table tr.order_item .quantity input, table.shop_table tr.order .quantity input {
    height: 42px; }
    @media (max-width: 991px) {
      table.shop_table tr.cart_item .quantity, table.shop_table tr.order_item .quantity, table.shop_table tr.order .quantity {
        float: right;
        margin-right: 0; } }
  @media (max-width: 991px) {
      table.shop_table tr.cart_item:first-child, table.shop_table tr.order_item:first-child, table.shop_table tr.order:first-child {
        border-top: 1px solid #eee; } }
  table.shop_table tr .actions {
    padding-left: 0;
    padding-right: 0;
    padding-top: 10px;
    padding-bottom: 52px; }
  table.shop_table tr .actions .coupon label {
    display: none; }
    table.shop_table tr .actions .coupon #coupon_code {
      margin-right: 12px;
      float: left;
      padding-top: 18px;
      padding-bottom: 18px;
      text-align: left; }
    table.shop_table tr .actions .coupon .button {
      float: left; }
  @media (min-width: 992px) {
      table.shop_table tr .actions .coupon {
        float: left;
        width: calc(100% - 420px); }
        table.shop_table tr .actions .coupon #coupon_code {
          width: 270px; }
      table.shop_table tr .actions .button.checkout-button {
        margin-left: 5px; } }
  @media (max-width: 991px) {
      table.shop_table tr .actions .coupon #coupon_code {
        width: calc(100% - 186px); }
        table.shop_table tr .actions .coupon .button {
          width: auto;
          margin-top: 0; }
      table.shop_table tr .actions .button {
        margin-top: 15px;
        width: calc(50% - 3px); } }
  @media (max-width: 480px) {
      table.shop_table tr .actions .coupon #coupon_code {
        width: 100%;
        margin-right: 0;
        text-align: left; }
        table.shop_table tr .actions .coupon .button {
          width: 100%;
          margin-top: 15px; }
      table.shop_table tr .actions .coupon + .button, table.shop_table tr .actions .checkout-button {
        width: 100%;
        margin-left: 0; } }
  table.shop_table td {
    padding-top: 22px;
    padding-bottom: 18px; }
  table.shop_table td.product-remove {
    padding-left: 20px; }
  table.shop_table td a.button {
    margin-left: 10px; }
  table.shop_table .wp-post-image {
    max-width: 60px; }
  table.shop_table .woocommerce-shipping-calculator {
    display: none !important;
    /* Table Responsive */ }
  table.shop_table.shop_table_responsive {
    /* Order details */ }
  @media (max-width: 991px) {
    table.shop_table.shop_table_responsive tbody th, table.shop_table.shop_table_responsive thead, table.shop_table.shop_table_responsive tfoot tr.order_item th {
      display: none; }

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

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

    table.shop_table.shop_table_responsive tfoot tr td:before {
      content: attr(data-title); } }
  table.shop_table.order_details th, table.shop_table.order_details td {
    border-right: 2px solid #eee; }
  table.shop_table.order_details th:last-child, table.shop_table.order_details td:last-child {
    border-right: 0; }
  table.shop_table.order_details thead, table.shop_table.order_details .cart_item, table.shop_table.order_details .order_item {
    border-width: 2px; }
  @media (max-width: 991px) {
    table.shop_table.order_details tr.cart_item, table.shop_table.order_details tr.order_item {
      border-width: 2px; }
      table.shop_table.order_details tr.cart_item td, table.shop_table.order_details tr.order_item td {
        border-right: 0;
        border-width: 2px; } }

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

#shipping_method, .payment_methods {
  list-style: none;
  /* Products List Widget */ }

ul.product_list_widget {
  list-style: none;
  /**
 * All WooCommerce Widget Style
*/
  /* Mini Cart */ }
  ul.product_list_widget li {
    padding: 18px 0;
    border-top: 1px solid #eee;
    position: relative;
    overflow: hidden; }
  ul.product_list_widget li:first-child {
    border-top: none; }
  ul.product_list_widget li .product-image {
    float: left; }
  ul.product_list_widget li .product-image + div {
    padding-left: 90px; }
  ul.product_list_widget li img {
    margin: 0 12px 0 0;
    max-width: 78px;
    width: 78px; }
  ul.product_list_widget li a {
    padding: 0; }
  ul.product_list_widget li .product-title {
    display: block; }
  ul.product_list_widget li .star-rating {
    -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 */
    /* TRANSFORM STYLE */ }
  ul.product_list_widget li .star-rating + .price, ul.product_list_widget li .star-rating + .reviewer {
    margin-top: 10px;
    display: block; }
  ul.product_list_widget li .price {
    display: block; }
  ul.product_list_widget li .quantity {
    width: 100%;
    /* Mini Cart */ }
  ul.product_list_widget li.mini_cart_item a.remove {
    position: absolute;
    top: 18px;
    left: 0; }

.widget_shopping_cart {
  overflow: hidden;
  /* Layered Nav */ }
  .widget_shopping_cart .widget_shopping_cart_content {
    max-height: 411px;
    overflow-x: hidden;
    width: calc(100% + 20px);
    padding-right: 20px; }
  .widget_shopping_cart .buttons {
    overflow: hidden; }
  .widget_shopping_cart .buttons .button {
    width: calc(50% - 15px);
    float: left;
    padding-left: 0;
    padding-right: 0; }
  .widget_shopping_cart .buttons .button + .button {
    margin-left: 30px; }

.widget_layered_nav {
  margin-bottom: 35px;
  /* widget_layered_nav_filters */ }
  .widget_layered_nav .attr-name {
    text-transform: uppercase; }
  .widget_layered_nav ul.wc-layered-nav .wc-layered-nav-term {
    padding-top: 10px;
    padding-bottom: 10px; }
  .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term:before {
    content: "";
    display: block;
    float: left;
    margin-right: 20px;
    width: 17px;
    height: 17px;
    margin-top: 4px;
    -webkit-border-radius: 2px;
    -khtml-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
    /* BACKGROUND GRADIENT */ }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.black:before {
      background: #333; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.brown:before {
      background: #403000; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.gray:before {
      background: #757584; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.grey:before {
      background: #f2f2f2; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.blue:before {
      background: #7da7d9; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.green:before {
      background: #004000; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.orange:before {
      background: #f68e56; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.red:before {
      background: #8c0000; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term.pink:before {
      background: #f99; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term a {
      color: #aeaeae; }
    .widget_layered_nav ul.wc-layered-nav.color .wc-layered-nav-term:hover a {
      color: #282a2d; }

.widget_layered_nav, .widget_layered_nav_filters {
  /* Price Filter */ }
  .widget_layered_nav .wg-title, .widget_layered_nav_filters .wg-title {
    margin-bottom: 20px; }
  .widget_layered_nav ul li.chosen a:before, .widget_layered_nav_filters ul li.chosen a:before {
    content: "\f057";
    font-family: 'FontAwesome';
    color: #a00;
    margin-right: 10px; }

.widget_price_filter {
  /* Widget widget_rating_filter */ }
  .widget_price_filter .wg-title {
    margin-bottom: 40px; }
  .widget_price_filter .price_slider {
    position: relative; }
  .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background-color: #ddd;
    height: 4px;
    -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 */
    margin: 0; }
  .widget_price_filter .ui-slider .ui-slider-handle, .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    background-color: #282a2d; }
  .widget_price_filter .ui-slider .ui-slider-range {
    height: 4px;
    -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 */ }
  .widget_price_filter .ui-slider .ui-slider-handle {
    -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 */
    width: 20px;
    height: 20px;
    top: -8px; }
  .widget_price_filter .ui-slider .ui-slider-handle:last-child {
    margin-left: -20px; }
  .widget_price_filter .price_slider_amount {
    margin-top: 33px;
    font-size: 93.33334%;
    color: #282a2d; }
  .widget_price_filter .price_label {
    float: right;
    padding-top: 11px; }

.widget_rating_filter {
  /** Products list 
 * Archive, categories, category, search products layout 
 * @since: 1.0.0
 * @uthor: Chinh Duong Manh
*/ }
  .widget_rating_filter .star-rating {
    float: left; }

@media (min-width: 1280px) {
        .post-type-archive-product #cms-main.no-container.column4 {
          padding-left: 175px;
          padding-right: 175px; } }
  @media (min-width: 1280px) {
      .post-type-archive-product #cms-main.no-container.column5 {
        padding-left: 105px;
        padding-right: 105px; } }

.products {
  margin: 0 -15px;
  list-style: none;
  clear: both;
  display: block;
  overflow: hidden;
  min-width: 100%;
  /* Cart Page */ }
  .products > .product {
    width: 33.33%;
    padding: 0 15px;
    margin: 0 0 30px;
    float: left;
    position: relative;
    text-align: center; }
  .products > .product.first {
    clear: left; }
  .products > .product img {
    width: 100%; }
  .products > .product .overlay-wrap .overlay {
    background: transparent; }
  .products > .product .star-rating {
    margin-bottom: 20px;
    clear: both;
    margin: 0 auto; }
  @media (max-width: 1024px) {
    .products > .product {
      width: 50%; }
      .products > .product.first {
        clear: none; } }
  @media (max-width: 480px) {
    .products > .product {
      width: 100%;
      clear: both; } }
  .products.columns-2 > .product {
    width: 50%; }
  @media (max-width: 480px) {
      .products.columns-2 > .product {
        width: 100%;
        clear: both; } }
  .products.columns-4 > .product {
    width: 25%; }
  @media (max-width: 1024px) {
      .products.columns-4 > .product {
        width: 50%; }
        .products.columns-4 > .product.first {
          clear: none; } }
  @media (max-width: 480px) {
      .products.columns-4 > .product {
        width: 100%;
        clear: both; } }
  .products.columns-5 > .product {
    width: 20%; }
  @media (max-width: 1024px) {
      .products.columns-5 > .product {
        width: 50%; }
        .products.columns-5 > .product.first {
          clear: none; } }
  @media (max-width: 480px) {
      .products.columns-5 > .product {
        width: 100%;
        clear: both; } }

.calculated_shipping .woocommerce-shipping-calculator {
  display: none; }

.cms-wc-cart-calculator .shipping-calculator-form {
  display: block !important;
  height: inherit !important; }

.cart-collaterals {
  margin: 0 -15px;
  padding-top: 136px;
  display: block;
  overflow: hidden;
  clear: both; }
  .cart-collaterals > div {
    padding: 0 15px; }
  @media (min-width: 992px) {
    .cart-collaterals > div {
      width: 50%;
      float: left; }
      .cart-collaterals > div.cart_totals {
        float: right; } }
  .cart-collaterals .shipping-calculator-button, .cart-collaterals .cart_totals > h2 {
    font-size: 105.88235%;
    text-align: center;
    margin: 0;
    display: block; }
  .cart-collaterals .shipping-calculator-button {
    padding-bottom: 20px; }
  .cart-collaterals .shipping-calculator-form select {
    background-color: #f6f6f6; }
  .cart-collaterals button[name="calc_shipping"] {
    width: 100%; }
  .cart-collaterals .cart_totals > h2 {
    padding-bottom: 46px; }
  .cart-collaterals .cart_totals .shop_table tr th {
    color: #777; }
    .cart-collaterals .cart_totals .shop_table tr th:after {
      display: inline-block;
      content: " :"; }
    .cart-collaterals .cart_totals .shop_table tr td {
      padding-top: 7px;
      padding-bottom: 3px;
      color: #fe0000; }
    .cart-collaterals .cart_totals .shop_table tr td #shipping_method label {
      color: #fe0000; }
    .cart-collaterals .cart_totals .shop_table tr.cart-subtotal {
      border-top: 1px solid #eee; }

.cross-sells {
  margin-top: 50px;
  /* Check out page */ }
  .cross-sells > h2 {
    margin: 0 0 30px; }

.woocommerce-checkout .woocommerce-info {
  margin-bottom: 0;
  border-bottom: 1px solid #eee;
  text-align: center;
  background: transparent;
  padding: 8px 0;
  border-top: 0; }
  .woocommerce-checkout .woocommerce-info:before {
    display: none; }
  .woocommerce-checkout .woocommerce-info a[href="#"] {
    border-bottom: 2px solid #aaaaab; }
  .woocommerce-checkout .woocommerce-info + form {
    padding-top: 30px; }
  .woocommerce-checkout .woocommerce-info + form.checkout_coupon p {
    text-align: center;
    width: 100%;
    margin-left: 0; }
  @media (min-width: 992px) {
    .woocommerce-checkout .woocommerce-info {
      width: 50%;
      margin: 0 auto; } }

.woocommerce-billing-fields > h3, .woocommerce-shipping-fields > h3 {
  margin-top: 58px;
  margin-bottom: 40px;
  text-align: center; }
  .woocommerce-billing-fields label[for="ship-to-different-address-checkbox"], .woocommerce-shipping-fields label[for="ship-to-different-address-checkbox"] {
    font-size: inherit; }
  .woocommerce-billing-fields label[for="createaccount"], .woocommerce-shipping-fields label[for="createaccount"] {
    color: #282a2d;
    padding-left: 5px; }
  .woocommerce-billing-fields .create-account, .woocommerce-shipping-fields .create-account {
    text-align: center;
    margin-top: 15px; }

.woocommerce-password-strength {
  text-align: center;
  font-weight: 600;
  padding: 3px 0.5em;
  font-size: 1em;
  color: #282a2d; }
  .woocommerce-password-strength.short {
    background-color: #f1adad;
    border-color: #e35b5b; }

#order_review_heading {
  margin-top: 70px;
  margin-bottom: 29px;
  padding-top: 57px;
  text-align: center;
  border-top: 1px solid #eee; }

#order_review .woocommerce-checkout-review-order-table {
  text-align: center; }
  #order_review .woocommerce-checkout-review-order-table thead {
    border-width: 0 0 2px 0; }
  #order_review .woocommerce-checkout-review-order-table tr {
    border-right: 0;
    border-left: 0; }
  #order_review .woocommerce-checkout-review-order-table tr td {
    padding-top: 12px;
    padding-bottom: 10px; }
  #order_review .woocommerce-checkout-review-order-table tr.cart-subtotal th, #order_review .woocommerce-checkout-review-order-table tr.order-total th {
    color: #282a2d; }
    #order_review .woocommerce-checkout-review-order-table tr.cart-subtotal td, #order_review .woocommerce-checkout-review-order-table tr.order-total td {
      color: #fd012b; }

.woocommerce-checkout-payment {
  margin-top: 43px;
  /* Order Received */ }
  .woocommerce-checkout-payment .wc_payment_method {
    margin-bottom: 10px;
    background: #fafafa;
    text-transform: uppercase;
    color: #282a2d;
    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 */
    /* TRIPLE BORDERS */ }
  .woocommerce-checkout-payment .wc_payment_method:hover, .woocommerce-checkout-payment .wc_payment_method:active, .woocommerce-checkout-payment .wc_payment_method:focus, .woocommerce-checkout-payment .wc_payment_method.active {
    background: #282a2d;
    color: #fff; }
  .woocommerce-checkout-payment .wc_payment_method:hover label, .woocommerce-checkout-payment .wc_payment_method:active label, .woocommerce-checkout-payment .wc_payment_method:focus label, .woocommerce-checkout-payment .wc_payment_method.active label {
    color: #fff; }
  .woocommerce-checkout-payment .wc_payment_method:before, .woocommerce-checkout-payment .wc_payment_method > span {
    display: block;
    content: "";
    width: 100%;
    height: 8px; }
  .woocommerce-checkout-payment .wc_payment_method .payment_box {
    background: #fff;
    text-transform: none;
    padding-top: 19px;
    padding-bottom: 17px;
    color: #aeaeae; }
  .woocommerce-checkout-payment .wc_payment_method.payment_method_paypal label img, .woocommerce-checkout-payment .wc_payment_method.payment_method_paypal label a {
    display: none; }
  .woocommerce-checkout-payment .place-order {
    text-align: center;
    margin-top: 35px; }

.woocommerce-order-received, .woocommerce-view-order {
  /* My Account */ }
  .woocommerce-order-received .wc-page-title, .woocommerce-view-order .wc-page-title {
    font-size: 411.76471%; }
  .woocommerce-order-received .shop_table, .woocommerce-view-order .shop_table, .woocommerce-order-received .order_details, .woocommerce-view-order .order_details {
    margin-bottom: 30px; }
  .woocommerce-order-received .order_details, .woocommerce-view-order .order_details {
    list-style: none; }
  .woocommerce-order-received .order_details li, .woocommerce-view-order .order_details li {
    padding-bottom: 20px; }
  .woocommerce-order-received .woocommerce-thankyou-order-received, .woocommerce-view-order .woocommerce-thankyou-order-received {
    font-size: 117.64706%;
    margin-top: -7px;
    margin-bottom: 31px; }
  .woocommerce-order-received .woocommerce-thankyou-order-details + div + p, .woocommerce-view-order .woocommerce-thankyou-order-details + div + p {
    text-align: center;
    padding-top: 7px;
    margin-bottom: 38px; }

.woocommerce-MyAccount-navigation {
  margin-bottom: 30px; }
  .woocommerce-MyAccount-navigation ul {
    list-style: none;
    text-align: center; }
  .woocommerce-MyAccount-navigation ul li {
    display: inline-block;
    margin: 5px;
    text-transform: uppercase; }
  .woocommerce-MyAccount-navigation ul li a {
    padding: 7px 15px; }
  .woocommerce-MyAccount-navigation ul li:hover a, .woocommerce-MyAccount-navigation ul li.is-active a {
    background-color: #282a2d;
    color: #fff;
    color: #fff; }

.woocommerce-MyAccount-content .woocommerce-FormRow {
  margin-bottom: 30px; }
  .woocommerce-MyAccount-content input[name="save_account_details"] {
    margin-top: 30px; }

#customer_login {
  /* Single Product */ }
  #customer_login h2 {
    margin-bottom: 50px; }
  #customer_login .woocommerce-FormRow {
    margin-bottom: 30px; }
  #customer_login .woocommerce-Button {
    margin-left: 15px;
    margin-right: 15px; }
  #customer_login .woocommerce-LostPassword {
    text-decoration: underline; }
  @media (max-width: 480px) {
  #customer_login .form-row label, #customer_login .form-row .button, #customer_login .form-row a {
    display: block;
    width: 100%;
    margin: 0 0 20px; } }

.single-product {
  /* YITH Wishlist */ }
  .single-product .product {
    position: relative; }
  .single-product .product .onsale {
    left: 0;
    right: auto; }
  .single-product .product .images {
    position: relative;
    margin-bottom: 30px; }
  .single-product .product .images .woocommerce-main-image {
    display: block; }
    .single-product .product .images .woocommerce-main-image .wp-post-image {
      width: 100%; }
  .single-product .product .images .thumbnails {
    margin: 5px -7px 0 -7px; }
    .single-product .product .images .thumbnails a {
      margin: 5px 7px; }
    @media (max-width: 320px) {
        .single-product .product .images .thumbnails a {
          width: calc(50% - 14px); } }
  @media (min-width: 992px) {
      .single-product .product .images {
        float: left;
        width: calc(50% - 15px); } }
  .single-product .product .images a {
    position: relative;
    display: inline-block; }
    .single-product .product .images a:before, .single-product .product .images 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 */
      /* 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 */
      /* TRIPLE BORDERS */ }
    .single-product .product .images a:before {
      content: "";
      background: rgba(40, 42, 45, 0.8);
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      /* Vertical Align */ }
    .single-product .product .images 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 */
      /* Spin */
      color: #fff;
      content: "\f00e";
      font-family: 'FontAwesome';
      font-size: 40px; }
    .single-product .product .images a:hover:before, .single-product .product .images 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 */
      /* OUTLINE RADIUS */ }
  .single-product .product .entry-summary {
    margin-bottom: 30px;
    padding: 0; }
  @media (min-width: 992px) {
      .single-product .product .entry-summary {
        float: right;
        width: calc(50% - 15px); } }
  .single-product .product .entry-summary .product_title {
    margin-top: -8px; }
  .single-product .product .entry-summary .woocommerce-product-rating {
    display: block;
    overflow: hidden;
    margin-top: 20px;
    /* Price */ }
    .single-product .product .entry-summary .woocommerce-product-rating .star-rating {
      display: inline-block;
      margin-left: 20px; }
    .single-product .product .entry-summary .woocommerce-product-rating .woocommerce-review-link {
      float: left;
      color: #aeaeae;
      text-transform: capitalize; }
    .single-product .product .entry-summary .woocommerce-product-rating .woocommerce-review-link:hover {
      color: #282a2d; }
  .single-product .product .entry-summary .price {
    color: #d5240c;
    font-size: 211.76471%;
    margin-top: 16px;
    font-style: normal; }
  .single-product .product .entry-summary div[itemprop="description"] {
    margin-top: 33px;
    color: #282a2d; }
  .single-product .product .entry-summary form.cart {
    margin-top: 44px;
    /* Product Meta */ }
    .single-product .product .entry-summary form.cart .quantity {
      /* variations form cart */ }
    .single-product .product .entry-summary form.cart .variations {
      margin-bottom: 30px;
      border: none; }
    .single-product .product .entry-summary form.cart .variations tr {
      border: none; }
    .single-product .product .entry-summary form.cart .variations td.label {
      display: table-cell;
      padding: 15px 5px 5px;
      font-size: 120%;
      font-weight: inherit;
      line-height: inherit;
      color: inherit;
      text-align: inherit;
      white-space: nowrap;
      vertical-align: top;
      border-radius: inherit; }
      .single-product .product .entry-summary form.cart .variations td.label label {
        margin: 0;
        font-weight: 400;
        text-transform: capitalize; }
    .single-product .product .entry-summary form.cart .single_variation_wrap .single_variation {
      margin-bottom: 30px; }
    .single-product .product .entry-summary form.cart .single_add_to_cart_button:before {
      content: "\e615";
      font-family: 'Pe-icon-7-stroke';
      display: inline-block;
      margin-right: 15px;
      font-size: 147.05882%;
      vertical-align: top; }
  .single-product .product .entry-summary .product_meta {
    margin-top: 40px;
    color: #777;
    /* Product Social Share */ }
    .single-product .product .entry-summary .product_meta > span {
      display: block;
      border-bottom: 1px solid #eee;
      padding-top: 6px;
      padding-bottom: 10px; }
  .single-product .product .entry-summary .entry-socials-share-list {
    margin-top: 0px;
    padding-top: 48px;
    border-top: 0; }
    .single-product .product .entry-summary .entry-socials-share-list .text {
      color: #282a2d; }
    .single-product .product .entry-summary .entry-socials-share-list a {
      color: #aaa; }
    .single-product .product .entry-summary .entry-socials-share-list a i {
      font-size: 17px; }
    .single-product .product .entry-summary .entry-socials-share-list a:hover {
      color: #282a2d; }
  .single-product .product .woocommerce-tabs {
    clear: both;
    width: 100%;
    display: block;
    overflow: hidden; }
  .single-product .product .woocommerce-tabs:before {
    content: "";
    display: block;
    margin-top: 20px;
    margin-bottom: 40px;
    border-top: 1px solid #eee; }
  .single-product .product .woocommerce-tabs .wc-tabs {
    list-style: none;
    padding: 0;
    margin: 0; }
    .single-product .product .woocommerce-tabs .wc-tabs li a {
      text-transform: capitalize; }
  .single-product .product .woocommerce-tabs .wc-tab {
    -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 */
    /* TRIPLE BORDERS */ }
    .single-product .product .woocommerce-tabs .wc-tab > h2 {
      display: none; }
  @media (min-width: 992px) {
      .single-product .product .woocommerce-tabs .wc-tabs {
        width: 33.33333%;
        padding-right: 70px;
        float: left; }
        .single-product .product .woocommerce-tabs .wc-tabs > li {
          border-bottom: 1px solid #eee;
          -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 */
          /* TRIPLE BORDERS */ }
          .single-product .product .woocommerce-tabs .wc-tabs > li a {
            color: #999;
            line-height: 45px; }
          .single-product .product .woocommerce-tabs .wc-tabs > li.active, .single-product .product .woocommerce-tabs .wc-tabs > li:hover {
            padding-left: 25px; }
            .single-product .product .woocommerce-tabs .wc-tabs > li.active a, .single-product .product .woocommerce-tabs .wc-tabs > li:hover a {
              color: #282a2d; }
      .single-product .product .woocommerce-tabs .wc-tab {
        width: 66.66667%;
        float: left; } }
  @media (max-width: 991px) {
      .single-product .product .woocommerce-tabs {
        /* Review pagination */ }
        .single-product .product .woocommerce-tabs .wc-tabs {
          border-bottom: 1px solid #eee;
          display: block;
          overflow: hidden; }
          .single-product .product .woocommerce-tabs .wc-tabs > li {
            float: left; }
            .single-product .product .woocommerce-tabs .wc-tabs > li a {
              font-size: 80%;
              text-transform: uppercase;
              color: #202020;
              line-height: 44px;
              padding: 0 25px;
              display: block;
              letter-spacing: 2.4px; }
            .single-product .product .woocommerce-tabs .wc-tabs > li.active a, .single-product .product .woocommerce-tabs .wc-tabs > li:hover a {
              background-color: #222;
              color: #fff; }
        .single-product .product .woocommerce-tabs > .wc-tab {
          padding-top: 33px;
          border-bottom: none; } }
  .single-product .product .woocommerce-tabs #comments {
    margin-top: 0; }
    .single-product .product .woocommerce-tabs #comments .woocommerce-pagination ul.page-numbers {
      list-style: none;
      margin: 0 0 30px; }
    .single-product .product .woocommerce-tabs #comments .woocommerce-pagination ul.page-numbers li {
      display: inline-block;
      padding: 0; }
      .single-product .product .woocommerce-tabs #comments .woocommerce-pagination ul.page-numbers li .page-numbers {
        min-width: 40px;
        height: 40px;
        line-height: 40px;
        white-space: nowrap;
        font-size: 18px;
        font-weight: 900;
        background: #282a2d;
        color: #fff;
        display: inline-block;
        text-align: center;
        margin-right: 21px; }
      .single-product .product .woocommerce-tabs #comments .woocommerce-pagination ul.page-numbers li .page-numbers.current {
        background-color: #aeaeae; }
  .single-product .product div.products {
    padding: 0 15px; }
  .single-product .product div.products > h2 {
    margin: 30px 0; }

.yith-wcwl-add-to-wishlist {
  margin-top: 37px; }

.yith-wcwl-add-button a.add_to_wishlist {
  text-transform: uppercase; }
  .yith-wcwl-add-button a.add_to_wishlist:before {
    content: "\f08a";
    font-family: 'FontAwesome';
    margin-right: 15px;
    font-size: 23px;
    line-height: 1;
    vertical-align: top; }

.woocommerce table.wishlist_table {
  font-size: inherit !important; }
  .woocommerce table.wishlist_table tr td {
    text-align: inherit; }
  .woocommerce table.wishlist_table tr td.product-remove {
    padding-left: 20px; }
  .woocommerce table.wishlist_table tbody tr {
    border-left: 1px solid #e7e7e7;
    border-right: 1px solid #e7e7e7; }
  .woocommerce table.wishlist_table .add_to_cart.button {
    -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 */
    padding: inherit;
    line-height: inherit; }

@media (max-width: 991px) {
    form#yith-wcwl-form {
      overflow-y: hidden; }
      form#yith-wcwl-form table.wishlist_table {
        min-width: 991px; } }

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

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

@media (min-width: 992px) {
  /* Min width 768 */
    .width-md-50 {
      width: 50%;
      float: left; }
    .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.has-overlay > div:before, .wpb_column.full-right.has-overlay > div:before {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        content: "";
        display: block;
        background-color: rgba(0, 0, 0, 0.5); }
      .wpb_column.full-left.w-39, .wpb_column.full-right.w-39 {
        max-width: 39%; }
      .wpb_column.full-left .wpb_wrapper, .wpb_column.full-right .wpb_wrapper, .wpb_column.full-left .wpb_single_image, .wpb_column.full-right .wpb_single_image, .wpb_column.full-left .vc_figure, .wpb_column.full-right .vc_figure, .wpb_column.full-left .vc_single_image-wrapper, .wpb_column.full-right .vc_single_image-wrapper, .wpb_column.full-left .vc_single_image-wrapper .vc_single_image-img, .wpb_column.full-right .vc_single_image-wrapper .vc_single_image-img {
        height: 100%; }
      .wpb_column.full-left {
        left: 0; }
      .wpb_column.full-right {
        right: 0; } }

@media (min-width: 768px) {
  /* Max width 1200 */ }

@media (max-width: 1200px) {
  /* max width 991 */
    .sm-pull-left {
      float: left; }
    .sm-pull-right {
      float: right; } }

@media (max-width: 991px) {
  /* Max width 767px */
    html body {
      padding: 0; }
    .content-area + #sidebar-area, #sidebar-area + .content-area {
      margin-top: 90px; } }

@media (max-width: 767px) {
  /* Max width 480px */
    .text-xs-right {
      text-align: right; }
    .text-xs-center {
      text-align: center; }
    .hidden-xs {
      display: none !important; } }

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

@media (max-width: 1200px) and (min-width: 992px) {
  .text-md-right {
    text-align: right; }

  .text-md-center {
    text-align: center; }

  .pull-md-right {
    float: right !important; }

  .hidden-md {
    display: none !important; } }

@media (max-width: 991px) and (min-width: 768px) {
  .text-sm-right {
    text-align: right; }

  .text-sm-center {
    text-align: center; }

  .sm-pull-right {
    float: right; }

  .hidden-sm {
    display: none !important; } }
