.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {
    0%, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    0%, 20%, 53%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }

    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-transform-origin: center bottom;
    -ms-transform-origin: center bottom;
    transform-origin: center bottom
}

@-webkit-keyframes flash {
    0%, 50%, to {
        opacity: 1
    }

    25%, 75% {
        opacity: 0
    }
}

@keyframes flash {
    0%, 50%, to {
        opacity: 1
    }

    25%, 75% {
        opacity: 0
    }
}

@-webkit-keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes rubberBand {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }

    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }

    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }

    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }

    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

@-webkit-keyframes shake {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@keyframes shake {
    0%, to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    to {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }

    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate(-3deg);
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(3deg)
    }

    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate(-3deg)
    }

    to {
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }

    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }

    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }

    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }

    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }

    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1)
    }
}

@-webkit-keyframes bounceInDown {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInDown {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInLeft {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes bounceInRight {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@keyframes bounceInRight {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }

    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }

    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }

    to {
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes bounceInUp {
    0%, 60%, 75%, 90%, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }

    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }

    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }

    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }

    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -300%, 0);
        transform: translate3d(0, -300%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -300%, 0);
        transform: translate3d(0, -300%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-300%, 0, 0);
        transform: translate3d(-300%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-300%, 0, 0);
        transform: translate3d(-300%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(300%, 0, 0);
        transform: translate3d(300%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(300%, 0, 0);
        transform: translate3d(300%, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }

    to {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -300%, 0);
        transform: translate3d(0, -300%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -300%, 0);
        transform: translate3d(0, -300%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-300%, 0, 0);
        transform: translate3d(-300%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-300%, 0, 0);
        transform: translate3d(-300%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(300%, 0, 0);
        transform: translate3d(300%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(300%, 0, 0);
        transform: translate3d(300%, 0, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0);
        visibility: visible
    }

    to {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0)
    }
}

@keyframes slideOutDown {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, 300%, 0);
        transform: translate3d(0, 300%, 0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-300%, 0, 0);
        transform: translate3d(-300%, 0, 0)
    }
}

@keyframes slideOutLeft {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-300%, 0, 0);
        transform: translate3d(-300%, 0, 0)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(300%, 0, 0);
        transform: translate3d(300%, 0, 0)
    }
}

@keyframes slideOutRight {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(300%, 0, 0);
        transform: translate3d(300%, 0, 0)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -300%, 0);
        transform: translate3d(0, -300%, 0)
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(0, -300%, 0);
        transform: translate3d(0, -300%, 0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    animation-name: slideOutUp
}

.animated:active {
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-duration: 1s;
    animation-duration: 1s
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

@keyframes flash {
    0%, 100%, 50% {
        opacity: 1
    }

    25%, 75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    animation-name: flash
}

@keyframes shake {
    0%, 100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    10%, 30%, 50%, 70%, 90% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    20%, 40%, 60%, 80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }
}

.shake {
    -webkit-animation-name: shake;
    animation-name: shake
}

@keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    40% {
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    60% {
        -webkit-transform: translateY(-15px);
        transform: translateY(-15px)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    10%, 20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
        transform: scale(0.9) rotate(-3deg)
    }

    30%, 50%, 70%, 90% {
        -webkit-transform: scale(1.1) rotate(3deg);
        transform: scale(1.1) rotate(3deg)
    }

    40%, 60%, 80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
        transform: scale(1.1) rotate(-3deg)
    }

    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

.tada {
    -webkit-animation-name: tada;
    animation-name: tada
}

@keyframes swing {
    20% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    40% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }

    60% {
        -webkit-transform: rotate(5deg);
        transform: rotate(5deg)
    }

    80% {
        -webkit-transform: rotate(-5deg);
        transform: rotate(-5deg)
    }

    100% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

@keyframes wobble {
    0% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }

    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg);
        transform: translateX(-25%) rotate(-5deg)
    }

    30% {
        -webkit-transform: translateX(20%) rotate(3deg);
        transform: translateX(20%) rotate(3deg)
    }

    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg);
        transform: translateX(-15%) rotate(-3deg)
    }

    60% {
        -webkit-transform: translateX(10%) rotate(2deg);
        transform: translateX(10%) rotate(2deg)
    }

    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg);
        transform: translateX(-5%) rotate(-1deg)
    }

    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: skewX(9deg);
        transform: skewX(9deg)
    }

    10% {
        -webkit-transform: skewX(-8deg);
        transform: skewX(-8deg)
    }

    20% {
        -webkit-transform: skewX(7deg);
        transform: skewX(7deg)
    }

    30% {
        -webkit-transform: skewX(-6deg);
        transform: skewX(-6deg)
    }

    40% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg)
    }

    50% {
        -webkit-transform: skewX(-4deg);
        transform: skewX(-4deg)
    }

    60% {
        -webkit-transform: skewX(3deg);
        transform: skewX(3deg)
    }

    70% {
        -webkit-transform: skewX(-2deg);
        transform: skewX(-2deg)
    }

    80% {
        -webkit-transform: skewX(1deg);
        transform: skewX(1deg)
    }

    100%, 90% {
        -webkit-transform: skewX(0deg);
        transform: skewX(0deg)
    }
}

@keyframes wiggle {
    0% {
        -webkit-transform: skewX(9deg);
        transform: skewX(9deg)
    }

    10% {
        -webkit-transform: skewX(-8deg);
        transform: skewX(-8deg)
    }

    20% {
        -webkit-transform: skewX(7deg);
        transform: skewX(7deg)
    }

    30% {
        -webkit-transform: skewX(-6deg);
        transform: skewX(-6deg)
    }

    40% {
        -webkit-transform: skewX(5deg);
        transform: skewX(5deg)
    }

    50% {
        -webkit-transform: skewX(-4deg);
        transform: skewX(-4deg)
    }

    60% {
        -webkit-transform: skewX(3deg);
        transform: skewX(3deg)
    }

    70% {
        -webkit-transform: skewX(-2deg);
        transform: skewX(-2deg)
    }

    80% {
        -webkit-transform: skewX(1deg);
        transform: skewX(1deg)
    }

    100%, 90% {
        -webkit-transform: skewX(0deg);
        transform: skewX(0deg)
    }
}

.wiggle {
    -webkit-animation-name: wiggle;
    animation-name: wiggle;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    50% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
        transform: perspective(400px) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px) scale(1);
        transform: perspective(400px) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        transform: perspective(400px) rotateY(0);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }

    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    80% {
        -webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
        transform: perspective(400px) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }

    100% {
        -webkit-transform: perspective(400px) scale(1);
        transform: perspective(400px) scale(1);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.flip {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
        transform: perspective(400px) rotateX(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
        transform: perspective(400px) rotateX(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

@keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
        transform: perspective(400px) rotateY(-10deg)
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
        transform: perspective(400px) rotateY(10deg)
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }

    100% {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    70% {
        -webkit-transform: scale(.9);
        transform: scale(.9)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
        transform: translateY(-30px)
    }

    80% {
        -webkit-transform: translateY(10px);
        transform: translateY(10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px)
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px)
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
        transform: translateX(30px)
    }

    80% {
        -webkit-transform: translateX(-10px);
        transform: translateX(-10px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
        transform: translateX(-30px)
    }

    80% {
        -webkit-transform: translateX(10px);
        transform: translateX(10px)
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
}

@keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    25% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    50% {
        opacity: 1;
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(.3);
        transform: scale(.3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
        transform: translateY(-2000px)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

@keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
        transform: translateY(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
        transform: translateY(2000px)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        transform: translateX(20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
        transform: translateX(-2000px)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        transform: translateX(-20px)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
        transform: translateX(2000px)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        transform: rotate(-200deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: center center;
        transform-origin: center center;
        -webkit-transform: rotate(200deg);
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -transform-origin: left bottom;
        -transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -transform-origin: left bottom;
        -transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(0);
        transform: rotate(0);
        opacity: 1
    }

    100% {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }

    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }

    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }

    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    20%, 60% {
        -webkit-transform: rotate(80deg);
        transform: rotate(80deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    40% {
        -webkit-transform: rotate(60deg);
        transform: rotate(60deg);
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out
    }

    100% {
        -webkit-transform: translateY(700px);
        transform: translateY(700px);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg);
        transform: translateX(-100%) rotate(-120deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg);
        transform: translateX(0px) rotate(0deg)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
        transform: translateX(100%) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    animation-name: rollOut
}

.to-be-animated {
    opacity: 0
}

.op-live-editor .to-be-animated, .to-be-animated.animated {
    opacity: 1
}

.animated.infinite {
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@font-face {
    font-family: flexslider-icon;
    src: url(fonts/flexslider-icon.eot);
    src: url(fonts/flexslider-icon.eot?#iefix) format('embedded-opentype'), url(fonts/flexslider-icon.woff) format('woff'), url(fonts/flexslider-icon.ttf) format('truetype'), url(fonts/flexslider-icon.svg#flexslider-icon) format('svg');
    font-weight: 400;
    font-style: normal
}

.flex-container a:hover, .flex-slider a:hover {
    outline: 0
}

.flex-control-nav, .flex-direction-nav, .slides, .slides>li {
    margin: 0;
    padding: 0;
    list-style: none
}

.flex-pauseplay span {
    text-transform: capitalize
}

.flexslider {
    padding: 0
}

.flexslider .slides>li {
    display: none;
    -webkit-backface-visibility: hidden
}

.flexslider .slides img {
    display: block
}

.flexslider .slides:after {
    content: "\0020";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

html[xmlns] .flexslider .slides {
    display: block
}

* html .flexslider .slides {
    height: 1%
}

.no-js .flexslider .slides>li:first-child {
    display: block
}

.flexslider {
    margin: 0 0 60px;
    border: 4px solid #fff;
    position: relative;
    zoom: 1;
    border-radius: 4px;
    -o-box-shadow: ''0 1px 4px rgba(0, 0, 0, .2);
    box-shadow: ''0 1px 4px rgba(0, 0, 0, .2)
}

.flexslider .slides {
    zoom: 1
}

.flexslider .slides img {
    -moz-user-select: none
}

.flex-viewport {
    max-height: 2000px;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

.loading .flex-viewport {
    max-height: 300px
}

.carousel li {
    margin-right: 5px
}

.flex-direction-nav a {
    text-decoration: none;
    display: block;
    width: 40px;
    height: 40px;
    margin: -20px 0 0;
    position: absolute;
    top: 50%;
    z-index: 10;
    overflow: hidden;
    opacity: 0;
    cursor: pointer;
    color: rgba(0, 0, 0, .8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, .3);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.flex-direction-nav a:before {
    font-family: flexslider-icon;
    font-size: 40px;
    display: inline-block;
    content: '\f001';
    color: rgba(0, 0, 0, .8);
    text-shadow: 1px 1px 0 rgba(255, 255, 255, .3)
}

.flex-direction-nav a.flex-next:before {
    content: '\f002'
}

.flex-direction-nav .flex-next {
    text-align: right
}

.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: .7;
    left: 10px
}

.flexslider:hover .flex-direction-nav .flex-prev:hover {
    opacity: 1
}

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: .7;
    right: 10px
}

.flexslider:hover .flex-direction-nav .flex-next:hover {
    opacity: 1
}

.flex-direction-nav .flex-disabled {
    opacity: 0 !important;
    filter: alpha(opacity=0);
    cursor: default;
    z-index: -1
}

.flex-pauseplay a {
    display: block;
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: 5px;
    left: 10px;
    opacity: .8;
    z-index: 10;
    overflow: hidden;
    cursor: pointer;
    color: #000
}

.flex-pauseplay a:before {
    font-family: flexslider-icon;
    font-size: 20px;
    display: inline-block;
    content: '\f004'
}

.flex-pauseplay a:hover {
    opacity: 1
}

.flex-pauseplay a.flex-play:before {
    content: '\f003'
}

.flex-control-nav {
    width: 100%;
    position: absolute;
    bottom: -40px;
    text-align: center
}

.flex-control-nav li {
    margin: 0 6px;
    display: inline-block;
    zoom: 1
}

.flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    background: #666;
    background: rgba(0, 0, 0, .5);
    cursor: pointer;
    text-indent: -9999px;
    -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    border-radius: 20px
}

.flex-control-paging li a:hover {
    background: #333;
    background: rgba(0, 0, 0, .7)
}

.flex-control-paging li a.flex-active {
    background: #000;
    background: rgba(0, 0, 0, .9);
    cursor: default
}

.flex-control-thumbs {
    margin: 5px 0 0;
    position: static;
    overflow: hidden
}

.flex-control-thumbs li {
    width: 25%;
    float: left;
    margin: 0
}

.flex-control-thumbs img {
    width: 100%;
    height: auto;
    display: block;
    opacity: .7;
    cursor: pointer;
    -moz-user-select: none;
    -webkit-transition: all 1s ease;
    transition: all 1s ease
}

.flex-control-thumbs img:hover {
    opacity: 1
}

.flex-control-thumbs .flex-active {
    opacity: 1;
    cursor: default
}

@media screen and (max-width:860px) {
    .flex-direction-nav .flex-prev {
        opacity: 1;
        left: 10px
    }

    .flex-direction-nav .flex-next {
        opacity: 1;
        right: 10px
    }
}

.op_slider {
    border: none;
    box-shadow: none
}

.op_slider .slides li {
    position: relative;
    margin-bottom: 0;
    line-height: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.op_slider .slides li * {
    line-height: normal
}

.flexslider .slides img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    margin: 0 auto
}

.op-slider-sizing-stretch .slides img {
    max-width: none;
    max-height: none;
    width: 100%
}

.flexslider {
    background: 0 0
}

.op_slider .slides li>a {
    display: block;
    overflow: hidden
}

.op_slider .op-slide-img {
    max-width: 100%
}

.flex-direction-nav li {
    margin-bottom: 0
}

.op_slider .flex-direction-nav a:after, .op_slider .flex-direction-nav a:before {
    font-size: 30px;
    height: 40px;
    width: 40px;
    color: #000;
    position: relative;
    top: 5px;
    text-shadow: 0 1px 2px #fff
}

.flex-direction-nav .flex-next, .flexslider:hover .flex-next {
    right: 15px
}

.flex-direction-nav .flex-prev, .flexslider:hover .flex-prev {
    left: 15px
}

.op-live-editor .flexslider .slides>li:first-child {
    display: block;
    overflow: hidden
}

.flex-control-nav {
    z-index: 20
}

.op-slider-style-1 .op-slide-description h1 {
    color: #000;
    font-size: 20px;
    margin-bottom: 20px
}

.op-slider-style-1 .op-slide-description {
    padding: 50px;
    height: auto;
    width: 50%;
    position: relative;
    float: left;
    color: #000;
    box-sizing: border-box
}

.op-slider-style-1 .slides .op-slide-img {
    width: 50%;
    float: right;
    border-radius: 0 4px 4px 0
}

@media screen and (max-width:767px) {
    .op-slider-style-1 .op-slide-description, .op-slider-style-1 .slides .op-slide-img {
        width: 100%;
        float: none
    }

    .op-slider-style-1 .op-slide-description {
        padding: 30px
    }
}

.op-slider-style-3 .op-slide-description h1 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px
}

.op-slider-style-3 .op-slide-description {
    padding: 20px;
    color: #fff;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(0, 0, 0, .4);
    box-sizing: border-box
}

.op-testimonial-slider {
    margin: 0 auto 2em;
    position: relative;
    color: #6a6a6a;
    background: 0 0;
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
    border: none;
    box-shadow: none;
    border-radius: 0;
    box-sizing: border-box
}

.op-testimonial-slider .op-testimonial-slides {
    overflow: hidden;
    clear: both
}

.op-testimonial-slider .op-testimonial-slider-title {
    text-align: center;
    color: #333
}

.op-testimonial-slider .op-testimonial-slider-right {
    overflow: hidden;
    display: block;
    min-height: 190px
}

.op-testimonial-slider blockquote {
    margin: 0 0 18px;
    border: none;
    background-color: inherit;
    font-size: 17px !important;
    line-height: 28px !important
}

.op-testimonial-slider blockquote:after, .op-testimonial-slider blockquote:before {
    content: "\"";
    font-family: sans-serif;
    margin: 0 5px 0 0
}

.op-testimonial-slider .op-testimonial-slider-photo-wrap {
    display: block;
    position: relative;
    float: left;
    margin: 0 14px 0 0;
    width: 202px;
    height: auto;
    padding-top: 16px
}

.op-testimonial-slider .op-testimonial-slider-photo-wrap::after, .op-testimonial-slider .op-testimonial-slider-photo-wrap::before {
    content: '';
    display: block;
    position: absolute;
    border-radius: 50%;
    box-shadow: 0 0 1px #57e493
}

.op-testimonial-slider .op-testimonial-slider-photo-wrap::before {
    width: 122px;
    height: 122px;
    top: 10px;
    left: 40px
}

.op-testimonial-slider .op-testimonial-slider-photo-wrap::after {
    width: 140px;
    height: 140px;
    top: 1px;
    left: 31px
}

.op-testimonial-slider .op-testimonial-slider-photo {
    display: block;
    text-align: center;
    margin: 0 auto;
    border-radius: 50%;
    max-width: 110px;
    height: auto;
    max-height: 110px;
    -o-object-fit: cover;
    object-fit: cover
}

.op-testimonial-slider .op-testimonial-slider-name {
    padding-top: 20px;
    display: block;
    text-align: center;
    font-size: 16px
}

.op-testimonial-slider .op-testimonial-slider-name strong {
    display: block;
    text-align: center
}

.op-testimonial-slider .op-btn-cta {
    margin: 0 0 0 18px;
    padding: .75em 1.25em;
    background-repeat: no-repeat;
    cursor: pointer;
    display: inline-block;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    -webkit-transition: all .25s ease;
    transition: all .25s ease;
    white-space: nowrap;
    border-radius: .35em;
    background-color: transparent;
    border: 1px solid #d9d9d9;
    color: #57e493
}

.op-testimonial-slider .op-btn-cta:hover {
    background-color: #57e493;
    border-color: #57e493;
    color: #fff
}

.op-testimonial-slider .flex-direction-nav a {
    width: 66px;
    height: 66px;
    z-index: 50;
    opacity: 1;
    text-align: left !important;
    text-indent: -99999px;
    -webkit-transform: scale(.8);
    -ms-transform: scale(.8);
    transform: scale(.8);
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right
}

.op-testimonial-slider .flex-direction-nav a:before {
    display: none
}

.op-testimonial-slider .flex-direction-nav a.flex-prev {
    background: url(data:image/png;base64,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) center center no-repeat
}

.op-testimonial-slider .flex-direction-nav a.flex-next {
    background: url(data:image/png;base64,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) center center no-repeat
}

.op-testimonial-slider .flex-direction-nav .flex-next, .op-testimonial-slider:hover .flex-direction-nav .flex-next {
    right: -50px
}

.op-testimonial-slider .flex-direction-nav .flex-prev, .op-testimonial-slider:hover .flex-direction-nav .flex-prev {
    left: -50px
}

.op-testimonial-slides li {
    display: none
}

.op-testimonial-slides li:first-child {
    display: block
}

.op-testimonial-slider-style-1 {
    max-width: 90%
}

.op-testimonial-slider-style-1 blockquote {
    font-style: italic;
    font-size: 18px;
    line-height: 28px
}

.narrow .op-testimonial-slider, .one-half .op-testimonial-slider {
    text-align: center
}

.narrow .op-testimonial-slider-style-1 .op-testimonial-slider-photo-wrap, .one-half .op-testimonial-slider-style-1 .op-testimonial-slider-photo-wrap {
    display: block;
    float: none;
    margin: 10px auto
}

.narrow .op-testimonial-slider-style-1 .flex-direction-nav .flex-prev, .one-half .op-testimonial-slider-style-1 .flex-direction-nav .flex-prev {
    left: 0;
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: center left;
    -ms-transform-origin: center left;
    transform-origin: center left
}

.narrow .op-testimonial-slider-style-1 .flex-direction-nav .flex-next, .one-half .op-testimonial-slider-style-1 .flex-direction-nav .flex-next {
    right: 0;
    -webkit-transform: scale(.5);
    -ms-transform: scale(.5);
    transform: scale(.5);
    -webkit-transform-origin: center right;
    -ms-transform-origin: center right;
    transform-origin: center right
}

.narrow .op-testimonial-slider-style-1 .op-testimonial-slider-right, .one-half .op-testimonial-slider-style-1 .op-testimonial-slider-right {
    min-height: 0
}

.narrow .op-testimonial-slider-style-1 blockquote, .one-half .op-testimonial-slider-style-1 blockquote {
    font-size: 18px;
    line-height: 24px
}

.narrow .op-testimonial-slider-style-1, .one-half .op-testimonial-slider-style-1 {
    max-width: 100%
}

@media only screen and (max-width:767px) {
    .op-testimonial-slider {
        text-align: center
    }

    .op-testimonial-slider-style-1 {
        max-width: 100%;
        padding-bottom: 0
    }

    .op-testimonial-slider-style-1 .op-testimonial-slides {
        margin-bottom: 0
    }

    .op-testimonial-slider .op-testimonial-slider-photo-wrap {
        display: block;
        float: none;
        margin: 10px auto
    }

    .op-testimonial-slider .flex-direction-nav a {
        top: 20%
    }

    .op-testimonial-slider .op-testimonial-slider-right {
        min-height: 0
    }

    .op-testimonial-slider-style-1 blockquote {
        font-size: 18px;
        line-height: 24px
    }

    .op-testimonial-slider .flex-direction-nav {
        position: absolute;
        top: 40%;
        width: 100%
    }

    .op-testimonial-slider .op-testimonial-slider-title {
        margin-bottom: 30px
    }

    .op-testimonial-slider-style-1 .flex-direction-nav .flex-prev, .op-testimonial-slider-style-1:hover .flex-direction-nav .flex-prev {
        left: 0;
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        transform: scale(.5);
        -webkit-transform-origin: center left;
        -ms-transform-origin: center left;
        transform-origin: center left
    }

    .op-testimonial-slider-style-1 .flex-direction-nav .flex-next, .op-testimonial-slider-style-1:hover .flex-direction-nav .flex-next {
        right: 0;
        -webkit-transform: scale(.5);
        -ms-transform: scale(.5);
        transform: scale(.5);
        -webkit-transform-origin: center right;
        -ms-transform-origin: center right;
        transform-origin: center right
    }
}

.op-testimonial-slider-style-2 {
    margin: 0 auto 40px;
    padding: 0;
    width: 580px;
    max-width: 100%;
    position: relative;
    background: #F7F7F7;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    border: 1px solid #dfdfdf;
    border-radius: 6px;
    box-sizing: border-box
}

.op-testimonial-slider-style-2 .flex-control-paging li a {
    width: 8px;
    height: 8px
}

.op-testimonial-slider-style-2 .flex-control-paging li a, .op-testimonial-slider-style-2 .flex-control-paging li a.flex-active {
    background: #acb0b4;
    box-shadow: none
}

.op-testimonial-slider-style-2 .flex-control-paging li a.flex-active, .op-testimonial-slider-style-2 .flex-control-paging li a:hover {
    background: #6B6D72
}

.op-testimonial-slider-style-2 .flex-control-nav {
    bottom: -40px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.op-testimonial-slider-style-2 .flex-direction-nav a {
    width: 42px;
    height: 42px;
    z-index: 50;
    opacity: 1;
    text-align: left !important;
    text-indent: -99999px;
    margin: 0;
    -webkit-transition: none;
    transition: none
}

.op-testimonial-slider-style-2 .flex-direction-nav a:before {
    display: none
}

.op-testimonial-slider-style-2 .flex-direction-nav a.flex-prev, .op-testimonial-slider-style-2:hover .flex-direction-nav a.flex-prev {
    background: url(data:image/png;base64,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) left 1px no-repeat;
    left: -77px
}

.op-testimonial-slider-style-2 .flex-direction-nav a.flex-next, .op-testimonial-slider-style-2:hover .flex-direction-nav a.flex-next {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGkAAABpCAYAAAA5gg06AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAADLxJREFUeNrsXQuUVVUZPnNDRSMNxFy9VGqlvcOCMNF0yEdILkZKEETX3F7oCmXUAhMpWGqKimRKGIFDj0HFtcAegDLYDA5gIRIsA0kSKrVWPoABIit1+r5z/329c+fc59mvS+df619n7szcvf9vf/vs57/3X9fV1RVUI6s71r4Hj7Ogp0E/DB0A7QPtDd0HfQn6R+jvoW3QtWecPvS/wUEiZeB/EfoMdCO0PQ7+ukpIgmG98LgIejn0OOgq6BroVuhO6H7oq9C3QY+BngQ9GVoPHQq9BzoXxj5do8QQ/2joBOj7SuB/B/RE6CehZwr+uYJ/mxGSYOA1eNwCfRB6N/RxZNZVAUAaPQbaJDWLxm6oIYIU/sXQH0E7qsB/keBvqwR/SZKQ+Lny5rwOnYyEn9VQGy+F3gxdgPSu85yc4YL/P9ApGvGT8Pnl4C9KEhJkAldDv4LEfqEZ/Nvx+CF0D3QO0t/iIUFT8Zgk+H9lAP886MvQu4p1AQVJQiJkmm/R+UjgeYMF8Q087oQORz6tHhF0Gx6fhY6CXS8YzOcKPGZDz0Y+bWWThC+yKTpVCNproUAuwON+6DDkt9YDgoj/M9ARsOefFvK7EI+fF8LfgyRp4vilM/GFTosFczEeP4P2Q757HDdxDRxeO8LfNz/fVN4/fh6Pq+QN6rRZOMivRTrTGxwSdJ6Mvhoc4Z8ZhT+V9/ly6SSfd1RO06CDUFgTHOVP/GmTfVAZ+IcA/9cjmzuZB5wKA7/ouD/4BB6cPxwOW16zmO83WUDI80LH+AcK/sNgy+vZN0nG7mxqJrvutGHYZjx+Cr3C8koCBwtTPMC/CY+FMvTv1txxJeCBuBM1jcIKczsKL2Upv7HQ+4B/h0f4b1P4VSF8DfpjX+YoKKztsnRSbynLCbLU4wv+P/EF54/83AtsvTfILBY+piuT5pbFjXxwNSF98ei+VSbD0Q6HpY8abuqOx4Mr2uti4N2NB1cQ0sC7UJNpCn8b3yQut6+qZLGwhMGzhaBADK9WlkPPs1Bxz4a2xsSvcDYLfh3SKraFzR33Q9ZoIqhZ5hlK0jFe+X/gsR81/f2GSdKBPxdnk5RD3Cbvr3i8AfwnkKQPQZ/WRFCjfOSKQb2GV5+Lrh8xTFJs/IKzXnBTGnUQBfkD9KMp6Y92GCCoXYORrE3HGSaJO6o74yYieHUTxUn1u0kSdxH3aSZok6YC3Cf2mZRY+POI2qSZKC5NHUWSDoP+W0OnaUK4Fd3bMEm90f6/ajD9OOXzBscNJIn78n1i1J4LZIasDGpD7RmoCWAfsc+kdKJzPkrTwGmgzO8UMQulfKqVI6AHSBJHUcfGfM3Thog6VuwzKa9AjzZEUDpmsv2gu0gS3Y5O1NAeRxHVEDPZD0C3GyaJnjsfjElQgwGCKJx+PEuS2NlpaZ4iiKq605RFz49BnzJMkg78zboJAn6OFbgjsDklyy6f04VYDJyhIalBnCegUzfdJ+lcI5yh6Q2iDIFuAP4Dde2PrTkEH7iP/y784uXAExFHmN2waabhfA6VIfg7kdcuj/DfgcdzsGl2Slxf6Vk61iMD2dSNDzLOGUYF+OlPNz/IOC76hH8cdBE/q60Kur9Okj/6IDTwUYvb2MTfBPxv8QQ/9/dWyfplhiRxzOuQ2uu6FrH5nSoFZ0WAn2tkjweZrQHX+Nn8ficXfyqvNs0Uz0qXQo/Zh1Fwv7Wcry/46WuyItf/LpVTm9bjsSDIuP66qkUfl1p0h+28pVJwKH23Q/wcctNjaFbu71N5htIxcg/+eaIDA7k08wBrEuz4i4tCEvx7xfXZFf6rYMdzBUkSYU36Pr7UYNFArlEthT4EA+9x3NzMgd4Jm0Zaxs8DEUuBv4evRSqiNvFAFLetF+PLl1gwkD4Qj0A3Iu9vu+645XTHCME/zgJ+rs+tkolrJP5ipyrosM7Oi5PJaSYcFZEHl314KGsJ0p8aeCSwjdvqdM75HnS6IfwDpYl7EOlfX+j/UkVqFIekrOVv5fBcOjVtw0zotfiRg5Uf+EaQ4KffQ3/okSRLBjW68bOMZxUjqOiblJfoBOmr6PV/s/jFVTuTphvvdznM5ihOHC68Fth9GR53QX/CliUG/kNkLsYByvJy8VdyZpYFTNff26G/CTLniR4p5dwvk7NPQ0fJ0kt7kDkv2hHUkETgvw+6skL87ONWCP715eZdV+kVAeL6OkwKnCcBufbHqwDozMEDZ0yQy+zq9DmPz/OagCUkFsb9PahhycHPtc5zBD/3pP4s+LnlzS1/dfqc3k4bBf8itdRTidRVe49DjtEDhIwB0n7XBRmfCXWPw1Ybp+Uckkbc3DQ8QfCTRPpMqHsctnC7IU4e3Kpw3UG7LmTv8aeCRLyXhKQakNh9UiLJm5RIQlJCUiIJSQlJiSQkJZKQlJCUSEJSIglJCUmJJCQlJCWSkJRIQtJBLb1uuOlWpwZMm+r2HsRawJ+8SUlzl4gOSbbPa6FPitGW88ZFXi2QGz+IlynRMZAXIPGmERU/iMfwO9D+HjTxk3Lwnx5krmPjbWd9IvA/KfjXVIu/ojcJhpFUHrrlvdU0kndA5MYP4lF7OgbySCOvglHxg+oFDM/ezIWxW2uUGOKn5+pXc/DTXZpnjnkd3f4I/J8S/KdVi79skmAg783mtcw8qjFP3oyuCgAeLQCbBBiNXV9DBH0ryByDoQ/4/Crw84SGip+0WvDriZ+ExHmgijfP/ws6BQnv0FAbxwvhzUjvOs/J+YLgp6vwZNi7UwP+S4Xwe8vBX5QkJKjiB6WR2DLN4Nkk8DgNndznIP0tHhKk8DfCvuWu8BckCYnMlI5xJBJ4wWBBZOMnIZ9WjwjyBn8kSfiiih90Pr64z0KBZOMnIb+1HhDEe41O8QV/D5LkFQ/jB+ELnRYLRsUP6o98dzkkiEcj2Q+dAzv2OsDfD/nuKbjigH/Mxg+ySZCsYbVIZzrDIUEcJPE03yibBOXgj4wfFRU/KW2yDS4hPEt7MgproqP8if/LwP83R/nzNpTBwB8dP0nmQafAwC857g+4esHwPIfDltcs5st50CDkOcYx/mz8JNjyZvwkGbtzsOA8fpLMxnnK+0rLKwlsaq/1AD+vG703iIifxJnw/XEnqholjB+EwrMaPynuRFWj3JqL38v4SSgsxg/iVTbnWsrSq/hJgv/N+Elgi/GTuILdobH5aAwkfhIyrDZ+Eq+zYTD4FYabutjxk5BGNn4S8C7UZBqvNuXyWRg/KYwfVMliYQmDdcVPIjnDLVRc3sWwMib+bPwkwa9DeCnUWaq50xY/CQZqi5+EQgvjJyHNmoufJOUQt8kL4ychrTB+Ei+K2KaJoEb5GEZ/0fDq24ifFBu/4OwW7UUHUYHO+EkFCGrXYGTNxE8SvLqJ0hM/qQBB/5fxkwS3TqKS+EkicfGbLB898ZNQe3rET5KlDR1iI34SF1KP1Lik0y36i5RPtaIvfhIMSRsiykb8JMbn6G+IIL/iJxUgKu6NyGH8IMMk8bq3k2IS1GCAoCx+rfGTIohqjgGci55h/CDDJGmPn6SDIOA3Fz9JDNSxcTcY+hTSM90n8arOYZrSmqHpDaKE8ZOQ3gHWVu6pDwVzx+AXL2kiajoe02MmwybkIQvLQlyzXE6/QNj9SpV4+xqwiwOOpeGykLi+MpiGN/GTpKnjnn+L6byAX8VPGuMZ/nD7JCRJfk+SrpQ/+iBh/CSL2/hh/CSP8HN/r1XWLzMk4cO2wJP4SSgo6/GTgJ9rZOsCD+InyYChePwk8ax0KYwf9DAKzkn8JA/wM37UMuBf14MkcZ5fYLMGR9QiFT9plu28gf93Qca3YI5D/JwK0GOoW/yoVJ6hdB7f7cKlCnkyfhB3Y6+WvZTAAVHE3ymuvy7w04u1CXaUFz9Jw2pBJQYeIcPtpTDQi/hJsGmkZfy/FPzz8v+eiqhN2fhJ+PIlFgxU8ZOeRN7O4yfJ6YYRgn+cBfwqftIThfAXO1Wh4ifRveh6E46K0gZzLrAE6XsVnge2qfhJYfwog/jZxC9G+gXD85Q6n8Ql/BuDTNSSy3Rt5iHdQ2UUQ7fiSVGvuCdEsZ+gb/Zgwb9ZI/5rZJBUEn9ZxzHFN5ltNb3+b0Giz8SYA40WcsL4Qa4GCRXa3S1+FGzeHgP/eJkH/pqj2PxBQtUk5SxVTJTh8WpZsllZKhOpNUNkLWqctL9zfTiHVMVSjYqf1CbNdLn4edapQSbLywT/E+XmXfE9DuL6eoZkSJ81bvHy9DXfiN3ybyp+koofxGPyXCxcpJY6alUEP/0YxpaBX8WP2iCj1xbgf7HSPGNftiEeoLzHgF49ajVYxU8K4wdxuT04SKUE/jB+VFz8/xNgAEbu0OtT+txyAAAAAElFTkSuQmCC) right 1px no-repeat;
    right: -77px
}

.op-testimonial-slider-style-2 .flex-direction-nav a.flex-prev:hover {
    background-position: left bottom
}

.op-testimonial-slider-style-2 .flex-direction-nav a.flex-next:hover {
    background-position: right bottom
}

.op-testimonial-slider-style-2 .op-star-wrap {
    background: #00B7E2;
    display: block;
    padding: 20px 0 15px;
    text-align: center;
    color: #fff;
    border-radius: 6px 6px 0 0
}

.op-testimonial-slider-style-2 .op-testimonial-slides li {
    margin-bottom: 0
}

.op-testimonial-slider-style-2 .op-star-icon {
    display: inline-block;
    width: 23px;
    height: 20px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACgAAAAmCAYAAAC29NkdAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXJJREFUeNrMmP2RgjAQxcEGLiXEDuzg7MB0oHZACXZACdgBdoBWEDvADrCD1YxhvNOQzwX2zfCPOvBzN9n3SJYhCgAkvCQyalJQ8JakCFjBf3FKcAy+VVAC3BkAW0qANZi1otreXiUFwMIC2FIAlGDXek44Dm5VKc9YJDIKpN+MVsEW/CQmr6AeIb5usYl9Tq7/nWle/Qx83osHACqdHd9fhgAhIyzV4jt1wKVH+eeQKtz+76I/AB1Jo4+rqf+8upnhVK5kLvNvZgDrgublxC2XUQlcrYMAt4hVmWpnzBJIp2tpYu4braUhXnxCnHHXPM9v2ICYsUmEOImvtoiAzHf9LXw3iiPZxOgXs4JjpGKBCbgZAZD7vDdjV1DtzOOkG+/j1MrqCL3J69Dh40ASA7CKcYQAB+KpgLb4VVuj0bsDtnsUKXArDB91VLNOASxjquY4pjNVk8UCNh9VKxDWNDcE4nVqBRvsI12djjp9Dd77IcAAb1oPD0JE6n4AAAAASUVORK5CYII=) center center/20px 19px no-repeat
}

.op-testimonial-slider-style-2 .op-star-icon.not {
    opacity: .6
}

.op-testimonial-slider-style-2 .op-testimonial-slide-text {
    padding: 20px 15px;
    width: 100%;
    background-color: #f7f7f7;
    display: table;
    vertical-align: middle;
    height: auto;
    text-align: center;
    box-sizing: border-box
}

.op-testimonial-slider-style-2 .op-testimonial-slide-text-cell {
    display: table-cell;
    height: 100%;
    vertical-align: middle
}

.op-testimonial-slider-style-2 blockquote {
    margin: 0 0 18px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
    font-style: normal
}

.op-testimonial-slider-style-2 blockquote:after, .op-testimonial-slider-style-2 blockquote:before {
    margin: 0;
    content: "\""
}

.op-testimonial-slider-style-2 .op-testimonial-slide-text-name {
    font-size: 18px;
    line-height: 25px
}

.op-testimonial-slider-style-2 .op-testimonial-slide-text-name strong {
    display: block;
    text-align: center;
    font-size: 18px;
    line-height: 25px
}

.narrow .op-testimonial-slider-style-2 .flex-direction-nav .flex-next, .narrow .op-testimonial-slider-style-2 .flex-direction-nav .flex-prev, .one-half .op-testimonial-slider-style-2 .flex-direction-nav .flex-next, .one-half .op-testimonial-slider-style-2 .flex-direction-nav .flex-prev, .op-testimonial-slider-style-2 .op-testimonial-slider-title {
    display: none
}

@media only screen and (max-width:767px) {
    .op-testimonial-slider-style-2 .flex-direction-nav .flex-next, .op-testimonial-slider-style-2 .flex-direction-nav .flex-prev {
        display: none
    }
}

.op-testimonial-slider-style-3 {
    margin: 0 auto 2em;
    padding: 20px 30px 50px;
    position: relative;
    background: #f2f9ff;
    color: #6a6a6a;
    font-style: normal;
    font-size: 16px;
    line-height: 24px;
    box-sizing: border-box
}

.op-testimonial-slider-style-3 .flex-control-nav {
    bottom: 5px;
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.op-testimonial-slider-style-3 .op-testimonial-slides {
    margin-bottom: 10px
}

.op-testimonial-slider-style-3 .ts-right {
    overflow: hidden;
    display: block
}

.op-testimonial-slider-style-3 blockquote {
    font-size: 16px;
    line-height: 24px;
    font-style: normal;
    margin: 0 0 18px;
    padding: 0
}

.op-testimonial-slider-style-3 blockquote::after, .op-testimonial-slider-style-3 blockquote::before {
    display: none
}

.op-testimonial-slider-style-3 .op-testimonial-slide-photo {
    display: block;
    float: left;
    margin: 0 55px 0 0;
    border-radius: 150px;
    max-width: 100px;
    height: auto;
    max-height: 100px;
    -o-object-fit: cover;
    object-fit: cover
}

.op-testimonial-slider-style-3 .op-testimonial-slide-name {
    font-size: 14px
}

.narrow .op-testimonial-slider-style-3 .op-testimonial-slide-photo, .one-half .op-testimonial-slider-style-3 .op-testimonial-slide-photo {
    display: block;
    float: none;
    margin: 10px auto
}

.narrow .op-testimonial-slider-style-3, .one-half .op-testimonial-slider-style-3 {
    text-align: center
}

@media only screen and (max-width:767px) {
    .op-testimonial-slider-style-3 .op-testimonial-slide-photo {
        display: block;
        float: none;
        margin: 10px auto
    }

    .op-testimonial-slider-style-3 {
        text-align: center
    }
}

.op-testimonial-slider-style-4 {
    margin: 0 auto 60px;
    padding: 0;
    position: relative;
    color: #617178;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    box-sizing: border-box
}

.op-testimonial-slider-style-4 .op-testimonial-slides {
    margin: 0;
    overflow: hidden
}

.op-testimonial-slider-style-4 .op-testimonial-slides li {
    padding: 0;
    text-align: center
}

.op-testimonial-slider-style-4 .op-testimonial-slider-subtitle, .op-testimonial-slider-style-4 .op-testimonial-slider-title {
    text-align: center;
    color: #329bc9;
    margin: 0;
    font-weight: 400;
    font-size: 30px;
    line-height: normal
}

.op-testimonial-slider-style-4 .op-testimonial-slider-subtitle {
    color: #475b64;
    font-size: 18px;
    margin-bottom: 20px
}

.op-testimonial-slider-style-4 blockquote {
    margin: 0 0 20px;
    padding: 0;
    color: #617178;
    font-style: italic;
    font-size: 16px;
    line-height: 1.5
}

.op-testimonial-slider-style-4 blockquote::after, .op-testimonial-slider-style-4 blockquote::before {
    content: "\"";
    font-style: italic;
    margin: 0
}

.op-testimonial-slider-style-4 .op-testimonial-slide-photo-wrap {
    display: block;
    position: relative;
    line-height: 25px
}

.op-testimonial-slider-style-4 .op-testimonial-slide-photo {
    text-align: center;
    margin: 0 10px 0 0;
    max-width: 50px;
    height: auto;
    vertical-align: middle;
    border-radius: 100%;
    max-height: 50px;
    -o-object-fit: cover;
    object-fit: cover
}

.op-testimonial-slider-style-4 .op-testimonial-slide-name {
    font-size: 14px;
    color: #96a2a7
}

.op-testimonial-slider-style-4 .op-testimonial-slide-name strong {
    color: #2d393e;
    font-weight: 400
}

.flexslider.op-testimonial-slider.op-testimonial-slider-style-4 li:first-child, .op-testimonial-slider-style-4 .flex-control-nav li {
    display: inline-block
}

.op-testimonial-slider-style-5 {
    margin: 0 auto 2em;
    padding: 0;
    position: relative;
    color: #617178;
    font-size: 14px;
    line-height: 23px;
    box-sizing: border-box
}

.op-testimonial-slider-style-5 .op-testimonial-slides {
    overflow: hidden
}

.op-testimonial-slider-style-5 .op-testimonial-slides li {
    padding: 0
}

.op-testimonial-slider-style-5 .op-testimonial-slider-title {
    margin: 0 0 25px;
    text-align: center;
    font-weight: 400;
    color: #475b64
}

.op-testimonial-slider-style-5 blockquote {
    margin: 0;
    color: #40413e;
    font-weight: 300;
    font-size: 16px;
    line-height: 1.5;
    text-align: center
}

.op-testimonial-slider-style-5 blockquote strong {
    color: #000;
    font-weight: 700;
    font-style: italic
}

.op-testimonial-slider-style-5 blockquote a {
    text-decoration: none;
    border-bottom: 1px dotted #c13290;
    color: #c13290;
    white-space: nowrap;
    margin-left: 3px
}

.op-testimonial-slider-style-5 blockquote::after, .op-testimonial-slider-style-5 blockquote::before {
    display: none
}

.op-testimonial-slider-style-5 blockquote span {
    font-style: normal
}

.op-testimonial-slider-style-5 blockquote span::after, .op-testimonial-slider-style-5 blockquote span::before {
    content: "\"";
    font-style: italic;
    margin: 0
}

.op-testimonial-slider-style-5 .op-testimonial-slide-photo-wrap {
    display: block;
    text-align: center
}

.op-testimonial-slider-style-5 .op-testimonial-slide-photo {
    text-align: center;
    margin: 0 auto 15px;
    max-width: 102px;
    height: auto;
    vertical-align: middle;
    border-radius: 100%;
    max-height: 100px;
    -o-object-fit: cover;
    object-fit: cover
}

.op-testimonial-slider-style-5 .flex-direction-nav a {
    width: 26px;
    height: 26px;
    z-index: 50;
    text-align: left !important;
    text-indent: -99999px
}

.op-testimonial-slider-style-5 .flex-direction-nav a:before {
    display: none
}

.op-testimonial-slider-style-5 .flex-direction-nav a.flex-next, .op-testimonial-slider-style-5 .flex-direction-nav a.flex-prev {
    opacity: 0
}

.op-testimonial-slider-style-5 .flex-direction-nav a.flex-prev, .op-testimonial-slider-style-5:hover .flex-direction-nav a.flex-prev {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAadJREFUeNq8lr1OAkEUhe9ukBAijUhJI4l/DSUxUVELLTDR8BS+hJW8gJ2EZ9BoYki0EA0GY0njX0dN1oawFgT1XHOHIG52mWXXk3yEzM7cs3N35s4YnU6HPDQP9sE2WAZJabfAE7gG5+DNLYjhYpQHR2CNxlMdHII7p4emQ1sMnICahglJ35qMjXnNaAZcghWaTA9gF7w7zSgOqgGYkMSoSsw/RscgR8EpJzF/pS4v+TUoWH2BTV4gakalEExIYpZU6rJg1U8U27ap1Wp5dePY2Qh+in4M2u022d3uuEOKbLQeosFgj7HRQogGSouRodoVhoFS0nR7+tnvU6/XC2T5mVKFHTWdSFAmk6HZVIoMY6LVb7HRq+tGgEEKRnMwZGOfejGlvHsqGo1SOp3+YQr/NVVno1OdET7TecZGTXCvVVf00smxm6qoboCb/yiqt6ASQlGtqKN9+ISNy6yCOpMewRbv+9GDjxsK0iEIk4IycbqcWPIWZcmvn29Slu9ied2C+C0OxLChYdIQAx77oXOvG1ResAd2wNLIBfIZXIEL3v1uQb4FGAD5eoOYqN/w7QAAAABJRU5ErkJggg==) center center no-repeat;
    left: 0;
    right: auto
}

.op-testimonial-slider-style-5 .flex-direction-nav a.flex-next, .op-testimonial-slider-style-5:hover .flex-direction-nav a.flex-next {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABoAAAAaCAYAAACpSkzOAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAbJJREFUeNq8lk1LAmEQx2dlE1nzkivWWejt4lGCSuxQB4PCT+GX6JRfoFvSZygKQqhDGkbR0Utvt/0A20XcDmL1H5gF27Z9c23gJ/I4O39nntl5HqXf75OPLYJ9sA1WQVbWTfAErsE5ePMKongIlcEh2KBg1gUH4Nbtx4TLWgocg3YIERLftjyb8stoDlyCNZrMHsAueHfLSAOtGERIYrQk5i+hI1Ci+KwkMX+Uriz1VShe+wIVbhA7o8YUREhiNuzSFcG6l7dhGGRZVlQxjl1U8VHz87QGAzKAlk5TLpcjTdPCitXUMO/KBIKbLLQc9u9FEFxSx2YXTVEwm4ijtYbDIX2ORp4+qkzhhUi9qyiU1XXSAX/3MJOFXqIIzWYylM/nKZlMBnF/VWW8V4IKzCDwPARYKIR1eY/OgpZJx4YXCoWwImynnFEP3HlNh5BlchrH7v3HUN0CHbu9+fg9mcJQ5Zgd5wnLb9tNjGfSo2RjOQ8+XqiKQxwiVVvE7XJiSqs3pb5R9qQpmZh+t6APUBfB+xAi9yJQH88kyL3ONp7ue2AHrDgukM/gClzIhPnTvgUYADz8eZbHYX/mAAAAAElFTkSuQmCC) center center no-repeat;
    right: 0;
    left: auto
}

.narrow .op-testimonial-slider-style-5:hover .flex-direction-nav a, .one-half .op-testimonial-slider-style-5:hover .flex-direction-nav a, .op-testimonial-slider-style-5:hover .flex-direction-nav a {
    opacity: 1
}

.narrow .op-testimonial-slider-style-5 .flex-direction-nav a.flex-next, .one-half .op-testimonial-slider-style-5 .flex-direction-nav a.flex-next, .op-testimonial-slider-style-5 .flex-direction-nav a.flex-next {
    right: 30px;
    left: auto;
    top: 110px
}

.narrow .op-testimonial-slider-style-5 .flex-direction-nav a.flex-prev, .one-half .op-testimonial-slider-style-5 .flex-direction-nav a.flex-prev, .op-testimonial-slider-style-5 .flex-direction-nav a.flex-prev {
    right: auto;
    left: 30px;
    top: 110px
}

@media only screen and (max-width:850px) {
    .op-testimonial-slider-style-5 .flex-direction-nav {
        top: 0
    }

    .op-testimonial-slider-style-5 .flex-direction-nav a.flex-prev, .op-testimonial-slider-style-5:hover .flex-direction-nav a.flex-prev {
        left: 20px
    }

    .op-testimonial-slider-style-5 .flex-direction-nav a.flex-next, .op-testimonial-slider-style-5:hover .flex-direction-nav a.flex-next {
        right: 20px
    }
}

.op-testimonial-slider-style-6 {
    margin: 0 auto 60px;
    position: relative;
    color: #617178;
    font-weight: 400;
    font-size: 14px;
    line-height: 23px;
    box-sizing: border-box
}

.op-testimonial-slider-style-6 .op-testimonial-slides {
    margin: 0;
    overflow: hidden
}

.op-testimonial-slider-style-6 .op-testimonial-slides li {
    padding: 0
}

.op-testimonial-slider-style-6 .op-testimonial-slider-subtitle, .op-testimonial-slider-style-6 .op-testimonial-slider-title {
    text-align: center;
    color: #329bc9;
    margin: 0;
    font-style: normal;
    font-size: 30px;
    line-height: normal
}

.op-testimonial-slider-style-6 .op-testimonial-slider-subtitle {
    color: #475b64;
    font-size: 18px;
    margin-bottom: 20px
}

.op-testimonial-slider-style-6 blockquote {
    margin: 0 15px;
    padding: 0;
    color: #7e8e99;
    font-size: 14px;
    font-style: normal;
    line-height: 22px;
    text-align: center;
    border: 1px solid #d2d7db;
    background: #fff
}

.op-testimonial-slider-style-6 blockquote::after, .op-testimonial-slider-style-6 blockquote::before {
    display: none
}

.op-testimonial-slider-style-6 blockquote .quote {
    margin: 15px 0;
    padding: 15px 22px 10px;
    font-size: 16px;
    line-height: 1.5
}

.op-testimonial-slider-style-6 blockquote .quote::after, .op-testimonial-slider-style-6 blockquote .quote::before {
    content: "\"";
    font-style: italic
}

.op-testimonial-slider-style-6 .op-testimonial-slide-photo-wrap {
    display: block;
    position: relative;
    text-align: center;
    background: #f4f7f9;
    border-top: 1px solid #d2d7db;
    padding: 27px 0
}

.op-testimonial-slider-style-6 .op-testimonial-slide-photo-wrap .curret {
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAANCAIAAADNBWIKAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAS1JREFUeNqckn1LwzAQxpsujiUR5pL0RfD7fx5BEEG/wNrcpS3iNllbby12MrvO+fyXu+THc08ueHx+zcE3TdP+S1hUTy9v4cN9unYefEml4BrRdUKsHaRJHCq1SBObgc+xvArhiyoHtEbfKhnWdSOFSCILUNBof6RgWeXYI1Rd1yGVKBQpRRQbh2Xm8CKCxnfgjdFSSkJQhfcNAikpWGSyHOgYWz2F8IXRKyUlveqL4dDuHC0iq4Eyy8cd0XuHhSWEOiKOXr5BLY1mA+0cMHbqCHyBviQXQoifiFNKF35LowWRcV1AA+gwCFbGrOgrfu8EH/vFDmT0AMI+izMIEnvf7EYjYIx9bLaAOGMHLe+W5xBTlF77er/bfs7nN6SJa3x6NfiMc8UvbtCXAAMAS+ro/E8TEyYAAAAASUVORK5CYII=) center center no-repeat;
    display: block;
    width: 23px;
    height: 13px;
    position: absolute;
    top: -1px;
    left: 50%;
    margin-left: -12px
}

.op-testimonial-slider-style-6 .op-testimonial-slide-photo {
    text-align: center;
    margin: 0 auto;
    max-width: 96px;
    height: auto;
    vertical-align: middle;
    border-radius: 100%;
    max-height: 100px;
    -o-object-fit: cover;
    object-fit: cover
}

.op-testimonial-slider-style-6 .op-testimonial-slide-name {
    font-size: 16px;
    display: block;
    margin-bottom: 35px
}

.op-testimonial-slider-style-6 .op-testimonial-slide-name strong {
    color: #4d4d4d;
    font-weight: 400;
    display: block
}

.op-testimonial-slider-style-6 .flex-direction-nav a::before {
    font-size: 30px;
    line-height: normal
}

.op-testimonial-slider-style-6 .op-testimonial-slides-2-columns .flex-control-nav, .op-testimonial-slider-style-6 .op-testimonial-slides-3-columns .flex-control-nav {
    bottom: -30px
}

.op-live-editor-page, .row {
    position: relative
}

.fixed-width {
    z-index: 20;
    position: relative
}

.main-content {
    z-index: 11
}

.op-row-video-background-wrap {
    z-index: 10;
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    top: 0;
    left: 0;
    opacity: 0
}

.op-row-video-background-fullpage {
    position: fixed
}

.op-video-background, .op-video-background-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0
}

.op-video-background {
    z-index: 10
}

.op-video-background-overlay {
    z-index: 15;
    background-repeat: repeat;
    opacity: 0;
    max-width: 100%;
    max-height: 100%
}

.op-video-background-iframe-container {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    -webkit-transition: opacity .2s ease-in-out;
    transition: opacity .2s ease-in-out
}

.op-row-video-background-alternative-image {
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 16;
    display: none
}

.op-row-video-background-alternative-image--shown {
    display: block
}

.field-id-op_assets_addon_op_advanced_headline_parts-multirow-container label {
    font-weight: 700 !important;
    line-height: 32px;
    color: #333 !important;
    border-bottom: 1px solid #f2f2f2;
    margin: 5px 0 15px
}

.field-id-op_assets_addon_op_advanced_headline_parts-multirow-container input {
    margin-bottom: 15px !important
}

.field-id-op_assets_addon_op_advanced_headline_parts-multirow-container .op-multirow {
    border: 1px solid #f2f2f2;
    padding: 15px;
    margin-bottom: 25px;
    border-radius: 3px
}

.field-id-op_assets_addon_op_advanced_headline_parts-multirow-container a.remove-row img {
    float: right;
    position: relative;
    top: 0;
    right: 0
}

.field-id-op_assets_addon_op_advanced_headline_parts-multirow-container a.remove-row {
    float: right;
    margin: -24px -22px 0 0
}

.field-id-op_assets_addon_op_advanced_headline_parts-multirow-container .op-asset-dropdown .selected-item {
    background-color: #f2f2f2
}

.field-id-op_assets_addon_op_advanced_headline_accent, .field-id-op_assets_addon_op_advanced_headline_align, .field-id-op_assets_addon_op_advanced_headline_effect, .field-id-op_assets_addon_op_advanced_headline_headline_tag, .field-id-op_assets_addon_op_advanced_headline_highlight, .field-id-op_assets_addon_op_advanced_headline_line_height {
    display: inline-block !important;
    width: 48.25%;
    vertical-align: top
}

.field-id-op_assets_addon_op_advanced_headline_parts-multirow-container .op-multirow>.field-input {
    margin-bottom: 0
}

.field-id-op_assets_addon_op_advanced_headline_parts-multirow-container .op-multirow>.field-input>label {
    margin-top: 0
}

.field-id-op_assets_addon_op_advanced_headline_parts-multirow-container .op-multirow>.field-input>label+input {
    margin-bottom: 2px !important
}

.field-id-op_assets_addon_op_advanced_headline_align, .field-id-op_assets_addon_op_advanced_headline_effect, .field-id-op_assets_addon_op_advanced_headline_line_height {
    margin-right: 1.75%
}

.field-id-op_assets_addon_op_advanced_headline_accent, .field-id-op_assets_addon_op_advanced_headline_headline_tag, .field-id-op_assets_addon_op_advanced_headline_highlight {
    margin-left: 1.75%
}

#op_asset_browser_container .field-id-op_assets_addon_op_advanced_headline_line_height #op_assets_addon_op_advanced_headline_line_height, .field-id-op_assets_addon_op_advanced_headline_accent .color-picker-container, .field-id-op_assets_addon_op_advanced_headline_highlight .color-picker-container {
    width: 100%
}

#op_asset_browser_container .color-picker-container #op_assets_addon_op_advanced_headline_accent, #op_asset_browser_container .color-picker-container #op_assets_addon_op_advanced_headline_highlight {
    width: calc(100% - 50px)
}

#op_assets_addon_op_advanced_headline_effect {
    height: 40px !important;
    padding: 10px;
    width: 100% !important
}

.op-words-wrapper {
    display: inline;
    position: relative;
    text-align: inherit;
    max-width: 100%
}

.op-words-wrapper b {
    display: inline;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: inherit
}

.op-words-wrapper em, .op-words-wrapper i {
    font-style: inherit
}

.op-words-wrapper b.is-visible {
    position: relative
}

.op-words-wrapper .op-word-relative {
    position: relative !important;
    width: auto !important
}

.no-js .op-words-wrapper b {
    opacity: 0
}

.no-js .op-words-wrapper b.is-visible {
    opacity: 1
}

.op-live-editor .op-words-wrapper b {
    display: none
}

.op-live-editor .op-words-wrapper b:first-child {
    display: inline
}

.op-headline .nobreak {
    white-space: nowrap
}

.op-headline.rotate-1 .op-words-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
    display: inline-block;
    text-align: left
}

