/* -------------------------------------------------------------
 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 */
/* BACKGROUND GRADIENT */
/* bottom to top */
/* top to bottom */
/* BACKGROUND HORIZONTAL */
/* BACKGROUND RADIAL */
/* BACKGROUND SIZE */
/* BACKGROUND COLOR OPACITY */
/* BORDER RADIUS */
/* BOX */
/* BOX RGBA */
/* BOX SHADOW */
/* BOX SIZING */
/* COLUMNS */
/* DOUBLE BORDERS */
/* FLEX */
/* FLIP */
/* FONT FACE */
/* OPACITY */
/* OUTLINE RADIUS */
/* RESIZE */
/* ROTATE*/
/* TEXT SHADOW */
/* TRANSFORM  */
/* TRANSFORM STYLE */
/* TRANSFORM ORIGIN */
/* TRANSITION */
/* TRIPLE BORDERS */
/* KEYFRAMES */
/* ANIMATION */
/* Text Shadow */
/* Color */
/* Font Size */
/* body font size 15px */
/* Background */
/* Responsive Size */
/* Medium Screen */
/* Small Screen */
/* Extra Small Screen */
/* Typography */
/* Border */
/* Meta */
/* Header */
/* Button */
/* Form */
/* Socials Color */
/* Header */
/* page title */
/* Mixins  */
/* overlay position  */
/* Vertical Align */
/* Horizontal Align */
/* Center Align */
/* Center Bottom Align */
/* image fit */
/* Image black and white */
/* Box shadow */
/* Spin */
@-webkit-keyframes CMSSpin {
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-moz-keyframes CMSSpin {
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-ms-keyframes CMSSpin {
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@-o-keyframes CMSSpin {
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }

@keyframes CMSSpin {
  100% {
    -webkit-transform: rotate(360deg);
    -khtml-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg); } }
/* Page Loading */
/* Newton */
@keyframes left {
  25% {
    transform: translateX(-250%);
    animation-timing-function: ease-in; }

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

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

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

  100% {
    transform: translateX(150%); } }
/* wave */
@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 {
  48% {
    transform: translateX(-120px); }

  100% {
    transform: translateX(-120px); } }
/* circus */
@keyframes position {
  50% {
    left: 100%; } }

@keyframes size {
  50% {
    transform: scale(0.5, 0.5); } }
/* Atom */
@keyframes AtomPosition {
  50% {
    top: 80px;
    left: 80px; } }

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

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

@keyframes shrink {
  50% {
    transform: scale(0.9, 0.9); } }
/* Fusstion */
@keyframes ball1 {
  50% {
    top: -100%;
    left: 200%;
    background: rgba(127, 127, 0, 0.5); }

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

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

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

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

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

@keyframes ball4 {
  50% {
    top: -100%;
    left: -100%;
    background: rgba(255, 127, 0, 0.5); }

  100% {
    top: 0%;
    left: 50%;
    background: rgba(255, 0, 0, 0.5);
    z-index: 1; } }
/* Mitosis */
@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 {
  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); } }
/* Flower */
@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 {
  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); } }
/* Clock */
@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 {
  15% {
    transform: rotate(0); }

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

  100% {
    transform: rotate(-315deg); } }
/* Washing Machine */
@keyframes wash {
  100% {
    transform: rotate(1800deg); } }
/* Pulse */
@keyframes pulse {
  0% {
    transform: scale(0.1, 0.1);
    opacity: 1;
    border-width: 50px; }

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

@-webkit-keyframes scaleDisappear {
  0% {
    opacity: 1;
    -webkit-transform: scale(1); }

  60% {
    opacity: 0;
    -webkit-transform: scale(1.3); }

  100% {
    opacity: 1;
    -webkit-transform: scale(1); } }

@-moz-keyframes scaleDisappear {
  0% {
    opacity: 1;
    -moz-transform: scale(1); }

  60% {
    opacity: 0;
    -moz-transform: scale(1.3); }

  100% {
    opacity: 1;
    -moz-transform: scale(1); } }

@-ms-keyframes scaleDisappear {
  0% {
    opacity: 1;
    -ms-transform: scale(1); }

  60% {
    opacity: 0;
    -ms-transform: scale(1.3); }

  100% {
    opacity: 1;
    -ms-transform: scale(1); } }

@-o-keyframes scaleDisappear {
  0% {
    opacity: 1;
    -o-transform: scale(1); }

  60% {
    opacity: 0;
    -o-transform: scale(1.3); }

  100% {
    opacity: 1;
    -o-transform: scale(1); } }

@keyframes scaleDisappear {
  0% {
    opacity: 1;
    transform: scale(1); }

  60% {
    opacity: 0;
    transform: scale(1.3); }

  100% {
    opacity: 1;
    transform: scale(1); } }

.scaleDisappear {
  -webkit-animation: scaleDisappear 350ms ease-in-out;
  -moz-animation: scaleDisappear 350ms ease-in-out;
  -ms-animation: scaleDisappear 350ms ease-in-out;
  -o-animation: scaleDisappear 350ms ease-in-out;
  animation: scaleDisappear 350ms ease-in-out; }
/* Socails Color */
/*!
 * Bootstrap Grid v4.0.0 (https://getbootstrap.com)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */
@-ms-viewport {
  width: device-width; }

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

*, *::before, *::after {
  box-sizing: inherit; }

code, kbd, pre, samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-break: break-word; }

a > code {
  color: inherit; }

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  -webkit-border-radius: 0.2rem;
  -khtml-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
  border-radius: 0.2rem;
  -webkit-box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25) 2px 5px rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25) 2px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25) 2px 5px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25) 2px 5px rgba(0, 0, 0, 0.4);
  -o-box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25) 2px 5px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 -0.1rem 0 rgba(0, 0, 0, 0.25) 2px 5px rgba(0, 0, 0, 0.4); }

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
  -webkit-box-shadow: none 2px 5px rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: none 2px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: none 2px 5px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: none 2px 5px rgba(0, 0, 0, 0.4);
  -o-box-shadow: none 2px 5px rgba(0, 0, 0, 0.4);
  box-shadow: none 2px 5px rgba(0, 0, 0, 0.4); }

pre {
  display: block;
  font-size: 87.5%;
  color: #212529; }

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal; }

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll; }

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      max-width: 540px; } }
  @media (min-width: 768px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 992px) {
    .container {
      max-width: 960px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1200px; } }

.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }

.no-gutters > .col, .no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col, .col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm, .col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md, .col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg, .col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl, .col-xl-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%; }

.col-2 {
  flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%; }

.col-5 {
  flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%; }

.col-8 {
  flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%; }

.col-11 {
  flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.3333333333%; }

.offset-2 {
  margin-left: 16.6666666667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.3333333333%; }

.offset-5 {
  margin-left: 41.6666666667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.3333333333%; }

.offset-8 {
  margin-left: 66.6666666667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.3333333333%; }

.offset-11 {
  margin-left: 91.6666666667%; }

@media (min-width: 576px) {
    .col-sm {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
      .col-sm-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none; }
      .col-sm-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%; }
      .col-sm-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%; }
      .col-sm-3 {
        flex: 0 0 25%;
        max-width: 25%; }
      .col-sm-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%; }
      .col-sm-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%; }
      .col-sm-6 {
        flex: 0 0 50%;
        max-width: 50%; }
      .col-sm-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%; }
      .col-sm-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%; }
      .col-sm-9 {
        flex: 0 0 75%;
        max-width: 75%; }
      .col-sm-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%; }
      .col-sm-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%; }
      .col-sm-12 {
        flex: 0 0 100%;
        max-width: 100%; }
      .order-sm-first {
        order: -1; }
      .order-sm-last {
        order: 13; }
      .order-sm-0 {
        order: 0; }
      .order-sm-1 {
        order: 1; }
      .order-sm-2 {
        order: 2; }
      .order-sm-3 {
        order: 3; }
      .order-sm-4 {
        order: 4; }
      .order-sm-5 {
        order: 5; }
      .order-sm-6 {
        order: 6; }
      .order-sm-7 {
        order: 7; }
      .order-sm-8 {
        order: 8; }
      .order-sm-9 {
        order: 9; }
      .order-sm-10 {
        order: 10; }
      .order-sm-11 {
        order: 11; }
      .order-sm-12 {
        order: 12; }
      .offset-sm-0 {
        margin-left: 0; }
      .offset-sm-1 {
        margin-left: 8.3333333333%; }
      .offset-sm-2 {
        margin-left: 16.6666666667%; }
      .offset-sm-3 {
        margin-left: 25%; }
      .offset-sm-4 {
        margin-left: 33.3333333333%; }
      .offset-sm-5 {
        margin-left: 41.6666666667%; }
      .offset-sm-6 {
        margin-left: 50%; }
      .offset-sm-7 {
        margin-left: 58.3333333333%; }
      .offset-sm-8 {
        margin-left: 66.6666666667%; }
      .offset-sm-9 {
        margin-left: 75%; }
      .offset-sm-10 {
        margin-left: 83.3333333333%; }
      .offset-sm-11 {
        margin-left: 91.6666666667%; } }

@media (min-width: 768px) {
    .col-md {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
      .col-md-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none; }
      .col-md-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%; }
      .col-md-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%; }
      .col-md-3 {
        flex: 0 0 25%;
        max-width: 25%; }
      .col-md-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%; }
      .col-md-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%; }
      .col-md-6 {
        flex: 0 0 50%;
        max-width: 50%; }
      .col-md-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%; }
      .col-md-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%; }
      .col-md-9 {
        flex: 0 0 75%;
        max-width: 75%; }
      .col-md-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%; }
      .col-md-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%; }
      .col-md-12 {
        flex: 0 0 100%;
        max-width: 100%; }
      .order-md-first {
        order: -1; }
      .order-md-last {
        order: 13; }
      .order-md-0 {
        order: 0; }
      .order-md-1 {
        order: 1; }
      .order-md-2 {
        order: 2; }
      .order-md-3 {
        order: 3; }
      .order-md-4 {
        order: 4; }
      .order-md-5 {
        order: 5; }
      .order-md-6 {
        order: 6; }
      .order-md-7 {
        order: 7; }
      .order-md-8 {
        order: 8; }
      .order-md-9 {
        order: 9; }
      .order-md-10 {
        order: 10; }
      .order-md-11 {
        order: 11; }
      .order-md-12 {
        order: 12; }
      .offset-md-0 {
        margin-left: 0; }
      .offset-md-1 {
        margin-left: 8.3333333333%; }
      .offset-md-2 {
        margin-left: 16.6666666667%; }
      .offset-md-3 {
        margin-left: 25%; }
      .offset-md-4 {
        margin-left: 33.3333333333%; }
      .offset-md-5 {
        margin-left: 41.6666666667%; }
      .offset-md-6 {
        margin-left: 50%; }
      .offset-md-7 {
        margin-left: 58.3333333333%; }
      .offset-md-8 {
        margin-left: 66.6666666667%; }
      .offset-md-9 {
        margin-left: 75%; }
      .offset-md-10 {
        margin-left: 83.3333333333%; }
      .offset-md-11 {
        margin-left: 91.6666666667%; } }

@media (min-width: 992px) {
    .col-lg {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
      .col-lg-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none; }
      .col-lg-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%; }
      .col-lg-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%; }
      .col-lg-3 {
        flex: 0 0 25%;
        max-width: 25%; }
      .col-lg-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%; }
      .col-lg-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%; }
      .col-lg-6 {
        flex: 0 0 50%;
        max-width: 50%; }
      .col-lg-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%; }
      .col-lg-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%; }
      .col-lg-9 {
        flex: 0 0 75%;
        max-width: 75%; }
      .col-lg-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%; }
      .col-lg-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%; }
      .col-lg-12 {
        flex: 0 0 100%;
        max-width: 100%; }
      .order-lg-first {
        order: -1; }
      .order-lg-last {
        order: 13; }
      .order-lg-0 {
        order: 0; }
      .order-lg-1 {
        order: 1; }
      .order-lg-2 {
        order: 2; }
      .order-lg-3 {
        order: 3; }
      .order-lg-4 {
        order: 4; }
      .order-lg-5 {
        order: 5; }
      .order-lg-6 {
        order: 6; }
      .order-lg-7 {
        order: 7; }
      .order-lg-8 {
        order: 8; }
      .order-lg-9 {
        order: 9; }
      .order-lg-10 {
        order: 10; }
      .order-lg-11 {
        order: 11; }
      .order-lg-12 {
        order: 12; }
      .offset-lg-0 {
        margin-left: 0; }
      .offset-lg-1 {
        margin-left: 8.3333333333%; }
      .offset-lg-2 {
        margin-left: 16.6666666667%; }
      .offset-lg-3 {
        margin-left: 25%; }
      .offset-lg-4 {
        margin-left: 33.3333333333%; }
      .offset-lg-5 {
        margin-left: 41.6666666667%; }
      .offset-lg-6 {
        margin-left: 50%; }
      .offset-lg-7 {
        margin-left: 58.3333333333%; }
      .offset-lg-8 {
        margin-left: 66.6666666667%; }
      .offset-lg-9 {
        margin-left: 75%; }
      .offset-lg-10 {
        margin-left: 83.3333333333%; }
      .offset-lg-11 {
        margin-left: 91.6666666667%; } }

@media (min-width: 1200px) {
    .col-xl {
      flex-basis: 0;
      flex-grow: 1;
      max-width: 100%; }
      .col-xl-auto {
        flex: 0 0 auto;
        width: auto;
        max-width: none; }
      .col-xl-1 {
        flex: 0 0 8.3333333333%;
        max-width: 8.3333333333%; }
      .col-xl-2 {
        flex: 0 0 16.6666666667%;
        max-width: 16.6666666667%; }
      .col-xl-3 {
        flex: 0 0 25%;
        max-width: 25%; }
      .col-xl-4 {
        flex: 0 0 33.3333333333%;
        max-width: 33.3333333333%; }
      .col-xl-5 {
        flex: 0 0 41.6666666667%;
        max-width: 41.6666666667%; }
      .col-xl-6 {
        flex: 0 0 50%;
        max-width: 50%; }
      .col-xl-7 {
        flex: 0 0 58.3333333333%;
        max-width: 58.3333333333%; }
      .col-xl-8 {
        flex: 0 0 66.6666666667%;
        max-width: 66.6666666667%; }
      .col-xl-9 {
        flex: 0 0 75%;
        max-width: 75%; }
      .col-xl-10 {
        flex: 0 0 83.3333333333%;
        max-width: 83.3333333333%; }
      .col-xl-11 {
        flex: 0 0 91.6666666667%;
        max-width: 91.6666666667%; }
      .col-xl-12 {
        flex: 0 0 100%;
        max-width: 100%; }
      .order-xl-first {
        order: -1; }
      .order-xl-last {
        order: 13; }
      .order-xl-0 {
        order: 0; }
      .order-xl-1 {
        order: 1; }
      .order-xl-2 {
        order: 2; }
      .order-xl-3 {
        order: 3; }
      .order-xl-4 {
        order: 4; }
      .order-xl-5 {
        order: 5; }
      .order-xl-6 {
        order: 6; }
      .order-xl-7 {
        order: 7; }
      .order-xl-8 {
        order: 8; }
      .order-xl-9 {
        order: 9; }
      .order-xl-10 {
        order: 10; }
      .order-xl-11 {
        order: 11; }
      .order-xl-12 {
        order: 12; }
      .offset-xl-0 {
        margin-left: 0; }
      .offset-xl-1 {
        margin-left: 8.3333333333%; }
      .offset-xl-2 {
        margin-left: 16.6666666667%; }
      .offset-xl-3 {
        margin-left: 25%; }
      .offset-xl-4 {
        margin-left: 33.3333333333%; }
      .offset-xl-5 {
        margin-left: 41.6666666667%; }
      .offset-xl-6 {
        margin-left: 50%; }
      .offset-xl-7 {
        margin-left: 58.3333333333%; }
      .offset-xl-8 {
        margin-left: 66.6666666667%; }
      .offset-xl-9 {
        margin-left: 75%; }
      .offset-xl-10 {
        margin-left: 83.3333333333%; }
      .offset-xl-11 {
        margin-left: 91.6666666667%; } }

.carousel {
  position: relative; }

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden; }

.carousel-item {
  position: relative;
  display: none;
  align-items: center;
  width: 100%;
  -webkit-transition: transform 0.6s ease;
  -khtml-transition: transform 0.6s ease;
  -moz-transition: transform 0.6s ease;
  -ms-transition: transform 0.6s ease;
  -o-transition: transform 0.6s ease;
  transition: transform 0.6s ease;
  backface-visibility: hidden;
  perspective: 1000px; }

.carousel-item.active, .carousel-item-next, .carousel-item-prev {
  display: block; }

.carousel-item-next, .carousel-item-prev {
  position: absolute;
  top: 0; }

.carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
  transform: translateX(0); }

@supports (transform-style: preserve-3d) {
  transform: translate3d(0, 0, 0); }

.carousel-item-next, .active.carousel-item-right {
  transform: translateX(100%); }

@supports (transform-style: preserve-3d) {
  transform: translate3d(100%, 0, 0); }

.carousel-item-prev, .active.carousel-item-left {
  transform: translateX(-100%); }

@supports (transform-style: preserve-3d) {
  transform: translate3d(-100%, 0, 0); }

.carousel-control-prev, .carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15%;
  color: #fff;
  text-align: center;
  opacity: 0.5; }

.carousel-control-prev:hover, .carousel-control-next:hover, .carousel-control-prev:focus, .carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9; }

.carousel-control-prev {
  left: 0; }

.carousel-control-next {
  right: 0; }

.carousel-control-prev-icon, .carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: transparent no-repeat center center;
  background-size: 100% 100%; }

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M5.25 0l-4 4 4 4 1.5-1.5-2.5-2.5 2.5-2.5-1.5-1.5z'/%3E%3C/svg%3E"); }

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' viewBox='0 0 8 8'%3E%3Cpath d='M2.75 0l-1.5 1.5 2.5 2.5-2.5 2.5 1.5 1.5 4-4-4-4z'/%3E%3C/svg%3E"); }

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 10px;
  left: 0;
  z-index: 15;
  display: flex;
  justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none; }

.carousel-indicators li {
  position: relative;
  flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  background-color: rgba(255, 255, 255, 0.5); }
  .carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""; }
  .carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""; }

.carousel-indicators .active {
  background-color: #fff; }

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center; }

.form-control {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) 2px 5px rgba(0, 0, 0, 0.4);
  -khtml-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) 2px 5px rgba(0, 0, 0, 0.4);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) 2px 5px rgba(0, 0, 0, 0.4);
  -ms-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) 2px 5px rgba(0, 0, 0, 0.4);
  -o-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) 2px 5px rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075) 2px 5px rgba(0, 0, 0, 0.4);
  -webkit-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -khtml-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -ms-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }

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

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }

.form-control::placeholder {
  color: #6c757d;
  opacity: 1; }

.form-control:disabled, .form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1; }

select.form-control:not([size]):not([multiple]) {
  height: calc(2.25rem + 2px); }

select.form-control:focus::-ms-value {
  color: #495057;
  background-color: #fff; }

.form-control-file, .form-control-range {
  display: block;
  width: 100%; }

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5; }

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 1.25rem;
  line-height: 1.5; }

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 0.875rem;
  line-height: 1.5; }

.form-control-plaintext {
  display: block;
  width: 100%;
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
  margin-bottom: 0;
  line-height: 1.5;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0; }

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0; }

.form-control-sm {
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  -webkit-border-radius: 0.2rem;
  -khtml-border-radius: 0.2rem;
  -moz-border-radius: 0.2rem;
  -ms-border-radius: 0.2rem;
  -o-border-radius: 0.2rem;
  border-radius: 0.2rem; }

select.form-control-sm:not([size]):not([multiple]) {
  height: calc(1.8125rem + 2px); }

.form-control-lg {
  padding: 0.5rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  -webkit-border-radius: 0.3rem;
  -khtml-border-radius: 0.3rem;
  -moz-border-radius: 0.3rem;
  -ms-border-radius: 0.3rem;
  -o-border-radius: 0.3rem;
  border-radius: 0.3rem; }

select.form-control-lg:not([size]):not([multiple]) {
  height: calc(2.875rem + 2px); }

.form-group {
  margin-bottom: 1rem; }

.form-text {
  display: block;
  margin-top: 0.25rem; }

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px; }

.form-row > .col, .form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px; }

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem; }

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem; }

.form-check-input:disabled ~ .form-check-label {
  color: #6c757d; }

.form-check-label {
  margin-bottom: 0; }

.form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem; }

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0; }

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 13px;
  color: #28a745; }

.valid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(40, 167, 69, 0.8);
  border-radius: 0.2rem; }

.was-validated .form-control:valid, .was-validated .custom-select:valid, .form-control.is-valid, .custom-select.is-valid {
  border-color: #28a745; }
  .was-validated .form-control:valid:focus, .was-validated .custom-select:valid:focus, .form-control.is-valid:focus, .custom-select.is-valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }
  .was-validated .form-control:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-feedback, .form-control.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-tooltip, .custom-select.is-valid ~ .valid-tooltip {
    display: block; }

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #28a745; }
  .was-validated .form-check-input:valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-tooltip {
    display: block; }

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #28a745; }
  .was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
    background-color: #71dd8a; }
  .was-validated .custom-control-input:valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip, .custom-control-input.is-valid ~ .valid-tooltip {
    display: block; }
  .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
    background-color: #34ce57; }
  .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #28a745; }
  .was-validated .custom-file-input:valid ~ .custom-file-label::before, .custom-file-input.is-valid ~ .custom-file-label::before {
    border-color: inherit; }
  .was-validated .custom-file-input:valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip, .custom-file-input.is-valid ~ .valid-tooltip {
    display: block; }
  .was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25); }

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 13px;
  color: #dc3545; }

.invalid-tooltip {
  position: absolute;
  top: 100%;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.5rem;
  margin-top: 0.1rem;
  font-size: 0.875rem;
  line-height: 1;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.8);
  border-radius: 0.2rem; }

.was-validated .form-control:invalid, .was-validated .custom-select:invalid, .form-control.is-invalid, .custom-select.is-invalid {
  border-color: #dc3545; }
  .was-validated .form-control:invalid:focus, .was-validated .custom-select:invalid:focus, .form-control.is-invalid:focus, .custom-select.is-invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }
  .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-tooltip, .custom-select.is-invalid ~ .invalid-tooltip {
    display: block; }

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545; }
  .was-validated .form-check-input:invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-tooltip {
    display: block; }

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545; }
  .was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
    background-color: #efa2a9; }
  .was-validated .custom-control-input:invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip, .custom-control-input.is-invalid ~ .invalid-tooltip {
    display: block; }
  .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
    background-color: #e4606d; }
  .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545; }
  .was-validated .custom-file-input:invalid ~ .custom-file-label::before, .custom-file-input.is-invalid ~ .custom-file-label::before {
    border-color: inherit; }
  .was-validated .custom-file-input:invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip, .custom-file-input.is-invalid ~ .invalid-tooltip {
    display: block; }
  .was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25); }

.form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center; }

.form-inline .form-check {
  width: 100%; }

@media (min-width: 576px) {
    .form-inline label {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 0; }
      .form-inline .form-group {
        display: flex;
        flex: 0 0 auto;
        flex-flow: row wrap;
        align-items: center;
        margin-bottom: 0; }
      .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle; }
      .form-inline .form-control-plaintext {
        display: inline-block; }
      .form-inline .input-group {
        width: auto; }
      .form-inline .form-check {
        display: flex;
        align-items: center;
        justify-content: center;
        width: auto;
        padding-left: 0; }
      .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: 0.25rem;
        margin-left: 0; }
      .form-inline .custom-control {
        align-items: center;
        justify-content: center; }
      .form-inline .custom-control-label {
        margin-bottom: 0; } }

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  -khtml-transition: opacity 0.15s linear;
  -moz-transition: opacity 0.15s linear;
  -ms-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear; }

.fade.show {
  opacity: 1; }

.collapse {
  display: none; }

.collapse.show {
  display: block; }

tr.collapse.show {
  display: table-row; }

tbody.collapse.show {
  display: table-row-group; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -khtml-transition: height 0.35s ease;
  -moz-transition: height 0.35s ease;
  -ms-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease; }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

.d-inline-block {
  display: inline-block !important; }

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
    .d-sm-none {
      display: none !important; }
      .d-sm-inline {
        display: inline !important; }
      .d-sm-inline-block {
        display: inline-block !important; }
      .d-sm-block {
        display: block !important; }
      .d-sm-table {
        display: table !important; }
      .d-sm-table-row {
        display: table-row !important; }
      .d-sm-table-cell {
        display: table-cell !important; }
      .d-sm-flex {
        display: flex !important; }
      .d-sm-inline-flex {
        display: inline-flex !important; } }

@media (min-width: 768px) {
    .d-md-none {
      display: none !important; }
      .d-md-inline {
        display: inline !important; }
      .d-md-inline-block {
        display: inline-block !important; }
      .d-md-block {
        display: block !important; }
      .d-md-table {
        display: table !important; }
      .d-md-table-row {
        display: table-row !important; }
      .d-md-table-cell {
        display: table-cell !important; }
      .d-md-flex {
        display: flex !important; }
      .d-md-inline-flex {
        display: inline-flex !important; } }

@media (min-width: 992px) {
    .d-lg-none {
      display: none !important; }
      .d-lg-inline {
        display: inline !important; }
      .d-lg-inline-block {
        display: inline-block !important; }
      .d-lg-block {
        display: block !important; }
      .d-lg-table {
        display: table !important; }
      .d-lg-table-row {
        display: table-row !important; }
      .d-lg-table-cell {
        display: table-cell !important; }
      .d-lg-flex {
        display: flex !important; }
      .d-lg-inline-flex {
        display: inline-flex !important; } }

@media (min-width: 1200px) {
    .d-xl-none {
      display: none !important; }
      .d-xl-inline {
        display: inline !important; }
      .d-xl-inline-block {
        display: inline-block !important; }
      .d-xl-block {
        display: block !important; }
      .d-xl-table {
        display: table !important; }
      .d-xl-table-row {
        display: table-row !important; }
      .d-xl-table-cell {
        display: table-cell !important; }
      .d-xl-flex {
        display: flex !important; }
      .d-xl-inline-flex {
        display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }

  .d-print-inline {
    display: inline !important; }

  .d-print-inline-block {
    display: inline-block !important; }

  .d-print-block {
    display: block !important; }

  .d-print-table {
    display: table !important; }

  .d-print-table-row {
    display: table-row !important; }

  .d-print-table-cell {
    display: table-cell !important; }

  .d-print-flex {
    display: flex !important; }

  .d-print-inline-flex {
    display: inline-flex !important; } }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 576px) {
    .flex-sm-row {
      flex-direction: row !important; }
      .flex-sm-column {
        flex-direction: column !important; }
      .flex-sm-row-reverse {
        flex-direction: row-reverse !important; }
      .flex-sm-column-reverse {
        flex-direction: column-reverse !important; }
      .flex-sm-wrap {
        flex-wrap: wrap !important; }
      .flex-sm-nowrap {
        flex-wrap: nowrap !important; }
      .flex-sm-wrap-reverse {
        flex-wrap: wrap-reverse !important; }
      .justify-content-sm-start {
        justify-content: flex-start !important; }
      .justify-content-sm-end {
        justify-content: flex-end !important; }
      .justify-content-sm-center {
        justify-content: center !important; }
      .justify-content-sm-between {
        justify-content: space-between !important; }
      .justify-content-sm-around {
        justify-content: space-around !important; }
      .align-items-sm-start {
        align-items: flex-start !important; }
      .align-items-sm-end {
        align-items: flex-end !important; }
      .align-items-sm-center {
        align-items: center !important; }
      .align-items-sm-baseline {
        align-items: baseline !important; }
      .align-items-sm-stretch {
        align-items: stretch !important; }
      .align-content-sm-start {
        align-content: flex-start !important; }
      .align-content-sm-end {
        align-content: flex-end !important; }
      .align-content-sm-center {
        align-content: center !important; }
      .align-content-sm-between {
        align-content: space-between !important; }
      .align-content-sm-around {
        align-content: space-around !important; }
      .align-content-sm-stretch {
        align-content: stretch !important; }
      .align-self-sm-auto {
        align-self: auto !important; }
      .align-self-sm-start {
        align-self: flex-start !important; }
      .align-self-sm-end {
        align-self: flex-end !important; }
      .align-self-sm-center {
        align-self: center !important; }
      .align-self-sm-baseline {
        align-self: baseline !important; }
      .align-self-sm-stretch {
        align-self: stretch !important; } }

@media (min-width: 768px) {
    .flex-md-row {
      flex-direction: row !important; }
      .flex-md-column {
        flex-direction: column !important; }
      .flex-md-row-reverse {
        flex-direction: row-reverse !important; }
      .flex-md-column-reverse {
        flex-direction: column-reverse !important; }
      .flex-md-wrap {
        flex-wrap: wrap !important; }
      .flex-md-nowrap {
        flex-wrap: nowrap !important; }
      .flex-md-wrap-reverse {
        flex-wrap: wrap-reverse !important; }
      .justify-content-md-start {
        justify-content: flex-start !important; }
      .justify-content-md-end {
        justify-content: flex-end !important; }
      .justify-content-md-center {
        justify-content: center !important; }
      .justify-content-md-between {
        justify-content: space-between !important; }
      .justify-content-md-around {
        justify-content: space-around !important; }
      .align-items-md-start {
        align-items: flex-start !important; }
      .align-items-md-end {
        align-items: flex-end !important; }
      .align-items-md-center {
        align-items: center !important; }
      .align-items-md-baseline {
        align-items: baseline !important; }
      .align-items-md-stretch {
        align-items: stretch !important; }
      .align-content-md-start {
        align-content: flex-start !important; }
      .align-content-md-end {
        align-content: flex-end !important; }
      .align-content-md-center {
        align-content: center !important; }
      .align-content-md-between {
        align-content: space-between !important; }
      .align-content-md-around {
        align-content: space-around !important; }
      .align-content-md-stretch {
        align-content: stretch !important; }
      .align-self-md-auto {
        align-self: auto !important; }
      .align-self-md-start {
        align-self: flex-start !important; }
      .align-self-md-end {
        align-self: flex-end !important; }
      .align-self-md-center {
        align-self: center !important; }
      .align-self-md-baseline {
        align-self: baseline !important; }
      .align-self-md-stretch {
        align-self: stretch !important; } }

@media (min-width: 992px) {
    .flex-lg-row {
      flex-direction: row !important; }
      .flex-lg-column {
        flex-direction: column !important; }
      .flex-lg-row-reverse {
        flex-direction: row-reverse !important; }
      .flex-lg-column-reverse {
        flex-direction: column-reverse !important; }
      .flex-lg-wrap {
        flex-wrap: wrap !important; }
      .flex-lg-nowrap {
        flex-wrap: nowrap !important; }
      .flex-lg-wrap-reverse {
        flex-wrap: wrap-reverse !important; }
      .justify-content-lg-start {
        justify-content: flex-start !important; }
      .justify-content-lg-end {
        justify-content: flex-end !important; }
      .justify-content-lg-center {
        justify-content: center !important; }
      .justify-content-lg-between {
        justify-content: space-between !important; }
      .justify-content-lg-around {
        justify-content: space-around !important; }
      .align-items-lg-start {
        align-items: flex-start !important; }
      .align-items-lg-end {
        align-items: flex-end !important; }
      .align-items-lg-center {
        align-items: center !important; }
      .align-items-lg-baseline {
        align-items: baseline !important; }
      .align-items-lg-stretch {
        align-items: stretch !important; }
      .align-content-lg-start {
        align-content: flex-start !important; }
      .align-content-lg-end {
        align-content: flex-end !important; }
      .align-content-lg-center {
        align-content: center !important; }
      .align-content-lg-between {
        align-content: space-between !important; }
      .align-content-lg-around {
        align-content: space-around !important; }
      .align-content-lg-stretch {
        align-content: stretch !important; }
      .align-self-lg-auto {
        align-self: auto !important; }
      .align-self-lg-start {
        align-self: flex-start !important; }
      .align-self-lg-end {
        align-self: flex-end !important; }
      .align-self-lg-center {
        align-self: center !important; }
      .align-self-lg-baseline {
        align-self: baseline !important; }
      .align-self-lg-stretch {
        align-self: stretch !important; } }

@media (min-width: 1200px) {
    .flex-xl-row {
      flex-direction: row !important; }
      .flex-xl-column {
        flex-direction: column !important; }
      .flex-xl-row-reverse {
        flex-direction: row-reverse !important; }
      .flex-xl-column-reverse {
        flex-direction: column-reverse !important; }
      .flex-xl-wrap {
        flex-wrap: wrap !important; }
      .flex-xl-nowrap {
        flex-wrap: nowrap !important; }
      .flex-xl-wrap-reverse {
        flex-wrap: wrap-reverse !important; }
      .justify-content-xl-start {
        justify-content: flex-start !important; }
      .justify-content-xl-end {
        justify-content: flex-end !important; }
      .justify-content-xl-center {
        justify-content: center !important; }
      .justify-content-xl-between {
        justify-content: space-between !important; }
      .justify-content-xl-around {
        justify-content: space-around !important; }
      .align-items-xl-start {
        align-items: flex-start !important; }
      .align-items-xl-end {
        align-items: flex-end !important; }
      .align-items-xl-center {
        align-items: center !important; }
      .align-items-xl-baseline {
        align-items: baseline !important; }
      .align-items-xl-stretch {
        align-items: stretch !important; }
      .align-content-xl-start {
        align-content: flex-start !important; }
      .align-content-xl-end {
        align-content: flex-end !important; }
      .align-content-xl-center {
        align-content: center !important; }
      .align-content-xl-between {
        align-content: space-between !important; }
      .align-content-xl-around {
        align-content: space-around !important; }
      .align-content-xl-stretch {
        align-content: stretch !important; }
      .align-self-xl-auto {
        align-self: auto !important; }
      .align-self-xl-start {
        align-self: flex-start !important; }
      .align-self-xl-end {
        align-self: flex-end !important; }
      .align-self-xl-center {
        align-self: center !important; }
      .align-self-xl-baseline {
        align-self: baseline !important; }
      .align-self-xl-stretch {
        align-self: stretch !important; } }

.text-justify {
  text-align: justify !important; }

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-left {
  text-align: left !important; }

.text-right {
  text-align: right !important; }

.text-center {
  text-align: center !important; }

@media (min-width: 576px) {
    .text-sm-left {
      text-align: left !important; }
      .text-sm-right {
        text-align: right !important; }
      .text-sm-center {
        text-align: center !important; } }

@media (min-width: 768px) {
    .text-md-left {
      text-align: left !important; }
      .text-md-right {
        text-align: right !important; }
      .text-md-center {
        text-align: center !important; } }

@media (min-width: 992px) {
    .text-lg-left {
      text-align: left !important; }
      .text-lg-right {
        text-align: right !important; }
      .text-lg-center {
        text-align: center !important; } }

@media (min-width: 1200px) {
    .text-xl-left {
      text-align: left !important; }
      .text-xl-right {
        text-align: right !important; }
      .text-xl-center {
        text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

.font-weight-light {
  font-weight: 300 !important; }

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-bold {
  font-weight: 700 !important; }

.font-italic {
  font-style: italic !important; }

.text-white {
  color: #fff !important; }

.text-primary {
  color: #007bff !important; }

a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important; }

.text-secondary {
  color: #6c757d !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important; }

.text-success {
  color: #28a745 !important; }

a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important; }

.text-info {
  color: #17a2b8 !important; }

a.text-info:hover, a.text-info:focus {
  color: #117a8b !important; }

.text-warning {
  color: #ffc107 !important; }

a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important; }

.text-danger {
  color: #dc3545 !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important; }

.text-light {
  color: #f8f9fa !important; }

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important; }

.text-dark {
  color: #343a40 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important; }

.text-muted {
  color: #6c757d !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.wp-caption, .wp-caption-text, .sticky, .screen-reader-text, .gallery-caption, .bypostauthor {
  visibility: visible; }
/* Image */
img {
  height: initial;
  vertical-align: top; }

img.alignleft {
  margin: 0 15px 15px 0;
  float: left; }

img.alignright {
  margin: 0 0 15px 15px;
  float: right; }

img.aligncenter {
  margin: 0 0 15px 0; }

img[width="0"], img[height="0"], img[width="1"], img[height="1"] {
  width: 100%;
  height: auto; }

img.bw {
  -webkit-filter: grayscale(100%);
  /* Safari 6.0 - 9.0 */
  filter: grayscale(100%); }

.rtl img.alignleft {
  margin: 0 0 15px 15px;
  float: right; }
  .rtl img.alignright {
    margin: 0 15px 15px 0;
    float: left; }
/* WP Caption */
[id*="attachment_"], [id^="attachment_"] {
  margin-bottom: 30px !important; }

.wp-caption {
  max-width: 100%; }

.wp-caption.alignleft {
  margin: 0 15px 15px 0;
  float: left; }

.wp-caption.alignright {
  margin: 0 0 15px 15px;
  float: right; }

.wp-caption.aligncenter {
  margin: 0 auto; }

.wp-caption img {
  vertical-align: top;
  width: 100%; }

.wp-caption .wp-caption-text {
  margin-top: 0; }

.rtl .wp-caption {
  max-width: 100%; }
  .rtl .wp-caption.alignleft {
    margin: 0 0 15px 15px;
    float: right; }
  .rtl .wp-caption.alignright {
    margin: 0 15px 15px 0;
    float: left; }

.wp-caption-text {
  background-color: #eee;
  font-style: italic;
  padding: 10px 15px; }
/* Wordpress Gallery */
div[id*="gallery-"], div[id^="gallery-"] {
  margin: -15px -15px 0 -15px !important;
  display: flex;
  flex-wrap: wrap; }

div[id*="gallery-"] .gallery-item, div[id^="gallery-"] .gallery-item {
  margin: 0 !important;
  padding: 15px; }

.gallery-columns-2 .gallery-item {
  flex: 0 0 50%;
  max-width: 50%; }
/* Video / audio / iframe */
:root .mejs-layers .mejs-poster img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -moz-object-fit: cover;
  -ms-filter-object-fit: cover;
  -webkit-object-fit: cover; }

.mejs-overlay .mejs-overlay-button {
  background: url(../images/video-play-btn.png) center center no-repeat !important;
  filter: alpha(opacity=80);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
  -webkit-opacity: 0.8;
  -khtml-opacity: 0.8;
  -moz-opacity: 0.8;
  -ms-opacity: 0.8;
  -o-opacity: 0.8;
  opacity: 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; }

.mejs-overlay:hover .mejs-overlay-button {
  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; }

.mejs-controls {
  z-index: 1; }
/*--------------------------------------------------------------
 1.0 Normalize
 --------------------------------------------------------------*/
html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

article, aside, footer, header, nav, section {
  display: block; }

h1 {
  font-size: 2em;
  margin: 0.67em 0; }

figcaption, figure, main {
  display: block; }

figure {
  margin: 1em 0; }

hr {
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0;
  overflow: visible; }

pre {
  font-family: monospace, monospace;
  font-size: 1em; }

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects; }

a:active, a:hover {
  outline-width: 0; }

abbr[title] {
  text-decoration: none; }

b, strong {
  font-weight: inherit; }

b, strong {
  font-weight: 700; }

code, kbd, samp {
  background-color: rgba(0, 0, 0, 0.05);
  font-family: monospace, monospace;
  font-size: 1em;
  padding: 0.15em 0.5407911001em;
  border-radius: 2px; }

dfn {
  font-style: italic; }

mark {
  background-color: #eee;
  color: #222; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

audio, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

img {
  border-style: none; }

svg:not(:root) {
  overflow: hidden; }

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0; }

button, input {
  overflow: visible; }

button, select {
  text-transform: none; }

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

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

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

fieldset {
  border: 1px solid #bbb;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

legend {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal; }

progress {
  display: inline-block;
  vertical-align: baseline; }

textarea {
  overflow: auto; }

[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0; }

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto; }

[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px; }

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit; }

details, menu {
  display: block; }

summary {
  display: list-item; }

canvas {
  display: inline-block; }

template {
  display: none; }

[hidden] {
  display: none; }

.first {
  clear: both; }

.last {
  margin-right: 0; }

img.bottom-align {
  vertical-align: bottom; }

figcaption, .entry-caption {
  padding: 2px 0 12px; }

figcaption p, .entry-caption p {
  margin-bottom: 0; }

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; }

.screen-reader-text:focus {
  background-color: #f1f1f1;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

.wp-caption-text {
  font-style: italic;
  line-height: 1.35;
  font-size: 13px; }

.gallery-caption {
  font-family: inherit; }

.alignleft {
  display: inline;
  float: left;
  margin-right: 1.5em; }

.alignright {
  display: inline;
  float: right;
  margin-left: 1.5em; }

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto; }

.dd-select {
  border: 0 !important; }

select.woocommerce-currency-switcher {
  border: 0;
  padding: 0;
  font-size: 13px;
  line-height: 1;
  color: #666; }

dfn, cite, em, i {
  font-style: italic; }

.clear:before, .clear:after, .entry-content:before, .entry-content:after, .entry-footer:before, .entry-footer:after, .comment-content:before, .comment-content:after, .site-header:before, .site-header:after, .site-content:before, .site-content:after, .site-footer:before, .site-footer:after, .nav-links:before, .nav-links:after, .pagination:before, .pagination:after, .comment-author:before, .comment-author:after, .widget-area:before, .widget-area:after, .widget:before, .widget:after, .comment-meta:before, .comment-meta:after {
  content: "";
  display: table;
  table-layout: fixed; }

.clear:after, .entry-content:after, .entry-footer:after, .comment-content:after, .site-header:after, .site-content:after, .site-footer:after, .nav-links:after, .pagination:after, .comment-author:after, .widget-area:after, .widget:after, .comment-meta:after {
  clear: both; }
/*--------------------------------------------------------------
 2.0 Typography
 --------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  color: #333;
  word-break: break-word;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  line-height: 1.2;
  font-weight: 600; }

h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
  color: inherit;
  -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; }
  h1 a:first-child, h2 a:first-child, h3 a:first-child, h4 a:first-child, h5 a:first-child, h6 a:first-child {
    margin-top: 0; }
  h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover, h6 a:hover {
    color: #71b61b; }

h1 {
  font-size: 32px; }

h2 {
  font-size: 24px; }

h3 {
  font-size: 22px; }

h4 {
  font-size: 18px; }

h5 {
  font-size: 16px; }

h6 {
  font-size: 14px; }

p {
  margin-bottom: 15px; }

p:last-child {
  margin-bottom: 0; }

table {
  width: 100%;
  max-width: 100%;
  margin-bottom: 2.2906835em;
  border-spacing: 0;
  border-collapse: separate; }

table caption {
  padding: 1.41575em;
  font-weight: 600; }

table th {
  background: #f2f2f2;
  font-weight: 500; }

table th, table td {
  padding: 1em 1.618em;
  vertical-align: top;
  text-align: left; }

table thead th {
  vertical-align: middle; }

table tbody td {
  background: #fafafa; }

table tbody tr:nth-child(2n) td {
  background: #f7f7f7; }

ul, ol {
  margin: 0 0 0 20px;
  padding: 0; }

ul li:last-child, ol li:last-child {
  padding-bottom: 0; }

ul ul, ol ul, ul ol, ol ol {
  padding-left: 20px; }

ul {
  list-style: disc; }

ol {
  list-style: decimal; }

.rtl ul ul, .rtl ol ul, .rtl ul ol, .rtl ol ol {
  padding-left: 0;
  padding-right: 20px; }

.rtl ol {
  padding-right: 20px;
  padding-left: 0; }

blockquote {
  color: #989898;
  font-size: 18px;
  line-height: 28px;
  padding: 46px 0 42px 0;
  margin-bottom: 0;
  background: #f5f5f5;
  border-radius: 0;
  border-left: 5px solid #d93;
  position: relative;
  margin: 42px 0 42px 0; }

blockquote p {
  position: relative;
  font-style: inherit;
  font-size: 16px;
  line-height: 24px;
  text-align: left;
  margin: 0 38px 0 43px; }
  blockquote p:before {
    content: none;
    font-size: 72px;
    display: inline-block;
    position: relative;
    margin-right: 15px;
    font-style: normal;
    position: absolute;
    left: 0;
    top: 10px; }
  blockquote p:after {
    content: none;
    font-size: 72px;
    display: inline-block;
    position: relative;
    font-style: normal;
    position: absolute;
    right: 0;
    bottom: 7px; }

blockquote cite {
  position: absolute;
  right: -38px;
  bottom: -84px;
  color: #000;
  font-size: 16px;
  line-height: 24px;
  font-style: italic; }

img, figure {
  max-width: 100%;
  height: auto; }

address {
  margin: 0 0 10px; }

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em; }

:focus {
  outline: none; }

a {
  color: #333;
  text-decoration: 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; }

a:hover {
  color: #71b61b;
  text-decoration: none; }

a:active, a:focus {
  text-decoration: none; }

a[data-toggle="popover"] {
  cursor: pointer; }

.navigation {
  display: block;
  margin: 0 -5px; }

.navigation .screen-reader-text {
  display: none; }

.navigation.page-links a, .navigation.page-links > span:not(.page-links-title), .navigation .page-numbers {
  margin: 0 5px;
  color: #333;
  display: inline-block; }
  .navigation.page-links a.current, .navigation.page-links > span:not(.page-links-title).current, .navigation .page-numbers.current, .navigation.page-links a:hover, .navigation.page-links > span:not(.page-links-title):hover, .navigation .page-numbers:hover {
    color: #d93; }
  .navigation.page-links a.current, .navigation.page-links > span:not(.page-links-title).current, .navigation .page-numbers.current {
    cursor: not-allowed; }
  .navigation.page-links a:nth-child(n+10):before, .navigation.page-links > span:not(.page-links-title):nth-child(n+10):before, .navigation .page-numbers:nth-child(n+10):before, .navigation.page-links a.next:before, .navigation.page-links > span:not(.page-links-title).next:before, .navigation .page-numbers.next:before, .navigation.page-links a.prev:before, .navigation.page-links > span:not(.page-links-title).prev:before, .navigation .page-numbers.prev:before, .navigation.page-links a.dots:before, .navigation.page-links > span:not(.page-links-title).dots:before, .navigation .page-numbers.dots:before {
    content: ""; }

.navigation.page-links > span:not(.page-links-title) {
  color: #d93;
  cursor: not-allowed; }

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

form input[type="text"], form input[type="email"], form input[type="phone"], form input[type="tel"], form input[type="password"], form input[type="search"], form input[type="time"], form input[type="url"], form input[type="file"], form input[type="image"], form select, form textarea {
  width: 100%;
  padding: 13px 35px;
  font-size: 13px;
  line-height: 27px;
  height: 55px;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  text-align: inherit;
  letter-spacing: 0.03em;
  color: #333;
  -webkit-border-radius: 27.5px;
  -khtml-border-radius: 27.5px;
  -moz-border-radius: 27.5px;
  -ms-border-radius: 27.5px;
  -o-border-radius: 27.5px;
  border-radius: 27.5px;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -khtml-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -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; }
  form input[type="text"]::-webkit-input-placeholder, form input[type="email"]::-webkit-input-placeholder, form input[type="phone"]::-webkit-input-placeholder, form input[type="tel"]::-webkit-input-placeholder, form input[type="password"]::-webkit-input-placeholder, form input[type="search"]::-webkit-input-placeholder, form input[type="time"]::-webkit-input-placeholder, form input[type="url"]::-webkit-input-placeholder, form input[type="file"]::-webkit-input-placeholder, form input[type="image"]::-webkit-input-placeholder, form select::-webkit-input-placeholder, form textarea::-webkit-input-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: 0.03em;
    font-style: italic; }
  form input[type="text"]:-moz-placeholder, form input[type="email"]:-moz-placeholder, form input[type="phone"]:-moz-placeholder, form input[type="tel"]:-moz-placeholder, form input[type="password"]:-moz-placeholder, form input[type="search"]:-moz-placeholder, form input[type="time"]:-moz-placeholder, form input[type="url"]:-moz-placeholder, form input[type="file"]:-moz-placeholder, form input[type="image"]:-moz-placeholder, form select:-moz-placeholder, form textarea:-moz-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: 0.03em;
    font-style: italic; }
  form input[type="text"]::-moz-placeholder, form input[type="email"]::-moz-placeholder, form input[type="phone"]::-moz-placeholder, form input[type="tel"]::-moz-placeholder, form input[type="password"]::-moz-placeholder, form input[type="search"]::-moz-placeholder, form input[type="time"]::-moz-placeholder, form input[type="url"]::-moz-placeholder, form input[type="file"]::-moz-placeholder, form input[type="image"]::-moz-placeholder, form select::-moz-placeholder, form textarea::-moz-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: 0.03em;
    font-style: italic; }
  form input[type="text"]:-ms-input-placeholder, form input[type="email"]:-ms-input-placeholder, form input[type="phone"]:-ms-input-placeholder, form input[type="tel"]:-ms-input-placeholder, form input[type="password"]:-ms-input-placeholder, form input[type="search"]:-ms-input-placeholder, form input[type="time"]:-ms-input-placeholder, form input[type="url"]:-ms-input-placeholder, form input[type="file"]:-ms-input-placeholder, form input[type="image"]:-ms-input-placeholder, form select:-ms-input-placeholder, form textarea:-ms-input-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: 0.03em;
    font-style: italic; }
  form input[type="text"]:hover, form input[type="email"]:hover, form input[type="phone"]:hover, form input[type="tel"]:hover, form input[type="password"]:hover, form input[type="search"]:hover, form input[type="time"]:hover, form input[type="url"]:hover, form input[type="file"]:hover, form input[type="image"]:hover, form select:hover, form textarea:hover, form input[type="text"]:active, form input[type="email"]:active, form input[type="phone"]:active, form input[type="tel"]:active, form input[type="password"]:active, form input[type="search"]:active, form input[type="time"]:active, form input[type="url"]:active, form input[type="file"]:active, form input[type="image"]:active, form select:active, form textarea:active, form input[type="text"]:focus, form input[type="email"]:focus, form input[type="phone"]:focus, form input[type="tel"]:focus, form input[type="password"]:focus, form input[type="search"]:focus, form input[type="time"]:focus, form input[type="url"]:focus, form input[type="file"]:focus, form input[type="image"]:focus, form select:focus, form textarea:focus {
    color: #333;
    border-color: #d93;
    -webkit-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.2);
    -khtml-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.2);
    -ms-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.2);
    -o-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.2);
    box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.2); }
  form input[type="text"].require, form input[type="email"].require, form input[type="phone"].require, form input[type="tel"].require, form input[type="password"].require, form input[type="search"].require, form input[type="time"].require, form input[type="url"].require, form input[type="file"].require, form input[type="image"].require, form select.require, form textarea.require, form input[type="text"].required, form input[type="email"].required, form input[type="phone"].required, form input[type="tel"].required, form input[type="password"].required, form input[type="search"].required, form input[type="time"].required, form input[type="url"].required, form input[type="file"].required, form input[type="image"].required, form select.required, form textarea.required {
    border-color: red; }

select, textarea {
  width: 100%;
  padding: 13px 35px;
  font-size: 13px;
  line-height: 27px;
  border: 1px solid #d8d8d8;
  background-color: #fff;
  text-align: inherit;
  letter-spacing: 0.03em;
  color: #333;
  -webkit-border-radius: 27.5px;
  -khtml-border-radius: 27.5px;
  -moz-border-radius: 27.5px;
  -ms-border-radius: 27.5px;
  -o-border-radius: 27.5px;
  border-radius: 27.5px;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -khtml-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -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; }

select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #979797;
  font-size: 12px;
  letter-spacing: 0.03em;
  font-style: italic; }

select:-moz-placeholder, textarea:-moz-placeholder {
  color: #979797;
  font-size: 12px;
  letter-spacing: 0.03em;
  font-style: italic; }

select::-moz-placeholder, textarea::-moz-placeholder {
  color: #979797;
  font-size: 12px;
  letter-spacing: 0.03em;
  font-style: italic; }

select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #979797;
  font-size: 12px;
  letter-spacing: 0.03em;
  font-style: italic; }

select:hover, textarea:hover, select:active, textarea:active, select:focus, textarea:focus {
  color: #333;
  border-color: #d93; }

select.require, textarea.require, select.required, textarea.required {
  border-color: red; }

textarea {
  vertical-align: top; }
/* post-password-form */
form.post-password-form input[name="post_password"] {
  margin-bottom: 0; }

form.post-password-form [for*="pwbox-"] {
  display: inline-block; }
  form.post-password-form [for*="pwbox-"] + input[type="submit"] {
    padding: 13px 35px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 13px;
    line-height: 23px;
    border: 1px solid #d8d8d8;
    border-color: #71b61b;
    margin-top: 25px; }
  form.post-password-form [for*="pwbox-"] + input[type="submit"]:hover {
    border-color: transparent; }
/* Place Holder Text */
::-moz-placeholder {
  color: #979797; }

:-ms-input-placeholder {
  color: #979797; }

::-webkit-input-placeholder {
  color: #979797; }

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

.wpcf7-form p {
  margin-bottom: 10px; }

.wpcf7-form textarea {
  height: 185px; }

.wpcf7-form .btn-send {
  margin-bottom: 0;
  margin-top: 33px; }
/* for IE10+ */
select::-ms-expand {
  display: none; }

form input::-ms-clear, form input::-ms-reveal {
  display: none;
  width: 0;
  height: 0; }
/* Custom form */
.ajax-loader:not(.is-active) {
  display: none !important; }

@media (max-width: 767px) {
    .modal {
      padding-right: 0 !important; } }

.event-ticket-form {
  padding: 10px 15px; }

.event-ticket-form .form-close {
  float: right;
  color: #333;
  font-size: 20px;
  padding: 5px;
  cursor: pointer;
  line-height: 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; }
  .event-ticket-form .form-close:hover {
    color: #d93; }

.event-ticket-form .causes-form-wrap {
  padding: 30px 35px; }
  @media (max-width: 991px) {
    .event-ticket-form .causes-form-wrap {
      padding: 30px 0; } }

.event-ticket-form table th {
  font-weight: 700; }
  @media (max-width: 767px) {
      .event-ticket-form table th {
        display: none; } }
  @media (max-width: 767px) {
      .event-ticket-form table td {
        display: block; }
        .event-ticket-form table td:before {
          content: attr(data-title);
          display: block;
          font-weight: 700; } }
  @media (max-width: 576px) {
      .event-ticket-form table td {
        padding-left: 0;
        padding-right: 0;
        background-color: transparent !important; } }
  .event-ticket-form table td .btn {
    padding: 8px 12px;
    line-height: 1;
    border-radius: 3px;
    text-transform: capitalize; }
    @media (min-width: 768px) {
      .event-ticket-form table td .btn {
        float: right; } }
  .event-ticket-form table td p {
    margin: 0; }
  .event-ticket-form table table th, .event-ticket-form table table td {
    padding: 0;
    background-color: transparent !important; }

.event-ticket-form .row-amount input[type="text"] {
  width: 92%;
  margin-right: 5px; }
  .event-ticket-form .row-amount .dynamic-data {
    margin: 0 -5px; }
  .event-ticket-form .row-amount .dynamic-data .button {
    line-height: 1;
    padding: 15px 18px;
    margin: 5px;
    border-radius: 3px; }
    .event-ticket-form .row-amount .dynamic-data .button.active {
      color: #71b61b;
      border-color: #71b61b;
      background-color: transparent; }

.event-ticket-form .remove-ticket-item {
  text-align: center;
  color: #da5252;
  font-weight: 700;
  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; }
  .event-ticket-form .remove-ticket-item:hover {
    color: #d93; }

.event-ticket-form .action-row {
  margin-top: 20px; }
  @media (max-width: 576px) {
      .event-ticket-form .action-row .btn {
        padding: 10px 30px; } }

.loading-state {
  padding: 100px 70px;
  font-size: 20px; }

@media (max-width: 767px) {
    .loading-state {
      padding: 50px 15px;
      font-size: 16px; } }

.payment-result-form {
  padding: 50px 70px;
  font-size: 20px; }

@media (max-width: 767px) {
    .payment-result-form {
      padding: 30px 15px;
      font-size: 16px; } }

body {
  color: #888;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7333333333;
  word-wrap: break-word;
  padding: 0;
  margin: 0; }

.text-primary, .primary-color {
  color: #d93 !important; }

.text-whire {
  color: #fff; }

.silent-font {
  font-family: 'Trebuchet MS', Helvetica, sans-serif; }

.font-weight-500 {
  font-weight: 500; }
/* Page */
#red-page {
  overflow-x: hidden; }

#red-page.red-boxed {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto; }

.parallax_overlay {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.bg_overlay {
  position: absolute !important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0; }

.top-overlap-140 {
  margin-top: -140px; }
/**
 * Page loading
 * @since 1.0.0
 * @author Red Team
 */
#red-loading {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  -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; }

#red-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; }

#red-loading .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -50px 0 0 -50px; }

#red-loading .newton .ball {
  height: 50px;
  width: 50px;
  position: absolute;
  left: 50%;
  top: 50%; }
  #red-loading .newton .ball:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #d93;
    border-radius: 50%;
    position: absolute;
    margin-left: -50%;
    margin-top: -50%; }
  #red-loading .newton .ball-1:before {
    transform: translateX(-150%);
    animation: 1s ease-out 0s infinite left; }
  #red-loading .newton .ball-2:before {
    transform: translateX(-50%); }
  #red-loading .newton .ball-3:before {
    transform: translateX(50%); }
  #red-loading .newton .ball-4:before {
    transform: translateX(150%);
    animation: 1s ease-out 0s infinite right; }

#red-loading .wave.spinner {
  width: 150px;
  height: 30px; }
  #red-loading .wave .ball {
    height: 30px;
    width: 30px;
    float: left;
    background: #d93;
    border-radius: 50%;
    margin-right: 10px; }
  #red-loading .wave .ball-1 {
    animation: jump3 1.8s infinite ease-out; }
  #red-loading .wave .ball-2 {
    animation: jump2 1.8s infinite ease-out; }
  #red-loading .wave .ball-3 {
    animation: jump1 1.8s infinite ease-out; }
  #red-loading .wave .ball-4 {
    margin-right: 0;
    animation: wipe 1.8s infinite cubic-bezier(0.5, 0, 0.5, 1); }

#red-loading .circus .ball {
  height: 50px;
  width: 50px;
  position: absolute;
  left: 50%;
  top: 50%; }
  #red-loading .circus .ball:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background: #d93;
    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); }
  #red-loading .circus .ball-1:before {
    animation-delay: 0s, -0.5s; }
  #red-loading .circus .ball-2:before {
    animation-delay: -0.5s, -1s; }
  #red-loading .circus .ball-3:before {
    animation-delay: -1s, -1.5s; }
  #red-loading .circus .ball-4:before {
    animation-delay: -1.5s, -2s; }
  #red-loading .circus .spinner {
    height: 100%;
    width: 100%;
    position: absolute; }

#red-loading .atom.spinner {
  width: 100px;
  height: 100px; }
  #red-loading .atom .ball-1 {
    height: 50%;
    width: 50%;
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 1;
    animation: shrink 4.5s infinite linear; }
  #red-loading .atom .ball-1:before {
    content: '';
    background: #d93;
    border-radius: 50%;
    height: 100%;
    width: 100%;
    position: absolute;
    top: -50%;
    left: -50%; }
  #red-loading .atom .ball-2, #red-loading .atom .ball-3, #red-loading .atom .ball-4 {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 0; }
  #red-loading .atom .ball-2:before, #red-loading .atom .ball-3:before, #red-loading .atom .ball-4:before {
    content: '';
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: #d93;
    top: 0;
    left: 0;
    margin: 0 auto;
    position: absolute; }
  #red-loading .atom .ball-2 {
    animation: zindex 1.5s 0.75s infinite steps(2, end); }
  #red-loading .atom .ball-3 {
    transform: rotate(120deg);
    animation: zindex 1.5s -0.25s infinite steps(2, end); }
  #red-loading .atom .ball-4 {
    transform: rotate(240deg);
    animation: zindex 1.5s 0.25s infinite steps(2, end); }
  #red-loading .atom .ball-2:before {
    transform: rotate(0);
    animation: AtomPosition 1.5s infinite ease, size 1.5s -1.125s infinite ease; }
  #red-loading .atom .ball-3:before {
    animation: AtomPosition 1.5s -1s infinite ease, size 1.5s -0.75s infinite ease; }
  #red-loading .atom .ball-4:before {
    animation: AtomPosition 1.5s -0.5s infinite ease, size 1.5s -0.125s infinite ease; }

#red-loading .fussion.spinner {
  width: 30px;
  height: 30px; }
  #red-loading .fussion .ball {
    height: 50px;
    width: 50px;
    left: 50%;
    top: 50%;
    background: rgba(0, 255, 0, 0.5);
    border-radius: 50%;
    float: left;
    position: absolute; }
  #red-loading .fussion .ball-1 {
    background: rgba(255, 0, 0, 0.5);
    top: 0;
    left: 50%;
    animation: ball1 1s 0s ease infinite;
    z-index: 1; }
  #red-loading .fussion .ball-2 {
    background: rgba(0, 255, 0, 0.5);
    top: 50%;
    left: 100%;
    animation: ball2 1s 0s ease infinite;
    z-index: 2; }
  #red-loading .fussion .ball-3 {
    background: rgba(0, 0, 255, 0.5);
    top: 100%;
    left: 50%;
    animation: ball3 1s 0s ease infinite;
    z-index: 1; }
  #red-loading .fussion .ball-4 {
    background: rgba(255, 255, 0, 0.5);
    top: 50%;
    left: 0%;
    animation: ball4 1s 0s ease infinite;
    z-index: 2; }

#red-loading .mitosis.spinner {
  height: 50px;
  width: 50px;
  animation: invert 2s infinite steps(2, end); }
  #red-loading .mitosis .ball {
    height: 100%;
    width: 100%;
    position: absolute;
    border-radius: 50%;
    top: 0;
    left: 0;
    background: #d93; }
  #red-loading .mitosis .ball-1 {
    animation: Mitosisball1 1s infinite alternate linear; }
  #red-loading .mitosis .ball-2 {
    animation: Mitosisball2 1s infinite alternate linear; }
  #red-loading .mitosis .ball-3 {
    animation: Mitosisball3 1s infinite alternate linear; }
  #red-loading .mitosis .ball-4 {
    animation: Mitosisball4 1s infinite alternate linear; }

#red-loading .flower.spinner {
  width: 26.25px;
  height: 26.25px; }
  #red-loading .flower .ball {
    height: 30px;
    width: 30px;
    position: absolute;
    background: #d93;
    border-radius: 50%; }
  #red-loading .flower .ball-1 {
    left: -15px;
    top: -15px;
    transform-origin: 28.125px 28.125px;
    animation: Flowerball1 6s infinite linear; }
  #red-loading .flower .ball-2 {
    left: 11.25px;
    top: -15px;
    transform-origin: 1.875px 28.125px;
    animation: Flowerball2 6s infinite linear; }
  #red-loading .flower .ball-3 {
    left: 11.25px;
    top: 11.25px;
    transform-origin: 1.875px 1.875px;
    animation: Flowerball3 6s infinite linear; }
  #red-loading .flower .ball-4 {
    left: -15px;
    top: 11.25px;
    transform-origin: 28.125px 1.875px;
    animation: Flowerball4 6s infinite linear; }

#red-loading .clock.spinner {
  width: 50px;
  height: 50px;
  animation: clock 8s infinite steps(8); }
  #red-loading .clock .ball {
    height: 50px;
    width: 50px;
    position: absolute; }
  #red-loading .clock .ball:before {
    content: '';
    border-radius: 50%;
    height: 18.31501832px;
    width: 18.31501832px;
    position: absolute;
    background: #d93; }
  #red-loading .clock .ball-1 {
    transform: rotate(-135deg);
    animation: clock1 1s ease-in infinite; }
  #red-loading .clock .ball-2 {
    transform: rotate(-90deg);
    animation: clock2 1s ease-in infinite; }
  #red-loading .clock .ball-3 {
    transform: rotate(-45deg);
    animation: clock3 1s ease-in infinite; }
  #red-loading .clock .ball-4 {
    animation: clock4 1s ease-in infinite; }

#red-loading .washing-machine.spinner {
  width: 80px;
  height: 80px;
  animation: wash 2s infinite alternate cubic-bezier(0.5, 0, 0.5, 1); }
  #red-loading .washing-machine .ball-1 {
    height: 100%;
    width: 100%;
    left: 50%;
    top: 50%;
    position: absolute;
    z-index: 1; }
  #red-loading .washing-machine .ball-1:before {
    content: '';
    border-radius: 50%;
    border: 15px solid #d93;
    height: 100%;
    width: 100%;
    position: absolute;
    top: -50%;
    left: -50%;
    box-sizing: border-box; }
  #red-loading .washing-machine .ball-2, #red-loading .washing-machine .ball-3, #red-loading .washing-machine .ball-4 {
    /* background: rgba(0,255,0,.3); */
    width: 80px;
    height: 80px;
    position: absolute;
    z-index: 2; }
  #red-loading .washing-machine .ball-2:before, #red-loading .washing-machine .ball-3:before, #red-loading .washing-machine .ball-4:before {
    border: 5px solid #d93;
    background: #fff;
    content: '';
    border-radius: 50%;
    width: 15px;
    height: 15px;
    position: absolute;
    left: 27.5px;
    top: -5px; }
  #red-loading .washing-machine .ball-2 {
    transform: rotate(120deg); }
  #red-loading .washing-machine .ball-3 {
    transform: rotate(240deg); }

#red-loading .pulse.spinner {
  width: 100px;
  height: 100px; }
  #red-loading .pulse .spinner * {
    box-sizing: border-box; }
  #red-loading .pulse .ball {
    height: 100%;
    width: 100%;
    background: #d93;
    position: absolute;
    border-radius: 50%;
    border: 0 solid #d93;
    animation: pulse 3s infinite; }
  #red-loading .pulse .ball-2 {
    animation-delay: -0.75s; }
  #red-loading .pulse .ball-3 {
    animation-delay: -1.5s; }
  #red-loading .pulse .ball-4 {
    animation-delay: -2.25s; }

#red-loading + #red-page {
  visibility: hidden; }

#red-main > .row {
  position: relative; }

.red-text-primary {
  color: #d93; }

@media (min-width: 992px) {
          .ltr #red-main > .row > .left-sidebar {
            -webkit-order: 2;
            order: 2; } }

@media (min-width: 992px) {
          .rtl #red-main > .row > .left-sidebar {
            -webkit-order: 2;
            order: 2; } }

.red-backtotop {
  position: fixed;
  bottom: -60px;
  right: 0;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 40px;
  background-color: #d93;
  color: #fff;
  cursor: pointer;
  visibility: hidden;
  z-index: 2;
  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;
  -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; }

.red-backtotop.on {
  visibility: visible;
  bottom: 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; }

.red-backtotop:hover {
  color: rgba(255, 255, 255, 0.8); }
/* CSS MouseWheel */
.red-mousewheel {
  overflow: hidden; }

.red-mousewheel .red-mousewheel-inner {
  overflow-x: hidden;
  overflow-y: scroll;
  width: calc(100% + 50px);
  padding-right: 34px;
  max-height: calc(100vh - 300px); }
  .red-mousewheel .red-mousewheel-inner select, .red-mousewheel .red-mousewheel-inner table {
    width: calc(100% - 50px); }

.rtl .red-mousewheel .red-mousewheel-inner {
  padding-right: 0;
  padding-left: 34px; }
/* Overlay Style */
.overlay-wrap {
  position: relative; }

.overlay-wrap .overlay {
  background-color: rgba(255, 255, 255, 1);
  color: #d93;
  padding: 15px;
  visibility: hidden;
  position: absolute;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  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;
  -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; }
  .overlay-wrap .overlay .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%); }
  .overlay-wrap .overlay .vertical-align {
    top: 50%;
    left: 0;
    right: 0;
    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%); }
  .overlay-wrap .overlay .horizontal-align {
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
  .overlay-wrap .overlay .center-bottom {
    left: 50%;
    bottom: 0;
    position: absolute;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
  .overlay-wrap .overlay h3, .overlay-wrap .overlay a:not(.btn) {
    color: #d93; }

.overlay-wrap:hover .overlay {
  visibility: visible;
  filter: alpha(opacity=100);
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  -webkit-opacity: 1;
  -khtml-opacity: 1;
  -moz-opacity: 1;
  -ms-opacity: 1;
  -o-opacity: 1;
  opacity: 1; }
/* Icon Group */
.icon-group .icon, .icon-group .added_to_cart {
  width: 50px;
  height: 50px;
  line-height: 50px;
  background-color: #fff;
  color: #d93 !important;
  display: inline-block;
  vertical-align: top;
  font-size: 20px; }
  .icon-group .icon:hover, .icon-group .added_to_cart:hover {
    background-color: #d93;
    color: #fff !important; }

.icon-group.square {
  margin: 0 -1px 19px; }
  .icon-group.square .icon, .icon-group.square .added_to_cart {
    margin: 0 1px; }

.icon-group.rounded .icon, .icon-group.rounded .added_to_cart {
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px; }

.icon-group.circle .icon, .icon-group.circle .added_to_cart {
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%; }

.icon-group.alt .icon, .icon-group.alt .added_to_cart {
  border: 1px solid #d93;
  background-color: transparent; }

body.is-dark {
  /* element */ }

body.is-dark .causes-archive-grid.layout-causes-1 .entry-info .donation-value .lbl {
  color: #888; }

body.is-dark.single-crw_causes .cat-sharing .detail-categories {
  color: #888; }

body.is-dark .causes-archive-grid.layout-causes-1 .entry-info {
  background-color: #1c1c1c; }

body.is-dark .causes-archive-grid.layout-causes-2 .entry-info {
  background-color: #1c1c1c; }

body.is-dark .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap {
  background: #222; }

body.is-dark.single-crw_causes .entry-header .progress-amount-wrap {
  background-color: #1c1c1c; }

body.is-dark.single-crw_causes .entry-header .datetime-progress .give-progress-bar {
  background: #ddd; }

body.is-dark.single-crw_causes .entry-header .datetime-progress .give-progress-bar span {
  background-color: #323232; }

body.is-dark .single-crw_causes .entry-header .donate-progress .give-progress-bar {
  background: #ddd; }

body.is-dark .comment-list .comment-inner {
  background-color: #1c1c1c; }

body.is-dark .comment-list .comment-content .comment-text {
  color: #888; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left {
  background-color: #161616; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right {
  background-color: #1c1c1c; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .col-left:after {
  background-color: #6f6f6f; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .org-name {
  color: #888; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .events-schedule > div {
  color: #888; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right .close-ticket {
  background-color: #525252;
  border-color: #525252; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .events-schedule > div {
  color: #888; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info {
  background-color: #1c1c1c; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-1 .tribe-events-items:before {
  display: none; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action .location {
  color: #888; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action .close-ticket {
  background-color: #525252;
  border-color: #525252; }

body.is-dark .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action {
  border-top-color: #6f6f6f; }

body.is-dark .tribe-events-single .single-event-top-wrap {
  background-color: #1c1c1c; }

body.is-dark .tribe-events-single .single-event-top-wrap .events-schedule > div {
  color: #888; }

body.is-dark .tribe-events-single .single-event-top-wrap .event-meta .event-action .close-ticket {
  background-color: #525252;
  border-color: #525252; }

body.is-dark .tribe-events-single .single-event-footer .detail-categories {
  color: #888; }

body.is-dark ul.products .wc-loop-content-wrap a.add_to_cart_button {
  border-color: #121212; }

body.is-dark .navigation.pagination .page-numbers.prev:after, body.is-dark .navigation.pagination .page-numbers.next:after, body.is-dark .navigation.pagination .page-numbers {
  background-color: #1c1c1c; }

body.is-dark .navigation.pagination .page-numbers.prev {
  background-color: #d93; }

body.is-dark .navigation.pagination .page-numbers.next:after {
  background-color: #222; }

body.is-dark .woocommerce-pagination ul.page-numbers li .page-numbers.prev:after, body.is-dark .woocommerce-pagination ul.page-numbers li .page-numbers.next:after, body.is-dark .woocommerce-pagination ul.page-numbers li .page-numbers {
  background-color: #1c1c1c; }

body.is-dark .woocommerce-pagination ul.page-numbers li .page-numbers.prev {
  background-color: #d93; }

body.is-dark .woocommerce-pagination ul.page-numbers li .page-numbers.next {
  background-color: #222; }

body.is-dark.single-product .entry-summary .product_meta > div a {
  color: #888; }

body.is-dark.single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li {
  background-color: #1c1c1c; }

body.is-dark.woocommerce-cart .entry-content .woocommerce {
  background-color: #1c1c1c; }

body.is-dark.woocommerce-cart table.cart td {
  background-color: #1c1c1c; }

body.is-dark.woocommerce-cart .coupon .coupon-wrap {
  background-color: #222; }

@media (min-width: 992px) {
    body.is-dark.woocommerce-checkout form.checkout {
      background: #222; } }

body.is-dark table tbody td, body.is-dark table tbody tr:nth-child(2n) td {
  background-color: #121212; }

body.is-dark.single-crw_stories .single-stories-footer .detail-categories {
  color: #888; }

body.is-dark .widget_categories ul li a {
  background-color: #1c1c1c;
  border-bottom: 0.5px solid rgba(221, 221, 221, 0.5); }

@media (min-width: 577px) {
    body.is-dark.single-crw_stories .meta-wrap {
      background-color: #1c1c1c; } }

body.is-dark .tnp-widget-minimal input.tnp-email {
  background-color: #1c1c1c; }

body.is-dark .select2-container--default .select2-selection--single {
  background-color: #1c1c1c; }

body.is-dark.woocommerce-account form.login {
  color: #888; }

body.is-dark .event-ticket-form {
  background-color: #222; }

body.is-dark table th {
  background: #000; }

body.is-dark #tribe-bar-form {
  background: #222; }

body.is-dark .tribe-bar-views-inner {
  background-color: #1c1c1c; }

body.is-dark #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a, body.is-dark #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a:hover {
  background-color: #1c1c1c; }

body.is-dark .tribe-events-day .tribe-events-day-time-slot .tribe-events-day-time-slot-heading {
  background: #222; }

body.is-dark .causes-archive-grid.layout-causes-1 .entry-info .give-btn:hover {
  color: #1c1c1c; }

body.is-dark .vc_grid-item.events-style-1 .vc_gitem-zone-c .events-schedule > div {
  color: #888; }

body.is-dark .vc_grid-item.events-style-1 .vc_gitem-zone-c .org-wrap {
  border-top-color: #6f6f6f; }

body.is-dark .vc_grid-item.events-style-1 .vc_gitem-zone-c {
  background-color: #1c1c1c; }

body.is-dark .vc_grid-item.events-style-1 .vc_grid-item-mini:before {
  content: none; }

body.is-dark .vc_grid-item.cause-style1 .vc_gitem-zone-c {
  background-color: #1c1c1c; }

body.is-dark .vc_grid-item.cause-style1 .post-excerpt {
  color: #888; }

body.is-dark .red-causes-carousel .entry-info .donation-amount-wrap {
  background: #1c1c1c; }

body.is-dark .red-causes-carousel .owl-nav > div {
  background-color: #1c1c1c; }

body.is-dark .red-fancybox.layout-6 {
  background-color: #1c1c1c; }

body.is-dark .vc_grid-item.events-style-2 .list-event-action .close-ticket {
  background-color: #525252;
  border-color: #525252; }

body.is-dark .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap .donate-progress .give-progress-bar {
  background-color: #ddd; }

body.is-dark.woocommerce-cart table.cart td.product-name dl.variation {
  color: #888; }

body.is-dark .error-404 {
  background-color: #121212; }

body.is-dark .navigation.pagination .page-numbers + .page-numbers:before {
  background-color: #545454; }

body.is-dark .red-nav-extra .red-header-popup .red-popup {
  background-color: #121212; }

body.is-dark .red-nav-extra .red-header-popup .header-icon.cart span .cart_total {
  background-color: #fff;
  color: #262626; }

body.is-dark .overlay-wrap .overlay {
  background-color: #222; }

body.is-dark #tribe-bar-views .tribe-bar-views-list .tribe-bar-views-option a {
  color: #888; }

body.is-dark.woocommerce-cart table.cart th {
  background: #1c1c1c;
  border-color: #1c1c1c; }

body.is-dark.woocommerce-cart .cart-collaterals table th, body.is-dark.woocommerce-cart .cart-collaterals table td {
  background-color: #d93 !important; }

.btn, .btn-default, button, .button, input[type="button"], input[type="submit"], .vc_general.vc_btn3.btn, .vc_general.vc_btn3.btn-default {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  line-height: 23px;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 45px;
  font-family: 'Montserrat';
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #71b61b;
  background-color: #71b61b;
  background-image: none;
  background-size: inherit;
  background-position: inherit;
  background-attachment: inherit;
  -webkit-border-radius: 55px;
  -khtml-border-radius: 55px;
  -moz-border-radius: 55px;
  -ms-border-radius: 55px;
  -o-border-radius: 55px;
  border-radius: 55px;
  -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; }

.btn:hover, .btn-default:hover, button:hover, .button:hover, input[type="button"]:hover, input[type="submit"]:hover, .vc_general.vc_btn3.btn:hover, .vc_general.vc_btn3.btn-default:hover {
  color: #71b61b;
  border-color: #71b61b;
  background-color: transparent;
  background-image: none;
  background-size: inherit;
  background-position: inherit;
  background-attachment: inherit; }

.btn.btn-alt, .btn-default.btn-alt, button.btn-alt, .button.btn-alt, input[type="button"].btn-alt, input[type="submit"].btn-alt, .vc_general.vc_btn3.btn.btn-alt, .vc_general.vc_btn3.btn-default.btn-alt {
  color: #71b61b;
  background-color: transparent;
  background-image: none; }
  .btn.btn-alt:hover, .btn-default.btn-alt:hover, button.btn-alt:hover, .button.btn-alt:hover, input[type="button"].btn-alt:hover, input[type="submit"].btn-alt:hover, .vc_general.vc_btn3.btn.btn-alt:hover, .vc_general.vc_btn3.btn-default.btn-alt:hover {
    color: #fff;
    background-color: #71b61b; }
  .btn.btn-alt.btn-white, .btn-default.btn-alt.btn-white, button.btn-alt.btn-white, .button.btn-alt.btn-white, input[type="button"].btn-alt.btn-white, input[type="submit"].btn-alt.btn-white, .vc_general.vc_btn3.btn.btn-alt.btn-white, .vc_general.vc_btn3.btn-default.btn-alt.btn-white {
    background-color: #fff; }
  .btn.btn-alt.btn-white:hover, .btn-default.btn-alt.btn-white:hover, button.btn-alt.btn-white:hover, .button.btn-alt.btn-white:hover, input[type="button"].btn-alt.btn-white:hover, input[type="submit"].btn-alt.btn-white:hover, .vc_general.vc_btn3.btn.btn-alt.btn-white:hover, .vc_general.vc_btn3.btn-default.btn-alt.btn-white:hover {
    color: #fff;
    background-color: #71b61b; }

.btn.btn-white, .btn-default.btn-white, button.btn-white, .button.btn-white, input[type="button"].btn-white, input[type="submit"].btn-white, .vc_general.vc_btn3.btn.btn-white, .vc_general.vc_btn3.btn-default.btn-white {
  background-color: #fff; }
  .btn.btn-white:hover, .btn-default.btn-white:hover, button.btn-white:hover, .button.btn-white:hover, input[type="button"].btn-white:hover, input[type="submit"].btn-white:hover, .vc_general.vc_btn3.btn.btn-white:hover, .vc_general.vc_btn3.btn-default.btn-white:hover {
    color: #fff;
    background-color: #71b61b; }

.btn.btn-white-alt, .btn-default.btn-white-alt, button.btn-white-alt, .button.btn-white-alt, input[type="button"].btn-white-alt, input[type="submit"].btn-white-alt, .vc_general.vc_btn3.btn.btn-white-alt, .vc_general.vc_btn3.btn-default.btn-white-alt {
  background-color: transparent;
  color: #fff;
  border-color: #fff; }
  .btn.btn-white-alt:hover, .btn-default.btn-white-alt:hover, button.btn-white-alt:hover, .button.btn-white-alt:hover, input[type="button"].btn-white-alt:hover, input[type="submit"].btn-white-alt:hover, .vc_general.vc_btn3.btn.btn-white-alt:hover, .vc_general.vc_btn3.btn-default.btn-white-alt:hover {
    color: #fff;
    background-color: #71b61b;
    border-color: #71b61b; }

.btn-primary, .vc_general.vc_btn3.btn-primary {
  cursor: pointer;
  display: inline-block;
  text-align: center;
  line-height: 23px;
  vertical-align: top;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  padding: 15px 45px;
  font-family: 'Montserrat';
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  border-style: solid;
  border-width: 1px 1px 1px 1px;
  border-color: #71b61b;
  background-color: #71b61b;
  background-image: none;
  background-size: inherit;
  background-position: inherit;
  background-attachment: inherit;
  -webkit-border-radius: 55px;
  -khtml-border-radius: 55px;
  -moz-border-radius: 55px;
  -ms-border-radius: 55px;
  -o-border-radius: 55px;
  border-radius: 55px;
  -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; }

.btn-primary:hover, .vc_general.vc_btn3.btn-primary:hover {
  color: #71b61b;
  border-color: #71b61b;
  background-color: #fff;
  background-image: none;
  background-size: inherit;
  background-position: inherit;
  background-attachment: inherit; }

.btn-primary.btn-alt, .vc_general.vc_btn3.btn-primary.btn-alt {
  color: #71b61b;
  background-color: transparent;
  background-image: none; }
  .btn-primary.btn-alt:hover, .vc_general.vc_btn3.btn-primary.btn-alt:hover {
    color: #fff;
    background-color: #71b61b; }
/* Button Size */
.btn-small {
  padding: 7.5px 15px;
  font-size: 11px; }

.btn-medium {
  padding: 10px 32px;
  border-radius: 45px;
  font-size: 12px; }

.btn-medium-large {
  padding: 12.5px 45px;
  border-radius: 50px;
  font-size: 12px; }

.btn-large {
  padding: 14.5px 45px;
  font-size: 13px; }

.btn-block {
  width: 100%;
  display: block; }

.comments-area {
  margin-top: 67px; }

.comments-area .comments-title, .comments-area .comment-reply-title {
  font-size: 18px;
  letter-spacing: -0.05em;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.4; }

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

.comment-list .comment, .comment-list .pingback {
  /* max 5 level deep */ }
  .comment-list .comment.depth-1:first-child, .comment-list .pingback.depth-1:first-child {
    padding-top: 0;
    margin-top: 0;
    border-top: none; }
  .comment-list .comment .comment, .comment-list .pingback .comment {
    padding-left: 50px; }
  .comment-list .comment.depth-5 .comment, .comment-list .pingback.depth-5 .comment {
    padding-left: 0; }
  .comment-list .comment.depth-5 + .depth-5, .comment-list .pingback.depth-5 + .depth-5 {
    padding-left: 0;
    margin-left: 90px; }

.comment-list .comment-inner {
  margin: 20px 0 0 0;
  background-color: #fbfbfb;
  padding: 40px 40px 40px 45px;
  border-radius: 3px; }

.comment-list .comment-avatar {
  float: left;
  max-width: 90px;
  position: relative; }
  .comment-list .comment-avatar:empty + .comment-content {
    padding-left: 0; }
  .comment-list .comment-avatar img {
    border-radius: 3px; }
  .comment-list .comment-avatar .comment-reply-link {
    position: absolute;
    bottom: 0;
    margin-bottom: -13px;
    background: #d93;
    font-size: 11px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: 0.03em;
    font-weight: 600;
    padding: 7px 20px;
    line-height: 1;
    text-decoration: none;
    color: #fff;
    border: 1px solid #d93;
    border-radius: 27px;
    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%); }
  .comment-list .comment-avatar .comment-reply-link:hover {
    background-color: #fff;
    color: #71b61b; }

.comment-list .comment-content {
  padding-left: 115px; }
  .comment-list .comment-content .comment-header {
    margin-bottom: 12px; }
  .comment-list .comment-content .author-name {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.05em;
    margin-bottom: 5px;
    text-transform: capitalize;
    color: #333; }
  .comment-list .comment-content .comment-time {
    font-size: 13px;
    margin-left: 30px;
    color: #d93;
    letter-spacing: -0.02em; }
  .comment-list .comment-content .comment-text {
    line-height: 24px;
    letter-spacing: -0.02em;
    color: #555; }
  .comment-list .comment-content .comment-text p {
    margin-top: 0; }

.comment-list .comment-footer {
  margin: 0 -10px; }
  .comment-list .comment-footer > a {
    margin: 0 10px; }

@media (max-width: 991px) {
    .comment-list .comment .comment {
      padding-left: 30px; }
    .comment-list.depth-5 .comment {
      padding-left: 0; }
    .comment-list .comment.depth-5 + .depth-5 {
      margin-left: 30px; } }

@media (max-width: 767px) {
    .comment-list .comment-inner {
      padding: 20px 15px 20px 15px; }
    .comment-list .comment-avatar {
      float: none;
      margin-bottom: 30px; }
    .comment-list .comment-content {
      padding-left: 0; }
      .comment-list .comment-content .comment-time {
        margin-left: 15px; } }

@media (max-width: 576px) {
    .comment-list {
      /* max 5 level deep */ }
      .comment-list .comment .comment {
        padding-left: 15px; }
      .comment-list.depth-5 .comment {
        padding-left: 0; }
      .comment-list .comment.depth-5 + .depth-5 {
        margin-left: 15px; } }
/* respond */
.comment-respond {
  margin-top: 64px; }

.comment-respond p.logged-in-as {
  margin-bottom: 20px; }

.comment-respond .comment-reply-title a {
  color: #71b61b; }

form.comment-form {
  margin-bottom: 10px; }

@media (min-width: 1200px) {
    form.comment-form {
      display: flex;
      margin: 0 -7.5px; } }

form.comment-form textarea, form.comment-form input[type="text"], form.comment-form input[type="email"] {
  width: 100%; }

form.comment-form textarea {
  height: 115px; }

form.comment-form p {
  margin-top: 0;
  margin-bottom: 10px; }

form.comment-form p.form-submit {
  text-align: right;
  margin-top: 20px; }

@media (min-width: 1200px) {
      form.comment-form .comment-form-left, form.comment-form .comment-form-right {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 7.5px; } }

.logged-in .comment-reply-title {
  margin-bottom: 5px; }

.logged-in form.comment-form {
  display: block;
  margin: 0; }

.no-comments {
  margin-top: 30px;
  color: red; }
/* RTL language */
.rtl .comment-list .comment, .rtl .comment-list .pingback {
  /* max 5 level deep */ }
  .rtl .comment-list .comment .comment, .rtl .comment-list .pingback .comment {
    padding-left: 0;
    padding-right: 90px; }
  .rtl .comment-list .comment.depth-5 .comment, .rtl .comment-list .pingback.depth-5 .comment {
    padding-right: 0; }
  .rtl .comment-list .comment.depth-5 + .depth-5, .rtl .comment-list .pingback.depth-5 + .depth-5 {
    padding-right: 0;
    margin-right: 90px; }
  .rtl .comment-list .comment-avatar {
    float: right; }
  .rtl .comment-list .comment-avatar:empty + .comment-content {
    padding-right: 0; }
  .rtl .comment-list .comment-content {
    padding-left: 0;
    padding-right: 110px; }
  @media (max-width: 991px) {
    .rtl .comment-list {
      /* max 5 level deep */ }
      .rtl .comment-list .comment .comment {
        padding-left: 0;
        padding-right: 30px; }
      .rtl .comment-list .comment-content {
        padding-left: 0;
        padding-right: 40px; }
      .rtl .comment-list.depth-5 .comment {
        padding-right: 0; }
      .rtl .comment-list .comment.depth-5 + .depth-5 {
        margin-left: 0;
        margin-right: 30px; } }
  @media (max-width: 576px) {
    .rtl .comment-list {
      /* max 5 level deep */ }
      .rtl .comment-list .comment .comment {
        padding-right: 0;
        padding-left: 15px; }
      .rtl .comment-list.depth-5 .comment {
        padding-right: 0; }
      .rtl .comment-list .comment.depth-5 + .depth-5 {
        margin-left: 0;
        margin-right: 15px; } }

.silent-heading {
  color: #d93;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 30px;
  position: relative; }

@media (min-width: 992px) {
    .contact-box-info {
      padding: 0 32px; } }

.contact-box-info.top-overlap {
  position: relative;
  margin-top: 45px; }
  @media (min-width: 992px) {
    .contact-box-info.top-overlap {
      margin-top: -132px; } }
  @media (max-width: 991px) {
    .contact-box-info.top-overlap {
      margin-top: 30px;
      margin-bottom: 15px; } }

.contact-box-info .box-inner {
  padding: 50px 70px 42px 70px;
  border-radius: 3px;
  -webkit-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
  -khtml-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
  -moz-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
  -ms-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
  -o-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
  box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01); }
  @media (max-width: 1199px) {
    .contact-box-info .box-inner {
      padding: 40px 40px 32px 40px; } }
  @media (max-width: 576px) {
    .contact-box-info .box-inner {
      padding: 15px; } }
  .contact-box-info .box-inner .silent-heading {
    color: #fff;
    font-weight: 500;
    letter-spacing: -0.03em; }

.contact-box-info ul.contact-info {
  list-style: none;
  margin-top: 12px;
  margin-left: 0;
  padding-left: 0;
  color: #fff; }
  .contact-box-info ul.contact-info li {
    letter-spacing: -0.02em; }
  @media (min-width: 1200px) {
      .contact-box-info ul.contact-info li {
        display: inline-block; } }
  .contact-box-info ul.contact-info li i {
    color: #d93;
    font-size: 20px;
    margin-right: 15px; }
  @media (min-width: 1200px) {
      .contact-box-info ul.contact-info li:nth-child(2n+1) {
        margin-right: 94px; } }

.contact-box-info .red-social {
  margin-top: 24px; }
  .contact-box-info .red-social.small {
    margin-left: -2px;
    margin-right: -2px; }
  .contact-box-info .red-social.small a {
    width: 40px;
    height: 40px;
    margin-left: 2px;
    margin-right: 2px;
    margin-bottom: 4px; }
  .contact-box-info .red-social.circle a {
    border-radius: 50%; }
  .contact-box-info .red-social a {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff; }

.contact-box-info.style-1 {
  padding: 0; }
  .contact-box-info.style-1 .box-inner {
    padding: 36px 70px 0 70px;
    border-radius: 3px;
    -webkit-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
    -khtml-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
    -moz-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
    -ms-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
    -o-box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01);
    box-shadow: 3px 1px 16px rgba(0, 0, 0, 0.01); }
  @media (max-width: 1199px) {
      .contact-box-info.style-1 .box-inner {
        padding: 36px 40px 0 40px; } }
  @media (max-width: 767px) {
      .contact-box-info.style-1 .box-inner {
        padding: 36px 0 15px 0; } }
  .contact-box-info.style-1 .box-inner .silent-heading {
    color: #d93;
    font-weight: 500;
    letter-spacing: -0.03em; }
  .contact-box-info.style-1 ul.contact-info {
    color: #212529; }
  .contact-box-info.style-1 .red-social a {
    background-color: rgba(255, 255, 255, 0.15);
    color: #333;
    -webkit-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
    -khtml-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
    -o-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 21px rgba(0, 0, 0, 0.09); }

.contact-box-info.style-2 {
  padding: 0; }
  .contact-box-info.style-2 .box-inner {
    padding: 30px 70px 30px 70px; }
  @media (max-width: 1199px) {
      .contact-box-info.style-2 .box-inner {
        padding: 20px 40px 22px 40px; } }
  @media (max-width: 576px) {
      .contact-box-info.style-2 .box-inner {
        padding: 15px; } }
/* red CountDown */
.red-countdown .countdown-row {
  display: flex;
  flex-wrap: wrap; }

.red-countdown .countdown-row .countdown-section {
  flex: 0 0 25%;
  max-width: 25%;
  text-align: center;
  border-right: 1px solid #cacaca; }
  .red-countdown .countdown-row .countdown-section:last-child {
    border-right: 0; }

.red-countdown .countdown-row .countdown-amount {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: #333;
  line-height: 1;
  display: block;
  margin-bottom: 3px; }
  @media (max-width: 576px) {
    .red-countdown .countdown-row .countdown-amount {
      font-size: 28px; } }

.red-countdown .countdown-row .countdown-period {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 15px;
  letter-spacing: -0.03em;
  color: #d93;
  line-height: 1;
  display: block;
  margin-bottom: 4px; }
/* red newsletter */
.red-newsletter.minimal form {
  position: relative; }
  .red-newsletter.minimal form:before {
    content: "\f054";
    color: #737373;
    font: normal normal normal 10px/1 FontAwesome;
    display: inline-block;
    float: right;
    position: absolute;
    top: 23px;
    right: 37px; }
  .red-newsletter.minimal form:hover:before {
    color: #d93; }
  .red-newsletter.minimal input[type="email"] {
    padding: 15px 35px;
    font-size: 14px;
    line-height: 27px;
    border-color: transparent; }
  .red-newsletter.minimal input[type="email"]:active, .red-newsletter.minimal input[type="email"]:focus {
    color: #333;
    border-color: #d93; }
  .red-newsletter.minimal input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    font-size: 0;
    height: 60px;
    width: 70px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: transparent;
    border: 0; }

.red-newsletter.minimal-with-title {
  background-color: #d93;
  padding: 68px 120px 70px 124px;
  border-radius: 4px; }
  @media (max-width: 1199px) {
    .red-newsletter.minimal-with-title {
      padding: 58px 80px 60px 84px; } }
  @media (max-width: 991px) {
    .red-newsletter.minimal-with-title {
      padding: 48px 50px 50px 54px; } }
  @media (max-width: 767px) {
    .red-newsletter.minimal-with-title {
      padding: 38px 30px 40px 34px; } }
  @media (max-width: 576px) {
    .red-newsletter.minimal-with-title {
      padding: 28px 15px 30px 15px; } }
  .red-newsletter.minimal-with-title.top-overlap {
    margin-top: -106px; }
  @media (max-width: 991px) {
      .red-newsletter.minimal-with-title.top-overlap {
        margin-top: -100px; } }
  @media (min-width: 768px) {
      .red-newsletter.minimal-with-title .minimal-with-title-wrap {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between; } }
  @media (min-width: 768px) {
        .red-newsletter.minimal-with-title .minimal-with-title-wrap .col-left, .red-newsletter.minimal-with-title .minimal-with-title-wrap .col-right {
          flex: 0 0 50%;
          max-width: 50%; } }
  @media (max-width: 767px) {
        .red-newsletter.minimal-with-title .minimal-with-title-wrap .col-left {
          margin-bottom: 20px; } }
  .red-newsletter.minimal-with-title .minimal-with-title-wrap .silent-font {
    color: #fff;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 30px;
    position: relative;
    letter-spacing: -0.03em; }
    @media (max-width: 576px) {
      .red-newsletter.minimal-with-title .minimal-with-title-wrap .silent-font {
        font-size: 24px; } }
    .red-newsletter.minimal-with-title .minimal-with-title-wrap .silent-font:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 2px;
      width: 100%;
      height: 2px;
      background-color: #fff; }
  .red-newsletter.minimal-with-title .minimal-with-title-wrap .desc {
    color: #fff;
    margin-top: 4px; }
  .red-newsletter.minimal-with-title .minimal-with-title-wrap form {
    position: relative; }
    .red-newsletter.minimal-with-title .minimal-with-title-wrap form:before {
      content: "\f054";
      color: #737373;
      font: normal normal normal 10px/1 FontAwesome;
      display: inline-block;
      float: right;
      position: absolute;
      top: 23px;
      right: 37px; }
    .red-newsletter.minimal-with-title .minimal-with-title-wrap form:hover:before {
      color: #d93; }
  .red-newsletter.minimal-with-title .minimal-with-title-wrap input[type="email"] {
    padding: 15px 35px;
    font-size: 14px;
    line-height: 27px;
    border-color: transparent; }
    .red-newsletter.minimal-with-title .minimal-with-title-wrap input[type="email"]:active, .red-newsletter.minimal-with-title .minimal-with-title-wrap input[type="email"]:focus {
      color: #333;
      border-color: #d93; }
  .red-newsletter.minimal-with-title .minimal-with-title-wrap input[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    margin: 0;
    font-size: 0;
    height: 60px;
    width: 70px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background: transparent;
    border: 0; }

.red-newsletter.default .tnp-widget .tnp-field {
  margin: 0; }
  .red-newsletter.default .tnp-widget .tnp-field.tnp-field-email {
    margin-top: 10px; }
  .red-newsletter.default form {
    position: relative;
    padding-right: 100px; }
  .red-newsletter.default form .tnp-field-button:after {
    content: "\f0e0";
    font-family: FontAwesome;
    font-style: normal;
    position: absolute;
    right: 0;
    top: 0;
    font-size: 30px;
    color: #fff;
    width: 120px;
    height: 120px;
    text-align: center;
    background: #d93;
    border-radius: 50%;
    line-height: 94px;
    border: 2px solid #d93;
    -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; }
  .red-newsletter.default form .tnp-field:last-child {
    margin-bottom: 0; }
    .red-newsletter.default form .tnp-field label {
      display: none; }
    .red-newsletter.default form .tnp-field input[type=text], .red-newsletter.default form .tnp-field input[type="email"] {
      width: 100%;
      padding: 13px 35px;
      font-size: 13px;
      line-height: 27px;
      height: 55px;
      border: 1px solid #d8d8d8;
      background-color: #fff;
      text-align: inherit;
      letter-spacing: 0.03em;
      -webkit-border-radius: 27.5px;
      -khtml-border-radius: 27.5px;
      -moz-border-radius: 27.5px;
      -ms-border-radius: 27.5px;
      -o-border-radius: 27.5px;
      border-radius: 27.5px;
      -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
      -khtml-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
      -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
      -ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
      -o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
      box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
      -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; }
      .red-newsletter.default form .tnp-field input[type=text]::-webkit-input-placeholder, .red-newsletter.default form .tnp-field input[type="email"]::-webkit-input-placeholder {
        color: #979797;
        font-size: 12px;
        letter-spacing: 0.03em;
        font-style: italic; }
      .red-newsletter.default form .tnp-field input[type=text]:-moz-placeholder, .red-newsletter.default form .tnp-field input[type="email"]:-moz-placeholder {
        color: #979797;
        font-size: 12px;
        letter-spacing: 0.03em;
        font-style: italic; }
      .red-newsletter.default form .tnp-field input[type=text]::-moz-placeholder, .red-newsletter.default form .tnp-field input[type="email"]::-moz-placeholder {
        color: #979797;
        font-size: 12px;
        letter-spacing: 0.03em;
        font-style: italic; }
      .red-newsletter.default form .tnp-field input[type=text]:-ms-input-placeholder, .red-newsletter.default form .tnp-field input[type="email"]:-ms-input-placeholder {
        color: #979797;
        font-size: 12px;
        letter-spacing: 0.03em;
        font-style: italic; }
      .red-newsletter.default form .tnp-field input[type=text]:hover, .red-newsletter.default form .tnp-field input[type="email"]:hover, .red-newsletter.default form .tnp-field input[type=text]:active, .red-newsletter.default form .tnp-field input[type="email"]:active, .red-newsletter.default form .tnp-field input[type=text]:focus, .red-newsletter.default form .tnp-field input[type="email"]:focus {
        color: #333;
        border-color: #d93; }
    .red-newsletter.default form .tnp-field input[type="submit"] {
      position: absolute;
      top: 0;
      right: 0;
      margin: 0;
      font-size: 0;
      height: 120px;
      width: 120px;
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
      background: transparent;
      border: 0;
      border-radius: 50%;
      z-index: 1;
      line-height: 10; }
  .red-newsletter.default form:hover .tnp-field-button:after {
    background: #fff;
    color: #d93; }
    .red-newsletter.default form:hover .tnp-field input[type="submit"] {
      color: #d93; }
  .red-newsletter.default .tnp-field-button {
    position: absolute;
    top: 0;
    right: 0; }

.silent-wrap-heading {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 25px;
  color: #0f0f0f;
  letter-spacing: 0.03em;
  font-style: italic; }

.silent-wrap-heading a {
  color: inherit;
  position: relative;
  color: #0f0f0f; }
  .silent-wrap-heading a:after {
    position: absolute;
    content: "";
    width: 99%;
    height: 1px;
    left: 2px;
    bottom: 2px;
    background: #0f0f0f;
    -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; }
  .silent-wrap-heading a:hover {
    color: #fff; }
  .silent-wrap-heading a:hover:after {
    background: #fff; }

.red-fancybox.layout-1 {
  padding: 67px 50px 40px 50px;
  border-radius: 5px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); }
  @media (min-width: 992px) and (max-width: 1199px) {
    .red-fancybox.layout-1 {
      padding: 47px 20px 40px 20px; } }
  @media (max-width: 576px) {
    .red-fancybox.layout-1 {
      padding: 47px 15px 40px 15px; } }
  .red-fancybox.layout-1 .red-fancy-img img {
    max-width: 70px; }
  .red-fancybox.layout-1 .red-fancy-title {
    font-size: 20px;
    letter-spacing: -0.03em;
    margin-top: 35px;
    margin-bottom: 17px; }
  .red-fancybox.layout-1 .red-fancy-desc {
    line-height: 24px;
    letter-spacing: -0.02em;
    margin-bottom: 47px; }
  @media (min-width: 992px) and (max-width: 1199px) {
      .red-fancybox.layout-1 .red-fancy-desc {
        margin-bottom: 30px; } }
  @media (max-width: 576px) {
      .red-fancybox.layout-1 .red-fancy-desc {
        margin-bottom: 30px; } }
  .red-fancybox.layout-1 .red-fancy-footer {
    margin-bottom: -67px; }
  .red-fancybox.layout-1 .red-fancy-footer a {
    min-width: 180px; }
  .red-fancybox.layout-1.dark .red-fancy-footer a.btn-alt {
    background-color: #161616; }
    .red-fancybox.layout-1.dark .red-fancy-footer a.btn-alt:hover {
      background-color: #71b61b; }

.red-fancybox.layout-2 .red-fancy-content img {
  display: inline-block;
  float: left;
  max-width: 70px; }
  .red-fancybox.layout-2 .red-fancy-content .red-fancy-title {
    line-height: 30px;
    letter-spacing: -0.03em;
    margin-top: 20px;
    margin-bottom: 0;
    display: inline-block;
    margin-left: 26px; }
  .red-fancybox.layout-3 {
    margin-bottom: 30px; }
  @media (min-width: 1200px) {
    .red-fancybox.layout-3 {
      padding-right: 100px; } }
  .red-fancybox.layout-3 .red-fancy-title {
    margin-top: 6px;
    margin-bottom: 11px;
    letter-spacing: -0.03em;
    line-height: 1.2; }
  .red-fancybox.layout-3 .red-fancy-desc {
    line-height: 24px;
    letter-spacing: -0.02em; }
  .red-fancybox.layout-3.dark .red-fancy-desc {
    color: #fff; }

.red-fancybox.layout-4 {
  margin-bottom: 30px; }
  @media (min-width: 1200px) {
    .red-fancybox.layout-4 {
      padding-right: 100px; } }
  .red-fancybox.layout-4 .red-fancy-icon {
    float: left;
    display: inline-block;
    margin-right: 25px;
    width: 70px; }
  .red-fancybox.layout-4 .red-fancy-content {
    display: inline-block; }
  .red-fancybox.layout-4 .red-fancy-content .red-fancy-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 5px;
    letter-spacing: -0.03em;
    line-height: 25px; }
  .red-fancybox.layout-4 .red-fancy-content .red-fancy-footer a {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: #71b61b;
    position: relative;
    padding-right: 13px;
    text-transform: uppercase;
    padding-left: 5px; }
    .red-fancybox.layout-4 .red-fancy-content .red-fancy-footer a:after {
      content: "\f105";
      font-family: FontAwesome;
      font-size: 13px;
      position: absolute;
      right: 0;
      line-height: 1;
      top: 2px; }
    .red-fancybox.layout-4 .red-fancy-content .red-fancy-footer a:hover {
      color: #333; }
    .red-fancybox.layout-4 .red-fancy-content .red-fancy-footer a.dark:hover {
      color: #fff; }
  .red-fancybox.layout-4 .red-fancy-content .red-fancy-desc {
    line-height: 24px;
    letter-spacing: -0.02em; }

.red-fancybox.layout-5 .red-fancy-title {
  font-size: 20px;
  margin-top: 19px;
  margin-bottom: 12px;
  letter-spacing: -0.03em; }
  .red-fancybox.layout-5 .red-fancy-desc {
    letter-spacing: -0.02em;
    line-height: 24px; }
  .red-fancybox.layout-5 .red-fancy-footer {
    margin-top: 32px; }
  .red-fancybox.layout-5 .red-fancy-footer a.readmore {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
    color: #71b61b;
    position: relative; }
    .red-fancybox.layout-5 .red-fancy-footer a.readmore:after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 2px;
      width: 100%;
      height: 1px;
      background-color: #71b61b;
      -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; }
    .red-fancybox.layout-5 .red-fancy-footer a.readmore:hover {
      color: #333; }
    .red-fancybox.layout-5 .red-fancy-footer a.readmore:hover:after {
      background-color: #333; }

.red-fancybox.layout-6 {
  padding: 56px 20px 37px 28px;
  margin-bottom: 30px;
  background-color: #fff;
  border-radius: 3px;
  -webkit-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
  -khtml-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 54px rgba(0, 0, 0, 0.09); }
  @media (min-width: 992px) and (max-width: 1199px) {
    .red-fancybox.layout-6 {
      padding: 30px 15px 30px 25px; } }
  @media (min-width: 768px) and (max-width: 991px) {
    .red-fancybox.layout-6 {
      padding: 26px 10px 27px 20px; } }
  .red-fancybox.layout-6 .red-fancy-icon {
    line-height: 1; }
  .red-fancybox.layout-6 .red-fancy-title {
    margin-top: 15px;
    margin-bottom: 0;
    line-height: 1.5;
    letter-spacing: -0.03em; }
  @media (min-width: 768px) and (max-width: 1199px) {
      .red-fancybox.layout-6 .red-fancy-title {
        font-size: 16px; } }

.red-fancybox.layout-7 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 30px; }
  .red-fancybox.layout-7 .red-fancy-icon {
    flex: 0 0 60px;
    max-width: 60px;
    line-height: 1; }
  .red-fancybox.layout-7 .red-fancy-content {
    flex: 0 0 calc(100% - 60px);
    max-width: calc(100% - 60px);
    padding-left: 30px; }
  .red-fancybox.layout-7 .red-fancy-content .red-fancy-title {
    font-size: 20px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    letter-spacing: -0.03em;
    line-height: 25px; }
  .red-fancybox.layout-7 .red-fancy-content .red-fancy-desc {
    line-height: 24px;
    letter-spacing: -0.02em; }

@media (min-width: 768px) and (max-width: 991px) {
    .vc_col-sm-1\/5 .red-fancybox.layout-6 .red-fancy-title {
      font-size: 14px; } }

.red-heading .heading {
  margin-top: 0;
  margin-bottom: 0; }

.red-heading .sub-heading {
  margin-top: 15px;
  margin-bottom: 0; }

@media (max-width: 767px) {
      .red-heading h2.heading {
        font-size: 35px !important;
        line-height: 42px !important; } }
  @media (max-width: 576px) {
    .red-heading h2.heading {
      font-size: 28px !important;
      line-height: 32px !important; } }

.red-heading .style0 {
  font-weight: 300; }

.red-heading .style1 {
  font-weight: 400; }

.red-heading .style2 {
  font-weight: 400;
  font-style: italic; }

.red-heading .style3 {
  font-weight: 600; }

.red-heading .style4 {
  font-weight: 600;
  font-style: italic; }

.red-heading .style5 {
  font-weight: 700; }

.red-heading .style6 {
  font-weight: 700;
  font-style: italic; }

.red-heading .silent-font {
  font-family: 'Trebuchet MS', Helvetica, sans-serif; }
  @media (max-width: 576px) {
    .red-heading .silent-font {
      font-size: 30px !important;
      line-height: 32px !important; } }

.red-heading.layout-1 .sub-heading {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.1;
  font-style: italic; }
  .red-heading.layout-1 .heading {
    margin-bottom: 10px; }
  .red-heading.layout-1 h2.heading {
    line-height: 55px; }
  @media (max-width: 991px) {
      .red-heading.layout-1 h2.heading {
        font-size: 40px !important;
        line-height: 48px !important; } }
  @media (max-width: 767px) {
      .red-heading.layout-1 h2.heading {
        font-size: 35px !important;
        line-height: 42px !important; } }
  @media (max-width: 576px) {
      .red-heading.layout-1 h2.heading {
        font-size: 28px !important;
        line-height: 32px !important; } }
  .red-heading.layout-1 span.ver-icon {
    display: inline-flex;
    align-items: center; }
  .red-heading.layout-1 span.ver-icon span {
    width: 3px;
    height: 10px;
    background-color: #d93;
    margin: 0 1.5px;
    display: inline-block; }
    .red-heading.layout-1 span.ver-icon span.y2 {
      height: 20px; }

.html-video-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center; }

.html-video-wrap a {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  color: #71b61b; }
  .html-video-wrap a:hover {
    color: #333; }

.html-video-wrap i {
  font-size: 45px;
  margin-right: 18px; }

.html-video-wrap .silent-heading {
  font-size: 22px;
  font-style: italic;
  position: relative;
  line-height: 1.2; }
  .html-video-wrap .silent-heading:after {
    position: absolute;
    content: "";
    width: 99%;
    height: 1px;
    left: 2px;
    bottom: 2px;
    background: #71b61b;
    -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; }
  .html-video-wrap .silent-heading:hover:after {
    background: #333; }

.html-video-wrap.small i {
  font-size: 33px;
  margin-right: 13px; }
  .html-video-wrap.small .silent-heading {
    font-size: 20px; }

.html-video-wrap.text-center {
  justify-content: center; }

@media (max-width: 767px) {
      .html-video-wrap.pull-right {
        float: none; } }

.html-video-wrap-icon {
  text-align: center; }

.html-video-wrap-icon a {
  font-size: 100px;
  display: inline-block;
  color: #d93; }
  .html-video-wrap-icon a:hover {
    color: #fff; }

.red-gal-image .red-gal-item {
  margin-bottom: 30px; }

.red-gal-image .gal-image {
  width: 100%; }

.red-single-video {
  padding-top: 42%;
  padding-bottom: 42%;
  text-align: center; }

.red-single-video a {
  display: inline-block;
  width: 30px;
  height: 30px;
  color: #d93; }
  .red-single-video a i {
    font-size: 30px;
    line-height: 1; }
  .red-single-video a:hover {
    color: #fff; }

.red-social.red-el-social .title {
  display: inline-block;
  margin-right: 13px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  letter-spacing: -0.03em;
  color: #444;
  font-size: 16px;
  line-height: 24px; }

.red-social.red-el-social a {
  background-color: #fff;
  margin: 0 1.5px;
  -webkit-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
  -khtml-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 0 21px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 21px rgba(0, 0, 0, 0.09); }

.red-counter-wraper.layout-1 .counter-item {
  margin-bottom: 30px; }
  .red-counter-wraper.layout-1 .counter-icon img {
    margin-bottom: 10px; }
  .red-counter-wraper.layout-1 .counter-number {
    font-size: 45px;
    line-height: 30px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.03em;
    color: #d93;
    font-weight: 600; }
  .red-counter-wraper.layout-1 .counter-number .suffix {
    font-size: 30px;
    line-height: 1; }
  .red-counter-wraper.layout-1 .counter-title {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #444; }

.red-counter-wraper.layout-2 .counter-item {
  margin-bottom: 30px; }
  .red-counter-wraper.layout-2 .counter-item .counter-icon {
    float: left;
    margin-right: 20px; }
  .red-counter-wraper.layout-2 .counter-item .content-right {
    float: left; }
    .red-counter-wraper.layout-2 .counter-item .content-right .counter-number {
      font-size: 30px;
      line-height: 1;
      letter-spacing: 0.03em;
      font-weight: 700;
      margin-top: -5px;
      margin-bottom: 5px; }
    .red-counter-wraper.layout-2 .counter-item .content-right .counter-title {
      font-size: 14px;
      letter-spacing: 0.03em; }

.wpb_raw_html .join-now-block {
  max-width: 375px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 3px;
  padding: 58px 50px 70px 50px; }
  @media (max-width: 576px) {
    .wpb_raw_html .join-now-block {
      padding: 38px 15px 40px 15px; } }
  .wpb_raw_html .join-now-block .silent-heading {
    font-size: 22px;
    line-height: 1.2;
    color: #71b61b;
    font-style: italic; }
  @media (max-width: 576px) {
      .wpb_raw_html .join-now-block .silent-heading {
        font-size: 18px;
        line-height: 1.2; } }
  .wpb_raw_html .join-now-block h2 {
    font-size: 34px;
    line-height: 40px;
    letter-spacing: -0.03em;
    margin-top: 15px;
    margin-bottom: 30px; }
  @media (max-width: 576px) {
      .wpb_raw_html .join-now-block h2 {
        font-size: 28px;
        line-height: 32px; } }
  @media (min-width: 577px) {
      .wpb_raw_html .join-now-block a.btn {
        min-width: 180px; } }

.involved-donation-wrap .row {
  margin-left: 0;
  margin-right: 0; }
  .involved-donation-wrap .row .involved-block {
    padding: 25px 100px 20px 90px; }
  @media (max-width: 1199px) {
      .involved-donation-wrap .row .involved-block {
        padding: 25px 70px 20px 50px; } }
  @media (max-width: 991px) {
      .involved-donation-wrap .row .involved-block {
        padding: 25px 15px 20px 15px; } }
  @media (max-width: 767px) {
      .involved-donation-wrap .row .involved-block {
        padding: 25px 0 20px 0; } }
  .involved-donation-wrap .row .donation-block {
    padding: 25px 70px 20px 120px; }
  @media (max-width: 1199px) {
      .involved-donation-wrap .row .donation-block {
        padding: 25px 50px 20px 80px; } }
  @media (max-width: 991px) {
      .involved-donation-wrap .row .donation-block {
        padding: 25px 15px 20px 35px; } }
  @media (max-width: 767px) {
      .involved-donation-wrap .row .donation-block {
        padding: 25px 0 20px 0; } }
  @media (min-width: 768px) {
      .involved-donation-wrap .row .involved-block {
        border-right: 2px dashed #bbb; } }

.involved-donation-wrap .involved-block, .involved-donation-wrap .donation-block {
  padding: 25px 90px 30px 90px; }
  @media (max-width: 1199px) {
    .involved-donation-wrap .involved-block, .involved-donation-wrap .donation-block {
      padding: 25px 70px 30px 50px; } }
  @media (max-width: 991px) {
    .involved-donation-wrap .involved-block, .involved-donation-wrap .donation-block {
      padding: 25px 15px 30px 15px; } }

.involved-donation-wrap span {
  display: block; }

.involved-donation-wrap .title1 {
  font-size: 52px;
  line-height: 1;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  letter-spacing: 0.03em;
  color: #080808; }
  @media (max-width: 1199px) {
    .involved-donation-wrap .title1 {
      font-size: 42px; } }
  @media (max-width: 576px) {
    .involved-donation-wrap .title1 {
      font-size: 28px; } }

.involved-donation-wrap .title2 {
  font-size: 45px;
  line-height: 1;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #d93;
  text-transform: uppercase;
  display: inline-block;
  position: relative;
  margin-bottom: 30px; }
  @media (max-width: 1199px) {
    .involved-donation-wrap .title2 {
      font-size: 42px; } }
  @media (max-width: 576px) {
    .involved-donation-wrap .title2 {
      font-size: 28px;
      margin-bottom: 10px; } }

.involved-donation-wrap .title3 {
  font-size: 30px;
  line-height: 38px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: #333; }
  @media (max-width: 1199px) {
    .involved-donation-wrap .title3 {
      font-size: 28px;
      line-height: 32px; } }
  @media (max-width: 576px) {
    .involved-donation-wrap .title3 {
      font-size: 16px;
      line-height: 24px; } }

.involved-donation-wrap a.btn {
  margin-top: 30px; }
  @media (max-width: 576px) {
    .involved-donation-wrap a.btn {
      margin-top: 15px; } }

@media (min-width: 1200px) {
    .red-blog-wrap.grid .red-grid.row {
      margin-left: -21px;
      margin-right: -21px; }
      .red-blog-wrap.grid .red-grid.row > div {
        padding-left: 21px;
        padding-right: 21px; } }

.red-blog-wrap.grid .entry-grid .entry-meta {
  margin-bottom: 8px; }
  .red-blog-wrap.grid .entry-grid .archive-header {
    margin-bottom: 23px; }
  .red-blog-wrap.grid .entry-grid .archive-header .archive-title {
    font-size: 20px;
    line-height: 24px;
    letter-spacing: -0.03em; }
    @media (min-width: 1200px) {
      .red-blog-wrap.grid .entry-grid .archive-header .archive-title {
        padding-right: 40px; } }
  .red-blog-wrap.grid .entry-grid .detail-author .author-avatar {
    display: inline-block;
    border-radius: 50%;
    padding: 5px;
    -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    margin-right: 10px;
    float: left; }
    .red-blog-wrap.grid .entry-grid .detail-author .author-avatar img {
      border-radius: 50%; }
  .red-blog-wrap.grid .entry-grid .detail-author .author-info {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #333;
    margin-top: 10px;
    display: inline-block; }
    .red-blog-wrap.grid .entry-grid .detail-author .author-info a {
      text-transform: capitalize; }

.red-blog-carousel.layout-1 {
  padding-left: 200px;
  padding-right: 200px; }
  @media (max-width: 1199px) {
    .red-blog-carousel.layout-1 {
      padding-left: 100px;
      padding-right: 100px; } }
  @media (max-width: 767px) {
    .red-blog-carousel.layout-1 {
      padding-left: 0;
      padding-right: 0; } }
  @media (min-width: 768px) {
      .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside > div {
        width: 130px;
        height: 123px;
        background-size: cover;
        border-radius: 3px; }
        .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside > div i {
          width: 100%;
          height: 100%;
          display: block;
          color: #fff;
          opacity: 0;
          visibility: hidden;
          background-color: transparent;
          width: auto;
          height: auto;
          line-height: 123px;
          border: 0;
          font-size: 35px; }
        .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside > div:hover i {
          background-color: rgba(221, 153, 51, 0.8);
          opacity: 1;
          visibility: visible; }
      .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside .owl-prev {
        left: -20px; }
      .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside .owl-next {
        right: -20px; } }
  @media (min-width: 768px) and (max-width: 1199px) {
      .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside > div {
        width: 80px;
        height: 76px; }
        .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside > div i {
          line-height: 76px;
          font-size: 30px; }
      .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside .owl-prev {
        left: 0; }
      .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside .owl-next {
        right: 0; } }
  @media (max-width: 576px) {
      .red-blog-carousel.layout-1 .owl-nav.nav-vertical.inside {
        display: none; } }
  .red-blog-carousel.layout-1 article {
    margin-bottom: 0; }

.red-advanced-search .row {
  margin-left: -5px;
  margin-right: -5px; }
  .red-advanced-search .row > div {
    padding-left: 5px;
    padding-right: 5px;
    margin-top: 10px;
    margin-bottom: 16px; }

.red-advanced-search input[type="text"], .red-advanced-search select {
  width: 100%;
  background-color: #fafafa;
  box-shadow: none; }
  @media (min-width: 1200px) {
    .red-advanced-search input[type="text"], .red-advanced-search select {
      min-width: 290px; } }
  .red-advanced-search input[type="text"]::-webkit-input-placeholder, .red-advanced-search select::-webkit-input-placeholder {
    color: #666;
    font-size: 13px;
    letter-spacing: 0.01em;
    font-style: italic; }
  .red-advanced-search input[type="text"]:-moz-placeholder, .red-advanced-search select:-moz-placeholder {
    color: #666;
    font-size: 13px;
    letter-spacing: 0.01em;
    font-style: italic; }
  .red-advanced-search input[type="text"]::-moz-placeholder, .red-advanced-search select::-moz-placeholder {
    color: #666;
    font-size: 13px;
    letter-spacing: 0.01em;
    font-style: italic; }
  .red-advanced-search input[type="text"]:-ms-input-placeholder, .red-advanced-search select:-ms-input-placeholder {
    color: #666;
    font-size: 13px;
    letter-spacing: 0.01em;
    font-style: italic; }

.red-advanced-search select {
  padding: 13px 30px 17px 30px;
  height: 55px;
  color: #666;
  font-size: 13px;
  font-style: italic;
  letter-spacing: 0.01em;
  margin-bottom: 0;
  cursor: pointer;
  background: #fafafa url('../images/arrow-down.png') no-repeat 90%;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none; }

.red-advanced-search select::-ms-expand {
  display: none; }

.red-advanced-search input[type="submit"] {
  padding: 15px 35px; }

.red-causes-carousel .owl-stage-outer {
  overflow: visible !important; }

.red-causes-carousel .owl-item {
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.5s;
  -khtml-transition: opacity 0.5s;
  -moz-transition: opacity 0.5s;
  -ms-transition: opacity 0.5s;
  -o-transition: opacity 0.5s;
  transition: opacity 0.5s; }

.red-causes-carousel .owl-item.active {
  opacity: 1;
  visibility: visible; }

.red-causes-carousel .grid-item {
  margin-bottom: 48px; }

.red-causes-carousel .entry-media {
  margin-bottom: 0;
  position: relative; }
  .red-causes-carousel .entry-media img {
    width: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
  .red-causes-carousel .entry-media .donation-action {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(221, 153, 51, 0.9);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    opacity: 0;
    visibility: hidden;
    -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; }
  .red-causes-carousel .entry-media .donation-action a.btn {
    position: absolute;
    top: 50%;
    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%);
    margin-top: -27px;
    color: #fff;
    border-color: #fff; }

.red-causes-carousel .grid-item:hover .entry-media .donation-action {
  opacity: 1;
  visibility: visible; }

.red-causes-carousel .entry-info {
  padding: 38px 15px 86px 15px;
  position: relative;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); }
  .red-causes-carousel .entry-info .donors-people {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    color: #333;
    letter-spacing: -0.03em;
    text-transform: uppercase; }
  .red-causes-carousel .entry-info .donors-people .lbl {
    color: #d93; }
  .red-causes-carousel .entry-info .entry-title {
    margin-top: 11px;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    font-size: 20px;
    line-height: 26px; }
  .red-causes-carousel .entry-info .donation-amount-wrap {
    padding: 25px 36px 25px 36px;
    border-radius: 96px;
    position: absolute;
    bottom: -46px;
    left: 15px;
    right: 15px;
    background: #fff;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); }
  @media (max-width: 576px) {
      .red-causes-carousel .entry-info .donation-amount-wrap {
        padding: 25px 20px 25px 20px; } }
  .red-causes-carousel .entry-info .donation-amount-wrap .donation-amount {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 13px; }
    .red-causes-carousel .entry-info .donation-amount-wrap .donation-amount > div {
      flex: 0 0 50%;
      max-width: 50%;
      text-align: center;
      color: #d93;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: -0.02em;
      position: relative;
      line-height: 1; }
    .red-causes-carousel .entry-info .donation-amount-wrap .donation-amount > div .value {
      color: #333; }
    .red-causes-carousel .entry-info .donation-amount-wrap .donation-amount .raised:after {
      content: "";
      position: absolute;
      bottom: 2px;
      right: 0;
      background-color: #787878;
      width: 1px;
      height: 6px; }
    @media (max-width: 576px) {
        .red-causes-carousel .entry-info .donation-amount-wrap .donation-amount .raised:after {
          content: none; } }
  .red-causes-carousel .entry-info .donation-amount-wrap .donate-progress .give-progress-bar {
    height: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -khtml-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -ms-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -o-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12); }
    .red-causes-carousel .entry-info .donation-amount-wrap .donate-progress .give-progress-bar span {
      display: block;
      height: 100%;
      background-color: #d93;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      text-align: right;
      font-size: 11px;
      color: #fff;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      line-height: 20px;
      padding-right: 10px; }

.red-causes-carousel .owl-nav {
  margin-top: 70px; }
  .red-causes-carousel .owl-nav > div {
    width: 45px;
    height: 45px;
    background-color: #fff;
    margin: 0 3.5px;
    border-radius: 50%;
    text-align: center;
    color: #333;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -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; }
  .red-causes-carousel .owl-nav > div > i {
    line-height: 45px;
    font-size: 12px; }
  .red-causes-carousel .owl-nav > div:hover {
    background-color: #d93;
    color: #fff; }

.red-story-carousel-wrap .grid-item {
  position: relative; }
  .red-story-carousel-wrap .grid-item > img {
    width: 100%; }
  .red-story-carousel-wrap .grid-item .share-popup-link {
    position: absolute;
    top: 30px;
    right: 38px;
    width: 60px;
    height: 60px;
    color: #000;
    font-size: 15px;
    border-radius: 50%;
    text-align: center;
    border: 1px dashed #797979;
    display: inline-block;
    padding-top: 8px; }
  @media (max-width: 1199px) {
      .red-story-carousel-wrap .grid-item .share-popup-link {
        right: 15px;
        top: 15px; } }
  @media (max-width: 576px) {
      .red-story-carousel-wrap .grid-item .share-popup-link {
        display: none; } }
  .red-story-carousel-wrap .grid-item .share-popup-link i {
    width: 42px;
    height: 42px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0;
    line-height: 42px;
    -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; }
  .red-story-carousel-wrap .grid-item .share-popup-link:hover {
    border-color: #fff;
    color: #fff; }
    .red-story-carousel-wrap .grid-item .share-popup-link:hover i {
      background-color: #d93; }
  .red-story-carousel-wrap .grid-item .entry-info {
    position: absolute;
    top: 30px;
    left: 35px;
    right: 35px;
    bottom: 30px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 70px 56px 70px 56px;
    display: flex;
    flex-wrap: wrap; }
  @media (max-width: 1199px) {
      .red-story-carousel-wrap .grid-item .entry-info {
        padding: 50px 30px 50px 30px; } }
  @media (max-width: 576px) {
      .red-story-carousel-wrap .grid-item .entry-info {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 40px 15px 50px 15px; } }
  .red-story-carousel-wrap .grid-item .location {
    background-color: #d93;
    padding: 9px 25px;
    color: #fff;
    font-size: 11px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-block; }
  .red-story-carousel-wrap .grid-item .archive-title {
    margin-top: 22px;
    margin-bottom: 0;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.03em;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    color: #fff; }
  @media (max-width: 1199px) {
      .red-story-carousel-wrap .grid-item .archive-title {
        font-size: 20px;
        line-height: 28px; } }
  @media (max-width: 767px) {
      .red-story-carousel-wrap .grid-item .archive-title {
        margin-top: 10px;
        margin-bottom: 20px; } }
  @media (max-width: 576px) {
      .red-story-carousel-wrap .grid-item .archive-title {
        font-size: 18px;
        line-height: 24px; } }
  .red-story-carousel-wrap .grid-item .stories-desc {
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #e8e8e8;
    margin-bottom: 38px; }
  @media (min-width: 1200px) {
      .red-story-carousel-wrap .grid-item .stories-desc {
        padding-right: 100px; } }
  @media (max-width: 576px) {
      .red-story-carousel-wrap .grid-item .stories-desc {
        display: none; } }
  @media (max-width: 576px) {
        .red-story-carousel-wrap .grid-item .donation-wrap > div {
          flex: 0 0 100%;
          width: 100%;
          max-width: 100%; } }
  .red-story-carousel-wrap .grid-item .donation-value .lbl {
    font-size: 15px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
    color: #fff; }
  .red-story-carousel-wrap .grid-item .donation-value .value {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #d93;
    letter-spacing: -0.03em;
    line-height: 1; }
    @media (max-width: 1199px) {
      .red-story-carousel-wrap .grid-item .donation-value .value {
        font-size: 30px; } }
    @media (max-width: 576px) {
      .red-story-carousel-wrap .grid-item .donation-value .value {
        font-size: 28px; } }
  @media (max-width: 1199px) {
        .red-story-carousel-wrap .grid-item .donation-action a.btn {
          padding: 12px 30px; } }
    @media (max-width: 576px) {
      .red-story-carousel-wrap .grid-item .donation-action a.btn {
        padding: 10px 20px;
        font-size: 11px;
        margin-top: 10px; } }

.red-story-carousel-wrap .owl-item .grid-item .entry-info {
  -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; }
  @media (min-width: 577px) {
      .red-story-carousel-wrap .owl-item .grid-item .entry-info {
        opacity: 0;
        visibility: hidden; } }
  .red-story-carousel-wrap .owl-item.center .grid-item .entry-info {
    opacity: 1;
    visibility: visible; }
  .red-story-carousel-wrap .owl-item .small {
    display: block; }
  @media (max-width: 576px) {
      .red-story-carousel-wrap .owl-item .small {
        display: none; } }
  .red-story-carousel-wrap .owl-item .large {
    display: none; }
  @media (max-width: 576px) {
      .red-story-carousel-wrap .owl-item .large {
        display: block; } }
  @media (min-width: 577px) {
      .red-story-carousel-wrap .owl-item.center .small {
        display: none; }
      .red-story-carousel-wrap .owl-item.center .large {
        display: block; } }

.red-events-wrap.layout-1 .tribe-events-items, .red-events-wrap.layout-2 .tribe-events-items {
  margin-bottom: 20px;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); }
  @media (min-width: 768px) {
      .red-events-wrap.layout-1 .event-content-wrap, .red-events-wrap.layout-2 .event-content-wrap {
        display: flex;
        flex-wrap: wrap; } }
  @media (max-width: 767px) {
      .red-events-wrap.layout-1 .event-content-wrap, .red-events-wrap.layout-2 .event-content-wrap {
        -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
        -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
        -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
        -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
        -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
        box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
        padding: 30px 15px; } }
  @media (min-width: 768px) {
        .red-events-wrap.layout-1 .event-content-wrap .list-event-left, .red-events-wrap.layout-2 .event-content-wrap .list-event-left {
          flex: 0 0 calc(100% - 254px);
          max-width: calc(100% - 254px);
          -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
          -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
          -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
          -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
          -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.03); } }
    @media (min-width: 768px) and (max-width: 991px) {
      .red-events-wrap.layout-1 .event-content-wrap .list-event-left, .red-events-wrap.layout-2 .event-content-wrap .list-event-left {
        flex: 0 0 calc(100% - 200px);
        max-width: calc(100% - 200px); } }
  @media (min-width: 768px) {
        .red-events-wrap.layout-1 .event-content-wrap .list-event-right, .red-events-wrap.layout-2 .event-content-wrap .list-event-right {
          flex: 0 0 254px;
          max-width: 254px;
          -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); } }
    @media (min-width: 768px) and (max-width: 991px) {
      .red-events-wrap.layout-1 .event-content-wrap .list-event-right, .red-events-wrap.layout-2 .event-content-wrap .list-event-right {
        flex: 0 0 200px;
        max-width: 200px; } }
    @media (max-width: 767px) {
      .red-events-wrap.layout-1 .event-content-wrap .list-event-right, .red-events-wrap.layout-2 .event-content-wrap .list-event-right {
        margin-top: 20px; } }
  @media (min-width: 768px) {
      .red-events-wrap.layout-1 .list-event-left, .red-events-wrap.layout-2 .list-event-left {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        padding: 30px 15px 25px 15px; } }
  @media (min-width: 992px) {
      .red-events-wrap.layout-1 .list-event-left, .red-events-wrap.layout-2 .list-event-left {
        padding: 48px 48px 48px 58px; } }
  @media (max-width: 767px) {
      .red-events-wrap.layout-1 .list-event-left, .red-events-wrap.layout-2 .list-event-left {
        text-align: center; } }
  .red-events-wrap.layout-1 .list-event-left .col-left, .red-events-wrap.layout-2 .list-event-left .col-left {
    position: relative; }
    @media (min-width: 768px) {
      .red-events-wrap.layout-1 .list-event-left .col-left:after, .red-events-wrap.layout-2 .list-event-left .col-left:after {
        position: absolute;
        top: -15px;
        right: 0;
        content: "";
        width: 1px;
        height: 100px;
        background-color: #dcdcdc; } }
    @media (min-width: 992px) {
      .red-events-wrap.layout-1 .list-event-left .col-left, .red-events-wrap.layout-2 .list-event-left .col-left {
        flex: 0 0 97px;
        max-width: 97px; } }
    @media (max-width: 576px) {
      .red-events-wrap.layout-1 .list-event-left .col-left, .red-events-wrap.layout-2 .list-event-left .col-left {
        margin-bottom: 10px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .red-events-wrap.layout-1 .list-event-left .col-left, .red-events-wrap.layout-2 .list-event-left .col-left {
        flex: 0 0 70px;
        max-width: 70px; } }
  @media (min-width: 992px) {
        .red-events-wrap.layout-1 .list-event-left .col-right, .red-events-wrap.layout-2 .list-event-left .col-right {
          flex: 0 0 calc(100% - 97px);
          max-width: calc(100% - 97px);
          padding-left: 30px; } }
    @media (min-width: 768px) and (max-width: 991px) {
      .red-events-wrap.layout-1 .list-event-left .col-right, .red-events-wrap.layout-2 .list-event-left .col-right {
        flex: 0 0 calc(100% - 70px);
        max-width: calc(100% - 70px);
        padding-left: 15px; } }
  .red-events-wrap.layout-1 .list-event-left .event-day, .red-events-wrap.layout-2 .list-event-left .event-day, .red-events-wrap.layout-1 .list-event-left .event-month, .red-events-wrap.layout-2 .list-event-left .event-month {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #333;
    text-transform: uppercase;
    font-size: 25px; }
  .red-events-wrap.layout-1 .list-event-left .event-day, .red-events-wrap.layout-2 .list-event-left .event-day {
    font-size: 42px;
    color: #d93; }
    @media (max-width: 576px) {
      .red-events-wrap.layout-1 .list-event-left .event-day, .red-events-wrap.layout-2 .list-event-left .event-day {
        margin-right: 10px; } }
  .red-events-wrap.layout-1 .list-event-left .org-name, .red-events-wrap.layout-2 .list-event-left .org-name {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.03em;
    color: #1b1b1b;
    margin-bottom: 3px; }
    .red-events-wrap.layout-1 .list-event-left .org-name span, .red-events-wrap.layout-2 .list-event-left .org-name span {
      text-transform: uppercase;
      color: #d93; }
  .red-events-wrap.layout-1 .list-event-left .list-event-title, .red-events-wrap.layout-2 .list-event-left .list-event-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.03em;
    margin-top: 0;
    margin-bottom: 22px; }
    @media (max-width: 991px) {
      .red-events-wrap.layout-1 .list-event-left .list-event-title, .red-events-wrap.layout-2 .list-event-left .list-event-title {
        margin-bottom: 10px; } }
    @media (max-width: 767px) {
      .red-events-wrap.layout-1 .list-event-left .list-event-title, .red-events-wrap.layout-2 .list-event-left .list-event-title {
        margin-top: 10px; } }
  .red-events-wrap.layout-1 .list-event-left .events-schedule > div, .red-events-wrap.layout-2 .list-event-left .events-schedule > div {
    display: inline-block;
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.05em;
    color: #555; }
    .red-events-wrap.layout-1 .list-event-left .events-schedule span, .red-events-wrap.layout-2 .list-event-left .events-schedule span {
      text-transform: uppercase;
      color: #d93;
      font-weight: 600;
      margin-right: 2px; }
    .red-events-wrap.layout-1 .list-event-left .events-schedule .event-date-start, .red-events-wrap.layout-2 .list-event-left .events-schedule .event-date-start {
      margin-right: 15px; }
  .red-events-wrap.layout-1 .list-event-right, .red-events-wrap.layout-2 .list-event-right {
    text-align: center; }
  @media (min-width: 768px) {
      .red-events-wrap.layout-1 .list-event-right, .red-events-wrap.layout-2 .list-event-right {
        padding: 20px 15px 20px 15px; } }
  @media (min-width: 992px) {
      .red-events-wrap.layout-1 .list-event-right, .red-events-wrap.layout-2 .list-event-right {
        padding: 35px 40px 34px 40px; } }
  .red-events-wrap.layout-1 .list-event-right .location, .red-events-wrap.layout-2 .list-event-right .location {
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #333;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 14px; }
    .red-events-wrap.layout-1 .list-event-right .location i, .red-events-wrap.layout-2 .list-event-right .location i {
      display: block;
      font-size: 22px;
      color: #d93;
      margin-bottom: 10px; }
  .red-events-wrap.layout-1 .list-event-right .btn.btn-medium, .red-events-wrap.layout-2 .list-event-right .btn.btn-medium {
    min-width: 140px; }
  .red-events-wrap.layout-1 .list-event-right .close-ticket, .red-events-wrap.layout-2 .list-event-right .close-ticket {
    background-color: #222;
    border-color: #222;
    color: #fff;
    cursor: auto; }
    .red-events-wrap.layout-1 .list-event-right .close-ticket:hover, .red-events-wrap.layout-2 .list-event-right .close-ticket:hover {
      background-color: #222;
      border-color: #222;
      color: #fff; }

@media (min-width: 768px) {
        .red-events-wrap.layout-2 .event-content-wrap .list-event-left {
          background-color: #161616; } }
  @media (min-width: 768px) {
      .red-events-wrap.layout-2 .event-content-wrap .list-event-right {
        background-color: #1c1c1c; } }
  .red-events-wrap.layout-2 .list-event-left .event-month {
    color: #fff; }
  .red-events-wrap.layout-2 .list-event-left .org-name {
    color: #ddd; }
  .red-events-wrap.layout-2 .list-event-left .list-event-title {
    color: #fff; }
  .red-events-wrap.layout-2 .list-event-left .events-schedule > div {
    color: #ddd; }
  .red-events-wrap.layout-2 .list-event-right .location {
    color: #ddd; }
  .red-events-wrap.layout-2 .list-event-right .close-ticket {
    background-color: #525252; }
  .red-events-wrap.layout-2 .list-event-left .col-left:after {
    background-color: #6f6f6f; }

.red-events-wrap.layout-3 .tribe-events-items {
  margin-bottom: 30px;
  position: relative; }
  .red-events-wrap.layout-3 .tribe-events-items:before {
    content: attr(data-idx);
    position: absolute;
    bottom: 0;
    right: 42px;
    font-size: 110px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    color: #fafafa;
    text-transform: uppercase;
    line-height: 1; }
  .red-events-wrap.layout-3 .event-content-wrap {
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    position: relative; }
  .red-events-wrap.layout-3 .event-content-wrap > img {
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
  .red-events-wrap.layout-3 .event-info {
    padding: 35px 40px; }
  @media (max-width: 1199px) {
      .red-events-wrap.layout-3 .event-info {
        padding: 35px 15px; } }
  .red-events-wrap.layout-3 .event-info .list-event-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #373737; }
    @media (max-width: 1199px) {
      .red-events-wrap.layout-3 .event-info .list-event-title {
        font-size: 18px; } }
  .red-events-wrap.layout-3 .event-info .events-schedule {
    margin-bottom: 22px;
    color: #333;
    font-size: 14px; }
    .red-events-wrap.layout-3 .event-info .events-schedule p {
      margin: 0;
      line-height: 20px;
      padding-left: 26px;
      position: relative;
      margin-bottom: 10px; }
    .red-events-wrap.layout-3 .event-info .events-schedule p:last-child {
      margin-bottom: 0; }
    .red-events-wrap.layout-3 .event-info .events-schedule p i {
      font-size: 16px;
      color: #d93;
      position: absolute;
      left: 0; }
    .red-events-wrap.layout-3 .event-info .events-schedule > div {
      font-size: 13px;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      font-weight: 500;
      line-height: 25px;
      letter-spacing: -0.03em;
      color: #555; }
    .red-events-wrap.layout-3 .event-info .events-schedule span {
      text-transform: uppercase;
      color: #d93;
      font-weight: 600;
      margin-right: 10px;
      min-width: 62px;
      display: inline-block; }
  .red-events-wrap.layout-3 .event-info .org-wrap {
    padding-top: 20px;
    border-top: 1px solid #e1e1e1; }
    .red-events-wrap.layout-3 .event-info .org-wrap .org-item {
      display: flex;
      flex-wrap: wrap; }
    .red-events-wrap.layout-3 .event-info .org-wrap .org-item .org-avatar {
      width: 40px;
      flex: 0 0 40px;
      max-width: 40px;
      border-radius: 5px;
      -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      -khtml-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      -ms-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      -o-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      box-shadow: 0 0 13px rgba(0, 0, 0, 0.05); }
      .red-events-wrap.layout-3 .event-info .org-wrap .org-item .org-avatar img {
        width: 100%;
        border-radius: 5px; }
    .red-events-wrap.layout-3 .event-info .org-wrap .org-item .org-info {
      flex: 0 0 calc(100% - 40px);
      max-width: calc(100% - 40px);
      padding-left: 20px; }
      @media (max-width: 1199px) {
        .red-events-wrap.layout-3 .event-info .org-wrap .org-item .org-info {
          padding-left: 10px; } }
      .red-events-wrap.layout-3 .event-info .org-wrap .org-item .org-info h4 {
        margin-top: 0;
        margin-bottom: 0;
        letter-spacing: -0.03em;
        margin: 0 0 5px 0; }
        @media (max-width: 1199px) {
        .red-events-wrap.layout-3 .event-info .org-wrap .org-item .org-info h4 {
          font-size: 16px; } }
      .red-events-wrap.layout-3 .event-info .org-wrap .org-item .org-info p {
        margin: 0;
        color: #d93;
        line-height: 1; }

.red-events-wrap.layout-4 .tribe-events-items {
  margin-bottom: 45px; }
  .red-events-wrap.layout-4 .event-date {
    margin-bottom: 20px; }
  .red-events-wrap.layout-4 .event-date .event-day, .red-events-wrap.layout-4 .event-date .event-month {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: #d93;
    text-transform: uppercase;
    font-size: 25px;
    display: block; }
  .red-events-wrap.layout-4 .event-date .event-day {
    font-size: 42px; }
  .red-events-wrap.layout-4 .org-name {
    font-size: 14px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: -0.03em;
    color: #333;
    margin-bottom: 9px; }
  .red-events-wrap.layout-4 .org-name span {
    font-weight: 600;
    text-transform: uppercase;
    color: #d93; }
  .red-events-wrap.layout-4 .list-event-title {
    margin-top: 0;
    margin-bottom: 22px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: #373737; }
  .red-events-wrap.layout-4 .list-event-action {
    padding-top: 18px;
    border-top: 1px solid #dcdcdc; }
  .red-events-wrap.layout-4 .list-event-action .location {
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #333;
    margin-top: 0;
    padding-left: 35px;
    position: relative;
    margin-bottom: 28px; }
    @media (min-width: 1200px) {
      .red-events-wrap.layout-4 .list-event-action .location {
        padding-right: 35px; } }
    .red-events-wrap.layout-4 .list-event-action .location i {
      font-size: 22px;
      color: #d93;
      position: absolute;
      left: 0;
      top: 50%;
      margin-top: -10px; }
  .red-events-wrap.layout-4 .list-event-action .btn.btn-medium {
    min-width: 140px; }
  .red-events-wrap.layout-4 .list-event-action .close-ticket {
    background-color: #222;
    border-color: #222;
    color: #fff;
    cursor: auto; }
    .red-events-wrap.layout-4 .list-event-action .close-ticket:hover {
      background-color: #222;
      border-color: #222;
      color: #fff; }

.red-volunteer-box {
  position: relative;
  color: #fff;
  padding: 55px 60px 55px 60px;
  border-radius: 3px;
  overflow: hidden; }

@media (min-width: 1199px) {
    .red-volunteer-box {
      max-width: 390px; } }

@media (max-width: 991px) {
    .red-volunteer-box {
      padding: 55px 60px 55px 60px; } }

@media (max-width: 576px) {
    .red-volunteer-box {
      padding: 40px 15px 55px 15px; } }

@media (max-width: 1199px) {
      .red-volunteer-box.pull-right {
        float: none; } }

.red-volunteer-box .bg-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0; }

.red-volunteer-box .box-inner {
  position: relative; }

.red-volunteer-box .title1 {
  display: block;
  font-size: 28px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  line-height: 40px;
  letter-spacing: -0.03em;
  font-style: italic; }

.red-volunteer-box .title2 {
  font-size: 50px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  line-height: 1;
  letter-spacing: -0.03em;
  font-weight: 600;
  font-style: italic; }

.red-volunteer-box .desc {
  font-size: 16px;
  line-height: 24px;
  letter-spacing: -0.02em;
  margin-top: 20px;
  margin-bottom: 15px; }

.red-volunteer-box ul {
  margin: 0;
  padding: 0;
  list-style: none; }
  .red-volunteer-box ul li {
    font-size: 15px;
    line-height: 26px;
    letter-spacing: -0.03em;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    padding-left: 15px;
    position: relative; }
  .red-volunteer-box ul li:before {
    content: "\f00c";
    font-family: FontAwesome;
    position: absolute;
    top: 1px;
    left: 0;
    font-size: 11px; }

.red-volunteer-box a.btn {
  margin-top: 30px;
  padding: 12px 45px;
  height: 50px; }

.red-single-causes-donation.layout-1 .datetime-progress {
  margin-bottom: 39px; }
  @media (min-width: 577px) {
      .red-single-causes-donation.layout-1 .datetime-progress {
        display: flex;
        flex-wrap: wrap;
        align-items: center; } }
  @media (min-width: 577px) {
        .red-single-causes-donation.layout-1 .datetime-progress .p-col-left {
          flex: 0 0 140px;
          max-width: 140px; } }
    @media (max-width: 576px) {
      .red-single-causes-donation.layout-1 .datetime-progress .p-col-left {
        margin-bottom: 10px; } }
    .red-single-causes-donation.layout-1 .datetime-progress .p-col-left .p-lable {
      display: block;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      font-size: 13px;
      color: #333;
      letter-spacing: -0.02em;
      font-weight: 500; }
  .red-single-causes-donation.layout-1 .datetime-progress .give-progress-bar {
    height: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -khtml-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -ms-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -o-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12); }
    @media (min-width: 577px) {
      .red-single-causes-donation.layout-1 .datetime-progress .give-progress-bar {
        flex: 0 0 calc(100% - 140px);
        max-width: calc(100% - 140px);
        width: calc(100% - 140px); } }
    @media (min-width: 1200px) {
      .red-single-causes-donation.layout-1 .datetime-progress .give-progress-bar {
        max-width: 365px;
        width: 365px; } }
    .red-single-causes-donation.layout-1 .datetime-progress .give-progress-bar span {
      display: block;
      height: 100%;
      background-color: #222;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      text-align: right;
      font-size: 11px;
      color: #fff;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      line-height: 20px;
      padding-right: 10px; }
  .red-single-causes-donation.layout-1 .donate-progress {
    margin-bottom: 38px; }
  @media (min-width: 577px) {
      .red-single-causes-donation.layout-1 .donate-progress {
        display: flex;
        flex-wrap: wrap;
        align-items: center; } }
  @media (min-width: 577px) {
        .red-single-causes-donation.layout-1 .donate-progress .p-col-left {
          flex: 0 0 140px;
          max-width: 140px; } }
    @media (max-width: 576px) {
      .red-single-causes-donation.layout-1 .donate-progress .p-col-left {
        margin-bottom: 10px; } }
    .red-single-causes-donation.layout-1 .donate-progress .p-col-left .p-lable {
      display: block;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      font-size: 13px;
      color: #333;
      letter-spacing: -0.02em;
      font-weight: 500; }
    .red-single-causes-donation.layout-1 .donate-progress .p-col-left .p-value {
      font-size: 25px;
      font-weight: 700;
      letter-spacing: -0.03em;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      color: #d93;
      line-height: 1;
      margin-top: 4px;
      display: block; }
  .red-single-causes-donation.layout-1 .donate-progress .give-progress-bar {
    height: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -khtml-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -ms-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -o-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12); }
    @media (min-width: 577px) {
      .red-single-causes-donation.layout-1 .donate-progress .give-progress-bar {
        flex: 0 0 calc(100% - 140px);
        max-width: calc(100% - 140px);
        width: calc(100% - 140px); } }
    @media (min-width: 1200px) {
      .red-single-causes-donation.layout-1 .donate-progress .give-progress-bar {
        max-width: 365px;
        width: 365px; } }
    .red-single-causes-donation.layout-1 .donate-progress .give-progress-bar span {
      display: block;
      height: 100%;
      background-color: #d93;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      text-align: right;
      font-size: 11px;
      color: #fff;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      line-height: 20px;
      padding-right: 10px; }
  .red-single-causes-donation.layout-1 .extra-text {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 25px;
    line-height: 45px;
    letter-spacing: 0.03em;
    color: #525252;
    display: inline-block;
    margin-left: 25px;
    margin-top: 5px; }
  @media (max-width: 1199px) {
      .red-single-causes-donation.layout-1 .extra-text {
        margin-left: 0;
        margin-top: 15px;
        font-size: 20px;
        line-height: 35px;
        display: block; } }

.red-single-causes-donation.layout-2 {
  padding: 82px 90px 40px 90px;
  -webkit-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  -khtml-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  border-radius: 4px; }
  @media (min-width: 992px) {
    .red-single-causes-donation.layout-2 {
      margin-top: 80px; } }
  @media (max-width: 991px) {
    .red-single-causes-donation.layout-2 {
      padding: 50px 50px 20px 50px; } }
  @media (max-width: 767px) {
    .red-single-causes-donation.layout-2 {
      padding: 30px 30px 10px 30px; } }
  @media (max-width: 576px) {
    .red-single-causes-donation.layout-2 {
      padding: 30px 15px 0 15px; } }
  .red-single-causes-donation.layout-2.overlap-bottom {
    margin-bottom: -280px;
    position: relative;
    z-index: 1;
    background: #fff; }
  .red-single-causes-donation.layout-2 .row {
    margin-left: -28px;
    margin-right: -28px; }
  .red-single-causes-donation.layout-2 .row > div {
    padding-left: 28px;
    padding-right: 28px;
    margin-bottom: 30px; }
  @media (min-width: 992px) {
      .red-single-causes-donation.layout-2 .col-left {
        margin-top: -122px; } }
  .red-single-causes-donation.layout-2 .col-left img {
    width: 100%;
    border-radius: 4px; }
  .red-single-causes-donation.layout-2 .single-cause-info .entry-title {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 26px;
    line-height: 30px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.03em; }
  .red-single-causes-donation.layout-2 .single-cause-info .d-amount {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 32px;
    letter-spacing: -0.04em; }
    .red-single-causes-donation.layout-2 .single-cause-info .d-amount .amount {
      font-weight: 600;
      color: #d93; }
    .red-single-causes-donation.layout-2 .single-cause-info .d-amount .lbl {
      color: #333; }
  .red-single-causes-donation.layout-2 .single-cause-info .desc {
    margin-top: 19px;
    font-size: 16px;
    letter-spacing: -0.02em;
    line-height: 24px; }
  .red-single-causes-donation.layout-2 .single-cause-info .button-action {
    margin-top: 38px; }
    @media (max-width: 576px) {
      .red-single-causes-donation.layout-2 .single-cause-info .button-action {
        margin-top: 25px; } }
    @media (min-width: 992px) and (max-width: 1199px) {
        .red-single-causes-donation.layout-2 .single-cause-info .button-action a.btn {
          padding: 10px 30px; } }
    @media (max-width: 576px) {
        .red-single-causes-donation.layout-2 .single-cause-info .button-action a.btn {
          margin-top: 10px; } }

@media (min-width: 1200px) {
      .red-single-causes-donation.layout-3 {
        padding-left: 70px;
        padding-right: 70px; } }
  .red-single-causes-donation.layout-3 > .row > div {
    margin-bottom: 30px; }
  @media (min-width: 768px) {
        .red-single-causes-donation.layout-3 > .row > div:last-child {
          margin-left: 25px; } }
  .red-single-causes-donation.layout-3 .entry-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #fff; }
  .red-single-causes-donation.layout-3 .entry-title a {
    color: inherit; }
    .red-single-causes-donation.layout-3 .entry-title a:hover {
      color: #71b61b; }
  .red-single-causes-donation.layout-3 .extra-text {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 25px;
    line-height: 45px;
    letter-spacing: 0.03em;
    color: #ebebeb;
    display: block;
    margin-top: 8px; }
  @media (max-width: 1199px) {
      .red-single-causes-donation.layout-3 .extra-text {
        font-size: 20px;
        line-height: 35px; } }
  @media (min-width: 577px) {
      .red-single-causes-donation.layout-3 .d-amount-wrap.row {
        margin-left: -30px;
        margin-right: -30px; }
        .red-single-causes-donation.layout-3 .d-amount-wrap.row > div {
          padding-left: 30px;
          padding-right: 30px; } }
  .red-single-causes-donation.layout-3 .d-amount {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.03em; }
  .red-single-causes-donation.layout-3 .d-amount .lbl {
    font-size: 15px;
    color: #fff;
    display: block;
    line-height: 1;
    margin-bottom: 5px; }
  .red-single-causes-donation.layout-3 .d-amount .amount {
    font-size: 35px;
    font-weight: 700;
    color: #d93;
    line-height: 1;
    display: block; }
  .red-single-causes-donation.layout-3 .d-amount.d-goal {
    border-right: 1px solid #a4a4a4; }

.red-testimonial-wrap .layout-1 .quote-icon {
  width: 75px;
  height: 85px;
  display: inline-block;
  background: url('../images/quote-icon.png') no-repeat; }
  .red-testimonial-wrap .layout-1 .testi-title {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-top: 17px;
    margin-bottom: 26px; }
  @media (max-width: 1199px) {
      .red-testimonial-wrap .layout-1 .testi-title {
        font-size: 38px; } }
  @media (max-width: 767px) {
      .red-testimonial-wrap .layout-1 .testi-title {
        font-size: 30px; } }
  @media (max-width: 576px) {
      .red-testimonial-wrap .layout-1 .testi-title {
        font-size: 24px; } }
  .red-testimonial-wrap .layout-1 .description {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 37px; }
  @media (min-width: 577px) {
      .red-testimonial-wrap .layout-1 .author-info {
        display: flex;
        flex-wrap: wrap;
        justify-content: center; } }
  .red-testimonial-wrap .layout-1 .author-info .author-avatar {
    border-radius: 50%;
    width: 66px;
    height: 66px;
    text-align: center;
    padding-top: 5px;
    -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.05); }
    @media (min-width: 577px) {
      .red-testimonial-wrap .layout-1 .author-info .author-avatar {
        flex: 0 0 auto; } }
    .red-testimonial-wrap .layout-1 .author-info .author-avatar img {
      width: 56px;
      border-radius: 50%; }
  @media (min-width: 577px) {
        .red-testimonial-wrap .layout-1 .author-info .author-name-pos {
          flex: 0 0 auto;
          margin-left: 15px;
          text-align: left; } }
    .red-testimonial-wrap .layout-1 .author-info .author-name-pos h4 {
      font-size: 20px;
      line-height: 22px;
      letter-spacing: -0.04em;
      color: #444;
      margin-top: 8px;
      margin-bottom: 0; }
    .red-testimonial-wrap .layout-1 .author-info .author-name-pos .author-position {
      font-size: 12px;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      letter-spacing: -0.04em;
      color: #d93; }
  .red-testimonial-wrap .layout-1.dark .testi-title {
    color: #fff; }
  .red-testimonial-wrap .layout-1.dark .description {
    color: #ddd; }
  .red-testimonial-wrap .layout-1.dark .author-info .author-name-pos h4 {
    color: #fff; }

.red-testimonial-wrap .layout-2 .testi-title {
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-top: 20px;
  margin-bottom: 26px; }
  @media (max-width: 1199px) {
      .red-testimonial-wrap .layout-2 .testi-title {
        font-size: 38px; } }
  @media (max-width: 767px) {
      .red-testimonial-wrap .layout-2 .testi-title {
        font-size: 30px; } }
  @media (max-width: 576px) {
      .red-testimonial-wrap .layout-2 .testi-title {
        font-size: 24px; } }
  .red-testimonial-wrap .layout-2 .description {
    font-size: 17px;
    line-height: 28px;
    letter-spacing: -0.02em;
    margin-bottom: 22px; }
  @media (min-width: 577px) {
      .red-testimonial-wrap .layout-2 .author-info {
        display: flex;
        flex-wrap: wrap; } }
  .red-testimonial-wrap .layout-2 .author-info .author-avatar {
    border-radius: 50%;
    width: 66px;
    height: 66px;
    text-align: center;
    padding-top: 5px;
    -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 13px rgba(0, 0, 0, 0.05); }
    @media (min-width: 577px) {
      .red-testimonial-wrap .layout-2 .author-info .author-avatar {
        flex: 0 0 auto; } }
    .red-testimonial-wrap .layout-2 .author-info .author-avatar img {
      width: 56px;
      border-radius: 50%; }
  @media (min-width: 577px) {
        .red-testimonial-wrap .layout-2 .author-info .author-name-pos {
          flex: 0 0 auto;
          margin-left: 15px;
          text-align: left; } }
    .red-testimonial-wrap .layout-2 .author-info .author-name-pos h4 {
      font-size: 20px;
      line-height: 22px;
      letter-spacing: -0.04em;
      color: #444;
      margin-top: 8px;
      margin-bottom: 0; }
    .red-testimonial-wrap .layout-2 .author-info .author-name-pos .author-position {
      font-size: 12px;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      letter-spacing: -0.04em;
      color: #d93; }
  .red-testimonial-wrap .layout-2.dark .testi-title {
    color: #fff; }
  .red-testimonial-wrap .layout-2.dark .description {
    color: #ddd; }
  .red-testimonial-wrap .layout-2.dark .author-info .author-name-pos h4 {
    color: #fff; }
/* Archive page */
.entry-archive .entry-quote-inner {
  position: relative;
  padding: 50px 30px; }
  .entry-archive .entry-quote-inner:before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }

.entry-archive blockquote, .entry-archive .blockquote {
  margin: 0;
  border: 0;
  background: transparent; }
  .entry-archive blockquote p, .entry-archive .blockquote p {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    padding: 0 42px 0 42px;
    letter-spacing: 0.03em;
    font-style: italic; }
  .entry-archive blockquote p:before, .entry-archive .blockquote p:before {
    content: "\f10d";
    font-family: 'fontawesome';
    padding-right: 10px;
    vertical-align: top;
    font-size: 30px;
    top: 0; }
  .entry-archive blockquote p:after, .entry-archive .blockquote p:after {
    content: "\f10e";
    font-family: 'fontawesome';
    vertical-align: top;
    font-size: 30px;
    bottom: 0;
    -webkit-transform: rotate(0);
    -khtml-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  .entry-archive blockquote cite, .entry-archive .blockquote cite {
    right: 42px;
    bottom: 0;
    color: #fff;
    letter-spacing: 0.03em; }

.entry-archive .entry-link-inner {
  position: relative;
  padding: 50px 30px; }
  .entry-archive .entry-link-inner:before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .entry-archive .entry-link-inner i {
    display: block;
    color: #fff;
    position: relative;
    font-size: 30px;
    margin-bottom: 10px; }
  .entry-archive .entry-link-inner a {
    color: #fff;
    position: relative;
    font-size: 20px;
    letter-spacing: 0.03em; }
  .entry-archive .entry-link-inner a:hover {
    color: rgba(255, 255, 255, 0.7); }

.archive-header {
  margin-bottom: 15px; }

.archive-header .archive-title {
  margin: 0;
  font-size: 25px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  letter-spacing: -0.03em;
  font-weight: 600; }

.archive-footer {
  margin-top: 35px; }

.entry-media {
  margin-bottom: 30px; }

.entry-media iframe, .entry-media video {
  height: auto; }

.entry-meta {
  list-style: none;
  vertical-align: top;
  padding: 0;
  margin: 0 -10px 10px -10px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif; }

.entry-meta li {
  padding: 0 10px;
  display: inline-block;
  vertical-align: baseline; }
  .entry-meta li i {
    font-size: 17px;
    margin-right: 5px;
    vertical-align: middle; }
  .entry-meta li a {
    font-size: 13px;
    color: #71b61b;
    letter-spacing: -0.03em;
    border-bottom: 1px solid #71b61b; }
  .entry-meta li a:hover {
    color: #333;
    border-bottom-color: #333; }
  .entry-meta li.entry-view span {
    font-size: 13px;
    color: #71b61b;
    letter-spacing: -0.03em;
    border-bottom: 1px solid #71b61b; }

.entry-meta .detail-categories a + a {
  position: relative;
  margin-left: 14px; }
  .entry-meta .detail-categories a + a:before {
    content: "/";
    position: absolute;
    left: -10px;
    top: 50%;
    margin-top: -8px; }

.post-gallery .carousel-control {
  width: 40px;
  height: 40px;
  line-height: 38px;
  text-align: center;
  font-size: 20px;
  color: #fff;
  position: absolute;
  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%);
  -webkit-border-radius: 3px;
  -khtml-border-radius: 3px;
  -moz-border-radius: 3px;
  -ms-border-radius: 3px;
  -o-border-radius: 3px;
  border-radius: 3px;
  -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; }
  .post-gallery .carousel-control.next {
    right: 10px;
    background-color: #222; }
  .post-gallery .carousel-control.next:hover {
    background-color: #d93; }
  .post-gallery .carousel-control.prev {
    background-color: #d93;
    left: 10px; }
  .post-gallery .carousel-control.prev:hover {
    background-color: #222; }
  .post-gallery .carousel-control:hover {
    background-color: #d93;
    border-color: #d93;
    color: #fff; }

.audio-wr-inner {
  padding: 50px 30px;
  position: relative; }

.audio-wr-inner:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5); }

.navigation.pagination {
  margin: 14px 0 7px 0;
  text-align: center; }

.navigation.pagination .nav-links {
  display: inline-block; }

.navigation.pagination .page-numbers {
  font-size: 13px;
  letter-spacing: 0.03em;
  margin: 0;
  padding: 0 15px;
  position: relative;
  float: left; }
/* .navigation.pagination{
 margin: 35px 0 13px 0;
 text-align: center;
 .nav-links{
 display: inline-block;
 }
 .page-numbers{
 font-size: 13px;
 letter-spacing: 0.03em;
 margin: 0;
 padding: 0 15px;
 position: relative;
 line-height: 53px;
 background-color: #fafafa;
 float: left;
 +.page-numbers:before{
 content: "";
 height: 18px;
 width: 1px;
 background-color: #cecece;
 position: absolute;
 top: 18px;
 left: -1px;
 }
 &.prev+.page-numbers:before{
 content: none;
 }
 &.prev{
 background-color: $primary_color;
 color: #fff;
 &:after{
 content: "";
 width: 11px;
 height: 53px;
 background-color: #fafafa;
 position: absolute;
 top: 6px;
 right: 0;
 }
 &:hover{
 background-color: #222222;
 }
 }
 &.next{
 background-color: #222222;
 color: #fff;
 &:before{
 content: none;
 }
 &:after{
 content: "";
 width: 4px;
 height: 53px;
 background-color: #fafafa;
 position: absolute;
 top: 6px;
 left: 0;
 }
 &:hover{
 background-color: $primary_color;
 }
 }
 &.prev,&.next{
 width: 63px;
 height: 65px;
 line-height: 65px;
 margin-top: -6px;
 text-align: center;
 }
 }
 } */
.entry-default {
  padding-bottom: 43px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e7e7e7; }

.entry-mask {
  margin-bottom: 50px;
  position: relative; }

.entry-mask.format-standard .entry-media {
  margin-bottom: 0;
  border-radius: 3px; }
  .entry-mask.format-standard .entry-media img {
    width: 100%;
    border-radius: 3px; }
  .entry-mask.format-standard .entry-media:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 3px; }

.entry-mask .entry-info {
  position: absolute;
  left: 70px;
  right: 70px;
  bottom: 53px;
  -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; }
  @media (max-width: 1199px) {
    .entry-mask .entry-info {
      left: 50px;
      right: 50px;
      bottom: 33px; } }
  @media (max-width: 991px) {
    .entry-mask .entry-info {
      left: 40px;
      right: 40px;
      bottom: 28px; } }
  @media (max-width: 767px) {
    .entry-mask .entry-info {
      left: 30px;
      right: 30px;
      bottom: 20px; } }
  @media (max-width: 576px) {
    .entry-mask .entry-info {
      left: 15px;
      right: 15px;
      bottom: 15px; } }

.entry-mask .archive-header {
  margin-bottom: 0; }

.entry-mask .entry-meta {
  margin-bottom: 5px; }
  .entry-mask .entry-meta li a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  .entry-mask .entry-meta i {
    color: #dedede; }

.entry-mask .archive-title {
  color: #fff;
  line-height: 1.4; }
  @media (max-width: 1199px) {
    .entry-mask .archive-title {
      font-size: 20px; } }
  @media (max-width: 576px) {
    .entry-mask .archive-title {
      font-size: 18px; } }

.entry-mask .archive-footer {
  margin-top: 15px; }
  .entry-mask .archive-footer .archive-readmore:hover {
    color: #fff;
    border-color: #fff; }

.entry-mask:hover .entry-info {
  bottom: 60px; }
  @media (max-width: 1199px) {
      .entry-mask:hover .entry-info {
        bottom: 43px; } }
  @media (max-width: 991px) {
      .entry-mask:hover .entry-info {
        bottom: 38px; } }
  @media (max-width: 767px) {
      .entry-mask:hover .entry-info {
        bottom: 30px; } }
  @media (max-width: 576px) {
      .entry-mask:hover .entry-info {
        bottom: 25px; } }

.content-layout-mask-masonry.row {
  margin-left: 0;
  margin-right: 0;
  padding-bottom: 40px; }
  .content-layout-mask-masonry.row > div {
    padding-left: 0;
    padding-right: 0; }
  .content-layout-mask-masonry.row + .navigation.pagination {
    margin-top: 25px; }

.entry-mask-masonry {
  position: relative; }

.entry-mask-masonry.format-standard .entry-media {
  margin-bottom: 0; }
  .entry-mask-masonry.format-standard .entry-media img {
    width: 100%; }
  .entry-mask-masonry.format-standard .entry-media:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); }

.entry-mask-masonry .entry-media {
  margin-bottom: 0; }

.entry-mask-masonry .entry-info {
  position: absolute;
  left: 60px;
  right: 60px;
  bottom: 40px;
  display: flex;
  align-items: flex-end;
  -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; }
  @media (max-width: 1199px) {
    .entry-mask-masonry .entry-info {
      left: 50px;
      right: 50px;
      bottom: 33px; } }
  @media (max-width: 991px) {
    .entry-mask-masonry .entry-info {
      left: 40px;
      right: 40px;
      bottom: 28px; } }
  @media (max-width: 767px) {
    .entry-mask-masonry .entry-info {
      left: 30px;
      right: 30px;
      bottom: 20px; } }
  @media (max-width: 576px) {
    .entry-mask-masonry .entry-info {
      left: 15px;
      right: 15px;
      bottom: 15px; } }

.entry-mask-masonry .archive-header {
  margin-bottom: 0;
  padding-right: 100px; }
  @media (max-width: 1199px) {
    .entry-mask-masonry .archive-header {
      padding-right: 50px; } }
  @media (max-width: 991px) {
    .entry-mask-masonry .archive-header {
      padding-right: 0; } }

.entry-mask-masonry .entry-meta {
  margin-bottom: 10px; }
  @media (max-width: 576px) {
    .entry-mask-masonry .entry-meta {
      display: none; } }
  .entry-mask-masonry .entry-meta li a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  .entry-mask-masonry .entry-meta i {
    color: #dedede; }

.entry-mask-masonry .archive-title {
  color: #fff;
  line-height: 1.25; }
  @media (max-width: 1199px) {
    .entry-mask-masonry .archive-title {
      font-size: 20px; } }
  @media (max-width: 576px) {
    .entry-mask-masonry .archive-title {
      font-size: 18px; } }

.entry-mask-masonry .archive-footer {
  margin-top: 15px; }
  .entry-mask-masonry .archive-footer .archive-readmore:hover {
    color: #fff;
    border-color: #fff; }

.entry-mask-masonry .arrow-more {
  color: #fff;
  font-size: 32px;
  width: 70px;
  text-align: center;
  margin-bottom: 10px; }
  @media (max-width: 1199px) {
    .entry-mask-masonry .arrow-more {
      font-size: 25px; } }
  @media (max-width: 767px) {
    .entry-mask-masonry .arrow-more {
      width: 30px; } }
  .entry-mask-masonry .arrow-more:hover {
    color: #71b61b; }

.entry-mask-masonry:hover .entry-info {
  bottom: 50px; }
  @media (max-width: 1199px) {
      .entry-mask-masonry:hover .entry-info {
        bottom: 43px; } }
  @media (max-width: 991px) {
      .entry-mask-masonry:hover .entry-info {
        bottom: 38px; } }
  @media (max-width: 767px) {
      .entry-mask-masonry:hover .entry-info {
        bottom: 30px; } }
  @media (max-width: 576px) {
      .entry-mask-masonry:hover .entry-info {
        bottom: 25px; } }

.entry-grid {
  margin-bottom: 50px; }

.entry-grid .entry-media {
  margin-bottom: 20px; }
  .entry-grid .entry-media img {
    border-radius: 4px;
    width: 100%; }

.entry-grid .entry-meta {
  margin-bottom: 12px; }

.entry-grid .archive-header {
  margin-bottom: 19px; }
  .entry-grid .archive-header .archive-title {
    font-size: 20px;
    line-height: 26px;
    padding-right: 100px; }
  @media (max-width: 1199px) {
      .entry-grid .archive-header .archive-title {
        padding-right: 50px; } }
  @media (max-width: 991px) {
      .entry-grid .archive-header .archive-title {
        padding-right: 30px; } }
  @media (max-width: 767px) {
      .entry-grid .archive-header .archive-title {
        padding-right: 15px; } }
  @media (max-width: 576px) {
      .entry-grid .archive-header .archive-title {
        padding-right: 0; } }

.entry-grid .detail-author .author-avatar {
  display: inline-block;
  border-radius: 50%;
  padding: 5px;
  -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
  -khtml-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
  -ms-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
  -o-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
  box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
  margin-right: 10px;
  float: left; }
  .entry-grid .detail-author .author-avatar img {
    border-radius: 50%; }
  .entry-grid .detail-author .author-info {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: -0.05em;
    color: #333;
    margin-top: 10px;
    display: inline-block; }
  .entry-grid .detail-author .author-info a {
    text-transform: capitalize; }

.entry-grid blockquote {
  padding: 0 0 40px 0; }

@media (min-width: 1200px) {
      .single-post .entry-content {
        padding: 0 70px; } }
  .single-post .entry-content p {
    margin-top: 0;
    margin-bottom: 26px;
    letter-spacing: -0.03em; }
  .single-post .entry-content .single-title {
    margin: 0px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 25px;
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 15px; }
  @media (max-width: 991px) {
      .single-post .entry-content .single-title {
        font-size: 20px; } }
  @media (max-width: 767px) {
      .single-post .entry-content .single-title {
        font-size: 18px; } }
  .single-post .entry-content blockquote {
    border-left: 0;
    background: transparent;
    padding: 34px 70px;
    margin: 0;
    color: #d93; }
  @media (max-width: 991px) {
      .single-post .entry-content blockquote {
        padding: 24px 30px; } }
  @media (max-width: 576px) {
      .single-post .entry-content blockquote {
        padding: 15px 0; } }
  .single-post .entry-content blockquote p {
    font-size: 24px;
    line-height: 35px;
    letter-spacing: -0.02em;
    font-style: italic;
    text-align: center;
    margin: 0 0 15px 0;
    padding: 0;
    position: relative; }
    .single-post .entry-content blockquote p:before {
      content: "“";
      position: absolute;
      left: auto;
      font-family: 'Lato';
      font-size: 30px;
      margin-right: 0;
      margin-left: -12px;
      top: 2px; }
    .single-post .entry-content blockquote p:after {
      content: "”";
      position: absolute;
      right: auto;
      bottom: -2px;
      font-family: 'Lato';
      font-size: 30px; }

.single-post .format-standard .single-top-wrap.has-thumbnail .entry-media {
  margin-bottom: 0;
  position: relative;
  border-radius: 5px;
  overflow: hidden; }
  .single-post .format-standard .single-top-wrap.has-thumbnail .entry-media:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5); }
  .single-post .format-standard .single-top-wrap.has-thumbnail .single-header {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 15px 70px 53px 70px; }
  @media (max-width: 1199px) {
          .single-post .format-standard .single-top-wrap.has-thumbnail .single-header {
            padding: 15px 50px 43px 50px; } }
  @media (max-width: 767px) {
          .single-post .format-standard .single-top-wrap.has-thumbnail .single-header {
            padding: 15px 30px 33px 30px; } }
  @media (max-width: 576px) {
          .single-post .format-standard .single-top-wrap.has-thumbnail .single-header {
            padding: 15px 15px 15px 15px; } }
  .single-post .format-standard .single-top-wrap.has-thumbnail .entry-meta li a:hover {
    color: #fff;
    border-bottom-color: #fff; }
    .single-post .format-standard .single-top-wrap.has-thumbnail .entry-meta li i {
      color: #dedede; }
  .single-post .format-standard .single-top-wrap.has-thumbnail .single-title {
    color: #fff; }

.single-post .format-link .entry-link-inner {
  position: relative;
  padding: 50px 30px; }
  .single-post .format-link .entry-link-inner:before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .single-post .format-link .entry-link-inner i {
    display: block;
    color: #fff;
    position: relative;
    font-size: 30px;
    margin-bottom: 10px; }
  .single-post .format-link .entry-link-inner a {
    color: #fff;
    position: relative;
    font-size: 20px;
    letter-spacing: 0.03em; }
  .single-post .format-link .entry-link-inner a:hover {
    color: rgba(255, 255, 255, 0.7); }

.single-post .format-quote .entry-quote-inner {
  position: relative;
  padding: 50px 30px; }
  .single-post .format-quote .entry-quote-inner:before {
    position: absolute;
    content: '';
    background-color: rgba(0, 0, 0, 0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
  .single-post .format-quote .entry-quote-inner blockquote {
    margin: 0;
    border: 0;
    background: transparent; }
  .single-post .format-quote .entry-quote-inner blockquote p {
    color: #fff;
    font-size: 20px;
    line-height: 28px;
    margin: 0;
    padding: 0 42px 0 42px;
    letter-spacing: 0.03em;
    font-style: italic; }
  .single-post .format-quote .entry-quote-inner blockquote p:before {
    content: "\f10d";
    font-family: 'fontawesome';
    padding-right: 10px;
    vertical-align: top;
    font-size: 30px;
    top: 0; }
  .single-post .format-quote .entry-quote-inner blockquote p:after {
    content: "\f10e";
    font-family: 'fontawesome';
    vertical-align: top;
    font-size: 30px;
    bottom: 0;
    -webkit-transform: rotate(0);
    -khtml-transform: rotate(0);
    -moz-transform: rotate(0);
    -ms-transform: rotate(0);
    -o-transform: rotate(0);
    transform: rotate(0); }
  .single-post .format-quote .entry-quote-inner blockquote cite {
    right: 42px;
    bottom: 0;
    color: #fff;
    letter-spacing: 0.03em; }

.primary-list ul, ul.list-primary {
  list-style: none;
  margin-left: 0;
  padding-top: 3px;
  margin-bottom: 47px; }

.primary-list ul li, ul.list-primary li {
  position: relative;
  font-size: 16px;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 23px; }
  .primary-list ul li:before, ul.list-primary li:before {
    position: absolute;
    content: "";
    width: 8px;
    height: 8px;
    background-color: #d93;
    left: 0;
    top: 14px; }
  @media (min-width: 1200px) {
      .primary-list ul li:before, ul.list-primary li:before {
        top: 50%;
        margin-top: -3px; } }

.checked-list ul {
  list-style: none;
  margin-left: 0;
  padding-top: 3px;
  margin-bottom: 0; }

.checked-list ul li {
  position: relative;
  font-size: 15px;
  letter-spacing: -0.03em;
  padding-top: 3px;
  padding-bottom: 3px;
  padding-left: 23px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif; }
  .checked-list ul li:before {
    position: absolute;
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 14px;
    color: #d93;
    left: 0;
    top: 4px; }

@media (min-width: 768px) {
      .checked-list ul.text-right li {
        padding-left: 0;
        padding-right: 23px; }
        .checked-list ul.text-right li:before {
          left: auto;
          right: 0; } }
  @media (max-width: 767px) {
    .checked-list ul.text-right {
      text-align: left !important; } }

.single-top-wrap {
  position: relative;
  margin-bottom: 24px; }

.single-top-wrap .entry-media {
  margin-bottom: 0; }

@media (min-width: 1200px) {
      .single-top-wrap .single-header {
        padding: 0 70px; } }

.single-top-wrap .entry-meta {
  margin-bottom: 0; }

.single-top-wrap .single-title {
  margin: 0px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.4;
  margin-top: 5px; }
  @media (max-width: 991px) {
    .single-top-wrap .single-title {
      font-size: 20px; } }
  @media (max-width: 767px) {
    .single-top-wrap .single-title {
      font-size: 18px; } }

.single-footer {
  margin-top: 25px; }

@media (min-width: 1200px) {
    .single-footer {
      padding: 0 70px; } }

.single-author-cats {
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px dashed #ccc;
  margin: 0 0 35px 0; }

.single-author-cats > div {
  padding: 0; }

.single-author-cats .detail-author img {
  float: left;
  border-radius: 50%;
  margin-right: 20px; }
  .single-author-cats .detail-author h6 {
    margin-top: 0;
    margin-bottom: 0;
    padding: 10px 0;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.03em; }

.single-author-cats .detail-cats {
  font-size: 12px;
  color: #8c8c8c;
  letter-spacing: -0.02em;
  font-family: 'Trebuchet MS', Helvetica, sans-serif; }
  @media (max-width: 991px) {
    .single-author-cats .detail-cats {
      margin-top: 10px; } }
  .single-author-cats .detail-cats span {
    font-weight: 600; }
  .single-author-cats .detail-cats a {
    font-size: 12px;
    color: #8c8c8c;
    letter-spacing: -0.02em;
    font-family: 'Trebuchet MS', Helvetica, sans-serif; }
  .single-author-cats .detail-cats a:hover {
    color: #71b61b; }

.single .entry-author, .single .entry-related, .single .comments-area, .single .post-navigation {
  margin-top: 50px; }
  @media (min-width: 1200px) {
    .single .entry-author, .single .entry-related, .single .comments-area, .single .post-navigation {
      margin-left: 70px;
      margin-right: 70px; } }

.entry-author {
  position: relative;
  padding-left: 92px;
  min-height: 185px;
  margin-top: 47px; }

@media (min-width: 1200px) {
    .entry-author {
      margin-left: 70px;
      margin-right: 70px; } }

@media (max-width: 1199px) {
    .entry-author {
      min-height: auto;
      padding-left: 50px; } }

@media (max-width: 576px) {
    .entry-author {
      padding-left: 30px; } }

.entry-author .author-avatar {
  width: 185px;
  position: absolute;
  left: 0;
  top: -7px; }
  @media (max-width: 1199px) {
    .entry-author .author-avatar {
      width: 100px;
      top: 50%;
      margin-top: -50px; } }
  @media (max-width: 576px) {
    .entry-author .author-avatar {
      width: 60px;
      margin-top: -30px; } }
  .entry-author .author-avatar img {
    border-radius: 50%; }

.entry-author .author-info {
  background-color: #d93;
  color: #fff;
  padding-left: 117px;
  padding-top: 41px;
  padding-bottom: 44px;
  padding-right: 70px; }
  @media (max-width: 1199px) {
    .entry-author .author-info {
      padding-left: 65px;
      padding-top: 30px;
      padding-bottom: 30px;
      padding-right: 15px; } }
  @media (max-width: 576px) {
    .entry-author .author-info {
      padding-left: 45px; } }
  .entry-author .author-info .author-name {
    margin-top: 0;
    margin-bottom: 13px;
    color: #fff;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: -0.03em;
    line-height: 26px;
    text-transform: capitalize; }
  .entry-author .author-info .author-bio {
    line-height: 22px;
    letter-spacing: -0.02em; }

.entry-related {
  margin-top: 64px; }

.entry-related .related-title {
  font-size: 18px;
  letter-spacing: -0.05em;
  margin-top: 0;
  margin-bottom: 24px;
  line-height: 1.4; }

.entry-related .entry-meta {
  margin-bottom: 5px; }

.entry-related .archive-header .archive-title {
  line-height: 1.4; }

.entry-related .entry-grid {
  margin-bottom: 0; }
  @media (max-width: 767px) {
    .entry-related .entry-grid {
      margin-bottom: 30px; } }

.entry-related .entry-grid .archive-header .archive-title {
  font-size: 18px; }
/* 404 */
@media (min-width: 768px) {
    .wrap-404 {
      padding-top: 183px;
      padding-bottom: 115px; } }

.error404 .red-main {
  padding-bottom: 20px; }

.error-404 {
  background-color: #fff;
  margin-left: auto;
  margin-right: auto;
  position: relative; }

@media (min-width: 768px) {
    .error-404 {
      padding: 75px 60px 74px 60px;
      max-width: 510px; }
      .error-404:before {
        content: none;
        position: absolute;
        left: 50%;
        top: -54px;
        -webkit-transform: translateX(-50%);
        -khtml-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
        width: 72px;
        height: 72px;
        background-color: #fff;
        border-radius: 50%;
        display: inline-block; } }

.error-404 .error-code {
  margin: 0;
  white-space: nowrap;
  font-size: 118px;
  line-height: 107px;
  letter-spacing: 0.01em;
  color: #d93;
  font-family: 'Trebuchet MS', Helvetica, sans-serif; }
  @media (min-width: 768px) {
    .error-404 .error-code {
      position: absolute;
      top: -38px;
      left: 50%;
      -webkit-transform: translateX(-58%);
      -khtml-transform: translateX(-58%);
      -moz-transform: translateX(-58%);
      -ms-transform: translateX(-58%);
      -o-transform: translateX(-58%);
      transform: translateX(-58%);
      text-shadow: -8px -8px 0 #fff, -8px -7px 0 #fff, -8px -6px 0 #fff, -8px -5px 0 #fff, -8px -4px 0 #fff, -8px -3px 0 #fff, -8px -2px 0 #fff, -8px -1px 0 #fff, -8px 0px 0 #fff, -8px 1px 0 #fff, -8px 2px 0 #fff, -8px 3px 0 #fff, -8px 4px 0 #fff, -8px 5px 0 #fff, -8px 6px 0 #fff, -8px 7px 0 #fff, -8px 8px 0 #fff, -7px -8px 0 #fff, -7px -7px 0 #fff, -7px -6px 0 #fff, -7px -5px 0 #fff, -7px -4px 0 #fff, -7px -3px 0 #fff, -7px -2px 0 #fff, -7px -1px 0 #fff, -7px 0px 0 #fff, -7px 1px 0 #fff, -7px 2px 0 #fff, -7px 3px 0 #fff, -7px 4px 0 #fff, -7px 5px 0 #fff, -7px 6px 0 #fff, -7px 7px 0 #fff, -7px 8px 0 #fff, -6px -8px 0 #fff, -6px -7px 0 #fff, -6px -6px 0 #fff, -6px -5px 0 #fff, -6px -4px 0 #fff, -6px -3px 0 #fff, -6px -2px 0 #fff, -6px -1px 0 #fff, -6px 0px 0 #fff, -6px 1px 0 #fff, -6px 2px 0 #fff, -6px 3px 0 #fff, -6px 4px 0 #fff, -6px 5px 0 #fff, -6px 6px 0 #fff, -6px 7px 0 #fff, -6px 8px 0 #fff, -5px -8px 0 #fff, -5px -7px 0 #fff, -5px -6px 0 #fff, -5px -5px 0 #fff, -5px -4px 0 #fff, -5px -3px 0 #fff, -5px -2px 0 #fff, -5px -1px 0 #fff, -5px 0px 0 #fff, -5px 1px 0 #fff, -5px 2px 0 #fff, -5px 3px 0 #fff, -5px 4px 0 #fff, -5px 5px 0 #fff, -5px 6px 0 #fff, -5px 7px 0 #fff, -5px 8px 0 #fff, -4px -8px 0 #fff, -4px -7px 0 #fff, -4px -6px 0 #fff, -4px -5px 0 #fff, -4px -4px 0 #fff, -4px -3px 0 #fff, -4px -2px 0 #fff, -4px -1px 0 #fff, -4px 0px 0 #fff, -4px 1px 0 #fff, -4px 2px 0 #fff, -4px 3px 0 #fff, -4px 4px 0 #fff, -4px 5px 0 #fff, -4px 6px 0 #fff, -4px 7px 0 #fff, -4px 8px 0 #fff, -3px -8px 0 #fff, -3px -7px 0 #fff, -3px -6px 0 #fff, -3px -5px 0 #fff, -3px -4px 0 #fff, -3px -3px 0 #fff, -3px -2px 0 #fff, -3px -1px 0 #fff, -3px 0px 0 #fff, -3px 1px 0 #fff, -3px 2px 0 #fff, -3px 3px 0 #fff, -3px 4px 0 #fff, -3px 5px 0 #fff, -3px 6px 0 #fff, -3px 7px 0 #fff, -3px 8px 0 #fff, -2px -8px 0 #fff, -2px -7px 0 #fff, -2px -6px 0 #fff, -2px -5px 0 #fff, -2px -4px 0 #fff, -2px -3px 0 #fff, -2px -2px 0 #fff, -2px -1px 0 #fff, -2px 0px 0 #fff, -2px 1px 0 #fff, -2px 2px 0 #fff, -2px 3px 0 #fff, -2px 4px 0 #fff, -2px 5px 0 #fff, -2px 6px 0 #fff, -2px 7px 0 #fff, -2px 8px 0 #fff, -1px -8px 0 #fff, -1px -7px 0 #fff, -1px -6px 0 #fff, -1px -5px 0 #fff, -1px -4px 0 #fff, -1px -3px 0 #fff, -1px -2px 0 #fff, -1px -1px 0 #fff, -1px 0px 0 #fff, -1px 1px 0 #fff, -1px 2px 0 #fff, -1px 3px 0 #fff, -1px 4px 0 #fff, -1px 5px 0 #fff, -1px 6px 0 #fff, -1px 7px 0 #fff, -1px 8px 0 #fff, 0px -8px 0 #fff, 0px -7px 0 #fff, 0px -6px 0 #fff, 0px -5px 0 #fff, 0px -4px 0 #fff, 0px -3px 0 #fff, 0px -2px 0 #fff, 0px -1px 0 #fff, 0px 0px 0 #fff, 0px 1px 0 #fff, 0px 2px 0 #fff, 0px 3px 0 #fff, 0px 4px 0 #fff, 0px 5px 0 #fff, 0px 6px 0 #fff, 0px 7px 0 #fff, 0px 8px 0 #fff, 1px -8px 0 #fff, 1px -7px 0 #fff, 1px -6px 0 #fff, 1px -5px 0 #fff, 1px -4px 0 #fff, 1px -3px 0 #fff, 1px -2px 0 #fff, 1px -1px 0 #fff, 1px 0px 0 #fff, 1px 1px 0 #fff, 1px 2px 0 #fff, 1px 3px 0 #fff, 1px 4px 0 #fff, 1px 5px 0 #fff, 1px 6px 0 #fff, 1px 7px 0 #fff, 1px 8px 0 #fff, 2px -8px 0 #fff, 2px -7px 0 #fff, 2px -6px 0 #fff, 2px -5px 0 #fff, 2px -4px 0 #fff, 2px -3px 0 #fff, 2px -2px 0 #fff, 2px -1px 0 #fff, 2px 0px 0 #fff, 2px 1px 0 #fff, 2px 2px 0 #fff, 2px 3px 0 #fff, 2px 4px 0 #fff, 2px 5px 0 #fff, 2px 6px 0 #fff, 2px 7px 0 #fff, 2px 8px 0 #fff, 3px -8px 0 #fff, 3px -7px 0 #fff, 3px -6px 0 #fff, 3px -5px 0 #fff, 3px -4px 0 #fff, 3px -3px 0 #fff, 3px -2px 0 #fff, 3px -1px 0 #fff, 3px 0px 0 #fff, 3px 1px 0 #fff, 3px 2px 0 #fff, 3px 3px 0 #fff, 3px 4px 0 #fff, 3px 5px 0 #fff, 3px 6px 0 #fff, 3px 7px 0 #fff, 3px 8px 0 #fff, 4px -8px 0 #fff, 4px -7px 0 #fff, 4px -6px 0 #fff, 4px -5px 0 #fff, 4px -4px 0 #fff, 4px -3px 0 #fff, 4px -2px 0 #fff, 4px -1px 0 #fff, 4px 0px 0 #fff, 4px 1px 0 #fff, 4px 2px 0 #fff, 4px 3px 0 #fff, 4px 4px 0 #fff, 4px 5px 0 #fff, 4px 6px 0 #fff, 4px 7px 0 #fff, 4px 8px 0 #fff, 5px -8px 0 #fff, 5px -7px 0 #fff, 5px -6px 0 #fff, 5px -5px 0 #fff, 5px -4px 0 #fff, 5px -3px 0 #fff, 5px -2px 0 #fff, 5px -1px 0 #fff, 5px 0px 0 #fff, 5px 1px 0 #fff, 5px 2px 0 #fff, 5px 3px 0 #fff, 5px 4px 0 #fff, 5px 5px 0 #fff, 5px 6px 0 #fff, 5px 7px 0 #fff, 5px 8px 0 #fff, 6px -8px 0 #fff, 6px -7px 0 #fff, 6px -6px 0 #fff, 6px -5px 0 #fff, 6px -4px 0 #fff, 6px -3px 0 #fff, 6px -2px 0 #fff, 6px -1px 0 #fff, 6px 0px 0 #fff, 6px 1px 0 #fff, 6px 2px 0 #fff, 6px 3px 0 #fff, 6px 4px 0 #fff, 6px 5px 0 #fff, 6px 6px 0 #fff, 6px 7px 0 #fff, 6px 8px 0 #fff, 7px -8px 0 #fff, 7px -7px 0 #fff, 7px -6px 0 #fff, 7px -5px 0 #fff, 7px -4px 0 #fff, 7px -3px 0 #fff, 7px -2px 0 #fff, 7px -1px 0 #fff, 7px 0px 0 #fff, 7px 1px 0 #fff, 7px 2px 0 #fff, 7px 3px 0 #fff, 7px 4px 0 #fff, 7px 5px 0 #fff, 7px 6px 0 #fff, 7px 7px 0 #fff, 7px 8px 0 #fff, 8px -8px 0 #fff, 8px -7px 0 #fff, 8px -6px 0 #fff, 8px -5px 0 #fff, 8px -4px 0 #fff, 8px -3px 0 #fff, 8px -2px 0 #fff, 8px -1px 0 #fff, 8px 0px 0 #fff, 8px 1px 0 #fff, 8px 2px 0 #fff, 8px 3px 0 #fff, 8px 4px 0 #fff, 8px 5px 0 #fff, 8px 6px 0 #fff, 8px 7px 0 #fff, 8px 8px 0 #fff; } }
  @media (max-width: 767px) {
    .error-404 .error-code {
      margin-top: 30px;
      margin-bottom: 30px; } }
  @media (max-width: 576px) {
    .error-404 .error-code {
      font-size: 80px;
      line-height: 1;
      margin-top: 20px;
      margin-bottom: 20px; } }

.error-404 .error-title {
  font-size: 30px;
  letter-spacing: 0.01em;
  color: #333;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-weight: normal;
  margin-top: 8px;
  margin-bottom: 3px; }

.error-404 .error-message {
  font-size: 17px;
  line-height: 24px;
  letter-spacing: -0.02em;
  color: #333;
  font-weight: normal;
  margin-top: 0;
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .error-404 .error-message {
      padding: 0 70px; } }

.error-404 a.btn {
  margin-bottom: 38px; }

.error-404 .red-searchform input[type="text"] {
  text-align: left; }
  .error-404 .red-searchform::-webkit-input-placeholder {
    color: #8c8c8c;
    font-size: 13px;
    letter-spacing: 0.03em;
    font-style: italic; }
  .error-404 .red-searchform:-moz-placeholder {
    color: #8c8c8c;
    font-size: 13px;
    letter-spacing: 0.03em;
    font-style: italic; }
  .error-404 .red-searchform::-moz-placeholder {
    color: #8c8c8c;
    font-size: 13px;
    letter-spacing: 0.03em;
    font-style: italic; }
  .error-404 .red-searchform:-ms-input-placeholder {
    color: #8c8c8c;
    font-size: 13px;
    letter-spacing: 0.03em;
    font-style: italic; }

body.page-template-coming-soon {
  overflow-y: hidden; }

@media (min-width: 1600px) {
    .comming-soon-content {
      max-width: 630px;
      margin: 0 auto !important; } }

.comming-soon-content > div {
  padding: 92px 70px 70px 70px !important; }
  @media (max-width: 1199px) {
    .comming-soon-content > div {
      padding: 72px 50px 50px 50px !important; } }
  @media (max-width: 991px) {
    .comming-soon-content > div {
      padding: 52px 30px 30px 30px !important; } }
  @media (max-width: 767px) {
    .comming-soon-content > div {
      padding: 40px 20px 30px 20px !important; } }
  @media (max-width: 576px) {
    .comming-soon-content > div {
      padding: 30px 15px 30px 15px !important; } }

.comming-soon-title {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 60px;
  letter-spacing: -0.03em;
  color: #d93;
  line-height: 1;
  font-style: italic; }

@media (max-width: 576px) {
    .comming-soon-title {
      font-size: 45px;
      margin-bottom: 20px !important; } }
/* loop event */
@media (max-width: 767px) {
    #tribe-events-pg-template {
      padding: 0; } }

#tribe-events-content.tribe-events-list {
  margin-bottom: 0; }

.tribe-events-list .navigation.pagination {
  padding: 14px 0 0 0; }

.tribe-events-list .tribe-events-list-wrap.layout-default {
  margin-bottom: 50px; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .tribe-events-items {
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); }
  @media (min-width: 768px) {
        .tribe-events-list .tribe-events-list-wrap.layout-default .event-content-wrap {
          display: flex;
          flex-wrap: wrap; } }
  @media (max-width: 767px) {
        .tribe-events-list .tribe-events-list-wrap.layout-default .event-content-wrap {
          -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
          padding: 30px 15px; } }
  @media (min-width: 768px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .event-content-wrap .list-event-left {
            flex: 0 0 calc(100% - 254px);
            max-width: calc(100% - 254px);
            -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
            -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
            -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
            -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
            -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.03); } }
  @media (min-width: 768px) and (max-width: 991px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .event-content-wrap .list-event-left {
            flex: 0 0 calc(100% - 200px);
            max-width: calc(100% - 200px); } }
  @media (min-width: 768px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .event-content-wrap .list-event-right {
            flex: 0 0 254px;
            max-width: 254px;
            -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); } }
  @media (min-width: 768px) and (max-width: 991px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .event-content-wrap .list-event-right {
            flex: 0 0 200px;
            max-width: 200px; } }
  @media (max-width: 767px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .event-content-wrap .list-event-right {
            margin-top: 20px; } }
  @media (min-width: 768px) {
        .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left {
          display: flex;
          flex-wrap: wrap;
          align-items: center;
          padding: 30px 15px 25px 15px; } }
  @media (min-width: 992px) {
        .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left {
          padding: 48px 48px 48px 58px; } }
  @media (max-width: 767px) {
        .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left {
          text-align: center; } }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .col-left {
    position: relative; }
  @media (min-width: 768px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .col-left:after {
            position: absolute;
            top: -15px;
            right: 0;
            content: "";
            width: 1px;
            height: 100px;
            background-color: #dcdcdc; } }
  @media (min-width: 992px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .col-left {
            flex: 0 0 97px;
            max-width: 97px; } }
  @media (max-width: 576px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .col-left {
            margin-bottom: 10px; } }
  @media (min-width: 768px) and (max-width: 991px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .col-left {
            flex: 0 0 70px;
            max-width: 70px; } }
  @media (min-width: 992px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .col-right {
            flex: 0 0 calc(100% - 97px);
            max-width: calc(100% - 97px);
            padding-left: 30px; } }
  @media (min-width: 768px) and (max-width: 991px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .col-right {
            flex: 0 0 calc(100% - 70px);
            max-width: calc(100% - 70px);
            padding-left: 15px; } }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .event-day, .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .event-month {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #d93;
    text-transform: uppercase;
    font-size: 25px; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .event-day {
    font-size: 42px; }
  @media (max-width: 576px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .event-day {
            margin-right: 10px; } }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .org-name {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.03em;
    color: #333;
    margin-bottom: 3px; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .org-name span {
    text-transform: uppercase;
    color: #d93; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .list-event-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.03em;
    margin-top: 0;
    margin-bottom: 22px; }
  @media (max-width: 991px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .list-event-title {
            margin-bottom: 10px; } }
  @media (max-width: 767px) {
          .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .list-event-title {
            margin-top: 10px; } }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .events-schedule > div {
    display: inline-block;
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.05em;
    color: #555; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .events-schedule span {
    text-transform: uppercase;
    color: #d93;
    font-weight: 600;
    margin-right: 2px; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-left .events-schedule .event-date-start {
    margin-right: 15px; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right {
    text-align: center; }
  @media (min-width: 768px) {
        .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right {
          padding: 20px 15px 20px 15px; } }
  @media (min-width: 992px) {
        .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right {
          padding: 35px 40px 34px 40px; } }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right .location {
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #333;
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 14px; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right .location i {
    display: block;
    font-size: 22px;
    color: #d93;
    margin-bottom: 10px; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right .btn.btn-medium {
    min-width: 140px; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right .close-ticket {
    background-color: #222;
    border-color: #222;
    color: #fff;
    cursor: auto; }
  .tribe-events-list .tribe-events-list-wrap.layout-default .list-event-right .close-ticket:hover {
    background-color: #222;
    border-color: #222;
    color: #fff; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 + .navigation.pagination {
    margin-top: 0; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .tribe-events-items {
    margin-bottom: 50px;
    position: relative; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .tribe-events-items:before {
    content: attr(data-idx);
    position: absolute;
    bottom: 0;
    right: 42px;
    font-size: 110px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    color: #fafafa;
    text-transform: uppercase;
    line-height: 1; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-content-wrap {
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    position: relative; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-content-wrap > img {
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info {
    padding: 35px 40px; }
  @media (max-width: 1199px) {
        .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info {
          padding: 35px 15px; } }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .list-event-title {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #373737; }
  @media (max-width: 1199px) {
          .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .list-event-title {
            font-size: 18px; } }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .events-schedule {
    margin-bottom: 22px;
    color: #333;
    font-size: 14px; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .events-schedule p {
    margin: 0;
    line-height: 20px;
    padding-left: 26px;
    position: relative;
    margin-bottom: 10px; }
    .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .events-schedule p:last-child {
      margin-bottom: 0; }
    .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .events-schedule p i {
      font-size: 16px;
      color: #d93;
      position: absolute;
      left: 0; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .events-schedule > div {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.03em;
    color: #555; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .events-schedule span {
    text-transform: uppercase;
    color: #d93;
    font-weight: 600;
    margin-right: 10px;
    min-width: 62px;
    display: inline-block; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .org-wrap {
    padding-top: 20px;
    border-top: 1px solid #e1e1e1; }
  .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .org-wrap .org-item {
    display: flex;
    flex-wrap: wrap; }
    .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .org-wrap .org-item .org-avatar {
      width: 40px;
      flex: 0 0 40px;
      max-width: 40px;
      border-radius: 5px;
      -webkit-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      -khtml-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      -moz-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      -ms-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      -o-box-shadow: 0 0 13px rgba(0, 0, 0, 0.05);
      box-shadow: 0 0 13px rgba(0, 0, 0, 0.05); }
      .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .org-wrap .org-item .org-avatar img {
        width: 100%;
        border-radius: 5px; }
    .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .org-wrap .org-item .org-info {
      flex: 0 0 calc(100% - 40px);
      max-width: calc(100% - 40px);
      padding-left: 20px; }
      @media (max-width: 1199px) {
          .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .org-wrap .org-item .org-info {
            padding-left: 10px; } }
      .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .org-wrap .org-item .org-info h4 {
        margin-top: 0;
        margin-bottom: 0;
        letter-spacing: -0.03em;
        margin: 0 0 5px 0; }
        @media (max-width: 1199px) {
          .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .org-wrap .org-item .org-info h4 {
            font-size: 16px; } }
      .tribe-events-list .tribe-events-list-wrap.layout-1 .event-info .org-wrap .org-item .org-info p {
        margin: 0;
        color: #d93;
        line-height: 1; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 + .navigation.pagination {
    padding-top: 4px; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .tribe-events-items {
    margin-bottom: 47px; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .event-date {
    margin-bottom: 20px; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .event-date .event-day, .tribe-events-list .tribe-events-list-wrap.layout-2 .event-date .event-month {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.05em;
    color: #d93;
    text-transform: uppercase;
    font-size: 25px;
    display: block; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .event-date .event-day {
    font-size: 42px; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .org-name {
    font-size: 14px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 25px;
    letter-spacing: -0.03em;
    color: #333;
    margin-bottom: 9px; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .org-name span {
    font-weight: 600;
    text-transform: uppercase;
    color: #d93; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-title {
    margin-top: 0;
    margin-bottom: 30px;
    line-height: 22px;
    letter-spacing: -0.03em;
    color: #373737; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action {
    padding-top: 18px;
    border-top: 1px solid #dcdcdc; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action .location {
    line-height: 20px;
    letter-spacing: -0.02em;
    color: #333;
    margin-top: 0;
    padding-left: 35px;
    position: relative;
    margin-bottom: 28px; }
  @media (min-width: 1200px) {
          .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action .location {
            padding-right: 35px; } }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action .location i {
    font-size: 22px;
    color: #d93;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -14px; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action .btn.btn-medium {
    min-width: 140px; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action .close-ticket {
    background-color: #222;
    border-color: #222;
    color: #fff;
    cursor: auto; }
  .tribe-events-list .tribe-events-list-wrap.layout-2 .list-event-action .close-ticket:hover {
    background-color: #222;
    border-color: #222;
    color: #fff; }

#tribe-events-content.tribe-events-month {
  margin-bottom: 13px; }

@media (max-width: 576px) {
    #tribe-events-content.tribe-events-month {
      overflow: auto;
      overflow-y: hidden;
      /* white-space: nowrap;  */ } }

#tribe-events-content.tribe-events-month .tribe-events-visuallyhidden {
  display: none; }

@media (max-width: 768px) {
    #tribe-events-content.tribe-events-month #tribe-events-footer:after, #tribe-events-content.tribe-events-month #tribe-events-footer:before, #tribe-events-content.tribe-events-month #tribe-events-header:after, #tribe-events-content.tribe-events-month #tribe-events-header:before {
      content: none; } }

#tribe-events-content.tribe-events-month .events-nav-pagination {
  background-color: #0f0f0f;
  padding: 46px 200px;
  color: #fff; }
  @media (max-width: 1199px) {
    #tribe-events-content.tribe-events-month .events-nav-pagination {
      padding: 40px 80px; } }
  @media (max-width: 991px) {
    #tribe-events-content.tribe-events-month .events-nav-pagination {
      padding: 30px 30px; } }
  @media (max-width: 767px) {
    #tribe-events-content.tribe-events-month .events-nav-pagination {
      padding: 20px 15px; } }
  #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav a.btn {
    min-width: 155px; }
  @media (max-width: 767px) {
        #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav a.btn {
          min-width: 0;
          padding: 5px 15px;
          border-radius: 35px;
          font-size: 11px; } }
  @media (max-width: 576px) {
        #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav a.btn {
          padding: 0;
          border: 0;
          font-size: 11px;
          text-transform: capitalize; } }
  #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav .events-nav-previous i {
    font-size: 13px;
    margin-right: 8px; }
  @media (max-width: 576px) {
          #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav .events-nav-previous i {
            margin-right: 3px; } }
  #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav .events-nav-next i {
    font-size: 13px;
    margin-left: 8px; }
  @media (max-width: 576px) {
          #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav .events-nav-next i {
            margin-left: 3px; } }
  @media (max-width: 576px) {
        #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav .current-month {
          padding: 0; } }
  #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav .current-month span {
    color: #fff;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 30px;
    letter-spacing: 0.01em;
    position: relative; }
  @media (max-width: 991px) {
          #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav .current-month span {
            font-size: 20px; } }
  @media (max-width: 767px) {
          #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav .current-month span {
            font-size: 16px; } }
  @media (max-width: 576px) {
          #tribe-events-content.tribe-events-month .events-nav-pagination .events-sub-nav .current-month span {
            font-size: 14px; } }

#tribe-events-content.tribe-events-month table.tribe-events-calendar {
  border: 0;
  margin: 0; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th {
    background-color: #d93;
    color: #fff;
    letter-spacing: 0.03em;
    padding: 24px 0;
    font-size: 13px;
    font-weight: bold; }
  @media (max-width: 767px) {
        #tribe-events-content.tribe-events-month table.tribe-events-calendar thead th {
          text-transform: inherit; } }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar td {
    border: 0;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.04); }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody tr:first-child td {
    padding-top: 10px; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td {
    background-color: #fff;
    padding: 5px; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*=tribe-events-daynum-] {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 15px;
    color: #444;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    text-align: right;
    padding-top: 22px;
    padding-right: 20px;
    padding-bottom: 10px;
    background-color: #fff;
    font-style: italic; }
  @media (max-width: 767px) {
          #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*=tribe-events-daynum-] {
            font-size: 12px;
            padding-top: 20px;
            padding-right: 0;
            padding-bottom: 20px;
            text-align: center;
            margin-top: 0; } }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td:first-child {
    padding-left: 0; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td:last-child {
    padding-right: 0; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td .day-wrap {
    border-radius: 4px; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td div[id*=tribe-events-daynum-] {
    border-radius: 4px; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-othermonth {
    -webkit-box-shadow: 0 0 0 rgba(255, 255, 255, 0.01);
    -khtml-box-shadow: 0 0 0 rgba(255, 255, 255, 0.01);
    -moz-box-shadow: 0 0 0 rgba(255, 255, 255, 0.01);
    -ms-box-shadow: 0 0 0 rgba(255, 255, 255, 0.01);
    -o-box-shadow: 0 0 0 rgba(255, 255, 255, 0.01);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.01); }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-othermonth .day-wrap {
    background-color: #e1e1e1 !important;
    height: 100%; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-othermonth .day-wrap > * {
    display: none; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody div[id*=tribe-events-event-] {
    background-color: #6ba51f;
    margin: 0 0 3px 0;
    padding: 15px 18px;
    border-bottom: 0; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody div[id*=tribe-events-event-] h3.tribe-events-month-event-title {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 13px;
    line-height: 18px;
    letter-spacing: -0.05em;
    color: #fff; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody div[id*=tribe-events-event-] h3.tribe-events-month-event-title a {
    color: inherit; }
    #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody div[id*=tribe-events-event-] h3.tribe-events-month-event-title a:hover {
      color: rgba(255, 255, 255, 0.7); }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events .day-wrap {
    background-color: #7fbd2f;
    height: 100%; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events div[id*=tribe-events-daynum-] {
    background-color: #7fbd2f;
    color: #fff; }
  @media (max-width: 991px) {
        #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-has-events:after {
          content: none;
          display: none; } }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present .day-wrap {
    background-color: #141414; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*=tribe-events-daynum-] {
    background-color: #141414; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar tbody td.tribe-events-present div[id*=tribe-events-event-] {
    background-color: #222; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar .tribe-events-viewmore {
    border-top: 0;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    padding: 15px 18px; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar .tribe-events-viewmore a {
    color: #fff;
    white-space: normal; }
  #tribe-events-content.tribe-events-month table.tribe-events-calendar .tribe-events-viewmore a:hover {
    color: rgba(255, 255, 255, 0.7); }

.tribe-events-day .tribe-events-day-time-slot .tribe-events-day-time-slot-heading {
  display: none; }
  .tribe-events-day .tribe-events-day-time-slot .type-tribe_events {
    margin-left: 0;
    padding: 30px 0 35px 0; }
  .tribe-events-day .tribe-events-day-time-slot .tribe-events-list-event-title {
    margin-bottom: 15px; }
  .tribe-events-day .tribe-events-day-time-slot .tribe-events-event-meta {
    margin-bottom: 30px; }
  .tribe-events-day .tribe-events-day-time-slot .tribe-events-read-more {
    margin-top: 15px; }

#tribe-events .tribe-events-ical {
  display: none; }

#tribe-mobile-container .tribe-events-mobile {
  padding: 30px 0 30px !important; }

#tribe-mobile-container .tribe-events-mobile .mobile-event-image a img {
  width: 100%; }

#tribe-mobile-container .tribe-events-mobile .mobile-event-title {
  margin: 20px 0 10px 0; }

#tribe-mobile-container .tribe-events-mobile .mobile-event-description {
  margin-bottom: 10px; }
/* single event */
.tribe-events-single .tribe-events-event-image {
  margin-bottom: 0; }
  .tribe-events-single .tribe-events-event-image img {
    width: 100%; }

@media (min-width: 992px) {
      .tribe-events-single .event-content-wrap {
        padding-left: 100px;
        padding-right: 100px; } }

.tribe-events-single .single-event-top-wrap {
  position: relative;
  background-color: #fff; }
  @media (min-width: 577px) {
    .tribe-events-single .single-event-top-wrap {
      display: flex;
      flex-wrap: wrap;
      padding: 44px 60px 20px 60px;
      -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
      -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
      -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
      -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
      -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.03);
      box-shadow: 0 0 40px rgba(0, 0, 0, 0.03); } }
  @media (min-width: 992px) {
    .tribe-events-single .single-event-top-wrap {
      margin-top: -74px; } }
  @media (max-width: 991px) {
    .tribe-events-single .single-event-top-wrap {
      padding: 30px 30px 20px 30px; } }
  @media (max-width: 576px) {
    .tribe-events-single .single-event-top-wrap {
      padding: 30px 0 0 0; } }
  .tribe-events-single .single-event-top-wrap .col-left {
    position: relative; }
  @media (min-width: 577px) {
      .tribe-events-single .single-event-top-wrap .col-left {
        flex: 0 0 97px;
        max-width: 97px; }
        .tribe-events-single .single-event-top-wrap .col-left:after {
          position: absolute;
          top: 0;
          right: 0;
          content: "";
          width: 1px;
          height: 100px;
          background-color: #dcdcdc; } }
  @media (max-width: 576px) {
      .tribe-events-single .single-event-top-wrap .col-left {
        margin-bottom: 10px; } }
  @media (min-width: 577px) {
      .tribe-events-single .single-event-top-wrap .col-right {
        flex: 0 0 calc(100% - 97px);
        max-width: calc(100% - 97px);
        padding-left: 30px; } }
  .tribe-events-single .single-event-top-wrap .event-day, .tribe-events-single .single-event-top-wrap .event-month {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #d93;
    text-transform: uppercase;
    font-size: 25px; }
  .tribe-events-single .single-event-top-wrap .event-day {
    font-size: 42px; }
  @media (max-width: 576px) {
      .tribe-events-single .single-event-top-wrap .event-day {
        margin-right: 10px; } }
  .tribe-events-single .single-event-top-wrap .org-name {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    line-height: 25px;
    letter-spacing: -0.03em;
    color: #333;
    margin-bottom: 10px; }
  .tribe-events-single .single-event-top-wrap .org-name span {
    text-transform: uppercase;
    color: #d93; }
  .tribe-events-single .single-event-top-wrap .single-event-title {
    font-size: 20px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: -0.03em;
    color: #333;
    margin-top: 0;
    margin-bottom: 15px; }
  .tribe-events-single .single-event-top-wrap .events-schedule {
    margin-bottom: 30px; }
  .tribe-events-single .single-event-top-wrap .events-schedule > div {
    display: inline-block;
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: -0.03em;
    color: #555; }
  .tribe-events-single .single-event-top-wrap .events-schedule span {
    text-transform: uppercase;
    color: #d93;
    font-weight: 600; }
  .tribe-events-single .single-event-top-wrap .events-schedule .event-date-start {
    margin-right: 15px; }
  .tribe-events-single .single-event-top-wrap .location {
    line-height: 28px;
    letter-spacing: -0.02em;
    color: #333;
    margin-top: 12px;
    margin-bottom: 0;
    position: relative;
    padding-left: 35px; }
  .tribe-events-single .single-event-top-wrap .location i {
    font-size: 22px;
    color: #d93;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -14px; }
  @media (min-width: 577px) {
      .tribe-events-single .single-event-top-wrap .event-meta {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-end; } }
  .tribe-events-single .single-event-top-wrap .event-meta > div {
    margin-bottom: 30px; }
  @media (min-width: 577px) {
        .tribe-events-single .single-event-top-wrap .event-meta .meta-left {
          flex: 0 0 60%;
          max-width: 60%; } }
  @media (min-width: 577px) {
        .tribe-events-single .single-event-top-wrap .event-meta .event-action {
          flex: 0 0 40%;
          max-width: 40%; } }
  .tribe-events-single .single-event-top-wrap .event-meta .event-action .close-ticket {
    background-color: #222;
    border-color: #222;
    color: #fff;
    cursor: auto; }
  .tribe-events-single .single-event-top-wrap .event-meta .event-action .close-ticket:hover {
    background-color: #222;
    border-color: #222;
    color: #fff; }
  .tribe-events-single .single-event-top-wrap .event-meta .meta-left p {
    margin-top: 12px;
    margin-bottom: 0;
    line-height: 28px;
    letter-spacing: -0.02em;
    color: #333; }
  .tribe-events-single .single-event-top-wrap .event-meta .meta-left p i {
    font-size: 22px;
    color: #d93;
    margin-right: 15px;
    float: left;
    position: relative;
    top: 2px; }

.tribe-events-single .single-event-content {
  letter-spacing: -0.02em;
  margin-top: 38px; }
  .tribe-events-single .single-event-content .wpb_text_column p {
    margin-bottom: 26px; }
  .tribe-events-single .single-event-content .wpb_text_column p:last-child {
    margin-bottom: 0; }

.tribe-events-single .single-event-facilities h4 {
  letter-spacing: -0.05em;
  margin-top: 45px;
  margin-bottom: 8px; }
  .tribe-events-single .single-event-facilities ul {
    margin-bottom: 50px; }
  @media (min-width: 577px) {
      .tribe-events-single .single-event-facilities ul {
        display: flex;
        flex-wrap: wrap;
        margin-left: -15px;
        margin-right: -15px; } }
  @media (min-width: 577px) {
        .tribe-events-single .single-event-facilities ul li {
          flex: 0 0 50%;
          max-width: 50%;
          padding-left: 38px;
          padding-right: 15px; }
          .tribe-events-single .single-event-facilities ul li:before {
            left: 15px; } }

.tribe-events-single .single-event-map, .tribe-events-single .events-map {
  margin-bottom: 40px; }

.tribe-events-single .single_events_involved_section {
  margin-bottom: 54px; }
  .tribe-events-single .single_events_involved_section .col-left img {
    display: inline-block;
    position: absolute;
    top: -5px;
    left: 15px;
    max-width: 70px; }
  @media (max-width: 991px) {
        .tribe-events-single .single_events_involved_section .col-left img {
          display: none; } }
  .tribe-events-single .single_events_involved_section .col-left h3 {
    line-height: 30px;
    letter-spacing: -0.03em;
    margin-top: 0;
    margin-bottom: 0; }
  @media (min-width: 992px) {
        .tribe-events-single .single_events_involved_section .col-left h3 {
          padding-left: 94px;
          display: inline-block; } }
  @media (max-width: 991px) {
      .tribe-events-single .single_events_involved_section .col-right {
        margin-top: 20px; } }

.tribe-events-single .red-gal-image .row {
  margin-left: -5px;
  margin-right: -5px; }
  .tribe-events-single .red-gal-image .row > div {
    padding-left: 5px;
    padding-right: 5px; }
  .tribe-events-single .red-gal-image .red-gal-item {
    margin-bottom: 10px; }

.tribe-events-single blockquote {
  border-left: 0;
  background: transparent;
  padding: 34px 100px;
  margin: 0;
  color: #d93; }
  @media (max-width: 1199px) {
    .tribe-events-single blockquote {
      padding: 34px 50px; } }
  @media (max-width: 991px) {
    .tribe-events-single blockquote {
      padding: 24px 30px; } }
  @media (max-width: 576px) {
    .tribe-events-single blockquote {
      padding: 15px 0; } }
  .tribe-events-single blockquote p {
    font-size: 24px;
    line-height: 35px;
    letter-spacing: -0.02em;
    font-style: italic;
    text-align: center;
    margin: 0 0 15px 0;
    padding: 0;
    position: relative; }
  .tribe-events-single blockquote p:before {
    content: "“";
    position: absolute;
    left: auto;
    font-family: 'Lato';
    font-size: 30px;
    margin-right: 0;
    margin-left: -12px;
    top: 2px; }
  .tribe-events-single blockquote p:after {
    content: "”";
    position: absolute;
    right: auto;
    bottom: -2px;
    font-family: 'Lato';
    font-size: 30px; }

.tribe-events-single .single-event-footer {
  border-top: 1px dashed #dcdcdc;
  border-bottom: 1px dashed #dcdcdc;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 7px;
  margin-left: 0;
  margin-right: 0; }
  .tribe-events-single .single-event-footer > div {
    padding-left: 0;
    padding-right: 0; }
  @media (max-width: 576px) {
      .tribe-events-single .single-event-footer > div {
        margin-bottom: 10px; } }
  .tribe-events-single .single-event-footer .detail-categories {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: -0.03em;
    line-height: 28px;
    color: #8c8c8c; }
  .tribe-events-single .single-event-footer .detail-categories a {
    color: inherit; }
  .tribe-events-single .single-event-footer .detail-categories a:hover {
    color: #71b61b; }
  .tribe-events-single .single-event-footer .detail-categories .lbl {
    color: #d93; }
  .tribe-events-single .single-event-footer .red-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 1.5px;
    background-color: #f2f2f2;
    color: #555;
    font-size: 11px; }
  .tribe-events-single .single-event-footer .red-social a.all:hover {
    color: #fff;
    background-color: #d93; }

.tribe-events-single .organizer-info-wrap {
  margin-top: 70px; }
  .tribe-events-single .organizer-info-wrap .entry-author {
    margin: 0 0 0 0; }
  .tribe-events-single .organizer-info-wrap .entry-author .author-info .author-name .org-text {
    font-size: 13px;
    color: #000;
    margin-left: 13px;
    text-transform: uppercase; }
  /* Archive stories */

.stories-archive-grid {
  padding-bottom: 10px; }

.stories-archive-grid + .navigation.pagination {
  margin-top: 24px; }

.stories-archive-grid .grid-item {
  position: relative;
  margin-bottom: 30px; }
  .stories-archive-grid .grid-item > img {
    width: 100%; }
  .stories-archive-grid .grid-item .share-popup-link {
    position: absolute;
    top: 30px;
    right: 38px;
    width: 60px;
    height: 60px;
    color: #000;
    font-size: 15px;
    border-radius: 50%;
    text-align: center;
    border: 1px dashed #797979;
    display: inline-block;
    padding-top: 8px; }
  @media (max-width: 1199px) {
      .stories-archive-grid .grid-item .share-popup-link {
        right: 15px;
        top: 15px; } }
  @media (max-width: 576px) {
      .stories-archive-grid .grid-item .share-popup-link {
        display: none; } }
  .stories-archive-grid .grid-item .share-popup-link i {
    width: 42px;
    height: 42px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0;
    line-height: 42px;
    -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; }
  .stories-archive-grid .grid-item .share-popup-link:hover {
    border-color: #fff;
    color: #fff; }
  .stories-archive-grid .grid-item .share-popup-link:hover i {
    background-color: #d93; }
  .stories-archive-grid .grid-item .entry-info {
    position: absolute;
    top: 30px;
    left: 35px;
    right: 35px;
    bottom: 30px;
    background-color: rgba(0, 0, 0, 0.9);
    color: #fff;
    padding: 70px 56px 70px 56px;
    display: flex;
    flex-wrap: wrap; }
  @media (max-width: 1199px) {
      .stories-archive-grid .grid-item .entry-info {
        padding: 50px 30px 50px 30px; } }
  @media (max-width: 576px) {
      .stories-archive-grid .grid-item .entry-info {
        top: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
        padding: 40px 15px 50px 15px; } }
  .stories-archive-grid .grid-item .location {
    background-color: #d93;
    padding: 9px 25px;
    color: #fff;
    font-size: 11px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-block; }
  .stories-archive-grid .grid-item .archive-title {
    margin-top: 22px;
    margin-bottom: 0;
    font-size: 25px;
    line-height: 30px;
    letter-spacing: -0.03em;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    color: #fff; }
  @media (max-width: 1199px) {
      .stories-archive-grid .grid-item .archive-title {
        font-size: 20px;
        line-height: 28px; } }
  @media (max-width: 767px) {
      .stories-archive-grid .grid-item .archive-title {
        margin-top: 10px;
        margin-bottom: 20px; } }
  @media (max-width: 576px) {
      .stories-archive-grid .grid-item .archive-title {
        font-size: 18px;
        line-height: 24px; } }
  .stories-archive-grid .grid-item .stories-desc {
    font-size: 16px;
    letter-spacing: -0.02em;
    color: #e8e8e8;
    margin-bottom: 38px; }
  @media (min-width: 1200px) {
      .stories-archive-grid .grid-item .stories-desc {
        padding-right: 100px; } }
  @media (max-width: 576px) {
      .stories-archive-grid .grid-item .stories-desc {
        display: none; } }
  @media (max-width: 576px) {
        .stories-archive-grid .grid-item .donation-wrap > div {
          flex: 0 0 100%;
          width: 100%;
          max-width: 100%; } }
  .stories-archive-grid .grid-item .donation-value .lbl {
    font-size: 15px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
    margin-bottom: 4px;
    color: #fff; }
  .stories-archive-grid .grid-item .donation-value .value {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #d93;
    letter-spacing: -0.03em;
    line-height: 1; }
  @media (max-width: 1199px) {
        .stories-archive-grid .grid-item .donation-value .value {
          font-size: 30px; } }
  @media (max-width: 576px) {
        .stories-archive-grid .grid-item .donation-value .value {
          font-size: 28px; } }
  @media (max-width: 1199px) {
        .stories-archive-grid .grid-item .donation-action a.btn {
          padding: 12px 30px; } }
  @media (max-width: 576px) {
        .stories-archive-grid .grid-item .donation-action a.btn {
          padding: 10px 20px;
          font-size: 11px;
          margin-top: 10px; } }
/* Single stories*/
.single-crw_stories .top-wrap {
  position: relative; }
  .single-crw_stories .top-wrap .entry-media {
    position: relative;
    margin-bottom: 0; }
  .single-crw_stories .top-wrap .entry-media > img {
    width: 100%; }
  .single-crw_stories .top-wrap .entry-media:after {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
    background-color: rgba(0, 0, 0, 0.5); }
  .single-crw_stories .top-wrap .share-popup-link {
    position: absolute;
    top: 50px;
    right: 70px;
    width: 60px;
    height: 60px;
    color: #000;
    font-size: 15px;
    border-radius: 50%;
    text-align: center;
    border: 1px dashed #797979;
    display: inline-block;
    padding-top: 8px; }
  @media (max-width: 991px) {
      .single-crw_stories .top-wrap .share-popup-link {
        right: 15px;
        top: 15px; } }
  .single-crw_stories .top-wrap .share-popup-link i {
    width: 42px;
    height: 42px;
    background-color: #fff;
    border-radius: 50%;
    display: inline-block;
    margin: 0;
    line-height: 42px;
    -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; }
  .single-crw_stories .top-wrap .share-popup-link:hover {
    border-color: #fff;
    color: #fff; }
  .single-crw_stories .top-wrap .share-popup-link:hover i {
    background-color: #d93; }
  .single-crw_stories .top-wrap .entry-header {
    padding: 0 70px 35px 70px; }
  @media (min-width: 768px) {
      .single-crw_stories .top-wrap .entry-header {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        align-items: flex-end; } }
  @media (max-width: 991px) {
      .single-crw_stories .top-wrap .entry-header {
        padding: 0 15px 25px 15px; } }
  @media (max-width: 767px) {
      .single-crw_stories .top-wrap .entry-header {
        padding: 20px 0; } }
  .single-crw_stories .top-wrap .entry-header .col-left .location {
    background-color: #d93;
    padding: 9px 25px;
    color: #fff;
    font-size: 11px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 16px;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    border-radius: 3px;
    display: inline-block; }
  .single-crw_stories .top-wrap .entry-header .col-left .single-title {
    margin-top: 18px;
    margin-bottom: 0;
    font-size: 25px;
    line-height: 34px;
    letter-spacing: -0.03em;
    font-family: 'Trebuchet MS', Helvetica, sans-serif; }
  @media (min-width: 768px) {
          .single-crw_stories .top-wrap .entry-header .col-left .single-title {
            color: #fff; } }
  @media (max-width: 991px) {
          .single-crw_stories .top-wrap .entry-header .col-left .single-title {
            font-size: 20px;
            line-height: 28px; } }
  @media (max-width: 767px) {
          .single-crw_stories .top-wrap .entry-header .col-left .single-title {
            margin-top: 10px;
            margin-bottom: 20px; } }
  @media (min-width: 768px) {
        .single-crw_stories .top-wrap .entry-header .col-right {
          text-align: right; } }
  .single-crw_stories .top-wrap .entry-header .col-right > div {
    display: inline-block;
    text-align: left;
    float: right; }
  @media (max-width: 767px) {
            .single-crw_stories .top-wrap .entry-header .col-right > div.donation-value {
              float: left; } }
  .single-crw_stories .top-wrap .entry-header .donation-value .lbl {
    font-size: 15px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
    margin-bottom: 4px; }
  @media (min-width: 768px) {
          .single-crw_stories .top-wrap .entry-header .donation-value .lbl {
            color: #fff; } }
  .single-crw_stories .top-wrap .entry-header .donation-value .value {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #d93;
    letter-spacing: -0.03em;
    line-height: 1; }
  @media (max-width: 991px) {
          .single-crw_stories .top-wrap .entry-header .donation-value .value {
            font-size: 30px; } }
  @media (max-width: 576px) {
          .single-crw_stories .top-wrap .entry-header .donation-value .value {
            font-size: 28px; } }
  .single-crw_stories .top-wrap .entry-header .donation-action {
    margin-left: 36px; }
  @media (max-width: 991px) {
        .single-crw_stories .top-wrap .entry-header .donation-action {
          margin-left: 15px; } }
  @media (max-width: 576px) {
        .single-crw_stories .top-wrap .entry-header .donation-action {
          margin-left: 0; } }
  @media (max-width: 991px) {
          .single-crw_stories .top-wrap .entry-header .donation-action a.btn {
            padding: 12px 30px; } }
  @media (max-width: 576px) {
          .single-crw_stories .top-wrap .entry-header .donation-action a.btn {
            padding: 10px 20px;
            font-size: 11px; } }

.single-crw_stories .meta-wrap {
  padding: 30px 58px 26px 58px; }
  @media (min-width: 577px) {
    .single-crw_stories .meta-wrap {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      background-color: #f9f9f9; } }
  @media (min-width: 768px) {
    .single-crw_stories .meta-wrap {
      justify-content: space-between; } }
  @media (max-width: 991px) {
    .single-crw_stories .meta-wrap {
      padding: 20px 15px 20px 15px; } }
  @media (max-width: 576px) {
    .single-crw_stories .meta-wrap {
      padding: 0;
      clear: left;
      overflow: hidden; } }
  @media (min-width: 577px) {
      .single-crw_stories .meta-wrap > div {
        flex: 0 0 auto;
        width: auto; } }
  @media (min-width: 768px) and (max-width: 991px) {
      .single-crw_stories .meta-wrap > div {
        flex: 0 0 50%;
        max-width: 50%; } }
  @media (max-width: 767px) {
      .single-crw_stories .meta-wrap > div {
        padding-right: 15px; } }
  @media (max-width: 576px) {
      .single-crw_stories .meta-wrap > div {
        padding-right: 0; } }
  .single-crw_stories .meta-wrap .meta-item {
    font-size: 14px;
    letter-spacing: -0.02em;
    color: #333; }
  .single-crw_stories .meta-wrap .meta-item i {
    font-size: 24px;
    color: #d93;
    margin-right: 15px;
    float: left;
    line-height: 1; }
  @media (max-width: 576px) {
        .single-crw_stories .meta-wrap .meta-item i {
          font-size: 20px;
          margin-right: 5px; } }

.single-crw_stories .has-sidebar .meta-wrap {
  padding: 30px 38px 26px 38px; }
  @media (max-width: 991px) {
    .single-crw_stories .has-sidebar .meta-wrap {
      padding: 20px 15px 20px 15px; } }
  @media (max-width: 576px) {
    .single-crw_stories .has-sidebar .meta-wrap {
      padding: 0; } }
  .single-crw_stories .has-sidebar .meta-wrap .meta-item i {
    margin-right: 8px; }

.single-crw_stories .entry-content {
  padding: 38px 70px 20px 70px; }
  @media (max-width: 991px) {
    .single-crw_stories .entry-content {
      padding: 38px 0 20px 0; } }
  .single-crw_stories .entry-content p {
    margin-bottom: 25px;
    line-height: 26px;
    letter-spacing: -0.02em; }
  .single-crw_stories .entry-content p:last-child {
    margin-bottom: 0; }
  .single-crw_stories .entry-content blockquote {
    border-left: 0;
    background: transparent;
    padding: 40px 140px 46px 140px;
    margin: 0;
    color: #d93; }
  @media (max-width: 1199px) {
      .single-crw_stories .entry-content blockquote {
        padding: 34px 100px; } }
  @media (max-width: 991px) {
      .single-crw_stories .entry-content blockquote {
        padding: 24px 30px; } }
  @media (max-width: 576px) {
      .single-crw_stories .entry-content blockquote {
        padding: 15px 0; } }
  .single-crw_stories .entry-content blockquote p {
    font-size: 24px;
    line-height: 35px;
    letter-spacing: -0.02em;
    font-style: italic;
    text-align: center;
    margin: 0 0 15px 0;
    padding: 0;
    position: relative; }
  .single-crw_stories .entry-content blockquote p:before {
    content: "“";
    position: absolute;
    left: auto;
    font-family: 'Lato';
    font-size: 30px;
    margin-right: 0;
    margin-left: -12px;
    top: 2px; }
  .single-crw_stories .entry-content blockquote p:after {
    content: "”";
    position: absolute;
    right: auto;
    bottom: -2px;
    font-family: 'Lato';
    font-size: 30px; }
  .single-crw_stories .entry-content h1, .single-crw_stories .entry-content h2, .single-crw_stories .entry-content h3, .single-crw_stories .entry-content h4, .single-crw_stories .entry-content h5, .single-crw_stories .entry-content h6 {
    margin-top: 0;
    margin-bottom: 0;
    letter-spacing: -0.03em; }
  .single-crw_stories .entry-content .vc_custom_heading {
    margin-bottom: 9px; }
  .single-crw_stories .entry-content .story-primary-block {
    background-color: #d93;
    padding: 57px 130px 53px 130px;
    border-radius: 3px;
    text-align: center; }
  @media (max-width: 991px) {
      .single-crw_stories .entry-content .story-primary-block {
        padding: 57px 70px 53px 70px; } }
  @media (max-width: 767px) {
      .single-crw_stories .entry-content .story-primary-block {
        padding: 30px 15px 30px 15px; } }
  .single-crw_stories .entry-content .story-primary-block h2 {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.03em;
    color: #fff;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 6px; }
  @media (max-width: 767px) {
        .single-crw_stories .entry-content .story-primary-block h2 {
          font-size: 20px;
          line-height: 28px; } }
  .single-crw_stories .entry-content .story-primary-block .silent-heading {
    color: #fff;
    font-size: 24px;
    letter-spacing: -0.03em;
    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; }
  @media (max-width: 767px) {
        .single-crw_stories .entry-content .story-primary-block .silent-heading {
          font-size: 22px; } }
  .single-crw_stories .entry-content .story-primary-block .silent-heading:after {
    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; }
  .single-crw_stories .entry-content .story-primary-block .silent-heading:hover {
    color: rgba(255, 255, 255, 0.7); }
  .single-crw_stories .entry-content .story-primary-block .silent-heading:hover:after {
    background-color: rgba(255, 255, 255, 0.7); }

.single-crw_stories .has-sidebar .entry-content {
  padding: 38px 40px 20px 40px; }
  @media (max-width: 991px) {
    .single-crw_stories .has-sidebar .entry-content {
      padding: 38px 0 20px 0; } }

.single-crw_stories .single-stories-footer {
  border-top: 1px dashed #dcdcdc;
  border-bottom: 1px dashed #dcdcdc;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 63px;
  margin-left: 0;
  margin-right: 0; }
  .single-crw_stories .single-stories-footer > div {
    padding-left: 0;
    padding-right: 0; }
  @media (max-width: 576px) {
      .single-crw_stories .single-stories-footer > div {
        margin-bottom: 10px; } }
  .single-crw_stories .single-stories-footer .detail-categories {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: -0.03em;
    line-height: 28px;
    color: #8c8c8c; }
  .single-crw_stories .single-stories-footer .detail-categories a {
    color: inherit; }
  .single-crw_stories .single-stories-footer .detail-categories a:hover {
    color: #71b61b; }
  .single-crw_stories .single-stories-footer .detail-categories .lbl {
    color: #d93; }
  .single-crw_stories .single-stories-footer .red-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 1.5px;
    background-color: #f2f2f2;
    color: #555;
    font-size: 11px; }
  .single-crw_stories .single-stories-footer .red-social a.all:hover {
    color: #fff;
    background-color: #d93; }

@media (min-width: 1200px) {
      .single-crw_stories .has-sidebar .entry-content blockquote {
        padding: 40px 70px 46px 70px; }
      .single-crw_stories .has-sidebar .entry-content .story-primary-block {
        padding: 57px 70px 53px 70px; } }
  @media (min-width: 992px) and (max-width: 1199px) {
    .single-crw_stories .has-sidebar .top-wrap .share-popup-link {
      top: 15px;
      right: 15px; }

    .single-crw_stories .has-sidebar .top-wrap .entry-header {
      padding: 0 15px 25px 15px; }

    .single-crw_stories .has-sidebar .top-wrap .entry-header .col-left .single-title {
      font-size: 20px;
      line-height: 28px; }

    .single-crw_stories .has-sidebar .top-wrap .entry-header .donation-action {
      margin-left: 10px; }

    .single-crw_stories .has-sidebar .top-wrap .entry-header .donation-action a.btn {
      padding: 12px 20px;
      font-size: 11px; }

    .single-crw_stories .has-sidebar .top-wrap .entry-header .donation-value .value {
      font-size: 30px; }

    .single-crw_stories .has-sidebar .meta-wrap {
      padding: 30px 15px 26px 15px; }

    .single-crw_stories .has-sidebar .meta-wrap > div {
      flex: 0 0 50%;
      max-width: 50%; }

    .single-crw_stories .has-sidebar .entry-content {
      padding: 38px 0 20px 0; }

    .single-crw_stories .has-sidebar .entry-content blockquote {
      padding: 34px 30px; }

    .single-crw_stories .has-sidebar .entry-content .story-primary-block {
      padding: 57px 30px 53px 30px; } }
/* Archive causes */
.causes-archive-grid.layout-causes-1 + .navigation.pagination {
  margin-top: 15px; }
  .causes-archive-grid.layout-causes-1 .grid-item {
    margin-bottom: 50px; }
  .causes-archive-grid.layout-causes-1 .entry-media {
    margin-bottom: 0; }
  .causes-archive-grid.layout-causes-1 .entry-media img {
    width: 100%;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
  .causes-archive-grid.layout-causes-1 .entry-info {
    position: relative;
    padding: 30px 45px 47px 45px;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px; }
  @media (max-width: 1199px) {
      .causes-archive-grid.layout-causes-1 .entry-info {
        padding: 30px 30px 37px 30px; } }
  @media (max-width: 576px) {
      .causes-archive-grid.layout-causes-1 .entry-info {
        padding: 30px 15px 37px 15px; } }
  .causes-archive-grid.layout-causes-1 .entry-info .causes-cats {
    position: absolute;
    top: -17px;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    background-color: #d93;
    padding: 7px 23px 5px 23px;
    border-radius: 3px; }
  .causes-archive-grid.layout-causes-1 .entry-info .causes-cats a {
    color: #fff; }
  .causes-archive-grid.layout-causes-1 .entry-info .causes-cats a:hover {
    color: rgba(255, 255, 255, 0.7); }
  .causes-archive-grid.layout-causes-1 .entry-info .entry-title {
    letter-spacing: -0.03em;
    margin-top: 14px;
    margin-bottom: 10px;
    line-height: 28px; }
  .causes-archive-grid.layout-causes-1 .entry-info .stories-desc {
    line-height: 24px;
    letter-spacing: -0.02em; }
  .causes-archive-grid.layout-causes-1 .entry-info .stories-desc p {
    margin-top: 0; }
  .causes-archive-grid.layout-causes-1 .entry-info .donation-value {
    margin-top: 34px; }
  .causes-archive-grid.layout-causes-1 .entry-info .donation-value .lbl {
    font-size: 15px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    color: #212020; }
  .causes-archive-grid.layout-causes-1 .entry-info .donation-value .value {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #d93;
    letter-spacing: -0.04em;
    line-height: 1; }
  @media (max-width: 1199px) {
          .causes-archive-grid.layout-causes-1 .entry-info .donation-value .value {
            font-size: 30px; } }
  @media (max-width: 576px) {
          .causes-archive-grid.layout-causes-1 .entry-info .donation-value .value {
            font-size: 28px; } }
  .causes-archive-grid.layout-causes-1 .entry-info .give-btn {
    position: absolute;
    bottom: 46px;
    right: 38px;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 15px;
    border-radius: 50%;
    text-align: center;
    border: 1px dashed #797979;
    display: inline-block;
    padding-top: 8px; }
  .causes-archive-grid.layout-causes-1 .entry-info .give-btn i {
    width: 42px;
    height: 42px;
    background-color: #d93;
    border-radius: 50%;
    display: inline-block;
    margin: 0;
    line-height: 42px;
    -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; }
  .causes-archive-grid.layout-causes-1 .entry-info .give-btn:hover i {
    background-color: #333; }

.causes-archive-grid.layout-causes-2 + .navigation.pagination {
  margin-top: 13px; }
  .causes-archive-grid.layout-causes-2 .grid-item {
    margin-bottom: 97px; }
  .causes-archive-grid.layout-causes-2 .entry-media {
    margin-bottom: 0;
    position: relative; }
  .causes-archive-grid.layout-causes-2 .entry-media img {
    width: 100%;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px; }
  .causes-archive-grid.layout-causes-2 .entry-media .donation-action {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(221, 153, 51, 0.9);
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    opacity: 0;
    visibility: hidden;
    -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; }
  .causes-archive-grid.layout-causes-2 .entry-media .donation-action a.btn {
    position: absolute;
    top: 50%;
    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%);
    margin-top: -27px;
    color: #fff;
    border-color: #fff; }
  .causes-archive-grid.layout-causes-2 .grid-item:hover .entry-media .donation-action {
    opacity: 1;
    visibility: visible; }
  .causes-archive-grid.layout-causes-2 .entry-info {
    padding: 38px 15px 86px 15px;
    position: relative;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); }
  .causes-archive-grid.layout-causes-2 .entry-info .donors-people {
    font-size: 13px;
    font-weight: 600;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    color: #333;
    letter-spacing: -0.03em;
    text-transform: uppercase; }
  .causes-archive-grid.layout-causes-2 .entry-info .donors-people .lbl {
    color: #d93; }
  .causes-archive-grid.layout-causes-2 .entry-info .entry-title {
    margin-top: 11px;
    margin-bottom: 0;
    letter-spacing: -0.03em;
    font-size: 20px;
    line-height: 26px; }
  .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap {
    padding: 25px 36px 25px 36px;
    border-radius: 96px;
    position: absolute;
    bottom: -46px;
    left: 15px;
    right: 15px;
    background: #fff;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05); }
  @media (max-width: 576px) {
        .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap {
          padding: 25px 20px 25px 20px; } }
  .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap .donation-amount {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 13px; }
  .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap .donation-amount > div {
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    color: #d93;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: -0.02em;
    position: relative;
    line-height: 1; }
    .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap .donation-amount > div .value {
      color: #333; }
  .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap .donation-amount .raised:after {
    content: "";
    position: absolute;
    bottom: 2px;
    right: 0;
    background-color: #787878;
    width: 1px;
    height: 6px; }
    @media (max-width: 576px) {
          .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap .donation-amount .raised:after {
            content: none; } }
  .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap .donate-progress .give-progress-bar {
    height: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -khtml-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -ms-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -o-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12); }
    .causes-archive-grid.layout-causes-2 .entry-info .donation-amount-wrap .donate-progress .give-progress-bar span {
      display: block;
      height: 100%;
      background-color: #d93;
      position: relative;
      overflow: hidden;
      border-radius: 20px;
      text-align: right;
      font-size: 11px;
      color: #fff;
      font-family: 'Trebuchet MS', Helvetica, sans-serif;
      font-weight: 600;
      letter-spacing: 0.01em;
      text-transform: uppercase;
      line-height: 20px;
      padding-right: 10px; }
/* Single Causes */
.single-crw_causes .entry-media {
  margin-bottom: 0; }
  .single-crw_causes .entry-media img {
    border-radius: 3px; }

.single-crw_causes .entry-content {
  padding: 42px 70px 30px 70px; }
  @media (max-width: 1199px) {
    .single-crw_causes .entry-content {
      padding: 42px 0 30px 0; } }

.single-crw_causes .entry-header .single-title {
  margin-top: 0;
  margin-bottom: 22px;
  line-height: 30px;
  letter-spacing: -0.03em; }
  .single-crw_causes .entry-header .progress-amount-wrap {
    background-color: #fff;
    padding: 55px 40px 45px 40px;
    -webkit-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
    -khtml-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
    -o-box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 54px rgba(0, 0, 0, 0.09);
    border-radius: 3px; }
  @media (min-width: 768px) {
      .single-crw_causes .entry-header .progress-amount-wrap {
        position: absolute;
        top: -160px;
        left: -15px;
        right: 15px; } }
  @media (max-width: 1199px) {
      .single-crw_causes .entry-header .progress-amount-wrap {
        top: -146px;
        padding: 35px 15px 35px 15px; } }
  @media (max-width: 767px) {
      .single-crw_causes .entry-header .progress-amount-wrap {
        top: auto;
        margin-bottom: 20px;
        margin-top: 10px; } }
  .single-crw_causes .entry-header .datetime-progress {
    margin-bottom: 16px; }
  .single-crw_causes .entry-header .datetime-progress .give-progress-bar {
    height: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -khtml-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -ms-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -o-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12); }
  .single-crw_causes .entry-header .datetime-progress .give-progress-bar span {
    display: block;
    height: 100%;
    background-color: #222;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    text-align: right;
    font-size: 11px;
    color: #fff;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 20px;
    padding-right: 10px; }
  .single-crw_causes .entry-header .donate-progress .give-progress-bar {
    height: 20px;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    -webkit-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -khtml-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -ms-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    -o-box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 7px rgba(0, 0, 0, 0.12); }
  .single-crw_causes .entry-header .donate-progress .give-progress-bar span {
    display: block;
    height: 100%;
    background-color: #d93;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    text-align: right;
    font-size: 11px;
    color: #fff;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 20px;
    padding-right: 10px; }
  .single-crw_causes .entry-header .donation-amount {
    flex-wrap: wrap;
    margin-left: -22px;
    margin-right: -22px;
    display: flex;
    margin-top: 33px; }
  @media (max-width: 1199px) {
      .single-crw_causes .entry-header .donation-amount {
        margin-left: -15px;
        margin-right: -15px; } }
  .single-crw_causes .entry-header .donation-amount > div {
    flex: 0 0 50%;
    max-width: 50%;
    padding-left: 30px;
    padding-right: 30px; }
  @media (max-width: 1199px) {
        .single-crw_causes .entry-header .donation-amount > div {
          padding-left: 15px;
          padding-right: 15px; } }
  @media (max-width: 767px) {
        .single-crw_causes .entry-header .donation-amount > div {
          text-align: center;
          padding-left: 10px;
          padding-right: 10px; } }
  @media (min-width: 577px) {
        .single-crw_causes .entry-header .donation-amount .raised {
          border-right: 1px solid #dcdcdc; } }
  .single-crw_causes .entry-header .donation-amount .lbl {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.03em;
    font-weight: 600;
    color: #333;
    display: block;
    line-height: 17px; }
  .single-crw_causes .entry-header .donation-amount .value {
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.03em;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    color: #d93;
    line-height: 1;
    margin-top: 7px;
    display: block; }

.single-crw_causes .meta-donate {
  align-items: flex-end;
  margin-bottom: 25px; }
  .single-crw_causes .meta-donate .meta-wrap p {
    line-height: 28px;
    letter-spacing: -0.01em;
    color: #333;
    margin-top: 5px;
    margin-bottom: 0;
    position: relative;
    padding-left: 35px; }
  .single-crw_causes .meta-donate .meta-wrap p i {
    font-size: 22px;
    color: #71b61b;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -14px; }
  .single-crw_causes .meta-donate .donation-action {
    text-align: center; }
  @media (max-width: 767px) {
      .single-crw_causes .meta-donate .donation-action {
        text-align: left;
        margin-top: 20px; } }
  .single-crw_causes .meta-donate .donation-action a.btn {
    margin-bottom: 20px; }

.single-crw_causes .cat-sharing {
  border-bottom: 1px dashed #dcdcdc;
  padding-bottom: 10px;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 34px; }
  .single-crw_causes .cat-sharing > div {
    padding-left: 0;
    padding-right: 0; }
  @media (max-width: 576px) {
      .single-crw_causes .cat-sharing > div {
        margin-bottom: 10px; } }
  .single-crw_causes .cat-sharing .detail-categories {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: -0.03em;
    line-height: 28px;
    color: #8c8c8c; }
  .single-crw_causes .cat-sharing .detail-categories a {
    color: inherit; }
  .single-crw_causes .cat-sharing .detail-categories a:hover {
    color: #71b61b; }
  .single-crw_causes .cat-sharing .detail-categories .lbl {
    font-weight: 600;
    color: #d93; }
  .single-crw_causes .cat-sharing .red-social a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0 1.5px;
    background-color: #f2f2f2;
    color: #555;
    font-size: 11px; }
  .single-crw_causes .cat-sharing .red-social a.all:hover {
    color: #fff;
    background-color: #d93; }

.single-crw_causes .entry-conent-inner p {
  letter-spacing: -0.02em;
  margin-bottom: 26px; }
  .single-crw_causes .entry-conent-inner p:last-child {
    margin-bottom: 0; }
  .single-crw_causes .entry-conent-inner blockquote {
    border-left: 0;
    background: transparent;
    padding: 40px 85px 52px 85px;
    margin: 0;
    color: #d93; }
  @media (max-width: 1199px) {
      .single-crw_causes .entry-conent-inner blockquote {
        padding: 34px 30px; } }
  @media (max-width: 576px) {
      .single-crw_causes .entry-conent-inner blockquote {
        padding: 15px 0; } }
  .single-crw_causes .entry-conent-inner blockquote p {
    font-size: 24px;
    line-height: 35px;
    letter-spacing: -0.02em;
    font-style: italic;
    text-align: center;
    margin: 0 0 15px 0;
    padding: 0;
    position: relative; }
  .single-crw_causes .entry-conent-inner blockquote p:before {
    content: "“";
    position: absolute;
    left: auto;
    font-family: 'Lato';
    font-size: 30px;
    margin-right: 0;
    margin-left: -12px;
    top: 2px; }
  .single-crw_causes .entry-conent-inner blockquote p:after {
    content: "”";
    position: absolute;
    right: auto;
    bottom: -2px;
    font-family: 'Lato';
    font-size: 30px; }

.single-crw_causes .recent-donars {
  padding: 0 70px 15px 70px;
  margin-bottom: 50px; }
  @media (max-width: 1199px) {
    .single-crw_causes .recent-donars {
      padding: 0 0 15px 0; } }
  .single-crw_causes .recent-donars h4 {
    letter-spacing: -0.05em;
    margin-top: 0;
    margin-bottom: 35px; }
  .single-crw_causes .recent-donars .rd-item {
    text-align: center;
    border-radius: 3px; }
  .single-crw_causes .recent-donars .rd-item .rd-img {
    position: relative; }
  .single-crw_causes .recent-donars .rd-item .rd-img:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    bottom: -10px;
    background-color: #d93; }
  .single-crw_causes .recent-donars .rd-item .rd-img img {
    border-radius: 50%;
    position: relative; }
  .single-crw_causes .recent-donars .rd-item .rd-item-content {
    padding-top: 22px;
    padding-bottom: 25px;
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    background-color: #d93; }
  .single-crw_causes .recent-donars .rd-item .rd-name {
    margin-top: 0;
    margin-bottom: 2px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #fff; }
  .single-crw_causes .recent-donars .rd-item .rd-amount {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 18px;
    letter-spacing: -0.03em;
    color: #fff; }

.single-crw_causes .comments-area {
  margin-top: 0;
  margin-bottom: 10px; }

.single-crw_causes .comment-list {
  margin-bottom: 64px; }

.single-crw_causes .comment-respond {
  margin-top: 0; }
/* Header Top */
.red-header-top {
  padding: 10px 0;
  background-color: #0f0f0f;
  color: #eee;
  font-size: 12px;
  letter-spacing: 0.02em; }

@media (max-width: 1199px) {
      .red-header-top .container {
        padding-left: 0;
        padding-right: 0; } }

@media (min-width: 1366px) {
      .red-header-top .container-fluid {
        margin-left: 50px;
        margin-right: 50px;
        padding-left: 0;
        padding-right: 0;
        width: calc(100% - 100px); } }

.red-header-top ul, .red-header-top ol {
  margin: 0;
  padding: 0;
  list-style: none; }
  .red-header-top ul li, .red-header-top ol li {
    display: inline-block;
    line-height: 30px; }

.red-header-top .contact-info-top i {
  color: #d93;
  margin-right: 10px;
  font-size: 14px; }
  .red-header-top .contact-info-top li {
    padding: 0 28px;
    position: relative; }
  .red-header-top .contact-info-top li:first-child {
    padding-left: 0; }
  .red-header-top .contact-info-top li:last-child {
    padding-right: 0; }
  .red-header-top .contact-info-top li + li:before {
    content: "";
    width: 1px;
    height: 13px;
    position: absolute;
    left: -2px;
    top: 8px;
    background: #6d6d6d; }
  @media screen and (max-width: 380px) {
      .red-header-top .contact-info-top li {
        padding: 0;
        display: block; }
        .red-header-top .contact-info-top li + li:before {
          content: none; } }

.red-header-top .widget_text i {
  color: #d93;
  margin-right: 10px;
  font-size: 14px; }

.red-header-top a {
  color: inherit;
  line-height: 30px; }
  .red-header-top a:hover {
    color: #71b61b; }

.red-header-top .red-social a {
  margin: 0 2.5px;
  background-color: #191919;
  color: #d3d3d3;
  font-size: 11px;
  border-radius: 2px; }
  .red-header-top .red-social a:hover {
    color: #d93;
    background-color: rgba(255, 255, 255, 0.1); }
  .red-header-top .red-social a:last-child {
    margin-right: 0; }

.red-header-top .widget {
  margin-bottom: 0; }

.red-header-top .text-md-right aside {
  float: right;
  margin-left: 60px; }
  @media (min-width: 768px) and (max-width: 991px) {
      .red-header-top .text-md-right aside {
        margin-left: 30px; } }
/* Main header */
.red-header {
  z-index: 8;
  /* Header on top */
  /* Header Sticky */ }

.red-header .ontop-logo, .red-header .sticky-logo {
  display: none; }

.red-header.header-default {
  /* Logo Text */ }
  .red-header.header-default .red-header-logo.logo-type-text a {
    color: #333; }
  .red-header.header-default .red-header-logo.logo-type-text a:hover {
    color: #71b61b; }

.red-header.header-ontop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  /* Logo Text */ }
  .red-header.header-ontop .main-logo, .red-header.header-ontop .sticky-logo {
    display: none; }
  .red-header.header-ontop .ontop-logo {
    display: inline-block; }
  .red-header.header-ontop .red-header-logo.logo-type-text a {
    color: #fff; }
  .red-header.header-ontop .red-header-logo.logo-type-text a:hover {
    color: #71b61b; }
  .red-header.header-ontop .red-nav-extra .red-header-popup .header-icon {
    color: #71b61b; }
  .red-header.header-ontop .red-nav-extra .red-header-popup .header-icon:hover {
    color: #fff; }
  .red-header.header-ontop .red-nav-extra .red-header-popup .header-icon.cart span .cart_total {
    background-color: #fff;
    color: #262626; }

.red-header.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-shadow: 0px 2px 3px rgba(0, 0, 0, 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;
  /* Logo Text */ }
  .red-header.header-sticky.red-header-1 .red-header-outer {
    background-color: #fff; }
  .red-header.header-sticky.red-header-3 .red-header-outer {
    background-color: #fff; }
  .red-header.header-sticky.red-header-4 .red-header-outer {
    background-color: #fff; }
  .red-header.header-sticky .container-fluid {
    position: relative; }
  @media (min-width: 1366px) {
      .red-header.header-sticky .container-fluid {
        margin-left: 50px;
        margin-right: 50px;
        width: calc(100% - 100px); } }
  .red-header.header-sticky .header-menu-right {
    position: inherit; }
  .red-header.header-sticky .main-logo, .red-header.header-sticky .ontop-logo {
    display: none; }
  .red-header.header-sticky .sticky-logo {
    display: inline-block; }
  .red-header.header-sticky .red-header-logo.logo-type-text a {
    color: #969696; }
  .red-header.header-sticky .red-header-logo.logo-type-text a:hover {
    color: #71b61b; }
  .red-header.header-sticky .red-header-logo.logo-type-text {
    height: 10px; }
  .red-header.header-sticky .red-nav-extra .red-header-height {
    line-height: 10px; }
  .red-header.header-sticky .red-nav-extra .header-icon {
    color: #71b61b; }
  .red-header.header-sticky .red-nav-extra .header-icon:hover {
    color: #969696; }
/* Logo */
.red-header-logo {
  max-width: 223px;
  display: inline-block;
  vertical-align: top;
  padding-top: 10px;
  padding-bottom: 10px; }

@media screen and (max-width: 576px) {
    .red-header-logo {
      max-width: 200px; } }

.red-header-logo a {
  line-height: 1;
  display: block; }

.red-header-logo.logo-type-text {
  height: 100px;
  display: table; }
  .red-header-logo.logo-type-text a {
    display: table-cell;
    line-height: 1;
    vertical-align: middle; }

.red-header-logo .logo-text {
  font-size: 36px; }

.red-header-logo .logo-slogan {
  font-style: italic; }

.red-header-logo img {
  display: inherit; }
/* Extra attribute */
.red-nav-extra .red-header-height {
  line-height: 100px; }
  @media (max-width: 1199px) {
    .red-nav-extra .red-header-height {
      line-height: 80px; } }
  .red-nav-extra .red-header-height.donate-btn-wrap .btn {
    vertical-align: middle;
    margin-top: -4px; }

.red-nav-extra .red-header-popup .header-icon {
  display: block;
  float: left; }
  .red-nav-extra .red-header-popup .header-icon:last-child {
    margin-right: 0; }
  .red-nav-extra .red-header-popup .header-icon.cart {
    margin-right: 33px;
    font-size: 22px;
    color: #71b61b; }
  .red-nav-extra .red-header-popup .header-icon.cart:hover {
    color: #333; }
  .red-nav-extra .red-header-popup .header-icon.cart span {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    position: relative;
    line-height: 1;
    font-size: 28px;
    margin-top: -3px; }
  .red-nav-extra .red-header-popup .header-icon.cart span .cart_total {
    position: absolute;
    top: 3px;
    left: 16px;
    font-size: 10px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    background: #000;
    color: #fff;
    min-width: 20px;
    min-height: 20px;
    text-align: center;
    padding: 4px 5px;
    border-radius: 50%; }
  .red-nav-extra .red-header-popup .header-icon.search {
    margin-right: 20px;
    font-size: 22px;
    color: #71b61b; }
  .red-nav-extra .red-header-popup .header-icon.search:hover {
    color: #333; }
  .red-nav-extra .red-header-popup .header-icon.search span {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    position: relative;
    line-height: 1;
    font-size: 28px;
    margin-top: -3px; }
  .red-nav-extra .red-header-popup .header-icon.tool {
    margin-right: 20px;
    font-size: 22px;
    color: #71b61b; }
  .red-nav-extra .red-header-popup .header-icon.tool:hover {
    color: #333; }
  .red-nav-extra .red-header-popup .header-icon.tool span {
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    text-align: center;
    position: relative;
    line-height: 1;
    font-size: 28px;
    margin-top: -3px; }
  .red-nav-extra .red-header-popup .header-icon .tool-icon {
    cursor: pointer; }
  .red-nav-extra .red-header-popup .header-icon .tool-icon span {
    width: 5px;
    height: 5px;
    display: inline-block;
    margin: 0 1px;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%; }
  .red-nav-extra .red-header-popup .header-icon.sidebar-icon.active {
    display: none; }
  .red-nav-extra .red-header-popup .red-popup {
    display: none;
    width: 300px;
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 21;
    padding: 30px 20px;
    vertical-align: inherit;
    background-color: #fff; }
  @media (max-width: 320px) {
      .red-nav-extra .red-header-popup .red-popup {
        width: 290px; } }

.rtl .red-nav-extra .red-header-popup .header-icon {
  float: right;
  margin-left: 30px;
  margin-right: 0; }
  .rtl .red-nav-extra .red-header-popup .header-icon:last-child {
    margin-left: 0; }
  .rtl .red-nav-extra .red-header-popup .header-icon span .cart_total {
    left: auto;
    right: 22px; }
  .rtl .red-nav-extra .red-header-popup .red-popup {
    left: 0;
    right: auto; }
/* Logged in user */
.admin-bar .red-header.header-ontop {
  top: 32px; }

.red-header .mobile-toogle-menu {
  font-size: 25px; }

@media (max-width: 1199px) {
    .red-header .mobile-toogle-menu {
      margin-left: 15px; }
    .red-header.red-header-1 .header-menu-right, .red-header .red-navigation {
      position: inherit; }
    .red-header .red-main-navigation .sub-menu {
      background-color: transparent; } }
/*  Header Layout */
@media (min-width: 576px) and (max-width: 1199px) {
        .red-header-layout-1 .red-header-top .container {
          padding-left: 0;
          padding-right: 0; } }

.red-header-layout-1 .red-header.header-default {
  background-color: #0f0f0f; }
  .red-header-layout-1 .red-header.header-default .container {
    position: relative;
    margin-bottom: -50px;
    z-index: 99;
    -webkit-box-shadow: 0 0 73px rgba(0, 0, 0, 0.09);
    -khtml-box-shadow: 0 0 73px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0 0 73px rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 0 0 73px rgba(0, 0, 0, 0.09);
    -o-box-shadow: 0 0 73px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 73px rgba(0, 0, 0, 0.09); }
  @media (min-width: 1370px) {
      .red-header-layout-1 .red-header.header-default .container {
        max-width: 1340px; } }
  @media (max-width: 575px) {
      .red-header-layout-1 .red-header.header-default .container {
        margin-bottom: 0; } }
  .red-header-layout-1 .red-header.header-default .container > div {
    background: #fff;
    border-radius: 3px; }
  @media (min-width: 1370px) {
        .red-header-layout-1 .red-header.header-default .container > div {
          padding-left: 70px;
          padding-right: 70px; } }
  .red-header-layout-1 .red-header.header-default .container-fluid {
    position: relative;
    margin-bottom: -50px;
    z-index: 99; }
  @media (min-width: 1366px) {
      .red-header-layout-1 .red-header.header-default .container-fluid {
        margin-left: 50px;
        margin-right: 50px;
        width: calc(100% - 100px); } }
  @media (max-width: 575px) {
      .red-header-layout-1 .red-header.header-default .container-fluid {
        margin-bottom: 0; } }
  .red-header-layout-1 .red-header.header-default .container-fluid > div {
    background: #fff; }

.red-header-layout-2 .red-header {
  background-color: #d93; }
  .red-header-layout-2 .red-header .container {
    position: relative;
    z-index: 99; }
  @media (max-width: 1199px) {
      .red-header-layout-2 .red-header .container {
        max-width: 100%; } }
  .red-header-layout-2 .red-header .container-fluid {
    position: relative;
    z-index: 99; }
  @media (min-width: 1366px) {
      .red-header-layout-2 .red-header .container-fluid {
        margin-left: 50px;
        margin-right: 50px;
        width: calc(100% - 100px); } }
  @media (max-width: 1199px) {
      .red-header-layout-2 .red-header .header-menu-right {
        position: inherit; } }
  .red-header-layout-2 .red-header .cross-bg {
    width: 87px;
    height: 100px;
    background: #fff; }
  @media (max-width: 1199px) {
      .red-header-layout-2 .red-header .cross-bg {
        height: 80px; } }
  @media (max-width: 576px) {
      .red-header-layout-2 .red-header .cross-bg {
        display: none; } }
  .red-header-layout-2 .red-header .cross-bg:before {
    content: "";
    border-left: 0px solid transparent;
    border-right: 87px solid transparent;
    border-bottom: 100px solid #d93;
    position: absolute;
    top: 0;
    left: 0; }
  @media (max-width: 1199px) {
        .red-header-layout-2 .red-header .cross-bg:before {
          border-bottom: 80px solid #d93; } }
  .red-header-layout-2 .red-header .cross-bg:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    background-color: #fff;
    width: 100vw; }
  @media (max-width: 576px) {
      .red-header-layout-2 .red-header .mobile-toogle-menu {
        color: #fff; }
        .red-header-layout-2 .red-header .mobile-toogle-menu:hover {
          color: #333; } }
  @media (max-width: 576px) {
      .red-header-layout-2 .red-header.header-sticky .red-nav-extra .mobile-toogle-menu {
        color: #fff; }
        .red-header-layout-2 .red-header.header-sticky .red-nav-extra .mobile-toogle-menu:hover {
          color: #333; } }
  .red-header-layout-2 .red-header.header-ontop .header-menu-right {
    background-color: #fff; }
  .red-header-layout-2 .red-header.header-ontop .cross-bg {
    background: #fff; }
  .red-header-layout-2 .red-header.header-ontop .cross-bg:after {
    background-color: #fff; }

.red-header-layout-2 .red-header.header-sticky .cross-bg {
  height: 10px; }
  .red-header-layout-2 .red-header.header-sticky .cross-bg:before {
    border-bottom: 10px solid #d93; }

.red-header-layout-3 .red-header.header-default .container {
  position: relative;
  z-index: 99; }
  .red-header-layout-3 .red-header.header-default .container-fluid {
    position: relative;
    z-index: 99; }
  @media (min-width: 1366px) {
      .red-header-layout-3 .red-header.header-default .container-fluid {
        margin-left: 50px;
        margin-right: 50px;
        width: calc(100% - 100px); } }
  @media (max-width: 1199px) {
      .red-header-layout-3 .red-header.header-default .header-menu-right {
        position: inherit; } }
  .red-header-layout-3 .red-header.header-default .red-social {
    margin-left: 13px;
    -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; }
  .red-header-layout-3 .red-header.header-default .red-social a {
    width: 35px;
    height: 35px;
    color: #fff;
    line-height: 35px;
    font-size: 11px;
    margin: 1px;
    background-color: rgba(255, 255, 255, 0.1); }

.red-header-layout-3 .header-sticky .red-social {
  margin-left: 13px;
  -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; }
  .red-header-layout-3 .header-sticky .red-social a {
    width: 35px;
    height: 35px;
    color: #fff;
    line-height: 35px;
    font-size: 11px;
    margin: 1px;
    background-color: #333; }

@media screen and (min-width: 576px) {
      .red-header-layout-4 .red-page {
        position: relative; } }

@media (min-width: 992px) {
      .red-header-layout-4 .red-header.header-default {
        margin-top: 30px; } }
  .red-header-layout-4 .red-header.header-default .container {
    position: relative;
    z-index: 99; }
  @media (max-width: 1199px) {
      .red-header-layout-4 .red-header.header-default .container {
        max-width: 100%; } }
  .red-header-layout-4 .red-header.header-default .container-fluid {
    position: relative;
    z-index: 99; }
  @media (min-width: 1366px) {
      .red-header-layout-4 .red-header.header-default .container-fluid {
        margin-left: 50px;
        margin-right: 50px;
        width: calc(100% - 100px); } }
  @media (max-width: 1199px) {
      .red-header-layout-4 .red-header.header-default .header-menu-right {
        position: inherit; } }
  .red-header-layout-4 .red-header.header-default .cross-bg {
    width: 87px;
    height: 100px; }
  @media (max-width: 1199px) {
      .red-header-layout-4 .red-header.header-default .cross-bg {
        height: 80px; } }
  @media (max-width: 576px) {
      .red-header-layout-4 .red-header.header-default .cross-bg {
        display: none; } }
  .red-header-layout-4 .red-header.header-default .cross-bg:before {
    content: "";
    border-left: 87px solid transparent;
    border-right: 0 solid transparent;
    border-top: 100px solid rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0; }
  @media (max-width: 1199px) {
        .red-header-layout-4 .red-header.header-default .cross-bg:before {
          border-top: 80px solid rgba(0, 0, 0, 0.5); } }
  .red-header-layout-4 .red-header.header-default .cross-bg:after {
    content: "";
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    width: 100vw; }
  .red-header-layout-4 .red-header.header-default.header-ontop .cross-bg:after {
    background-color: rgba(0, 0, 0, 0.5); }

@media (min-width: 576px) {
      .admin-bar.red-header-layout-4 .red-header.header-ontop {
        top: 0 !important; } }
/* menu variation */
#red-menu-mobile {
  cursor: pointer; }

@media (min-width: 1200px) {
    #red-menu-mobile {
      display: none; } }
/* end menu variation */
.red-main-navigation {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  /* Menu Title */
  /* Menu toggle */
  /* Widget */
  /* First Level */
  /* Sub Level */ }

.red-main-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  .red-main-navigation ul:before, .red-main-navigation ul:after {
    content: '';
    display: table;
    clear: both; }

.red-main-navigation li, .red-main-navigation a {
  display: block;
  position: relative; }
  .red-main-navigation li.rsswidget, .red-main-navigation a.rsswidget {
    display: inline-block; }

.red-main-navigation .menu-title-wrap {
  display: inline-block;
  line-height: 1.2; }

.red-main-navigation .menu-attribute, .red-main-navigation .menu-description {
  display: block;
  font-size: 85%;
  font-weight: normal;
  color: #999; }

.red-main-navigation .menu-title + span {
  margin-top: 5px; }
  .red-main-navigation .menu-title:empty:before {
    content: "Empty title";
    display: inline-block; }

.red-main-navigation span.red-menu-toggle {
  cursor: pointer;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  position: absolute;
  top: 8px; }

.red-main-navigation .menu-wg-wrap .widget {
  margin-bottom: 30px; }
  .red-main-navigation .menu-wg-wrap .widget:last-child {
    margin-bottom: 0; }
  .red-main-navigation .menu-wg-wrap .widget.widget_recent_comments ul li a:before, .red-main-navigation .menu-wg-wrap .widget.widget_recent_comments ul li a:after {
    display: none; }
  .red-main-navigation .menu-wg-wrap .widget.widget_nav_menu .sub-menu {
    border-top: 0.5px solid rgba(255, 255, 255, 0.4);
    margin-top: 5px;
    padding-top: 0;
    padding-bottom: 0; }
  .red-main-navigation .menu-wg-wrap .widget.widget_archive ul li a, .red-main-navigation .menu-wg-wrap .widget.widget_categories ul li a, .red-main-navigation .menu-wg-wrap .widget.widget_recent_comments ul li a {
    display: inline-block; }
  .red-main-navigation .menu-wg-wrap .widget.widget_recent_comments ul li a, .red-main-navigation .menu-wg-wrap .widget.widget_rss ul li a {
    padding-left: 0 !important;
    padding-right: 0 !important; }

.red-main-navigation > ul > li > a {
  text-transform: inherit;
  font-size: 17px; }

.red-main-navigation .sub-menu {
  background-color: #121212;
  padding: 10px 0;
  min-width: 250px;
  /* Grouped menu title / widget title */
  /* Grouped No title / list in widget */
  /* No Group has widget */
  /* item icon */
  /* Multi Columns */ }
  .red-main-navigation .sub-menu.group {
    padding: 0; }
  .red-main-navigation .sub-menu li a {
    padding: 10px 20px; }
  .red-main-navigation .sub-menu li:not(.group) {
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.4); }
  .red-main-navigation .sub-menu li:not(.group):last-child {
    border-bottom: none; }
  .red-main-navigation .sub-menu .group > a, .red-main-navigation .sub-menu .wg-title {
    margin: 0 0 10px;
    padding: 0 0 10px;
    border-bottom: 0.5px solid rgba(255, 255, 255, 0.4); }
  .red-main-navigation .sub-menu .no-title > .sub-menu > li, .red-main-navigation .sub-menu .menu-wg-wrap .widget ul li {
    padding-left: 0;
    padding-right: 0; }
  .red-main-navigation .sub-menu .no_group > .menu-wg-wrap {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 0.5px solid rgba(255, 255, 255, 0.4); }
  .red-main-navigation .sub-menu.multicolumn {
    padding-left: 10px;
    padding-right: 10px; }
  @media (max-width: 1200px) {
      .red-main-navigation .sub-menu.multicolumn {
        max-width: 100%; } }
  .red-main-navigation .sub-menu.multicolumn > li {
    padding: 0 10px; }
  .red-main-navigation .sub-menu.multicolumn > li .sub-menu {
    min-width: 100%; }
  .red-main-navigation .sub-menu.multicolumn > li .sub-menu > li > a {
    padding-left: 0; }
  .red-main-navigation .sub-menu.multicolumn > li.menu-item-has-children > .red-menu-toggle {
    display: none; }
  .red-main-navigation .sub-menu.multicolumn.columns2 > li {
    width: 50%; }
  .red-main-navigation .sub-menu.multicolumn.columns2 > li:nth-child(2n+1) {
    clear: left; }
  @media (max-width: 576px) {
        .red-main-navigation .sub-menu.multicolumn.columns2 > li {
          width: 100%; } }
  .red-main-navigation .sub-menu.multicolumn.columns3 > li {
    width: 33.333%; }
  .red-main-navigation .sub-menu.multicolumn.columns3 > li:nth-child(3n+1) {
    clear: left; }
  @media (max-width: 767px) {
        .red-main-navigation .sub-menu.multicolumn.columns3 > li {
          width: 100%; } }
  .red-main-navigation .sub-menu.multicolumn.columns4 > li {
    width: 25%; }
  .red-main-navigation .sub-menu.multicolumn.columns4 > li:nth-child(4n+1) {
    clear: left; }
  @media (max-width: 767px) {
        .red-main-navigation .sub-menu.multicolumn.columns4 > li {
          width: 50%; } }
  @media (max-width: 576px) {
        .red-main-navigation .sub-menu.multicolumn.columns4 > li {
          width: 100%; } }
  .red-main-navigation .sub-menu.multicolumn.columns5 > li {
    width: 20%; }
  .red-main-navigation .sub-menu.multicolumn.columns5 > li:nth-child(5n+1) {
    clear: left; }
  @media (min-width: 640px) and (max-width: 767px) {
        .red-main-navigation .sub-menu.multicolumn.columns5 > li {
          width: 50%; } }
  @media (max-width: 576px) {
        .red-main-navigation .sub-menu.multicolumn.columns5 > li {
          width: 100%; } }
  .red-main-navigation .sub-menu.multicolumn.dir-left > li {
    float: left; }
  .red-main-navigation .sub-menu.multicolumn.dir-right > li {
    float: right; }

.red-main-navigation .main-nav.dir-left .sub-menu {
  /* Widget */ }
  .red-main-navigation .main-nav.dir-left .sub-menu li:not(.group) > a:not(.has-icon):before {
    content: "\f105\00a0\00a0";
    font-family: 'FontAwesome';
    display: inline-block; }
  .red-main-navigation .main-nav.dir-left .sub-menu .item-link > i {
    margin-right: 5px; }
  .red-main-navigation .main-nav.dir-left .sub-menu .widget_nav_menu .sub-menu {
    padding-right: 0; }
  .red-main-navigation .main-nav.dir-right .sub-menu {
    /* Widget */ }
  .red-main-navigation .main-nav.dir-right .sub-menu li:not(.group) > a:not(.has-icon):before {
    content: "\f104\00a0\00a0";
    font-family: 'FontAwesome';
    display: inline-block; }
  .red-main-navigation .main-nav.dir-right .sub-menu .item-link > i {
    margin-left: 5px; }
  .red-main-navigation .main-nav.dir-right .sub-menu .widget_nav_menu .sub-menu {
    padding-left: 0; }
/* Desktop Menu */
@media (min-width: 1200px) {
  /* Menu style */
  /* Main Navigation Center */
    ul.main-nav {
      /* Hide DropDown */
      /* Language direction */
      /* Level 1 */ }
      ul.main-nav li {
        /* Show Dropdown */ }
        ul.main-nav li .sub-menu {
          position: absolute;
          visibility: hidden;
          z-index: 1;
          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; }
          ul.main-nav li .sub-menu .sub-menu {
            top: -10px; }
          ul.main-nav li .sub-menu.group {
            position: static;
            left: auto;
            right: auto;
            top: auto;
            visibility: visible;
            display: none;
            border-top: none !important;
            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; }
        ul.main-nav li:hover > .sub-menu {
          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; }
        ul.main-nav li.has_full_width {
          position: static; }
      ul.main-nav.dir-left {
        /* Level 3+ */ }
        ul.main-nav.dir-left > li {
          float: left;
          /* Level 2+ */ }
          ul.main-nav.dir-left > li.menu-item-has-children > a .menu-title:after {
            content: "\00a0\f107";
            display: none; }
          ul.main-nav.dir-left > li .menu-item-has-children > .red-menu-toggle {
            right: 0; }
          ul.main-nav.dir-left > li > .sub-menu {
            /* Level 2 Only */ }
            ul.main-nav.dir-left > li > .sub-menu.back {
              right: 0; }
        ul.main-nav.dir-left .sub-menu .sub-menu {
          left: calc(100% + 40px);
          z-index: 1; }
          ul.main-nav.dir-left .sub-menu .sub-menu.back {
            left: auto;
            right: calc(100% + 40px); }
          ul.main-nav.dir-left .sub-menu li:hover > .sub-menu {
            left: 100%; }
          ul.main-nav.dir-left .sub-menu li:hover > .sub-menu.back {
            left: auto;
            right: 100%; }
      ul.main-nav.dir-right {
        /* level 3+ */ }
        ul.main-nav.dir-right > li {
          float: right;
          /* Level 2+ */ }
          ul.main-nav.dir-right > li.menu-item-has-children > a .menu-title:before {
            content: "\f107\00a0";
            display: none; }
          ul.main-nav.dir-right > li .menu-item-has-children > .red-menu-toggle {
            left: 0; }
          ul.main-nav.dir-right > li > .sub-menu {
            /* Level 2 Only */ }
          ul.main-nav.dir-right > li > .sub-menu.back {
            left: 0; }
        ul.main-nav.dir-right .sub-menu .sub-menu {
          right: calc(100% + 40px); }
          ul.main-nav.dir-right .sub-menu .sub-menu.back {
            right: auto;
            left: calc(100% + 40px); }
          ul.main-nav.dir-right .sub-menu li:hover > .sub-menu {
            right: 100%; }
          ul.main-nav.dir-right .sub-menu li:hover > .sub-menu.back {
            right: auto;
            left: 100%; }
          ul.main-nav.dir-right .sub-menu .red-menu-toggle .fa-angle-right:before {
            content: "\f104"; }
      ul.main-nav > li {
        margin: 0 10px;
        /* Menu Item style */
        /* Level 2 only */ }
        ul.main-nav > li > .red-menu-toggle {
          display: none; }
        ul.main-nav > li > a {
          line-height: 100px;
          padding: 0 10px;
          font-weight: 700;
          font-size: 13px;
          letter-spacing: -0.02em; }
        ul.main-nav > li.menu-item-has-children > a .menu-title:before, ul.main-nav > li.menu-item-has-children > a .menu-title:after {
          font-family: 'FontAwesome'; }
        ul.main-nav > li > .sub-menu {
          top: calc(100% + 40px); }
        ul.main-nav > li:hover > .sub-menu {
          top: 100%; }
          ul.main-nav > li:hover .group > .sub-menu {
            display: block; }
      ul.main-nav .sub-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; }
        ul.main-nav .sub-menu.drop_to_center {
          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%); }
        ul.main-nav .sub-menu.drop_to_right {
          right: 0; }
        ul.main-nav .sub-menu.drop_to_left {
          left: 0; }
        ul.main-nav .sub-menu.drop_full_width {
          left: 0;
          right: 0; }
    #red-navigation.pull-center .red-main-navigation {
      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%); } }
/* Mobile Menu */
@media (max-width: 1199px) {
  .red-navigation {
    padding: 0 !important; }

  div.red-main-navigation {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #121212;
    padding: 10px 20px;
    z-index: 999; }

  .main-nav {
    max-height: 450px;
    overflow-y: auto; }
    .main-nav > li {
      border-bottom: 0.5px solid rgba(255, 255, 255, 0.4); }
      .main-nav > li:last-child {
        border-bottom: none; }
      .main-nav > li .sub-menu:not(.group) {
        display: none;
        border-top: 0.5px solid rgba(255, 255, 255, 0.4);
        margin-top: 5px;
        padding-top: 0;
        padding-bottom: 0; }
        .main-nav > li .sub-menu.multicolumn {
          margin-top: 0;
          padding-top: 10px; }
        .main-nav > li .sub-menu.group, .main-nav > li .sub-menu .menu-wg-wrap {
          display: block !important; }
    .main-nav.dir-left .red-menu-toggle {
      right: 0; }
      .main-nav.dir-left .sub-menu {
        padding-left: 20px;
        padding-right: 0; }
    .main-nav.dir-right .red-menu-toggle {
      left: 0; }
      .main-nav.dir-right .sub-menu {
        padding-left: 0;
        padding-right: 20px; }

  .red-navigation .main-nav::-webkit-scrollbar {
    height: 0;
    width: 7px;
    background-color: transparent; }

  .red-navigation .main-nav::-webkit-scrollbar-track {
    border-radius: 10px; }

  .red-navigation .main-nav::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: transparent; }

  .red-navigation:hover .main-nav::-webkit-scrollbar {
    width: 7px;
    height: auto;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px; }

  .red-navigation:hover .main-nav::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.2); } }
/** COLOR 
 ****************/
@media (min-width: 1200px) {
  /* Default Menu */
  /* .red-header.header-default{ */
  /* } */
  /* Ontop Menu */
  /* Sticky Menu */
    div.red-main-navigation > ul > li {
      /* Level 1 hover/actived */
      /* Level 2+ */
      /* widget */ }
      div.red-main-navigation > ul > li.current-menu-ancestor > a, div.red-main-navigation > ul > li > a, div.red-main-navigation > ul > li > .red-menu-toggle {
        color: #333; }
      div.red-main-navigation > ul > li:hover > a, div.red-main-navigation > ul > li:hover > .red-menu-toggle {
        color: #71b61b; }
        div.red-main-navigation > ul > li:hover .menu-attribute, div.red-main-navigation > ul > li:hover .menu-description {
          color: #999; }
      div.red-main-navigation > ul > li:hover > a, div.red-main-navigation > ul > li.current-menu-item > a, div.red-main-navigation > ul > li.current_page_item > a, div.red-main-navigation > ul > li.current-page-ancestor > a, div.red-main-navigation > ul > li.current-menu-ancestor > a, div.red-main-navigation > ul > li.current-menu-parent > a, div.red-main-navigation > ul > li.current-page-parent > a, div.red-main-navigation > ul > li.current_page_ancestor > a {
        border-bottom-color: #71b61b; }
      div.red-main-navigation > ul > li .sub-menu {
        border-top-color: #71b61b; }
      div.red-main-navigation > ul > li .wg-megamenu-title {
        border-bottom-color: #71b61b; }
      div.red-main-navigation > ul li.current-menu-item > a, div.red-main-navigation > ul li.current-menu-ancestor > a, div.red-main-navigation > ul li.current-menu-item > .red-menu-toggle, div.red-main-navigation > ul li.current-menu-ancestor > .red-menu-toggle {
        color: #71b61b; }
        div.red-main-navigation > ul li.current-menu-item .menu-attribute, div.red-main-navigation > ul li.current-menu-ancestor .menu-attribute, div.red-main-navigation > ul li.current-menu-item .menu-description, div.red-main-navigation > ul li.current-menu-ancestor .menu-description {
          color: #333; }
    .red-header.header-ontop div.red-main-navigation > ul > li {
      /* Level 2+ */ }
      .red-header.header-ontop div.red-main-navigation > ul > li.current-menu-ancestor > a, .red-header.header-ontop div.red-main-navigation > ul > li > a, .red-header.header-ontop div.red-main-navigation > ul > li > .red-menu-toggle {
        color: #fff; }
      .red-header.header-ontop div.red-main-navigation > ul > li:hover > a, .red-header.header-ontop div.red-main-navigation > ul > li:hover > .red-menu-toggle {
        color: #71b61b; }
        .red-header.header-ontop div.red-main-navigation > ul > li:hover > a .menu-title {
          border-bottom-color: #71b61b; }
        .red-header.header-ontop div.red-main-navigation > ul > li:hover .menu-attribute, .red-header.header-ontop div.red-main-navigation > ul > li:hover .menu-description {
          color: #999; }
      .red-header.header-ontop div.red-main-navigation > ul > li .sub-menu {
        border-top: 0px solid #71b61b; }
      .red-header.header-ontop div.red-main-navigation > ul li.current-menu-item > a, .red-header.header-ontop div.red-main-navigation > ul li.current-menu-ancestor > a, .red-header.header-ontop div.red-main-navigation > ul li.current-menu-item > .red-menu-toggle, .red-header.header-ontop div.red-main-navigation > ul li.current-menu-ancestor > .red-menu-toggle {
        color: #71b61b; }
        .red-header.header-ontop div.red-main-navigation > ul li.current-menu-item .menu-attribute, .red-header.header-ontop div.red-main-navigation > ul li.current-menu-ancestor .menu-attribute, .red-header.header-ontop div.red-main-navigation > ul li.current-menu-item .menu-description, .red-header.header-ontop div.red-main-navigation > ul li.current-menu-ancestor .menu-description {
          color: #fff; }
    .red-header.header-sticky div.red-main-navigation > ul > li {
      /* Level 2+ */ }
      .red-header.header-sticky div.red-main-navigation > ul > li.current-menu-ancestor > a, .red-header.header-sticky div.red-main-navigation > ul > li > a, .red-header.header-sticky div.red-main-navigation > ul > li > .red-menu-toggle {
        color: #969696;
        line-height: 10px; }
      .red-header.header-sticky div.red-main-navigation > ul > li:hover > a, .red-header.header-sticky div.red-main-navigation > ul > li:hover > .red-menu-toggle {
        color: #71b61b; }
        .red-header.header-sticky div.red-main-navigation > ul > li:hover > a .menu-title {
          border-bottom-color: #71b61b; }
        .red-header.header-sticky div.red-main-navigation > ul > li:hover .menu-attribute, .red-header.header-sticky div.red-main-navigation > ul > li:hover .menu-description {
          color: #999; }
      .red-header.header-sticky div.red-main-navigation > ul > li .sub-menu {
        border-top: 0px solid #71b61b; }
      .red-header.header-sticky div.red-main-navigation > ul li.current-menu-item > a, .red-header.header-sticky div.red-main-navigation > ul li.current-menu-ancestor > a, .red-header.header-sticky div.red-main-navigation > ul li.current-menu-item > .red-menu-toggle, .red-header.header-sticky div.red-main-navigation > ul li.current-menu-ancestor > .red-menu-toggle {
        color: #71b61b; }
        .red-header.header-sticky div.red-main-navigation > ul li.current-menu-item .menu-attribute, .red-header.header-sticky div.red-main-navigation > ul li.current-menu-ancestor .menu-attribute, .red-header.header-sticky div.red-main-navigation > ul li.current-menu-item .menu-description, .red-header.header-sticky div.red-main-navigation > ul li.current-menu-ancestor .menu-description {
          color: #969696; } }
/* Dropdown and Mobile color */
.red-main-navigation.mobile-nav > ul > li > a, .red-main-navigation .sub-menu li > a {
  color: #fff;
  font-size: 13px;
  letter-spacing: -0.02em;
  font-weight: 500;
  padding: 10px 20px; }
  @media (max-width: 1200px) {
    .red-main-navigation.mobile-nav > ul > li > a, .red-main-navigation .sub-menu li > a {
      padding: 10px 0; } }

.red-main-navigation.mobile-nav > ul > li > .red-menu-toggle, .red-main-navigation .sub-menu li > .red-menu-toggle {
  color: #fff; }
  .red-main-navigation.mobile-nav > ul > li > .red-menu-toggle:hover, .red-main-navigation .sub-menu li > .red-menu-toggle:hover {
    color: #71b61b; }

.red-main-navigation.mobile-nav > ul > li:hover > a, .red-main-navigation .sub-menu li:hover > a, .red-main-navigation.mobile-nav > ul > li:hover > .red-menu-toggle, .red-main-navigation .sub-menu li:hover > .red-menu-toggle {
  color: #71b61b; }

.red-main-navigation.mobile-nav > ul > li.current_menu_ancestor > a, .red-main-navigation .sub-menu li.current_menu_ancestor > a, .red-main-navigation.mobile-nav > ul > li.current-menu-item > a, .red-main-navigation .sub-menu li.current-menu-item > a, .red-main-navigation.mobile-nav > ul > li.current_menu_ancestor > .red-menu-toggle, .red-main-navigation .sub-menu li.current_menu_ancestor > .red-menu-toggle, .red-main-navigation.mobile-nav > ul > li.current-menu-item > .red-menu-toggle, .red-main-navigation .sub-menu li.current-menu-item > .red-menu-toggle {
  color: #71b61b; }

.mobile-nav .main-nav.dir-right .red-menu-toggle .fa-angle-right:before {
  content: "\f104"; }
/* Sidebar Menu */
a[data-display=".red-sidebar-menu"].active span:before {
  content: "\f00d";
  color: red; }

.red-sidebar-menu {
  position: fixed;
  display: block;
  top: 0;
  height: 100vh;
  width: 320px;
  z-index: 10;
  background-color: #fff;
  padding: 30px;
  -webkit-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  -khtml-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  -moz-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  -ms-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  -o-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1); }

.red-sidebar-menu.open {
  -webkit-transform: translate3d(0, 0, 0) !important;
  -khtml-transform: translate3d(0, 0, 0) !important;
  -moz-transform: translate3d(0, 0, 0) !important;
  -ms-transform: translate3d(0, 0, 0) !important;
  -o-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important; }

.red-sidebar-menu.on-left {
  left: 0; }

@media (min-width: 992px) {
    .red-sidebar-menu {
      width: 475px;
      padding-left: 100px;
      padding-right: 100px; }
      .red-sidebar-menu .red-mousewheel-inner > aside:first-child {
        padding-top: 100px; } }

.red-sidebar-menu .close-icon {
  position: absolute;
  top: 65px;
  right: 50px;
  cursor: pointer;
  color: red; }

.red-sidebar-menu ul.menu {
  /* First Level */ }
  .red-sidebar-menu ul.menu li a {
    display: inline-block;
    border-bottom: 1px solid transparent; }
  .red-sidebar-menu ul.menu li a:hover {
    color: #999;
    border-bottom-color: #e7e7e7; }
  .red-sidebar-menu ul.menu li.current-menu-ancestor > a, .red-sidebar-menu ul.menu li.current-menu-item > a {
    border-bottom-color: #e7e7e7; }
  .red-sidebar-menu ul.menu li.current-menu-ancestor > ul, .red-sidebar-menu ul.menu li.current-menu-item > ul {
    display: block; }
  .red-sidebar-menu ul.menu li.menu-item-object-custom.menu-item-has-children > ul {
    display: block; }
  .red-sidebar-menu ul.menu > li {
    margin-bottom: 32px; }
  .red-sidebar-menu ul.menu > li:last-child {
    margin-bottom: 0; }
  .red-sidebar-menu ul.menu .sub-menu {
    margin: 30px 0 0;
    padding: 0 0 35px;
    display: none; }
  .red-sidebar-menu ul.menu .sub-menu:last-child {
    padding-bottom: 0; }
  .red-sidebar-menu ul.menu .sub-menu .sub-menu {
    margin-left: 10px;
    margin-top: 10px; }

.admin-bar .red-sidebar-menu {
  top: 32px;
  height: calc(100vh - 32px); }

.ltr .red-sidebar-menu {
  right: 0;
  -webkit-transform: translate3d(320px, 0, 0);
  -khtml-transform: translate3d(320px, 0, 0);
  -moz-transform: translate3d(320px, 0, 0);
  -ms-transform: translate3d(320px, 0, 0);
  -o-transform: translate3d(320px, 0, 0);
  transform: translate3d(320px, 0, 0); }

@media (min-width: 992px) {
    .ltr .red-sidebar-menu {
      -webkit-transform: translate3d(475px, 0, 0);
      -khtml-transform: translate3d(475px, 0, 0);
      -moz-transform: translate3d(475px, 0, 0);
      -ms-transform: translate3d(475px, 0, 0);
      -o-transform: translate3d(475px, 0, 0);
      transform: translate3d(475px, 0, 0); } }

.ltr .red-sidebar-menu.on-left {
  left: 0;
  -webkit-transform: translate3d(-320px, 0, 0);
  -khtml-transform: translate3d(-320px, 0, 0);
  -moz-transform: translate3d(-320px, 0, 0);
  -ms-transform: translate3d(-320px, 0, 0);
  -o-transform: translate3d(-320px, 0, 0);
  transform: translate3d(-320px, 0, 0); }
  @media (min-width: 992px) {
    .ltr .red-sidebar-menu.on-left {
      -webkit-transform: translate3d(-475px, 0, 0);
      -khtml-transform: translate3d(-475px, 0, 0);
      -moz-transform: translate3d(-475px, 0, 0);
      -ms-transform: translate3d(-475px, 0, 0);
      -o-transform: translate3d(-475px, 0, 0);
      transform: translate3d(-475px, 0, 0); } }

.rtl .red-sidebar-menu {
  left: 0;
  -webkit-transform: translate3d(-320px, 0, 0);
  -khtml-transform: translate3d(-320px, 0, 0);
  -moz-transform: translate3d(-320px, 0, 0);
  -ms-transform: translate3d(-320px, 0, 0);
  -o-transform: translate3d(-320px, 0, 0);
  transform: translate3d(-320px, 0, 0); }

@media (min-width: 992px) {
    .rtl .red-sidebar-menu {
      -webkit-transform: translate3d(-475px, 0, 0);
      -khtml-transform: translate3d(-475px, 0, 0);
      -moz-transform: translate3d(-475px, 0, 0);
      -ms-transform: translate3d(-475px, 0, 0);
      -o-transform: translate3d(-475px, 0, 0);
      transform: translate3d(-475px, 0, 0); } }

.rtl .red-sidebar-menu .close-icon {
  left: 50px;
  right: auto; }

.rtl .red-sidebar-menu.on-left {
  right: 0;
  -webkit-transform: translate3d(320px, 0, 0);
  -khtml-transform: translate3d(320px, 0, 0);
  -moz-transform: translate3d(320px, 0, 0);
  -ms-transform: translate3d(320px, 0, 0);
  -o-transform: translate3d(320px, 0, 0);
  transform: translate3d(320px, 0, 0); }
  @media (min-width: 992px) {
    .rtl .red-sidebar-menu.on-left {
      -webkit-transform: translate3d(475px, 0, 0);
      -khtml-transform: translate3d(475px, 0, 0);
      -moz-transform: translate3d(475px, 0, 0);
      -ms-transform: translate3d(475px, 0, 0);
      -o-transform: translate3d(475px, 0, 0);
      transform: translate3d(475px, 0, 0); } }

#red-page {
  -webkit-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  -khtml-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  -moz-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  -ms-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  -o-transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1);
  transition: all 0.5s cubic-bezier(0.685, 0.0473, 0.346, 1); }

.red-sidebar-menu-open #red-page {
  -webkit-transform: translate3d(-320px, 0, 0);
  -khtml-transform: translate3d(-320px, 0, 0);
  -moz-transform: translate3d(-320px, 0, 0);
  -ms-transform: translate3d(-320px, 0, 0);
  -o-transform: translate3d(-320px, 0, 0);
  transform: translate3d(-320px, 0, 0); }
  @media (min-width: 992px) {
    .red-sidebar-menu-open #red-page {
      -webkit-transform: translate3d(-475px, 0, 0);
      -khtml-transform: translate3d(-475px, 0, 0);
      -moz-transform: translate3d(-475px, 0, 0);
      -ms-transform: translate3d(-475px, 0, 0);
      -o-transform: translate3d(-475px, 0, 0);
      transform: translate3d(-475px, 0, 0); } }

.red-sidebar-menu-open.sidebarmenu-on-left #red-page {
  -webkit-transform: translate3d(320px, 0, 0);
  -khtml-transform: translate3d(320px, 0, 0);
  -moz-transform: translate3d(320px, 0, 0);
  -ms-transform: translate3d(320px, 0, 0);
  -o-transform: translate3d(320px, 0, 0);
  transform: translate3d(320px, 0, 0); }
  @media (min-width: 992px) {
      .red-sidebar-menu-open.sidebarmenu-on-left #red-page {
        -webkit-transform: translate3d(475px, 0, 0);
        -khtml-transform: translate3d(475px, 0, 0);
        -moz-transform: translate3d(475px, 0, 0);
        -ms-transform: translate3d(475px, 0, 0);
        -o-transform: translate3d(475px, 0, 0);
        transform: translate3d(475px, 0, 0); } }

.red-sidebar-menu-open.rtl #red-page {
  -webkit-transform: translate3d(320px, 0, 0);
  -khtml-transform: translate3d(320px, 0, 0);
  -moz-transform: translate3d(320px, 0, 0);
  -ms-transform: translate3d(320px, 0, 0);
  -o-transform: translate3d(320px, 0, 0);
  transform: translate3d(320px, 0, 0); }
  @media (min-width: 992px) {
      .red-sidebar-menu-open.rtl #red-page {
        -webkit-transform: translate3d(475px, 0, 0);
        -khtml-transform: translate3d(475px, 0, 0);
        -moz-transform: translate3d(475px, 0, 0);
        -ms-transform: translate3d(475px, 0, 0);
        -o-transform: translate3d(475px, 0, 0);
        transform: translate3d(475px, 0, 0); } }
  .red-sidebar-menu-open.rtl.sidebarmenu-on-left #red-page {
    -webkit-transform: translate3d(-320px, 0, 0);
    -khtml-transform: translate3d(-320px, 0, 0);
    -moz-transform: translate3d(-320px, 0, 0);
    -ms-transform: translate3d(-320px, 0, 0);
    -o-transform: translate3d(-320px, 0, 0);
    transform: translate3d(-320px, 0, 0); }
  @media (min-width: 992px) {
        .red-sidebar-menu-open.rtl.sidebarmenu-on-left #red-page {
          -webkit-transform: translate3d(-475px, 0, 0);
          -khtml-transform: translate3d(-475px, 0, 0);
          -moz-transform: translate3d(-475px, 0, 0);
          -ms-transform: translate3d(-475px, 0, 0);
          -o-transform: translate3d(-475px, 0, 0);
          transform: translate3d(-475px, 0, 0); } }

.red-page-title-wrapper {
  position: relative;
  background-image: url('../images/page-title-bg-none.jpg');
  background-repeat: no-repeat;
  background-position: center center;
  padding: 142px 0 100px 0;
  margin: 0 0 120px 0; }

@media (max-width: 1199px) {
    .red-page-title-wrapper {
      background-attachment: scroll !important;
      margin: 0 0 75px 0;
      padding: 120px 0 80px 0; } }

@media (max-width: 575px) {
    .red-page-title-wrapper {
      padding: 70px 0 70px 0; } }

.red-page-title-wrapper:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  z-index: 0;
  background-color: rgba(253, 253, 253, 0.8); }

.red-page-title-wrapper.layout1 .red-breadcrumb {
  margin-top: 5px; }

.red-page-title-wrapper.layout2 .red-breadcrumb {
  margin-bottom: 20px; }

@media (max-width: 1199px) {
        .red-page-title-wrapper.layout3 .red-breadcrumb {
          margin-top: 20px; } }
  .red-page-title-wrapper.layout3 .red-breadcrumb .red-breadcrumb-inner {
    margin: 0 -8px; }
  .red-page-title-wrapper.layout3 .red-breadcrumb .red-breadcrumb-inner > span {
    padding: 0 8px; }

@media (max-width: 1199px) {
        .red-page-title-wrapper.layout4 .red-breadcrumb {
          margin-bottom: 20px; } }
  .red-page-title-wrapper.layout4 .red-breadcrumb .red-breadcrumb-inner {
    margin: 0 -8px; }
  .red-page-title-wrapper.layout4 .red-breadcrumb .red-breadcrumb-inner > span {
    padding: 0 8px; }

.red-page-title .red-page-title-text {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  color: #333;
  font-size: 45px;
  line-height: 1.1;
  margin: 0;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  font-weight: 700; }
  @media (max-width: 991px) {
    .red-page-title .red-page-title-text {
      font-size: 30px; } }
  @media (max-width: 576px) {
    .red-page-title .red-page-title-text {
      font-size: 24px; } }

.red-page-title .sub-title {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  color: #333;
  font-size: 24.55px;
  font-weight: 300;
  letter-spacing: 0.03em;
  display: block;
  margin-top: 9px;
  line-height: 1.2; }
  @media (max-width: 576px) {
    .red-page-title .sub-title {
      font-size: 20px; } }

.red-breadcrumb {
  color: #262626;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 22px;
  font-size: 18px;
  font-style: italic; }

@media (max-width: 1199px) {
    .red-breadcrumb {
      font-size: 20px; } }

@media (max-width: 576px) {
    .red-breadcrumb {
      font-size: 18px; } }

.red-breadcrumb a {
  color: #262626; }
  .red-breadcrumb a:hover {
    color: #71b61b; }

.red-breadcrumb .esep {
  font-size: 14px;
  margin: 0 5px 0 4px; }

.red-footer {
  margin-top: 100px; }

.red-footer.has-client-top {
  margin-top: 0; }

.red-footer-top .wg-title {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.05em;
  margin-bottom: 28px;
  line-height: 1.7333333333; }

.red-footer-top ul {
  margin-left: 0; }

.red-footer-top .footer-logo img {
  width: 100%; }

.red-footer-top .footer-contact-info {
  padding: 0;
  list-style: none; }
  .red-footer-top .footer-contact-info li {
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.02em;
    margin-bottom: 17px;
    line-height: 20px;
    position: relative; }
  .red-footer-top .footer-contact-info li i {
    color: #d93;
    margin-right: 10px;
    font-size: 20px;
    min-width: 20px; }
  @media screen and (min-width: 768px) {
      .red-footer-top .footer-contact-info li {
        padding-left: 33px; }
        .red-footer-top .footer-contact-info li i {
          position: absolute;
          top: 3px;
          left: 0; } }
  .red-footer-top .footer-contact-info li a {
    color: inherit; }
  .red-footer-top .footer-contact-info li a:hover {
    color: #71b61b; }

.red-footer-top .widget_nav_menu ul {
  padding-left: 0;
  list-style: none; }
  .red-footer-top .widget_nav_menu ul li {
    display: inline-block;
    position: relative;
    padding: 0 16px; }
  .red-footer-top .widget_nav_menu ul li + li:before {
    content: "";
    position: absolute;
    left: -1px;
    top: 50%;
    margin-top: -5px;
    background-color: #bdbdbd;
    width: 1px;
    height: 11px; }
  .red-footer-top .widget_nav_menu ul li:first-child {
    padding-left: 0; }
  .red-footer-top .widget_nav_menu ul li:last-child {
    padding-right: 0; }
  .red-footer-top .widget_nav_menu ul li a {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: 0.01em;
    font-size: 14px;
    color: #bdbdbd; }
  .red-footer-top .widget_nav_menu ul li a:hover {
    color: #71b61b; }
  @media screen and (max-width: 480px) {
        .red-footer-top .widget_nav_menu ul li {
          padding: 0 5px; }
          .red-footer-top .widget_nav_menu ul li + li:before {
            content: none; } }

.red-footer-top .red-social a {
  margin: 0 3px 0 0;
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff; }

.red-footer-top .red-recent-post .entry-title {
  line-height: 20px; }

.red-footer-top .btn, .red-footer-top .btn-default, .red-footer-top button, .red-footer-top .button, .red-footer-top input[type="button"], .red-footer-top input[type="submit"] {
  padding: 10px 30px;
  margin-top: 30px;
  font-size: 11px;
  letter-spacing: -0.02em;
  line-height: 25px; }

.red-footer-top .red-recent-post.style0 .entry-title {
  font-weight: 400; }

.red-footer-top.layout1 .red-footer-top-wrap {
  background-color: #111;
  padding-top: 120px;
  padding-bottom: 13px; }
  @media screen and (max-width: 767px) {
      .red-footer-top.layout1 .red-footer-top-wrap {
        padding-top: 80px; } }
  @media screen and (min-width: 768px) {
    .red-footer-top.layout1 .widget {
      margin-bottom: 16px; }
      .red-footer-top.layout1 .widget:last-child {
        margin-bottom: 5px; } }
  .red-footer-top.layout1 .wg-title {
    color: #fff; }
  .red-footer-top.layout1 .footer-logo {
    display: inline-block;
    margin-bottom: 52px; }
  .red-footer-top.layout1 p {
    font-size: 15px;
    color: #fff;
    line-height: 28px;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin: 0; }
  .red-footer-top.layout1 ul {
    margin: 0; }
  .red-footer-top.layout1 .column-1 {
    padding-top: 7px; }
  @media screen and (min-width: 768px) {
      .red-footer-top.layout1 .column-1 {
        text-align: right; }
        .red-footer-top.layout1 .column-1 .widget:first-child {
          margin-bottom: 46px; } }
  @media screen and (min-width: 992px) {
      .red-footer-top.layout1 .column-1 {
        padding-right: 50px; } }
  .red-footer-top.layout1 .column-2 {
    padding-top: 7px; }
  @media screen and (min-width: 992px) {
      .red-footer-top.layout1 .column-2 {
        padding-left: 50px; } }
  @media screen and (min-width: 768px) {
      .red-footer-top.layout1 .column-2:before {
        content: "";
        background-color: #303030;
        width: 1px;
        height: 100%;
        position: absolute;
        left: -1px;
        top: 0;
        bottom: 0; } }
  .red-footer-top.layout1 .footer-contact-info li {
    margin-bottom: 17px; }
  .red-footer-top.layout1 .footer-contact-info li:last-child {
    margin-bottom: 0; }
  .red-footer-top.layout1 .red-social {
    margin-top: 13px; }
  @media screen and (max-width: 767px) {
    .red-footer-top.layout1 .widget {
      margin-bottom: 30px;
      text-align: center; } }
  .red-footer-top.layout1 .red-recent-post .entry-title {
    color: #dcdcdc; }
  .red-footer-top.layout1 .red-recent-post .entry-meta li a:hover {
    color: #dcdcdc;
    border-bottom-color: #dcdcdc; }

.red-footer-top.layout2 {
  color: #dcdcdc; }
  .red-footer-top.layout2 .red-footer-top-wrap {
    background-color: #111;
    padding-top: 130px;
    padding-bottom: 90px; }
  @media screen and (max-width: 1199px) {
      .red-footer-top.layout2 .red-footer-top-wrap {
        padding-top: 80px;
        padding-bottom: 50px; } }
  .red-footer-top.layout2 .footer-top-wg {
    margin-bottom: 28px; }
  .red-footer-top.layout2 .wg-title {
    color: #fff; }
  .red-footer-top.layout2 .footer-logo {
    display: block;
    margin-top: -15px;
    margin-bottom: 28px;
    padding-right: 70px; }
  @media (min-width: 992px) and (max-width: 1199px) {
      .red-footer-top.layout2 .footer-logo {
        padding-right: 40px; } }
  .red-footer-top.layout2 p {
    font-size: 15px;
    line-height: 24px;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin: 0; }
  .red-footer-top.layout2 .red-recent-post .entry-title {
    color: #dcdcdc; }
  .red-footer-top.layout2 .red-recent-post .entry-meta li a:hover {
    color: #dcdcdc;
    border-bottom-color: #dcdcdc; }

.red-footer-top.layout3 .red-footer-top-wrap {
  background-color: #fcfcfc;
  padding-top: 30px;
  padding-bottom: 90px; }
  @media screen and (max-width: 991px) {
      .red-footer-top.layout3 .red-footer-top-wrap {
        padding-bottom: 60px; } }
  .red-footer-top.layout3 .footer-top-wg {
    margin-bottom: 24px; }
  .red-footer-top.layout3 .footer-contact-info li {
    color: #666; }
  .red-footer-top.layout3 .footer-contact-info li a {
    color: inherit; }
  .red-footer-top.layout3 .footer-contact-info li a:hover {
    color: #71b61b; }
  .red-footer-top.layout3 .red-social a {
    background-color: rgba(0, 0, 0, 0.05);
    color: #555; }
  .red-footer-top.layout3 .footer-logo {
    display: block;
    margin-bottom: 10px;
    padding-right: 70px; }
  @media (min-width: 992px) and (max-width: 1199px) {
      .red-footer-top.layout3 .footer-logo {
        padding-right: 40px; } }

.red-footer-bottom {
  font-size: 14px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  letter-spacing: -0.03em; }

.red-footer-bottom .wg-title {
  display: none; }

.red-footer-bottom a {
  color: #71b61b; }
  .red-footer-bottom a:hover {
    color: #fff; }

.red-footer-bottom ul {
  padding-left: 0;
  list-style: none; }
  .red-footer-bottom ul li {
    display: inline-block;
    position: relative;
    padding: 0 16px; }
  .red-footer-bottom ul li + li:before {
    content: "";
    position: absolute;
    left: -1px;
    top: 50%;
    margin-top: -5px;
    background-color: #bdbdbd;
    width: 1px;
    height: 11px; }
  .red-footer-bottom ul li:first-child {
    padding-left: 0; }
  .red-footer-bottom ul li:last-child {
    padding-right: 0; }
  .red-footer-bottom ul li a {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: 0.01em;
    font-size: 14px;
    color: #bdbdbd; }
  .red-footer-bottom ul li a:hover {
    color: #71b61b; }

.red-footer-bottom.layout1 {
  color: #fff; }
  .red-footer-bottom.layout1 .red-footer-bottom-wrap {
    background-color: #111;
    padding-top: 38px;
    padding-bottom: 113px; }
  @media screen and (max-width: 767px) {
      .red-footer-bottom.layout1 .red-footer-bottom-wrap {
        padding-bottom: 80px; } }

.red-footer-bottom.layout2 {
  color: #fff; }
  .red-footer-bottom.layout2 .red-footer-bottom-wrap {
    background-color: #000;
    padding-top: 38px;
    padding-bottom: 38px; }

.red-footer-bottom.layout3 {
  color: #333; }
  .red-footer-bottom.layout3 a {
    color: #71b61b; }
  .red-footer-bottom.layout3 a:hover {
    color: #333; }
  .red-footer-bottom.layout3 .red-footer-bottom-wrap {
    background-color: #fff;
    padding-top: 38px;
    padding-bottom: 38px; }
  .red-footer-bottom.layout3 ul li + li:before {
    background-color: #888; }
  .red-footer-bottom.layout3 ul li a {
    color: #888; }
  .red-footer-bottom.layout3 ul li a:hover {
    color: #71b61b; }

.red-client-logo {
  margin-top: 100px; }

@media (max-width: 1199px) {
    .red-client-logo {
      margin-top: 75px; } }

.red-client-logo .red-carousel-item img {
  width: auto !important;
  vertical-align: middle; }

.red-client-logo.layout1 {
  position: relative; }
  @media screen and (min-width: 768px) {
    .red-client-logo.layout1 {
      margin-bottom: -110px; } }
  @media screen and (max-width: 767px) {
    .red-client-logo.layout1 {
      background-color: #71b61b; } }
  @media screen and (max-width: 991px) {
    .red-client-logo.layout1 .container {
      max-width: 100%; } }
  .red-client-logo.layout1 .client-logo-outer {
    padding-top: 54px;
    padding-bottom: 54px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 3px; }
  @media screen and (min-width: 768px) {
      .red-client-logo.layout1 .client-logo-outer {
        background-color: #71b61b; } }
  @media screen and (min-width: 1366px) {
      .red-client-logo.layout1 .client-logo-outer {
        padding-left: 100px;
        padding-right: 100px; } }
  @media screen and (max-width: 767px) {
      .red-client-logo.layout1 .client-logo-outer {
        padding-top: 30px;
        padding-bottom: 30px; } }

.red-client-logo.layout2 {
  position: relative;
  background-color: #71b61b; }
  @media screen and (max-width: 991px) {
    .red-client-logo.layout2 .container {
      max-width: 100%; } }
  .red-client-logo.layout2 .client-logo-outer {
    padding-top: 54px;
    padding-bottom: 54px;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 3px; }
  @media screen and (min-width: 1366px) {
      .red-client-logo.layout2 .client-logo-outer {
        padding-left: 100px;
        padding-right: 100px; } }
  @media screen and (max-width: 767px) {
      .red-client-logo.layout2 .client-logo-outer {
        padding-top: 30px;
        padding-bottom: 30px; } }

.red-client-logo.layout3 {
  position: relative;
  background-color: #fcfcfc; }
  @media screen and (max-width: 991px) {
    .red-client-logo.layout3 .container {
      max-width: 100%; } }
  .red-client-logo.layout3 .client-logo-outer {
    padding-top: 28px;
    padding-bottom: 28px;
    padding-left: 15px;
    padding-right: 15px; }
  @media screen and (min-width: 1366px) {
      .red-client-logo.layout3 .client-logo-outer {
        padding-left: 70px;
        padding-right: 70px; } }

@media screen and (min-width: 992px) {
    .red-client-logo.layout1 + .red-footer .red-footer-top.layout1 .red-footer-top-wrap {
      padding-top: 230px; }
    .red-client-logo.layout1 + .red-footer .red-footer-top.layout2 .red-footer-top-wrap {
      padding-top: 240px; }
    .red-client-logo.layout1 + .red-footer .red-footer-top.layout3 .red-footer-top-wrap {
      padding-top: 140px; } }

@media (min-width: 768px) and (max-width: 991px) {
    .red-client-logo.layout1 + .red-footer .red-footer-top.layout1 .red-footer-top-wrap {
      padding-top: 180px; }
    .red-client-logo.layout1 + .red-footer .red-footer-top.layout2 .red-footer-top-wrap {
      padding-top: 190px; }
    .red-client-logo.layout1 + .red-footer .red-footer-top.layout3 .red-footer-top-wrap {
      padding-top: 90px; } }

.wg-title, .wgtitle {
  margin: 0 0 25px 0; }
/* All widget  */
.widget_archive .screen-reader-text, .widget_categories .screen-reader-text, .widget_pages .screen-reader-text, .widget_meta .screen-reader-text, .widget_recent_comments .screen-reader-text, .widget_recent_entries .screen-reader-text, .widget_rss .screen-reader-text, .widget_nav_menu .screen-reader-text, .widget_layered_nav .screen-reader-text, .widget_product_categories .screen-reader-text {
  display: none; }

.widget_archive ul, .widget_categories ul, .widget_pages ul, .widget_meta ul, .widget_recent_comments ul, .widget_recent_entries ul, .widget_rss ul, .widget_nav_menu ul, .widget_layered_nav ul, .widget_product_categories ul {
  list-style: none;
  padding: 0;
  margin: 0; }
  .widget_archive ul ul, .widget_categories ul ul, .widget_pages ul ul, .widget_meta ul ul, .widget_recent_comments ul ul, .widget_recent_entries ul ul, .widget_rss ul ul, .widget_nav_menu ul ul, .widget_layered_nav ul ul, .widget_product_categories ul ul {
    padding: 0 0 0 10px; }

.rtl .widget_archive ul ul, .rtl .widget_categories ul ul, .rtl .widget_pages ul ul, .rtl .widget_meta ul ul, .rtl .widget_recent_comments ul ul, .rtl .widget_recent_entries ul ul, .rtl .widget_rss ul ul, .rtl .widget_nav_menu ul ul, .rtl .widget_layered_nav ul ul, .rtl .widget_product_categories ul ul {
  padding: 0 10px 0 0; }
  .widget_pages a, .widget_meta a, .widget_recent_entries a, .widget_nav_menu a {
    display: block; }
/* Recent Comments */
.widget_recent_comments a:before {
  display: none; }

/* Recent Post */

.widget_recent_entries .post-date {
  display: block; }
/* Donation */
#sidebar-area .givingwalk-donation-wg .donation-wg-wrap {
  background-color: rgba(221, 153, 51, 0.8);
  color: #fff;
  padding: 46px 40px 50px 40px;
  border-radius: 2px; }
  #sidebar-area .givingwalk-donation-wg .post-title {
    margin: 0 0 17px 0;
    color: #fff;
    text-transform: capitalize;
    letter-spacing: -0.03em;
    font-weight: 600; }
  #sidebar-area .givingwalk-donation-wg p {
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: -0.02em;
    margin-bottom: 15px; }
  #sidebar-area .givingwalk-donation-wg .amount-lbl {
    font-size: 16px;
    letter-spacing: 0.02em; }
  #sidebar-area .givingwalk-donation-wg .amount {
    margin: 0;
    line-height: 1.1;
    font-size: 30px;
    color: #fff;
    font-weight: 700;
    letter-spacing: -0.04em; }
  #sidebar-area .givingwalk-donation-wg .btn {
    margin-top: 29px; }
  #sidebar-area .givingwalk-donation-wg .btn:hover {
    background-color: #fff;
    color: #d93; }

.widget_categories ul li a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
  background-color: #fbfbfb;
  border-bottom: 2px solid #fff;
  display: block;
  padding: 6px 35px; }
  .widget_categories ul li a .count {
    float: right; }

.widget_cms_video_carousel .video-wrap {
  position: relative; }
  .widget_cms_video_carousel .video-wrap:after {
    content: "";
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background-color: rgba(0, 0, 0, 0.85);
    -webkit-transition: all 0.3s linear 0s;
    -khtml-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s; }
  .widget_cms_video_carousel .video-wrap .video-inner {
    padding: 20px;
    top: 50%;
    left: 0;
    right: 0;
    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%);
    text-align: center;
    z-index: 1; }
  .widget_cms_video_carousel .video-wrap a {
    font-size: 32px;
    color: #d93; }
  .widget_cms_video_carousel .video-wrap a:hover {
    color: #fff; }
  .widget_cms_video_carousel .video-wrap p {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 14px;
    line-height: 19px;
    letter-spacing: -0.05em;
    color: #fff;
    font-weight: 600;
    margin-top: 5px;
    margin-bottom: 0; }
  .widget_cms_video_carousel .video-wrap:hover:after {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0; }
/* Red Recent Post */
.red-recent-post.style0 .wg-title {
  margin-bottom: 25px; }
  .red-recent-post.style0 .red-recent-item {
    margin-bottom: 20px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .red-recent-post.style0 .red-recent-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none; }
  .red-recent-post.style0 .entry-title {
    text-transform: capitalize;
    line-height: 21px;
    margin: 0;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: -0.03em;
    font-weight: 600; }
  .red-recent-post.style0 .entry-title a {
    color: inherit; }
  .red-recent-post.style0 .entry-title a:hover {
    color: #71b61b; }
  .red-recent-post.style0 .entry-media {
    max-width: 75px;
    margin-bottom: 0; }
  .red-recent-post.style0 .entry-media.space-right {
    padding-right: 15px; }
  .red-recent-post.style0 .entry-media.space-left {
    padding-left: 15px; }
  .red-recent-post.style0 .entry-media + .item-content {
    width: calc(100% - 75px);
    margin-left: 0;
    margin-right: 0; }
  .red-recent-post.style0 .entry-media img {
    width: 100%;
    border-radius: 50%; }
  .red-recent-post.style0 .archive-summary {
    margin-bottom: 10px;
    padding-bottom: 10px; }
  .red-recent-post.style0 .entry-meta {
    margin-left: 0;
    margin-bottom: 0; }
  .red-recent-post.style0 .entry-meta li {
    padding: 0; }
  .red-recent-post.style0 .entry-meta li a {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 12px;
    color: #71b61b;
    letter-spacing: -0.02em; }
  .red-recent-post.style0 .entry-meta li a:hover {
    color: #333; }
  .red-recent-post.style0 .entry-meta li i {
    margin-right: 3px;
    font-size: 14px; }
  .red-recent-post.style0 + .view-all {
    margin-top: 30px; }

.red-recent-post.style1 .red-recent-item {
  position: relative;
  margin-bottom: 10px; }
  .red-recent-post.style1 .red-recent-item:last-child {
    margin-bottom: 0; }
  .red-recent-post.style1 .entry-media {
    margin-bottom: 0; }
  .red-recent-post.style1 .entry-media:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); }
  .red-recent-post.style1 .entry-media img {
    width: 100%; }
  .red-recent-post.style1 .item-content {
    top: 50%;
    left: 0;
    right: 0;
    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%);
    padding: 0 30px; }
  .red-recent-post.style1 .item-content .entry-title {
    margin: 0; }
  .red-recent-post.style1 .entry-meta {
    margin-bottom: 2px; }
  .red-recent-post.style1 .entry-meta li a {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 13px;
    color: #71b61b;
    letter-spacing: -0.02em; }
  .red-recent-post.style1 .entry-meta li a:hover {
    color: #fff;
    border-bottom-color: #fff; }
  .red-recent-post.style1 .entry-meta li i {
    margin-right: 3px;
    color: #fff; }
  .red-recent-post.style1 .entry-title {
    text-transform: capitalize;
    line-height: 21px;
    margin: 0;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: -0.01em;
    font-weight: 600;
    color: #fff; }
  .red-recent-post.style1 .entry-title a {
    color: inherit; }
  .red-recent-post.style1 .entry-title a:hover {
    color: rgba(255, 255, 255, 0.7); }
  .red-recent-post.style1 .archive-summary {
    margin-bottom: 10px;
    padding-bottom: 10px; }
  .red-recent-post.style1 + .view-all {
    margin-top: 30px; }

.red-instagram .row.gutter-10 {
  margin: -5px; }
  .red-instagram .row.gutter-10 > div {
    padding: 5px; }

.red-instagram .row.gutter-15 {
  margin: -7.5px; }
  .red-instagram .row.gutter-15 > div {
    padding: 7.5px; }

.red-instagram a img {
  border-radius: 3px; }

.red-instagram .overlay-wrap .overlay {
  top: 15px;
  left: 15px;
  right: 15px;
  bottom: 15px;
  padding: 5px; }
  .red-instagram .overlay-wrap .overlay a:hover {
    color: #333; }
/* Red Search */
.red-searchform {
  position: relative; }

.red-searchform input.s {
  width: 100%;
  padding: 13px 60px 13px 30px;
  border-radius: 55px;
  border: 1px solid #fafafa;
  background-color: #fafafa; }

.red-searchform button {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  border: none;
  width: 60px;
  height: 100%;
  line-height: 100%;
  background: none;
  padding: 0;
  text-align: center;
  font-size: 20px;
  color: #d93;
  -webkit-border-radius: 0;
  -khtml-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  border-radius: 0; }
  .red-searchform button:before {
    display: none; }

.rtl .red-searchform input {
  padding-left: 60px;
  padding-right: 30px; }

.rtl .red-searchform button {
  right: auto;
  left: 0; }
/* Calendar */
.widget_calendar .calendar_wrap {
  text-align: center; }

.widget_calendar #today {
  background: #d93;
  color: #fff; }
  .widget_calendar #today a {
    display: block;
    color: #fff; }
  .widget_calendar #today a:hover {
    color: #fff; }

.widget_calendar th {
  text-align: center; }
/* RSS */
.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: #ababab; }

.widget_rss cite {
  color: #d93; }
/* tags cloud */
.tagcloud {
  margin-left: -5px; }

.tagcloud > a {
  border: 1px solid #e7e7e7;
  padding: 5px 10px;
  display: inline-block;
  line-height: 1;
  margin: 5px;
  border-radius: 3px; }
  .tagcloud > a:hover {
    border-color: #71b61b; }

.rtl .tagcloud {
  margin-right: -5px;
  margin-left: 0; }

.rtl .tagcloud > a {
  margin-left: 0;
  margin-right: 5px; }
/* red Social */
.red-social {
  /* Shap */
  /* Size */ }

.red-social:empty {
  display: none; }

.red-social a {
  margin: 5px;
  padding: 0;
  color: #222;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  display: inline-block; }
  .red-social a:hover {
    color: #fff; }
  .red-social a:hover.facebook, .red-social a:hover[class*="facebook"], .red-social a:hover[href*="facebook"] {
    background-color: #4990e2;
    color: #fff; }
  .red-social a:hover.google, .red-social a:hover[class*="google"], .red-social a:hover[href*="google"] {
    background-color: #ff4c4c;
    color: #fff; }
  .red-social a:hover.twitter, .red-social a:hover[class*="twitter"], .red-social a:hover[href*="twitter"] {
    background-color: #2cc7f0;
    color: #fff; }
  .red-social a:hover.youtube, .red-social a:hover[class*="youtube"], .red-social a:hover[href*="youtube"] {
    background-color: #e9152f;
    color: #fff; }
  .red-social a:hover.rss, .red-social a:hover[class*="rss"], .red-social a:hover[href*="rss"] {
    background-color: #faa33d;
    color: #fff; }
  .red-social a:hover.skype, .red-social a:hover[class*="skype"], .red-social a:hover[href*="skype"] {
    background-color: #41bbe9;
    color: #fff; }
  .red-social a:hover.yahoo, .red-social a:hover[class*="yahoo"], .red-social a:hover[href*="yahoo"] {
    background-color: #ab47ac;
    color: #fff; }
  .red-social a:hover.dribbble, .red-social a:hover[class*="dribbble"], .red-social a:hover[href*="dribbble"] {
    background-color: #ff70b7;
    color: #fff; }
  .red-social a:hover.flickr, .red-social a:hover[class*="flickr"], .red-social a:hover[href*="flickr"] {
    background-color: #ff48a3;
    color: #fff; }
  .red-social a:hover.linkedin, .red-social a:hover[class*="linkedin"], .red-social a:hover[href*="linkedin"] {
    background-color: #4c94db;
    color: #fff; }
  .red-social a:hover.vimeo, .red-social a:hover[class*="vimeo"], .red-social a:hover[href*="vimeo"] {
    background-color: #35c6ea;
    color: #fff; }
  .red-social a:hover.pinterest, .red-social a:hover[class*="pinterest"], .red-social a:hover[href*="pinterest"] {
    background-color: #e13138;
    color: #fff; }
  .red-social a:hover.github, .red-social a:hover[class*="github"], .red-social a:hover[href*="github"] {
    background-color: #3f91cb;
    color: #fff; }
  .red-social a:hover.instagram, .red-social a:hover[class*="instagram"], .red-social a:hover[href*="instagram"] {
    background-color: #db944c;
    color: #fff; }
  .red-social a:hover.tumblr, .red-social a:hover[class*="tumblr"], .red-social a:hover[href*="tumblr"] {
    background-color: #426d9b;
    color: #fff; }
  .red-social a:hover.behance, .red-social a:hover[class*="behance"], .red-social a:hover[href*="behance"] {
    background-color: #1879fd;
    color: #fff; }
  .red-social a:hover.stumbleupon_colo, .red-social a:hover[class*="stumbleupon_colo"], .red-social a:hover[href*="stumbleupon_colo"] {
    background-color: #ff5c30;
    color: #fff; }
  .red-social a:hover.dropbox, .red-social a:hover[class*="dropbox"], .red-social a:hover[href*="dropbox"] {
    background-color: #17a3eb;
    color: #fff; }
  .red-social a:hover.soundcloud, .red-social a:hover[class*="soundcloud"], .red-social a:hover[href*="soundcloud"] {
    background-color: #ff7e30;
    color: #fff; }
  .red-social a:hover.lastfm, .red-social a:hover[class*="lastfm"], .red-social a:hover[href*="lastfm"] {
    background-color: #f34320;
    color: #fff; }
  .red-social a:hover.deviantart, .red-social a:hover[class*="deviantart"], .red-social a:hover[href*="deviantart"] {
    background-color: #6a8a7b;
    color: #fff; }
  .red-social a:hover.digg, .red-social a:hover[class*="digg"], .red-social a:hover[href*="digg"] {
    background-color: #75788d;
    color: #fff; }
  .red-social a:hover.xing, .red-social a:hover[class*="xing"], .red-social a:hover[href*="xing"] {
    background-color: #1a8e8c;
    color: #fff; }
  .red-social a:hover.share, .red-social a:hover[class*="share"], .red-social a:hover[href*="share"] {
    background-color: #25a774;
    color: #fff; }
  .red-social a:hover.wordpress, .red-social a:hover[class*="wordpress"], .red-social a:hover[href*="wordpress"] {
    background-color: #2592c3;
    color: #fff; }
  .red-social a:hover.delicious, .red-social a:hover[class*="delicious"], .red-social a:hover[href*="delicious"] {
    background-color: #ff9233;
    color: #fff; }
  .red-social a:hover.reddit, .red-social a:hover[class*="reddit"], .red-social a:hover[href*="reddit"] {
    background-color: #377bda;
    color: #fff; }
  .red-social a:hover.apple, .red-social a:hover[class*="apple"], .red-social a:hover[href*="apple"] {
    background-color: #b3b5b8;
    color: #fff; }
  .red-social a:hover.vk, .red-social a:hover[class*="vk"], .red-social a:hover[href*="vk"] {
    background-color: #4778ac;
    color: #fff; }

.red-social.text-colored a {
  font-size: 30px; }
  .red-social.text-colored a.facebook, .red-social.text-colored a[class*="facebook"], .red-social.text-colored a[href*="facebook"] {
    color: #4990e2; }
  .red-social.text-colored a.google, .red-social.text-colored a[class*="google"], .red-social.text-colored a[href*="google"] {
    color: #ff4c4c; }
  .red-social.text-colored a.twitter, .red-social.text-colored a[class*="twitter"], .red-social.text-colored a[href*="twitter"] {
    color: #2cc7f0; }
  .red-social.text-colored a.youtube, .red-social.text-colored a[class*="youtube"], .red-social.text-colored a[href*="youtube"] {
    color: #e9152f; }
  .red-social.text-colored a.rss, .red-social.text-colored a[class*="rss"], .red-social.text-colored a[href*="rss"] {
    color: #faa33d; }
  .red-social.text-colored a.skype, .red-social.text-colored a[class*="skype"], .red-social.text-colored a[href*="skype"] {
    color: #41bbe9; }
  .red-social.text-colored a.yahoo, .red-social.text-colored a[class*="yahoo"], .red-social.text-colored a[href*="yahoo"] {
    color: #ab47ac; }
  .red-social.text-colored a.dribbble, .red-social.text-colored a[class*="dribbble"], .red-social.text-colored a[href*="dribbble"] {
    color: #ff70b7; }
  .red-social.text-colored a.flickr, .red-social.text-colored a[class*="flickr"], .red-social.text-colored a[href*="flickr"] {
    color: #ff48a3; }
  .red-social.text-colored a.linkedin, .red-social.text-colored a[class*="linkedin"], .red-social.text-colored a[href*="linkedin"] {
    color: #4c94db; }
  .red-social.text-colored a.vimeo, .red-social.text-colored a[class*="vimeo"], .red-social.text-colored a[href*="vimeo"] {
    color: #35c6ea; }
  .red-social.text-colored a.pinterest, .red-social.text-colored a[class*="pinterest"], .red-social.text-colored a[href*="pinterest"] {
    color: #e13138; }
  .red-social.text-colored a.github, .red-social.text-colored a[class*="github"], .red-social.text-colored a[href*="github"] {
    color: #3f91cb; }
  .red-social.text-colored a.instagram, .red-social.text-colored a[class*="instagram"], .red-social.text-colored a[href*="instagram"] {
    color: #db944c; }
  .red-social.text-colored a.tumblr, .red-social.text-colored a[class*="tumblr"], .red-social.text-colored a[href*="tumblr"] {
    color: #426d9b; }
  .red-social.text-colored a.behance, .red-social.text-colored a[class*="behance"], .red-social.text-colored a[href*="behance"] {
    color: #1879fd; }
  .red-social.text-colored a.stumbleupon_colo, .red-social.text-colored a[class*="stumbleupon_colo"], .red-social.text-colored a[href*="stumbleupon_colo"] {
    color: #ff5c30; }
  .red-social.text-colored a.dropbox, .red-social.text-colored a[class*="dropbox"], .red-social.text-colored a[href*="dropbox"] {
    color: #17a3eb; }
  .red-social.text-colored a.soundcloud, .red-social.text-colored a[class*="soundcloud"], .red-social.text-colored a[href*="soundcloud"] {
    color: #ff7e30; }
  .red-social.text-colored a.lastfm, .red-social.text-colored a[class*="lastfm"], .red-social.text-colored a[href*="lastfm"] {
    color: #f34320; }
  .red-social.text-colored a.deviantart, .red-social.text-colored a[class*="deviantart"], .red-social.text-colored a[href*="deviantart"] {
    color: #6a8a7b; }
  .red-social.text-colored a.digg, .red-social.text-colored a[class*="digg"], .red-social.text-colored a[href*="digg"] {
    color: #75788d; }
  .red-social.text-colored a.xing, .red-social.text-colored a[class*="xing"], .red-social.text-colored a[href*="xing"] {
    color: #1a8e8c; }
  .red-social.text-colored a.share, .red-social.text-colored a[class*="share"], .red-social.text-colored a[href*="share"] {
    color: #25a774; }
  .red-social.text-colored a.wordpress, .red-social.text-colored a[class*="wordpress"], .red-social.text-colored a[href*="wordpress"] {
    color: #2592c3; }
  .red-social.text-colored a.delicious, .red-social.text-colored a[class*="delicious"], .red-social.text-colored a[href*="delicious"] {
    color: #ff9233; }
  .red-social.text-colored a.reddit, .red-social.text-colored a[class*="reddit"], .red-social.text-colored a[href*="reddit"] {
    color: #377bda; }
  .red-social.text-colored a.apple, .red-social.text-colored a[class*="apple"], .red-social.text-colored a[href*="apple"] {
    color: #b3b5b8; }
  .red-social.text-colored a.vk, .red-social.text-colored a[class*="vk"], .red-social.text-colored a[href*="vk"] {
    color: #4778ac; }
  .red-social.text-colored a:hover {
    color: #fff; }

.red-social.bg-colored a {
  display: inline-block; }
  .red-social.bg-colored a.facebook, .red-social.bg-colored a[class*="facebook"], .red-social.bg-colored a[href*="facebook"] {
    background-color: #4990e2;
    color: #fff; }
  .red-social.bg-colored a.google, .red-social.bg-colored a[class*="google"], .red-social.bg-colored a[href*="google"] {
    background-color: #ff4c4c;
    color: #fff; }
  .red-social.bg-colored a.twitter, .red-social.bg-colored a[class*="twitter"], .red-social.bg-colored a[href*="twitter"] {
    background-color: #2cc7f0;
    color: #fff; }
  .red-social.bg-colored a.youtube, .red-social.bg-colored a[class*="youtube"], .red-social.bg-colored a[href*="youtube"] {
    background-color: #e9152f;
    color: #fff; }
  .red-social.bg-colored a.rss, .red-social.bg-colored a[class*="rss"], .red-social.bg-colored a[href*="rss"] {
    background-color: #faa33d;
    color: #fff; }
  .red-social.bg-colored a.skype, .red-social.bg-colored a[class*="skype"], .red-social.bg-colored a[href*="skype"] {
    background-color: #41bbe9;
    color: #fff; }
  .red-social.bg-colored a.yahoo, .red-social.bg-colored a[class*="yahoo"], .red-social.bg-colored a[href*="yahoo"] {
    background-color: #ab47ac;
    color: #fff; }
  .red-social.bg-colored a.dribbble, .red-social.bg-colored a[class*="dribbble"], .red-social.bg-colored a[href*="dribbble"] {
    background-color: #ff70b7;
    color: #fff; }
  .red-social.bg-colored a.flickr, .red-social.bg-colored a[class*="flickr"], .red-social.bg-colored a[href*="flickr"] {
    background-color: #ff48a3;
    color: #fff; }
  .red-social.bg-colored a.linkedin, .red-social.bg-colored a[class*="linkedin"], .red-social.bg-colored a[href*="linkedin"] {
    background-color: #4c94db;
    color: #fff; }
  .red-social.bg-colored a.vimeo, .red-social.bg-colored a[class*="vimeo"], .red-social.bg-colored a[href*="vimeo"] {
    background-color: #35c6ea;
    color: #fff; }
  .red-social.bg-colored a.pinterest, .red-social.bg-colored a[class*="pinterest"], .red-social.bg-colored a[href*="pinterest"] {
    background-color: #e13138;
    color: #fff; }
  .red-social.bg-colored a.github, .red-social.bg-colored a[class*="github"], .red-social.bg-colored a[href*="github"] {
    background-color: #3f91cb;
    color: #fff; }
  .red-social.bg-colored a.instagram, .red-social.bg-colored a[class*="instagram"], .red-social.bg-colored a[href*="instagram"] {
    background-color: #db944c;
    color: #fff; }
  .red-social.bg-colored a.tumblr, .red-social.bg-colored a[class*="tumblr"], .red-social.bg-colored a[href*="tumblr"] {
    background-color: #426d9b;
    color: #fff; }
  .red-social.bg-colored a.behance, .red-social.bg-colored a[class*="behance"], .red-social.bg-colored a[href*="behance"] {
    background-color: #1879fd;
    color: #fff; }
  .red-social.bg-colored a.stumbleupon_colo, .red-social.bg-colored a[class*="stumbleupon_colo"], .red-social.bg-colored a[href*="stumbleupon_colo"] {
    background-color: #ff5c30;
    color: #fff; }
  .red-social.bg-colored a.dropbox, .red-social.bg-colored a[class*="dropbox"], .red-social.bg-colored a[href*="dropbox"] {
    background-color: #17a3eb;
    color: #fff; }
  .red-social.bg-colored a.soundcloud, .red-social.bg-colored a[class*="soundcloud"], .red-social.bg-colored a[href*="soundcloud"] {
    background-color: #ff7e30;
    color: #fff; }
  .red-social.bg-colored a.lastfm, .red-social.bg-colored a[class*="lastfm"], .red-social.bg-colored a[href*="lastfm"] {
    background-color: #f34320;
    color: #fff; }
  .red-social.bg-colored a.deviantart, .red-social.bg-colored a[class*="deviantart"], .red-social.bg-colored a[href*="deviantart"] {
    background-color: #6a8a7b;
    color: #fff; }
  .red-social.bg-colored a.digg, .red-social.bg-colored a[class*="digg"], .red-social.bg-colored a[href*="digg"] {
    background-color: #75788d;
    color: #fff; }
  .red-social.bg-colored a.xing, .red-social.bg-colored a[class*="xing"], .red-social.bg-colored a[href*="xing"] {
    background-color: #1a8e8c;
    color: #fff; }
  .red-social.bg-colored a.share, .red-social.bg-colored a[class*="share"], .red-social.bg-colored a[href*="share"] {
    background-color: #25a774;
    color: #fff; }
  .red-social.bg-colored a.wordpress, .red-social.bg-colored a[class*="wordpress"], .red-social.bg-colored a[href*="wordpress"] {
    background-color: #2592c3;
    color: #fff; }
  .red-social.bg-colored a.delicious, .red-social.bg-colored a[class*="delicious"], .red-social.bg-colored a[href*="delicious"] {
    background-color: #ff9233;
    color: #fff; }
  .red-social.bg-colored a.reddit, .red-social.bg-colored a[class*="reddit"], .red-social.bg-colored a[href*="reddit"] {
    background-color: #377bda;
    color: #fff; }
  .red-social.bg-colored a.apple, .red-social.bg-colored a[class*="apple"], .red-social.bg-colored a[href*="apple"] {
    background-color: #b3b5b8;
    color: #fff; }
  .red-social.bg-colored a.vk, .red-social.bg-colored a[class*="vk"], .red-social.bg-colored a[href*="vk"] {
    background-color: #4778ac;
    color: #fff; }
  .red-social.bg-colored a:hover {
    filter: alpha(opacity=80);
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    -webkit-opacity: 0.8;
    -khtml-opacity: 0.8;
    -moz-opacity: 0.8;
    -ms-opacity: 0.8;
    -o-opacity: 0.8;
    opacity: 0.8; }

.red-social.circle a {
  text-align: center;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%; }

.red-social.rounded a {
  text-align: center;
  -webkit-border-radius: 5px;
  -khtml-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  border-radius: 5px; }
  .red-social.rounded.small {
    line-height: 38px; }
  .red-social.rounded.medium {
    line-height: 43px; }
  .red-social.rounded.large {
    line-height: 48px; }
  .red-social.rounded.xlarge {
    line-height: 58px; }

.red-social.outline a {
  background-color: #fff;
  border-style: solid;
  border-width: 1px; }
  .red-social.outline a.facebook, .red-social.outline a[class*="facebook"], .red-social.outline a[href*="facebook"] {
    border-color: #4990e2; }
  .red-social.outline a.google, .red-social.outline a[class*="google"], .red-social.outline a[href*="google"] {
    border-color: #ff4c4c; }
  .red-social.outline a.twitter, .red-social.outline a[class*="twitter"], .red-social.outline a[href*="twitter"] {
    border-color: #2cc7f0; }
  .red-social.outline a.youtube, .red-social.outline a[class*="youtube"], .red-social.outline a[href*="youtube"] {
    border-color: #e9152f; }
  .red-social.outline a.rss, .red-social.outline a[class*="rss"], .red-social.outline a[href*="rss"] {
    border-color: #faa33d; }
  .red-social.outline a.skype, .red-social.outline a[class*="skype"], .red-social.outline a[href*="skype"] {
    border-color: #41bbe9; }
  .red-social.outline a.yahoo, .red-social.outline a[class*="yahoo"], .red-social.outline a[href*="yahoo"] {
    border-color: #ab47ac; }
  .red-social.outline a.dribbble, .red-social.outline a[class*="dribbble"], .red-social.outline a[href*="dribbble"] {
    border-color: #ff70b7; }
  .red-social.outline a.flickr, .red-social.outline a[class*="flickr"], .red-social.outline a[href*="flickr"] {
    border-color: #ff48a3; }
  .red-social.outline a.linkedin, .red-social.outline a[class*="linkedin"], .red-social.outline a[href*="linkedin"] {
    border-color: #4c94db; }
  .red-social.outline a.vimeo, .red-social.outline a[class*="vimeo"], .red-social.outline a[href*="vimeo"] {
    border-color: #35c6ea; }
  .red-social.outline a.pinterest, .red-social.outline a[class*="pinterest"], .red-social.outline a[href*="pinterest"] {
    border-color: #e13138; }
  .red-social.outline a.github, .red-social.outline a[class*="github"], .red-social.outline a[href*="github"] {
    border-color: #3f91cb; }
  .red-social.outline a.instagram, .red-social.outline a[class*="instagram"], .red-social.outline a[href*="instagram"] {
    border-color: #db944c; }
  .red-social.outline a.tumblr, .red-social.outline a[class*="tumblr"], .red-social.outline a[href*="tumblr"] {
    border-color: #426d9b; }
  .red-social.outline a.behance, .red-social.outline a[class*="behance"], .red-social.outline a[href*="behance"] {
    border-color: #1879fd; }
  .red-social.outline a.stumbleupon_colo, .red-social.outline a[class*="stumbleupon_colo"], .red-social.outline a[href*="stumbleupon_colo"] {
    border-color: #ff5c30; }
  .red-social.outline a.dropbox, .red-social.outline a[class*="dropbox"], .red-social.outline a[href*="dropbox"] {
    border-color: #17a3eb; }
  .red-social.outline a.soundcloud, .red-social.outline a[class*="soundcloud"], .red-social.outline a[href*="soundcloud"] {
    border-color: #ff7e30; }
  .red-social.outline a.lastfm, .red-social.outline a[class*="lastfm"], .red-social.outline a[href*="lastfm"] {
    border-color: #f34320; }
  .red-social.outline a.deviantart, .red-social.outline a[class*="deviantart"], .red-social.outline a[href*="deviantart"] {
    border-color: #6a8a7b; }
  .red-social.outline a.digg, .red-social.outline a[class*="digg"], .red-social.outline a[href*="digg"] {
    border-color: #75788d; }
  .red-social.outline a.xing, .red-social.outline a[class*="xing"], .red-social.outline a[href*="xing"] {
    border-color: #1a8e8c; }
  .red-social.outline a.share, .red-social.outline a[class*="share"], .red-social.outline a[href*="share"] {
    border-color: #25a774; }
  .red-social.outline a.wordpress, .red-social.outline a[class*="wordpress"], .red-social.outline a[href*="wordpress"] {
    border-color: #2592c3; }
  .red-social.outline a.delicious, .red-social.outline a[class*="delicious"], .red-social.outline a[href*="delicious"] {
    border-color: #ff9233; }
  .red-social.outline a.reddit, .red-social.outline a[class*="reddit"], .red-social.outline a[href*="reddit"] {
    border-color: #377bda; }
  .red-social.outline a.apple, .red-social.outline a[class*="apple"], .red-social.outline a[href*="apple"] {
    border-color: #b3b5b8; }
  .red-social.outline a.vk, .red-social.outline a[class*="vk"], .red-social.outline a[href*="vk"] {
    border-color: #4778ac; }
  .red-social.outline a.facebook, .red-social.outline a[class*="facebook"], .red-social.outline a[href*="facebook"] {
    color: #4990e2; }
  .red-social.outline a.google, .red-social.outline a[class*="google"], .red-social.outline a[href*="google"] {
    color: #ff4c4c; }
  .red-social.outline a.twitter, .red-social.outline a[class*="twitter"], .red-social.outline a[href*="twitter"] {
    color: #2cc7f0; }
  .red-social.outline a.youtube, .red-social.outline a[class*="youtube"], .red-social.outline a[href*="youtube"] {
    color: #e9152f; }
  .red-social.outline a.rss, .red-social.outline a[class*="rss"], .red-social.outline a[href*="rss"] {
    color: #faa33d; }
  .red-social.outline a.skype, .red-social.outline a[class*="skype"], .red-social.outline a[href*="skype"] {
    color: #41bbe9; }
  .red-social.outline a.yahoo, .red-social.outline a[class*="yahoo"], .red-social.outline a[href*="yahoo"] {
    color: #ab47ac; }
  .red-social.outline a.dribbble, .red-social.outline a[class*="dribbble"], .red-social.outline a[href*="dribbble"] {
    color: #ff70b7; }
  .red-social.outline a.flickr, .red-social.outline a[class*="flickr"], .red-social.outline a[href*="flickr"] {
    color: #ff48a3; }
  .red-social.outline a.linkedin, .red-social.outline a[class*="linkedin"], .red-social.outline a[href*="linkedin"] {
    color: #4c94db; }
  .red-social.outline a.vimeo, .red-social.outline a[class*="vimeo"], .red-social.outline a[href*="vimeo"] {
    color: #35c6ea; }
  .red-social.outline a.pinterest, .red-social.outline a[class*="pinterest"], .red-social.outline a[href*="pinterest"] {
    color: #e13138; }
  .red-social.outline a.github, .red-social.outline a[class*="github"], .red-social.outline a[href*="github"] {
    color: #3f91cb; }
  .red-social.outline a.instagram, .red-social.outline a[class*="instagram"], .red-social.outline a[href*="instagram"] {
    color: #db944c; }
  .red-social.outline a.tumblr, .red-social.outline a[class*="tumblr"], .red-social.outline a[href*="tumblr"] {
    color: #426d9b; }
  .red-social.outline a.behance, .red-social.outline a[class*="behance"], .red-social.outline a[href*="behance"] {
    color: #1879fd; }
  .red-social.outline a.stumbleupon_colo, .red-social.outline a[class*="stumbleupon_colo"], .red-social.outline a[href*="stumbleupon_colo"] {
    color: #ff5c30; }
  .red-social.outline a.dropbox, .red-social.outline a[class*="dropbox"], .red-social.outline a[href*="dropbox"] {
    color: #17a3eb; }
  .red-social.outline a.soundcloud, .red-social.outline a[class*="soundcloud"], .red-social.outline a[href*="soundcloud"] {
    color: #ff7e30; }
  .red-social.outline a.lastfm, .red-social.outline a[class*="lastfm"], .red-social.outline a[href*="lastfm"] {
    color: #f34320; }
  .red-social.outline a.deviantart, .red-social.outline a[class*="deviantart"], .red-social.outline a[href*="deviantart"] {
    color: #6a8a7b; }
  .red-social.outline a.digg, .red-social.outline a[class*="digg"], .red-social.outline a[href*="digg"] {
    color: #75788d; }
  .red-social.outline a.xing, .red-social.outline a[class*="xing"], .red-social.outline a[href*="xing"] {
    color: #1a8e8c; }
  .red-social.outline a.share, .red-social.outline a[class*="share"], .red-social.outline a[href*="share"] {
    color: #25a774; }
  .red-social.outline a.wordpress, .red-social.outline a[class*="wordpress"], .red-social.outline a[href*="wordpress"] {
    color: #2592c3; }
  .red-social.outline a.delicious, .red-social.outline a[class*="delicious"], .red-social.outline a[href*="delicious"] {
    color: #ff9233; }
  .red-social.outline a.reddit, .red-social.outline a[class*="reddit"], .red-social.outline a[href*="reddit"] {
    color: #377bda; }
  .red-social.outline a.apple, .red-social.outline a[class*="apple"], .red-social.outline a[href*="apple"] {
    color: #b3b5b8; }
  .red-social.outline a.vk, .red-social.outline a[class*="vk"], .red-social.outline a[href*="vk"] {
    color: #4778ac; }
  .red-social.outline a:hover.facebook, .red-social.outline a:hover[class*="facebook"], .red-social.outline a:hover[href*="facebook"] {
    background-color: #4990e2;
    color: #fff; }
  .red-social.outline a:hover.google, .red-social.outline a:hover[class*="google"], .red-social.outline a:hover[href*="google"] {
    background-color: #ff4c4c;
    color: #fff; }
  .red-social.outline a:hover.twitter, .red-social.outline a:hover[class*="twitter"], .red-social.outline a:hover[href*="twitter"] {
    background-color: #2cc7f0;
    color: #fff; }
  .red-social.outline a:hover.youtube, .red-social.outline a:hover[class*="youtube"], .red-social.outline a:hover[href*="youtube"] {
    background-color: #e9152f;
    color: #fff; }
  .red-social.outline a:hover.rss, .red-social.outline a:hover[class*="rss"], .red-social.outline a:hover[href*="rss"] {
    background-color: #faa33d;
    color: #fff; }
  .red-social.outline a:hover.skype, .red-social.outline a:hover[class*="skype"], .red-social.outline a:hover[href*="skype"] {
    background-color: #41bbe9;
    color: #fff; }
  .red-social.outline a:hover.yahoo, .red-social.outline a:hover[class*="yahoo"], .red-social.outline a:hover[href*="yahoo"] {
    background-color: #ab47ac;
    color: #fff; }
  .red-social.outline a:hover.dribbble, .red-social.outline a:hover[class*="dribbble"], .red-social.outline a:hover[href*="dribbble"] {
    background-color: #ff70b7;
    color: #fff; }
  .red-social.outline a:hover.flickr, .red-social.outline a:hover[class*="flickr"], .red-social.outline a:hover[href*="flickr"] {
    background-color: #ff48a3;
    color: #fff; }
  .red-social.outline a:hover.linkedin, .red-social.outline a:hover[class*="linkedin"], .red-social.outline a:hover[href*="linkedin"] {
    background-color: #4c94db;
    color: #fff; }
  .red-social.outline a:hover.vimeo, .red-social.outline a:hover[class*="vimeo"], .red-social.outline a:hover[href*="vimeo"] {
    background-color: #35c6ea;
    color: #fff; }
  .red-social.outline a:hover.pinterest, .red-social.outline a:hover[class*="pinterest"], .red-social.outline a:hover[href*="pinterest"] {
    background-color: #e13138;
    color: #fff; }
  .red-social.outline a:hover.github, .red-social.outline a:hover[class*="github"], .red-social.outline a:hover[href*="github"] {
    background-color: #3f91cb;
    color: #fff; }
  .red-social.outline a:hover.instagram, .red-social.outline a:hover[class*="instagram"], .red-social.outline a:hover[href*="instagram"] {
    background-color: #db944c;
    color: #fff; }
  .red-social.outline a:hover.tumblr, .red-social.outline a:hover[class*="tumblr"], .red-social.outline a:hover[href*="tumblr"] {
    background-color: #426d9b;
    color: #fff; }
  .red-social.outline a:hover.behance, .red-social.outline a:hover[class*="behance"], .red-social.outline a:hover[href*="behance"] {
    background-color: #1879fd;
    color: #fff; }
  .red-social.outline a:hover.stumbleupon_colo, .red-social.outline a:hover[class*="stumbleupon_colo"], .red-social.outline a:hover[href*="stumbleupon_colo"] {
    background-color: #ff5c30;
    color: #fff; }
  .red-social.outline a:hover.dropbox, .red-social.outline a:hover[class*="dropbox"], .red-social.outline a:hover[href*="dropbox"] {
    background-color: #17a3eb;
    color: #fff; }
  .red-social.outline a:hover.soundcloud, .red-social.outline a:hover[class*="soundcloud"], .red-social.outline a:hover[href*="soundcloud"] {
    background-color: #ff7e30;
    color: #fff; }
  .red-social.outline a:hover.lastfm, .red-social.outline a:hover[class*="lastfm"], .red-social.outline a:hover[href*="lastfm"] {
    background-color: #f34320;
    color: #fff; }
  .red-social.outline a:hover.deviantart, .red-social.outline a:hover[class*="deviantart"], .red-social.outline a:hover[href*="deviantart"] {
    background-color: #6a8a7b;
    color: #fff; }
  .red-social.outline a:hover.digg, .red-social.outline a:hover[class*="digg"], .red-social.outline a:hover[href*="digg"] {
    background-color: #75788d;
    color: #fff; }
  .red-social.outline a:hover.xing, .red-social.outline a:hover[class*="xing"], .red-social.outline a:hover[href*="xing"] {
    background-color: #1a8e8c;
    color: #fff; }
  .red-social.outline a:hover.share, .red-social.outline a:hover[class*="share"], .red-social.outline a:hover[href*="share"] {
    background-color: #25a774;
    color: #fff; }
  .red-social.outline a:hover.wordpress, .red-social.outline a:hover[class*="wordpress"], .red-social.outline a:hover[href*="wordpress"] {
    background-color: #2592c3;
    color: #fff; }
  .red-social.outline a:hover.delicious, .red-social.outline a:hover[class*="delicious"], .red-social.outline a:hover[href*="delicious"] {
    background-color: #ff9233;
    color: #fff; }
  .red-social.outline a:hover.reddit, .red-social.outline a:hover[class*="reddit"], .red-social.outline a:hover[href*="reddit"] {
    background-color: #377bda;
    color: #fff; }
  .red-social.outline a:hover.apple, .red-social.outline a:hover[class*="apple"], .red-social.outline a:hover[href*="apple"] {
    background-color: #b3b5b8;
    color: #fff; }
  .red-social.outline a:hover.vk, .red-social.outline a:hover[class*="vk"], .red-social.outline a:hover[href*="vk"] {
    background-color: #4778ac;
    color: #fff; }
  .red-social.outline.small {
    line-height: 38px; }
  .red-social.outline.medium {
    line-height: 43px; }
  .red-social.outline.large {
    line-height: 48px; }
  .red-social.outline.xlarge {
    line-height: 58px; }

.red-social.small a {
  width: 40px;
  height: 40px;
  line-height: 40px; }

.red-social.medium a {
  width: 45px;
  height: 45px;
  line-height: 45px; }

.red-social.large a {
  width: 50px;
  height: 50px;
  line-height: 50px; }

.red-social.xlarge a {
  width: 60px;
  height: 60px;
  line-height: 60px; }
/* ZK Instagram */
.widget_givingwalk_instagram_widget .instagram-item a {
  overflow: hidden;
  display: block; }
  .widget_givingwalk_instagram_widget .instagram-item a img {
    -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; }
  .widget_givingwalk_instagram_widget .instagram-item:hover img {
    -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); }

.widget_givingwalk_instagram_widget .author-text {
  font-size: 22px;
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  color: #333; }

.widget_givingwalk_instagram_widget .red-instagram {
  position: relative; }
  .widget_givingwalk_instagram_widget .red-instagram.layout1 .user {
    background-color: #fff;
    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%);
    z-index: 1;
    padding: 22px 90px 28px; }
  .widget_givingwalk_instagram_widget .red-instagram.layout1 .author-text {
    display: block; }
  .widget_givingwalk_instagram_widget .red-instagram.layout1 .author-name {
    font-size: 13px;
    color: #777; }
  .widget_givingwalk_instagram_widget .red-instagram .row.gutter-10 {
    margin: -5px; }
  .widget_givingwalk_instagram_widget .red-instagram .row.gutter-10 > .col, .widget_givingwalk_instagram_widget .red-instagram .row.gutter-10 > [class*="col-"] {
    padding: 5px; }
  .widget_givingwalk_instagram_widget .red-instagram .row.gutter-20 {
    margin: -10px; }
  .widget_givingwalk_instagram_widget .red-instagram .row.gutter-20 > .col, .widget_givingwalk_instagram_widget .red-instagram .row.gutter-20 > [class*="col-"] {
    padding: 10px; }
  .widget_givingwalk_instagram_widget .red-instagram .row.gutter-30 {
    margin: -15px; }
  .widget_givingwalk_instagram_widget .red-instagram .row.gutter-30 > .col, .widget_givingwalk_instagram_widget .red-instagram .row.gutter-30 > [class*="col-"] {
    padding: 15px; }

.flickr-wrap {
  margin: -7.5px; }

.flickr-wrap .flickr_badge_image {
  padding: 7.5px;
  margin: 0;
  width: 33.333%;
  height: auto;
  float: left; }
  .flickr-wrap .flickr_badge_image img {
    width: 100%;
    border-radius: 2px; }

@media (max-width: 991px) {
    #sidebar-area {
      margin-top: 60px; } }

#sidebar-area aside {
  margin-top: 58px; }
  #sidebar-area aside:first-child {
    margin-top: 0; }

#sidebar-area .wg-title {
  font-family: 'Trebuchet MS', Helvetica, sans-serif;
  font-size: 18px;
  letter-spacing: -0.05em; }

#sidebar-area .widget_archive, #sidebar-area .widget_categories, #sidebar-area .widget_pages, #sidebar-area .widget_meta, #sidebar-area .widget_recent_comments, #sidebar-area .widget_recent_entries, #sidebar-area .widget_rss, #sidebar-area .widget_nav_menu, #sidebar-area .widget_layered_nav, #sidebar-area .widget_product_categories, #sidebar-area .widget_givingwalkrecentpost {
  margin-top: 57px; }

#sidebar-area ul li, #sidebar-area ol li {
  line-height: 34px; }
/* OWL Carousel */
.owl-carousel:not(.owl-loaded) {
  display: none; }
/* OWL Carousel */
.red-owl-wrap {
  position: relative;
  /* Progress */ }

.red-owl-wrap .red-grid {
  margin: -15px; }
  .red-owl-wrap .red-grid .red-carousel-item-wrap {
    padding: 15px; }

.red-owl-wrap .red-carousel {
  position: static; }
  .red-owl-wrap .red-carousel .red-carousel-item {
    margin-bottom: 30px; }
  .red-owl-wrap .red-carousel .red-carousel-item:last-child {
    margin-bottom: 0; }
  .red-owl-wrap .red-carousel .owl-item img {
    width: auto;
    max-width: 100%;
    display: inline-block;
    vertical-align: top; }

.red-owl-wrap .owl-nav {
  margin: 30px -15px 0; }
  .red-owl-wrap .owl-nav > div {
    width: 45px;
    height: 45px;
    background-color: #fff;
    margin: 0 3.5px;
    border-radius: 50%;
    text-align: center;
    color: #333;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.09);
    -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; }
  .red-owl-wrap .owl-nav > div > i {
    line-height: 45px;
    font-size: 24px; }
  .red-owl-wrap .owl-nav > div:hover {
    background-color: #d93;
    color: #fff; }
  .red-owl-wrap .owl-nav.nav-vertical {
    margin: 0 30px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    top: calc(50% - 15px);
    left: 0;
    right: 0;
    width: auto;
    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%); }
  .red-owl-wrap .owl-nav.nav-vertical.outside {
    margin: 0 -60px; }
  .red-owl-wrap .owl-nav .owl-dots {
    display: inline-block;
    margin: 0 5px;
    vertical-align: inherit; }

.red-owl-wrap .dots-progress + .owl-nav {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important; }
  .red-owl-wrap .dots-progress + .owl-nav .owl-dots {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 20px 0 0; }
  .red-owl-wrap .dots-progress + .owl-nav .owl-dots .owl-dot {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    height: 10px;
    border: none;
    background-color: #d93;
    margin: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }
  .red-owl-wrap .dots-progress + .owl-nav .owl-dots .owl-dot:hover, .red-owl-wrap .dots-progress + .owl-nav .owl-dots .owl-dot.active {
    background-color: #d93; }

.red-owl-wrap .owl-dots {
  margin-top: 30px;
  vertical-align: top;
  /* Thumnail */
  /* Progress */ }
  .red-owl-wrap .owl-dots .owl-dot {
    width: 16px;
    height: 16px;
    margin: 0 6px;
    border: 3px solid transparent;
    overflow: hidden;
    display: inline-block;
    cursor: pointer;
    background-position: center center;
    background-repeat: no-repeat;
    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;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
    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; }
  .red-owl-wrap .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    display: block;
    background-color: #d93;
    border-color: #d93; }
  .red-owl-wrap .owl-dots .owl-dot:hover, .red-owl-wrap .owl-dots .owl-dot.active {
    background-color: #d93;
    border-color: #d93;
    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; }
  .red-owl-wrap .owl-dots .owl-dot:hover span, .red-owl-wrap .owl-dots .owl-dot.active span {
    background-color: #d93;
    border-color: #d93; }
  .red-owl-wrap .owl-dots.dotContainerTop {
    margin-top: 0;
    margin-bottom: 30px; }
  .red-owl-wrap .owl-dots.dots-thumbnail .owl-dot {
    width: 150px;
    height: 150px;
    padding: 45px;
    margin: 0 -10px;
    border: none;
    position: relative;
    overflow: 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; }
  .red-owl-wrap .owl-dots.dots-thumbnail .owl-dot img {
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
    z-index: 1; }
  .red-owl-wrap .owl-dots.dots-thumbnail .owl-dot:before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    visibility: hidden;
    background: url('../images/baby-flower.png') center center no-repeat;
    -webkit-transform: scale(0.5);
    -khtml-transform: scale(0.5);
    -moz-transform: scale(0.5);
    -ms-transform: scale(0.5);
    -o-transform: scale(0.5);
    transform: scale(0.5);
    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;
    -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; }
  .red-owl-wrap .owl-dots.dots-thumbnail .owl-dot:hover, .red-owl-wrap .owl-dots.dots-thumbnail .owl-dot.active {
    padding: 25px;
    background-color: transparent;
    -webkit-box-shadow: none;
    -khtml-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none; }
  .red-owl-wrap .owl-dots.dots-thumbnail .owl-dot:hover:before, .red-owl-wrap .owl-dots.dots-thumbnail .owl-dot.active:before {
    visibility: visible;
    -webkit-transform: scale(1);
    -khtml-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
    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; }
  .red-owl-wrap .owl-dots.dots-thumbnail.dotContainerTop {
    margin-bottom: 35px; }
  .red-owl-wrap .owl-dots.dots-progress {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }
  .red-owl-wrap .owl-dots.dots-progress .owl-dot {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
    height: 10px;
    border: none;
    background-color: #d93;
    margin: 0;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }
  .red-owl-wrap .owl-dots.dots-progress .owl-dot:hover, .red-owl-wrap .owl-dots.dots-progress .owl-dot.active {
    background-color: #d93; }
/* Magnific Popup */
.mfp-hide {
  display: none; }
/* Revo slider */
.rev_slider .tp-thumb-image {
  border-radius: 5px; }

.rev_slider .silent-font.underline-white {
  position: relative; }
  .rev_slider .silent-font.underline-white:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 4px;
    width: 100%;
    height: 4px;
    background-color: #fff; }

.rev_slider .tp-bullets.ares.vertical .tp-bullet {
  width: 10px;
  height: 10px; }
  .rev_slider .tp-bullets.ares.vertical .tp-bullet .tp-bullet-title {
    opacity: 1;
    visibility: visible;
    -webkit-transform: none;
    -khtml-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    background: transparent;
    color: #fff;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 20px;
    -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; }
  @media (max-width: 1199px) {
        .rev_slider .tp-bullets.ares.vertical .tp-bullet .tp-bullet-title {
          display: none; } }
  .rev_slider .tp-bullets.ares.vertical .tp-bullet .tp-bullet-title:after {
    content: none; }
  .rev_slider .tp-bullets.ares.vertical .tp-bullet:before {
    content: "";
    width: 24px;
    height: 24px;
    background-color: transparent;
    border: 1px dashed #d93;
    display: inline-block;
    border-radius: 50%;
    margin-top: -10px;
    margin-left: -8px;
    -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;
    visibility: hidden;
    opacity: 0; }
  .rev_slider .tp-bullets.ares.vertical .tp-bullet:hover, .rev_slider .tp-bullets.ares.vertical .tp-bullet.selected {
    background-color: #d93; }
  .rev_slider .tp-bullets.ares.vertical .tp-bullet:hover .tp-bullet-title, .rev_slider .tp-bullets.ares.vertical .tp-bullet.selected .tp-bullet-title {
    color: #d93; }
  .rev_slider .tp-bullets.ares.vertical .tp-bullet:hover:before, .rev_slider .tp-bullets.ares.vertical .tp-bullet.selected:before {
    visibility: visible;
    opacity: 1; }

.rev_slider .tp-leftarrow.tparrows.custom {
  background-color: transparent; }
  .rev_slider .tp-leftarrow.tparrows.custom:before {
    color: #d93;
    font-size: 35px;
    -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; }
  .rev_slider .tp-leftarrow.tparrows.custom:hover:before {
    color: #333; }

.rev_slider .tp-rightarrow.tparrows.custom {
  background-color: transparent; }
  .rev_slider .tp-rightarrow.tparrows.custom:before {
    color: #d93;
    font-size: 35px;
    -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; }
  .rev_slider .tp-rightarrow.tparrows.custom:hover:before {
    color: #333; }

.letter-spacing-003 {
  letter-spacing: -0.03em !important; }

.letter-spacing-0075 {
  letter-spacing: -0.075em !important; }

.red-carousel {
  position: relative;
  display: none;
  cursor: ew-resize; }

.red-carousel .owl-stage-outer {
  overflow: hidden;
  -webkit-animation-duration: 1s;
  -khtml-animation-duration: 1s;
  -moz-animation-duration: 1s;
  -ms-animation-duration: 1s;
  -o-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  -khtml-animation-fill-mode: both;
  -moz-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  -o-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-name: zoomOut;
  -khtml-animation-name: zoomOut;
  -moz-animation-name: zoomOut;
  -ms-animation-name: zoomOut;
  -o-animation-name: zoomOut;
  animation-name: zoomOut; }

.red-carousel + .owl-preload {
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center; }
  .red-carousel + .owl-preload:before {
    content: "";
    display: block;
    width: 41px;
    height: 41px;
    margin: auto;
    background: url(../images/ajaxloading.png) center center no-repeat;
    -webkit-animation: CMSSpin 1s infinite linear;
    -khtml-animation: CMSSpin 1s infinite linear;
    -moz-animation: CMSSpin 1s infinite linear;
    -ms-animation: CMSSpin 1s infinite linear;
    -o-animation: CMSSpin 1s infinite linear;
    animation: CMSSpin 1s infinite linear; }

.red-carousel.owl-loaded {
  display: block; }
  .red-carousel.owl-loaded .owl-stage-outer {
    -webkit-animation-name: zoomIn;
    -khtml-animation-name: zoomIn;
    -moz-animation-name: zoomIn;
    -ms-animation-name: zoomIn;
    -o-animation-name: zoomIn;
    animation-name: zoomIn; }
  .red-carousel.owl-loaded + .owl-preload {
    display: none; }

.owl-rtl .owl-item {
  float: right; }

.owl-nav, .owl-dots {
  display: flex;
  flex-wrap: wrap;
  margin-top: 30px;
  justify-content: center; }

.owl-nav > div, .owl-dots > div {
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
  cursor: pointer;
  text-align: center; }

.owl-nav.disabled, .owl-dots.disabled {
  display: none; }

.owl-nav {
  /* Dots in Nav */ }

.owl-nav [class*='owl-'] > i {
  -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; }

.owl-nav.inside-br {
  position: absolute;
  bottom: 89px;
  right: 69px;
  margin: 0; }
  @media (max-width: 767px) {
    .owl-nav.inside-br {
      bottom: 35px;
      right: 35px; } }
  .owl-nav.inside-br > div > i {
    line-height: 38px;
    color: #fff; }
  .owl-nav.inside-br > div > i:hover {
    background-color: #fff;
    border-color: #fff; }

.owl-nav.nav-vertical {
  padding: 0;
  margin: 0;
  justify-content: space-between; }
  .owl-nav.nav-vertical > [class*='owl-'] {
    padding: 0;
    position: absolute;
    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%); }
  .owl-nav.nav-vertical.inside > .owl-prev {
    left: 30px; }
  .owl-nav.nav-vertical.inside > .owl-next {
    right: 30px; }
  @media (min-width: 1366px) {
      .owl-nav.nav-vertical.outside > .owl-prev {
        left: -80px; }
      .owl-nav.nav-vertical.outside > .owl-next {
        right: -80px; } }

.owl-nav .owl-dots {
  border: none;
  width: auto;
  height: auto;
  padding-top: 0;
  align-items: center; }
  .owl-nav .owl-dots:hover {
    background-color: transparent; }

.owl-nav.disabled {
  display: none; }

.has-dots .owl-nav.nav-vertical {
  margin-top: -30px;
  /* make sure nav in center of item when have dots. 55px is 1/2 height of dots */ }

.owl-nav .owl-dots, .owl-dots {
  /* Dots in Nav */ }

.owl-nav .owl-dots .owl-dot span, .owl-dots .owl-dot span {
  display: block;
  width: 13px;
  height: 13px;
  background: transparent;
  border: 1px solid #e7e7e7;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  -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; }
  .owl-nav .owl-dots .owl-dot:hover span, .owl-dots .owl-dot:hover span, .owl-nav .owl-dots .owl-dot.active span, .owl-dots .owl-dot.active span {
    background: #e7e7e7; }

.owl-dots.dotContainerTop, .owl-dots.dots-progress.dotContainerTop {
  padding-top: 0;
  margin-bottom: 35px; }
/* Dots Thumbnail */
.dots-thumbnail .owl-dot {
  width: 50px;
  height: 50px; }
/* Dots Progress */
.owl-dots.dots-progress {
  margin-top: 5px; }

.owl-dots.dots-progress .owl-dot {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
  padding-left: 0;
  padding-right: 0; }
  .owl-dots.dots-progress .owl-dot span {
    width: 100%;
    height: 8px;
    background-color: #9b9b9b;
    margin-left: 0;
    margin-right: 0;
    border: none;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }
  .owl-dots.dots-progress .owl-dot:hover span, .owl-dots.dots-progress .owl-dot.active span {
    background-color: #9b9b9b; }
  .owl-dots.dots-progress .owl-dot:hover ~ .owl-dot span, .owl-dots.dots-progress .owl-dot.active ~ .owl-dot span {
    background-color: #eee; }
  .owl-dots.dots-progress .owl-dot:hover ~ .owl-dot:hover span, .owl-dots.dots-progress .owl-dot.active ~ .owl-dot:hover span {
    background-color: #9b9b9b; }

.owl-dots.dots-progress:hover .owl-dot span {
  background-color: #9b9b9b; }

.owl-min-height-618 .red-item {
  min-height: 618px; }

.wpb_button, .wpb_content_element, ul.wpb_thumbnails-fluid > li {
  margin-bottom: 0 !important; }

.wpb_wrapper p {
  margin-top: 0; }

.entry-content .vc_col-has-fill > .vc_column-inner, .entry-content .vc_row-has-fill + .vc_row-full-width + .vc_row > .vc_column_container > .vc_column-inner, .entry-content .vc_row-has-fill + .vc_row > .vc_column_container > .vc_column-inner, .entry-content .vc_row-has-fill + .vc_vc_row > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner, .entry-content .vc_row-has-fill + .vc_vc_row_inner > .vc_row > .vc_vc_column_inner > .vc_column_container > .vc_column-inner, .entry-content .vc_row-has-fill > .vc_column_container > .vc_column-inner, .entry-content .vc_row-has-fill > .vc_row > .vc_vc_column > .vc_column_container > .vc_column-inner, .entry-content .vc_row-has-fill > .vc_vc_column_inner > .vc_column_container > .vc_column-inner, .entry-content .vc_section.vc_section-has-fill, .entry-content .vc_section.vc_section-has-fill + .vc_row-full-width + .vc_section, .entry-content .vc_section.vc_section-has-fill + .vc_section {
  padding-top: 0; }

.vc_row.row-bg-fixed {
  background-attachment: fixed !important;
  position: relative;
  overflow: hidden;
  -webkit-backface-visibility: hidden; }

@media (min-width: 1200px) {
    .vc_row.ontop-253 {
      margin-top: -253px;
      margin-bottom: 46px; } }

@media (min-width: 1200px) {
    .vc_row.space-45 {
      margin-left: -45px;
      margin-right: -45px; }
      .vc_row.space-45 > div .vc_column-inner {
        padding-left: 45px;
        padding-right: 45px; } }

.vc_row.visible {
  overflow: visible !important; }

.vc_row.dark-mode-color h1, .vc_row.dark-mode-color h2, .vc_row.dark-mode-color h3, .vc_row.dark-mode-color h4, .vc_row.dark-mode-color h5, .vc_row.dark-mode-color h6 {
  color: #fff; }

.vc_row.dark-mode-color p {
  color: #ddd; }

.vc_row.dark-mode-color ul.products .wc-loop-content-wrap .price {
  color: #eee; }
  .vc_row.dark-mode-color ul.products .wc-loop-content-wrap a.add_to_cart_button {
    border-color: #121212; }

@media (max-width: 991px) {
      .column-mobile-border-none .vc_column-inner {
        border: none !important; } }

.wpb_raw_html .story-primary-block {
  background-color: #d93;
  padding: 57px 130px 53px 130px;
  border-radius: 3px;
  text-align: center; }
  @media (max-width: 991px) {
    .wpb_raw_html .story-primary-block {
      padding: 57px 70px 53px 70px; } }
  @media (max-width: 767px) {
    .wpb_raw_html .story-primary-block {
      padding: 30px 15px 30px 15px; } }
  .wpb_raw_html .story-primary-block h2 {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: -0.03em;
    color: #fff;
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 6px; }
  @media (max-width: 767px) {
      .wpb_raw_html .story-primary-block h2 {
        font-size: 20px;
        line-height: 28px; } }
  .wpb_raw_html .story-primary-block .silent-heading {
    color: #fff;
    font-size: 24px;
    letter-spacing: 0.03em;
    cursor: pointer;
    font-weight: 300;
    font-style: italic;
    -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; }
  @media (max-width: 767px) {
      .wpb_raw_html .story-primary-block .silent-heading {
        font-size: 22px; } }
  .wpb_raw_html .story-primary-block .silent-heading:after {
    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; }
  .wpb_raw_html .story-primary-block .silent-heading:hover {
    color: rgba(255, 255, 255, 0.7); }
  .wpb_raw_html .story-primary-block .silent-heading:hover:after {
    background-color: rgba(255, 255, 255, 0.7); }
  .wpb_raw_html .story-primary-block.large {
    padding: 75px 150px 72px 150px; }
  @media (max-width: 991px) {
      .wpb_raw_html .story-primary-block.large {
        padding: 73px 50px 73px 50px; } }
  @media (max-width: 767px) {
      .wpb_raw_html .story-primary-block.large {
        padding: 56px 15px 56px 15px; } }
  @media (max-width: 576px) {
      .wpb_raw_html .story-primary-block.large {
        padding: 56px 15px 56px 15px; } }
  .wpb_raw_html .story-primary-block.large h2 {
    font-size: 36px;
    line-height: 45px;
    letter-spacing: -0.03em;
    margin-bottom: 15px; }
  @media (max-width: 576px) {
        .wpb_raw_html .story-primary-block.large h2 {
          font-size: 26px;
          line-height: 32px; } }

.wpb_raw_html .haq {
  letter-spacing: -0.03em; }

.width-100 {
  width: 100%; }

.width-100 * {
  width: 100%; }

.vc_basic_grid .vc_pageable-slide-wrapper {
  counter-reset: number; }

.vc_grid-item .vc_gitem_row {
  margin-left: 0;
  margin-right: 0; }
  .vc_grid-item .vc_gitem_row .vc_gitem-col {
    padding: 0; }

@media (max-width: 767px) {
      .vc_grid-item.cause-style1 {
        margin-bottom: 30px; } }
  .vc_grid-item.cause-style1 .vc_gitem-zone-a {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px; }
  .vc_grid-item.cause-style1 .vc_gitem-zone-c {
    position: relative;
    padding: 30px 45px 47px 45px;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.05);
    overflow: visible;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    background-color: #fff; }
  @media (max-width: 1199px) {
      .vc_grid-item.cause-style1 .vc_gitem-zone-c {
        padding: 30px 15px 37px 15px; } }
  .vc_grid-item.cause-style1 .vc_gitem-col {
    position: inherit; }
  .vc_grid-item.cause-style1 .gitem-entry-meta {
    position: absolute;
    top: -17px;
    font-size: 11px;
    color: #fff;
    text-transform: uppercase;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-weight: 600;
    background-color: #d93;
    padding: 7px 23px 5px 23px;
    border-radius: 3px; }
  .vc_grid-item.cause-style1 .gitem-entry-meta a {
    color: #fff; }
  .vc_grid-item.cause-style1 .gitem-entry-meta a:hover {
    color: rgba(255, 255, 255, 0.7); }
  .vc_grid-item.cause-style1 .vc_gitem-post-data {
    margin-bottom: 0; }
  .vc_grid-item.cause-style1 .vc_custom_heading h4 {
    letter-spacing: -0.03em;
    margin-top: 14px;
    margin-bottom: 8px;
    line-height: 28px; }
  .vc_grid-item.cause-style1 .post-excerpt {
    line-height: 24px;
    letter-spacing: -0.02em; }
  .vc_grid-item.cause-style1 .donation-value {
    margin-top: 34px; }
  .vc_grid-item.cause-style1 .donation-value .lbl {
    font-size: 15px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    letter-spacing: -0.03em;
    display: block;
    line-height: 1;
    margin-bottom: 5px;
    color: #333; }
  .vc_grid-item.cause-style1 .donation-value .value {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 35px;
    font-weight: 700;
    color: #d93;
    letter-spacing: -0.04em;
    line-height: 1; }
  @media (max-width: 1199px) {
        .vc_grid-item.cause-style1 .donation-value .value {
          font-size: 30px; } }
  @media (max-width: 576px) {
        .vc_grid-item.cause-style1 .donation-value .value {
          font-size: 28px; } }
  .vc_grid-item.cause-style1 .give-btn {
    position: absolute;
    bottom: 46px;
    right: 38px;
    width: 60px;
    height: 60px;
    color: #fff;
    font-size: 15px;
    border-radius: 50%;
    text-align: center;
    border: 1px dashed #797979;
    display: inline-block;
    padding-top: 8px; }
  .vc_grid-item.cause-style1 .give-btn i {
    width: 42px;
    height: 42px;
    background-color: #d93;
    border-radius: 50%;
    display: inline-block;
    margin: 0;
    line-height: 42px;
    -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; }
  .vc_grid-item.cause-style1 .give-btn:hover i {
    background-color: #333; }

.woocommerce-result-count {
  display: inline-block;
  margin-bottom: 50px;
  margin-top: 0;
  line-height: 55px; }

@media screen and (max-width: 479px) {
    .woocommerce-result-count {
      float: none; } }

.woocommerce-ordering {
  position: relative;
  margin-bottom: 50px;
  display: inline-block;
  float: right; }

@media screen and (max-width: 479px) {
    .woocommerce-ordering {
      float: none; } }

.woocommerce-ordering:after {
  position: absolute;
  right: 28px;
  top: 2px;
  line-height: 48px;
  content: "\f0d7";
  font-family: "FontAwesome";
  font-size: 14px; }

.woocommerce-ordering select {
  min-width: 230px;
  margin-bottom: 0;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  appearance: none; }

.woocommerce-ordering select::-ms-expand {
  display: none; }
/* Shop loop */
@media (min-width: 768px) {
  ul.products {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap; }

  ul.products.columns-2 .product {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
    ul.products.columns-3 .product {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; }
    ul.products.columns-4 .product {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 50%;
      -ms-flex: 0 0 50%;
      flex: 0 0 50%;
      max-width: 50%; } }

@media (min-width: 992px) {
  ul.products.columns-2 .product {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
    ul.products.columns-3 .product {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 33.333333%;
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%; }
    ul.products.columns-4 .product {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; } }

@media (min-width: 1200px) {
  ul.products.columns-2 .product {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 50%;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }
    ul.products.columns-3 .product {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 33.333333%;
      -ms-flex: 0 0 33.333333%;
      flex: 0 0 33.333333%;
      max-width: 33.333333%; }
    ul.products.columns-4 .product {
      -webkit-box-flex: 0;
      -webkit-flex: 0 0 25%;
      -ms-flex: 0 0 25%;
      flex: 0 0 25%;
      max-width: 25%; } }

.star-rating {
  color: #d93;
  font-size: 12px;
  width: 70px;
  letter-spacing: 0.3em;
  position: relative;
  text-align: left;
  white-space: nowrap;
  display: inline-block;
  line-height: 28px; }

.star-rating:before {
  content: "\f006\f006\f006\f006\f006";
  font-family: 'FontAwesome';
  display: block; }

.star-rating span {
  font-size: 0;
  position: absolute;
  left: 0;
  top: 0;
  overflow: hidden; }
  .star-rating span:before {
    font-family: 'FontAwesome';
    color: #d93;
    font-size: 12px;
    content: "\f005\f005\f005\f005\f005";
    display: block; }

.star-rating + .woocommerce-review-link {
  font-size: 15px;
  font-weight: 400; }

.stars {
  margin: 0 -5px; }

.stars a {
  font-size: 0;
  margin: 0 5px;
  color: #ababab;
  -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; }
  .stars a:before {
    font-size: 11px;
    font-family: 'FontAwesome'; }
  .stars a.star-1:before {
    content: "\f006"; }
  .stars a.star-2:before {
    content: "\f006\f006"; }
  .stars a.star-3:before {
    content: "\f006\f006\f006"; }
  .stars a.star-4:before {
    content: "\f006\f006\f006\f006"; }
  .stars a.star-5:before {
    content: "\f006\f006\f006\f006\f006"; }
  .stars a.star-1:hover:before, .stars a.star-1.active:before {
    content: "\f005"; }
  .stars a.star-2:hover:before, .stars a.star-2.active:before {
    content: "\f005\f005"; }
  .stars a.star-3:hover:before, .stars a.star-3.active:before {
    content: "\f005\f005\f005"; }
  .stars a.star-4:hover:before, .stars a.star-4.active:before {
    content: "\f005\f005\f005\f005"; }
  .stars a.star-5:hover:before, .stars a.star-5.active:before {
    content: "\f005\f005\f005\f005\f005"; }
  .stars a:hover, .stars a.active {
    color: #f4cb3d; }

ul.products {
  list-style: none;
  margin: 0 -15px;
  padding: 0; }

ul.products .product {
  padding: 0 15px;
  margin-bottom: 30px; }

ul.products .wc-img-wrap {
  position: relative; }
  ul.products .wc-img-wrap img {
    width: 100%;
    border-radius: 2px; }
  ul.products .wc-img-wrap .onsale {
    position: absolute;
    top: -25px;
    left: 9px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    background-color: #71b61b;
    text-align: center;
    font-size: 13px; }

ul.products .wc-loop-content-wrap {
  position: relative;
  padding: 30px 0 20px 0; }
  ul.products .wc-loop-content-wrap .wc-loop-code-rating > div {
    float: left; }
  ul.products .wc-loop-content-wrap .wc-loop-code-rating .code {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 16px;
    color: #d93;
    letter-spacing: 0.03em;
    line-height: 28px; }
  ul.products .wc-loop-content-wrap .wc-loop-code-rating .star-rating {
    margin-left: 36px; }
  ul.products .wc-loop-content-wrap .wc-loop-title {
    margin: 5px 0 10px 0;
    letter-spacing: -0.03em;
    text-transform: uppercase; }
  ul.products .wc-loop-content-wrap .price {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #333;
    text-transform: uppercase; }
  ul.products .wc-loop-content-wrap .price del {
    font-size: 13px;
    color: #999; }
  ul.products .wc-loop-content-wrap .price ins {
    text-decoration: none;
    float: left;
    margin-right: 6px; }
  ul.products .wc-loop-content-wrap a.add_to_cart_button {
    position: absolute;
    top: -35px;
    right: 9px;
    width: 70px;
    height: 70px;
    font-size: 0;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    padding: 0;
    font-weight: normal;
    display: inline-block;
    border: none;
    color: #fff;
    border-style: solid;
    border-width: 10px;
    border-color: #fff;
    background-color: #71b61b; }
  ul.products .wc-loop-content-wrap a.add_to_cart_button:hover, ul.products .wc-loop-content-wrap a.add_to_cart_button:active, ul.products .wc-loop-content-wrap a.add_to_cart_button:focus, ul.products .wc-loop-content-wrap a.add_to_cart_button:active:focus {
    -webkit-animation: scaleDisappear 0.6s;
    -khtml-animation: scaleDisappear 0.6s;
    -moz-animation: scaleDisappear 0.6s;
    -ms-animation: scaleDisappear 0.6s;
    -o-animation: scaleDisappear 0.6s;
    animation: scaleDisappear 0.6s; }
  ul.products .wc-loop-content-wrap a.add_to_cart_button:before {
    content: "\f108";
    font-family: 'Flaticon';
    font-size: 15px; }
  ul.products .wc-loop-content-wrap a.add_to_cart_button.added {
    right: 88px; }
  ul.products .wc-loop-content-wrap a.added_to_cart {
    position: absolute;
    top: -35px;
    right: 9px;
    width: 70px;
    height: 70px;
    font-size: 0;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    padding: 0;
    font-weight: normal;
    display: inline-block;
    border: none;
    color: #fff;
    border-style: solid;
    border-width: 10px;
    border-color: #fff;
    background-color: #71b61b; }
  ul.products .wc-loop-content-wrap a.added_to_cart:hover, ul.products .wc-loop-content-wrap a.added_to_cart:active, ul.products .wc-loop-content-wrap a.added_to_cart:focus, ul.products .wc-loop-content-wrap a.added_to_cart:active:focus {
    -webkit-animation: scaleDisappear 0.6s;
    -khtml-animation: scaleDisappear 0.6s;
    -moz-animation: scaleDisappear 0.6s;
    -ms-animation: scaleDisappear 0.6s;
    -o-animation: scaleDisappear 0.6s;
    animation: scaleDisappear 0.6s; }
  ul.products .wc-loop-content-wrap a.added_to_cart:before {
    content: "\f0c1";
    font-family: FontAwesome;
    font-size: 15px;
    display: inline-block; }
  ul.products .wc-loop-content-wrap .button.product_type_grouped {
    padding: 7.5px 15px;
    font-size: 11px;
    margin-top: 20px; }

.woocommerce-pagination {
  margin: 3px 0 13px 0;
  text-align: center;
  display: block; }

.woocommerce-pagination ul.page-numbers {
  padding: 0;
  margin: 0;
  display: inline-block;
  list-style: none; }
  .woocommerce-pagination ul.page-numbers li {
    display: inline-block; }
  .woocommerce-pagination ul.page-numbers li .page-numbers {
    font-size: 13px;
    letter-spacing: 0.03em;
    margin: 0;
    padding: 0 15px;
    position: relative;
    display: inline-block; }
/* .woocommerce-pagination{
 margin: 27px 0 13px 0;
 text-align: center;
 display: block;
 ul.page-numbers{
 padding: 0;
 margin: 0;
 display: inline-block;
 list-style: none;
 li{
 display: inline-block;
 .page-numbers{
 font-size: 13px;
 letter-spacing: 0.03em;
 margin: 0;
 padding: 0 15px;
 position: relative;
 line-height: 53px;
 background-color: #fafafa;
 display: inline-block;
 color: $heading_color;
 +.page-numbers:before{
 content: "";
 height: 18px;
 width: 1px;
 background-color: #cecece;
 position: absolute;
 top: 18px;
 left: -1px;
 }
 &.prev+.page-numbers:before{
 content: none;
 }
 &.prev{
 background-color: $primary_color;
 color: #fff;
 &:after{
 content: "";
 width: 11px;
 height: 53px;
 background-color: #fafafa;
 position: absolute;
 top: 6px;
 right: 0;
 }
 &:hover{
 background-color: #222222;
 }
 }
 &.next{
 background-color: #222222;
 color: #fff;
 &:before{
 content: none;
 }
 &:after{
 content: "";
 width: 4px;
 height: 53px;
 background-color: #fafafa;
 position: absolute;
 top: 6px;
 left: 0;
 }
 &:hover{
 background-color: $primary_color;
 }
 }
 &.prev,&.next{
 width: 63px;
 height: 65px;
 line-height: 65px;
 margin-top: -6px;
 text-align: center;
 }
 &:hover,&.current{
 color: $link_color_hover;
 }
 }
 }
 }
 } */
.woocommerce-message {
  margin-bottom: 50px; }
/**
 * Single Product 
 */
.single-product {
  /* entry-summary */ }

.single-product .woocommerce-message {
  min-height: 55px; }
  .single-product .woocommerce-message a {
    float: right; }
  @media (max-width: 576px) {
      .single-product .woocommerce-message a {
        float: none;
        padding: 0;
        background: transparent;
        border: 0;
        color: #71b61b;
        line-height: 24px;
        text-transform: inherit;
        margin-right: 10px;
        font-size: 15px; }
        .single-product .woocommerce-message a:hover {
          color: #333; } }

.single-product .img-summary-wrap {
  margin: 40px 0 0 0;
  -webkit-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  -khtml-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  -moz-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  -ms-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  -o-box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  box-shadow: 0 0 76px rgba(0, 0, 0, 0.09);
  padding: 0 0 15px 0; }
  @media (min-width: 1200px) {
    .single-product .img-summary-wrap {
      padding: 0 35px 50px 35px; } }
  @media (max-width: 767px) {
      .single-product .img-summary-wrap.row {
        display: block; } }
  .single-product .img-summary-wrap > div {
    padding: 0 15px; }
  @media (min-width: 1200px) {
      .single-product .img-summary-wrap > div {
        padding: 0 35px; } }
  .single-product .img-summary-wrap .col-left {
    position: relative; }
  @media (min-width: 768px) {
      .single-product .img-summary-wrap .col-left {
        flex: 0 0 46.7%;
        max-width: 46.7%; } }
  @media (max-width: 767px) {
      .single-product .img-summary-wrap .col-left {
        padding: 0; } }
  @media (min-width: 768px) {
      .single-product .img-summary-wrap .col-right {
        flex: 0 0 53.3%;
        max-width: 53.3%; } }
  .single-product .img-summary-wrap .onsale {
    position: absolute;
    top: -40px;
    left: 35px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    border-radius: 50%;
    display: inline-block;
    color: #fff;
    background-color: #71b61b;
    text-align: center;
    font-size: 13px;
    z-index: 1; }
  @media (max-width: 1199px) {
      .single-product .img-summary-wrap .onsale {
        top: 15px;
        left: 15px; } }
  @media (max-width: 767px) {
      .single-product .img-summary-wrap .onsale {
        top: 0;
        left: 0; } }

.single-product .woocommerce-product-gallery {
  position: relative;
  display: block;
  overflow: hidden;
  direction: ltr;
  margin-top: -40px;
  /* Gallery only */
  /* Slider thumb */ }
  @media (max-width: 1199px) {
    .single-product .woocommerce-product-gallery {
      margin-top: 15px; } }
  .single-product .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
    max-width: inherit; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--with-images > .woocommerce-product-gallery__wrapper {
    margin-left: -5px;
    margin-right: -5px; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--with-images > .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:nth-child(1) {
    margin: 0 5px; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--with-images > .woocommerce-product-gallery__wrapper > .woocommerce-product-gallery__image:nth-child(n+2) {
    float: left;
    margin: 10px 10px 0; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-2 > figure > .woocommerce-product-gallery__image:nth-child(n+2) {
    width: calc(50% - 10px); }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-3 > figure > .woocommerce-product-gallery__image:nth-child(n+2) {
    width: calc(33.3333% - 10px); }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-4 > figure > .woocommerce-product-gallery__image:nth-child(n+2) {
    width: calc(25% - 10px); }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--with-images.woocommerce-product-gallery--columns-5 > figure > .woocommerce-product-gallery__image:nth-child(n+2) {
    width: calc(20% - 10px); }
  .single-product .woocommerce-product-gallery .flex-control-thumbs {
    margin: 0 -5px;
    padding: 0; }
  .single-product .woocommerce-product-gallery .flex-control-thumbs li {
    list-style: none;
    float: left;
    cursor: pointer;
    padding: 10px 5px 0;
    position: relative; }
  .single-product .woocommerce-product-gallery .flex-control-thumbs li img {
    width: 100%; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-2 .flex-control-thumbs li {
    width: 50%; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-3 .flex-control-thumbs li {
    width: 33.3333%; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-4 .flex-control-thumbs li {
    width: 25%; }
  .single-product .woocommerce-product-gallery.woocommerce-product-gallery--columns-5 .flex-control-thumbs li {
    width: 20%; }

.single-product .woocommerce-product-gallery figure {
  margin: 0; }
  .single-product .woocommerce-product-gallery figure img {
    width: 100%; }

.single-product .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  text-align: center;
  text-indent: -999px;
  overflow: hidden;
  text-decoration: none;
  background-color: #444;
  color: #fff;
  width: 40px;
  height: 40px;
  line-height: 40px; }
  .single-product .woocommerce-product-gallery__trigger:hover {
    background-color: #d93;
    color: #fff; }
  .single-product .woocommerce-product-gallery__trigger:before {
    font-family: "FontAwesome";
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: block;
    content: "\f00e";
    text-indent: 0; }
  .single-product .woocommerce-product-gallery__trigger img {
    display: none; }

.single-product .entry-summary {
  padding-top: 70px; }
  @media (max-width: 1199px) {
    .single-product .entry-summary {
      padding-top: 50px; } }
  @media (max-width: 991px) {
    .single-product .entry-summary {
      padding-top: 30px; } }
  @media (max-width: 767px) {
    .single-product .entry-summary {
      padding-bottom: 15px; } }
  .single-product .entry-summary .stock.in-stock {
    display: none; }
  .single-product .entry-summary .code-rating > div {
    display: inline-block; }
  .single-product .entry-summary .code-rating .code {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: 0.03em;
    color: #d93;
    margin-right: 36px; }
  .single-product .entry-summary .product-title {
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #333;
    margin-top: 15px;
    margin-bottom: 10px; }
  @media (max-width: 576px) {
      .single-product .entry-summary .product-title {
        font-size: 18px; } }
  .single-product .entry-summary .price {
    font-family: Montserrat;
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #333;
    text-transform: uppercase;
    margin: 0; }
  @media (max-width: 576px) {
      .single-product .entry-summary .price {
        font-size: 16px; } }
  .single-product .entry-summary .price del {
    font-size: 13px;
    color: #999; }
  .single-product .entry-summary .price ins {
    text-decoration: none;
    float: left;
    margin-right: 6px; }
  .single-product .entry-summary input::-webkit-inner-spin-button {
    opacity: 1;
    background-color: #d93; }
  .single-product .entry-summary form.cart {
    margin-top: 30px; }
  .single-product .entry-summary form.cart input[type="number"] {
    height: 54px;
    border: 2px solid #f0f0f0;
    text-align: center;
    width: 108px;
    border-radius: 2px; }
  @media (max-width: 576px) {
        .single-product .entry-summary form.cart input[type="number"] {
          width: 80px;
          text-align: left;
          padding-left: 15px; } }
  .single-product .entry-summary form.cart .quantity input[type=number]::-webkit-inner-spin-button, .single-product .entry-summary form.cart .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .single-product .entry-summary form.cart .quantity {
    position: relative;
    display: inline-block;
    width: 108px; }
  @media (max-width: 576px) {
        .single-product .entry-summary form.cart .quantity {
          width: 80px; } }
  .single-product .entry-summary form.cart .quantity .quantity-button {
    width: 32px;
    height: 27px;
    position: absolute;
    right: 0;
    background-color: #d93;
    color: #fff;
    text-align: center;
    line-height: 1; }
  .single-product .entry-summary form.cart .quantity .quantity-up {
    top: 0;
    padding-top: 13px; }
  .single-product .entry-summary form.cart .quantity .quantity-down {
    bottom: 0; }
  .single-product .entry-summary form.cart button[type="submit"] {
    margin-left: 27px; }
  @media (max-width: 576px) {
        .single-product .entry-summary form.cart button[type="submit"] {
          margin-left: 15px;
          padding: 15px 28px;
          font-size: 12px; } }
  .single-product .entry-summary form.cart table.variations {
    margin-bottom: 10px; }
  .single-product .entry-summary form.cart table.variations th, .single-product .entry-summary form.cart table.variations td {
    padding: 5px 0;
    background-color: transparent; }
  .single-product .entry-summary form.cart table.variations select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .single-product .entry-summary .product_meta {
    margin-top: 36px; }
  .single-product .entry-summary .product_meta > div {
    font-size: 12px;
    line-height: 28px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    color: #8c8c8c; }
  .single-product .entry-summary .product_meta > div a {
    color: #8c8c8c; }
  .single-product .entry-summary .product_meta > div a:hover {
    color: #71b61b; }
  .single-product .entry-summary .product_meta .posted_in {
    margin-bottom: 5px; }
  .single-product .entry-summary .product_meta .lbl {
    color: #d93; }

.single-product .woocommerce-tabs {
  padding: 39px 70px 20px 70px; }
  @media (max-width: 1199px) {
    .single-product .woocommerce-tabs {
      padding: 39px 35px 20px 35px; } }
  @media (max-width: 767px) {
    .single-product .woocommerce-tabs {
      padding: 39px 0 20px 0; } }
  .single-product .woocommerce-tabs ul.tabs {
    display: none; }
  .single-product .woocommerce-tabs p {
    margin: 0; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel {
    display: block !important; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--description p {
    letter-spacing: -0.02em;
    margin-bottom: 26px; }
  .single-product .woocommerce-tabs .silent-heading {
    font-size: 26px;
    color: #333;
    display: inline-block;
    margin-bottom: 24px; }
  .single-product .woocommerce-tabs .silent-heading:after {
    background-color: #333; }
  .single-product .woocommerce-tabs table th, .single-product .woocommerce-tabs table td {
    padding: 5px 0;
    border: 0;
    background-color: transparent;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: -0.05em;
    color: #333;
    font-weight: 500; }
  .single-product .woocommerce-tabs table th {
    font-weight: 600;
    text-transform: uppercase; }
  .single-product .woocommerce-tabs table td p:before {
    content: "\f00c";
    font-family: FontAwesome;
    font-size: 11px;
    margin-right: 10px;
    color: #d93; }
  .single-product .woocommerce-tabs .addition-information-wrap {
    margin-top: 13px; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews h4 {
    letter-spacing: -0.05em;
    margin-top: 0;
    margin-bottom: 20px; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist {
    padding-left: 0;
    margin-left: 0;
    margin-bottom: 65px;
    list-style: none; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li {
    margin-bottom: 20px;
    padding: 40px 44px;
    background-color: #fbfbfb; }
  @media (max-width: 1199px) {
          .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li {
            padding: 30px 30px; } }
  @media (max-width: 576px) {
          .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li {
            padding: 0;
            background-color: transparent;
            margin-bottom: 30px; } }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container {
    overflow: hidden; }
    .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container > img {
      float: left;
      width: 90px; }
      @media (max-width: 576px) {
          .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container > img {
            float: none; } }
    .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text {
      border-radius: 10px;
      float: left;
      width: calc(100% - 90px);
      padding-left: 25px; }
      @media (max-width: 576px) {
          .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text {
            float: none;
            width: 100%;
            padding-left: 0;
            margin-top: 10px; } }
      .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text .comment-meta-wrap > * {
        display: inline-block; }
        @media (max-width: 576px) {
            .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text .comment-meta-wrap > * {
              display: block; } }
      .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text .meta {
        margin: 0;
        float: left;
        margin-right: 60px; }
        @media (max-width: 576px) {
          .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text .meta {
            float: none; } }
      .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text .description p {
        margin-top: 10px;
        line-height: 24px;
        letter-spacing: -0.02em; }
      .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text .woocommerce-review__author {
        font-family: 'Trebuchet MS', Helvetica, sans-serif;
        font-size: 18px;
        letter-spacing: -0.03em;
        color: #333;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 28px;
        margin-right: 25px; }
      .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text .woocommerce-review__dash {
        display: none; }
      .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews ol.commentlist li .comment_container .comment-text .woocommerce-review__published-date {
        font-size: 13px;
        line-height: 28px;
        color: #d93;
        letter-spacing: -0.02em; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-respond {
    margin-top: 50px; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-reply-title {
    font-size: 18px;
    letter-spacing: -0.05em;
    font-weight: 600;
    color: #333;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    display: block;
    margin-bottom: 20px; }
  @media (min-width: 1200px) {
        .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form {
          display: flex;
          margin: 0 -15px; } }
  @media (min-width: 1200px) {
          .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form .comment-form-left, .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form .comment-form-right {
            flex: 0 0 50%;
            max-width: 50%;
            padding: 0 15px; } }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form .comment-form-left p {
    margin-bottom: 10px; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating {
    text-align: right; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating .stars {
    margin-bottom: 0;
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    -khtml-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    -ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    -o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    padding: 12px 0 17px 0;
    border-radius: 55px; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating select {
    display: none; }
  .single-product .woocommerce-tabs .woocommerce-Tabs-panel--reviews .form-submit {
    margin-top: 18px; }

.logged-in .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form {
  display: block;
  margin: 0; }

.logged-in .woocommerce-tabs .woocommerce-Tabs-panel--reviews .comment-form-rating {
  margin-bottom: 10px; }

.woocommerce-cart .woocommerce-info {
  padding: 20px 30px 0 30px; }

.woocommerce-cart .woocommerce-message {
  padding: 20px 30px;
  background: #28a745;
  color: #fff; }
  @media (min-width: 1200px) {
    .woocommerce-cart .woocommerce-message {
      margin-left: 50px;
      margin-right: 50px; } }
  .woocommerce-cart .woocommerce-message a {
    float: right;
    color: #fff; }
  .woocommerce-cart .woocommerce-message a:hover {
    color: rgba(255, 255, 255, 0.7); }

.woocommerce-cart .woocommerce-error {
  padding: 20px 30px;
  list-style: none;
  margin-bottom: 50px;
  margin-left: 0;
  background: #dc3545;
  color: #fff; }
  @media (min-width: 1200px) {
    .woocommerce-cart .woocommerce-error {
      margin-left: 50px;
      margin-right: 50px; } }

.woocommerce-cart .cart-empty {
  margin: 0 0 30px; }

.woocommerce-cart .return-to-shop {
  padding: 0; }

.woocommerce-cart .entry-content .woocommerce {
  background-color: #fdfdfd; }

@media (min-width: 1200px) {
      .woocommerce-cart form.woocommerce-cart-form {
        padding: 0 50px; } }

.woocommerce-cart table.cart {
  border: 0;
  border-radius: 0;
  margin-top: 0;
  margin-bottom: 0; }
  .woocommerce-cart table.cart tr:hover {
    background: #f9f9f9; }
  .woocommerce-cart table.cart th {
    padding: 23px 10px;
    vertical-align: middle;
    text-align: left;
    letter-spacing: 0.03em;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    background: #111;
    border-color: #111;
    text-transform: uppercase; }
  .woocommerce-cart table.cart th.product-price, .woocommerce-cart table.cart th.product-quantity, .woocommerce-cart table.cart th.product-subtotal {
    text-align: center; }
  .woocommerce-cart table.cart td {
    border-top-color: transparent;
    padding: 32px 15px;
    vertical-align: middle;
    background-color: #fff;
    border-left: 2px solid transparent;
    border-right: 2px solid transparent;
    border-bottom: 10px solid transparent;
    -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.02);
    -khtml-box-shadow: 0 0 40px rgba(0, 0, 0, 0.02);
    -moz-box-shadow: 0 0 40px rgba(0, 0, 0, 0.02);
    -ms-box-shadow: 0 0 40px rgba(0, 0, 0, 0.02);
    -o-box-shadow: 0 0 40px rgba(0, 0, 0, 0.02);
    box-shadow: 0 0 40px rgba(0, 0, 0, 0.02); }
  .woocommerce-cart table.cart .product-remove {
    text-align: center; }
  @media screen and (min-width: 992px) {
      .woocommerce-cart table.cart .product-remove {
        width: 95px; } }
  .woocommerce-cart table.cart .product-remove a {
    background: transparent;
    display: inline-block;
    font-size: 30px; }
  .woocommerce-cart table.cart td.product-thumbnail {
    text-align: center;
    width: 100px; }
  .woocommerce-cart table.cart td.product-thumbnail img {
    padding: 0;
    width: 60px;
    border-radius: 50%; }
  .woocommerce-cart table.cart td.product-name {
    color: #3b3b3b;
    font-size: 15px; }
  @media screen and (min-width: 992px) {
      .woocommerce-cart table.cart td.product-name {
        width: 33%; } }
  .woocommerce-cart table.cart td.product-name .code-rating {
    margin-bottom: 8px; }
  .woocommerce-cart table.cart td.product-name .code-rating > div {
    display: inline-block; }
  .woocommerce-cart table.cart td.product-name .code-rating .code {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 16px;
    letter-spacing: 0.03em;
    color: #d93; }
  .woocommerce-cart table.cart td.product-name .code-rating .woocommerce-product-rating {
    margin-left: 36px; }
  .woocommerce-cart table.cart td.product-name > a {
    font-size: 16px;
    color: #333;
    letter-spacing: -0.03em;
    line-height: 28px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    text-transform: uppercase;
    font-weight: 600;
    display: block; }
  .woocommerce-cart table.cart td.product-name > a:hover {
    color: #71b61b; }
  .woocommerce-cart table.cart td.product-name dl.variation {
    margin: 0; }
  .woocommerce-cart table.cart td.product-name dl.variation dd, .woocommerce-cart table.cart td.product-name dl.variation dt {
    margin: 0;
    padding: 0; }
  .woocommerce-cart table.cart td.product-name dl.variation dd p, .woocommerce-cart table.cart td.product-name dl.variation dt p {
    line-height: 26px;
    margin: 0; }
  .woocommerce-cart table.cart td.product-name .variation > * {
    float: left;
    margin-right: 5px !important;
    font-weight: normal; }
  .woocommerce-cart table.cart td.product-price {
    text-align: center; }
  .woocommerce-cart table.cart td.product-price span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #333;
    font-family: 'Trebuchet MS', Helvetica, sans-serif; }
  .woocommerce-cart table.cart td.product-quantity {
    text-align: center; }
  .woocommerce-cart table.cart input[type="number"] {
    height: 54px;
    border: 2px solid #f0f0f0;
    padding-left: 35px;
    width: 108px;
    border-radius: 2px;
    font-weight: 500; }
  @media (max-width: 576px) {
      .woocommerce-cart table.cart input[type="number"] {
        width: 80px;
        text-align: left;
        padding-left: 15px; } }
  .woocommerce-cart table.cart .quantity input[type=number]::-webkit-inner-spin-button, .woocommerce-cart table.cart .quantity input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0; }
  .woocommerce-cart table.cart .quantity {
    position: relative;
    display: inline-block;
    width: 108px; }
  @media (max-width: 576px) {
      .woocommerce-cart table.cart .quantity {
        width: 80px; } }
  .woocommerce-cart table.cart .quantity .quantity-button {
    width: 32px;
    height: 27px;
    position: absolute;
    right: 0;
    background-color: #d93;
    color: #fff;
    text-align: center;
    line-height: 1; }
  .woocommerce-cart table.cart .quantity .quantity-up {
    top: 0;
    padding-top: 13px; }
  .woocommerce-cart table.cart .quantity .quantity-down {
    bottom: 0; }
  .woocommerce-cart table.cart .product-subtotal {
    text-align: center; }
  .woocommerce-cart table.cart .product-subtotal span {
    font-size: 20px;
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #333;
    font-family: 'Trebuchet MS', Helvetica, sans-serif; }
  .woocommerce-cart table.cart td.actions {
    padding: 10px 0;
    background: transparent; }

@media screen and (max-width: 767px) {
    .woocommerce-cart table.cart thead {
      display: none; }
      .woocommerce-cart table.cart tbody tr {
        display: block; }
        .woocommerce-cart table.cart tbody tr:last-child {
          display: table-row; }
        .woocommerce-cart table.cart tbody td {
          border-top: 0;
          display: block;
          text-align: right !important;
          padding: 10px 0; }
        .woocommerce-cart table.cart tbody td:before {
          content: attr(data-title) ": ";
          font-weight: 700;
          float: left;
          color: #3b3b3b; }
        .woocommerce-cart table.cart tbody td.product-remove:before, .woocommerce-cart table.cart tbody td.product-thumbnail:before {
          content: none; }
        .woocommerce-cart table.cart tbody td.product-thumbnail {
          width: 100%;
          text-align: left !important; }
          .woocommerce-cart table.cart tbody td.product-thumbnail img {
            width: 120px; }
          .woocommerce-cart table.cart tbody td.product-thumbnail a {
            display: block; }
      .woocommerce-cart table.cart td.actions {
        display: table-cell; }
        .woocommerce-cart table.cart td.actions:before {
          content: none; }
    .woocommerce-cart .cart_item {
      margin-bottom: 30px; } }

.woocommerce-cart .coupon-checkout {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
  justify-content: space-between; }
  .woocommerce-cart .coupon-checkout > div {
    padding-left: 15px;
    padding-right: 15px;
    margin-bottom: 20px; }
  .woocommerce-cart .coupon-checkout .coupon {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative; }
  @media screen and (min-width: 992px) {
      .woocommerce-cart .coupon-checkout .coupon {
        flex: 0 0 auto;
        width: auto;
        max-width: auto; } }
  @media screen and (min-width: 1200px) {
      .woocommerce-cart .coupon-checkout .coupon {
        flex: 0 0 580px;
        max-width: 580px; } }
  .woocommerce-cart .coupon-checkout .cart-collaterals {
    flex: 0 0 100%;
    max-width: 100%;
    position: relative; }
  @media screen and (min-width: 992px) {
      .woocommerce-cart .coupon-checkout .cart-collaterals {
        flex: 0 0 auto;
        width: auto;
        max-width: auto; } }
  @media screen and (min-width: 1200px) {
      .woocommerce-cart .coupon-checkout .cart-collaterals {
        flex: 0 0 420px;
        max-width: 420px; } }

.woocommerce-cart .coupon {
  padding-top: 53px; }
  .woocommerce-cart .coupon .coupon-wrap {
    background-color: #e1e1e1;
    padding: 43px 45px;
    border-radius: 3px; }
  @media (max-width: 576px) {
      .woocommerce-cart .coupon .coupon-wrap {
        padding: 30px 15px; } }
  .woocommerce-cart .coupon .silent-heading {
    font-size: 26px;
    line-height: 42px;
    color: #333; }
  .woocommerce-cart .coupon .silent-heading:after {
    background-color: #333; }
  .woocommerce-cart .coupon .coupon-field-wrap {
    position: relative;
    margin-top: 12px; }
  .woocommerce-cart .coupon .coupon-field-wrap input[type="text"] {
    padding-right: 104px; }
  .woocommerce-cart .coupon .coupon-field-wrap input[type="text"]::-webkit-input-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: -0.02em;
    font-style: normal; }
  .woocommerce-cart .coupon .coupon-field-wrap input[type="text"]:-moz-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: -0.02em;
    font-style: normal; }
  .woocommerce-cart .coupon .coupon-field-wrap input[type="text"]::-moz-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: -0.02em;
    font-style: normal; }
  .woocommerce-cart .coupon .coupon-field-wrap input[type="text"]:-ms-input-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: -0.02em;
    font-style: normal; }
  .woocommerce-cart .coupon .coupon-field-wrap button[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 12px;
    padding: 15px 25px; }

.woocommerce-cart .shipping-calculator-form {
  display: block; }

.woocommerce-cart .cart-collaterals .cart_totals {
  background-color: #d93;
  color: #fff;
  padding: 40px 50px 33px 50px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px; }
  @media (max-width: 576px) {
      .woocommerce-cart .cart-collaterals .cart_totals {
        padding: 30px 15px 30px 15px; } }
  .woocommerce-cart .cart-collaterals h2 {
    display: none; }
  .woocommerce-cart .cart-collaterals table {
    margin-bottom: 18px; }
  .woocommerce-cart .cart-collaterals table th {
    min-width: 100px; }
  .woocommerce-cart .cart-collaterals table th, .woocommerce-cart .cart-collaterals table td {
    background-color: #d93;
    color: #fff;
    padding: 5px 0;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-family: 'Trebuchet MS', Helvetica, sans-serif; }
  .woocommerce-cart .cart-collaterals table ul {
    padding-left: 0;
    list-style: none;
    margin: 0; }
  .woocommerce-cart .cart-collaterals table label {
    display: inline-block; }
  .woocommerce-cart .cart-collaterals table input[type="radio"], .woocommerce-cart .cart-collaterals table input[type="checkbox"] {
    margin: 0 3px 0 0; }
  .woocommerce-cart .cart-collaterals table a {
    color: #fff; }
  .woocommerce-cart .cart-collaterals table a:hover {
    color: rgba(255, 255, 255, 0.6); }
  @media (max-width: 576px) {
    .woocommerce-cart .cart-collaterals table thead {
      display: none; }
      .woocommerce-cart .cart-collaterals table tbody th {
        display: none; }
        .woocommerce-cart .cart-collaterals table tbody tr {
          display: block; }
          .woocommerce-cart .cart-collaterals table tbody tr:last-child {
            display: table-row; }
        .woocommerce-cart .cart-collaterals table tbody td {
          border-top: 0;
          display: block;
          text-align: right !important;
          padding: 10px 0; }
          .woocommerce-cart .cart-collaterals table tbody td:before {
            content: attr(data-title) ": ";
            font-weight: 700;
            float: left; }
      .woocommerce-cart .cart-collaterals table ul {
        margin-top: 30px;
        text-align: left; }
        .woocommerce-cart .cart-collaterals table ul li {
          display: inline-block; }
      .woocommerce-cart .cart-collaterals table p {
        text-align: left; } }
  .woocommerce-cart .cart-collaterals .select2-container .select2-choice, .woocommerce-cart .cart-collaterals .select2-container .select2-selection {
    height: 55px !important;
    padding: 13px 20px !important;
    border: 1px solid #d8d8d8;
    border-radius: 55px; }
  .woocommerce-cart .cart-collaterals .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 51px;
    width: 50px; }
  .woocommerce-cart .cart-collaterals .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-transform: capitalize;
    font-weight: 500; }
  .woocommerce-cart .cart-collaterals .shipping-calculator-form p {
    margin-top: 0; }
  .woocommerce-cart .cart-collaterals .shipping-calculator-form button[type="submit"] {
    border-color: #fff;
    color: #fff; }
  @media (max-width: 576px) {
        .woocommerce-cart .cart-collaterals .shipping-calculator-form button[type="submit"] {
          text-transform: capitalize; } }
  .woocommerce-cart .cart-collaterals .shipping-calculator-form button[type="submit"]:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.6); }

.woocommerce-cart .wc-proceed-to-checkout .checkout-button {
  border-color: #fff;
  color: #fff; }
  @media (max-width: 576px) {
      .woocommerce-cart .wc-proceed-to-checkout .checkout-button {
        text-transform: capitalize; } }
  .woocommerce-cart .wc-proceed-to-checkout .checkout-button:hover {
    border-color: rgba(255, 255, 255, 0.6);
    color: rgba(255, 255, 255, 0.6); }

.woocommerce-checkout .woocommerce-message {
  padding: 20px 30px;
  background: #d93;
  color: #fff; }

.woocommerce-checkout .woocommerce-error {
  padding-left: 0;
  list-style: none;
  margin-bottom: 30px;
  margin-left: 0; }

.woocommerce-checkout .woocommerce-form-coupon-toggle {
  margin-bottom: 30px; }

.woocommerce-checkout form.woocommerce-form-login .woocommerce-form__label-for-checkbox {
  line-height: 55px;
  margin-left: 15px; }

.woocommerce-checkout form.checkout_coupon {
  margin-bottom: 20px; }

.woocommerce-checkout .checkout-heading {
  background-color: #d93;
  padding: 31px 60px;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center; }
  @media (max-width: 991px) {
    .woocommerce-checkout .checkout-heading {
      padding: 20px 30px; } }
  @media (max-width: 576px) {
    .woocommerce-checkout .checkout-heading {
      padding: 20px 15px; } }
  .woocommerce-checkout .checkout-heading > * {
    flex: 0 0 auto;
    width: auto;
    max-width: auto; }
  .woocommerce-checkout .checkout-heading .checkout-heading-title {
    color: #fff;
    margin: 0;
    letter-spacing: -0.05em; }
  .woocommerce-checkout .checkout-heading .silent-heading {
    font-size: 20px;
    letter-spacing: 0.03em; }
  .woocommerce-checkout .checkout-heading .silent-heading a {
    color: #fff; }
  .woocommerce-checkout .checkout-heading .silent-heading a:hover {
    color: rgba(255, 255, 255, 0.6); }
  .woocommerce-checkout .checkout-heading .silent-heading:after {
    background-color: #fff; }

.woocommerce-checkout form.checkout {
  padding: 50px 0 0 0; }
  @media (min-width: 992px) {
    .woocommerce-checkout form.checkout {
      background: #fdfdfd;
      padding: 50px 68px; } }
  .woocommerce-checkout form.checkout > .row > div {
    margin-bottom: 30px; }
  .woocommerce-checkout form.checkout .col2-set {
    display: flex;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px; }
  .woocommerce-checkout form.checkout .col2-set > div {
    flex: 0 0 100%;
    max-width: 100%; }
  @media (min-width: 992px) {
        .woocommerce-checkout form.checkout .col2-set > div {
          flex: 0 0 50%;
          max-width: 50%;
          padding-left: 10px;
          padding-right: 10px; } }
  @media (max-width: 991px) {
        .woocommerce-checkout form.checkout .col2-set .col-2 {
          margin-top: 30px; } }
  .woocommerce-checkout form.checkout .form-row {
    display: block;
    flex-wrap: inherit;
    margin-right: 0;
    margin-left: 0; }
  .woocommerce-checkout form.checkout .form-row label {
    display: none; }
  .woocommerce-checkout form.checkout p.form-row {
    margin-top: 0;
    margin-bottom: 10px; }
  .woocommerce-checkout form.checkout h3 {
    font-size: 18px;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.05em; }
  .woocommerce-checkout form.checkout h3 label {
    font-weight: inherit; }
  .woocommerce-checkout form.checkout #order_review_heading {
    display: none; }
  .woocommerce-checkout form.checkout .select2-container .select2-choice, .woocommerce-checkout form.checkout .select2-container .select2-selection {
    height: 55px;
    padding: 13px 20px;
    border: 1px solid #d8d8d8;
    border-radius: 55px;
    -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    -khtml-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    -ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    -o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.04); }
  .woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #333; }
  .woocommerce-checkout form.checkout .select2-container--open.select2-container .select2-selection {
    border-color: #d93; }
  .woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 51px;
    width: 50px; }
  .woocommerce-checkout form.checkout .select2-container--default .select2-selection--single .select2-selection__rendered {
    text-transform: capitalize;
    font-weight: 500; }
  .woocommerce-checkout form.checkout textarea {
    height: 315px; }
  @media (max-width: 991px) {
      .woocommerce-checkout form.checkout textarea {
        height: 150px; } }
  .woocommerce-checkout form.checkout input[type="text"]::-webkit-input-placeholder, .woocommerce-checkout form.checkout input[type="email"]::-webkit-input-placeholder, .woocommerce-checkout form.checkout input[type="phone"]::-webkit-input-placeholder, .woocommerce-checkout form.checkout input[type="tel"]::-webkit-input-placeholder, .woocommerce-checkout form.checkout input[type="password"]::-webkit-input-placeholder, .woocommerce-checkout form.checkout select::-webkit-input-placeholder, .woocommerce-checkout form.checkout textarea::-webkit-input-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: 0.025em;
    font-style: italic; }
  .woocommerce-checkout form.checkout input[type="text"]:-moz-placeholder, .woocommerce-checkout form.checkout input[type="email"]:-moz-placeholder, .woocommerce-checkout form.checkout input[type="phone"]:-moz-placeholder, .woocommerce-checkout form.checkout input[type="tel"]:-moz-placeholder, .woocommerce-checkout form.checkout input[type="password"]:-moz-placeholder, .woocommerce-checkout form.checkout select:-moz-placeholder, .woocommerce-checkout form.checkout textarea:-moz-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: 0.025em;
    font-style: italic; }
  .woocommerce-checkout form.checkout input[type="text"]::-moz-placeholder, .woocommerce-checkout form.checkout input[type="email"]::-moz-placeholder, .woocommerce-checkout form.checkout input[type="phone"]::-moz-placeholder, .woocommerce-checkout form.checkout input[type="tel"]::-moz-placeholder, .woocommerce-checkout form.checkout input[type="password"]::-moz-placeholder, .woocommerce-checkout form.checkout select::-moz-placeholder, .woocommerce-checkout form.checkout textarea::-moz-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: 0.025em;
    font-style: italic; }
  .woocommerce-checkout form.checkout input[type="text"]:-ms-input-placeholder, .woocommerce-checkout form.checkout input[type="email"]:-ms-input-placeholder, .woocommerce-checkout form.checkout input[type="phone"]:-ms-input-placeholder, .woocommerce-checkout form.checkout input[type="tel"]:-ms-input-placeholder, .woocommerce-checkout form.checkout input[type="password"]:-ms-input-placeholder, .woocommerce-checkout form.checkout select:-ms-input-placeholder, .woocommerce-checkout form.checkout textarea:-ms-input-placeholder {
    color: #979797;
    font-size: 12px;
    letter-spacing: 0.025em;
    font-style: italic; }

.woocommerce-checkout .woocommerce-account-fields {
  margin-top: 48px; }
  .woocommerce-checkout .woocommerce-account-fields .input-checkbox {
    display: none; }
  .woocommerce-checkout .woocommerce-account-fields label.checkbox > span {
    cursor: pointer;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 20px;
    letter-spacing: 0.03em;
    color: #d93;
    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; }
  .woocommerce-checkout .woocommerce-account-fields label.checkbox > span:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 2px;
    width: 100%;
    height: 1px;
    background-color: #d93;
    -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; }
  .woocommerce-checkout .woocommerce-account-fields label.checkbox > span:hover {
    color: #333; }
  .woocommerce-checkout .woocommerce-account-fields label.checkbox > span:hover:after {
    background-color: #333; }

.woocommerce-shipping-fields h3 {
  position: relative; }
  .woocommerce-shipping-fields h3 label {
    margin: 0; }
  .woocommerce-shipping-fields h3 input[type="checkbox"] {
    margin-right: 5px; }

.woocommerce-checkout-review-order {
  margin-top: 50px; }

@media (min-width: 1200px) {
    .woocommerce-checkout-review-order {
      display: flex;
      flex-wrap: wrap;
      background: #d93; } }

.woocommerce-checkout-review-order table {
  background: #d93;
  border-color: transparent;
  margin: 0;
  border-radius: 0;
  padding: 40px 50px 45px 50px; }
  @media (min-width: 1200px) {
    .woocommerce-checkout-review-order table {
      flex: 0 0 40%;
      max-width: 40%; } }
  @media (max-width: 991px) {
    .woocommerce-checkout-review-order table {
      margin-bottom: 50px; } }
  @media (max-width: 576px) {
    .woocommerce-checkout-review-order table {
      padding: 30px 15px; } }
  .woocommerce-checkout-review-order table th {
    background-color: transparent; }
  .woocommerce-checkout-review-order table th, .woocommerce-checkout-review-order table td {
    color: #fff;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: -0.03em;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    border: 0;
    padding: 5px 0;
    background-color: transparent !important; }
  @media (max-width: 576px) {
      .woocommerce-checkout-review-order table th, .woocommerce-checkout-review-order table td {
        text-transform: capitalize; } }
  .woocommerce-checkout-review-order table thead {
    display: none; }
  .woocommerce-checkout-review-order table tbody {
    display: none; }
  .woocommerce-checkout-review-order table tbody td + td {
    text-align: right; }
  .woocommerce-checkout-review-order table tbody td.product-name dl.variation dd, .woocommerce-checkout-review-order table tbody td.product-name dl.variation dt {
    float: none;
    margin-bottom: 0;
    padding-bottom: 0; }
  .woocommerce-checkout-review-order table tfoot th {
    min-width: 140px; }
  @media (max-width: 576px) {
        .woocommerce-checkout-review-order table tfoot th {
          min-width: 0;
          padding-right: 10px; } }
  .woocommerce-checkout-review-order table ul {
    list-style: none;
    margin: 0; }
  .woocommerce-checkout-review-order table label {
    display: inline-block; }

.woocommerce-checkout-review-order .woocommerce-checkout-payment {
  background: #111;
  padding: 45px 35px 45px 75px;
  color: #fff; }
  @media (min-width: 1200px) {
    .woocommerce-checkout-review-order .woocommerce-checkout-payment {
      flex: 0 0 60%;
      max-width: 60%; } }
  @media (max-width: 1199px) {
    .woocommerce-checkout-review-order .woocommerce-checkout-payment {
      padding: 40px 50px 45px 50px; } }
  @media (max-width: 576px) {
    .woocommerce-checkout-review-order .woocommerce-checkout-payment {
      padding: 30px 15px; } }
  .woocommerce-checkout-review-order .woocommerce-checkout-payment ul {
    list-style: none;
    margin: 0; }
  @media (min-width: 1200px) {
      .woocommerce-checkout-review-order .woocommerce-checkout-payment ul {
        display: inline-block;
        width: 60%;
        float: left; } }
  .woocommerce-checkout-review-order .woocommerce-checkout-payment ul li input[type="radio"] {
    margin-right: 5px; }
  .woocommerce-checkout-review-order .woocommerce-checkout-payment ul li label {
    font-size: 13px;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    line-height: 28px;
    font-weight: 600;
    letter-spacing: 0.03em;
    display: inline-block; }
  .woocommerce-checkout-review-order .woocommerce-checkout-payment p {
    margin-top: 0;
    margin-bottom: 10px; }
  .woocommerce-checkout-review-order .woocommerce-checkout-payment .payment_method_paypal img, .woocommerce-checkout-review-order .woocommerce-checkout-payment .payment_method_paypal a {
    display: none; }
  @media (min-width: 1200px) {
      .woocommerce-checkout-review-order .woocommerce-checkout-payment .place-order {
        display: inline-block;
        margin-left: 15px;
        margin-top: 54px; } }
  @media (max-width: 1199px) {
      .woocommerce-checkout-review-order .woocommerce-checkout-payment .place-order {
        margin-top: 15px; } }

.woocommerce-order p {
  margin-top: 0; }

.woocommerce-order ul {
  margin: 0;
  list-style: none; }

.woocommerce-order .order_details {
  padding-left: 0; }
  .woocommerce-order .order_details li {
    border-bottom: 1px solid #f2f2f2;
    border-right: medium none;
    display: block;
    float: none;
    line-height: 38px;
    margin-right: 0;
    width: 100%; }
  .woocommerce-order .order_details li strong {
    float: right; }
  .woocommerce-order .order_details ul.wc-item-meta {
    padding-left: 15px; }
  .woocommerce-order .order_details ul.wc-item-meta li {
    border-bottom: 0; }
  .woocommerce-order .order_details ul.wc-item-meta li > * {
    float: left;
    margin-right: 5px;
    font-weight: normal; }

.woocommerce-order h2 {
  font-size: 18px;
  margin-top: 0;
  margin-bottom: 20px;
  letter-spacing: -0.05em; }

.woocommerce-order .woocommerce-order-details {
  margin-top: 50px; }

.woocommerce-order table th {
  background-color: transparent; }

.woocommerce-order table.shop_table thead th {
  padding: 23px 15px;
  vertical-align: middle;
  text-align: left;
  letter-spacing: 0.03em;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #111;
  border-color: #111;
  text-transform: uppercase; }
  .woocommerce-order table.shop_table tbody th, .woocommerce-order table.shop_table tfoot th, .woocommerce-order table.shop_table tbody td, .woocommerce-order table.shop_table tfoot td {
    border-color: #f2f2f2;
    padding: 13px 15px; }

.woocommerce-order .woocommerce-customer-details {
  margin-top: 40px; }
  .woocommerce-order .woocommerce-customer-details .woocommerce-columns {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
  .woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column {
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px; }
  .woocommerce-order .woocommerce-customer-details .woocommerce-columns .woocommerce-column address {
    line-height: 1.8; }

.woocommerce-account ul {
  margin: 0;
  list-style: none; }

.woocommerce-account .woocommerce {
  margin-bottom: 30px; }

.woocommerce-account table thead th {
  padding: 23px 15px;
  vertical-align: middle;
  text-align: left;
  letter-spacing: 0.03em;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  background: #111;
  border-color: #111;
  text-transform: uppercase; }

.woocommerce-account form.login {
  color: #3b3b3b; }
  .woocommerce-account form.login .woocommerce-Button {
    min-width: 120px;
    margin-bottom: 20px; }
  .woocommerce-account form.login input[type="checkbox"] {
    margin-left: 0; }

.woocommerce-account form .form-row label {
  display: block;
  width: 100%;
  margin-bottom: 5px; }
  .woocommerce-account form .form-row .required {
    color: red;
    font-weight: 700;
    border: 0 !important;
    text-decoration: none; }

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0 -15px; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li {
    display: inline-block;
    margin: 0 15px; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    padding: 13px 20px;
    background-color: #d93;
    color: #fff;
    border-radius: 24px;
    min-width: 140px;
    display: inline-block;
    text-align: center;
    text-transform: uppercase;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 12px;
    letter-spacing: -0.03em;
    font-weight: 600;
    border: 1px solid #d93;
    margin-bottom: 10px; }
  .woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background-color: transparent;
    color: #71b61b; }

.woocommerce-account .woocommerce-MyAccount-content {
  color: #333;
  margin-top: 30px; }
  @media (max-width: 767px) {
    .woocommerce-account .woocommerce-MyAccount-content thead {
      display: none; } }
  .woocommerce-account .woocommerce-MyAccount-content th, .woocommerce-account .woocommerce-MyAccount-content td {
    text-align: center;
    vertical-align: middle; }
  @media (max-width: 767px) {
      .woocommerce-account .woocommerce-MyAccount-content th, .woocommerce-account .woocommerce-MyAccount-content td {
        text-align: right;
        display: block;
        width: 100%; }
        .woocommerce-account .woocommerce-MyAccount-content th:before, .woocommerce-account .woocommerce-MyAccount-content td:before {
          content: attr(data-title) ": ";
          font-weight: 700;
          float: left;
          color: #3b3b3b; } }
  .woocommerce-account .woocommerce-MyAccount-content a:not(.button) {
    color: #71b61b; }
  .woocommerce-account .woocommerce-MyAccount-content h3 {
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: -0.05em; }
  .woocommerce-account .woocommerce-MyAccount-content address {
    margin: 0; }
  .woocommerce-account .woocommerce-MyAccount-content .edit {
    color: #71b61b; }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-orders-table a.woocommerce-button {
    min-width: 120px; }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message a.button {
    background: transparent;
    color: #71b61b;
    border: 0;
    padding: 0;
    float: left;
    text-align: left;
    line-height: 28px;
    margin-right: 15px; }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Message a.button:hover {
    color: #333; }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses {
    display: flex;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px; }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > div {
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 30px; }
  .woocommerce-account .woocommerce-MyAccount-content .woocommerce-Addresses > div address {
    line-height: 1.8; }
  .woocommerce-account .woocommerce-MyAccount-content form.edit-account fieldset {
    padding: 0;
    border: 0;
    margin-top: 30px; }
  .woocommerce-account .woocommerce-MyAccount-content form.edit-account legend {
    border: 0;
    border-bottom: 0;
    margin-bottom: 5px; }
  .woocommerce-account .woocommerce-MyAccount-content form.edit-account button[type="submit"] {
    margin-top: 20px; }

.woocommerce-account h2 {
  display: block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 30px;
  padding-bottom: 0;
  margin-top: 0;
  padding-top: 0; }

.woocommerce-account .select2-container .select2-choice, .woocommerce-account .select2-container .select2-selection {
  height: 55px;
  padding: 13px 20px;
  border: 1px solid #d8d8d8;
  border-radius: 55px;
  -webkit-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -khtml-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -moz-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -ms-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  -o-box-shadow: 0 0 16px rgba(0, 0, 0, 0.04);
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.04); }

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #333; }

.woocommerce-account .select2-container--open.select2-container .select2-selection {
  border-color: #d93; }

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 51px;
  width: 50px; }

.woocommerce-account .select2-container--default .select2-selection--single .select2-selection__rendered {
  text-transform: capitalize;
  font-weight: 500; }

.woocommerce-account form.login {
  border: 0;
  padding: 0;
  margin: 0;
  margin-top: 30px;
  border-radius: 0; }
  .woocommerce-account form.login label {
    display: block;
    line-height: 1;
    font-size: 14px;
    margin-bottom: 15px;
    width: 100%;
    font-weight: 400; }
  .woocommerce-account form.login .form-row {
    padding: 0;
    margin: 20px 0; }

.woo-sidebar .widget + .widget {
  margin-top: 30px; }

.woo-sidebar ul {
  margin: 0;
  list-style: none; }

.woo-sidebar .widget_product_search form {
  position: relative; }
  .woo-sidebar .widget_product_search form input[type="search"] {
    width: 100%;
    padding: 13px 60px 13px 30px;
    border-radius: 55px; }
  .woo-sidebar .widget_product_search form input[type="search"]:focus, .woo-sidebar .widget_product_search form input[type="search"]:active {
    border-color: #d93; }
  .woo-sidebar .widget_product_search form button[type="submit"] {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    border: none;
    width: 60px;
    height: 100%;
    line-height: 100%;
    background: none;
    padding: 0;
    text-align: center;
    font-size: 0;
    color: #d93;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0; }
  .woo-sidebar .widget_product_search form:before {
    content: "\f002";
    font-family: FontAwesome;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    font-style: normal;
    font-size: inherit;
    position: absolute;
    right: 20px;
    top: 20px;
    color: #444;
    -webkit-transition: all 0.3s ease-in-out 0s;
    -khtml-transition: all 0.3s ease-in-out 0s;
    -moz-transition: all 0.3s ease-in-out 0s;
    -ms-transition: all 0.3s ease-in-out 0s;
    -o-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s; }
  .woo-sidebar .widget_product_search form:hover:before {
    color: #d93; }

@media screen and (max-width: 767px) {
      .woo-sidebar .widget-area {
        margin-top: 30px; } }

.woo-sidebar .product-categories {
  padding-left: 0; }
  .woo-sidebar .product-categories li a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background-color: #fbfbfb;
    border-bottom: 2px solid #fff;
    display: block;
    padding: 6px 35px; }
  .woo-sidebar .product-categories li a .count {
    float: right; }

.woo-sidebar .woocommerce-widget-layered-nav-list {
  padding-left: 0; }
  .woo-sidebar .woocommerce-widget-layered-nav-list li a {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.02em;
    background-color: #fbfbfb;
    border-bottom: 2px solid #fff;
    display: block;
    padding: 6px 35px; }
  .woo-sidebar .woocommerce-widget-layered-nav-list li a .count {
    float: right; }

.woo-sidebar .widget_product_tag_cloud a {
  font-size: 14px !important;
  display: inline-block;
  padding: 5px 18px;
  margin-right: 6px;
  margin-bottom: 10px;
  color: #444;
  line-height: 24px;
  font-weight: 400;
  border: 1px solid #d93;
  -webkit-border-radius: 4px;
  -khtml-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  border-radius: 4px; }
  .woo-sidebar .widget_product_tag_cloud a:hover {
    background-color: #d93;
    color: #fff; }

.woo-sidebar .widget_products ul {
  margin: 0;
  list-style: none; }
  .woo-sidebar .widget_products ul li {
    clear: left; }
  .woo-sidebar .widget_products ul li:last-child img {
    margin-bottom: 0; }
  .woo-sidebar .widget_products ul img {
    float: left;
    margin-right: 15px;
    margin-left: 0;
    width: 60px;
    height: auto;
    box-shadow: none;
    margin-bottom: 20px; }
  .woo-sidebar .widget_products a {
    display: block;
    line-height: 24px; }
  .woo-sidebar .widget_products .product-title {
    text-transform: capitalize;
    line-height: 22px;
    margin: 0;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: -0.03em;
    font-weight: 600; }
  .woo-sidebar .widget_products .amount {
    line-height: 1; }
  .woo-sidebar .widget_products del {
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 13px; }
  .woo-sidebar .widget_products ins {
    float: left;
    margin-right: 5px;
    font-weight: 600;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    text-decoration: none;
    background: transparent;
    color: inherit; }
  .woo-sidebar .widget_top_rated_products ul {
    margin: 0;
    list-style: none; }
  .woo-sidebar .widget_top_rated_products ul li {
    clear: left; }
  .woo-sidebar .widget_top_rated_products ul li:last-child img {
    margin-bottom: 0; }
  .woo-sidebar .widget_top_rated_products ul img {
    float: left;
    margin-right: 15px;
    margin-left: 0;
    width: 60px;
    height: auto;
    box-shadow: none;
    margin-bottom: 20px; }
  .woo-sidebar .widget_top_rated_products a {
    display: block;
    line-height: 24px; }
  .woo-sidebar .widget_top_rated_products .product-title {
    text-transform: capitalize;
    line-height: 22px;
    margin: 0;
    font-family: 'Trebuchet MS', Helvetica, sans-serif;
    font-size: 14px;
    letter-spacing: -0.03em;
    font-weight: 600; }
  .woo-sidebar .widget_top_rated_products .amount {
    display: none; }
  .woo-sidebar .widget_top_rated_products del {
    display: none; }
  .woo-sidebar .widget_top_rated_products ins {
    display: none; }

.woo-sidebar .widget_price_filter {
  margin-bottom: 45px !important; }
  .woo-sidebar .widget_price_filter .wg-title {
    margin-bottom: 27px; }
  .woo-sidebar .widget_price_filter .price_slider {
    position: relative; }
  .woo-sidebar .widget_price_filter .price_slider_wrapper .ui-widget-content {
    background: transparent;
    -webkit-border-radius: 0;
    -khtml-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    margin: 0;
    padding: 6px 0 0 0; }
  .woo-sidebar .widget_price_filter .price_slider_wrapper .ui-widget-content:before {
    content: "";
    display: block;
    background-color: #eeeff0;
    height: 4px;
    width: 100%; }
  .woo-sidebar .widget_price_filter .ui-slider .ui-slider-range {
    position: absolute;
    background-color: #d93;
    left: 0;
    top: 6px; }
  .woo-sidebar .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; }
  .woo-sidebar .widget_price_filter .ui-slider .ui-slider-handle {
    width: 16px;
    height: 16px;
    position: absolute;
    top: 0;
    cursor: ew-resize;
    background: #d93;
    -webkit-border-radius: 50%;
    -khtml-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%; }
  .woo-sidebar .widget_price_filter .ui-slider .ui-slider-handle[style="left: 100%;"] {
    margin-left: -16px; }
  .woo-sidebar .widget_price_filter .ui-slider .ui-slider-handle:before {
    display: block;
    content: attr(data-title);
    position: absolute;
    top: 29px;
    left: 50%;
    font-size: 12px;
    font-weight: 600;
    color: #ababab;
    -webkit-transform: translateX(-50%);
    -khtml-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%); }
  .woo-sidebar .widget_price_filter .price_slider_amount {
    margin-top: 20px;
    display: block;
    overflow: hidden; }
  .woo-sidebar .widget_price_filter .price_slider_amount .button {
    padding: 7.5px 22px;
    font-size: 12px; }
  .woo-sidebar .widget_price_filter .price_slider_amount .button:before {
    display: none; }
  .woo-sidebar .widget_price_filter .price_label {
    display: inline-block !important;
    float: right; }

.widget_shopping_cart ul {
  padding-left: 0;
  margin-left: 0;
  list-style: none; }
  .widget_shopping_cart ul li {
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    clear: both; }

.widget_shopping_cart .remove {
  float: right;
  line-height: 1; }

.widget_shopping_cart a.remove + a {
  padding-left: 0px;
  display: block;
  line-height: 24px; }
  .widget_shopping_cart a.remove + a img {
    float: left;
    width: 30%;
    padding: 0 20px 0 0; }

.widget_shopping_cart .wp-post-image {
  position: absolute;
  left: 0;
  width: 50px;
  margin-right: 15px; }

.widget_shopping_cart h5 {
  font-size: 14px;
  margin-bottom: 0; }

.widget_shopping_cart .quantity {
  font-size: 12px;
  display: block;
  padding-left: 65px; }

.widget_shopping_cart .variation {
  margin: 0;
  padding-left: 65px; }
  .widget_shopping_cart .variation dt, .widget_shopping_cart .variation dd {
    margin-bottom: 0;
    display: inline-block; }
  .widget_shopping_cart .variation dt p, .widget_shopping_cart .variation dd p {
    margin: 0; }

.widget_shopping_cart .total {
  text-align: center;
  margin: 30px 0; }

.widget_shopping_cart .buttons {
  text-align: center; }
  .widget_shopping_cart .buttons a {
    font-size: 12px;
    line-height: 1;
    padding: 18px 20px;
    min-width: 120px;
    margin: 0 2.5px;
    -webkit-transition: all 0.3s linear 0s;
    -khtml-transition: all 0.3s linear 0s;
    -moz-transition: all 0.3s linear 0s;
    -ms-transition: all 0.3s linear 0s;
    -o-transition: all 0.3s linear 0s;
    transition: all 0.3s linear 0s; }
/* custom 5 columns */
@media (min-width: 576px) {
  .col-sm-24 {
    flex: 0 0 20%;
    max-width: 20%; } }

@media (min-width: 768px) {
  .col-md-24 {
    flex: 0 0 20%;
    max-width: 20%; } }

@media (min-width: 992px) {
  .col-lg-24 {
    flex: 0 0 20%;
    max-width: 20%; } }

@media (min-width: 1200px) {
  .col-xl-24 {
    flex: 0 0 20%;
    max-width: 20%; } }

@media screen and (min-width: 1200px) {
  .margin-left-70.wpb_column > .vc_column-inner {
    margin-left: 70px; }

  .max-width-396 {
    max-width: 396px; }

  .max-width-430 {
    max-width: 430px; }

  .max-width-500 {
    max-width: 500px; }

  .max-width-350 {
    max-width: 350px; }

  .max-width-320 {
    max-width: 320px; }

  .max-width-420 {
    max-width: 420px; }

  .max-width-600 {
    max-width: 600px;
    margin: 0 auto; }

  .wpb_single_image.min-width-115-percent img {
    min-width: 115%; }

  .el-max-width-270 .event-content-wrap {
    max-width: 270px;
    margin-left: 20px; }

  .modal.show .modal-dialog {
    -webkit-transform: translate(0, 32px);
    -khtml-transform: translate(0, 32px);
    -moz-transform: translate(0, 32px);
    -ms-transform: translate(0, 32px);
    -o-transform: translate(0, 32px);
    transform: translate(0, 32px); }

  .admin-bar .modal.show .modal-dialog {
    -webkit-transform: translate(0, 32px);
    -khtml-transform: translate(0, 32px);
    -moz-transform: translate(0, 32px);
    -ms-transform: translate(0, 32px);
    -o-transform: translate(0, 32px);
    transform: translate(0, 32px); } }

@media (max-width: 1199px) {
  .vc_empty_space {
    display: none; }

  .vc_empty_space.hide-in-sm {
    display: block; }

  .vc_empty_space.mobile-display-block {
    display: block; } }

@media (max-width: 991px) {
  .vc_empty_space.hide-in-sm {
    display: none; } }

.ef4-gtb-block {
  max-width: 610px;
  margin-right: auto;
  margin-left: auto; }

.ef4-gtb-block.align-wide {
  max-width: 1100px; }

.ef4-gtb-block.align-full {
  margin-left: calc(-100vw / 2 + 100% / 2);
  margin-right: calc(-100vw / 2 + 100% / 2);
  max-width: 100vw; }

.ef4-gtb-block.align-full img {
  width: 100vw; }

.ef4-gtb-block .alignleft {
  float: left;
  margin: 0 30px 30px 0; }
  [dir="rtl"] .ef4-gtb-block .alignleft {
    float: right;
    margin: 0 0 30px 30px; }

.ef4-gtb-block .alignright {
  float: right;
  margin: 0 0 30px 30px; }
  [dir="rtl"] .ef4-gtb-block .alignright {
    float: left;
    margin: 0 30px 30px 0; }

.ef4-gtb-block.ef4-block-separator {
  display: block;
  clear: both; }

.ef4-gtb-block .blockquote, .ef4-gtb-block blockquote {
  margin-top: 0;
  padding: 0; }
  .ef4-gtb-block .blockquote:before, .ef4-gtb-block blockquote:before {
    display: none; }

.ef4-gtb-block.wp-block-paragraph p {
  margin-bottom: 30px; }

.ef4-gtb-block.wp-block-latest-posts, .ef4-gtb-block.wp-block-categories, .ef4-gtb-block.wp-block-archives, .ef4-gtb-block.ef4-block-pullquote {
  margin-bottom: 30px; }

.alignwide {
  max-width: 1100px; }

ul.wp-block-gallery {
  padding-left: 0;
  padding-right: 0; }

.wp-block-heading > * {
  margin-bottom: 30px; }

.wp-block-column .ef4-gtb-block {
  max-width: 100%; }