.op-headline.rotate-1 b {
    opacity: 0;
    -webkit-transform-origin: 50% 100%;
    -ms-transform-origin: 50% 100%;
    transform-origin: 50% 100%;
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    display: inline-block
}

.op-live-editor .op-headline.rotate-1 b:first-child {
    display: inline-block;
    opacity: 1
}

.op-headline.rotate-1 b.is-visible {
    opacity: 1;
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    -webkit-animation: op-rotate-1-in 1.2s;
    animation: op-rotate-1-in 1.2s
}

.op-headline.rotate-1 b.is-hidden {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
    -webkit-animation: op-rotate-1-out 1.2s;
    animation: op-rotate-1-out 1.2s;
    width: 100%
}

@-webkit-keyframes op-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0
    }

    35% {
        -webkit-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0
    }

    65% {
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1
    }
}

@keyframes op-rotate-1-in {
    0% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0
    }

    35% {
        -webkit-transform: rotateX(120deg);
        transform: rotateX(120deg);
        opacity: 0
    }

    65% {
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(360deg);
        transform: rotateX(360deg);
        opacity: 1
    }
}

@-webkit-keyframes op-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1
    }

    65% {
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0
    }
}

@keyframes op-rotate-1-out {
    0% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        opacity: 1
    }

    35% {
        -webkit-transform: rotateX(-40deg);
        transform: rotateX(-40deg);
        opacity: 1
    }

    65% {
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(180deg);
        transform: rotateX(180deg);
        opacity: 0
    }
}

@media only screen and (max-width:959px) {
    .op-headline.rotate-1 .op-words-wrapper {
        text-align: inherit
    }
}

.op-headline.type>span {
    display: inline
}

.op-headline.type .op-words-wrapper, .op-headline.type_fast .op-words-wrapper {
    padding-right: 5px
}

.op-headline.type .op-words-wrapper::after, .op-headline.type_fast .op-words-wrapper::after {
    content: '';
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 3px;
    background-color: #000;
    height: 1em;
    bottom: .1em;
    top: auto;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.op-headline.type .op-words-wrapper.waiting::after, .op-headline.type_fast .op-words-wrapper.waiting_for_fast::after {
    -webkit-animation: op-pulse 1s infinite;
    animation: op-pulse 1s infinite
}

.mce-content-body .op-headline.type .op-words-wrapper.waiting::after, .mce-content-body .op-headline.type_fast .op-words-wrapper.waiting_for_fast::after {
    -webkit-animation: none;
    animation: none
}

.op-headline.type .op-words-wrapper.selected::after, .op-headline.type_fast .op-words-wrapper.selected::after {
    visibility: hidden
}

.op-headline.type .op-words-wrapper.selected b, .op-headline.type_fast .op-words-wrapper.selected b {
    color: #0d0d0d
}

.op-headline.type b, .op-headline.type_fast b {
    visibility: hidden;
    display: inline
}

.op-headline.type b.is-visible, .op-headline.type_fast b.is-visible {
    visibility: visible
}

.op-headline.type i, .op-headline.type_fast i {
    position: absolute;
    visibility: hidden
}

.op-headline.type i.in, .op-headline.type_fast i.in {
    position: relative;
    visibility: visible
}

@-webkit-keyframes op-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    40% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

@keyframes op-pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    40% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9);
        opacity: 0
    }

    100% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

.op-headline.rotate-2 .op-words-wrapper {
    display: inline-block;
    text-align: left
}

.op-headline.rotate-2 em, .op-headline.rotate-2 i {
    display: inline-block;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.op-headline.rotate-2 b {
    opacity: 0;
    display: inline-block;
    text-align: inherit;
    width: 100%
}

.op-live-editor .op-headline.rotate-2 b:first-child {
    display: inline-block;
    opacity: 1
}

.op-headline.rotate-2 i {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-20px) rotateX(90deg);
    transform: translateZ(-20px) rotateX(90deg);
    opacity: 0;
    display: inline-block
}

.is-visible .op-headline.rotate-2 i {
    opacity: 1
}

.op-headline.rotate-2 i.in, .op-live-editor .op-headline.rotate-2 b:first-child {
    -webkit-animation: op-rotate-2-in .4s forwards;
    animation: op-rotate-2-in .4s forwards
}

.op-headline.rotate-2 i.out {
    -webkit-animation: op-rotate-2-out .4s forwards;
    animation: op-rotate-2-out .4s forwards
}

.op-headline.rotate-2 em {
    -webkit-transform: translateZ(20px);
    transform: translateZ(20px)
}

.no-csstransitions .op-headline.rotate-2 i {
    -webkit-transform: rotateX(0deg);
    transform: rotateX(0deg);
    opacity: 0
}

.no-csstransitions .op-headline.rotate-2 i em {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1)
}

.no-csstransitions .op-headline.rotate-2 .is-visible i {
    opacity: 1
}

@-webkit-keyframes op-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
        transform: translateZ(-20px) rotateX(0deg)
    }
}

@keyframes op-rotate-2-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(90deg);
        transform: translateZ(-20px) rotateX(90deg)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(-10deg);
        transform: translateZ(-20px) rotateX(-10deg)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0deg);
        transform: translateZ(-20px) rotateX(0deg)
    }
}

@-webkit-keyframes op-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg)
    }
}

@keyframes op-rotate-2-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(-20px) rotateX(0);
        transform: translateZ(-20px) rotateX(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-100deg);
        transform: translateZ(-20px) rotateX(-100deg)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-20px) rotateX(-90deg);
        transform: translateZ(-20px) rotateX(-90deg)
    }
}

@media only screen and (max-width:959px) {
    .op-headline.rotate-2 .op-words-wrapper {
        text-align: inherit
    }
}

.op-headline.loading-bar span {
    padding: 0 0 .2em
}

.op-headline.loading-bar .op-words-wrapper {
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
    text-align: left
}

.op-headline.loading-bar .op-words-wrapper b::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3px;
    width: 0;
    top: auto;
    background: #0096a7;
    z-index: 2;
    -webkit-transition: width .3s -.1s;
    transition: width .3s -.1s
}

.op-headline.loading-bar .op-words-wrapper b.is-loading::after {
    width: 100%;
    -webkit-transition: width 3s;
    transition: width 3s
}

.op-headline.loading-bar b {
    top: .2em;
    opacity: 0;
    -webkit-transition: opacity .3s;
    transition: opacity .3s;
    width: 100%
}

.op-headline.loading-bar b.is-visible, .op-live-editor .op-headline.loading-bar b:first-child {
    opacity: 1;
    top: 0
}

.op-live-editor .op-headline.loading-bar .op-words-wrapper b:first-child::after {
    width: 100%
}

@media only screen and (max-width:959px) {
    .op-headline.loading-bar .op-words-wrapper {
        text-align: inherit
    }
}

.op-headline.slide span {
    display: inline;
    padding: 0
}

.op-headline.slide .op-words-wrapper {
    overflow: hidden;
    vertical-align: top;
    display: inline-block;
    text-align: left
}

.op-headline.slide b {
    opacity: 0;
    top: .2em;
    text-align: inherit;
    width: 100%;
    display: inline-block
}

.op-headline.slide b.is-visible {
    top: 0;
    opacity: 1;
    -webkit-animation: slide-in .6s;
    animation: slide-in .6s
}

.op-live-editor .op-headline.slide b:first-child {
    opacity: 1;
    top: 0;
    display: inline-block
}

.op-headline.slide b.is-hidden {
    -webkit-animation: slide-out .6s;
    animation: slide-out .6s
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@keyframes slide-out {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateY(120%);
        transform: translateY(120%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(100%);
        transform: translateY(100%)
    }
}

@media only screen and (max-width:959px) {
    .op-headline.slide .op-words-wrapper {
        text-align: inherit
    }
}

.op-headline.clip * {
    line-height: inherit;
    vertical-align: bottom
}

.op-headline.clip span {
    display: inline-block;
    display: inline
}

.op-headline.clip .op-words-wrapper-container {
    display: inline-block;
    max-width: 100%;
    text-align: left
}

.op-headline.clip .op-words-wrapper {
    overflow: hidden
}

.op-headline.clip .op-words-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 2px;
    height: 100%;
    background-color: red
}

.op-headline.clip b {
    opacity: 0;
    overflow: hidden;
    display: inline-block
}

.op-live-editor .op-headline.clip b:first-child {
    opacity: 1;
    display: inline-block
}

.op-headline.clip b.is-visible {
    opacity: 1
}

@media only screen and (max-width:959px) {
    .op-headline.clip .op-words-wrapper-container {
        text-align: inherit
    }
}

.op-headline.zoom .op-words-wrapper {
    -webkit-perspective: 300px;
    perspective: 300px;
    display: inline-block;
    text-align: left
}

.op-headline.zoom b {
    opacity: 0;
    display: inline-block;
    text-align: inherit;
    width: 100%
}

.op-live-editor .op-headline.zoom b:first-child {
    opacity: 1;
    display: inline-block
}

.op-headline.zoom b.is-visible {
    opacity: 1;
    -webkit-animation: zoom-in .8s;
    animation: zoom-in .8s
}

.op-headline.zoom b.is-hidden {
    -webkit-animation: zoom-out .8s;
    animation: zoom-out .8s
}

.op-headline.zoom.headline-style-7 {
    padding-bottom: 60px
}

.op-headline.zoom.headline-style-7 span {
    padding-bottom: 0;
    display: inline-block
}

@-webkit-keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        transform: translateZ(100px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        -webkit-transform: translateZ(100px);
        transform: translateZ(100px)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }
}

@-webkit-keyframes zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        transform: translateZ(-100px)
    }
}

@keyframes zoom-out {
    0% {
        opacity: 1;
        -webkit-transform: translateZ(0);
        transform: translateZ(0)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateZ(-100px);
        transform: translateZ(-100px)
    }
}

@media only screen and (max-width:959px) {
    .op-headline.zoom .op-words-wrapper {
        text-align: inherit
    }
}

.op-headline.rotate-3 .op-words-wrapper {
    display: inline-block;
    text-align: left
}

.op-headline.rotate-3 b {
    opacity: 0;
    display: inline-block;
    width: 100%
}

.op-live-editor .op-headline.rotate-3 b:first-child {
    opacity: 1;
    display: inline-block
}

.op-headline.rotate-3 i {
    display: inline-block;
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

.is-visible .op-headline.rotate-3 i {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg)
}

.op-headline.rotate-3 i.in {
    -webkit-animation: op-rotate-3-in .6s forwards;
    animation: op-rotate-3-in .6s forwards
}

.op-headline.rotate-3 i.out {
    -webkit-animation: op-rotate-3-out .6s forwards;
    animation: op-rotate-3-out .6s forwards
}

.no-csstransitions .op-headline.rotate-3 i {
    -webkit-transform: rotateY(0deg);
    transform: rotateY(0deg);
    opacity: 0
}

.no-csstransitions .op-headline.rotate-3 .is-visible i {
    opacity: 1
}

@-webkit-keyframes op-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg)
    }

    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }
}

@keyframes op-rotate-3-in {
    0% {
        -webkit-transform: rotateY(180deg);
        transform: rotateY(180deg)
    }

    100% {
        -webkit-transform: rotateY(0deg);
        transform: rotateY(0deg)
    }
}

@-webkit-keyframes op-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0)
    }

    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg)
    }
}

@keyframes op-rotate-3-out {
    0% {
        -webkit-transform: rotateY(0);
        transform: rotateY(0)
    }

    100% {
        -webkit-transform: rotateY(-180deg);
        transform: rotateY(-180deg)
    }
}

@media only screen and (max-width:959px) {
    .op-headline.rotate-3 .op-words-wrapper {
        text-align: inherit
    }
}

.op-headline.scale .op-words-wrapper {
    display: inline-block;
    text-align: left
}

.op-headline.scale b {
    opacity: 0;
    display: inline-block;
    width: 100%
}

.op-live-editor .op-headline.scale b:first-child {
    opacity: 1;
    display: inline-block
}

.op-headline.scale i {
    display: inline-block;
    opacity: 0;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0)
}

.is-visible .op-headline.scale i {
    opacity: 1
}

.op-headline.scale i.in, .op-live-editor .op-headline.scale b:first-child {
    -webkit-animation: scale-up .6s forwards;
    animation: scale-up .6s forwards
}

.op-headline.scale i.out {
    -webkit-animation: scale-down .6s forwards;
    animation: scale-down .6s forwards
}

.no-csstransitions .op-headline.scale i {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 0
}

.no-csstransitions .op-headline.scale .is-visible i {
    opacity: 1
}

@-webkit-keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }

    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes scale-up {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }

    60% {
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes scale-down {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    60% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

@keyframes scale-down {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    60% {
        -webkit-transform: scale(0);
        transform: scale(0);
        opacity: 0
    }
}

@media only screen and (max-width:959px) {
    .op-headline.scale .op-words-wrapper {
        text-align: inherit
    }
}

.op-headline.push .op-words-wrapper {
    display: inline-block;
    text-align: left
}

.op-headline.push b {
    opacity: 0;
    display: inline-block
}

.op-live-editor .op-headline.push b:first-child {
    opacity: 1;
    display: inline-block
}

.op-headline.push b.is-visible {
    opacity: 1;
    -webkit-animation: push-in .6s;
    animation: push-in .6s
}

.op-headline.push b.is-hidden {
    -webkit-animation: push-out .6s;
    animation: push-out .6s
}

@-webkit-keyframes push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        transform: translateX(10%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes push-in {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%)
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(10%);
        transform: translateX(10%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        transform: translateX(110%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@keyframes push-out {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: translateX(110%);
        transform: translateX(110%)
    }

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        transform: translateX(100%)
    }
}

@media only screen and (max-width:959px) {
    .op-headline.push .op-words-wrapper {
        text-align: inherit
    }
}

#op_assets_addon_op_advanced_headline_headline_tag {
    width: 100% !important;
    padding: 10px;
    height: 40px !important
}

#op_asset_browser_slide3 .field-id-op_assets_addon_op_scroll_enhancer_animation select, #op_asset_browser_slide3 .field-id-op_assets_addon_op_scroll_enhancer_effect select {
    width: 100% !important;
    height: 40px !important;
    padding: 10px
}

html.op-live-editor .op-scroll-enhancer a {
    -webkit-animation: none;
    animation: none
}

.op-scroll-enhancer {
    position: relative;
    z-index: 9;
    text-align: center
}

.op-scroll-enhancer a {
    display: inline-block;
    line-height: 62px;
    text-align: center;
    text-indent: -999px;
    overflow: hidden;
    background: center center no-repeat none;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
    -webkit-animation-timing-function: ease;
    animation-timing-function: ease;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

.op-scroll-enhancer a[data-effect=cancel] {
    pointer-events: none
}

.op-scroll-enhancer a img {
    display: none
}

.op-scroll-enhancer.op-scroll-enhancer-style-1 a {
    width: 40px;
    height: 62px;
    background-image: url(../../images/elements/op_scroll_enhancer/1.png)
}

.op-scroll-enhancer.op-scroll-enhancer-style-2 a {
    width: 40px;
    height: 62px;
    background-image: url(../../images/elements/op_scroll_enhancer/2.png)
}

.op-scroll-enhancer.op-scroll-enhancer-style-3 a {
    width: 42px;
    height: 42px;
    background-image: url(../../images/elements/op_scroll_enhancer/3.png)
}

.op-scroll-enhancer.op-scroll-enhancer-style-4 a {
    width: 45px;
    height: 45px;
    background-image: url(../../images/elements/op_scroll_enhancer/4.png)
}

.op-scroll-enhancer.op-scroll-enhancer-style-5 a {
    width: 45px;
    height: 45px;
    background-image: url(../../images/elements/op_scroll_enhancer/5.png)
}

.op-scroll-enhancer.op-scroll-enhancer-style-6 a {
    width: 45px;
    height: 44px;
    background-image: url(../../images/elements/op_scroll_enhancer/6.png)
}

.op-scroll-enhancer.op-scroll-enhancer-style-7 a {
    width: 45px;
    height: 44px;
    background-image: url(../../images/elements/op_scroll_enhancer/7.png)
}

.op-scroll-enhancer.op-scroll-enhancer-style-8 a {
    width: 45px;
    height: 44px;
    background-image: url(../../images/elements/op_scroll_enhancer/8.png)
}

.op_guarantee-box-19 {
    display: block;
    position: relative;
    background: url(../../images/elements/guarantee_box/style-19-icon.png) center center/contain no-repeat
}

.op_guarantee-box-19 .op_guarantee-box-internal {
    position: relative;
    z-index: 15
}

.op_guarantee-box-19 h2 {
    text-align: center;
    font-size: 5em;
    font-weight: 900;
    padding-top: 15px
}

.op_guarantee-box-19 h3, .op_guarantee-box-19 p {
    text-align: center
}

.op_guarantee-box-20 {
    display: block;
    position: relative;
    padding: 60px 0 30px;
    background: url(../../images/elements/guarantee_box/style-20-icon.png) center center/contain no-repeat
}

.op_guarantee-box-20 .op_guarantee-box-internal {
    position: relative;
    z-index: 15
}

.op_guarantee-box-20 img {
    position: absolute;
    top: 50%;
    left: 50%;
    width: auto;
    max-height: 100%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    z-index: 10
}

.op_guarantee-box-20 h2 {
    text-align: center;
    font-weight: 900;
    padding: 15px 0 25px
}

.op_guarantee-box-20 h2 strong {
    font-weight: 900
}

.op_guarantee-box-20 p {
    text-align: center
}

.narrow.column .op_guarantee-box-20 {
    padding: 0
}

.op_guarantee-box-21 {
    display: block;
    position: relative
}

.op_guarantee-box-21 img {
    display: block;
    margin: 0 auto 15px;
    max-width: 100%;
    height: auto
}

.op_guarantee-box-21 h2 {
    text-align: center;
    margin-bottom: 30px
}

.op_guarantee-box-21 h2 strong {
    font-weight: 900
}

.op_guarantee-box-21 p {
    text-align: center
}

.op_guarantee-box-22 {
    display: block;
    position: relative
}

.op_guarantee-box-22 img {
    display: block;
    margin: 0 auto 5px;
    max-width: 100%;
    height: auto
}

.op_guarantee-box-22 h2 {
    text-align: center;
    margin-bottom: 20px
}

.op_guarantee-box-22 h2 strong {
    font-weight: 900
}

.op_guarantee-box-22 p {
    text-align: center
}

.op_guarantee-box-23 {
    display: block;
    position: relative
}

.op_guarantee-box-23 img {
    display: block;
    margin: 0 auto 5px;
    max-width: 100%;
    height: auto
}

.one-half.column .op_guarantee-box-23 img {
    width: 30%;
    height: auto
}

.op_guarantee-box-23 h2 {
    text-align: center;
    margin-bottom: 20px
}

.op_guarantee-box-23 h2 strong {
    font-weight: 900
}

.op_guarantee-box-23 p {
    text-align: center
}

.op_guarantee-box-24, .op_guarantee-box-25 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row;
    flex-flow: row;
    position: relative;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.op_guarantee-box-24 h2 strong, .op_guarantee-box-25 h2 strong {
    font-weight: 900
}

.op_guarantee-box-24 img, .op_guarantee-box-25 img {
    text-align: center;
    max-width: 100%;
    height: auto
}

.one-half.column .op_guarantee-box-24 img, .one-half.column .op_guarantee-box-25 img {
    width: 30%;
    height: auto
}

.op_guarantee-box-24 .op_guarantee-box-internal, .op_guarantee-box-25 .op_guarantee-box-internal {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.narrow.column .op_guarantee-box-24, .narrow.column .op_guarantee-box-25 {
    display: block
}

@media \0screen\,screen\9 {
    .op_guarantee-box-19 {
        min-height: 256px
    }

    .op_guarantee-box-20 {
        min-height: 360px
    }

    .op_guarantee-box-20 .op_guarantee-box-internal {
        position: absolute;
        top: 33%
    }

    .narrow.column .op_guarantee-box-20 .op_guarantee-box-internal, .one-half.column .op_guarantee-box-20 .op_guarantee-box-internal {
        position: relative;
        top: auto
    }

    .op_guarantee-box-24, .op_guarantee-box-25 {
        text-align: center
    }

    .op_guarantee-box-24 img, .op_guarantee-box-25 img {
        display: block;
        margin: 0 auto
    }
}

@media screen\0 {
    .op_guarantee-box-24, .op_guarantee-box-25 {
        text-align: center
    }
}

@media all and (-ms-high-contrast:none), (-ms-high-contrast:active) {
    .op_guarantee-box-24, .op_guarantee-box-25 {
        text-align: left
    }
}

@media only screen and (min-width:767px) {
    .op_guarantee-box-24 .op_guarantee-box-internal, .op_guarantee-box-25 .op_guarantee-box-internal {
        margin-left: 50px
    }

    .one-half.column .op_guarantee-box-24 .op_guarantee-box-internal, .one-half.column .op_guarantee-box-25 .op_guarantee-box-internal {
        margin-left: 20px
    }

    .narrow.column .op_guarantee-box-24 img, .narrow.column .op_guarantee-box-25 img {
        display: block;
        margin: 0 auto
    }

    .narrow.column .op_guarantee-box-24 .op_guarantee-box-internal, .narrow.column .op_guarantee-box-25 .op_guarantee-box-internal {
        margin-left: 0;
        text-align: center
    }
}

@media only screen and (max-width:767px) {
    .op_guarantee-box-image {
        width: 30%;
        height: auto;
        max-width: 100%
    }

    .op_guarantee-box-24, .op_guarantee-box-25 {
        display: block;
        margin: 0 auto;
        text-align: center
    }

    .op_guarantee-box-24 img, .op_guarantee-box-25 img {
        margin: 0
    }
}

.field-id-op_assets_core_pricing_table_children.field-multirow-length-5 a.new-row {
    opacity: .3;
    pointer-events: none
}

.field-id-op_assets_core_pricing_table_children-multirow-container .op-multirow {
    margin-bottom: 25px;
    padding: 15px;
    border: 1px solid #f2f2f2;
    border-radius: 3px
}

.field-id-op_assets_core_pricing_table_children-multirow-container a.remove-row {
    float: right;
    margin: -24px -22px 0 0
}

.field-id-op_assets_core_pricing_table_children-multirow-container .op-feature-title-row a.remove-row {
    margin: -60px -6px 0 0
}

.pricing-table-content {
    display: table;
    width: 100%;
    margin: 0 0 10px;
    table-layout: fixed
}

.pricing-table-column {
    position: relative;
    display: table-cell;
    width: auto;
    margin: 0 10px;
    box-shadow: none;
    border: 0;
    text-align: center;
    vertical-align: top
}

.pricing-table-column-content {
    position: relative;
    background: #fff;
    box-shadow: none;
    border: 0;
    border-radius: 0
}

.pricing-table-column-content .pricing-description {
    margin: 2em 0 0;
    padding: 0;
    color: #a1a5aa
}

.pricing-table-column-content .description {
    padding: 2em 1em
}

.pricing-table-column-content .description p:first-child {
    margin-top: 0
}

.pricing-table-column-content .description p:last-child {
    margin-bottom: 0
}

.pricing-table-column-content .feature-description {
    margin: 2em 0 0;
    padding: 0;
    line-height: 1.4;
    font-size: 18px;
    font-weight: 400
}

.pricing-table-column-content .features {
    margin: 2em 0 0;
    padding: 0;
    height: auto !important
}

.pricing-table-column-content .features li {
    margin: 12px 0 0;
    padding: 0
}

.pricing-table-column-content .features li:first-child {
    margin-top: 0
}

.pricing-table-column-content .css-button {
    margin: 2em 0 0
}

.narrow .pricing-table .pricing-table-content .pricing-table-column, .one-half .pricing-table .pricing-table-content .pricing-table-column {
    display: block
}

.narrow .pricing-table-content .pricing-description, .narrow .pricing-table-style4 .description, .narrow .pricing-table-style4 .feature-description, .narrow .pricing-table-style4 .features, .narrow .pricing-table-style4 .name, .narrow .pricing-table-style4 .price, .narrow .pricing-table-style5 .description, .narrow .pricing-table-style5 .feature-description, .narrow .pricing-table-style5 .features, .narrow .pricing-table-style5 .name, .narrow .pricing-table-style5 .price, .narrow .pricing-table-style6 .description, .narrow .pricing-table-style6 .feature-description, .narrow .pricing-table-style6 .features, .narrow .pricing-table-style6 .name, .narrow .pricing-table-style6 .price, .narrow .pricing-table-style7 .description, .narrow .pricing-table-style7 .feature-description, .narrow .pricing-table-style7 .features, .narrow .pricing-table-style7 .name, .narrow .pricing-table-style7 .price, .one-half .pricing-table-content .pricing-description, .one-half .pricing-table-style4 .description, .one-half .pricing-table-style4 .feature-description, .one-half .pricing-table-style4 .features, .one-half .pricing-table-style4 .name, .one-half .pricing-table-style4 .price, .one-half .pricing-table-style5 .description, .one-half .pricing-table-style5 .feature-description, .one-half .pricing-table-style5 .features, .one-half .pricing-table-style5 .name, .one-half .pricing-table-style5 .price, .one-half .pricing-table-style6 .description, .one-half .pricing-table-style6 .feature-description, .one-half .pricing-table-style6 .features, .one-half .pricing-table-style6 .name, .one-half .pricing-table-style6 .price, .one-half .pricing-table-style7 .description, .one-half .pricing-table-style7 .feature-description, .one-half .pricing-table-style7 .features, .one-half .pricing-table-style7 .name, .one-half .pricing-table-style7 .price {
    height: auto !important
}

@media only screen and (max-width:767px) {
    .pricing-table .pricing-table-content .pricing-table-column {
        display: block
    }
}

@media only screen and (max-width:480px) {
    .pricing-table-content {
        display: block
    }

    .pricing-table-column {
        display: block;
        margin-bottom: 10px
    }
}

@media only screen and (max-width:767px) {
    .pricing-table-content .pricing-description, .pricing-table-style10 .description, .pricing-table-style10 .feature-description, .pricing-table-style10 .features, .pricing-table-style10 .name, .pricing-table-style10 .price, .pricing-table-style11 .description, .pricing-table-style11 .feature-description, .pricing-table-style11 .features, .pricing-table-style11 .name, .pricing-table-style11 .price, .pricing-table-style4 .description, .pricing-table-style4 .feature-description, .pricing-table-style4 .features, .pricing-table-style4 .name, .pricing-table-style4 .price, .pricing-table-style5 .description, .pricing-table-style5 .feature-description, .pricing-table-style5 .features, .pricing-table-style5 .name, .pricing-table-style5 .price, .pricing-table-style6 .description, .pricing-table-style6 .feature-description, .pricing-table-style6 .features, .pricing-table-style6 .name, .pricing-table-style6 .price, .pricing-table-style7 .description, .pricing-table-style7 .feature-description, .pricing-table-style7 .features, .pricing-table-style7 .name, .pricing-table-style7 .price, .pricing-table-style8 .description, .pricing-table-style8 .feature-description, .pricing-table-style8 .features, .pricing-table-style8 .name, .pricing-table-style8 .price, .pricing-table-style9 .description, .pricing-table-style9 .feature-description, .pricing-table-style9 .features, .pricing-table-style9 .name, .pricing-table-style9 .price {
        height: auto !important
    }
}

.pricing-table-style2 .pt-border.popular {
    border: 3px solid #000;
    z-index: 1;
    position: relative;
    margin-bottom: -3px;
    padding-bottom: 1.5em;
    top: 0 !important
}

.pricing-table-style3 .pt-border.popular {
    z-index: 1;
    position: relative;
    padding-top: 2em;
    padding-bottom: 2em;
    top: 0 !important
}

.pricing-table-style4 .pricing-table-content {
    border-spacing: 20px 0
}

.pricing-table-style4 .pricing-table-column-content {
    background: 0 0
}

.pricing-table-style4 .pricing-table-column-content .popular {
    position: relative;
    display: block;
    visibility: hidden;
    top: 0;
    right: 0;
    left: 0;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
    background: #e1e6eb;
    color: #798289
}

.pricing-table-style4 .pricing-table-column.popular .pricing-table-column-content .popular {
    visibility: visible
}

.pricing-table-style4 .price-table {
    margin: 0 0 10px;
    padding: 40px 25px;
    background: #fff;
    border: 1px solid #e1e6eb
}

.pricing-table-style4 .pricing-table-column-content .name {
    margin: 0;
    line-height: 33px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0;
    color: #00abc9;
    text-align: center;
    text-shadow: none;
    text-transform: uppercase
}

.pricing-table-style4 .pricing-table-column-content .description {
    margin: 30px 0;
    padding: 0;
    line-height: 28px;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: -1px;
    text-align: center;
    color: #556273
}

.pricing-table-style4 .pricing-table-column-content .price {
    position: relative;
    margin: 30px 0;
    line-height: 1;
    font-size: 70px;
    color: #00abc9
}

.pricing-table-style4 .pricing-table-column-content .price .unit {
    position: relative;
    top: -38px;
    left: -8px;
    font-size: 21px
}

.pricing-table-style4 .pricing-table-column-content .price .variable {
    position: relative;
    margin-bottom: 5px;
    font-size: 20px;
    text-align: center;
    color: #00abc9
}

.pricing-table-style4 .pricing-table-column-content .button {
    display: block;
    margin: 2em 0 0;
    padding: 15px 10px;
    font-size: 18px;
    font-weight: 700;
    background: #00abc9;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    text-decoration: none
}

.pricing-table-style4 .pricing-table-column-content .feature-table {
    margin: 60px 0
}

.pricing-table-style4 .pricing-table-column-content .features {
    margin: 0;
    padding: 0 21px;
    list-style: none none
}

.pricing-table-style4 .pricing-table-column-content .features li {
    display: block;
    margin: 0;
    padding: 14px 0;
    font-size: 14px;
    line-height: normal;
    border-top: 1px solid #e1e6eb;
    color: #363948;
    text-align: center
}

@media only screen and (max-width:480px) {
    .pricing-table-style4 .pricing-table-column-content .popular {
        display: none
    }

    .pricing-table-style4 .pricing-table-column.popular .pricing-table-column-content .popular {
        display: block
    }
}

@media only screen and (max-width:959px) {
    .pricing-table-style4 .pricing-table-column-content .price {
        font-size: 50px
    }

    .pricing-table-style4 .pricing-table-column-content .price .unit {
        top: -28px;
        left: -4px
    }

    .pricing-table-style4 .pricing-table-column-content .description {
        font-size: 15px
    }

    .pricing-table-style4 .pricing-table-content .pricing-table-column .pricing-table-column-content .price {
        margin: 15px 0
    }

    .pricing-table-style4 .pricing-table-column-content .button {
        font-size: 16px
    }
}

.pricing-table-style4.pricing-table-4col .price, .pricing-table-style4.pricing-table-5col .price {
    font-size: 30px
}

.pricing-table-style4.pricing-table-4col .pricing-table-column-content .price .unit, .pricing-table-style4.pricing-table-5col .pricing-table-column-content .price .unit {
    position: relative;
    top: -8px;
    left: 0;
    font-size: 16px
}

@media only screen and (max-width:960px) and (min-width:768px) {
    .pricing-table-style4.pricing-table-5col .pricing-table-column {
        width: 50%;
        margin: 0 auto 20px;
        display: block
    }
}

@media only screen and (max-width:767px) {
    .pricing-table-style4 .pricing-table-column {
        margin-bottom: 20px
    }

    .pricing-table-style4 .pricing-table-column-content .price {
        font-size: 32px
    }
}

.pricing-table-style5 {
    width: 100%;
    color: #4c4c4c
}

.pricing-table-style5 .pricing-table-content {
    border-spacing: 20px 0
}

.pricing-table-style5 .pricing-table-column-content {
    background: 0 0
}

.pricing-table-style5 .pricing-table-column-content .popular {
    position: relative;
    display: block;
    visibility: hidden;
    top: 0;
    right: 0;
    left: 0;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .35px;
    background: #91cf9e;
    color: #fff;
    border: 1px solid #dcdddf;
    border-bottom: 0 none
}

.pricing-table-style5 .pricing-table-column.popular .popular {
    visibility: visible
}

.pricing-table-style5 .price-table {
    margin: 0;
    padding: 40px 25px 45px;
    background: #fff;
    border: 1px solid #dcdddf
}

.pricing-table-style5 .pricing-table-column.popular .price-table {
    border-top: 0 none
}

.pricing-table-style5 .pricing-table-column-content .name {
    margin: 0;
    line-height: 1.2;
    font-size: 21px
}

.pricing-table-style5 .pricing-table-column-content .price {
    position: relative;
    margin: 0;
    line-height: 1.2;
    font-size: 40px
}

.pricing-table-style5 .pricing-table-column-content .price .variable {
    font-size: 15px
}

.pricing-table-style5 .pricing-description {
    margin-top: 50px;
    padding-bottom: 10px;
    line-height: 1;
    font-size: 14px;
    color: #4c4c4c
}

.pricing-table-style5 .pricing-table-column-content .button {
    margin: 5px;
    padding: 10px;
    font-size: 13px;
    text-decoration: none;
    background-color: #1abc9c;
    color: #fff;
    border-radius: 3px;
    display: inline-block
}

.pricing-table-style5 .pricing-table-column-content .button:hover {
    text-decoration: none;
    background: #1ccaa7
}

.pricing-table-style5 .pricing-table-column-content .description {
    margin-top: 20px;
    padding: 0;
    color: #888
}

.pricing-table-style5 .pricing-table-column-content .feature-table {
    font-size: 13px;
    padding: 45px 17px;
    border: 1px solid #dcdddf;
    border-top: 0 none;
    background: #fff;
    text-align: left
}

.pricing-table-style5 .pricing-table-column-content .feature-description {
    margin: 0 0 12px;
    padding: 0 0 0 12px;
    font-size: inherit;
    font-weight: 700;
    color: #272727
}

.pricing-table-style5 .pricing-table-column-content .features {
    margin: 0;
    padding: 0 0 0 12px;
    list-style: none none
}

.pricing-table-style5 .pricing-table-column-content .features li::before {
    content: "•";
    position: relative;
    display: block;
    left: -12px;
    top: 1px;
    max-height: 0;
    max-width: 0;
    font-size: 14px;
    font-weight: 400;
    color: #8c9fa5
}

.pricing-table-style5 .pricing-table-column-content .features li {
    margin-top: 15px;
    color: #272727
}

@media only screen and (max-width:480px) {
    .pricing-table-style5 .pricing-table-column-content .popular {
        display: none
    }

    .pricing-table-style5 .pricing-table-column.popular .popular {
        display: block
    }
}

.pricing-table-style5.pricing-table-4col .price, .pricing-table-style5.pricing-table-5col .price {
    font-size: 30px
}

@media only screen and (max-width:960px) and (min-width:768px) {
    .pricing-table-style5.pricing-table-5col .pricing-table-column {
        width: 50%;
        margin: 0 auto 20px;
        display: block
    }
}

@media only screen and (max-width:767px) {
    .pricing-table-style5 .pricing-table-column {
        margin-bottom: 20px
    }

    .pricing-table-style5 .pricing-table-column-content .price {
        font-size: 32px
    }
}

.pricing-table-style6 {
    width: 100%;
    color: #717a8f
}

.pricing-table-style6 .pricing-table-content {
    border-spacing: 32px 0
}

.pricing-table-style6 .pricing-table-column {
    vertical-align: middle
}

.pricing-table-style6 .pricing-table-column-content {
    padding: 35px;
    border-radius: 4px;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .03);
    border: 3px solid transparent
}

.pricing-table-style6 .pricing-table-column-content:hover {
    border-color: #77c04b
}

.pricing-table-style6 .pricing-table-column-content .popular {
    position: absolute;
    display: none;
    top: -41px;
    right: 8px;
    width: 75px;
    height: 75px;
    line-height: 16px;
    font-size: 11px;
    background: #3396d1;
    color: #fff;
    border-radius: 100%
}

.pricing-table-style6 .pricing-table-column.popular .popular {
    display: block
}

.pricing-table-style6 .pricing-table-column-content .popular span {
    position: relative;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%)
}

.pricing-table-style6 .pricing-table-column-content .name {
    line-height: 26px;
    font-size: 26px
}

.pricing-table-style6 .pricing-table-column-content .price {
    margin-top: 26px;
    padding-top: 20px;
    line-height: 1;
    font-size: 42px;
    border-top: 1px solid #e9edf2
}

.pricing-table-style6 .pricing-table-column-content .price .variable {
    line-height: 1;
    font-size: 16px
}

.pricing-table-style6 .pricing-table-column-content .pricing-description {
    margin-top: 12px
}

.pricing-table-style6 .pricing-table-column-content .description {
    margin-top: 20px;
    padding: 20px 0 0;
    border-top: 1px solid #e9edf2
}

.pricing-table-style6 .pricing-table-column-content .feature-table {
    margin-top: 20px;
    padding: 20px 0 0;
    font-size: 13px;
    border-top: 1px solid #e9edf2
}

.pricing-table-style6 .pricing-table-column-content .feature-description {
    margin: 0;
    line-height: 32px;
    font-size: 13px;
    font-weight: 700;
    color: #717a8f
}

.pricing-table-style6 .pricing-table-column-content .features, .pricing-table-style6 .pricing-table-column-content .features li {
    margin: 0;
    line-height: 32px
}

.pricing-table-style6 .pricing-table-column-content .features li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: -2px 4px 0 0;
    padding: 0;
    vertical-align: middle;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wkQCA8puYzkrwAAABl0RVh0Q29tbWVudABDcmVhdGVkIHdpdGggR0lNUFeBDhcAAAEFUExURQAAAAD/////AAD//wD/////AP//AADr///wABTO3BTV4wDr/+jYCv/wAAjY7fXhBvXiBjvKwzvKwTPLzjLKzNnTKdnUKVS8c1a+dd/TIN/VIqTHPDzEvzvEvqXGO9bMI9XMIl6+jGm+WWe+WIfBQIfBQa7BN3K+bnK+b3O+XnO+X3O/e3S+SnS+S3a+R3e+R4a+R4e+R5O/R5y/R3bAS3bAWHbAb3e/YXfAVXfAVnfBdXfCgnnNqXvAS33AS33DS37IWoLVx4TCS43AS5Xh3pjCS6/u8rbKS7jv8b3x9MHQYM33+9PVW9vZXOb78+rkePH73PbwoPr+7vv2s/z81/39+/3/+sN+bRsAAAA0dFJOUwADBAUGBggaIyUlJy80PE9Qb3B4eYeIi4uTk6ChoqK9vtjZ2uPj5vf3+Pj4+vr6+vr6+vpvgR0MAAAAAWJLR0QAiAUdSAAAAKRJREFUGBkFwUtOwlAAAMDpey1IWyhhgybGrfe/kolxIxEK/dKPMwAAEiirPF+atm6RkB3fI2h/6lkUzp8zkJ2bXnT4mIByXLJxCJtjAF4Ob8pDGsIW2FZZTxZDtkchFrvHH3mawr4qxrK/gPC8MwzFab5BO6XLyHhZd48OpjnOjom1W2u4/3bRuL4+GSD9vorWoSkCaL6uiwTK0yZfukfdAQDAP33LQl2gFjIUAAAAAElFTkSuQmCC) center center no-repeat
}

.pricing-table-style6 .pricing-table-column-content .submit-table {
    margin-top: 20px;
    padding: 20px 0 0;
    border-top: 1px solid #e9edf2
}

.pricing-table-style6 .pricing-table-column-content .button {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    background: #77c04b;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 -3px 0 rgba(0, 0, 0, .1) inset
}

.pricing-table-style6 .pricing-table-column-content .button:hover {
    box-shadow: none
}

.pricing-table-style6.pricing-table-4col .pricing-table-content, .pricing-table-style6.pricing-table-5col .pricing-table-content {
    border-spacing: 10px 0
}

.pricing-table-style6.pricing-table-4col .pricing-table-column-content, .pricing-table-style6.pricing-table-5col .pricing-table-column-content {
    padding: 35px 10px
}

.pricing-table-style6.pricing-table-4col .price, .pricing-table-style6.pricing-table-5col .price {
    font-size: 30px
}

@media only screen and (max-width:960px) and (min-width:768px) {
    .pricing-table-style6.pricing-table-5col .pricing-table-column {
        width: 50%;
        margin: 0 auto 20px;
        display: block
    }
}

@media only screen and (max-width:767px) {
    .pricing-table-style6 .pricing-table-column {
        margin-bottom: 20px
    }

    .pricing-table-style6 .pricing-table-column-content .price {
        font-size: 32px
    }
}

.pricing-table-style7 {
    width: 100%;
    font-family: "Open Sans", sans-serif;
    color: #323b43
}

.pricing-table-style7 .pricing-table-content {
    border-spacing: 20px 0
}

.pricing-table-style7 .pricing-table-column-content {
    padding: 15px 0 20px;
    background: #f9fafc;
    border: 1px solid #ced7df;
    border-radius: 3px
}

.pricing-table-style7 .pricing-table-column.popular .pricing-table-column-content {
    background: #fff
}

.pricing-table-style7 .pricing-table-column-content .name {
    line-height: 1.4;
    font-size: 22px
}

.pricing-table-style7 .pricing-table-column-content .price {
    display: inline-block;
    margin: 20px auto 10px;
    padding: 10px;
    line-height: 25px;
    font-size: 18px;
    font-weight: 700;
    background: #e9f4fd;
    color: #168eea;
    border-radius: 3px
}

.pricing-table-style7 .pricing-table-column-content .price .variable {
    font-weight: 400
}

.pricing-table-style7 .pricing-table-column-content .pricing-description {
    margin: 0;
    padding: 0 20px
}

.pricing-table-style7 .pricing-table-column-content .description {
    margin-top: 20px;
    padding: 20px 20px 0;
    border-top: 1px solid #f4f7f9
}

.pricing-table-style7 .pricing-table-column-content .feature-table {
    margin-top: 20px;
    padding: 20px 20px 0;
    font-size: 12px;
    border-top: 1px solid #f4f7f9;
    text-align: left
}

.pricing-table-style7 .pricing-table-column-content .feature-description {
    margin: 20px 0;
    padding-left: 24px;
    line-height: 1;
    font-size: 12px;
    font-weight: 700;
    color: #323b43
}

.pricing-table-style7 .pricing-table-column-content .features {
    margin: 0;
    line-height: 36px
}

.pricing-table-style7 .pricing-table-column-content .features li {
    margin: 0;
    padding-left: 10px;
    line-height: 36px
}

.pricing-table-style7 .pricing-table-column-content .features li::before {
    content: "+";
    display: inline-block;
    margin: 0 8px 0 0;
    padding: 0;
    font-weight: 600;
    font-style: normal;
    vertical-align: middle;
    color: #168eea
}

.pricing-table-style7 .pricing-table-column-content .submit-table {
    margin-top: 20px;
    padding: 20px 20px 0;
    border-top: 1px solid #f4f7f9
}

.pricing-table-style7 .pricing-table-column.has-features .submit-table {
    margin-top: 0;
    border-top: 0 none
}

.pricing-table-style7 .pricing-table-column-content .popular {
    display: none;
    margin: -1px -1px 0;
    padding: 5px 0;
    line-height: 1;
    font-size: 11px;
    letter-spacing: .35px;
    text-align: center;
    color: #513a00;
    background: #fff9e9;
    border: 1px solid #fcdc84;
    border-radius: 3px 3px 0 0
}

.pricing-table-style7 .pricing-table-column.popular .popular {
    display: block
}

.pricing-table-style7 .pricing-table-column.popular .popular::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin: 0 3px 0 0;
    padding: 0;
    vertical-align: middle;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAkAAAAJCAMAAADXT/YiAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH3wkQCgI7/B8/xAAAAE5QTFRF/7kA4KMAwY0Ak2wAglwAeFcAbU8Aa0sAaUgAZUcAXUAAWz8AWz4AWDwAVzsAVjkAVDkAVDoAUjgAUTcASzMATDIATTMATTQATDMA////REOUwwAAABl0Uk5TFhkdLT1GVFhfb4SKj52osr3Cw9Xt8/P19qvyRYEAAAABYktHRBnsbrWIAAAAOUlEQVQIHQXBCQJDQAAEsKCuFuvqmv+/VALWBtA9I+CbAv1dk9Q6M/2T5AdLkh1sOesFyuBztAB4AXFqAoYLVAboAAAAAElFTkSuQmCC) center center no-repeat
}

.pricing-table-style7 .pricing-table-column-content .button {
    position: relative;
    display: block;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    color: #363c40;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ced7df;
    border-radius: 3px;
    box-shadow: none
}

.pricing-table-style7 .pricing-table-column-content .button:hover {
    border-color: #afbecb
}

.pricing-table-style7 .pricing-table-column.popular .button {
    color: #fff;
    background: #168eea;
    border: 1px solid #137dcf;
    border-radius: 0 0 3px 3px;
    box-shadow: 0 1px 0 0 rgba(255, 255, 255, .067) inset;
    text-shadow: 0 0 1px rgba(0, 0, 0, .298)
}

.pricing-table-style7 .pricing-table-column.popular .button:hover {
    border-color: #137dcf
}

.pricing-table-style8 .pricing-table-content {
    border-spacing: 20px 0
}

.pricing-table-style8 .pricing-table-column-content {
    background: 0 0
}

.pricing-table-style8 .pricing-table-column-content .popular {
    position: relative;
    display: block;
    top: 0;
    right: 0;
    left: 0;
    height: 36px;
    line-height: 36px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: .35px;
    text-transform: uppercase;
    background: #2c97dd;
    color: #fff
}

.pricing-table-style8 .pricing-table-column {
    border: 3px solid transparent
}

.pricing-table-style8 .pricing-table-column.popular .pricing-table-column-content {
    border: 3px solid #2a9bdf
}

.pricing-table-style8 .pricing-table-column-content .popular:empty {
    display: none
}

.pricing-table-style8 .price-table {
    margin: 0;
    padding: 40px;
    background: #fff;
    border: 1px solid #cdcdcf;
    border-bottom: none
}

.pricing-table-style8 .pricing-table-column-content .name {
    margin: 0;
    line-height: 33px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0;
    color: #000;
    text-align: center;
    text-shadow: none
}

.pricing-table-style8 .pricing-table-column-content .description {
    margin: 30px 0;
    padding: 0;
    line-height: 28px;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
    color: #556273
}

.pricing-table-style8 .pricing-table-column-content .price {
    position: relative;
    margin: 30px 0;
    line-height: 1;
    font-size: 70px;
    color: #f77c03;
    font-weight: 700
}

.pricing-table-style8 .pricing-table-column-content .price .variable {
    position: relative;
    margin-top: 20px;
    margin-bottom: 5px;
    font-size: 16px;
    text-align: center;
    display: block;
    font-weight: 400;
    color: #525447
}

.pricing-table-style8 .pricing-table-column-content .button {
    display: block;
    margin: 2em 0 0;
    padding: 20px 10px;
    font-size: 18px;
    font-weight: 700;
    background: #2c97dd;
    border-radius: 3px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase
}

.pricing-table-style8 .pricing-table-column-content .feature-table {
    background: #f5f5f7;
    border: 1px solid #cdcdcf;
    border-top: 0
}

.pricing-table-style8 .feature-description {
    margin: 0;
    padding: 10px;
    background: #edecf1;
    font-size: 14px;
    text-align: center
}

.pricing-table-style8 .pricing-table-column-content .features {
    margin: 0;
    padding: 20px 50px;
    list-style: none none
}

.pricing-table-style8 .pricing-table-column-content .features li {
    display: block;
    margin: 0;
    padding: 10px 0 10px 25px;
    font-size: 14px;
    line-height: normal;
    color: #363948;
    text-align: left;
    background-repeat: no-repeat;
    background-position: 0 11px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAANCAYAAACgu+4kAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpFMUQxNDVBNDY5MEMxMUU1QkQzNjlDOTJDNzFCMjAwNCIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpFMUQxNDVBNTY5MEMxMUU1QkQzNjlDOTJDNzFCMjAwNCI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkUxRDE0NUEyNjkwQzExRTVCRDM2OUM5MkM3MUIyMDA0IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkUxRDE0NUEzNjkwQzExRTVCRDM2OUM5MkM3MUIyMDA0Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Y+NOngAAAk1JREFUeNqUU89r1EAU/jKZTdLsro1bW2tb6kGkIIrgDwr1JAj1UlDq+uNgD6In7x68+0+IxYuCRQ89CILgD/AoeKg9bKsiPRQWhexuN01mMsmML+1qW/Him0yGzMz33ve+92LhOrbNYMfawOXZKVycOoVwI+ptWuDMgjbmGGPsXcXr+8BLuMHwP2bhKLOsxSgRQz/bndks0085ol50vXWhGAZdQGUZ6PIO1rJO0vIyUemYynJkLEMOc5bfu3sFrs1R9X1049iITGEzEqgGPtrRZi8wJon9YiLTYSEVmG0jGPaWPde9yiePT8C22P2gXD6dSHEzTlUcbnYRdiKkqYLN+RlisiCUGk5ECs45/P181fHtOlFo8HCje6fZaj9QSmGkVlO+5811unGaUgolZp8g8DNidbgAl7iN6gFnzXKsus5NwxgDJqR8WIALQLPVuhZLucAZI1YYp7xfSaWOiFiC2wwDI9UVv780bTSWfmvDVJ7fdh0n9xwHsnAShpeyPH9Lab2PlRxNEgIzG4dGg6VK4E7nuVnZXXNOc74Q23VKjwwdFApHQpyn6FAiK9TH0HjQqPb7daHE2p5+6TmA1nqemkP3Oe58YqSVaypQBlRrZZQDd7W8z60Tq9Ui57/tTyPR4WN6z/mem2kC+4FDjvNGpdY3Y7RZhvl3b/HdH+TkCTWUqA1UnjfXW43vn39cGJsYXHfKJSAnxTUladOksI5XgpVYex0URhq8ODgYzHx8/eXbpzdf18PmBraYm+0fRlMJ6IGUGWZvncMvAQYAdg4c3IIJDMoAAAAASUVORK5CYII=)
}

.pricing-table-style8.pricing-table-4col .pricing-table-content, .pricing-table-style8.pricing-table-5col .pricing-table-content {
    border-spacing: 5px
}

.pricing-table-style8.pricing-table-4col .feature-table, .pricing-table-style8.pricing-table-4col .price-table, .pricing-table-style8.pricing-table-5col .feature-table, .pricing-table-style8.pricing-table-5col .price-table {
    padding: 10px
}

.pricing-table-style8.pricing-table-4col .pricing-table-column-content .price, .pricing-table-style8.pricing-table-5col .pricing-table-column-content .price {
    font-size: 35px
}

.pricing-table-style8.pricing-table-4col .pricing-table-column-content .features, .pricing-table-style8.pricing-table-5col .pricing-table-column-content .features {
    padding: 10px
}

.pricing-table-style8.pricing-table-4col .pricing-table-column-content .button, .pricing-table-style8.pricing-table-5col .pricing-table-column-content .button {
    padding: 10px 5px;
    font-size: 16px
}

@media only screen and (max-width:959px) {
    .pricing-table-style8 .pricing-table-column-content .price {
        font-size: 50px
    }

    .pricing-table-style8 .pricing-table-column-content .price .unit {
        top: -28px;
        left: -4px
    }

    .pricing-table-style8 .pricing-table-column-content .description {
        font-size: 15px
    }

    .pricing-table-style8 .pricing-table-content .pricing-table-column .pricing-table-column-content .price {
        margin: 15px 0
    }

    .pricing-table-style8 .pricing-table-column-content .button {
        font-size: 16px
    }
}

@media only screen and (max-width:960px) and (min-width:768px) {
    .pricing-table-style8.pricing-table-5col .pricing-table-column {
        width: 50%;
        margin: 0 auto 20px;
        display: block
    }
}

@media only screen and (max-width:767px) {
    .pricing-table-style8 .pricing-table-column {
        margin-bottom: 20px
    }
}

@media only screen and (max-width:480px) {
    .pricing-table-style8 .pricing-table-column-content .popular {
        display: none
    }

    .pricing-table-style8 .pricing-table-column.popular .pricing-table-column-content .popular {
        display: block
    }
}

.pricing-table-style9 .pricing-table-content {
    border-spacing: 20px 0;
    font-family: "Open Sans", sans-serif
}

.pricing-table-style9 .pricing-table-column-content .name {
    margin: 0;
    padding: 2em 0;
    line-height: 33px;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: 0;
    color: #000;
    text-align: center;
    text-transform: uppercase
}

.pricing-table-style9 .pricing-table-column-content .price {
    background-color: #16a086;
    height: auto;
    padding: .5em 0;
    margin-top: 0;
    font-size: 3em;
    font-weight: 700;
    color: #fff
}

.pricing-table-style9 .pricing-table-column-content .var {
    background-color: #e7e7e7;
    padding: 3px 0
}

.pricing-table-style9 .pricing-table-column-content .variable {
    color: #000;
    font-size: 16px
}

.pricing-table-style9 .pricing-table-column-content .features {
    width: 90%;
    margin: 0 auto
}

.pricing-table-style9 .pricing-table-column-content .features li {
    padding: 1em 0;
    border-top: 1px solid #e9edf2;
    margin: 0
}

.pricing-table-style9 .pricing-table-column-content .features li:first-child {
    border-top: none
}

.pricing-table-style9 .pricing-table-column-content .submit-table {
    padding: 2em 0;
    background-color: #f0f0f0
}

.pricing-table-style9 .pricing-table-column-content .button {
    margin: 5px 15px;
    padding: 10px 25px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    background-color: #1ec9a7;
    color: #fff;
    display: inline-block
}

.pricing-table-style9 .popular .name {
    background-color: #1ec9a7;
    color: #fff
}

@media only screen and (max-width:960px) and (min-width:760px) {
    .pricing-table-style9.pricing-table-5col .pricing-table-column {
        width: 50%;
        margin: 0 auto 20px;
        display: block
    }
}

@media only screen and (max-width:759px) {
    .pricing-table-style9 .pricing-table-column-content {
        margin-bottom: 20px
    }
}

.pricing-table-style10 {
    font-family: "Open Sans", sans-serif;
    width: 100%;
    color: #717a8f;
    margin: 20px 0 !important
}

.pricing-table-style10 .pricing-table-content {
    border-spacing: 10px 0
}

.pricing-table-style10 .pricing-table-column {
    vertical-align: middle;
    position: relative;
    display: table-cell;
    width: auto;
    margin: 0 10px;
    box-shadow: none;
    text-align: center
}

.pricing-table-style10 .pricing-table-column-content {
    padding: 0;
    border: 2px solid #f1f1f1;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .03);
    border-radius: 5px
}

.pricing-table-style10 .pricing-table-column-content .popular {
    width: 100%
}

.pricing-table-style10 .pricing-table-column-content .popular span {
    position: relative;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    border-radius: 5px;
    color: #fff;
    background-color: #717a8f;
    width: 50%;
    margin: 0 auto;
    padding: 0 10px
}

.pricing-table-style10 .pricing-table-column-content .description, .pricing-table-style10 .pricing-table-column-content .feature-table, .pricing-table-style10 .pricing-table-column-content .name, .pricing-table-style10 .pricing-table-column-content .price, .pricing-table-style10 .pricing-table-column-content .pricing-description {
    padding: 0 20px
}

.pricing-table-style10 .pricing-table-column-content .name {
    line-height: 20px;
    font-size: 20px;
    border-bottom: 2px solid #f1f1f1;
    padding: 20px
}

.pricing-table-style10 .pricing-table-column-content .price {
    padding-top: 10px;
    line-height: 1;
    font-size: 42px
}

.pricing-table-style10 .pricing-table-column-content .unit {
    position: relative;
    font-size: 30px;
    top: -4px
}

.pricing-table-style10 .pricing-table-column-content .variable::before {
    content: " / "
}

.pricing-table-style10 .pricing-table-column-content .price .variable {
    line-height: 1;
    font-size: 16px
}

.pricing-table-style10 .pricing-table-column-content .pricing-description {
    margin-top: 25px;
    text-align: center
}

.pricing-table-style10 .pricing-table-column-content .description {
    margin-top: 20px;
    text-align: left
}

.pricing-table-style10 .pricing-table-column-content .description p {
    color: #717a8f !important
}

.pricing-table-style10 .pricing-table-column-content .feature-table {
    margin-top: 10px;
    font-size: 13px
}

.pricing-table-style10 .pricing-table-column-content .feature-description {
    margin: 0;
    line-height: 32px;
    font-size: 13px;
    font-weight: 700;
    color: #717a8f !important
}

.pricing-table-style10 .pricing-table-column-content .features {
    margin: 0;
    line-height: 32px;
    text-align: left
}

.pricing-table-style10 .pricing-table-column-content .features li {
    margin: 0;
    line-height: 32px;
    color: #717a8f !important;
    font-size: 14px !important
}

.pricing-table-style10 .pricing-table-column-content .features li::before {
    content: "";
    display: inline-block;
    width: 15px;
    height: 15px;
    margin: -2px 7px 0 0;
    padding: 0;
    vertical-align: middle;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAPCAYAAAA71pVKAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAIGNIUk0AAHolAACAgwAA+f8AAIDoAABSCAABFVgAADqXAAAXb9daH5AAAAETSURBVHjalJMhSINREMd/EycrmgbCYMUmYhEEEcFkVwSHuCyYzWZBs8Gmglm0i8GgGAUxiDanYFsaTvhZ7sPHx75tHhzH/97937t7d1dS34Ea8A2MAW/AKXAPfABVYB5oArPADzAKtFDb/smxWlYp0P0kto3aDbDRh5TqcsYm7NGQxEz3MvKTWhsQXFarCa6oNyPAJdCivzSBL2AxcAe4QF3PvTKTy2QzSntWxxP/AupKLj3Vx8CrgW97lDKN2sg5t4PwEva64B+WUA97HDQGEFF3UV/VqYJ+1guIE+pd1uezf/b5IOtzJy7YGZK4FvHd/GxfqZN9Uj1JZ7uUbFUHqMQwnAMPwGds1RywBdST7Wv9DgDHBmVZv+ZWDgAAAABJRU5ErkJggg==) center center no-repeat #5cbbff
}

.pricing-table-style10 .pricing-table-column-content .submit-table {
    margin: 20px
}

.pricing-table-style10 .pricing-table-column-content .button {
    display: block;
    padding: 12px 20px;
    font-size: 14px;
    background: #77c04b;
    color: #fff;
    border-radius: 3px;
    box-shadow: 0 -3px 0 rgba(0, 0, 0, .1) inset
}

.pricing-table-style10 .pricing-table-column-content .button:hover {
    box-shadow: none
}

@media only screen and (max-width:960px) and (min-width:768px) {
    .pricing-table-style10.pricing-table-5col .pricing-table-column {
        width: 50%;
        margin: 0 auto 20px;
        display: block
    }
}

@media only screen and (max-width:767px) {
    .pricing-table-style10 .pricing-table-column {
        margin-bottom: 20px
    }
}

.pricing-table-style11 {
    margin: 20px 0 !important
}

.pricing-table-style11 .pricing-table-content {
    border-spacing: 10px 0
}

.pricing-table-style11 .pricing-table-column {
    text-align: center
}

.pricing-table-style11 .pricing-table-column .pricing-table-column-content {
    border-radius: 5px;
    padding: 10px 0;
    margin: 0 10px
}

.pricing-table-style11 .pricing-table-column .name {
    margin: 1em 0;
    font-size: 24px;
    font-weight: 700;
    text-transform: uppercase
}

.pricing-table-style11 .price-table {
    margin-bottom: 20px
}

.pricing-table-style11 .pricing-table-column .price {
    width: 100%;
    font-size: 4em;
    font-weight: 600;
    color: #000;
    position: relative;
    line-height: 1;
    margin-bottom: 10px
}

.pricing-table-style11 .pricing-table-column .variable {
    font-size: 16px;
    font-weight: 700;
    color: #000
}

.pricing-table-style11 .description p {
    font-size: 15px;
    font-family: "Helvetica Neue", Helvetica, sans-serif;
    color: #000;
    font-weight: 500;
    margin: 0 0 .5em
}

.pricing-table-style11 .pricing-table-column .features {
    margin: 0 20px;
    padding: 2em 0
}

.pricing-table-style11 .pricing-table-column .features li {
    font-size: 14px !important
}

.pricing-table-style11 .pricing-table-column .description {
    padding: 1em 0;
    zoom: 1;
    filter: alpha(opacity=50);
    opacity: .5;
    font-size: 12px
}

.pricing-table-style11 .pricing-table-column-content .submit-table {
    margin: 0 20px
}

.pricing-table-style11 .pricing-table-column-content .submit-table a {
    padding: 15px 10px;
    color: #fff;
    display: block;
    margin: 0 auto;
    border-radius: 5px
}

.pricing-table-style11 .pricing-table-column-content .button {
    font-size: 14px;
    color: #fff;
    border-radius: 3px
}

.pricing-table-style11 .pricing-table-column-content .unit {
    font-size: 28px;
    vertical-align: top;
    line-height: 1.4
}

.pricing-table-style11 .pricing-table-column.popular .pricing-table-column-content {
    padding-top: 0
}

.pricing-table-style11 .pricing-table-column {
    padding-top: 30px
}

.pricing-table-style11 .pricing-table-column.popular {
    padding-top: 0
}

.pricing-table-style11 .pricing-table-column .popular {
    visibility: hidden;
    border-radius: 5px 5px 0 0
}

.pricing-table-style11 .pricing-table-column.popular .popular {
    visibility: visible
}

.pricing-table-style11 .pricing-table-column-content .popular span {
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 700;
    display: block;
    padding-top: 5px;
    padding-bottom: 5px;
    color: #fff;
    margin: 0 20px
}

.pricing-table-style11.pricing-table-4col .pricing-table-content, .pricing-table-style11.pricing-table-5col .pricing-table-content {
    border-spacing: 0
}

.pricing-table-style11.pricing-table-4col .unit, .pricing-table-style11.pricing-table-5col .unit {
    line-height: 1
}

.pricing-table-style11.pricing-table-4col .price, .pricing-table-style11.pricing-table-5col .price {
    font-size: 3em
}

@media only screen and (max-width:960px) and (min-width:768px) {
    .pricing-table-style11.pricing-table-5col .pricing-table-column {
        width: 50%;
        margin: 0 auto 20px;
        display: block;
        padding-top: 0
    }
}

@media only screen and (max-width:767px) {
    .pricing-table-style11 .pricing-table-column {
        padding-top: 0;
        margin-bottom: 20px
    }
}

.op-downloadlist5-dl-wrap .row {
    border-bottom: 1px solid #f8f8f8;
    padding: 2em 0;
    box-sizing: border-box
}

.op-downloadlist5-dl-wrap .dl-name {
    color: #999;
    font-family: Lato, sans-serif;
    font-size: 1em;
    line-height: 1.5;
    font-weight: 700
}

@-webkit-keyframes op-btn-dl {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }
}

@keyframes op-btn-dl {
    25% {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }

    75% {
        -webkit-transform: scale(0.9);
        transform: scale(0.9)
    }
}

.btn-dl, .btn-dl:hover, .btn-dl:visited {
    float: right;
    cursor: pointer;
    display: inline-block;
    padding: .75em 1.25em;
    text-shadow: none;
    text-align: center;
    font: 400 16px/normal Lato, sans-serif;
    font-weight: 700;
    text-decoration: none;
    background-color: #57e493;
    border: 1px solid transparent;
    color: #fff;
    border-radius: 6px;
    vertical-align: middle;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    box-shadow: 0 0 1px transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -moz-osx-font-smoothing: grayscale
}

.btn-dl:active, .btn-dl:focus, .btn-dl:hover {
    -webkit-animation-name: op-btn-dl;
    animation-name: op-btn-dl;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-timing-function: linear;
    animation-timing-function: linear;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite
}

@media only screen and (max-width:767px) {
    .op-downloadlist5-dl-wrap {
        text-align: center
    }

    .btn-dl {
        float: none
    }
}

.double-column .op-download-left {
    width: 70%;
    float: left
}

.double-column .op-download-right {
    padding-left: 0;
    float: right
}

.ui-progressbar.progressbar-style-4 {
    background-color: #f0f0f0;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .1) inset;
    height: 20px;
    overflow: hidden
}

.ui-progressbar.progressbar-style-4 .ui-progressbar-value {
    background-color: #ffbf00;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 40px 40px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, .15) inset;
    float: left;
    font-size: 12px;
    height: 100%;
    line-height: 20px;
    text-align: center;
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.ui-progressbar.progressbar-style-4 span {
    display: block;
    font-size: 11px;
    color: #fff
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }

    to {
        background-position: 0 0
    }
}

.ui-progressbar.progressbar-style-5 {
    background: #f7f7f7;
    padding: 5px
}

.ui-progressbar.progressbar-style-5 .ui-progressbar-value {
    background: #ff008c;
    height: 42px;
    overflow: hidden;
    box-sizing: border-box
}

.ui-progressbar.progressbar-style-5 span {
    color: #fff;
    padding: 0 10px;
    display: block;
    font-family: "helvetica neue", helvetica, arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 42px;
    letter-spacing: -1px
}

.ui-progressbar.progressbar-style-6 {
    position: relative;
    padding: 0;
    color: #ffbf00;
    background: #ddd;
    height: 25px
}

.ui-progressbar.progressbar-style-6 .ui-progressbar-value {
    height: 100%;
    margin-top: 25px;
    -webkit-animation: 2s linear 1s normal none infinite running progress-bar-fadepulse;
    animation: 2s linear 1s normal none infinite running progress-bar-fadepulse
}

.ui-progressbar.progressbar-style-6 span {
    display: block;
    position: absolute;
    top: -25px;
    height: 25px;
    line-height: 25px;
    font-size: 18px;
    font-family: "Josefin Sans", sans-serif;
    color: inherit
}

@-webkit-keyframes progress-bar-fadepulse {
    0% {
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

@keyframes progress-bar-fadepulse {
    0% {
        opacity: 1
    }

    50% {
        opacity: .5
    }

    100% {
        opacity: 1
    }
}

.progressbar-style-7 {
    background: #ddd;
    overflow: hidden;
    position: relative;
    height: 50px
}

.progressbar-style-7 .ui-progressbar-value {
    height: 100%;
    background: #ffbf00
}

.ui-progressbar.progressbar-style-7 span {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 50px;
    color: #fff;
    text-align: right;
    padding: 0 16px
}

.social-sharing-style-22 {
    line-height: normal;
    text-align: center
}

.social-sharing-style-22 li {
    margin-right: 10px;
    display: inline-block;
    cursor: pointer;
    border-radius: 5px
}

.social-sharing-style-22 li:last-child {
    margin-right: 0
}

.social-sharing-style-22 li .box .share {
    display: block;
    width: auto;
    height: 30px;
    line-height: 30px;
    padding: 0 10px 0 35px;
    color: #FFF;
    border-radius: 5px
}

.social-sharing-style-22 li .box .count {
    display: block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    border-radius: 5px;
    margin-bottom: 5px;
    box-sizing: border-box;
    border: 1px solid #cacaca;
    color: #000;
    background: #fff
}

.social-sharing-style-22 li:hover .box .share {
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, .15)
}

.social-sharing-style-22 li:active .box .share {
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .15)
}

.social-sharing-style-22 li.twitter .box .share {
    background: url(../../css/elements/images/social_sharing_buttons/share4-twitter.png) 10px center no-repeat #00bdef;
    border: 1px solid #00bdef
}

.social-sharing-style-22 li.facebook .box .share {
    background: url(../../css/elements/images/social_sharing_buttons/share4-facebook.png) 10px center no-repeat #2f4b93;
    border: 1px solid #2f4b93
}

.social-sharing-style-22 li.googlePlus .box .share {
    background: url(../../css/elements/images/social_sharing_buttons/share22-google.png) 10px center no-repeat #dc4c2a;
    border: 1px solid #dc4c2a
}

.social-sharing-style-22 li.pinterest .box .share {
    background: url(../../css/elements/images/social_sharing_buttons/share22-pinterest.png) 10px center no-repeat #c93e29;
    border: 1px solid #c93e29
}

.social-sharing-style-23 {
    line-height: normal;
    text-align: center
}

.social-sharing-style-23 li {
    margin-right: 7px;
    cursor: pointer;
    display: inline-block;
    padding: 0 0 0 55px;
    height: 80px;
    border-radius: 5px
}

.floating-featured-panel-fluid .social-sharing-style-20 li, .social-sharing-style-23 li:last-child {
    margin-right: 0
}

.social-sharing-style-23 li:hover {
    box-shadow: inset 0 0 0 100px rgba(255, 255, 255, .15)
}

.social-sharing-style-23 li:active {
    box-shadow: inset 0 0 0 100px rgba(0, 0, 0, .15)
}

.social-sharing-style-23 li.twitter {
    background: url(../../css/elements/images/social_sharing_buttons/share23-twitter.png) 10px center no-repeat #00bdef
}

.social-sharing-style-23 li.facebook {
    background: url(../../css/elements/images/social_sharing_buttons/share23-facebook.png) 10px center no-repeat #2f4b93
}

.social-sharing-style-23 li.googlePlus {
    background: url(../../css/elements/images/social_sharing_buttons/share23-google.png) 10px center no-repeat #dc4c2a
}

.social-sharing-style-23 li .box {
    margin: 0;
    padding: 0
}

.social-sharing-style-23 li a {
    font: 700 12px/normal "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: block;
    color: #fff;
    float: left;
    text-decoration: none;
    width: auto;
    padding: 0;
    line-height: 80px;
    font-size: 15px
}

.social-sharing-style-23 li a.count {
    font-weight: 400;
    float: right;
    margin: 0 15px 0 10px;
    opacity: .7
}

.social-sharing-style-23 li a.share {
    padding: 0 30px;
    text-transform: uppercase
}

.social-sharing-style-23 li.facebook a.share {
    padding: 0 30px 0 20px;
    display: none
}

.social-sharing-style-23 li.googlePlus a.share, .social-sharing-style-23 li.twitter a.share {
    padding: 0 30px 0 40px;
    display: none
}

.social-sharing-style-24 {
    display: block;
    color: #fff;
    text-decoration: none;
    vertical-align: middle;
    margin-bottom: 7px;
    float: left;
    clear: both;
    position: relative
}

.social-sharing-style-24 li .box .count {
    display: block;
    width: 100%;
    height: 35px;
    line-height: 35px;
    margin-bottom: 3px;
    box-sizing: border-box;
    text-align: center
}

.social-sharing-style-24 .facebook .box .count {
    background: #145794;
    display: block;
    color: #fff;
    text-decoration: none;
    height: 40px;
    clear: both;
    position: relative;
    left: 0;
    top: 0;
    padding-left: 0;
    padding-right: 0;
    z-index: -1
}

.social-sharing-style-24 .facebook .box {
    background: url(../../css/elements/images/social_sharing_buttons/share24-facebook.png) no-repeat #145794;
    width: 40px;
    padding: 0;
    margin: 5px
}

.social-sharing-style-24 li.facebook .box .share {
    display: none
}

.social-sharing-style-24 .googlePlus .box .count {
    background: #C04325;
    display: block;
    color: #fff;
    text-decoration: none;
    height: 40px;
    clear: both;
    position: relative;
    left: 0;
    top: 0;
    padding-left: 0;
    padding-right: 0;
    z-index: -1
}

.social-sharing-style-24 .googlePlus .box {
    background: url(../../css/elements/images/social_sharing_buttons/share24-google.png) no-repeat #C04325;
    width: 40px;
    padding: 0;
    margin: 5px
}

.social-sharing-style-24 li.googlePlus .box .share {
    display: none
}

.social-sharing-style-24 .twitter .box .count {
    background: #3EA1E0;
    display: block;
    color: #fff;
    text-decoration: none;
    height: 40px;
    clear: both;
    position: relative;
    left: 0;
    top: 0;
    padding-left: 0;
    padding-right: 0;
    z-index: -1
}

.social-sharing-style-24 .twitter .box {
    background: url(../../css/elements/images/social_sharing_buttons/share24-twitter.png) no-repeat #3EA1E0;
    width: 40px;
    padding: 0;
    margin: 5px
}

.social-sharing-style-24 li.twitter .box .share {
    display: none
}

.social-sharing-style-24 .linkedin .box .count {
    background: #236B9E;
    display: block;
    color: #fff;
    text-decoration: none;
    height: 40px;
    clear: both;
    position: relative;
    left: 0;
    top: 0;
    padding-left: 0;
    padding-right: 0;
    z-index: -1
}

.social-sharing-style-24 .linkedin .box {
    background: url(../../css/elements/images/social_sharing_buttons/share24-ln.png) no-repeat #236B9E;
    width: 40px;
    padding: 0;
    margin: 5px
}

.social-sharing-style-24 li.linkedin .box .share {
    display: none
}

.social-sharing-style-25 .facebook[data-colorscheme=dark] .box {
    background: url(../../css/elements/images/social_sharing_buttons/facebook-dark-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .twitter[data-colorscheme=dark] .box {
    background: url(../../css/elements/images/social_sharing_buttons/twitter-dark-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .linkedin[data-colorscheme=dark] .box {
    background: url(../../css/elements/images/social_sharing_buttons/ln-dark-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .googlePlus[data-colorscheme=dark] .box {
    background: url(../../css/elements/images/social_sharing_buttons/google-dark-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .pinterest[data-colorscheme=dark] .box {
    background: url(../../css/elements/images/social_sharing_buttons/pinterest-dark-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .facebook[data-colorscheme=light] .box {
    background: url(images/social_sharing_buttons/facebook-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .twitter[data-colorscheme=light] .box {
    background: url(../../css/elements/images/social_sharing_buttons/twitter-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .linkedin[data-colorscheme=light] .box {
    background: url(../../css/elements/images/social_sharing_buttons/ln-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .googlePlus[data-colorscheme=light] .box {
    background: url(../../css/elements/images/social_sharing_buttons/google-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .pinterest[data-colorscheme=light] .box {
    background: url(../../css/elements/images/social_sharing_buttons/pinterest-25.png) 0 0/60px 60px no-repeat
}

.social-sharing-style-25 .facebook .box, .social-sharing-style-25 .googlePlus .box, .social-sharing-style-25 .linkedin .box, .social-sharing-style-25 .pinterest .box, .social-sharing-style-25 .twitter .box {
    width: 60px;
    height: 60px;
    padding: 0;
    margin: 5px
}

.social-sharing-style-25 li.facebook .box .share, .social-sharing-style-25 li.googlePlus .box .share, .social-sharing-style-25 li.linkedin .box .share, .social-sharing-style-25 li.twitter .box .share {
    display: none
}

.social-sharing-style-25 .count {
    margin-left: 70px;
    margin-top: 20px;
    font-size: large
}

.social-sharing-style-25 .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.social-sharing-style-25 [data-colorscheme=light] .count {
    color: #fff
}

.social-sharing-style-25 [data-colorscheme=dark] .count {
    color: #000
}

a.count, span.count {
    color: #000;
    text-decoration: none
}

.social-sharing-style-26 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap
}

.social-sharing-style-26 li {
    display: inline-block;
    height: 45px;
    margin-right: 15px;
    border-radius: 5px;
    padding: 0 20px 0 55px;
    -webkit-transition: .2s background-color ease-out;
    transition: .2s background-color ease-out
}

.social-sharing-style-26 li:hover {
    background-color: rgba(0, 0, 0, .3) !important;
    -webkit-transition: .2s background-color ease-in;
    transition: .2s background-color ease-in
}

.social-sharing-style-26 li:last-child {
    margin: 0
}

.social-sharing-style-26 li a {
    display: block;
    color: #fff;
    text-decoration: none;
    width: auto;
    padding: 0;
    line-height: 45px;
    font-size: 22px
}

.social-sharing-style-26 .count {
    color: #fff
}

.social-sharing-style-26 li.facebook .box .share, .social-sharing-style-26 li.googlePlus .box .share, .social-sharing-style-26 li.twitter .box .share {
    display: none
}

.social-sharing-style-26 .facebook, .social-sharing-style-26 .linkedin, .social-sharing-style-26 .pinterest, .social-sharing-style-26 .twitter {
    background-size: 25px 25px !important
}

.social-sharing-style-26 .googlePlus {
    background-size: 23px 23px !important
}

.social-sharing-style-26 .facebook {
    background: url(images/social_sharing_buttons/svg/facebook.svg) 20px center no-repeat
}

.social-sharing-style-26 .twitter {
    background: url(images/social_sharing_buttons/svg/twitter.svg) 20px center no-repeat #00a0d2
}

.social-sharing-style-26 .googlePlus {
    background: url(images/social_sharing_buttons/svg/googlePlus.svg) 20px center no-repeat #00a0d2
}

.social-sharing-style-26 .linkedin {
    background: url(images/social_sharing_buttons/svg/linkedin.svg) 20px center no-repeat #00a0d2
}

.social-sharing-style-26 .pinterest {
    background: url(images/social_sharing_buttons/svg/pinterest.svg) 20px center no-repeat #00a0d2
}

@media only screen and (max-width:767px) {
    .social-sharing-style-26 li {
        display: inline-block;
        height: 45px;
        margin-right: 3px;
        border-radius: 5px;
        padding: 0 10px 0 50px
    }

    .social-sharing-style-26 li a {
        font-size: 20px
    }

    .social-sharing-style-26 .facebook {
        background: url(images/social_sharing_buttons/svg/facebook.svg) 10px center no-repeat #00a0d2
    }

    .social-sharing-style-26 .twitter {
        background: url(images/social_sharing_buttons/svg/twitter.svg) 10px center no-repeat #00a0d2
    }

    .social-sharing-style-26 .googlePlus {
        background: url(images/social_sharing_buttons/svg/googlePlus.svg) 10px center no-repeat #00a0d2
    }

    .social-sharing-style-26 .linkedin {
        background: url(images/social_sharing_buttons/svg/linkedin.svg) 10px center no-repeat #00a0d2
    }

    .social-sharing-style-26 .pinterest {
        background: url(images/social_sharing_buttons/svg/pinterest.svg) 10px center no-repeat #00a0d2
    }
}

.social-sharing-style-27 li {
    width: 30px;
    height: 45px;
    margin-right: 15px;
    border-radius: 5px;
    padding: 0 20px 0 55px;
    -webkit-transition: .2s background-color ease-out;
    transition: .2s background-color ease-out
}

.social-sharing-style-27 li:hover {
    background-color: rgba(0, 0, 0, .3) !important;
    -webkit-transition: .2s background-color ease-in;
    transition: .2s background-color ease-in
}

.social-sharing-style-27 li a {
    display: block;
    color: #fff;
    text-decoration: none;
    width: auto;
    padding: 0;
    line-height: 45px;
    font-size: 22px
}

.social-sharing-style-27 .count {
    color: #fff;
    width: auto
}

.social-sharing-style-27 li.facebook .box .share, .social-sharing-style-27 li.googlePlus .box .share, .social-sharing-style-27 li.twitter .box .share {
    display: none
}

.social-sharing-style-27 .facebook, .social-sharing-style-27 .linkedin, .social-sharing-style-27 .pinterest, .social-sharing-style-27 .twitter {
    background-size: 25px 25px !important
}

.social-sharing-style-27 .googlePlus {
    background-size: 23px 23px !important
}

.social-sharing-style-27 .facebook {
    background: url(images/social_sharing_buttons/svg/facebook.svg) 20px center no-repeat #00a0d2
}

.social-sharing-style-27 .twitter {
    background: url(images/social_sharing_buttons/svg/twitter.svg) 20px center no-repeat #00a0d2
}

.social-sharing-style-27 .googlePlus {
    background: url(images/social_sharing_buttons/svg/googlePlus.svg) 20px center no-repeat #00a0d2
}

.social-sharing-style-27 .linkedin {
    background: url(images/social_sharing_buttons/svg/linkedin.svg) 20px center no-repeat #00a0d2
}

.social-sharing-style-27 .pinterest {
    background: url(images/social_sharing_buttons/svg/pinterest.svg) 20px center no-repeat #00a0d2
}

@media only screen and (max-width:767px) {
    .social-sharing-style-27 li {
        width: 100%;
        padding: 0
    }
}

.social-sharing-style-28 {
    background-color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, .1), 0 4px 8px 0 rgba(0, 0, 0, .1);
    border-radius: 5px
}

.social-sharing-style-28 li {
    display: inline-block;
    height: 50px;
    width: 25%;
    margin: 0;
    -webkit-transition: background-color .3s ease-out;
    transition: background-color .3s ease-out
}

.social-sharing-style-28 li:last-child {
    margin: 0
}

.social-sharing-style-28 li a {
    color: #000;
    text-decoration: none;
    width: auto;
    padding: 0;
    font-size: 30px
}

.social-sharing-style-28 .box {
    height: 100%;
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.social-sharing-style-28 .count {
    color: #000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.social-sharing-style-28 li.facebook .box .share, .social-sharing-style-28 li.googlePlus .box .share, .social-sharing-style-28 li.twitter .box .share {
    display: none
}

.social-sharing-style-28 .facebook:hover {
    background-color: #3b5998;
    border-radius: 5px 0 0 5px;
    -webkit-transition: background-color .3s ease-in;
    transition: background-color .3s ease-in
}

.social-sharing-style-28 .twitter:hover {
    background-color: #1da1f2;
    -webkit-transition: background-color .3s ease-in;
    transition: background-color .3s ease-in
}

.social-sharing-style-28 .googlePlus:hover {
    background-color: #db4437;
    -webkit-transition: background-color .3s ease-in;
    transition: background-color .3s ease-in
}

.social-sharing-style-28 .linkedin:hover {
    background-color: #0177b5;
    -webkit-transition: background-color .3s ease-in;
    transition: background-color .3s ease-in
}

.social-sharing-style-28 .pinterest:hover {
    background-color: #c93e29;
    border-radius: 0 5px 5px 0;
    -webkit-transition: background-color .3s ease-in;
    transition: background-color .3s ease-in
}

.social-sharing-style-28 .facebook:hover .count, .social-sharing-style-28 .googlePlus:hover .count, .social-sharing-style-28 .linkedin:hover .count, .social-sharing-style-28 .twitter:hover .count {
    color: #fff
}

.social-sharing-style-28 .count:before {
    width: 30px;
    height: 30px;
    margin-right: 10px
}

.social-sharing-style-28 .facebook .count:before {
    content: url(images/social_sharing_buttons/share28-facebook.png)
}

.social-sharing-style-28 .twitter .count:before {
    content: url(images/social_sharing_buttons/share28-twitter.png)
}

.social-sharing-style-28 .googlePlus .count:before {
    content: url(images/social_sharing_buttons/share28-googlePlus.png)
}

.social-sharing-style-28 .linkedin .count:before {
    content: url(images/social_sharing_buttons/share28-linkedin.png)
}

.social-sharing-style-28 .pinterest .count:before {
    content: url(images/social_sharing_buttons/share28-pinterest.png)
}

.social-sharing-style-28 .facebook:hover .count:before {
    content: url(images/social_sharing_buttons/share26-facebook.png)
}

.social-sharing-style-28 .twitter:hover .count:before {
    content: url(images/social_sharing_buttons/share26-twitter.png)
}

.social-sharing-style-28 .googlePlus:hover .count:before {
    content: url(images/social_sharing_buttons/share26-googlePlus.png)
}

.social-sharing-style-28 .linkedin:hover .count:before {
    content: url(images/social_sharing_buttons/share26-linkedin.png)
}

.social-sharing-style-28 .pinterest:hover .count:before {
    content: url(images/social_sharing_buttons/share26-pinterest.png)
}

#op_assets_core_social_sharing_fb_color, #op_assets_core_social_sharing_fb_lang, #op_assets_core_social_sharing_fb_text, #op_assets_core_social_sharing_g_color, #op_assets_core_social_sharing_g_lang, #op_assets_core_social_sharing_linkedin_color, #op_assets_core_social_sharing_linkedin_lang, #op_assets_core_social_sharing_p_color, #op_assets_core_social_sharing_tw_color, #op_assets_core_social_sharing_tw_lang {
    width: 100% !important;
    padding: 10px;
    height: 40px !important
}

.calendar-date-style-4 .calendar-date-box {
    box-shadow: 0 1px 0 0 rgba(0, 0, 0, .1);
    text-align: center;
    line-height: normal;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg)
}

.calendar-date-style-4 .calendar-date-box .month {
    background-color: #56ACFF;
    background-image: none;
    box-shadow: none;
    color: #fff;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1em;
    margin: 0;
    padding: 10px 0;
    position: relative;
    z-index: 1
}

.calendar-date-style-4 .calendar-date-box .day {
    background-color: #f7f7f7;
    background-image: none;
    color: #646e76;
    display: block;
    font-family: 'Open Sans', sans-serif;
    font-size: 80px;
    font-weight: 600;
    line-height: 1em;
    margin: 0;
    padding: 10px 0
}

.calendar-date.calendar-date-style-4 .calendar-time-box ul li {
    color: rgba(0, 0, 0, .5);
    margin-bottom: 8px
}

.calendar-date.calendar-date-style-4 .calendar-time-box ul li.date::before, .calendar-date.calendar-date-style-4 .calendar-time-box ul li.time::before {
    opacity: .5
}

.calendar-date.calendar-date-style-4 .calendar-time-box ul li.time {
    font-size: 20px
}

.calendar-date.calendar-date-style-5 .calendar-date-box {
    display: none
}

.calendar-date.calendar-date-style-5 .calendar-time-box ul li {
    height: 32px
}

.calendar-date.calendar-date-style-5 .calendar-time-box ul li.date::before, .calendar-date.calendar-date-style-5 .calendar-time-box ul li.time::before {
    width: 32px;
    height: 32px
}

.calendar-date.calendar-date-style-5 .calendar-time-box ul li.date::before {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAVZQTFRFAAAAfxEAfg8AfREAdxAAoEIt45x6cQ0A6aF8aQkAZAkAXQUAVQUAaDYzXR4cXiEeYSQhm5ubnJycm5ubmZmZlpaWk5OTkJCQjY2NioqKiIiIhYWFhISEgoKCgYGBAAAAfn5+AAAAe3t7AAAAdHR0xMTEZGRkZ2dnb29vAAAAAAAAAAAAAAAAAAAAAAAAAAAAS0tL/f39+bON9Ytd0NPT+bGJ631R6Gw+2T0bd3x96Gk75YJc2FQr2FMqwSwRJiIi1mVCykQiriIOpHNqy1QxvDQXvjgajDAdTAAAxk4ouzkavDsby1s11W5E7Ozs5+fn/Pz8+Pj4+/v7+fn5+vr6rq6u4Ylw9/f3/v7+9vb28/Pz9PT09fX18vLy8PDw7e3t7u7u7+/v6enp6urq5ubm5eXl4+Pj5OTk4uLi4ODg6+vr3d3d4eHh2tra2NjY3Nzc3t7e////i9BEKAAAADB0Uk5TAEiXv17P8a35v7+/v6jp6uunpqampqampqampqampgGnAqkEf+o9jLUIEBgcAwUJS+xOtQAAAAFiS0dEca8HXOIAAAAJcEhZcwAAAEgAAABIAEbJaz4AAAF4SURBVDjLfZJBixNBEEbfV10zMYPeHFBYWGGvIuLds+gPVjx7FxFv2eOCgrKLKGt6MtPlISZMr0maRx+qHv013SUAeA6fmK99wUESglQJgkREIFx6KkHYrF8EEV8iRrHQMx0R4nNksXyhrRDzhK0QH/84asQRgRCOXEiKO4JiLzQnBfFAgFT194X45fhLcWzFBxzZCUE4MigH24aEozBZ/cj/9hJFOGoZKiExpVFGmVqEg9EO84MH0hA24K0BjqRU3SFBAocmQhhKFlxe7kikRDLMCEvCQRhP2JE943k5ZhrTLqLg1GzUgGwbcXOdZhFbGlYr0vWNEI9fa7xdkCv8tmVYerz76si+PyRTkzWA/+iFIfXxX8R9ViuilxBnb/Stvce6ovm9IOdH8fbKkdH/XEPFWhl6aRuhtChlU9G309QmSfi5jNR1d3567DpoAjt3k0nd4XGJsNCF9KpcHRTO7H2ELpJOjFxMXlodNSJi48W1aY8IQxPlL1BqzihrrfZiAAAAJXRFWHRkYXRlOmNyZWF0ZQAyMDE1LTA3LTA3VDIyOjQxOjQwKzAwOjAw3FS8kQAAACV0RVh0ZGF0ZTptb2RpZnkAMjAxNS0wNy0wN1QyMjo0MTo0MCswMDowMK0JBC0AAAAASUVORK5CYII=)
}

.calendar-date.calendar-date-style-5 .calendar-time-box ul li.time::before {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAABGdBTUEAALGPC/xhBQAAAAFzUkdCAK7OHOkAAAAgY0hSTQAAeiYAAICEAAD6AAAAgOgAAHUwAADqYAAAOpgAABdwnLpRPAAAAvpQTFRFAAAAT09PUlJSUFBQUlJSZmZmVVVVUlJShoaGxMTE5+fn6+vr+/v7UlJSTk5OpaWl7e3tdXV16OjoUVFRlpaW9PT09fX1UVFR9/f3dnZ28vLyVVVV4uLiTU1No6OjAAAATExM6enpSUlJk5OTS0tLxMTESEhI2dnZSkpK39/f4uLiSUlJ39/f2tra3d3dRUVF2NjYycnJR0dHtLS0Q0NDiIiIi4uLx8fHysrKREREkZGRQ0NDv7+/wsLCAAAAREREampq0tLSAAAAOzs7e3t72NjYAAAAAAAAODg4cnJy19fXAAAAKSkpVlZWycnJAAAAAAAAAAAAISEhNDQ0hISE0dHRICAgAAAAAAAAAAAABAQEJycnMzMzaGhoo6OjysrKz8/PAAAAAAAAAAAAAAAAGhoaJiYmMDAwMDAwMzMzAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA/f39+/v7+vr6/Pz89/f37e3s1tXTwb+7u7m0rKqk7+/u+fn49vb26urqycfEzczK5uXi6+vplpaW8fHx3dzZrqyn09PQ+fn53d3b8vLy0dHOw8G84eHf/f38/v79+vr50tHO8PDw7e3t2djW/v7+///+7Ozp4uLir62o/Pz7j4+P/f375OTj5ubmxcTB0dDN9fTz/v78////h4eH9vb06ejo4ODf8fHvfX195OTkzMvI8vHu+/r4cXFx+/v58/Lv5eXlvby3/Pv5/Pz6ZWVlsrGr9PPw+vn2WFhY+vr39fTx5+bj4eHhrauljIyL+fj1TExMRkZGPz8/Nzc3IyMjDg4OAAAAjYyMjIyJ+/v45C4u99PS39/e4+Lg+Pf099PR3d3d2NfS8fDs9vXy9tLQ9/bz8fDt19fS3t7exsXB7+7q9fTwx8XA29vb2NjY6ejl9dDN6unmycjD7u3p1dXV8O/r9PPv887L+Pfz4uHh3Nzc19bU4N7a8O/qu7q019fV0M/M8vHt7ezo5+fm1dTP3NvWvr25ubeyq6mj5+fn6+vr7+/v90oi7gAAAHJ0Uk5TACBEZX4FOXWWv+Hm/ihxqeyP41Sf9vZC/JD1A+E7qgF17CafSsNj4HX19X38/vx19eBLwyafoezsPKpy4eMEKZT1Akmn/AMLZLL4GGml6AkUKFSOu/JWBQ0mNmKQrc7p7gYMHC5MaYOEmQ4THyIjJA8Rl5Ep6AAAAAFiS0dEpFm+erkAAAAJcEhZcwAAAEgAAABIAEbJaz4AAAMISURBVBgZRcHPaxxlHAfgz+f7vrMz+2MyyWaziTskKY0LQYK4KBgQKognxYOXggpi9SAK3qTQf0HoVXowIgQs4qXgSQ+CRVA8hFKt4oaQJmnSaJN1dyfZX7OZb2ezos9D/I8kCIWq4j/EvxyOQcdijBFjPsl3SYzw7HNVjXCOOCcBrxiOQFUte2vaSjBCjEyTH5BxhiRUdeB03RuJHiNFpGbP7EckT7sqZzAJZ1QNrw/NXwAMAN+17xWsTQotzAem1NJiRpi59BM5AAwQDrLX/Eealb2FGWO7frF4f+Jg7mCiendQimCAyezVjLGnpa2FDIggIYr3n9orZqeX77ENi0WyQHp+vXYMwqcXURfaC/lYLxoN9wXGXM5uepuoHO0O4MOBj8Eu6n94mw8vGxcCkedszdZkAqkIDiKklp/1agsviEAg0nDryMwh1UfkRugj5aDuHonAQgg7zLM7l8wr+65FHzpfmMu4zw98k8DCsMpLPQ/dymFb2fdWCKZaOtV5KIQFCOR6QH4ynsNBjRuoIA6bSMVyBoE1kz2nH3hJM4zjmnNYqcRx2ExmkelVxcKim7dDu0R4vWbIXB1AiGbiuRc4XGIHgoK8teF5XgAvYW4/DMN8s5F42LfOhiMFCES+eeML5zc3wHR5L2k0GknieSifumuv0QgM6N56ZfBkqER5244B5cyM05q90vs7EuznTKmxfpKbmveCACNBUM7kztZfLUpuHwTCC7zF6x+zfzwD4KACHE+pK4xfT8xtGCC6aL4uvfNJ1SkPTtod00mcUi/y5burlNuAAbAkslFw7jzdmXTbi0FzNtvgV/UHn5HcBgyAqjHm7urb/6z9vlq8d7Rsbvy48vLuuqS2AIsRQ97M767sCJ+Barzy7fs3jeoQKQJ4yee5L8lPAXyo+qaqiVWj7wECWFxlNMGxF/GDjrV9/XkHsEg9Wsw1pjt5pn6Bp6nT3PGs7iBlALQScYZTuQd5z1prUvHhE6atB1s7AAxSre2T/KHfz2ZF4sSh9Pv2z+Gvd1pIPQYh/TFlQ2uwPwAAACV0RVh0ZGF0ZTpjcmVhdGUAMjAxNS0wNy0wN1QyMjo0MTo0MCswMDowMNxUvJEAAAAldEVYdGRhdGU6bW9kaWZ5ADIwMTUtMDctMDdUMjI6NDE6MzkrMDA6MDAyVEjnAAAAAElFTkSuQmCC)
}

.calendar-date.calendar-date-style-5 .calendar-time-box ul li.date {
    font-weight: 700;
    margin-bottom: 20px
}

.calendar-date.calendar-date-style-5 .calendar-time-box ul li.time {
    font-size: 20px
}

.calendar-date.calendar-date-style-5 .calendar-time-box ul li span {
    top: auto;
    line-height: 32px;
    vertical-align: top
}

.calendar-date.calendar-date-style-5 .calendar-time-box ul li strong {
    font-weight: 400
}

.countdown-timer-style-4 {
    text-align: center
}

.countdown-timer-style-4 .countdown_section {
    color: #505e6e;
    display: inline-block;
    margin: 0 8px;
    font-family: 'Open Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    text-transform: lowercase
}

.countdown-timer-style-4 .countdown_section br {
    display: none
}

.countdown-timer-style-4 .countdown_amount {
    background: 0 0;
    border-radius: 100%;
    box-shadow: none;
    border: 4px solid #3a4a5d;
    color: #505e6e;
    display: inline-block;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-shadow: none;
    height: 40px;
    line-height: 40px;
    margin: 0 4px 0 0;
    width: 40px
}

.countdown-timer-style-4 .countdown_amount::after {
    background: 0 0
}

.countdown-timer-style-5 {
    text-align: center
}

.countdown-timer-style-5 .countdown_section {
    display: inline-block;
    margin: 0 4px;
    color: #abaeb1;
    font-family: 'Open Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase
}

.countdown-timer-style-5 .countdown_amount {
    background: none !important;
    border-radius: 100% !important;
    box-shadow: none;
    border: 2px solid #b7babc;
    color: #b7babc;
    display: inline-block;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    font-weight: 300;
    height: 80px;
    line-height: 80px;
    width: 80px
}

@media only screen and (max-width:766px) {
    .countdown-timer-style-5 .countdown_amount {
        line-height: 20px
    }
}

@media only screen and (max-width:767px) {
    .countdown-timer-style-5 .countdown_section {
        font-size: 12px
    }

    .countdown-timer-style-5 .countdown_amount {
        font-size: 20px;
        height: 30px;
        width: 30px;
        padding: 14px;
        margin: 0 0 0 -3px;
        line-height: 30px
    }
}

.countdown-timer-style-5 .countdown_amount::after {
    background: 0 0
}

.countdown-timer-style-6 {
    text-align: center
}

.countdown-timer-style-6 .countdown_section {
    display: inline-block;
    color: #ffd800;
    font-size: 14px;
    font-family: 'Open Sans Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0 3px
}

.countdown-timer-style-6 .countdown_amount {
    background: #f9f9f9;
    border-radius: 3px;
    box-shadow: none;
    color: #333;
    display: inline-block;
    font-family: 'Open Sans Condensed', sans-serif;
    font-size: 30px;
    font-weight: 700;
    text-shadow: none;
    height: 46px;
    line-height: 46px;
    min-width: 46px;
    padding: 0 4px
}

.countdown-timer-style-6 .countdown_amount::after {
    background: 0 0
}

.countdown-timer-style-7 {
    text-align: center
}

.countdown-timer-style-7 .countdown_section {
    color: #505e6e;
    margin: 0 6px;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase
}

.countdown-timer-style-7 .countdown_amount {
    background: #25364b;
    border-radius: 3px;
    box-shadow: none;
    color: #fffffe;
    display: inline-block;
    position: relative;
    font-family: 'Open Sans', sans-serif;
    font-size: 40px;
    font-weight: 600;
    text-shadow: none;
    height: 70px;
    line-height: 70px;
    padding: 0 6px;
    min-width: 48px
}

.countdown-timer-style-7 .countdown_amount::after {
    background: 0 0
}

@media only screen and (max-width:479px) {
    .countdown-timer-style-7 .countdown_section {
        font-size: 12px
    }

    .countdown-timer-style-7 .countdown_amount {
        font-size: 30px
    }
}

.countdown-timer-style-8 {
    text-align: center
}

.countdown-timer-style-8 .countdown_section {
    display: inline-block;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 12px;
    line-height: 12px;
    text-transform: uppercase;
    text-shadow: 0 0 1px rgba(0, 0, 0, .4);
    margin: 4px 16px 10px
}

.countdown-timer-style-8 .countdown_amount {
    background: none !important;
    box-shadow: none;
    border: none;
    color: #fff;
    display: inline-block;
    position: relative;
    font-family: Montserrat, sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 55px;
    height: 55px;
    min-width: 64px;
    padding: 0
}

.countdown-timer-style-8 .countdown_amount::after {
    background: 0 0
}

@media only screen and (max-width:767px) {
    .countdown-timer-style-8 .countdown_section {
        font-size: 12px
    }

    .countdown-timer-style-8 .countdown_amount {
        font-size: 40px;
        padding: 5px 10px;
        margin: 0 0 18px
    }
}

@media only screen and (max-width:479px) {
    .countdown-timer-style-8 .countdown_section {
        font-size: 12px
    }

    .countdown-timer-style-8 .countdown_amount {
        font-size: 30px;
        padding: 3px 5px 4px;
        margin: 0 0 10px
    }
}

.countdown-timer-style-9 {
    text-align: center
}

.countdown-timer-style-9 .countdown_section {
    display: inline-block;
    color: #fff;
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: capitalize;
    text-shadow: 0 0 1px rgba(0, 0, 0, .4)
}

.countdown-timer-style-9 .countdown_amount {
    background: rgba(0, 0, 0, .1);
    box-shadow: none;
    text-shadow: none;
    border: none;
    color: #fff;
    display: inline-block;
    position: relative;
    font-family: Montserrat, sans-serif;
    font-size: 35px;
    font-weight: 400;
    border-radius: 4px;
    line-height: 62px;
    height: 62px;
    min-width: 48px;
    margin: 0 4px;
    padding: 0 6px
}

.countdown-timer-style-9 .countdown_amount::after {
    background: 0 0
}

@media only screen and (max-width:767px) {
    .countdown-timer-style-9 .countdown_section {
        font-size: 10px;
        padding-bottom: 6px
    }

    .countdown-timer-style-9 .countdown_amount {
        font-size: 25px;
        padding: 5px 10px
    }
}

@media only screen and (max-width:479px) {
    .countdown-timer-style-9 .countdown_section {
        font-size: 10px;
        padding-bottom: 4px
    }

    .countdown-timer-style-9 .countdown_amount {
        font-size: 20px;
        padding: 5px 10px
    }
}

.countdown-timer-style-10 {
    text-align: center
}

.countdown-timer-style-10 .countdown_section {
    background: rgba(0, 0, 0, .1);
    border-radius: 10px;
    display: inline-block;
    color: #fff;
    font-family: Montserrat, sans-serif;
    line-height: 20px;
    font-size: 10px;
    text-transform: uppercase;
    margin: 0 6px;
    padding-bottom: 8px
}

.countdown-timer-style-10 .countdown_amount {
    background: none !important;
    box-shadow: none;
    text-shadow: none;
    border: none;
    color: #fff;
    display: inline-block;
    position: relative;
    font-family: Montserrat, sans-serif;
    font-size: 36px;
    font-weight: 700;
    line-height: 60px;
    height: 50px;
    min-width: 52px;
    padding: 0 6px
}

.countdown-timer-style-10 .countdown_amount::after {
    background: 0 0
}

@media only screen and (max-width:767px) {
    .countdown-timer-style-10 .countdown_section {
        font-size: 10px;
        padding-bottom: 6px
    }

    .countdown-timer-style-10 .countdown_amount {
        font-size: 25px;
        padding: 5px 10px;
        margin: 0
    }
}

@media only screen and (max-width:479px) {
    .countdown-timer-style-10 .countdown_section {
        font-size: 10px;
        padding-bottom: 4px;
        margin: 3px
    }

    .countdown-timer-style-10 .countdown_amount {
        font-size: 20px;
        padding: 5px 10px
    }
}

.countdown-timer-style-11 {
    text-align: center
}

.countdown-timer-style-11 .countdown_section {
    color: #ffd565;
    display: inline-block;
    position: relative;
    margin: 0 14px;
    font-size: 21px;
    font-family: 'Signika Negative', sans-serif;
    line-height: 25px;
    text-align: left;
    text-transform: lowercase
}

.countdown-timer-style-11 .countdown_section:nth-last-child(1)::before, .countdown-timer-style-11 .countdown_section:nth-last-child(2)::before {
    content: ":";
    display: block;
    position: absolute;
    left: -28px;
    width: 28px;
    height: 100%;
    font-size: 100px;
    line-height: 70px;
    text-align: center
}

.countdown-timer-style-11 .countdown_section:first-child::before {
    display: none
}

.countdown-timer-style-11 .countdown_section:first-child .countdown_amount {
    width: auto
}

.countdown-timer-style-11 .countdown_amount {
    color: #ffd565;
    direction: rtl;
    display: inline-block;
    position: relative;
    overflow: hidden;
    font-size: 100px;
    font-weight: 600;
    line-height: 1;
    width: 106px
}

.countdown-timer-style-11 .countdown_amount::before {
    content: "0";
    font-size: 100px;
    font-weight: 600;
    line-height: 70px
}

.countdown-timer-style-11 .countdown_section:first-child .countdown_amount::before {
    display: none
}

.countdown-timer-style-11 .countdown_amount::after {
    background: 0 0
}

@media only screen and (max-width:479px) {
    .countdown-timer-style-12 .countdown_amount {
        font-size: 60px;
        width: 66px
    }
}

.countdown-timer-style-12 {
    text-align: center
}

.countdown-timer-style-12 .countdown_section {
    color: #dadada;
    display: inline-block;
    font-size: 12px;
    letter-spacing: 1px;
    padding: 42px 12px 28px;
    font-family: "Open Sans", sans-serif;
    text-align: center;
    text-transform: uppercase;
    width: 180px;
    border-left: 1px dotted rgba(218, 218, 218, .8)
}

.countdown-timer-style-12 .countdown_section:first-child {
    border-left: 0 none
}

.countdown-timer-style-12 .countdown_amount {
    color: #fff;
    display: block;
    font-family: "Roboto Slab", serif;
    font-size: 60px;
    font-weight: 700;
    text-shadow: 0 0 1px rgba(0, 0, 0, .4);
    letter-spacing: normal;
    line-height: 1
}

.countdown-timer-style-12 .countdown_amount::after {
    background: 0 0
}

@media only screen and (max-width:960px) {
    .countdown-timer-style-12 .countdown_section {
        padding: 0
    }
}

@media only screen and (max-width:767px) {
    .countdown-timer-style-12 .countdown_section {
        padding: 0;
        width: 100px
    }

    .countdown-timer-style-12 .countdown_amount {
        font-size: 40px
    }
}

@media only screen and (max-width:479px) {
    .countdown-timer-style-12 .countdown_section {
        border-left: none
    }
}

.countdown-timer-style-13 {
    text-align: center
}

.countdown-timer-style-13 .countdown_section {
    color: rgba(0, 0, 0, .25);
    display: inline-block;
    position: relative;
    font-size: 12px;
    font-family: Play, serif;
    text-align: center;
    text-transform: uppercase;
    margin: 0 13px
}

.countdown-timer-style-13 .countdown_section:nth-last-child(1)::before, .countdown-timer-style-13 .countdown_section:nth-last-child(2)::before {
    content: ":";
    display: block;
    position: absolute;
    left: -26px;
    width: 26px;
    height: 100%;
    font-size: 100px;
    line-height: 1;
    text-align: center
}

.countdown-timer-style-13 .countdown_section:first-child::before {
    display: none
}

.countdown-timer-style-13 .countdown_section:first-child .countdown_amount {
    width: auto
}

.countdown-timer-style-13 .countdown_amount {
    direction: rtl;
    display: inline-block;
    overflow: hidden;
    font-size: 100px;
    width: 110px;
    height: 90px;
    line-height: 1
}

.countdown-timer-style-13 .countdown_amount::before {
    content: "0"
}

.countdown-timer-style-13 .countdown_section:first-child .countdown_amount::before {
    display: none
}

.countdown-timer-style-13 .countdown_amount::after {
    background: 0 0
}

.op-fancy-faq-wrap {
    font-weight: 400;
    font-size: 14px;
    line-height: 24px
}

.op-fancy-faq-wrap h3 {
    color: #21759b;
    position: relative;
    background: 0 0;
    font: 700 14px/24px 'Open Sans', Arial, Helvetica, sans-serif;
    padding: 3px 0 15px 30px;
    margin: 0;
    cursor: pointer;
    outline: 0
}

.op-fancy-faq-wrap h3::after {
    background: #60b7fc;
    border-radius: 3px;
    color: #fff;
    content: "Q";
    font-weight: 700;
    height: 25px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 4px;
    width: 25px
}

.op-fancy-faq-wrap .ui-accordion-content {
    padding: 0 0 30px 30px;
    position: relative;
    color: #444;
    font: 400 14px/24px 'Open Sans', Arial, Helvetica, sans-serif
}

.op-fancy-faq-wrap .ui-accordion-content p {
    margin: 0 auto 10px
}

.op-fancy-faq-wrap .ui-accordion-content::after {
    background: #93dd64;
    border-radius: 3px;
    color: #fff;
    content: "A";
    font-weight: 700;
    height: 25px;
    left: 0;
    position: absolute;
    text-align: center;
    top: 4px;
    width: 25px
}

.op-faq-s2-wrap h3 {
    position: relative;
    color: #5c5c5c;
    cursor: pointer;
    outline: 0;
    margin: 0;
    padding: 10px 0;
    font-size: 18px;
    line-height: 20px
}

.op-faq-s2-wrap h3::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -5px;
    background: url(../../images/elements/qna_elements/style4-arrow.png) 0 center no-repeat
}

.op-faq-s2-wrap .ui-wrap-active h3::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.op-faq-s2-wrap .faq-item {
    background-color: #EFEFF2;
    color: #6e6e6e;
    margin: 0 10px 10px 0;
    padding: 0 20px 0 15px;
    font-size: 14px;
    line-height: 24px;
    box-sizing: border-box;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.op-faq-s2-wrap .faq-item.ui-wrap-active, .op-faq-s2-wrap .faq-item:hover {
    background: #dfdfdf;
    border-left: 2px solid #11c17f;
    color: #2e2e2e
}

.op-faq-s2-wrap .ui-accordion-content {
    padding: 5px 0 20px;
    position: relative;
    color: #6a6a6a;
    font-size: 16px;
    line-height: 30px
}

.op-faq-s2-wrap .ui-accordion-content p {
    margin: 0 auto
}

.op-faq-s3-wrap {
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 24px
}

.op-faq-s3-wrap h3 {
    position: relative;
    color: #2c88dd;
    cursor: pointer;
    outline: 0;
    padding: 5px 0;
    font-size: 20px
}

.op-faq-s3-wrap h3::after {
    content: "";
    width: 20px;
    height: 15px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -7px;
    background: url(../../images/elements/qna_elements/style5-arrow.png) 0 center no-repeat
}

.op-faq-s3-wrap .ui-wrap-active h3::after {
    background: url(../../images/elements/qna_elements/style5-close.png) 0 center no-repeat
}

.op-faq-s3-wrap h3 .glyphicon {
    float: right
}

.op-faq-s3-wrap .faq-item {
    color: #3d3e3f;
    margin: 0 10px 0 0;
    padding: 7px 20px;
    border-bottom: 1px solid #f5f8fa;
    box-sizing: border-box;
    font-size: 17px;
    line-height: 26px;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.op-faq-s3-wrap .faq-item.ui-wrap-active {
    color: #3d3e3f;
    background: #f5f8fa;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.op-faq-s3-wrap .ui-accordion-content {
    position: relative;
    color: #3d3e3f;
    font-size: 17px;
    line-height: 26px
}

.op-faq-s3-wrap .ui-accordion-content p {
    margin: 0 auto 10px
}

.op-faq-s4-wrap {
    font-size: 14px;
    line-height: 24px
}

.op-faq-s4-wrap h3 {
    margin: 10px 0 0;
    padding: 15px 20px 15px 0;
    position: relative;
    color: #303030;
    cursor: pointer;
    outline: 0;
    font-size: 13px
}

.op-faq-s4-wrap h3::after {
    content: "";
    width: 10px;
    height: 10px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -5px;
    background: url(../../images/elements/qna_elements/style4-arrow.png) 0 center no-repeat
}

.op-faq-s4-wrap .ui-wrap-active h3::after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.op-faq-s4-wrap .faq-item {
    color: #3d3e3f;
    margin: 0 10px 0 0;
    padding: 7px 2px;
    border-bottom: 1px solid #EBEBEB;
    box-sizing: border-box;
    font-size: 13px;
    line-height: 21px;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.op-faq-s4-wrap .faq-item.ui-wrap-active {
    color: #3d3e3f;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.op-faq-s4-wrap .ui-accordion-content {
    padding-bottom: 20px;
    position: relative;
    color: #818181;
    font-size: 13px;
    line-height: 21px
}

.op-faq-s4-wrap .ui-accordion-content p {
    margin: 0 auto;
    padding-bottom: 10px
}

.op-faq-s5-wrap {
    font-size: 14px;
    line-height: 24px
}

.op-faq-s5-wrap .faq-item.ui-wrap-active h3 {
    font-weight: 700
}

.op-faq-s5-wrap h3 {
    margin: 0 0 10px;
    position: relative;
    color: #3973a0;
    cursor: pointer;
    font-size: 13px;
    line-height: 22px;
    outline: 0;
    padding: 5px 0 5px 20px
}

.op-faq-s5-wrap h3::before {
    content: "";
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 8px solid;
    position: absolute;
    left: 5px;
    top: 50%;
    margin-top: -6px
}

.op-faq-s5-wrap .ui-wrap-active h3::before {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.op-faq-s5-wrap .faq-item {
    margin: 0 10px 0 0;
    padding: 0 2px;
    box-sizing: border-box;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.op-faq-s5-wrap .faq-item.ui-wrap-active {
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.op-faq-s5-wrap .ui-accordion-content {
    margin-bottom: 20px;
    padding: 20px 20px 15px;
    position: relative;
    color: #000;
    font-size: 13px;
    line-height: 22px;
    background: #e9eff4;
    border-radius: 4px
}

.op-faq-s5-wrap .ui-accordion-content p {
    margin: 0 auto;
    padding-bottom: 10px
}

.field-id-op_assets_core_news_bar_color, .field-id-op_assets_core_news_bar_feature_font_color, .field-id-op_assets_core_news_bar_main_background, .field-id-op_assets_core_news_bar_main_font_color {
    display: inline-block !important;
    width: 48.25%;
    vertical-align: top
}

.news-bar p {
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden
}

.news-bar strong {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 0;
    line-height: 3em;
    background: center center no-repeat #004a80;
    border: 0 solid #004a80;
    text-align: center;
    vertical-align: top;
    border-radius: 0
}

.news-bar strong::after, .news-bar strong::before {
    content: "";
    display: none;
    position: absolute;
    top: 50%;
    left: auto;
    right: auto;
    width: 0;
    height: 0;
    margin: 0;
    border: 0 solid transparent
}

.news-bar strong a {
    display: block;
    margin: 0;
    padding: 0 1em;
    color: #fff
}

.news-bar strong a[href="javascript:void(0);"], .news-bar strong a[href="#"] {
    pointer-events: none
}

.news-bar span {
    display: inline-block;
    line-height: 3em;
    vertical-align: top;
    color: #444
}

.news-bar.news-bar-position-left strong {
    float: left
}

.news-bar.news-bar-position-right strong {
    float: right
}

.news-bar.news-bar-position-left span, .news-bar.news-bar-position-right span {
    display: block;
    text-align: center
}

.news-bar.news-bar-style-1 p {
    border-radius: 3px
}

.news-bar.news-bar-style-1.news-bar-position-left strong::after {
    display: block;
    margin-top: -2em;
    border-top-width: 2em;
    border-bottom-width: 2em;
    right: -1em;
    border-left-width: 1em;
    border-left-color: inherit
}

.news-bar.news-bar-style-1.news-bar-position-right strong::after {
    display: block;
    left: -1em;
    margin-top: -2em;
    border-top-width: 2em;
    border-bottom-width: 2em;
    right: -1em;
    border-right-width: 1em;
    border-right-color: inherit
}

.news-bar.news-bar-style-1.news-bar-position-left span {
    display: inline-block;
    float: left;
    margin: 0 2em
}

.news-bar.news-bar-style-1.news-bar-position-right span {
    display: inline-block;
    float: right;
    margin: 0 2em
}

@media only screen and (max-width:767px) {
    .news-bar.news-bar-style-1 strong {
        display: block;
        float: none;
        width: 100% !important;
        margin: 0;
        padding: 0
    }

    .news-bar.news-bar-style-1 span {
        display: block;
        float: none;
        width: 100% !important;
        margin: 0 !important;
        padding: .5em 0 0
    }

    .news-bar.news-bar-style-1 strong::after {
        display: block;
        bottom: 0;
        left: 50% !important;
        right: auto !important;
        top: 100%;
        margin: 0 0 0 -1em !important;
        border: 1em solid transparent !important;
        border-top-width: .5em !important;
        border-top-color: inherit !important
    }
}

.news-bar.news-bar-style-2 strong {
    line-height: 58px;
    height: 58px
}

.news-bar.news-bar-style-2 span {
    line-height: 58px
}

.news-bar.news-bar-style-3 strong {
    min-width: 72px;
    line-height: 58px;
    height: 58px;
    background-image: url(../../images/elements/news_bar/style-3-icon.png)
}

.news-bar.news-bar-style-3 span {
    line-height: 58px;
    font-size: 20px;
    font-weight: 700
}

.news-bar.news-bar-style-4 strong {
    min-width: 58px;
    line-height: 58px;
    height: 58px;
    background-image: url(../../images/elements/news_bar/style-4-icon.png)
}

.news-bar.news-bar-style-4 span {
    line-height: 58px;
    font-size: 20px;
    font-weight: 700
}

.news-bar.news-bar-style-5 strong {
    min-width: 92px;
    line-height: 58px;
    height: 58px;
    background-image: url(../../images/elements/news_bar/style-5-icon.png)
}

.news-bar.news-bar-style-5 span {
    line-height: 58px;
    font-size: 20px;
    font-weight: 700
}

.news-bar.news-bar-style-6 strong {
    min-width: 92px;
    line-height: 25px;
    height: 25px;
    border-radius: 3px;
    margin-top: 10px
}

.news-bar.news-bar-style-6 a {
    font-family: Geneva, Tahoma, Verdana, sans-serif;
    text-transform: uppercase;
    font-weight: 500
}

.news-bar.news-bar-style-6 span {
    font-size: 110%
}

.news-bar.news-bar-style-7 strong {
    min-width: 92px;
    line-height: 20px;
    height: 20px;
    border-radius: 3px;
    margin-top: 12px
}

.news-bar.news-bar-style-7 a {
    font-family: Geneva, Tahoma, Verdana, sans-serif;
    text-transform: uppercase;
    font-weight: 500
}

.news-bar.news-bar-style-7 span {
    border-style: solid;
    border-width: 2px;
    border-radius: 3px;
    border-color: #2087d3
}

.optin-box-25:-ms-input-placeholder, .optin-box-25::-moz-placeholder, .optin-box-25::-webkit-input-placeholder {
    color: #ddd
}

.optin-box-25 {
    text-align: center;
    color: #fff;
    font-family: 'Open Sans', sans-serif
}

.optin-box-25 h2 {
    margin: 0 0 12px;
    font-weight: 400;
    color: #fff
}

.optin-box-25 p.description {
    margin: 6px 0 12px
}

.optin-box-25 form>.button-box, .optin-box-25 form>.text-box {
    display: inline-block;
    width: 38%;
    border: 6px solid transparent;
    box-sizing: border-box
}

.optin-box-25 form>.button-box {
    width: 24%
}

.optin-box-25 form input, .optin-box-25 form input:focus {
    display: inline-block;
    width: 100%;
    margin: 0;
    padding: 17px 10px 17px 15px;
    border: 0 solid #ccc;
    border-radius: 5px;
    box-shadow: none;
    font-size: 16px;
    box-sizing: border-box;
    background-color: rgba(255, 255, 255, .9);
    color: #666
}

.optin-box-25 form button.default-button {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    width: 100%;
    position: relative;
    top: 0;
    display: inline-block;
    border-radius: 6px;
    font-size: 16px;
    padding: 16px 0;
    text-decoration: none;
    text-align: center;
    color: #fff;
    border-color: none;
    background: #1abc9c;
    text-shadow: none;
    box-shadow: none;
    font-weight: 700
}

.optin-box-25 form button.default-button:hover {
    background: #1abc9c
}

.optin-box-25 p.privacy {
    margin: 6px 0 12px;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: #ccc
}

@media only screen and (max-width:767px) {
    .optin-box-25 form>.text-box {
        width: 50%
    }

    .optin-box-25 form>.button-box {
        width: 100%
    }
}

@media only screen and (max-width:479px) {
    .optin-box-25 form>.text-box {
        width: 100%
    }
}

.optin-box-26 {
    max-width: 270px;
    padding: 12px 20px 20px;
    border-radius: 5px;
    background: rgba(255, 255, 255, .3);
    border: none;
    outline: 0
}

.optin-box-26 .text-boxes {
    margin-top: 10px
}

.optin-box-26 form input, .optin-box-26 form input:focus {
    width: 100%;
    height: 42px;
    margin-bottom: 10px;
    padding: 10px 30px 10px 10px;
    font-size: 13px;
    color: #b8b8b8;
    background-color: #fff;
    background-position: right center;
    background-repeat: no-repeat;
    border: 1px solid #dbdbdb;
    border-radius: 6px;
    box-shadow: none;
    box-sizing: border-box
}

.optin-box-26 form .text-box.name input[type=text] {
    background-image: url(../../images/elements/optin_box/user.png)
}

.optin-box-26 form .text-box.email input[type=email] {
    background-image: url(../../images/elements/optin_box/mail.png)
}

.optin-box-26 form button {
    width: 100%;
    margin: 0 0 10px;
    padding: 18px 23px;
    font-size: 20px;
    background: #4cd271;
    border: 0;
    box-shadow: none;
    text-shadow: none;
    border-radius: 8px
}

.optin-box-26 form button span {
    padding: 0;
    border-top: none;
    color: #fff
}

.optin-box-26 p.privacy {
    margin: 0;
    font-size: 11px;
    color: #717171;
    opacity: .8
}

.optin-box-27 .optin-box-content {
    border-top: 13px solid #11bdd7;
    border-right: 1px solid #f0f0f0;
    border-left: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
    padding: 30px;
    text-align: center;
    background-color: #fff
}

.optin-box-27 form {
    max-width: 70%;
    margin: 0 auto
}

.optin-box-27 form button, .optin-box-27 form input {
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
    border: 0 solid #ccc;
    border-radius: 5px;
    box-shadow: none;
    box-sizing: border-box;
    background-color: #efefef;
    text-align: center;
    color: #444;
    padding: 17px 10px;
    font-size: 15px
}

.optin-box-27 form button {
    color: #fff;
    font-weight: 700;
    font-size: 16px
}

.optin-box-27 h2 {
    font-size: 30px;
    font-weight: 700;
    letter-spacing: -1px
}

.optin-box-27 p.privacy {
    font-weight: 500;
    color: #999
}

.optin-box-27 form button:focus, .optin-box-27 form input:focus {
    box-shadow: none;
    border: 0
}

.optin-box-27 form button {
    background-color: #11bdd7;
    text-transform: uppercase;
    padding: 18px 10px 18px 15px
}

.one-fifth .optin-box-27 form, .one-fourth .optin-box-27 form, .one-half .optin-box-27 form, .one-third .optin-box-27 form {
    max-width: 100%
}

@media only screen and (max-width:767px) {
    .optin-box-27 form {
        max-width: 100%
    }
}

.optin-box-28 .optin-box-content {
    border: 3px solid #f3f4f8;
    padding: 35px 70px;
    text-align: center;
    text-transform: uppercase;
    background-color: #fff
}

.optin-box-28 .optin-box-content h2 {
    font-weight: 900;
    letter-spacing: -1px;
    font-size: 35px
}

.optin-box-28 .optin-box-content .description {
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 1px
}

.optin-box-28 form {
    max-width: 70%;
    margin: 0 auto
}

.optin-box .privacy {
    color: #888;
    font-weight: 500;
    padding-top: 10px
}

.optin-box-28 form button, .optin-box-28 form input {
    display: inline-block;
    width: 100%;
    margin: 0 0 10px;
    padding: 14px 10px 14px 15px;
    color: #fff;
    border: 0 solid #ccc;
    border-radius: 5px;
    box-shadow: none;
    font-size: 16px;
    box-sizing: border-box;
    background-color: #f3f4f8;
    text-align: center
}

.optin-box-28 form input {
    color: #333
}

.optin-box-28 form button:focus, .optin-box-28 form input:focus {
    border: none
}

.optin-box-28 form input::-webkit-input-placeholder {
    text-transform: uppercase
}

.optin-box-28 form input::-moz-placeholder {
    text-transform: uppercase
}

.optin-box-28 form input:-ms-input-placeholder {
    text-transform: uppercase
}

.optin-box-28 form input:-moz-placeholder {
    text-transform: uppercase
}

.optin-box-28 form button {
    background-color: #ffd600;
    text-transform: uppercase;
    padding: 17px 10px 17px 15px;
    color: #000;
    font-weight: 900
}

.one-half .optin-box-28 .optin-box-content {
    padding: 20px 40px
}

.one-half .optin-box-28 form {
    max-width: 100%
}

.one-third .optin-box-28 .optin-box-content {
    padding: 20px 20px 0
}

.one-third .optin-box-28 form {
    max-width: 100%
}

.one-third .optin-box-28 form button, .one-third .optin-box-28 form input {
    font-size: 1em
}

.one-third .optin-box-28 .optin-box-content h2 {
    font-size: 2em
}

.one-fifth .optin-box-28 .optin-box-content, .one-fourth .optin-box-28 .optin-box-content {
    padding: 20px 10px
}

.one-fifth .optin-box-28 form, .one-fourth .optin-box-28 form {
    max-width: 100%
}

.one-fifth .optin-box-28 .optin-box-content h2, .one-fourth .optin-box-28 .optin-box-content h2 {
    font-size: 2em
}

.one-fifth .optin-box-28 form button, .one-fifth .optin-box-28 form input, .one-fourth .optin-box-28 form button, .one-fourth .optin-box-28 form input {
    font-size: 1em
}

.one-fifth .optin-box-28 form button span, .one-fourth .optin-box-28 form button span {
    white-space: normal
}

@media only screen and (max-width:767px) {
    .optin-box-28 form {
        max-width: 100%
    }

    .optin-box-28 .optin-box-content {
        padding: 25px 50px
    }

    .optin-box-28 .optin-box-content h2 {
        font-size: 28px
    }

    .optin-box-28 form button, .optin-box-28 form input {
        font-size: 14px
    }

    .optin-box-28 .optin-box-content .description {
        font-size: 15px;
        letter-spacing: 0
    }
}

@media only screen and (max-width:479px) {
    .optin-box-28 .optin-box-content {
        padding: 15px 30px
    }
}

.optin-box-29 {
    margin: 20px auto;
    text-align: center;
    max-width: 100%
}

.optin-box-29 h2 {
    padding-top: 0;
    padding-bottom: 10px;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 26px;
    color: #3f596e
}

.optin-box-29 p {
    color: #6b6b6b
}

.optin-box-29 .text-box {
    display: block;
    box-sizing: border-box;
    background-color: #f9f9f9;
    border: 2px solid #f9f9f9;
    color: #686868;
    padding: 0 25px;
    font-size: 17px
}

.optin-box-29 input[type=email], .optin-box-29 input[type=text] {
    display: block;
    background-color: transparent;
    background-image: none;
    outline: 0;
    width: 100%;
    padding: 0 10px 0 0;
    margin: 0;
    box-sizing: border-box;
    border: none;
    line-height: 80px;
    font-size: 1.3em
}

.optin-box-29 input[type=email]:focus, .optin-box-29 input[type=text]:focus {
    border: none;
    box-shadow: none
}

.optin-box-29 .text-boxes {
    float: left;
    width: 60%;
    width: calc(100% - 250px)
}

.optin-box-29 button.default-button {
    border-style: none;
    background: #e71718;
    padding: 0;
    display: block;
    width: 250px;
    float: left;
    color: #fff;
    line-height: 80px;
    font-size: 1.3em;
    text-transform: uppercase;
    font-weight: 900;
    border-bottom: 2px solid #e71718
}

.optin-box-29 form input::-webkit-input-placeholder {
    text-transform: uppercase
}

.optin-box-29 form input::-moz-placeholder {
    text-transform: uppercase
}

.optin-box-29 form input:-ms-input-placeholder {
    text-transform: uppercase
}

.optin-box-29 form input:-moz-placeholder {
    text-transform: uppercase
}

.one-half .optin-box-29 .text-boxes, .one-half .optin-box-29 button.default-button, .one-third .optin-box-29 .text-boxes {
    width: 100%;
    float: none
}

.one-third .optin-box-29 .text-box {
    padding: 0 10px;
    font-size: 1em
}

.one-third .optin-box-29 button.default-button {
    width: 100%;
    float: none
}

.one-third .optin-box-29 input[type=email], .one-third .optin-box-29 input[type=text] {
    font-size: .8em;
    text-align: center
}

.one-fifth .optin-box-29 .text-boxes, .one-fourth .optin-box-29 .text-boxes {
    width: 100%;
    float: none
}

.one-fifth .optin-box-29 .text-box, .one-fourth .optin-box-29 .text-box {
    padding: 0 10px;
    font-size: 1em
}

.one-fifth .optin-box-29 button.default-button, .one-fourth .optin-box-29 button.default-button {
    width: 100%;
    float: none
}

.one-fifth .optin-box-29 input[type=email], .one-fifth .optin-box-29 input[type=text], .one-fourth .optin-box-29 input[type=email], .one-fourth .optin-box-29 input[type=text] {
    font-size: .8em;
    text-align: center
}

@media only screen and (max-width:767px) {
    .optin-box-29 .text-boxes {
        width: 100%;
        float: none
    }

    .optin-box-29 input[type=email], .optin-box-29 input[type=text] {
        text-align: center
    }

    .optin-box-29 button.default-button {
        width: 100%;
        float: none
    }

    .optin-box-29 button.default-button, .optin-box-29 input[type=email], .optin-box-29 input[type=text] {
        line-height: 60px;
        font-size: 15px
    }
}

.optin-box-30 {
    margin: 20px auto;
    text-align: center;
    max-width: 100%
}

.optin-box-30 .text-boxes {
    float: left;
    width: 50%
}

.optin-box-30 input[type=email], .optin-box-30 input[type=text] {
    width: 100%;
    line-height: 90px;
    box-sizing: border-box;
    padding: 0 10px;
    border: none;
    text-transform: uppercase;
    font-size: 1.2em;
    text-align: center;
    color: #202124;
    margin: 0;
    font-weight: 500;
    letter-spacing: 0
}

.optin-box-30 input[type=email]:focus, .optin-box-30 input[type=text]:focus {
    border: none;
    box-shadow: none
}

.optin-box-30 button.default-button {
    float: left;
    background-color: #1783e7;
    width: 50%;
    line-height: 90px;
    font-size: 1.2em;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff
}

.optin-box-30 .privacy {
    margin-top: 20px;
    font-weight: 100;
    color: #9a9a9a
}

.one-half .optin-box-31 h2 {
    width: 100%
}

.one-half .optin-box-31 .text-box {
    width: 100%;
    float: none;
    margin-bottom: 10px
}

.one-half .optin-box-31 button.default-button, .one-third .optin-box-30 .text-boxes {
    width: 100%;
    float: none
}

.one-third .optin-box-30 input[type=email], .one-third .optin-box-30 input[type=text] {
    line-height: 70px;
    text-align: center;
    font-size: 1.1em
}

.one-third .optin-box-30 button.default-button {
    line-height: 70px;
    width: 100%;
    float: none;
    font-size: 1.1em
}

.one-third .optin-box-30 .privacy {
    margin-top: 10px
}

.one-fifth .optin-box-30 .text-boxes, .one-fourth .optin-box-30 .text-boxes {
    width: 100%;
    float: none
}

.one-fifth .optin-box-30 input[type=email], .one-fifth .optin-box-30 input[type=text], .one-fourth .optin-box-30 input[type=email], .one-fourth .optin-box-30 input[type=text] {
    line-height: 70px;
    text-align: center;
    font-size: 1.1em
}

.one-fifth .optin-box-30 button.default-button, .one-fourth .optin-box-30 button.default-button {
    line-height: 70px;
    width: 100%;
    float: none;
    font-size: 1.1em
}

.one-fifth .optin-box-30 .privacy, .one-fourth .optin-box-30 .privacy {
    margin-top: 10px
}

@media only screen and (max-width:767px) {
    .optin-box-30 .text-boxes {
        width: 100%;
        float: none
    }

    .optin-box-30 input[type=email], .optin-box-30 input[type=text] {
        line-height: 70px;
        text-align: center;
        font-size: 1.1em
    }

    .optin-box-30 button.default-button {
        line-height: 70px;
        width: 100%;
        float: none;
        font-size: 1.1em
    }

    .optin-box-30 .privacy {
        margin-top: 10px
    }
}

.optin-box-31 {
    margin: 20px auto;
    text-align: center;
    max-width: 100%
}

.optin-box-31 h2 {
    width: 35%;
    width: calc(35% - 10px);
    font-size: 15px !important;
    background-color: #2dcb71;
    color: #fff !important;
    text-transform: uppercase;
    padding: 10px 15px;
    box-sizing: border-box;
    position: relative;
    margin-bottom: 20px;
    font-weight: 500
}

.optin-box-31 h2:after {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 12.5px 0;
    border-color: #2dcb72 transparent transparent;
    position: absolute;
    left: 50%;
    bottom: -15px;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%)
}

.optin-box-31 .text-box {
    float: left;
    width: 35%;
    width: calc(35% - 10px);
    margin-right: 10px
}

.optin-box-31 .text-box input {
    width: 100%;
    line-height: 45px;
    box-sizing: border-box;
    padding: 0 10px;
    text-align: center;
    border: 1px solid #bdbec3;
    text-transform: uppercase;
    letter-spacing: -.05em;
    margin: 0
}

.optin-box-31 .text-box input:focus {
    box-shadow: none
}

.optin-box-31 button.default-button {
    width: 30%;
    line-height: 45px;
    background-color: #2dcb71;
    color: #fff;
    font-weight: 900;
    border: 1px solid #2dcb71;
    text-transform: uppercase
}

.optin-box-31 button.default-button, .optin-box-31 input[type=email], .optin-box-31 input[type=password], .optin-box-31 input[type=text], .optin-box-31 textarea, select {
    font-size: 13px;
    letter-spacing: 0
}

.one-third .optin-box-31 h2 {
    width: 100%
}

.one-third .optin-box-31 .text-box {
    width: 100%;
    float: none;
    margin-bottom: 10px
}

.one-third .optin-box-31 button.default-button {
    float: none;
    width: 100%
}

.one-fifth .optin-box-31 h2, .one-fourth .optin-box-31 h2 {
    width: 100%
}

.one-fifth .optin-box-31 .text-box, .one-fourth .optin-box-31 .text-box {
    width: 100%;
    float: none;
    margin-bottom: 10px
}

.one-fifth .optin-box-31 button.default-button, .one-fourth .optin-box-31 button.default-button {
    float: none;
    width: 100%
}

@media only screen and (max-width:767px) {
    .optin-box-31 .text-box {
        float: none;
        width: 100%;
        margin-bottom: 10px
    }

    .optin-box-31 button.default-button, .optin-box-31 h2 {
        float: none;
        width: 100%
    }
}

#op_asset_browser_container .op-settings-core-tabs.settings-container .field-image-selector.field-icon {
    display: none
}

#op_asset_browser_container .op-settings-core-tabs.settings-container.tabs-icon-container-display .field-image-selector.field-icon {
    display: block
}

#op_asset_browser_container .field-id-op_assets_core_tabs_tabs-multirow-container .field-image-selector .tabs-icon-container a {
    width: 32px;
    height: 32px
}

#op_asset_browser_container .field-id-op_assets_core_tabs_tabs-multirow-container .field-image-selector .tabs-icon-container a img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none
}

#op_asset_browser_container .sneezing-panda .tabs-icon-container {
    display: block
}

#op_asset_browser_container .sneezing-panda .tabs-icon-container ul li {
    display: inline-block
}

#op_asset_browser_container .sneezing-panda .tabs-icon-container ul li a img {
    width: 32px
}

.tab-element .tab-content-container>.tab-content, .tab-element>ul>li>a>i, .tab-element>ul>li>a>img {
    display: none
}

.tab-element .tab-content-container>.tab-content:first-child {
    display: block
}

.tab-style-2>ul {
    display: block;
    margin: 0 0 1.1em;
    padding: 0;
    border-bottom: 1px solid #ff623f;
    overflow: hidden
}

.tab-style-2>ul>li {
    display: inline;
    float: left;
    margin: 0 18px 0 0;
    padding: 0
}

.tab-style-2>ul>li.ui-tabs-active {
    border-bottom: 3px solid #ff623f
}

.tab-style-2>ul>li>a {
    display: block;
    padding: 0 0 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: normal;
    color: #303030;
    text-decoration: none;
    letter-spacing: .1px
}

.tab-style-2>ul>li.ui-tabs-active>a {
    padding-bottom: 12px
}

.tab-style-2 .tab-content-container {
    border: 0
}

@media only screen and (max-width:768px) {
    .tab-style-2>ul>li {
        display: block;
        float: none;
        margin: 0 auto 3px;
        padding: 5px 10px;
        border: none;
        background: #ff623f
    }

    .tab-style-2>ul>li>a {
        color: #fff
    }

    .tab-style-2>ul>li.ui-tabs-active {
        padding: 8px 15px;
        border-bottom: none;
        background: #dedede
    }

    .tab-style-2>ul>li.ui-tabs-active>a {
        color: #434343
    }
}

.tab-style-3 {
    font-weight: 400;
    font-size: 14px;
    line-height: 21px;
    color: #555;
    background: 0 0
}

.tab-style-3>ul {
    position: relative;
    display: block;
    margin: 0 auto;
    padding: 6px 0 0;
    overflow: hidden;
    z-index: 5
}

.tab-style-3>ul>li {
    display: inline;
    float: left;
    margin: 0 3px 0 0
}

.tab-style-3>ul>li>a {
    display: block;
    padding: 13px 40px 7px;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #fff;
    text-decoration: none;
    letter-spacing: .45px;
    background: #6e98e3;
    text-transform: uppercase;
    text-align: center;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.tab-style-3>ul>li>a:hover {
    margin-top: -6px;
    padding-bottom: 13px;
    background: #517Fd1;
    color: #fff
}

.tab-style-3>ul>li.ui-tabs-active a, .tab-style-3>ul>li.ui-tabs-active a:hover {
    background: #fff;
    color: #333;
    padding-bottom: 13px;
    margin-top: -6px
}

.tab-style-3>ul>li>a>img {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 1px 8px 1px 1px;
    vertical-align: top;
    -webkit-filter: invert(100%);
    filter: invert(100%)
}

.tab-style-3>ul>li.ui-tabs-active>a>img {
    -webkit-filter: none;
    filter: none
}

.tab-style-3>ul>li>a>i {
    display: inline-block;
    margin: 0 8px 0 0;
    font-style: normal;
    font-family: entypo
}

.tab-style-3>ul>li>a>i::before {
    display: block;
    line-height: inherit;
    text-align: center
}

.tab-style-3 .tab-content-container {
    padding: 32px;
    background: #fff
}

@media only screen and (max-width:959px) {
    .tab-style-3>ul>li>a {
        padding-left: 15px;
        padding-right: 15px
    }
}

@media only screen and (max-width:768px) {
    .tab-style-3>ul>li {
        display: block;
        float: none;
        margin-right: 0
    }

    .tab-style-3>ul>li>a {
        display: block;
        margin-top: 0;
        margin-bottom: 0;
        padding-left: 20px;
        padding-bottom: 13px;
        text-align: left
    }

    .tab-style-3>ul>li>a:hover {
        margin-top: -6px;
        padding-bottom: 13px
    }

    .tab-style-3>ul>li.ui-tabs-active>a {
        padding-left: 20px
    }

    .tab-style-3 .tab-content-container {
        padding: 20px
    }
}

.tab-style-4 {
    margin-bottom: 20px;
    color: #fff
}

.tab-style-4>ul {
    display: block;
    float: left;
    margin: 0;
    padding: 0;
    overflow: hidden
}

.tab-style-4>ul::after {
    content: " ";
    display: block;
    width: 0;
    height: 0;
    overflow: hidden;
    visibility: hidden;
    clear: both
}

.tab-style-4>ul>li {
    display: inline;
    float: left;
    margin: 0;
    padding: 0
}

.tab-style-4>ul>li>a {
    display: block;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    text-decoration: none;
    background: #00b2f8;
    color: #fff;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.tab-style-4>ul>li.ui-tabs-active>a, .tab-style-4>ul>li>a:hover {
    background: #009de4
}

.tab-style-4 .tab-content-container {
    padding: 25px 12px 10px 15px;
    line-height: 21px;
    font-size: 14px;
    background: #009de4
}

.tab-style-4.tab-color-red>ul>li>a {
    background: #be3522
}

.tab-style-4.tab-color-red .tab-content-container, .tab-style-4.tab-color-red>ul>li.ui-tabs-active>a, .tab-style-4.tab-color-red>ul>li>a:hover {
    background: #ed523e
}

.tab-style-4.tab-color-green>ul>li>a {
    background: #0b7b57
}

.tab-style-4.tab-color-green .tab-content-container, .tab-style-4.tab-color-green>ul>li.ui-tabs-active>a, .tab-style-4.tab-color-green>ul>li>a:hover {
    background: #09b47f
}

@media only screen and (max-width:768px) {
    .tab-style-4>ul {
        float: none
    }

    .tab-style-4>ul>li {
        display: block;
        float: none;
        margin: 0 auto 1px
    }

    .tab-style-4>ul>li>a {
        padding: 10px 15px
    }
}

.tab-style-5 {
    margin-bottom: 20px;
    color: #fff
}

.tab-style-5>ul {
    display: block;
    float: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background: #333;
    -webkit-transition: all .5s ease 0s;
    transition: all .5s ease 0s
}

.tab-style-5>ul>li {
    display: inline;
    float: left;
    margin: 0;
    padding: 0
}

.tab-style-5>ul>li>a {
    display: block;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 14px;
    line-height: normal;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
    color: #fff;
    -webkit-transition: all .2s ease 0s;
    transition: all .2s ease 0s
}

.tab-style-5>ul>li.ui-tabs-active>a, .tab-style-5>ul>li>a:hover {
    background: #fff;
    background: rgba(255, 255, 255, .15)
}

.tab-style-5 .tab-content-container {
    padding: 15px;
    font-weight: 400;
    line-height: normal;
    font-size: 14px;
    color: #333
}

.tab-content ul {
    list-style: initial;
    margin-left: 20px
}

@media only screen and (max-width:768px) {
    .tab-style-5>ul {
        float: none
    }

    .tab-style-5>ul>li {
        display: block;
        float: none;
        margin: 0 auto 1px
    }

    .tab-style-5>ul>li>a {
        padding: 10px 15px
    }
}

#op_assets_core_tabs_color_select, #op_assets_core_tabs_tabs {
    width: 100% !important;
    padding: 10px;
    height: 40px !important
}

.op-settings-addon-op_comparison_table .field-row.field-container h3, .op-settings-addon-op_comparison_table .field-row.field-container h3 a {
    color: #004a80 !important;
    font-size: 16px;
    font-weight: 700;
    float: left;
    text-shadow: 0 0 1px #fff, 0 0 1px #fff;
    margin-top: 8px
}

.op-settings-addon-op_comparison_table .op-multirow {
    position: relative
}

.op-settings-addon-op_comparison_table .remove-row {
    position: absolute;
    top: 9px;
    right: -17px
}

.op_asset_browser_slide .op-settings-addon-op_comparison_table .field-multirow:last-child {
    margin-bottom: 0
}

.op-asset-actual-content .comparison_table_features .new-row {
    display: none
}

.op-comparison-table-column {
    padding-top: 10px
}

.field-row.op-comparison-table-column {
    padding-top: 0
}

.op-settings-addon-op_comparison_table .field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container .op-multirow {
    background: #FBFAFA;
    border: 1px solid #ccc;
    padding: 20px 30px
}

.op-settings-addon-op_comparison_table .field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container .op-multirow+.op-multirow {
    margin-top: 30px
}

.op-settings-addon-op_comparison_table .field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container .op-multirow:last-child {
    margin-bottom: 30px
}

.op-settings-addon-op_comparison_table .field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container:empty {
    display: none
}

#op_asset_browser_container .op-settings-addon-op_comparison_table .field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container input, #op_asset_browser_container .op-settings-addon-op_comparison_table .field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container textarea {
    background: #fff
}

#op_asset_browser_container .op-settings-addon-op_comparison_table .field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container input[type=text], #op_asset_browser_container .op-settings-addon-op_comparison_table .field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container input[type=text]:focus {
    height: 48px
}

.section-op_assets_addon_op_comparison_table_columns .remove-row {
    position: absolute;
    top: 15px;
    right: 15px
}

.comparison-icon-container .op-asset-dropdown-list-item {
    display: inline-block
}

#op_asset_browser_container .multirow-container .comparison-table-feature-column {
    margin: 0 20px 0 0;
    display: inline-block;
    width: 240px;
    vertical-align: top
}

#op_asset_browser_container .multirow-container .comparison-table-feature-icon a {
    text-align: center
}

#op_asset_browser_container .multirow-container .comparison-table-feature-icon img {
    margin: 2px 0 -2px
}

#op_asset_browser_container .multirow-container .comparison-table-feature-icon, .field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container .op-asset-dropdown a {
    width: 40px
}

#op_asset_browser_container .multirow-container .comparison-table-feature-text {
    margin-right: 0
}

#op_asset_browser_container .multirow-container .comparison-table-feature-paragraph {
    margin: 0;
    padding: 10px 0
}

#op_asset_browser_container .multirow-container .comparison-table-feature-paragraph p {
    margin: 0;
    line-height: 1.2
}

#op_asset_browser_container .multirow-container .comparison-table-feature-column .op-asset-dropdown {
    padding-top: 0
}

.field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container .op-multirow .op-multirow {
    padding: 15px;
    margin-bottom: 10px;
    background: #F7F7F7;
    border-radius: 3px;
    border: 1px solid #ccc;
    box-sizing: border-box
}

.field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container .op-asset-dropdown {
    background: 0 0
}

.field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container .op-asset-dropdown a {
    background: #F3F3F3
}

.field-id-op_assets_addon_op_comparison_table_columns_columns-multirow-container .op-multirow .op-multirow:last-child {
    margin-right: 0
}

#op_asset_browser_container .section-op_assets_addon_op_comparison_table_columns .comparison_table_hidden_image_selector, .section-op_assets_addon_op_comparison_table_columns .op-multirow .op-multirow .remove-row {
    display: none
}

#op_asset_browser_container .sneezing-panda .content.comparison-guarantee-icon {
    display: block
}

.section-op_assets_addon_op_comparison_table_columns .field-multirow-length-5 .new-row {
    opacity: .3;
    pointer-events: none
}

#op_asset_browser_container .sneezing-panda .comparison-icon-container {
    background: #F3F3F3
}

.op-comparison-table-2col .op-comparison-table-column, .op-comparison-table-2col .op-comparison-table-features-column {
    width: 50%;
    float: left
}

.op-comparison-table-3col .op-comparison-table-column {
    width: 30%;
    float: left
}

.op-comparison-table-3col .op-comparison-table-features-column {
    width: 40%;
    float: left
}

.op-comparison-table-4col .op-comparison-table-column, .op-comparison-table-4col .op-comparison-table-features-column {
    width: 24%;
    float: left
}

.op-comparison-table-4col .op-comparison-table-features-column {
    width: 28%
}

.op-comparison-table-5col .op-comparison-table-column, .op-comparison-table-5col .op-comparison-table-features-column {
    width: 20%;
    float: left
}

.op-comparison-table-6col .op-comparison-table-column, .op-comparison-table-6col .op-comparison-table-features-column {
    width: 16%;
    float: left
}

.op-comparison-table-6col .op-comparison-table-features-column {
    width: 20%
}

.op-comparison-table-style1 {
    color: #5a5a5a;
    clear: both;
    margin-top: 30px
}

.op-comparison-table-style1 .op-comparison-table-column {
    border: 1px solid #ecf2f2;
    border-right: none;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    box-sizing: border-box
}

.op-comparison-table-style1 .op-comparison-table-column:last-child {
    border-right: 1px solid #ecf2f2
}

.op-comparison-table-style1 .op-comparison-table-column-header, .op-comparison-table-style1 .op-comparison-table-header {
    background: #f5f9f9;
    padding: 50px 25px
}

.op-comparison-table-style1 .op-comparison-table-btn-container, .op-comparison-table-style1 .op-comparison-table-feature {
    border-bottom: 1px solid #ecf2f2;
    font-weight: 700;
    text-align: center;
    vertical-align: middle;
    margin: 0;
    display: table;
    width: 100%
}

.op-comparison-table-style1 .op-comparison-table-btn-container {
    border-bottom: none;
    background-color: #fff
}

.op-comparison-table-style1 .op-comparison-table-feature-cell {
    display: table-cell;
    padding: 15px 25px;
    vertical-align: middle
}

.op-comparison-table-style1 .op-comparison-table-feature-icon, .op-comparison-table-style1 .op-comparison-table-feature-icon-container, .op-comparison-table-style1 .op-comparison-table-feature-text {
    vertical-align: middle
}

.op-comparison-table-style1 .op-comparison-table-feature-icon-container, .op-comparison-table-style1 .op-comparison-table-feature-text {
    padding: 0 7px;
    font-weight: 400
}

.op-comparison-table-style1 .op-comparison-table-features {
    margin: 0;
    background-color: #fff
}

.op-comparison-table-style1 .op-comparison-table-features-column {
    border: 1px solid #ecf2f2;
    border-right: none;
    box-sizing: border-box
}

.op-comparison-table-style1 .op-comparison-table-features-column .op-comparison-table-feature {
    text-align: center
}

.op-comparison-table-style1 .op-comparison-table-features-column .op-comparison-table-feature:last-child {
    border-left: none;
    border-bottom: none
}

.op-comparison-table-style1 td:first-child {
    white-space: nowrap;
    text-align: right;
    width: auto
}

.op-comparison-table-style1 .op-comparison-table-header {
    text-align: center
}

.op-comparison-table-style1 .op-comparison-table-features-column .op-comparison-table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.op-comparison-table-style1 .op-comparison-table-empty-header {
    border-left: none;
    border-top: none
}

.op-comparison-table-style1 .op-comparison-table-empty-header .op-comparison-table-header {
    background: 0 0;
    border-bottom: 1px solid #ecf2f2
}

.op-comparison-table-style1 .op-comparison-table-features-column.op-comparison-table-empty-header .op-comparison-table-features {
    border-left: 1px solid #ecf2f2
}

.op-comparison-table-style1 .op-comparison-table-guarantee_icon {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto
}

.op-comparison-table-style1 .op-comparison-table-guarantee_text {
    padding: 0 20px;
    font-size: 12px;
    line-height: 1.5
}

.op-comparison-table-style1 tr:last-child td:first-child {
    border-left: none;
    border-bottom: none
}

.op-comparison-table-style1 .op-comparison-table-title {
    text-transform: uppercase;
    font-size: 18px;
    color: #5a5a5a
}

.op-comparison-table-style1 .op-comparison-table-price {
    display: block;
    font-size: 40px;
    margin: 20px 0 15px
}

.op-comparison-table-style1 .op-comparison-table-variable {
    font-size: 14px;
    display: block;
    margin-bottom: 10px
}

.op-comparison-table-style1 .op-comparison-table-description {
    margin: 0;
    color: #acb8bd;
    font-size: 14px;
    display: block;
    font-weight: 400
}

.op-comparison-table-style1 .op-comparison-table-package-description {
    margin: 20px 0 0;
    font-size: 14px;
    display: block
}

.op-comparison-table-style1 .op-comparison-table-package-description:empty {
    display: none
}

.op-comparison-table-style1 .op-comparison-table-btn {
    padding: 10px 30px;
    background: #7ec05e;
    color: #fff;
    display: block
}

.op-comparison-table-style1 .op-comparison-table-feature-title {
    display: none
}

.op-comparison-table-style1 .op-comparison-table-column-popular .op-comparison-table-header {
    background: #e6eef1
}

.op-comparison-table-style1 .op-comparison-table-column-popular .op-comparison-table-btn {
    background: #63b13d
}

.op-comparison-table-style1 .op-comparison-table-column-popular .op-comparison-table-btn-container, .op-comparison-table-style1 .op-comparison-table-column-popular .op-comparison-table-features {
    background: #F5F9FA
}

.op-comparison-table-style1 .op-comparison-table-btn-container, .op-comparison-table-style1 .op-comparison-table-column-popular .op-comparison-table-btn-container {
    box-sizing: content-box;
    border-right: 1px solid #FFF
}

.op-comparison-table-style1 .op-comparison-table-column-popular .op-comparison-table-title {
    margin-top: -20px
}

.op-comparison-table-style1 .op-comparison-table-column-popular .op-comparison-table-header {
    padding-top: 80px;
    margin-top: -30px;
    margin-right: -1px;
    position: relative
}

@media screen and (max-width:1000px) {
    .op-comparison-table-style1 .op-comparison-table-feature-cell {
        padding: 15px
    }
}

@media screen and (max-width:767px) {
    .op-comparison-table-style1 .op-comparison-table-column, .op-comparison-table-style1 .op-comparison-table-features-column {
        width: 100%;
        margin: 20px 0
    }

    .op-comparison-table-style1 .op-comparison-table-column {
        border: 1px solid #ecf2f2
    }

    .op-comparison-table-style1 .op-comparison-table-description, .op-comparison-table-style1 .op-comparison-table-feature, .op-comparison-table-style1 .op-comparison-table-header, .op-comparison-table-style1 .op-comparison-table-package-description, .op-comparison-table-style1 .op-comparison-table-price, .op-comparison-table-style1 .op-comparison-table-title, .op-comparison-table-style1 .op-comparison-table-variable {
        height: auto !important
    }

    .op-comparison-table-style1 .op-comparison-table-description:empty, .op-comparison-table-style1 .op-comparison-table-feature:empty, .op-comparison-table-style1 .op-comparison-table-features-column .op-comparison-table-feature, .op-comparison-table-style1 .op-comparison-table-header:empty, .op-comparison-table-style1 .op-comparison-table-package-description:empty, .op-comparison-table-style1 .op-comparison-table-price:empty, .op-comparison-table-style1 .op-comparison-table-title:empty, .op-comparison-table-style1 .op-comparison-table-variable:empty {
        display: none
    }

    .op-comparison-table-style1 .op-comparison-table-feature-title {
        margin: 3px auto;
        display: block;
        color: #878787;
        font-size: 1.2em
    }

    .op-comparison-table-empty-header {
        display: none
    }
}

.op-comparison-table-style2 {
    color: #5a5a5a;
    clear: both
}

.op-comparison-table-style2 .op-comparison-table-column {
    border: 2px solid #fff;
    border-right: none;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    box-sizing: border-box
}

.op-comparison-table-style2 .op-comparison-table-column:last-child {
    border-right: 2px solid #fff;
    border-left: 2px solid #fff
}

.op-comparison-table-style2 .op-comparison-table-column-header, .op-comparison-table-style2 .op-comparison-table-header {
    background: #fff;
    padding: 40px 25px
}

.op-comparison-table-style2 .op-comparison-table-btn-container, .op-comparison-table-style2 .op-comparison-table-feature {
    border-bottom: 2px solid #fff;
    border-right: 2px solid #fff;
    text-align: center;
    vertical-align: middle;
    margin: 0;
    display: table;
    width: 100%
}

.op-comparison-table-style2 .op-comparison-table-features .op-comparison-table-feature:nth-child(2n-1) {
    background: #f7f8fa
}

.op-comparison-table-style2 .op-comparison-table-features .op-comparison-table-feature:nth-child(2n) {
    background: #fff
}

.op-comparison-table-style2 .op-comparison-table-btn-container {
    border-bottom: none;
    background-color: #fff
}

.op-comparison-table-style2 .op-comparison-table-feature-cell {
    display: table-cell;
    padding: 15px 25px;
    vertical-align: middle
}

.op-comparison-table-style2 .op-comparison-table-feature-icon, .op-comparison-table-style2 .op-comparison-table-feature-icon-container, .op-comparison-table-style2 .op-comparison-table-feature-text {
    vertical-align: middle
}

.op-comparison-table-style2 .op-comparison-table-feature-icon-container, .op-comparison-table-style2 .op-comparison-table-feature-text {
    padding: 0 7px
}

.op-comparison-table-style2 .op-comparison-table-features {
    margin: 0
}

.op-comparison-table-style2 .op-comparison-table-features-column {
    border: 2px solid #fff;
    border-right: none;
    box-sizing: border-box
}

.op-comparison-table-style2 .op-comparison-table-features-column .op-comparison-table-feature {
    text-align: center;
    color: #9DA9B0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700
}

.op-comparison-table-style2 .op-comparison-table-features-column .op-comparison-table-feature:last-child {
    border-left: none;
    border-bottom: none
}

.op-comparison-table-style2 td:first-child {
    white-space: nowrap;
    text-align: right;
    width: auto
}

.op-comparison-table-style2 .op-comparison-table-header {
    text-align: center;
    border-bottom: 2px solid #fff
}

.op-comparison-table-style2 .op-comparison-table-features-column .op-comparison-table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.op-comparison-table-style2 .op-comparison-table-guarantee_icon {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto
}

.op-comparison-table-style2 .op-comparison-table-guarantee_text {
    padding: 0 20px;
    line-height: 1.2;
    color: #9DA9B0;
    font-size: 12px
}

.op-comparison-table-style2 tr:last-child td:first-child {
    border-left: none;
    border-bottom: none
}

.op-comparison-table-style2 .op-comparison-table-title {
    color: #5a5a5a;
    font-size: 16px;
    font-weight: 400
}

.op-comparison-table-style2 .op-comparison-table-price {
    display: block;
    font-size: 36px;
    margin: 30px 0 10px;
    font-weight: 700
}

.op-comparison-table-style2 .op-comparison-table-variable {
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    color: #9DA9B0
}

.op-comparison-table-style2 .op-comparison-table-description {
    margin: 0;
    color: #acb8bd;
    font-size: 14px;
    display: block
}

.op-comparison-table-style2 .op-comparison-table-description-content {
    font-size: 12px;
    border: 1px solid #e5e5e5;
    color: #9DA9B0;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    padding: 5px 10px;
    text-transform: uppercase
}

.op-comparison-table-style2 .op-comparison-table-package-description {
    margin: 20px 0 0;
    font-size: 14px;
    display: block
}

.op-comparison-table-style2 .op-comparison-table-package-description:empty {
    display: none
}

.op-comparison-table-style2 .op-comparison-table-btn {
    padding: 10px 30px;
    background: #fff;
    color: #5b6063;
    border: 1px solid #C8D0D5;
    border-radius: 2px;
    display: block
}

.op-comparison-table-style2 .op-comparison-table-feature-title {
    display: none
}

.op-comparison-table-style2 .op-comparison-table-column-popular .op-comparison-table-header {
    background: #ECEEF6
}

.op-comparison-table-style2 .op-comparison-table-column-popular .op-comparison-table-btn {
    border: 1px solid #C8D0D5
}

.op-comparison-table-style2 .op-comparison-table-column-popular .op-comparison-table-btn-container, .op-comparison-table-style2 .op-comparison-table-column-popular .op-comparison-table-feature, .op-comparison-table-style2 .op-comparison-table-column-popular .op-comparison-table-feature:nth-child(2n-1) {
    background: #ECEEF6
}

@media screen and (max-width:1000px) {
    .op-comparison-table-style2 .op-comparison-table-feature-cell {
        padding: 15px
    }
}

@media screen and (max-width:767px) {
    .op-comparison-table-style2 .op-comparison-table-column, .op-comparison-table-style2 .op-comparison-table-features-column {
        width: 100%;
        margin: 20px 0
    }

    .op-comparison-table-style2 .op-comparison-table-column, .op-comparison-table-style2 .op-comparison-table-column:last-child {
        border: 1px solid #ecf2f2
    }

    .op-comparison-table-style2 .op-comparison-table-description, .op-comparison-table-style2 .op-comparison-table-feature, .op-comparison-table-style2 .op-comparison-table-header, .op-comparison-table-style2 .op-comparison-table-package-description, .op-comparison-table-style2 .op-comparison-table-price, .op-comparison-table-style2 .op-comparison-table-title, .op-comparison-table-style2 .op-comparison-table-variable {
        height: auto !important
    }

    .op-comparison-table-style2 .op-comparison-table-description:empty, .op-comparison-table-style2 .op-comparison-table-feature:empty, .op-comparison-table-style2 .op-comparison-table-features-column .op-comparison-table-feature, .op-comparison-table-style2 .op-comparison-table-header:empty, .op-comparison-table-style2 .op-comparison-table-package-description:empty, .op-comparison-table-style2 .op-comparison-table-price:empty, .op-comparison-table-style2 .op-comparison-table-title:empty, .op-comparison-table-style2 .op-comparison-table-variable:empty {
        display: none
    }

    .op-comparison-table-style2 .op-comparison-table-feature-title {
        margin: 3px auto;
        display: block;
        color: #878787;
        font-size: 1.2em
    }

    .op-comparison-table-empty-header {
        display: none
    }
}

.op-comparison-table-style3 {
    color: #3f4958;
    clear: both
}

.op-comparison-table-style3 .op-comparison-table-column {
    border-right: none;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    box-sizing: border-box
}

.op-comparison-table-style3 .op-comparison-table-empty-header+.op-comparison-table-column .op-comparison-table-header {
    border-top-left-radius: 10px
}

.op-comparison-table-style3 .op-comparison-table-column-header, .op-comparison-table-style3 .op-comparison-table-header {
    background: #e7f1f9;
    padding: 40px 25px
}

.op-comparison-table-style3 .op-comparison-table-btn-container, .op-comparison-table-style3 .op-comparison-table-features {
    background: #e7f1f9
}

.op-comparison-table-style3 .op-comparison-table-btn-container, .op-comparison-table-style3 .op-comparison-table-feature {
    text-align: center;
    vertical-align: middle;
    margin: 0;
    display: table;
    width: 100%
}

.op-comparison-table-style3 .op-comparison-table-btn-container {
    border-bottom: none
}

.op-comparison-table-style3 .op-comparison-table-feature-cell {
    display: table-cell;
    padding: 15px 25px;
    vertical-align: middle
}

.op-comparison-table-style3 .op-comparison-table-feature-icon, .op-comparison-table-style3 .op-comparison-table-feature-icon-container, .op-comparison-table-style3 .op-comparison-table-feature-text {
    vertical-align: middle
}

.op-comparison-table-style3 .op-comparison-table-feature-icon-container, .op-comparison-table-style3 .op-comparison-table-feature-text {
    padding: 0 7px
}

.op-comparison-table-style3 .op-comparison-table-features {
    margin: 0
}

.op-comparison-table-style3 .op-comparison-table-features-column {
    border-right: none;
    box-sizing: border-box
}

.op-comparison-table-style3 .op-comparison-table-features-column .op-comparison-table-feature, .op-comparison-table-style3 .op-comparison-table-features-column .op-comparison-table-header {
    background: #f1f7fb
}

.op-comparison-table-style3 .op-comparison-table-features-column .op-comparison-table-feature {
    text-align: center;
    color: #9DA9B0;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700
}

.op-comparison-table-style3 .op-comparison-table-features-column .op-comparison-table-feature:last-child {
    border-left: none;
    border-bottom: none
}

.op-comparison-table-style3 td:first-child {
    white-space: nowrap;
    text-align: right;
    width: auto
}

.op-comparison-table-style3 .op-comparison-table-header {
    text-align: center;
    border-bottom: 1px solid #ddd
}

.op-comparison-table-style3 .op-comparison-table-features-column .op-comparison-table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.op-comparison-table-style3 .op-comparison-table-empty-header {
    border-left: none;
    border-top: none
}

.op-comparison-table-style3 .op-comparison-table-empty-header .op-comparison-table-header {
    background: 0 0;
    border-bottom: 1px solid #fff;
    border-top: 1px solid transparent
}

.op-comparison-table-style3 .op-comparison-table-features-column.op-comparison-table-empty-header .op-comparison-table-feature:first-child, .op-comparison-table-style3 .op-comparison-table-features-column.op-comparison-table-empty-header .op-comparison-table-features {
    border-top-left-radius: 10px !important
}

.op-comparison-table-style3 .op-comparison-table-guarantee_icon {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto
}

.op-comparison-table-style3 .op-comparison-table-guarantee_text {
    padding: 0 20px;
    line-height: 1.2;
    color: #9DA9B0;
    font-size: 12px
}

.op-comparison-table-style3 tr:last-child td:first-child {
    border-left: none;
    border-bottom: none
}

.op-comparison-table-style3 .op-comparison-table-title {
    color: #5a5a5a;
    font-size: 16px;
    font-weight: 400
}

.op-comparison-table-style3 .op-comparison-table-price {
    display: block;
    font-size: 36px;
    margin: 30px 0 10px;
    font-weight: 700
}

.op-comparison-table-style3 .op-comparison-table-variable {
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
    color: #9DA9B0
}

.op-comparison-table-style3 .op-comparison-table-description {
    margin: 0;
    color: #9aaab9;
    font-size: 14px;
    display: block
}

.op-comparison-table-style3 .op-comparison-table-description-content {
    font-size: 12px;
    border: 1px solid #e5e5e5;
    color: #9DA9B0;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    padding: 5px 10px;
    text-transform: uppercase
}

.op-comparison-table-style3 .op-comparison-table-package-description {
    margin: 20px 0 0;
    color: #9DA9B0;
    font-size: 14px;
    display: block
}

.op-comparison-table-style3 .op-comparison-table-package-description:empty {
    display: none
}

.op-comparison-table-style3 .op-comparison-table-btn {
    padding: 10px 30px;
    background: #25a9d8;
    color: #fff;
    border-radius: 2px;
    display: block
}

.op-comparison-table-style3 .op-comparison-table-feature-title {
    display: none
}

.op-comparison-table-style3 .op-comparison-table-column-popular .op-comparison-table-btn-container, .op-comparison-table-style3 .op-comparison-table-column-popular .op-comparison-table-feature, .op-comparison-table-style3 .op-comparison-table-column-popular .op-comparison-table-feature:nth-child(2n-1), .op-comparison-table-style3 .op-comparison-table-column-popular .op-comparison-table-header {
    background: #fff
}

.op-comparison-table-style3 .op-comparison-table-column-popular {
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    z-index: 5;
    position: relative;
    padding: 10px 0;
    top: -10px
}

.op-comparison-table-style3 .op-comparison-table-column-popular .op-comparison-table-header {
    border-radius: 10px 10px 0 0
}

.op-comparison-table-style3 .op-comparison-table-column-popular {
    border-radius: 10px
}

.op-comparison-table-style3 .op-comparison-table-features-column:first-child {
    border-radius: 10px 0 0 10px
}

.op-comparison-table-style3 .op-comparison-table-features-column:first-child .op-comparison-table-header {
    border-radius: 10px 0 0
}

.op-comparison-table-style3 .op-comparison-table-features-column:first-child .op-comparison-table-features:last-child, .op-comparison-table-style3 .op-comparison-table-features-column:first-child .op-comparison-table-features:last-child .op-comparison-table-feature:last-child {
    border-radius: 0 0 0 10px
}

.op-comparison-table-style3 .op-comparison-table-features-column:first-child+.op-comparison-table-column .op-comparison-table-btn-container:last-child {
    border-radius: 0 0 0 10px;
    border-right: 1px solid #e7f1f9
}

.op-comparison-table-style3 .op-comparison-table-column:last-child {
    border-radius: 10px
}

.op-comparison-table-style3 .op-comparison-table-column:last-child .op-comparison-table-header {
    border-radius: 0 10px 0 0
}

.op-comparison-table-style3 .op-comparison-table-column:last-child .op-comparison-table-btn-container:last-child, .op-comparison-table-style3 .op-comparison-table-column:last-child .op-comparison-table-features:last-child {
    border-radius: 0 0 10px
}

.op-comparison-table-style3 .op-comparison-table-column.op-comparison-table-column-popular {
    background-color: #fff
}

@media screen and (max-width:1000px) {
    .op-comparison-table-style3 .op-comparison-table-feature-cell {
        padding: 15px
    }
}

@media screen and (max-width:767px) {
    .op-comparison-table-style3 .op-comparison-table-column, .op-comparison-table-style3 .op-comparison-table-features-column {
        width: 100%;
        margin: 20px 0;
        border-radius: 10px
    }

    .op-comparison-table-style3 .op-comparison-table-column, .op-comparison-table-style3 .op-comparison-table-column:last-child, .op-comparison-table-style3 .op-comparison-table-features-column:first-child, .op-comparison-table-style3 .op-comparison-table-features-column:first-child .op-comparison-table-header {
        border-radius: 10px
    }

    .op-comparison-table-style3 .op-comparison-table-column-header, .op-comparison-table-style3 .op-comparison-table-column:last-child .op-comparison-table-header, .op-comparison-table-style3 .op-comparison-table-header {
        border-radius: 10px 10px 0 0
    }

    .op-comparison-table-style3 .op-comparison-table-btn-container, .op-comparison-table-style3 .op-comparison-table-column:last-child .op-comparison-table-btn-container:last-child, .op-comparison-table-style3 .op-comparison-table-features-column+.op-comparison-table-column .op-comparison-table-btn-container:last-child, .op-comparison-table-style3 .op-comparison-table-features-column:first-child+.op-comparison-table-column .op-comparison-table-btn-container:last-child, .op-comparison-table-style3 .op-comparison-table-features:last-child {
        border-radius: 0 0 10px 10px
    }

    .op-comparison-table-style3 .op-comparison-table-column-header, .op-comparison-table-style3 .op-comparison-table-header {
        padding: 30px 25px
    }

    .op-comparison-table-style3 .op-comparison-table-column, .op-comparison-table-style3 .op-comparison-table-column:last-child {
        border: 1px solid #ecf2f2
    }

    .op-comparison-table-style3 .op-comparison-table-description, .op-comparison-table-style3 .op-comparison-table-feature, .op-comparison-table-style3 .op-comparison-table-header, .op-comparison-table-style3 .op-comparison-table-package-description, .op-comparison-table-style3 .op-comparison-table-price, .op-comparison-table-style3 .op-comparison-table-title, .op-comparison-table-style3 .op-comparison-table-variable {
        height: auto !important
    }

    .op-comparison-table-style3 .op-comparison-table-description:empty, .op-comparison-table-style3 .op-comparison-table-feature:empty, .op-comparison-table-style3 .op-comparison-table-features-column .op-comparison-table-feature, .op-comparison-table-style3 .op-comparison-table-header:empty, .op-comparison-table-style3 .op-comparison-table-package-description:empty, .op-comparison-table-style3 .op-comparison-table-price:empty, .op-comparison-table-style3 .op-comparison-table-title:empty, .op-comparison-table-style3 .op-comparison-table-variable:empty {
        display: none
    }

    .op-comparison-table-style3 .op-comparison-table-feature-title {
        margin: 3px auto;
        display: block;
        color: #878787;
        font-size: 1em
    }

    .op-comparison-table-empty-header {
        display: none
    }
}

.op-comparison-table-style4 {
    color: #3f4958;
    clear: both
}

.op-comparison-table-style4 .op-comparison-table-column {
    border: 1px solid #e6e6e8;
    border-right: none;
    text-align: center;
    vertical-align: middle;
    padding: 0;
    box-sizing: border-box
}

.op-comparison-table-style4 .op-comparison-table-column:last-child {
    border-right: 1px solid #e6e6e8
}

.op-comparison-table-style4 .op-comparison-table-column-header, .op-comparison-table-style4 .op-comparison-table-header {
    background: #fafafb;
    padding: 20px
}

.op-comparison-table-style4 .op-comparison-table-btn-container, .op-comparison-table-style4 .op-comparison-table-features {
    background: #fff
}

.op-comparison-table-style4 .op-comparison-table-btn-container, .op-comparison-table-style4 .op-comparison-table-feature {
    text-align: center;
    vertical-align: middle;
    margin: 0;
    display: table;
    width: 100%;
    border-top: 1px solid #e6e6e8
}

.op-comparison-table-style4 .op-comparison-table-feature:first-child {
    border-top: none
}

.op-comparison-table-style4 .op-comparison-table-btn-container {
    border-bottom: none
}

.op-comparison-table-style4 .op-comparison-table-feature-cell {
    display: table-cell;
    padding: 15px 25px;
    vertical-align: middle
}

.op-comparison-table-style4 .op-comparison-table-feature-icon, .op-comparison-table-style4 .op-comparison-table-feature-icon-container, .op-comparison-table-style4 .op-comparison-table-feature-text {
    vertical-align: middle
}

.op-comparison-table-style4 .op-comparison-table-feature-icon-container, .op-comparison-table-style4 .op-comparison-table-feature-text {
    padding: 0 7px
}

.op-comparison-table-style4 .op-comparison-table-features {
    margin: 0
}

.op-comparison-table-style4 .op-comparison-table-features-column {
    border-right: none;
    box-sizing: border-box
}

.op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-header {
    border-bottom: 1px solid #e6e6e8;
    border-bottom: 1px solid transparent;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-features {
    border-left: 1px solid #e6e6e8;
    border-top: 1px solid #e6e6e8;
    border-bottom: 1px solid #e6e6e8;
    border-radius: 5px 0 0 5px
}

.op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-features .op-comparison-table-feature:first-child {
    border-radius: 5px 0 0
}

.op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-features .op-comparison-table-feature:last-child {
    border-radius: 0 0 0 5px
}

.op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-feature, .op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-header {
    background: #fafafb
}

.op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-feature {
    text-align: center;
    color: #9DA9B0;
    font-size: 12px
}

.op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-header {
    background: 0 0
}

.op-comparison-table-style4 td:first-child {
    white-space: nowrap;
    text-align: right;
    width: auto
}

.op-comparison-table-style4 .op-comparison-table-header {
    text-align: center;
    border-bottom: 1px solid #e6e6e8
}

.op-comparison-table-style4 .op-comparison-table-guarantee_icon {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto
}

.op-comparison-table-style4 .op-comparison-table-guarantee_text {
    padding: 0 20px;
    line-height: 1.2;
    color: #9DA9B0;
    font-size: 12px
}

.op-comparison-table-style4 tr:last-child td:first-child {
    border-left: none;
    border-bottom: none
}

.op-comparison-table-style4 .op-comparison-table-title {
    color: #5a5a5a;
    font-size: 16px;
    font-weight: 400
}

.op-comparison-table-style4 .op-comparison-table-price {
    display: block;
    font-size: 26px;
    margin: 10px 0;
    font-weight: 700
}

.op-comparison-table-style4 .op-comparison-table-variable {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    color: #9DA9B0
}

.op-comparison-table-style4 .op-comparison-table-description {
    margin: 0;
    color: #9aaab9;
    font-size: 14px;
    display: block
}

.op-comparison-table-style4 .op-comparison-table-description-content {
    font-size: 12px;
    border: 1px solid #e5e5e5;
    border: 1px solid #e6e6e8;
    color: #9DA9B0;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    padding: 5px 10px;
    text-transform: uppercase
}

.op-comparison-table-style4 .op-comparison-table-package-description {
    margin: 10px 0 0;
    color: #9DA9B0;
    font-size: 14px;
    display: block
}

.op-comparison-table-style4 .op-comparison-table-package-description:empty {
    display: none
}

.op-comparison-table-style4 .op-comparison-table-btn {
    padding: 10px 30px;
    background: #25a9d8;
    color: #fff;
    border-radius: 2px;
    display: block
}

.op-comparison-table-style4 .op-comparison-table-feature-title {
    display: none
}

.op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-header {
    border-left: none;
    border-top: none
}

.op-comparison-table-style4 .op-comparison-table-column-popular .op-comparison-table-header {
    background: #ebfcff
}

.op-comparison-table-style4 .op-comparison-table-column-popular .op-comparison-table-btn-container, .op-comparison-table-style4 .op-comparison-table-column-popular .op-comparison-table-feature, .op-comparison-table-style4 .op-comparison-table-column-popular .op-comparison-table-feature:nth-child(2n-1) {
    background: #ebfcff;
    border-top: 1px solid #a5dbef
}

.op-comparison-table-style4 .op-comparison-table-column-popular {
    z-index: 5;
    position: relative;
    padding: 5px 0;
    top: -5px;
    background: #ebfcff;
    border: 1px solid #a5dbef
}

.op-comparison-table-style4 .op-comparison-table-column-popular .op-comparison-table-header {
    border-radius: 5px;
    border-bottom: none
}

.op-comparison-table-style4 .op-comparison-table-column-popular+.op-comparison-table-column {
    border-left: none
}

.op-comparison-table-style4 .op-comparison-table-column-popular {
    border-radius: 5px !important
}

.op-comparison-table-style4 .op-comparison-table-features-column:first-child {
    border-radius: 5px 0 0 5px
}

.op-comparison-table-style4 .op-comparison-table-features-column:first-child .op-comparison-table-header {
    border-radius: 5px 0 0
}

.op-comparison-table-style4 .op-comparison-table-features-column:first-child .op-comparison-table-features:last-child .op-comparison-table-feature:last-child {
    border-radius: 0 0 0 5px
}

.op-comparison-table-style4 .op-comparison-table-features-column:first-child+.op-comparison-table-column {
    border-radius: 5px 0 0 5px
}

.op-comparison-table-style4 .op-comparison-table-features-column:first-child+.op-comparison-table-column .op-comparison-table-header {
    border-radius: 5px 0 0
}

.op-comparison-table-style4 .op-comparison-table-features-column:first-child+.op-comparison-table-column .op-comparison-table-btn-container:last-child {
    border-radius: 0 0 0 5px;
    border-right: 1px solid #fff
}

.op-comparison-table-style4 .op-comparison-table-column:last-child {
    border-radius: 0 5px 5px 0
}

.op-comparison-table-style4 .op-comparison-table-column:last-child .op-comparison-table-header {
    border-radius: 0 5px 0 0
}

.op-comparison-table-style4 .op-comparison-table-column:last-child .op-comparison-table-btn-container:last-child, .op-comparison-table-style4 .op-comparison-table-column:last-child .op-comparison-table-features:last-child {
    border-radius: 0 0 5px
}

@media screen and (max-width:1000px) {
    .op-comparison-table-style4 .op-comparison-table-feature-cell {
        padding: 15px
    }
}

@media screen and (max-width:767px) {
    .op-comparison-table-style4 .op-comparison-table-column, .op-comparison-table-style4 .op-comparison-table-features-column {
        width: 100%;
        margin: 20px 0;
        border-radius: 5px
    }

    .op-comparison-table-style4 .op-comparison-table-features-column {
        margin: 0
    }

    .op-comparison-table-style4 .op-comparison-table-column, .op-comparison-table-style4 .op-comparison-table-column:last-child, .op-comparison-table-style4 .op-comparison-table-features-column:first-child, .op-comparison-table-style4 .op-comparison-table-features-column:first-child .op-comparison-table-header {
        border-radius: 5px
    }

    .op-comparison-table-style4 .op-comparison-table-column-header, .op-comparison-table-style4 .op-comparison-table-column:last-child .op-comparison-table-header, .op-comparison-table-style4 .op-comparison-table-header {
        border-radius: 5px 5px 0 0
    }

    .op-comparison-table-style4 .op-comparison-table-btn-container, .op-comparison-table-style4 .op-comparison-table-column:last-child .op-comparison-table-btn-container:last-child, .op-comparison-table-style4 .op-comparison-table-features-column+.op-comparison-table-column .op-comparison-table-btn-container:last-child, .op-comparison-table-style4 .op-comparison-table-features-column:first-child+.op-comparison-table-column .op-comparison-table-btn-container:last-child, .op-comparison-table-style4 .op-comparison-table-features:last-child {
        border-radius: 0 0 5px 5px
    }

    .op-comparison-table-style4 .op-comparison-table-features-column:first-child+.op-comparison-table-column {
        border-radius: 5px
    }

    .op-comparison-table-style4 .op-comparison-table-column-header, .op-comparison-table-style4 .op-comparison-table-header {
        padding: 30px 25px
    }

    .op-comparison-table-style4 .op-comparison-table-column, .op-comparison-table-style4 .op-comparison-table-column:last-child {
        border: 1px solid #ecf2f2
    }

    .op-comparison-table-style4 .op-comparison-table-column-popular.op-comparison-table-column {
        border: 1px solid #a5dbef
    }

    .op-comparison-table-style4 .op-comparison-table-description, .op-comparison-table-style4 .op-comparison-table-feature, .op-comparison-table-style4 .op-comparison-table-header, .op-comparison-table-style4 .op-comparison-table-package-description, .op-comparison-table-style4 .op-comparison-table-price, .op-comparison-table-style4 .op-comparison-table-title, .op-comparison-table-style4 .op-comparison-table-variable {
        height: auto !important
    }

    .op-comparison-table-style4 .op-comparison-table-description:empty, .op-comparison-table-style4 .op-comparison-table-feature:empty, .op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-feature, .op-comparison-table-style4 .op-comparison-table-header:empty, .op-comparison-table-style4 .op-comparison-table-package-description:empty, .op-comparison-table-style4 .op-comparison-table-price:empty, .op-comparison-table-style4 .op-comparison-table-title:empty, .op-comparison-table-style4 .op-comparison-table-variable:empty {
        display: none
    }

    .op-comparison-table-style4 .op-comparison-table-feature-title {
        margin: 3px auto;
        display: block;
        color: #878787;
        font-size: 1em
    }

    .op-comparison-table-empty-header, .op-comparison-table-style4 .op-comparison-table-features-column .op-comparison-table-features {
        display: none
    }
}

.op-comparison-table-style5 {
    color: #3f4958;
    clear: both;
    overflow: hidden
}

.op-comparison-table-style5 .op-comparison-table-column {
    padding: 0;
    text-align: center;
    vertical-align: middle;
    position: relative;
    box-sizing: border-box
}

.op-comparison-table-style5 .op-comparison-table-column:last-child {
    border-right: 1px solid #60caff
}

.op-comparison-table-style5 .op-comparison-table-column-header, .op-comparison-table-style5 .op-comparison-table-header {
    background: #49baff;
    padding: 30px 20px 20px
}

.op-comparison-table-style5 .op-comparison-table-column .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-column .op-comparison-table-feature, .op-comparison-table-style5 .op-comparison-table-column:nth-child(2) {
    background: #49baff
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(3), .op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-column-header, .op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-feature, .op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-header {
    background: #338ac0
}

.op-comparison-table-style5 .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-feature {
    border-top: 1px solid #60caff
}

.op-comparison-table-style5.op-comparison-table-3col {
    padding: 35px 0 0
}

.op-comparison-table-style5.op-comparison-table-3col .comparison-table-content .op-comparison-table-column:last-child {
    margin-bottom: -35px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-header {
    padding-bottom: 55px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-btn-container {
    padding-top: 35px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(3) {
    top: -35px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-feature {
    border-top: 1px solid #4a9dd1
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-header {
    border-bottom: 1px solid #4a9dd1
}

.op-comparison-table-style5.op-comparison-table-4col {
    padding: 70px 0 0
}

.op-comparison-table-style5.op-comparison-table-4col .comparison-table-content .op-comparison-table-column:last-child {
    margin-bottom: -70px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(4), .op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-column-header, .op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-feature, .op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-header {
    background: #226089
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-header {
    padding-bottom: 90px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-btn-container {
    padding-top: 70px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(4) {
    top: -70px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-feature {
    border-top: 1px solid #417ca4
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-header {
    border-bottom: 1px solid #417ca4
}

.op-comparison-table-style5.op-comparison-table-5col {
    padding: 105px 0 0
}

.op-comparison-table-style5.op-comparison-table-5col .comparison-table-content .op-comparison-table-column:last-child {
    margin-bottom: -105px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(5), .op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-column-header, .op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-feature, .op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-header {
    background: #1b4b6b
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-header {
    padding-bottom: 125px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-btn-container {
    padding-top: 105px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(5) {
    top: -105px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-feature {
    border-top: 1px solid #315C79
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-header {
    border-bottom: 1px solid #315C79
}

.op-comparison-table-style5.op-comparison-table-6col {
    padding: 140px 0 0
}

.op-comparison-table-style5.op-comparison-table-6col .comparison-table-content .op-comparison-table-column:last-child {
    margin-bottom: -140px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(6), .op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-column-header, .op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-feature, .op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-header {
    background: #17415d
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-header {
    padding-bottom: 160px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-btn-container {
    padding-top: 140px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(6) {
    top: -140px
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-feature {
    border-top: 1px solid #2A516B
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-header {
    border-bottom: 1px solid #2A516B
}

.op-comparison-table-style5 .op-comparison-table-btn-container, .op-comparison-table-style5 .op-comparison-table-feature {
    text-align: center;
    vertical-align: middle;
    margin: 0;
    display: table;
    width: 100%
}

.op-comparison-table-style5 .op-comparison-table-column:nth-child(3) .op-comparison-table-feature:first-child, .op-comparison-table-style5 .op-comparison-table-column:nth-child(4) .op-comparison-table-feature:first-child, .op-comparison-table-style5 .op-comparison-table-column:nth-child(5) .op-comparison-table-feature:first-child, .op-comparison-table-style5 .op-comparison-table-column:nth-child(6) .op-comparison-table-feature:first-child, .op-comparison-table-style5 .op-comparison-table-feature:first-child {
    border-top: none
}

.op-comparison-table-style5 .op-comparison-table-btn-container {
    border-bottom: none
}

.op-comparison-table-style5 .op-comparison-table-feature-cell {
    display: table-cell;
    padding: 25px;
    vertical-align: middle
}

.op-comparison-table-style5 .op-comparison-table-feature-icon, .op-comparison-table-style5 .op-comparison-table-feature-icon-container, .op-comparison-table-style5 .op-comparison-table-feature-text {
    vertical-align: middle
}

.op-comparison-table-style5 .op-comparison-table-feature-icon-container, .op-comparison-table-style5 .op-comparison-table-feature-text {
    padding: 0 7px;
    color: #fff
}

.op-comparison-table-style5 .op-comparison-table-features {
    margin: 0
}

.op-comparison-table-style5 .op-comparison-table-features-column {
    border-right: none;
    box-sizing: border-box
}

.op-comparison-table-style5 .op-comparison-table-features-column .op-comparison-table-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.op-comparison-table-style5 .op-comparison-table-features-column .op-comparison-table-features {
    border-left: 1px solid transparent;
    border-top: 1px solid #D1E5EF;
    border-top: 1px solid rgba(209, 229, 239, .5);
    border-bottom: 1px solid transparent
}

.op-comparison-table-style5 .op-comparison-table-features-column .op-comparison-table-feature {
    border-top: none;
    border-bottom: 1px solid #D1E5EF;
    border-bottom: 1px solid rgba(209, 229, 239, .5);
    text-align: center;
    color: #666;
    font-size: 12px;
    font-weight: 700
}

.op-comparison-table-style5 .op-comparison-table-features-column .op-comparison-table-header {
    background: 0 0
}

.op-comparison-table-style5 td:first-child {
    white-space: nowrap;
    text-align: right;
    width: auto
}

.op-comparison-table-style5 .op-comparison-table-header {
    text-align: center;
    border-bottom: 1px solid #60caff
}

.op-comparison-table-style5 .op-comparison-table-guarantee_icon {
    max-width: 100%;
    max-height: 100px;
    width: auto;
    height: auto
}

.op-comparison-table-style5 .op-comparison-table-guarantee_text {
    padding: 0 20px;
    line-height: 1.2;
    color: #9DA9B0;
    font-size: 12px
}

.op-comparison-table-style5 tr:last-child td:first-child {
    border-left: none;
    border-bottom: none
}

.op-comparison-table-style5 .op-comparison-table-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-top: 10px
}

.op-comparison-table-style5 .op-comparison-table-price {
    display: block;
    font-size: 36px;
    margin: 15px 0 5px;
    font-weight: 700;
    color: #fff;
    line-height: 1
}

.op-comparison-table-style5 .op-comparison-table-variable {
    font-size: 14px;
    display: block;
    margin-bottom: 10px;
    color: #fff;
    color: rgba(255, 255, 255, .9)
}

.op-comparison-table-style5 .op-comparison-table-description-content {
    font-size: 12px;
    border: 1px solid #60caff;
    color: #9DA9B0;
    display: inline-block;
    vertical-align: middle;
    line-height: normal;
    padding: 5px 10px;
    text-transform: uppercase
}

.op-comparison-table-style5 .op-comparison-table-package-description {
    margin: 10px 0 0;
    font-size: 14px;
    display: block
}

.op-comparison-table-style5 .op-comparison-table-package-description:empty {
    display: none
}

.op-comparison-table-style5 .op-comparison-table-description, .op-comparison-table-style5 .op-comparison-table-package-description {
    color: #fff;
    color: rgba(255, 255, 255, .5)
}

.op-comparison-table-style5 .op-comparison-table-btn {
    margin: 0;
    padding: 10px 30px;
    display: block;
    color: #1e4a87;
    font-size: 14px;
    font-weight: 700;
    background: #fff;
    border-radius: 5px
}

.op-comparison-table-style5 .op-comparison-table-feature-title {
    display: none
}

.op-comparison-table-style5 .op-comparison-table-features-column .op-comparison-table-header {
    border-left: none;
    border-top: none;
    border-bottom: none
}

.op-comparison-table-style5 .op-comparison-table-column-popular .op-comparison-table-btn {
    background: #aad34f;
    color: #fff
}

@media screen and (max-width:767px) {
    .op-comparison-table-style5 .op-comparison-table-column, .op-comparison-table-style5 .op-comparison-table-features-column {
        width: 100%;
        margin: 20px 0
    }

    .op-comparison-table-style5 .op-comparison-table-features-column {
        margin: 0
    }

    .op-comparison-table-style5 .op-comparison-table-column-header, .op-comparison-table-style5 .op-comparison-table-header {
        padding: 30px 25px
    }

    .op-comparison-table-style5 .op-comparison-table-column, .op-comparison-table-style5 .op-comparison-table-column:last-child {
        border: 1px solid #ecf2f2
    }

    .op-comparison-table-style5 .op-comparison-table-column-popular.op-comparison-table-column {
        border: 1px solid #a5dbef
    }

    .op-comparison-table-style5 .op-comparison-table-description, .op-comparison-table-style5 .op-comparison-table-feature, .op-comparison-table-style5 .op-comparison-table-header, .op-comparison-table-style5 .op-comparison-table-package-description, .op-comparison-table-style5 .op-comparison-table-price, .op-comparison-table-style5 .op-comparison-table-title, .op-comparison-table-style5 .op-comparison-table-variable {
        height: auto !important
    }

    .op-comparison-table-style5 .op-comparison-table-description:empty, .op-comparison-table-style5 .op-comparison-table-feature:empty, .op-comparison-table-style5 .op-comparison-table-features-column .op-comparison-table-feature, .op-comparison-table-style5 .op-comparison-table-header:empty, .op-comparison-table-style5 .op-comparison-table-package-description:empty, .op-comparison-table-style5 .op-comparison-table-price:empty, .op-comparison-table-style5 .op-comparison-table-title:empty, .op-comparison-table-style5 .op-comparison-table-variable:empty {
        display: none
    }

    .op-comparison-table-style5 .op-comparison-table-feature-title {
        margin: 3px auto;
        display: block;
        color: #fff;
        font-size: 1em
    }

    .op-comparison-table-style5 .op-comparison-table-features-column .op-comparison-table-features, .op-comparison-table-style5 .op-comparison-table-header:empty {
        display: none
    }

    .op-comparison-table-style5 .op-comparison-table-btn-container {
        padding-top: 0 !important
    }

    .op-comparison-table-style5 .op-comparison-table-header {
        padding-bottom: 30px !important
    }

    .op-comparison-table-empty-header {
        display: none
    }

    .op-comparison-table-style5.op-comparison-table-1col, .op-comparison-table-style5.op-comparison-table-2col, .op-comparison-table-style5.op-comparison-table-3col, .op-comparison-table-style5.op-comparison-table-4col, .op-comparison-table-style5.op-comparison-table-5col, .op-comparison-table-style5.op-comparison-table-6col {
        padding: 0
    }

    .op-comparison-table-style5 .op-comparison-table-btn {
        margin: 10px 0 0
    }
}

.op_comparison_table_hidden {
    display: none !important
}

.field-id-op_assets_addon_op_product_showcase_elements-multirow-container .op-multirow {
    border: 1px solid #D9D9D9;
    padding: 1em 2em;
    margin-bottom: 1em;
    clear: both;
    position: relative
}

.field-id-op_assets_addon_op_product_showcase_elements-multirow-container .op-multirow .remove-row {
    position: absolute;
    right: 15px;
    top: 10px
}

.op-settings-addon-op_product_showcase .field-row.field-container h3, .op-settings-addon-op_product_showcase .field-row.field-container h3 a {
    color: #004a80 !important;
    font-size: 16px;
    font-weight: 700;
    float: left;
    text-shadow: 0 0 1px #fff, 0 0 1px #fff;
    margin-top: 8px
}

.op-settings-addon-op_product_showcase .op-file-uploader a.preview-image {
    display: block
}

.op-live-editor .op-product-showcase-slides li {
    display: none
}

.op-live-editor .op-product-showcase-slides li:first-child {
    display: block
}

.op-live-editor #op_asset_browser_container .product-showcase-thumbnail {
    display: none
}

.op-product-showcase-container-100 {
    width: 100%
}

.op-product-showcase-container-70 {
    width: 70%
}

.op-product-showcase-container-50 {
    width: 50%
}

.op-product-showcase-container-30 {
    width: 30%
}

.op-product-showcase {
    margin: 0;
    background: 0 0;
    border-color: transparent
}

.op-product-showcase-container {
    margin: 0 auto;
    overflow: hidden
}

.op-product-showcase-thumbs {
    float: left;
    width: 13%
}

.op-product-showcase-thumbs-list {
    list-style: none
}

.op-product-showcase-slider-container {
    float: right;
    width: 85%;
    overflow: hidden
}

.op-product-showcase-thumbs-size-verysmall .op-product-showcase-thumbs {
    width: 9%
}

.op-product-showcase-thumbs-size-verysmall .op-product-showcase-slider-container {
    width: 88%
}

.op-product-showcase-thumbs-size-small .op-product-showcase-thumbs {
    width: 12%
}

.op-product-showcase-thumbs-size-small .op-product-showcase-slider-container {
    width: 85%
}

.op-product-showcase-thumbs-size-medium .op-product-showcase-thumbs {
    width: 15%
}

.op-product-showcase-thumbs-size-medium .op-product-showcase-slider-container {
    width: 82%
}

.op-product-showcase-thumbs-size-large .op-product-showcase-thumbs {
    width: 21%
}

.op-product-showcase-thumbs-size-large .op-product-showcase-slider-container {
    width: 76%
}

.op-product-showcase-thumbs img {
    width: auto;
    height: auto;
    max-width: 100%;
    border: 3px solid #b4b8ba;
    border-radius: 2px;
    cursor: pointer
}

.op-product-showcase-thumbs .flex-active img {
    cursor: default;
    border: 3px solid #aed3ef
}

.op-product-showcase-slides, .single-post-content .op-product-showcase-slides {
    margin: 0;
    padding: 0;
    border: none;
    text-align: center
}

.op-product-showcase-slides li {
    line-height: 1;
    margin-bottom: 0
}

.op-product-showcase-slides>li:not(:first-child) {
    display: none;
    -webkit-backface-visibility: hidden
}

.op-product-showcase-slides img {
    max-width: 100%;
    height: auto
}

.op-product-showcase-slides .op-product-showcase-photo-wrap {
    cursor: zoom-in
}

.op-product-showcase-flexslider {
    border: none
}

.op-product-showcase-instruction-text {
    clear: both;
    text-align: center;
    padding: 10px
}

@media screen and (max-width:767px) {
    .op-product-showcase .op-product-showcase-slider-container, .op-product-showcase .op-product-showcase-thumbs {
        float: none;
        width: 100%
    }

    .op-product-showcase-thumbs {
        margin-top: 10px
    }

    .op-product-showcase-thumbs-list {
        text-align: center
    }

    .op-product-showcase-thumbs-list li {
        display: inline-block;
        margin: 0 5px
    }

    .op-product-showcase-thumbs-list img {
        height: auto;
        vertical-align: top
    }

    .op-product-showcase-thumbs-size-verysmall .op-product-showcase-thumbs-list img {
        width: 40px
    }

    .op-product-showcase-thumbs-size-small .op-product-showcase-thumbs-list img {
        width: 45px
    }

    .op-product-showcase-thumbs-size-medium .op-product-showcase-thumbs-list img {
        width: 50px
    }

    .op-product-showcase-thumbs-size-large .op-product-showcase-thumbs-list img {
        width: 55px
    }
}

@media only screen and (max-width:480px) {
    .op-product-showcase-instruction-text {
        display: none
    }
}

.op-product-showcase-style-2 .op-product-showcase-slider-container, .op-product-showcase-style-2 .op-product-showcase-thumbs {
    width: 100%
}

.op-product-showcase-style-2 .op-product-showcase-thumbs {
    text-align: center
}

.op-product-showcase-style-2 .op-product-showcase-instruction-text {
    margin-bottom: 10px
}

.op-product-showcase-style-2 .op-product-showcase-thumbs-list li {
    margin: 0 5px;
    display: inline-block
}

.op-product-showcase-style-2.op-product-showcase-thumbs-size-verysmall .op-product-showcase-thumbs-list img {
    width: 60px
}

.op-product-showcase-style-2.op-product-showcase-thumbs-size-small .op-product-showcase-thumbs-list img {
    width: 80px
}

.op-product-showcase-style-2.op-product-showcase-thumbs-size-medium .op-product-showcase-thumbs-list img {
    width: 100px
}

.op-product-showcase-style-2.op-product-showcase-thumbs-size-large .op-product-showcase-thumbs-list img {
    width: 120px
}

@media screen and (max-width:767px) {
    .op-product-showcase-style-2.op-product-showcase-thumbs-size-verysmall .op-product-showcase-thumbs-list img {
        width: 40px
    }

    .op-product-showcase-style-2.op-product-showcase-thumbs-size-small .op-product-showcase-thumbs-list img {
        width: 45px
    }

    .op-product-showcase-style-2.op-product-showcase-thumbs-size-medium .op-product-showcase-thumbs-list img {
        width: 50px
    }

    .op-product-showcase-style-2.op-product-showcase-thumbs-size-large .op-product-showcase-thumbs-list img {
        width: 55px
    }
}

#op_assets_addon_op_product_showcase_general_options_element_size, #op_assets_addon_op_product_showcase_image_options_animation_type, #op_assets_addon_op_product_showcase_thumbnail_options_thumbnail_size {
    width: 100% !important;
    padding: 10px;
    height: 40px !important
}

.field-id-op_assets_addon_op_scroll_to_top_icon .scroll_to_top-icon-container .selected-item {
    max-width: 50px;
    max-height: 50px
}

.oppp-top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: fixed;
    z-index: 9999;
    height: 50px;
    width: 50px;
    bottom: 25px;
    right: 25px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, .16), 0 3px 6px rgba(0, 0, 0, .23);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity .3s 0s, visibility 0s .3s;
    transition: opacity .3s 0s, visibility 0s .3s
}

#op-scroll-to-top-element-icon {
    width: 35px;
    height: 35px
}

.no-touch .oppp-top:hover, .oppp-top.oppp-fade-out, .oppp-top.oppp-is-visible {
    -webkit-transition: opacity .3s 0s, visibility 0s 0s;
    transition: opacity .3s 0s, visibility 0s 0s
}

.oppp-top.oppp-is-visible {
    visibility: visible;
    opacity: 1
}

.oppp-top.oppp-fade-out {
    opacity: .5
}

.no-touch .oppp-top:hover {
    background-color: #e86256;
    opacity: 1
}

@media only screen and (max-width:768px) {
    .oppp-top {
        right: 20px;
        bottom: 20px
    }
}

@media only screen and (max-width:1024px) {
    .oppp-top {
        height: 60px;
        width: 60px;
        right: 30px;
        bottom: 30px
    }
}

.scroll_to_top-icon-container a.op-asset-img-loaded {
    width: 32px;
    height: 32px;
    display: inline-block
}

.field-id-op_assets_addon_op_scroll_to_top_icon .selected-item img, .scroll_to_top-icon-container .op-asset-dropdown-list-item--loaded a {
    background: #888
}

.scroll_to_top-icon-container li {
    display: inline-block
}

.field-id-op_assets_addon_op_scroll_to_top_position_select select {
    width: 100% !important;
    padding: 10px;
    height: 40px !important
}

.op-scroll-top-top-exist--hidden {
    display: none
}

#op_assets_addon_op_scroll_to_top_shape {
    width: 50% !important;
    padding: 10px;
    height: 40px !important
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 {
    position: relative;
    border: 3px solid #fbfbf2;
    text-align: center;
    margin: 0;
    width: 100%;
    border-radius: 0;
    background: 0 0;
    padding: 45px 0 10px
}

.sidebar-form .op_signup_form.op-signup-style-oppp1:before {
    content: "";
    width: 100%;
    width: calc(100% + 6px);
    height: 13px;
    position: absolute;
    top: 0;
    left: 0;
    left: calc(0% - 3px);
    background-color: #00bfd9
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 h2 {
    padding: 13px 20px 0;
    font-size: 1.9em !important;
    color: #3f3e3e;
    font-weight: 900;
    text-shadow: none
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 p {
    margin: 0;
    padding: 20px;
    font-size: .9em;
    color: #3f3e3e;
    text-shadow: none
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 form {
    padding: 0 20px
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 form input {
    width: 100%;
    box-sizing: border-box;
    border-radius: 0;
    background-image: none;
    box-shadow: none;
    background-color: #efefef;
    border: none;
    text-align: center;
    padding: 10px 20px
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 form input::-webkit-input-placeholder {
    color: #3f3e3e
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 form input::-moz-placeholder {
    color: #3f3e3e
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 form input:-ms-input-placeholder {
    color: #3f3e3e
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 form input:-moz-placeholder {
    color: #3f3e3e
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 button.default-button {
    width: 100%;
    border-radius: 0;
    text-shadow: none;
    background: #11bdd7;
    box-shadow: none;
    font-size: 1em;
    font-weight: 700;
    color: #FFF
}

.sidebar-form .op_signup_form.op-signup-style-oppp1 .secure-icon {
    font-size: 11px;
    padding: 15px;
    display: inline-block;
    background-position: 0 50%;
    overflow: visible;
    background-image: url(../../images/elements/optin_box/optin-27-privacy.png)
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 {
    border: none;
    text-align: center;
    margin: 0;
    width: 100%;
    border-radius: 0;
    padding: 40px 0 30px;
    background: #323136
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 h2 {
    padding: 13px 20px 0;
    font-size: 1.2em !important;
    color: #fff;
    font-weight: 900;
    text-shadow: none
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 p {
    margin: 0 20px;
    padding: 10px 0 15px;
    font-size: .9em;
    color: #616065;
    text-shadow: none
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 form {
    padding: 0 20px
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 form input {
    width: 90%;
    box-sizing: border-box;
    border-radius: 0;
    background-image: none;
    box-shadow: none;
    background-color: #f6f6f6;
    border: none;
    text-align: center;
    padding: 10px 20px;
    font-size: .7em;
    margin: 0 auto 6px
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 form input::-webkit-input-placeholder {
    color: #cacaca;
    text-transform: uppercase
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 form input::-moz-placeholder {
    color: #cacaca;
    text-transform: uppercase
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 form input:-ms-input-placeholder {
    color: #cacaca;
    text-transform: uppercase
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 form input:-moz-placeholder {
    color: #cacaca;
    text-transform: uppercase
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 button.default-button {
    width: 90%;
    border-radius: 0;
    text-shadow: none;
    background: #68b2a3;
    box-shadow: none;
    font-size: 1em;
    font-weight: 700;
    color: #FFF;
    margin: 0 auto 6px
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 button.default-button span {
    display: inline-block;
    text-indent: 3px
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 button.default-button span:after {
    content: "";
    width: 10px;
    height: 10px;
    display: inline-block;
    margin-left: 3px;
    background-image: url(../../images/modules/signup_form/oppp2-arrow.png);
    background-repeat: no-repeat
}

.sidebar-form .op_signup_form.op-signup-style-oppp2 .secure-icon {
    display: none
}

.social-networking {
    list-style-type: none;
    padding: 0
}

.social-networking li {
    margin: 0 !important
}

.social-networking li:first-child:nth-last-child(1) {
    width: 100%
}

.social-networking li:first-child:nth-last-child(2), .social-networking li:first-child:nth-last-child(2)~li {
    width: 50%
}

.social-networking li:first-child:nth-last-child(3), .social-networking li:first-child:nth-last-child(3)~li {
    width: 33.3333%
}

.social-networking li:first-child:nth-last-child(4), .social-networking li:first-child:nth-last-child(4)~li {
    width: 25%
}

.social-networking li:first-child:nth-last-child(5), .social-networking li:first-child:nth-last-child(5)~li {
    width: 20%
}

.social-networking li:first-child:nth-last-child(6), .social-networking li:first-child:nth-last-child(6)~li {
    width: 16.66%
}

.social-networking li:first-child:nth-last-child(7), .social-networking li:first-child:nth-last-child(7)~li {
    width: 14.28%
}

.social-networking li:first-child:nth-last-child(8), .social-networking li:first-child:nth-last-child(8)~li {
    width: 12.5%
}

.social-networking-style-1 {
    height: 80px;
    width: 100%;
    background-color: #0465dc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.social-networking-style-1 li {
    height: 80px;
    margin: 0
}

.social-networking-style-1 li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    height: 100%
}

.social-networking-style-1 li p {
    color: #fff;
    font-size: 15px;
    text-transform: capitalize;
    vertical-align: middle;
    margin: 0 0 0 5px
}

.social-networking-style-1 li a:hover {
    background: rgba(0, 0, 0, .5);
    text-decoration: none !important
}

.social-networking-style-1 li:nth-child(2n) {
    background-color: rgba(255, 255, 255, .2)
}

.social-networking-style-1 .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.social-networking-style-1 .logo {
    margin: 0;
    color: #fff
}

.social-networking-style-1 .facebook_url .logo, .social-networking-style-1 .google_url .logo, .social-networking-style-1 .instagram_url .logo, .social-networking-style-1 .linkedin_url .logo, .social-networking-style-1 .pinterest_url .logo, .social-networking-style-1 .snapchat_url .logo, .social-networking-style-1 .twitter_url .logo, .social-networking-style-1 .youtube_url .logo {
    width: 27px;
    height: 27px;
    padding: 0;
    fill: #fff
}

@media only screen and (max-width:768px) {
    .social-networking-style-1, .three-columns .social-networking-style-1 {
        height: auto !important
    }

    .social-networking-style-1 {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .social-networking-style-1 li {
        width: 100% !important
    }
}

.two-columns .social-networking-style-1 li p {
    display: none
}

.three-columns .social-networking-style-1, .three-columns .social-networking-style-1 li {
    height: 60px
}

.three-columns .social-networking-style-1 li p {
    display: none
}

.social-networking-style-2 {
    width: 100%;
    margin: 20px 0
}

.social-networking-style-2 li {
    display: inline-block;
    margin: 0
}

.social-networking-style-2 a:hover .logo, .social-networking-style-2 a:hover p {
    opacity: .3
}

.social-networking-style-2 li a {
    display: block;
    width: 100%
}

.social-networking-style-2 li p {
    color: #000;
    text-transform: capitalize;
    vertical-align: middle;
    font-size: 15px;
    margin-bottom: 0
}

.social-networking-style-2 .box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.social-networking-style-2 .logo {
    margin-bottom: 10px
}

.social-networking-style-2 .facebook_url .logo {
    fill: #3a5897;
    width: 30px;
    height: 30px;
    padding: 0
}

.social-networking-style-2 .twitter_url .logo {
    fill: #1da0f2;
    width: 30px;
    height: 30px;
    padding: 0
}

.social-networking-style-2 .google_url .logo {
    fill: #dc4a38;
    width: 30px;
    height: 30px;
    padding: 0
}

.social-networking-style-2 .linkedin_url .logo {
    fill: #007bb6;
    width: 30px;
    height: 30px;
    padding: 0
}

.social-networking-style-2 .instagram_url .logo {
    fill: #000;
    width: 30px;
    height: 30px;
    padding: 0
}

.social-networking-style-2 .youtube_url .logo {
    width: 30px;
    height: 30px;
    padding: 0
}

.social-networking-style-2 .youtube_url .logo .you {
    fill: #4b4b4b
}

.social-networking-style-2 .youtube_url .logo .tube {
    fill: #ec2828
}

.social-networking-style-2 .pinterest_url .logo {
    fill: #bd081c;
    width: 30px;
    height: 30px;
    padding: 0
}

.social-networking-style-2 .snapchat_url .logo {
    fill: #FFFC00;
    width: 30px;
    height: 30px;
    padding: 0
}

.social-networking-style-2 .facebook_url .logo, .social-networking-style-2 .google_url .logo, .social-networking-style-2 .instagram_url .logo, .social-networking-style-2 .linkedin_url .logo, .social-networking-style-2 .pinterest_url .logo, .social-networking-style-2 .snapchat_url .logo, .social-networking-style-2 .twitter_url .logo, .social-networking-style-2 .youtube_url .logo {
    transition: 200ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 200ms;
    -webkit-transition-timing-function: ease-in-out
}

@media only screen and (max-width:768px) {
    .social-networking-style-2 {
        height: auto
    }

    .box p {
        display: none
    }
}

@media only screen and (max-width:500px) {
    .social-networking-style-2 p {
        display: none
    }
}

.two-columns .social-networking-style-2 li p {
    display: none
}

.three-columns .social-networking-style-2 .logo, .two-columns .social-networking-style-2 .logo {
    margin-bottom: 0
}

.three-columns .social-networking-style-2 li p {
    display: none
}

.social-networking-style-3 {
    width: 100%;
    margin: 20px 0;
    padding: 20px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.social-networking-style-3 li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 0
}

.social-networking-style-3 .box {
    width: 100px;
    height: 100px;
    background-color: #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.social-networking-style-3 .facebook_url .box:hover .logo, .social-networking-style-3 .google_url .box:hover .logo, .social-networking-style-3 .instagram_url .box:hover .logo, .social-networking-style-3 .linkedin_url .box:hover .logo, .social-networking-style-3 .pinterest_url .box:hover .logo, .social-networking-style-3 .snapchat_url .box:hover .logo, .social-networking-style-3 .twitter_url .box:hover .logo, .social-networking-style-3 .youtube_url .box:hover .logo {
    fill: #fff
}

.social-networking-style-3 .logo {
    fill: #000;
    width: 40px;
    height: 40px;
    padding: 0
}

.social-networking-style-3 .facebook_url .box:hover {
    background-color: #3a5897 !important
}

.social-networking-style-3 .twitter_url .box:hover {
    background-color: #1da0f2 !important
}

.social-networking-style-3 .google_url .box:hover {
    background-color: #dc4a38 !important
}

.social-networking-style-3 .linkedin_url .box:hover {
    background-color: #007bb6 !important
}

.social-networking-style-3 .instagram_url .box:hover {
    background-color: #375888 !important
}

.social-networking-style-3 .youtube_url .box:hover {
    background-color: #ec2828 !important
}

.social-networking-style-3 .pinterest_url .box:hover {
    background-color: #bd081c !important
}

.social-networking-style-3 .snapchat_url .box:hover {
    background-color: #FFFC00 !important
}

.social-networking-style-3 .facebook_url .box, .social-networking-style-3 .google_url .box, .social-networking-style-3 .instagram_url .box, .social-networking-style-3 .linkedin_url .box, .social-networking-style-3 .pinterest_url .box, .social-networking-style-3 .snapchat_url .box, .social-networking-style-3 .twitter_url .box, .social-networking-style-3 .youtube_url .box {
    transition: 300ms;
    transition-timing-function: ease-in-out;
    -webkit-transition: 300ms;
    -webkit-transition-timing-function: ease-in-out
}

@media only screen and (max-width:960px) {
    .social-networking-style-3 .box {
        width: 80px;
        height: 80px
    }

    .social-networking-style-3 .logo {
        width: 30px;
        height: 30px
    }
}

@media only screen and (max-width:768px) {
    .social-networking-style-3 .box {
        width: 50px;
        height: 50px
    }

    .social-networking-style-3 .logo {
        width: 25px;
        height: 25px
    }
}

@media only screen and (max-width:480px) {
    .social-networking-style-3 .box {
        width: 35px;
        height: 35px
    }

    .social-networking-style-3 .logo {
        width: 20px;
        height: 20px
    }
}

.three-columns .social-networking-style-3, .two-columns .social-networking-style-3 {
    padding: 0
}

.two-columns .social-networking-style-3 .box {
    width: 50px;
    height: 50px
}

.two-columns .social-networking-style-3 .logo {
    width: 25px;
    height: 25px
}

.three-columns .social-networking-style-3 .box {
    width: 36px;
    height: 36px
}

.three-columns .social-networking-style-3 .logo {
    width: 23px;
    height: 23px
}