@import url(https://fonts.googleapis.com/css?family=Staatliches);
@import url(https://fonts.googleapis.com/css?family=Rubik);
@import url(https://fonts.googleapis.com/css?family=Rubik:400,500);

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT
Copyright (c) 2015 Daniel Eden
*/

body {
    -webkit-backface-visibility: hidden
}

.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both
}

.animated.infinite {
    animation-iteration-count: infinite
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s
}

.animated.bounceIn,
.animated.bounceOut {
    -webkit-animation-duration: .75s;
    -moz-animation-duration: .75s;
    -o-animation-duration: .75s;
    animation-duration: .75s
}

.animated.flipOutX,
.animated.flipOutY {
    -webkit-animation-duration: .75s;
    -moz-animation-duration: .75s;
    -o-animation-duration: .75s;
    animation-duration: .75s
}

@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0)
    }
    40% {
        -webkit-transform: translateY(-30px)
    }
    60% {
        -webkit-transform: translateY(-15px)
    }
}

@-moz-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -moz-transform: translateY(0)
    }
    40% {
        -moz-transform: translateY(-30px)
    }
    60% {
        -moz-transform: translateY(-15px)
    }
}

@-o-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -o-transform: translateY(0)
    }
    40% {
        -o-transform: translateY(-30px)
    }
    60% {
        -o-transform: translateY(-15px)
    }
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0)
    }
    40% {
        transform: translateY(-30px)
    }
    60% {
        transform: translateY(-15px)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce
}

@-webkit-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

@-moz-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

@-o-keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

@keyframes flash {
    0%,
    50%,
    100% {
        opacity: 1
    }
    25%,
    75% {
        opacity: 0
    }
}

.flash {
    -webkit-animation-name: flash;
    -moz-animation-name: flash;
    -o-animation-name: flash;
    animation-name: flash
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1)
    }
    50% {
        -webkit-transform: scale(1.1)
    }
    100% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes pulse {
    0% {
        -moz-transform: scale(1)
    }
    50% {
        -moz-transform: scale(1.1)
    }
    100% {
        -moz-transform: scale(1)
    }
}

@-o-keyframes pulse {
    0% {
        -o-transform: scale(1)
    }
    50% {
        -o-transform: scale(1.1)
    }
    100% {
        -o-transform: scale(1)
    }
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }
    50% {
        transform: scale(1.1)
    }
    100% {
        transform: scale(1)
    }
}

.pulse {
    -webkit-animation-name: pulse;
    -moz-animation-name: pulse;
    -o-animation-name: pulse;
    animation-name: pulse
}

@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px)
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px)
    }
}

@-moz-keyframes shake {
    0%,
    100% {
        -moz-transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -moz-transform: translateX(-10px)
    }
    20%,
    40%,
    60%,
    80% {
        -moz-transform: translateX(10px)
    }
}

@-o-keyframes shake {
    0%,
    100% {
        -o-transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -o-transform: translateX(-10px)
    }
    20%,
    40%,
    60%,
    80% {
        -o-transform: translateX(10px)
    }
}

@keyframes shake {
    0%,
    100% {
        transform: translateX(0)
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translateX(-10px)
    }
    20%,
    40%,
    60%,
    80% {
        transform: translateX(10px)
    }
}

.shake {
    -webkit-animation-name: shake;
    -moz-animation-name: shake;
    -o-animation-name: shake;
    animation-name: shake
}

@-webkit-keyframes swing {
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transform-origin: top center
    }
    20% {
        -webkit-transform: rotate(15deg)
    }
    40% {
        -webkit-transform: rotate(-10deg)
    }
    60% {
        -webkit-transform: rotate(5deg)
    }
    80% {
        -webkit-transform: rotate(-5deg)
    }
    100% {
        -webkit-transform: rotate(0deg)
    }
}

@-moz-keyframes swing {
    20% {
        -moz-transform: rotate(15deg)
    }
    40% {
        -moz-transform: rotate(-10deg)
    }
    60% {
        -moz-transform: rotate(5deg)
    }
    80% {
        -moz-transform: rotate(-5deg)
    }
    100% {
        -moz-transform: rotate(0deg)
    }
}

@-o-keyframes swing {
    20% {
        -o-transform: rotate(15deg)
    }
    40% {
        -o-transform: rotate(-10deg)
    }
    60% {
        -o-transform: rotate(5deg)
    }
    80% {
        -o-transform: rotate(-5deg)
    }
    100% {
        -o-transform: rotate(0deg)
    }
}

@keyframes swing {
    20% {
        transform: rotate(15deg)
    }
    40% {
        transform: rotate(-10deg)
    }
    60% {
        transform: rotate(5deg)
    }
    80% {
        transform: rotate(-5deg)
    }
    100% {
        transform: rotate(0deg)
    }
}

.swing {
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -o-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    -moz-animation-name: swing;
    -o-animation-name: swing;
    animation-name: swing
}

@-webkit-keyframes wiggle {
    0% {
        -webkit-transform: skewX(9deg)
    }
    10% {
        -webkit-transform: skewX(-8deg)
    }
    20% {
        -webkit-transform: skewX(7deg)
    }
    30% {
        -webkit-transform: skewX(-6deg)
    }
    40% {
        -webkit-transform: skewX(5deg)
    }
    50% {
        -webkit-transform: skewX(-4deg)
    }
    60% {
        -webkit-transform: skewX(3deg)
    }
    70% {
        -webkit-transform: skewX(-2deg)
    }
    80% {
        -webkit-transform: skewX(1deg)
    }
    90% {
        -webkit-transform: skewX(0deg)
    }
    100% {
        -webkit-transform: skewX(0deg)
    }
}

@-moz-keyframes wiggle {
    0% {
        -moz-transform: skewX(9deg)
    }
    10% {
        -moz-transform: skewX(-8deg)
    }
    20% {
        -moz-transform: skewX(7deg)
    }
    30% {
        -moz-transform: skewX(-6deg)
    }
    40% {
        -moz-transform: skewX(5deg)
    }
    50% {
        -moz-transform: skewX(-4deg)
    }
    60% {
        -moz-transform: skewX(3deg)
    }
    70% {
        -moz-transform: skewX(-2deg)
    }
    80% {
        -moz-transform: skewX(1deg)
    }
    90% {
        -moz-transform: skewX(0deg)
    }
    100% {
        -moz-transform: skewX(0deg)
    }
}

@-o-keyframes wiggle {
    0% {
        -o-transform: skewX(9deg)
    }
    10% {
        -o-transform: skewX(-8deg)
    }
    20% {
        -o-transform: skewX(7deg)
    }
    30% {
        -o-transform: skewX(-6deg)
    }
    40% {
        -o-transform: skewX(5deg)
    }
    50% {
        -o-transform: skewX(-4deg)
    }
    60% {
        -o-transform: skewX(3deg)
    }
    70% {
        -o-transform: skewX(-2deg)
    }
    80% {
        -o-transform: skewX(1deg)
    }
    90% {
        -o-transform: skewX(0deg)
    }
    100% {
        -o-transform: skewX(0deg)
    }
}

@keyframes wiggle {
    0% {
        transform: skewX(9deg)
    }
    10% {
        transform: skewX(-8deg)
    }
    20% {
        transform: skewX(7deg)
    }
    30% {
        transform: skewX(-6deg)
    }
    40% {
        transform: skewX(5deg)
    }
    50% {
        transform: skewX(-4deg)
    }
    60% {
        transform: skewX(3deg)
    }
    70% {
        transform: skewX(-2deg)
    }
    80% {
        transform: skewX(1deg)
    }
    90% {
        transform: skewX(0deg)
    }
    100% {
        transform: skewX(0deg)
    }
}

.wiggle {
    -webkit-animation-name: wiggle;
    -moz-animation-name: wiggle;
    -o-animation-name: wiggle;
    animation-name: wiggle;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes wobble {
    0% {
        -webkit-transform: translateX(0%)
    }
    15% {
        -webkit-transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        -webkit-transform: translateX(20%) rotate(3deg)
    }
    45% {
        -webkit-transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        -webkit-transform: translateX(10%) rotate(2deg)
    }
    75% {
        -webkit-transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        -webkit-transform: translateX(0%)
    }
}

@-moz-keyframes wobble {
    0% {
        -moz-transform: translateX(0%)
    }
    15% {
        -moz-transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        -moz-transform: translateX(20%) rotate(3deg)
    }
    45% {
        -moz-transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        -moz-transform: translateX(10%) rotate(2deg)
    }
    75% {
        -moz-transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        -moz-transform: translateX(0%)
    }
}

@-o-keyframes wobble {
    0% {
        -o-transform: translateX(0%)
    }
    15% {
        -o-transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        -o-transform: translateX(20%) rotate(3deg)
    }
    45% {
        -o-transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        -o-transform: translateX(10%) rotate(2deg)
    }
    75% {
        -o-transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        -o-transform: translateX(0%)
    }
}

@keyframes wobble {
    0% {
        transform: translateX(0%)
    }
    15% {
        transform: translateX(-25%) rotate(-5deg)
    }
    30% {
        transform: translateX(20%) rotate(3deg)
    }
    45% {
        transform: translateX(-15%) rotate(-3deg)
    }
    60% {
        transform: translateX(10%) rotate(2deg)
    }
    75% {
        transform: translateX(-5%) rotate(-1deg)
    }
    100% {
        transform: translateX(0%)
    }
}

.wobble {
    -webkit-animation-name: wobble;
    -moz-animation-name: wobble;
    -o-animation-name: wobble;
    animation-name: wobble
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -webkit-transform: scale(1) rotate(0)
    }
}

@-moz-keyframes tada {
    0% {
        -moz-transform: scale(1)
    }
    10%,
    20% {
        -moz-transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -moz-transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -moz-transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -moz-transform: scale(1) rotate(0)
    }
}

@-o-keyframes tada {
    0% {
        -o-transform: scale(1)
    }
    10%,
    20% {
        -o-transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        -o-transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        -o-transform: scale(1.1) rotate(-3deg)
    }
    100% {
        -o-transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        transform: scale(1)
    }
    10%,
    20% {
        transform: scale(.9) rotate(-3deg)
    }
    30%,
    50%,
    70%,
    90% {
        transform: scale(1.1) rotate(3deg)
    }
    40%,
    60%,
    80% {
        transform: scale(1.1) rotate(-3deg)
    }
    100% {
        transform: scale(1) rotate(0)
    }
}

.tada {
    -webkit-animation-name: tada;
    -moz-animation-name: tada;
    -o-animation-name: tada;
    animation-name: tada
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.05)
    }
    70% {
        -webkit-transform: scale(.9)
    }
    100% {
        -webkit-transform: scale(1)
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.3)
    }
    50% {
        opacity: 1;
        -moz-transform: scale(1.05)
    }
    70% {
        -moz-transform: scale(.9)
    }
    100% {
        -moz-transform: scale(1)
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(.3)
    }
    50% {
        opacity: 1;
        -o-transform: scale(1.05)
    }
    70% {
        -o-transform: scale(.9)
    }
    100% {
        -o-transform: scale(1)
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3)
    }
    50% {
        opacity: 1;
        transform: scale(1.05)
    }
    70% {
        transform: scale(.9)
    }
    100% {
        transform: scale(1)
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(30px)
    }
    80% {
        -webkit-transform: translateY(-10px)
    }
    100% {
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes bounceInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(30px)
    }
    80% {
        -moz-transform: translateY(-10px)
    }
    100% {
        -moz-transform: translateY(0)
    }
}

@-o-keyframes bounceInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        -o-transform: translateY(30px)
    }
    80% {
        -o-transform: translateY(-10px)
    }
    100% {
        -o-transform: translateY(0)
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }
    60% {
        opacity: 1;
        transform: translateY(30px)
    }
    80% {
        transform: translateY(-10px)
    }
    100% {
        transform: translateY(0)
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    -moz-animation-name: bounceInDown;
    -o-animation-name: bounceInDown;
    animation-name: bounceInDown
}

@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(30px)
    }
    80% {
        -webkit-transform: translateX(-10px)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(30px)
    }
    80% {
        -moz-transform: translateX(-10px)
    }
    100% {
        -moz-transform: translateX(0)
    }
}

@-o-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        -o-transform: translateX(30px)
    }
    80% {
        -o-transform: translateX(-10px)
    }
    100% {
        -o-transform: translateX(0)
    }
}

@keyframes bounceInLeft {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }
    60% {
        opacity: 1;
        transform: translateX(30px)
    }
    80% {
        transform: translateX(-10px)
    }
    100% {
        transform: translateX(0)
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft
}

@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px)
    }
    80% {
        -webkit-transform: translateX(10px)
    }
    100% {
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes bounceInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateX(-30px)
    }
    80% {
        -moz-transform: translateX(10px)
    }
    100% {
        -moz-transform: translateX(0)
    }
}

@-o-keyframes bounceInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        -o-transform: translateX(-30px)
    }
    80% {
        -o-transform: translateX(10px)
    }
    100% {
        -o-transform: translateX(0)
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }
    60% {
        opacity: 1;
        transform: translateX(-30px)
    }
    80% {
        transform: translateX(10px)
    }
    100% {
        transform: translateX(0)
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight
}

@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px)
    }
    80% {
        -webkit-transform: translateY(10px)
    }
    100% {
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes bounceInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -moz-transform: translateY(-30px)
    }
    80% {
        -moz-transform: translateY(10px)
    }
    100% {
        -moz-transform: translateY(0)
    }
}

@-o-keyframes bounceInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        -o-transform: translateY(-30px)
    }
    80% {
        -o-transform: translateY(10px)
    }
    100% {
        -o-transform: translateY(0)
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px)
    }
    60% {
        opacity: 1;
        transform: translateY(-30px)
    }
    80% {
        transform: translateY(10px)
    }
    100% {
        transform: translateY(0)
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    -moz-animation-name: bounceInUp;
    -o-animation-name: bounceInUp;
    animation-name: bounceInUp
}

@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1)
    }
    25% {
        -webkit-transform: scale(.95)
    }
    50% {
        opacity: 1;
        -webkit-transform: scale(1.1)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(.3)
    }
}

@-moz-keyframes bounceOut {
    0% {
        -moz-transform: scale(1)
    }
    25% {
        -moz-transform: scale(.95)
    }
    50% {
        opacity: 1;
        -moz-transform: scale(1.1)
    }
    100% {
        opacity: 0;
        -moz-transform: scale(.3)
    }
}

@-o-keyframes bounceOut {
    0% {
        -o-transform: scale(1)
    }
    25% {
        -o-transform: scale(.95)
    }
    50% {
        opacity: 1;
        -o-transform: scale(1.1)
    }
    100% {
        opacity: 0;
        -o-transform: scale(.3)
    }
}

@keyframes bounceOut {
    0% {
        transform: scale(1)
    }
    25% {
        transform: scale(.95)
    }
    50% {
        opacity: 1;
        transform: scale(1.1)
    }
    100% {
        opacity: 0;
        transform: scale(.3)
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    -moz-animation-name: bounceOut;
    -o-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px)
    }
}

@-moz-keyframes bounceOutDown {
    0% {
        -moz-transform: translateY(0)
    }
    20% {
        opacity: 1;
        -moz-transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(2000px)
    }
}

@-o-keyframes bounceOutDown {
    0% {
        -o-transform: translateY(0)
    }
    20% {
        opacity: 1;
        -o-transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        -o-transform: translateY(2000px)
    }
}

@keyframes bounceOutDown {
    0% {
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        transform: translateY(-20px)
    }
    100% {
        opacity: 0;
        transform: translateY(2000px)
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    -moz-animation-name: bounceOutDown;
    -o-animation-name: bounceOutDown;
    animation-name: bounceOutDown
}

@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px)
    }
}

@-moz-keyframes bounceOutLeft {
    0% {
        -moz-transform: translateX(0)
    }
    20% {
        opacity: 1;
        -moz-transform: translateX(20px)
    }
    100% {
        opacity: 0;
        -moz-transform: translateX(-2000px)
    }
}

@-o-keyframes bounceOutLeft {
    0% {
        -o-transform: translateX(0)
    }
    20% {
        opacity: 1;
        -o-transform: translateX(20px)
    }
    100% {
        opacity: 0;
        -o-transform: translateX(-2000px)
    }
}

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        transform: translateX(20px)
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px)
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    -moz-animation-name: bounceOutLeft;
    -o-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft
}

@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px)
    }
}

@-moz-keyframes bounceOutRight {
    0% {
        -moz-transform: translateX(0)
    }
    20% {
        opacity: 1;
        -moz-transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        -moz-transform: translateX(2000px)
    }
}

@-o-keyframes bounceOutRight {
    0% {
        -o-transform: translateX(0)
    }
    20% {
        opacity: 1;
        -o-transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        -o-transform: translateX(2000px)
    }
}

@keyframes bounceOutRight {
    0% {
        transform: translateX(0)
    }
    20% {
        opacity: 1;
        transform: translateX(-20px)
    }
    100% {
        opacity: 0;
        transform: translateX(2000px)
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    -moz-animation-name: bounceOutRight;
    -o-animation-name: bounceOutRight;
    animation-name: bounceOutRight
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0)
    }
    20% {
        opacity: 1;
        -webkit-transform: translateY(20px)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px)
    }
}

@-moz-keyframes bounceOutUp {
    0% {
        -moz-transform: translateY(0)
    }
    20% {
        opacity: 1;
        -moz-transform: translateY(20px)
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(-2000px)
    }
}

@-o-keyframes bounceOutUp {
    0% {
        -o-transform: translateY(0)
    }
    20% {
        opacity: 1;
        -o-transform: translateY(20px)
    }
    100% {
        opacity: 0;
        -o-transform: translateY(-2000px)
    }
}

@keyframes bounceOutUp {
    0% {
        transform: translateY(0)
    }
    20% {
        opacity: 1;
        transform: translateY(20px)
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    -moz-animation-name: bounceOutUp;
    -o-animation-name: bounceOutUp;
    animation-name: bounceOutUp
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    -moz-animation-name: fadeInDownBig;
    -o-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    -moz-animation-name: fadeInLeftBig;
    -o-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(20px)
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
}

@-moz-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
}

@-o-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0)
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px)
    }
    100% {
        opacity: 1;
        transform: translateX(0)
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    -moz-animation-name: fadeInRightBig;
    -o-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
}

@-moz-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
}

@-o-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0)
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px)
    }
    100% {
        opacity: 1;
        transform: translateY(0)
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    -moz-animation-name: fadeInUpBig;
    -o-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@-moz-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@-o-keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    -moz-animation-name: fadeOut;
    -o-animation-name: fadeOut;
    animation-name: fadeOut
}

@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(20px)
    }
}

@-moz-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(20px)
    }
}

@-o-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -o-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -o-transform: translateY(20px)
    }
}

@keyframes fadeOutDown {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        transform: translateY(20px)
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    -moz-animation-name: fadeOutDown;
    -o-animation-name: fadeOutDown;
    animation-name: fadeOutDown
}

@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(2000px)
    }
}

@-moz-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(2000px)
    }
}

@-o-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -o-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -o-transform: translateY(2000px)
    }
}

@keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        transform: translateY(2000px)
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    -moz-animation-name: fadeOutDownBig;
    -o-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig
}

@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-20px)
    }
}

@-moz-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -moz-transform: translateX(-20px)
    }
}

@-o-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -o-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -o-transform: translateX(-20px)
    }
}

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        transform: translateX(-20px)
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    -moz-animation-name: fadeOutLeft;
    -o-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft
}

@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(-2000px)
    }
}

@-moz-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -moz-transform: translateX(-2000px)
    }
}

@-o-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -o-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -o-transform: translateX(-2000px)
    }
}

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        transform: translateX(-2000px)
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    -moz-animation-name: fadeOutLeftBig;
    -o-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig
}

@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(20px)
    }
}

@-moz-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -moz-transform: translateX(20px)
    }
}

@-o-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -o-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -o-transform: translateX(20px)
    }
}

@keyframes fadeOutRight {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        transform: translateX(20px)
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    -moz-animation-name: fadeOutRight;
    -o-animation-name: fadeOutRight;
    animation-name: fadeOutRight
}

@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(2000px)
    }
}

@-moz-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -moz-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -moz-transform: translateX(2000px)
    }
}

@-o-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -o-transform: translateX(0)
    }
    100% {
        opacity: 0;
        -o-transform: translateX(2000px)
    }
}

@keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        transform: translateX(0)
    }
    100% {
        opacity: 0;
        transform: translateX(2000px)
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    -moz-animation-name: fadeOutRightBig;
    -o-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig
}

@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-20px)
    }
}

@-moz-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(-20px)
    }
}

@-o-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -o-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -o-transform: translateY(-20px)
    }
}

@keyframes fadeOutUp {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        transform: translateY(-20px)
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    -moz-animation-name: fadeOutUp;
    -o-animation-name: fadeOutUp;
    animation-name: fadeOutUp
}

@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateY(-2000px)
    }
}

@-moz-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -moz-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -moz-transform: translateY(-2000px)
    }
}

@-o-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -o-transform: translateY(0)
    }
    100% {
        opacity: 0;
        -o-transform: translateY(-2000px)
    }
}

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0)
    }
    100% {
        opacity: 0;
        transform: translateY(-2000px)
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    -moz-animation-name: fadeOutUpBig;
    -o-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig
}

@-webkit-keyframes flip {
    0% {
        -webkit-transform: perspective(400px) rotateY(0);
        -webkit-animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -webkit-animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -webkit-animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) rotateY(360deg) scale(.95);
        -webkit-animation-timing-function: ease-in
    }
    100% {
        -webkit-transform: perspective(400px) scale(1);
        -webkit-animation-timing-function: ease-in
    }
}

@-moz-keyframes flip {
    0% {
        -moz-transform: perspective(400px) rotateY(0);
        -moz-animation-timing-function: ease-out
    }
    40% {
        -moz-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -moz-animation-timing-function: ease-out
    }
    50% {
        -moz-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -moz-animation-timing-function: ease-in
    }
    80% {
        -moz-transform: perspective(400px) rotateY(360deg) scale(.95);
        -moz-animation-timing-function: ease-in
    }
    100% {
        -moz-transform: perspective(400px) scale(1);
        -moz-animation-timing-function: ease-in
    }
}

@-o-keyframes flip {
    0% {
        -o-transform: perspective(400px) rotateY(0);
        -o-animation-timing-function: ease-out
    }
    40% {
        -o-transform: perspective(400px) translateZ(150px) rotateY(170deg);
        -o-animation-timing-function: ease-out
    }
    50% {
        -o-transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        -o-animation-timing-function: ease-in
    }
    80% {
        -o-transform: perspective(400px) rotateY(360deg) scale(.95);
        -o-animation-timing-function: ease-in
    }
    100% {
        -o-transform: perspective(400px) scale(1);
        -o-animation-timing-function: ease-in
    }
}

@keyframes flip {
    0% {
        transform: perspective(400px) rotateY(0);
        animation-timing-function: ease-out
    }
    40% {
        transform: perspective(400px) translateZ(150px) rotateY(170deg);
        animation-timing-function: ease-out
    }
    50% {
        transform: perspective(400px) translateZ(150px) rotateY(190deg) scale(1);
        animation-timing-function: ease-in
    }
    80% {
        transform: perspective(400px) rotateY(360deg) scale(.95);
        animation-timing-function: ease-in
    }
    100% {
        transform: perspective(400px) scale(1);
        animation-timing-function: ease-in
    }
}

.flip {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flip;
    -moz-animation-name: flip;
    -o-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateX(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@-moz-keyframes flipInX {
    0% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        -moz-transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        -moz-transform: perspective(400px) rotateX(10deg)
    }
    100% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@-o-keyframes flipInX {
    0% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        -o-transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        -o-transform: perspective(400px) rotateX(10deg)
    }
    100% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

@keyframes flipInX {
    0% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateX(-10deg)
    }
    70% {
        transform: perspective(400px) rotateX(10deg)
    }
    100% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
}

.flipInX {
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    -moz-animation-name: flipInX;
    -o-animation-name: flipInX;
    animation-name: flipInX
}

@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        -webkit-transform: perspective(400px) rotateY(10deg)
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

@-moz-keyframes flipInY {
    0% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        -moz-transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        -moz-transform: perspective(400px) rotateY(10deg)
    }
    100% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

@-o-keyframes flipInY {
    0% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        -o-transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        -o-transform: perspective(400px) rotateY(10deg)
    }
    100% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

@keyframes flipInY {
    0% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
    40% {
        transform: perspective(400px) rotateY(-10deg)
    }
    70% {
        transform: perspective(400px) rotateY(10deg)
    }
    100% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
}

.flipInY {
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    -moz-animation-name: flipInY;
    -o-animation-name: flipInY;
    animation-name: flipInY
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@-moz-keyframes flipOutX {
    0% {
        -moz-transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
    100% {
        -moz-transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@-o-keyframes flipOutX {
    0% {
        -o-transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
    100% {
        -o-transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    0% {
        transform: perspective(400px) rotateX(0deg);
        opacity: 1
    }
    100% {
        transform: perspective(400px) rotateX(90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-name: flipOutX;
    -moz-animation-name: flipOutX;
    -o-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@-moz-keyframes flipOutY {
    0% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
    100% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@-o-keyframes flipOutY {
    0% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
    100% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1
    }
    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -moz-backface-visibility: visible !important;
    -o-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    -moz-animation-name: flipOutY;
    -o-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    0% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        -webkit-transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

@-moz-keyframes lightSpeedIn {
    0% {
        -moz-transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        -moz-transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        -moz-transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }
    100% {
        -moz-transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

@-o-keyframes lightSpeedIn {
    0% {
        -o-transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        -o-transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        -o-transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }
    100% {
        -o-transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

@keyframes lightSpeedIn {
    0% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
    60% {
        transform: translateX(-20%) skewX(30deg);
        opacity: 1
    }
    80% {
        transform: translateX(0%) skewX(-15deg);
        opacity: 1
    }
    100% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
}

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    -moz-animation-name: lightSpeedIn;
    -o-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;
    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    animation-timing-function: ease-out
}

@-webkit-keyframes lightSpeedOut {
    0% {
        -webkit-transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
    100% {
        -webkit-transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

@-moz-keyframes lightSpeedOut {
    0% {
        -moz-transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
    100% {
        -moz-transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

@-o-keyframes lightSpeedOut {
    0% {
        -o-transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
    100% {
        -o-transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

@keyframes lightSpeedOut {
    0% {
        transform: translateX(0%) skewX(0deg);
        opacity: 1
    }
    100% {
        transform: translateX(100%) skewX(-30deg);
        opacity: 0
    }
}

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    -moz-animation-name: lightSpeedOut;
    -o-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;
    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in
}

@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateIn {
    0% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(-200deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateIn {
    0% {
        -o-transform-origin: center center;
        -o-transform: rotate(-200deg);
        opacity: 0
    }
    100% {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateIn {
    0% {
        transform-origin: center center;
        transform: rotate(-200deg);
        opacity: 0
    }
    100% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    -moz-animation-name: rotateIn;
    -o-animation-name: rotateIn;
    animation-name: rotateIn
}

@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateInDownLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateInDownLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    -moz-animation-name: rotateInDownLeft;
    -o-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft
}

@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateInDownRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateInDownRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    -moz-animation-name: rotateInDownRight;
    -o-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight
}

@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateInUpLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateInUpLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0
    }
    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    -moz-animation-name: rotateInUpLeft;
    -o-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft
}

@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
}

@-moz-keyframes rotateInUpRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
}

@-o-keyframes rotateInUpRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    -moz-animation-name: rotateInUpRight;
    -o-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight
}

@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(200deg);
        opacity: 0
    }
}

@-moz-keyframes rotateOut {
    0% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(0);
        opacity: 1
    }
    100% {
        -moz-transform-origin: center center;
        -moz-transform: rotate(200deg);
        opacity: 0
    }
}

@-o-keyframes rotateOut {
    0% {
        -o-transform-origin: center center;
        -o-transform: rotate(0);
        opacity: 1
    }
    100% {
        -o-transform-origin: center center;
        -o-transform: rotate(200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    0% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1
    }
    100% {
        transform-origin: center center;
        transform: rotate(200deg);
        opacity: 0
    }
}

.rotateOut {
    -webkit-animation-name: rotateOut;
    -moz-animation-name: rotateOut;
    -o-animation-name: rotateOut;
    animation-name: rotateOut
}

@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0
    }
}

@-moz-keyframes rotateOutDownLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(90deg);
        opacity: 0
    }
}

@-o-keyframes rotateOutDownLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1
    }
    100% {
        transform-origin: left bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    -moz-animation-name: rotateOutDownLeft;
    -o-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft
}

@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0
    }
}

@-moz-keyframes rotateOutDownRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0
    }
}

@-o-keyframes rotateOutDownRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutDownRight {
    -webkit-animation-name: rotateOutDownRight;
    -moz-animation-name: rotateOutDownRight;
    -o-animation-name: rotateOutDownRight;
    animation-name: rotateOutDownRight
}

@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0
    }
}

@-moz-keyframes rotateOutUpLeft {
    0% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(-90deg);
        opacity: 0
    }
}

@-o-keyframes rotateOutUpLeft {
    0% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(-90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    0% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1
    }
    100% {
        -transform-origin: left bottom;
        -transform: rotate(-90deg);
        opacity: 0
    }
}

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    -moz-animation-name: rotateOutUpLeft;
    -o-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft
}

@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1
    }
    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0
    }
}

@-moz-keyframes rotateOutUpRight {
    0% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1
    }
    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(90deg);
        opacity: 0
    }
}

@-o-keyframes rotateOutUpRight {
    0% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1
    }
    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    0% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1
    }
    100% {
        transform-origin: right bottom;
        transform: rotate(90deg);
        opacity: 0
    }
}

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    -moz-animation-name: rotateOutUpRight;
    -o-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInDown {
    0% {
        transform: translate3d(0, -100%, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

.slideInDown {
    -webkit-animation-name: slideInDown;
    -moz-animation-name: slideInDown;
    -o-animation-name: slideInDown;
    animation-name: slideInDown
}

@-webkit-keyframes slideInLeft {
    0% {
        -webkit-transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInLeft {
    0% {
        transform: translate3d(-100%, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    -moz-animation-name: slideInLeft;
    -o-animation-name: slideInLeft;
    animation-name: slideInLeft
}

@-webkit-keyframes slideInRight {
    0% {
        -webkit-transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInRight {
    0% {
        transform: translate3d(100%, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

.slideInRight {
    -webkit-animation-name: slideInRight;
    -moz-animation-name: slideInRight;
    -o-animation-name: slideInRight;
    animation-name: slideInRight
}

@-webkit-keyframes slideInUp {
    0% {
        -webkit-transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(0, 0, 0)
    }
}

@keyframes slideInUp {
    0% {
        transform: translate3d(0, 100%, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(0, 0, 0)
    }
}

.slideInUp {
    -webkit-animation-name: slideInUp;
    -moz-animation-name: slideInUp;
    -o-animation-name: slideInUp;
    animation-name: slideInUp
}

@-webkit-keyframes slideOutDown {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(0, 100%, 0)
    }
}

@keyframes slideOutDown {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(0, 100%, 0)
    }
}

.slideOutDown {
    -webkit-animation-name: slideOutDown;
    -moz-animation-name: slideOutDown;
    -o-animation-name: slideOutDown;
    animation-name: slideOutDown
}

@-webkit-keyframes slideOutLeft {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(-100%, 0, 0)
    }
}

@keyframes slideOutLeft {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(-100%, 0, 0)
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    -moz-animation-name: slideOutLeft;
    -o-animation-name: slideOutLeft;
    animation-name: slideOutLeft
}

@-webkit-keyframes slideOutRight {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(100%, 0, 0)
    }
}

@keyframes slideOutRight {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(100%, 0, 0)
    }
}

.slideOutRight {
    -webkit-animation-name: slideOutRight;
    -moz-animation-name: slideOutRight;
    -o-animation-name: slideOutRight;
    animation-name: slideOutRight
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        -webkit-transform: translate3d(0, -100%, 0)
    }
}

@keyframes slideOutUp {
    0% {
        transform: translate3d(0, 0, 0);
        visibility: visible
    }
    100% {
        transform: translate3d(0, -100%, 0)
    }
}

.slideOutUp {
    -webkit-animation-name: slideOutUp;
    -moz-animation-name: slideOutUp;
    -o-animation-name: slideOutUp;
    animation-name: slideOutUp
}

@-webkit-keyframes hinge {
    0% {
        -webkit-transform: rotate(0);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -webkit-transform: rotate(80deg);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out
    }
    40% {
        -webkit-transform: rotate(60deg);
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out
    }
    80% {
        -webkit-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -webkit-transform-origin: top left;
        -webkit-animation-timing-function: ease-in-out
    }
    100% {
        -webkit-transform: translateY(700px);
        opacity: 0
    }
}

@-moz-keyframes hinge {
    0% {
        -moz-transform: rotate(0);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -moz-transform: rotate(80deg);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out
    }
    40% {
        -moz-transform: rotate(60deg);
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out
    }
    80% {
        -moz-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -moz-transform-origin: top left;
        -moz-animation-timing-function: ease-in-out
    }
    100% {
        -moz-transform: translateY(700px);
        opacity: 0
    }
}

@-o-keyframes hinge {
    0% {
        -o-transform: rotate(0);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out
    }
    20%,
    60% {
        -o-transform: rotate(80deg);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out
    }
    40% {
        -o-transform: rotate(60deg);
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out
    }
    80% {
        -o-transform: rotate(60deg) translateY(0);
        opacity: 1;
        -o-transform-origin: top left;
        -o-animation-timing-function: ease-in-out
    }
    100% {
        -o-transform: translateY(700px);
        opacity: 0
    }
}

@keyframes hinge {
    0% {
        transform: rotate(0);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    20%,
    60% {
        transform: rotate(80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    40% {
        transform: rotate(60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    80% {
        transform: rotate(60deg) translateY(0);
        opacity: 1;
        transform-origin: top left;
        animation-timing-function: ease-in-out
    }
    100% {
        transform: translateY(700px);
        opacity: 0
    }
}

.hinge {
    -webkit-animation-name: hinge;
    -moz-animation-name: hinge;
    -o-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes rollIn {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%) rotate(-120deg)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg)
    }
}

@-moz-keyframes rollIn {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100%) rotate(-120deg)
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0px) rotate(0deg)
    }
}

@-o-keyframes rollIn {
    0% {
        opacity: 0;
        -o-transform: translateX(-100%) rotate(-120deg)
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0px) rotate(0deg)
    }
}

@keyframes rollIn {
    0% {
        opacity: 0;
        transform: translateX(-100%) rotate(-120deg)
    }
    100% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg)
    }
}

.rollIn {
    -webkit-animation-name: rollIn;
    -moz-animation-name: rollIn;
    -o-animation-name: rollIn;
    animation-name: rollIn
}

@-webkit-keyframes rollOut {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0px) rotate(0deg)
    }
    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg)
    }
}

@-moz-keyframes rollOut {
    0% {
        opacity: 1;
        -moz-transform: translateX(0px) rotate(0deg)
    }
    100% {
        opacity: 0;
        -moz-transform: translateX(100%) rotate(120deg)
    }
}

@-o-keyframes rollOut {
    0% {
        opacity: 1;
        -o-transform: translateX(0px) rotate(0deg)
    }
    100% {
        opacity: 0;
        -o-transform: translateX(100%) rotate(120deg)
    }
}

@keyframes rollOut {
    0% {
        opacity: 1;
        transform: translateX(0px) rotate(0deg)
    }
    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg)
    }
}

.rollOut {
    -webkit-animation-name: rollOut;
    -moz-animation-name: rollOut;
    -o-animation-name: rollOut;
    animation-name: rollOut
}

@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

@-moz-keyframes zoomIn {
    0% {
        opacity: 0;
        -moz-transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

@-o-keyframes zoomIn {
    0% {
        opacity: 0;
        -o-transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    50% {
        opacity: 1
    }
}

.zoomIn {
    -webkit-animation-name: zoomIn;
    -moz-animation-name: zoomIn;
    -o-animation-name: zoomIn;
    animation-name: zoomIn
}

@-webkit-keyframes zoomInDown {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-moz-keyframes zoomInDown {
    0% {
        opacity: 0;
        -moz-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -moz-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -moz-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -moz-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-o-keyframes zoomInDown {
    0% {
        opacity: 0;
        -o-transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        -o-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -o-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -o-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInDown {
    -webkit-animation-name: zoomInDown;
    -moz-animation-name: zoomInDown;
    -o-animation-name: zoomInDown;
    animation-name: zoomInDown
}

@-webkit-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-moz-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -moz-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -moz-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -moz-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -moz-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-o-keyframes zoomInLeft {
    0% {
        opacity: 0;
        -o-transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        -o-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -o-transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        -o-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInLeft {
    -webkit-animation-name: zoomInLeft;
    -moz-animation-name: zoomInLeft;
    -o-animation-name: zoomInLeft;
    animation-name: zoomInLeft
}

@-webkit-keyframes zoomInRight {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-moz-keyframes zoomInRight {
    0% {
        opacity: 0;
        -moz-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -moz-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -moz-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -moz-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-o-keyframes zoomInRight {
    0% {
        opacity: 0;
        -o-transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        -o-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -o-transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        -o-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInRight {
    -webkit-animation-name: zoomInRight;
    -moz-animation-name: zoomInRight;
    -o-animation-name: zoomInRight;
    animation-name: zoomInRight
}

@-webkit-keyframes zoomInUp {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-moz-keyframes zoomInUp {
    0% {
        opacity: 0;
        -moz-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -moz-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -moz-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -moz-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-o-keyframes zoomInUp {
    0% {
        opacity: 0;
        -o-transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        -o-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        -o-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -o-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    60% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomInUp {
    -webkit-animation-name: zoomInUp;
    -moz-animation-name: zoomInUp;
    -o-animation-name: zoomInUp;
    animation-name: zoomInUp
}

@-webkit-keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3)
    }
    100% {
        opacity: 0
    }
}

@-moz-keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -moz-transform: scale3d(.3, .3, .3)
    }
    100% {
        opacity: 0
    }
}

@-o-keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        -o-transform: scale3d(.3, .3, .3)
    }
    100% {
        opacity: 0
    }
}

@keyframes zoomOut {
    0% {
        opacity: 1
    }
    50% {
        opacity: 0;
        transform: scale3d(.3, .3, .3)
    }
    100% {
        opacity: 0
    }
}

.zoomOut {
    -webkit-animation-name: zoomOut;
    -moz-animation-name: zoomOut;
    -o-animation-name: zoomOut;
    animation-name: zoomOut
}

@-webkit-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -webkit-transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-moz-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -moz-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -moz-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    100% {
        opacity: 0;
        -moz-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -moz-transform-origin: center bottom;
        -moz-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-o-keyframes zoomOutDown {
    40% {
        opacity: 1;
        -o-transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        -o-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    100% {
        opacity: 0;
        -o-transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        -o-transform-origin: center bottom;
        -o-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    100% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutDown {
    -webkit-animation-name: zoomOutDown;
    -moz-animation-name: zoomOutDown;
    -o-animation-name: zoomOutDown;
    animation-name: zoomOutDown
}

@-webkit-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1) translate3d(-2000px, 0, 0);
        -webkit-transform-origin: left center
    }
}

@-moz-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -moz-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    100% {
        opacity: 0;
        -moz-transform: scale3d(.1) translate3d(-2000px, 0, 0);
        -moz-transform-origin: left center
    }
}

@-o-keyframes zoomOutLeft {
    40% {
        opacity: 1;
        -o-transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    100% {
        opacity: 0;
        -o-transform: scale3d(.1) translate3d(-2000px, 0, 0);
        -o-transform-origin: left center
    }
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(42px, 0, 0)
    }
    100% {
        opacity: 0;
        transform: scale3d(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center
    }
}

.zoomOutLeft {
    -webkit-animation-name: zoomOutLeft;
    -moz-animation-name: zoomOutLeft;
    -o-animation-name: zoomOutLeft;
    animation-name: zoomOutLeft
}

@-webkit-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1) translate3d(2000px, 0, 0);
        -webkit-transform-origin: right center
    }
}

@-moz-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -moz-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    100% {
        opacity: 0;
        -moz-transform: scale3d(.1) translate3d(2000px, 0, 0);
        -moz-transform-origin: right center
    }
}

@-o-keyframes zoomOutRight {
    40% {
        opacity: 1;
        -o-transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    100% {
        opacity: 0;
        -o-transform: scale3d(.1) translate3d(2000px, 0, 0);
        -o-transform-origin: right center
    }
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(-42px, 0, 0)
    }
    100% {
        opacity: 0;
        transform: scale3d(.1) translate3d(2000px, 0, 0);
        transform-origin: right center
    }
}

.zoomOutRight {
    -webkit-animation-name: zoomOutRight;
    -moz-animation-name: zoomOutRight;
    -o-animation-name: zoomOutRight;
    animation-name: zoomOutRight
}

@-webkit-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -webkit-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -webkit-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    100% {
        opacity: 0;
        -webkit-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -webkit-transform-origin: center bottom;
        -webkit-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-moz-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -moz-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -moz-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    100% {
        opacity: 0;
        -moz-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -moz-transform-origin: center bottom;
        -moz-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@-o-keyframes zoomOutUp {
    40% {
        opacity: 1;
        -o-transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        -o-animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    100% {
        opacity: 0;
        -o-transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        -o-transform-origin: center bottom;
        -o-animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(.475, .475, .475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(.55, .055, .675, .19)
    }
    100% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(.175, .885, .32, 1)
    }
}

.zoomOutUp {
    -webkit-animation-name: zoomOutUp;
    -moz-animation-name: zoomOutUp;
    -o-animation-name: zoomOutUp;
    animation-name: zoomOutUp
}

a.gflag {
    font-size: 24px;
    padding: 1px 0;
    background-repeat: no-repeat;
    background-image: url(../images/24.png)
}

a.gflag img {
    border: 0;
    height: 24px;
    display: inline
}

a.gflag:hover {
    background-image: url(../images/24a.png)
}

img.gstats {
    display: none
}

a.alt_flag {
    background-image: url(../images/alt_flags.png)
}

a.alt_flag:hover {
    background-image: url(../images/alt_flagsa.png)
}

a.us_flag {
    background-position: 0 -100px
}

a.br_flag {
    background-position: -100px -100px
}

a.mx_flag {
    background-position: -200px -100px
}

a.glink {
    text-decoration: none
}

a.glink span {
    margin-right: 5px;
    font-size: 15px;
    vertical-align: middle
}

a.glink img {
    vertical-align: middle;
    display: inline;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: .8
}

a.glink:hover img {
    opacity: 1
}

.wp-block-audio figcaption {
    margin-top: .5em;
    margin-bottom: 1em;
    color: #555d66;
    text-align: center;
    font-size: 13px
}

.wp-block-audio audio {
    width: 100%;
    min-width: 300px
}

.editor-block-list__layout .reusable-block-edit-panel {
    align-items: center;
    background: #f8f9f9;
    color: #555d66;
    display: flex;
    flex-wrap: wrap;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 13px;
    position: relative;
    top: -14px;
    margin: 0 -14px;
    padding: 8px 14px;
    position: relative;
    z-index: 7
}

.editor-block-list__layout .editor-block-list__layout .reusable-block-edit-panel {
    margin: 0 -14px;
    padding: 8px 14px
}

.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__spinner {
    margin: 0 5px
}

.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__info {
    margin-right: auto
}

.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__label {
    margin-right: 8px;
    white-space: nowrap;
    font-weight: 600
}

.editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
    flex: 1 1 100%;
    font-size: 14px;
    height: 30px;
    margin: 4px 0 8px
}

.editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
    flex-shrink: 0
}

@media (min-width:960px) {
    .editor-block-list__layout .reusable-block-edit-panel {
        flex-wrap: nowrap
    }
    .editor-block-list__layout .reusable-block-edit-panel .reusable-block-edit-panel__title {
        margin: 0
    }
    .editor-block-list__layout .reusable-block-edit-panel .components-button.reusable-block-edit-panel__button {
        margin: 0 0 0 5px
    }
}

.editor-block-list__layout .reusable-block-indicator {
    background: #fff;
    border-left: 1px dashed #e2e4e7;
    color: #555d66;
    border-bottom: 1px dashed #e2e4e7;
    top: -14px;
    height: 30px;
    padding: 4px;
    position: absolute;
    z-index: 1;
    width: 30px;
    right: -14px
}

.wp-block-button {
    color: #fff;
    margin-bottom: 1.5em
}

.wp-block-button.aligncenter {
    text-align: center
}

.wp-block-button.alignright {
    text-align: right
}

.wp-block-button__link {
    background-color: #32373c;
    border: none;
    border-radius: 28px;
    box-shadow: none;
    color: inherit;
    cursor: pointer;
    display: inline-block;
    font-size: 18px;
    margin: 0;
    padding: 12px 24px;
    text-align: center;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: break-word
}

.wp-block-button__link:active,
.wp-block-button__link:focus,
.wp-block-button__link:hover {
    color: inherit
}

.is-style-squared .wp-block-button__link {
    border-radius: 0
}

.is-style-outline {
    color: #32373c
}

.is-style-outline .wp-block-button__link {
    background: 0 0;
    border: 2px solid currentcolor
}

.wp-block-categories.alignleft {
    margin-right: 2em
}

.wp-block-categories.alignright {
    margin-left: 2em
}

.wp-block-columns {
    display: flex;
    flex-wrap: wrap
}

@media (min-width:782px) {
    .wp-block-columns {
        flex-wrap: nowrap
    }
}

.wp-block-column {
    flex: 1;
    margin-bottom: 1em;
    flex-basis: 100%;
    min-width: 0;
    word-break: break-word;
    overflow-wrap: break-word
}

@media (min-width:600px) {
    .wp-block-column {
        flex-basis: 50%;
        flex-grow: 0
    }
    .w50 {
        width: 50%;
    }
}

@media (min-width:600px) {
    .wp-block-column:nth-child(odd) {
        margin-right: 32px
    }
    .wp-block-column:nth-child(even) {
        margin-left: 32px
    }
    .wp-block-column:not(:first-child) {
        margin-left: 32px
    }
    .wp-block-column:not(:last-child) {
        margin-right: 32px
    }
}

.wp-block-cover,
.wp-block-cover-image {
    position: relative;
    background-color: #000;
    background-size: cover;
    background-position: center center;
    min-height: 430px;
    width: 100%;
    margin: 0 0 1.5em 0;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden
}

.wp-block-cover-image.has-left-content,
.wp-block-cover.has-left-content {
    justify-content: flex-start
}

.wp-block-cover-image.has-left-content .wp-block-cover-image-text,
.wp-block-cover-image.has-left-content .wp-block-cover-text,
.wp-block-cover-image.has-left-content h2,
.wp-block-cover.has-left-content .wp-block-cover-image-text,
.wp-block-cover.has-left-content .wp-block-cover-text,
.wp-block-cover.has-left-content h2 {
    margin-left: 0;
    text-align: left
}

.wp-block-cover-image.has-right-content,
.wp-block-cover.has-right-content {
    justify-content: flex-end
}

.wp-block-cover-image.has-right-content .wp-block-cover-image-text,
.wp-block-cover-image.has-right-content .wp-block-cover-text,
.wp-block-cover-image.has-right-content h2,
.wp-block-cover.has-right-content .wp-block-cover-image-text,
.wp-block-cover.has-right-content .wp-block-cover-text,
.wp-block-cover.has-right-content h2 {
    margin-right: 0;
    text-align: right
}

.wp-block-cover .wp-block-cover-image-text,
.wp-block-cover .wp-block-cover-text,
.wp-block-cover h2,
.wp-block-cover-image .wp-block-cover-image-text,
.wp-block-cover-image .wp-block-cover-text,
.wp-block-cover-image h2 {
    color: #fff;
    font-size: 2em;
    line-height: 1.25;
    z-index: 1;
    margin-bottom: 0;
    max-width: 610px;
    padding: 14px;
    text-align: center
}

.wp-block-cover .wp-block-cover-image-text a,
.wp-block-cover .wp-block-cover-image-text a:active,
.wp-block-cover .wp-block-cover-image-text a:focus,
.wp-block-cover .wp-block-cover-image-text a:hover,
.wp-block-cover .wp-block-cover-text a,
.wp-block-cover .wp-block-cover-text a:active,
.wp-block-cover .wp-block-cover-text a:focus,
.wp-block-cover .wp-block-cover-text a:hover,
.wp-block-cover h2 a,
.wp-block-cover h2 a:active,
.wp-block-cover h2 a:focus,
.wp-block-cover h2 a:hover,
.wp-block-cover-image .wp-block-cover-image-text a,
.wp-block-cover-image .wp-block-cover-image-text a:active,
.wp-block-cover-image .wp-block-cover-image-text a:focus,
.wp-block-cover-image .wp-block-cover-image-text a:hover,
.wp-block-cover-image .wp-block-cover-text a,
.wp-block-cover-image .wp-block-cover-text a:active,
.wp-block-cover-image .wp-block-cover-text a:focus,
.wp-block-cover-image .wp-block-cover-text a:hover,
.wp-block-cover-image h2 a,
.wp-block-cover-image h2 a:active,
.wp-block-cover-image h2 a:focus,
.wp-block-cover-image h2 a:hover {
    color: #fff
}

.wp-block-cover-image.has-parallax,
.wp-block-cover.has-parallax {
    background-attachment: fixed
}

@supports (-webkit-overflow-scrolling:touch) {
    .wp-block-cover-image.has-parallax,
    .wp-block-cover.has-parallax {
        background-attachment: scroll
    }
}

.wp-block-cover-image.has-background-dim::before,
.wp-block-cover.has-background-dim::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-color: inherit;
    opacity: .5;
    z-index: 1
}

.wp-block-cover-image.has-background-dim.has-background-dim-10::before,
.wp-block-cover.has-background-dim.has-background-dim-10::before {
    opacity: .1
}

.wp-block-cover-image.has-background-dim.has-background-dim-20::before,
.wp-block-cover.has-background-dim.has-background-dim-20::before {
    opacity: .2
}

.wp-block-cover-image.has-background-dim.has-background-dim-30::before,
.wp-block-cover.has-background-dim.has-background-dim-30::before {
    opacity: .3
}

.wp-block-cover-image.has-background-dim.has-background-dim-40::before,
.wp-block-cover.has-background-dim.has-background-dim-40::before {
    opacity: .4
}

.wp-block-cover-image.has-background-dim.has-background-dim-50::before,
.wp-block-cover.has-background-dim.has-background-dim-50::before {
    opacity: .5
}

.wp-block-cover-image.has-background-dim.has-background-dim-60::before,
.wp-block-cover.has-background-dim.has-background-dim-60::before {
    opacity: .6
}

.wp-block-cover-image.has-background-dim.has-background-dim-70::before,
.wp-block-cover.has-background-dim.has-background-dim-70::before {
    opacity: .7
}

.wp-block-cover-image.has-background-dim.has-background-dim-80::before,
.wp-block-cover.has-background-dim.has-background-dim-80::before {
    opacity: .8
}

.wp-block-cover-image.has-background-dim.has-background-dim-90::before,
.wp-block-cover.has-background-dim.has-background-dim-90::before {
    opacity: .9
}

.wp-block-cover-image.has-background-dim.has-background-dim-100::before,
.wp-block-cover.has-background-dim.has-background-dim-100::before {
    opacity: 1
}

.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
    max-width: 305px;
    width: 100%
}

.wp-block-cover-image::after,
.wp-block-cover::after {
    display: block;
    content: "";
    font-size: 0;
    min-height: inherit
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-cover-image::after,
    .wp-block-cover::after {
        content: none
    }
}

.wp-block-cover-image.aligncenter,
.wp-block-cover-image.alignleft,
.wp-block-cover-image.alignright,
.wp-block-cover.aligncenter,
.wp-block-cover.alignleft,
.wp-block-cover.alignright {
    display: flex
}

.wp-block-cover__video-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    width: 100%;
    height: 100%;
    z-index: 0;
    -o-object-fit: cover;
    object-fit: cover
}

.editor-block-list__block[data-type="core/embed"][data-align=left] .editor-block-list__block-edit,
.editor-block-list__block[data-type="core/embed"][data-align=right] .editor-block-list__block-edit,
.wp-block-embed.alignleft,
.wp-block-embed.alignright {
    max-width: 360px;
    width: 100%
}

.wp-block-embed {
    margin-bottom: 1em
}

.wp-block-embed figcaption {
    margin-top: .5em;
    margin-bottom: 1em;
    color: #555d66;
    text-align: center;
    font-size: 13px
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper {
    position: relative
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper::before {
    content: "";
    display: block;
    padding-top: 50%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper iframe,
.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-16 .wp-block-embed__wrapper iframe {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-21-9 .wp-block-embed__wrapper::before {
    padding-top: 42.85%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-18-9 .wp-block-embed__wrapper::before {
    padding-top: 50%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-16-9 .wp-block-embed__wrapper::before {
    padding-top: 56.25%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-4-3 .wp-block-embed__wrapper::before {
    padding-top: 75%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-1 .wp-block-embed__wrapper::before {
    padding-top: 100%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-9-6 .wp-block-embed__wrapper::before {
    padding-top: 66.66%
}

.wp-embed-responsive .wp-block-embed.wp-embed-aspect-1-2 .wp-block-embed__wrapper::before {
    padding-top: 200%
}

.wp-block-file {
    margin-bottom: 1.5em
}

.wp-block-file.aligncenter {
    text-align: center
}

.wp-block-file.alignright {
    text-align: right
}

.wp-block-file .wp-block-file__button {
    background: #32373c;
    border-radius: 2em;
    color: #fff;
    font-size: 13px;
    padding: .5em 1em
}

.wp-block-file a.wp-block-file__button {
    text-decoration: none
}

.wp-block-file a.wp-block-file__button:active,
.wp-block-file a.wp-block-file__button:focus,
.wp-block-file a.wp-block-file__button:hover,
.wp-block-file a.wp-block-file__button:visited {
    box-shadow: none;
    color: #fff;
    opacity: .85;
    text-decoration: none
}

.wp-block-file *+.wp-block-file__button {
    margin-left: .75em
}

.wp-block-gallery {
    display: flex;
    flex-wrap: wrap;
    list-style-type: none;
    padding: 0
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
    margin: 0 16px 16px 0;
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    justify-content: center;
    position: relative
}

.wp-block-gallery .blocks-gallery-image figure,
.wp-block-gallery .blocks-gallery-item figure {
    margin: 0;
    height: 100%
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-gallery .blocks-gallery-image figure,
    .wp-block-gallery .blocks-gallery-item figure {
        display: flex;
        align-items: flex-end;
        justify-content: flex-start
    }
}

.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img {
    display: block;
    max-width: 100%;
    height: auto
}

.wp-block-gallery .blocks-gallery-image img,
.wp-block-gallery .blocks-gallery-item img {
    width: 100%
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-gallery .blocks-gallery-image img,
    .wp-block-gallery .blocks-gallery-item img {
        width: auto
    }
}

.wp-block-gallery .blocks-gallery-image figcaption,
.wp-block-gallery .blocks-gallery-item figcaption {
    position: absolute;
    bottom: 0;
    width: 100%;
    max-height: 100%;
    overflow: auto;
    padding: 40px 10px 5px;
    color: #fff;
    text-align: center;
    font-size: 13px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .7) 0, rgba(0, 0, 0, .3) 60%, transparent)
}

.wp-block-gallery .blocks-gallery-image figcaption img,
.wp-block-gallery .blocks-gallery-item figcaption img {
    display: inline
}

.wp-block-gallery.is-cropped .blocks-gallery-image a,
.wp-block-gallery.is-cropped .blocks-gallery-image img,
.wp-block-gallery.is-cropped .blocks-gallery-item a,
.wp-block-gallery.is-cropped .blocks-gallery-item img {
    width: 100%
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-gallery.is-cropped .blocks-gallery-image a,
    .wp-block-gallery.is-cropped .blocks-gallery-image img,
    .wp-block-gallery.is-cropped .blocks-gallery-item a,
    .wp-block-gallery.is-cropped .blocks-gallery-item img {
        height: 100%;
        flex: 1;
        -o-object-fit: cover;
        object-fit: cover
    }
}

.wp-block-gallery .blocks-gallery-image,
.wp-block-gallery .blocks-gallery-item {
    width: calc((100% - 16px)/ 2)
}

.wp-block-gallery .blocks-gallery-image:nth-of-type(even),
.wp-block-gallery .blocks-gallery-item:nth-of-type(even) {
    margin-right: 0
}

.wp-block-gallery.columns-1 .blocks-gallery-image,
.wp-block-gallery.columns-1 .blocks-gallery-item {
    width: 100%;
    margin-right: 0
}

@media (min-width:600px) {
    .wp-block-gallery.columns-3 .blocks-gallery-image,
    .wp-block-gallery.columns-3 .blocks-gallery-item {
        width: calc((100% - 16px * 2)/ 3);
        margin-right: 16px
    }
    .wp-block-gallery.columns-4 .blocks-gallery-image,
    .wp-block-gallery.columns-4 .blocks-gallery-item {
        width: calc((100% - 16px * 3)/ 4);
        margin-right: 16px
    }
    .wp-block-gallery.columns-5 .blocks-gallery-image,
    .wp-block-gallery.columns-5 .blocks-gallery-item {
        width: calc((100% - 16px * 4)/ 5);
        margin-right: 16px
    }
    .wp-block-gallery.columns-6 .blocks-gallery-image,
    .wp-block-gallery.columns-6 .blocks-gallery-item {
        width: calc((100% - 16px * 5)/ 6);
        margin-right: 16px
    }
    .wp-block-gallery.columns-7 .blocks-gallery-image,
    .wp-block-gallery.columns-7 .blocks-gallery-item {
        width: calc((100% - 16px * 6)/ 7);
        margin-right: 16px
    }
    .wp-block-gallery.columns-8 .blocks-gallery-image,
    .wp-block-gallery.columns-8 .blocks-gallery-item {
        width: calc((100% - 16px * 7)/ 8);
        margin-right: 16px
    }
    .wp-block-gallery.columns-1 .blocks-gallery-image:nth-of-type(1n),
    .wp-block-gallery.columns-1 .blocks-gallery-item:nth-of-type(1n) {
        margin-right: 0
    }
    .wp-block-gallery.columns-2 .blocks-gallery-image:nth-of-type(2n),
    .wp-block-gallery.columns-2 .blocks-gallery-item:nth-of-type(2n) {
        margin-right: 0
    }
    .wp-block-gallery.columns-3 .blocks-gallery-image:nth-of-type(3n),
    .wp-block-gallery.columns-3 .blocks-gallery-item:nth-of-type(3n) {
        margin-right: 0
    }
    .wp-block-gallery.columns-4 .blocks-gallery-image:nth-of-type(4n),
    .wp-block-gallery.columns-4 .blocks-gallery-item:nth-of-type(4n) {
        margin-right: 0
    }
    .wp-block-gallery.columns-5 .blocks-gallery-image:nth-of-type(5n),
    .wp-block-gallery.columns-5 .blocks-gallery-item:nth-of-type(5n) {
        margin-right: 0
    }
    .wp-block-gallery.columns-6 .blocks-gallery-image:nth-of-type(6n),
    .wp-block-gallery.columns-6 .blocks-gallery-item:nth-of-type(6n) {
        margin-right: 0
    }
    .wp-block-gallery.columns-7 .blocks-gallery-image:nth-of-type(7n),
    .wp-block-gallery.columns-7 .blocks-gallery-item:nth-of-type(7n) {
        margin-right: 0
    }
    .wp-block-gallery.columns-8 .blocks-gallery-image:nth-of-type(8n),
    .wp-block-gallery.columns-8 .blocks-gallery-item:nth-of-type(8n) {
        margin-right: 0
    }
}

.wp-block-gallery .blocks-gallery-image:last-child,
.wp-block-gallery .blocks-gallery-item:last-child {
    margin-right: 0
}

.wp-block-gallery .blocks-gallery-item.has-add-item-button {
    width: 100%
}

.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
    max-width: 305px;
    width: 100%
}

.wp-block-gallery.aligncenter,
.wp-block-gallery.alignleft,
.wp-block-gallery.alignright {
    display: flex
}

.wp-block-gallery.aligncenter .blocks-gallery-item figure {
    justify-content: center
}

.wp-block-image {
    max-width: 100%;
    margin-bottom: 1em;
    margin-left: 0;
    margin-right: 0
}

.wp-block-image img {
    max-width: 100%
}

.wp-block-image.aligncenter {
    text-align: center
}

.wp-block-image.alignfull img,
.wp-block-image.alignwide img {
    width: 100%
}

.wp-block-image .aligncenter,
.wp-block-image .alignleft,
.wp-block-image .alignright,
.wp-block-image.is-resized {
    display: table;
    margin-left: 0;
    margin-right: 0
}

.wp-block-image .aligncenter>figcaption,
.wp-block-image .alignleft>figcaption,
.wp-block-image .alignright>figcaption,
.wp-block-image.is-resized>figcaption {
    display: table-caption;
    caption-side: bottom
}

.wp-block-image .alignleft {
    float: left;
    margin-right: 1em
}

.wp-block-image .alignright {
    float: right;
    margin-left: 1em
}

.wp-block-image .aligncenter {
    margin-left: auto;
    margin-right: auto
}

.wp-block-image figcaption {
    margin-top: .5em;
    margin-bottom: 1em;
    color: #555d66;
    text-align: center;
    font-size: 13px
}

.wp-block-latest-comments__comment {
    font-size: 15px;
    line-height: 1.1;
    list-style: none;
    margin-bottom: 1em
}

.has-avatars .wp-block-latest-comments__comment {
    min-height: 36px;
    list-style: none
}

.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-excerpt,
.has-avatars .wp-block-latest-comments__comment .wp-block-latest-comments__comment-meta {
    margin-left: 52px
}

.has-dates .wp-block-latest-comments__comment,
.has-excerpts .wp-block-latest-comments__comment {
    line-height: 1.5
}

.wp-block-latest-comments__comment-excerpt p {
    font-size: 14px;
    line-height: 1.8;
    margin: 5px 0 20px
}

.wp-block-latest-comments__comment-date {
    color: #8f98a1;
    display: block;
    font-size: 12px
}

.wp-block-latest-comments .avatar,
.wp-block-latest-comments__comment-avatar {
    border-radius: 24px;
    display: block;
    float: left;
    height: 40px;
    margin-right: 12px;
    width: 40px
}

.wp-block-latest-posts.alignleft {
    margin-right: 2em
}

.wp-block-latest-posts.alignright {
    margin-left: 2em
}

.wp-block-latest-posts.is-grid {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    list-style: none
}

.wp-block-latest-posts.is-grid li {
    margin: 0 16px 16px 0;
    width: 100%
}

@media (min-width:600px) {
    .wp-block-latest-posts.columns-2 li {
        width: calc((100% / 2) - 16px)
    }
    .wp-block-latest-posts.columns-3 li {
        width: calc((100% / 3) - 16px)
    }
    .wp-block-latest-posts.columns-4 li {
        width: calc((100% / 4) - 16px)
    }
    .wp-block-latest-posts.columns-5 li {
        width: calc((100% / 5) - 16px)
    }
    .wp-block-latest-posts.columns-6 li {
        width: calc((100% / 6) - 16px)
    }
}

.wp-block-latest-posts__post-date {
    display: block;
    color: #6c7781;
    font-size: 13px
}

.wp-block-media-text {
    display: grid
}

.wp-block-media-text {
    grid-template-rows: auto;
    align-items: center;
    grid-template-areas: "media-text-media media-text-content";
    grid-template-columns: 50% auto
}

.wp-block-media-text.has-media-on-the-right {
    grid-template-areas: "media-text-content media-text-media";
    grid-template-columns: auto 50%
}

.wp-block-media-text .wp-block-media-text__media {
    grid-area: media-text-media;
    margin: 0
}

.wp-block-media-text .wp-block-media-text__content {
    word-break: break-word;
    grid-area: media-text-content;
    padding: 0 8% 0 8%
}

.wp-block-media-text>figure>img,
.wp-block-media-text>figure>video {
    max-width: unset;
    width: 100%;
    vertical-align: middle
}

@media (max-width:600px) {
    .wp-block-media-text.is-stacked-on-mobile {
        grid-template-columns: 100%!important;
        grid-template-areas: "media-text-media" "media-text-content"
    }
    .wp-block-media-text.is-stacked-on-mobile.has-media-on-the-right {
        grid-template-areas: "media-text-content" "media-text-media"
    }
}

p.is-small-text {
    font-size: 14px
}

p.is-regular-text {
    font-size: 16px
}

p.is-large-text {
    font-size: 36px
}

p.is-larger-text {
    font-size: 48px
}

p.has-drop-cap:not(:focus)::first-letter {
    float: left;
    font-size: 8.4em;
    line-height: .68;
    font-weight: 100;
    margin: .05em .1em 0 0;
    text-transform: uppercase;
    font-style: normal
}

p.has-drop-cap:not(:focus)::after {
    content: "";
    display: table;
    clear: both;
    padding-top: 14px
}

p.has-background {
    padding: 20px 30px
}

p.has-text-color a {
    color: inherit
}

.wp-block-pullquote {
    padding: 3em 0;
    margin-left: 0;
    margin-right: 0;
    text-align: center
}

.wp-block-pullquote.alignleft,
.wp-block-pullquote.alignright {
    max-width: 305px
}

.wp-block-pullquote.alignleft p,
.wp-block-pullquote.alignright p {
    font-size: 20px
}

.wp-block-pullquote p {
    font-size: 28px;
    line-height: 1.6
}

.wp-block-pullquote cite,
.wp-block-pullquote footer {
    position: relative
}

.wp-block-pullquote .has-text-color a {
    color: inherit
}

.wp-block-pullquote:not(.is-style-solid-color) {
    background: 0 0
}

.wp-block-pullquote.is-style-solid-color {
    border: none
}

.wp-block-pullquote.is-style-solid-color blockquote {
    margin-left: auto;
    margin-right: auto;
    text-align: left;
    max-width: 60%
}

.wp-block-pullquote.is-style-solid-color blockquote p {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 32px
}

.wp-block-pullquote.is-style-solid-color blockquote cite {
    text-transform: none;
    font-style: normal
}

.wp-block-pullquote cite {
    color: inherit
}

.wp-block-quote.is-large,
.wp-block-quote.is-style-large {
    margin: 0 0 16px;
    padding: 0 1em
}

.wp-block-quote.is-large p,
.wp-block-quote.is-style-large p {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6
}

.wp-block-quote.is-large cite,
.wp-block-quote.is-large footer,
.wp-block-quote.is-style-large cite,
.wp-block-quote.is-style-large footer {
    font-size: 18px;
    text-align: right
}

.wp-block-separator.is-style-wide {
    border-bottom-width: 1px
}

.wp-block-separator.is-style-dots {
    background: 0 0;
    border: none;
    text-align: center;
    max-width: none;
    line-height: 1;
    height: auto
}

.wp-block-separator.is-style-dots::before {
    content: "\00b7 \00b7 \00b7";
    color: #191e23;
    font-size: 20px;
    letter-spacing: 2em;
    padding-left: 2em;
    font-family: serif
}

p.wp-block-subhead {
    font-size: 1.1em;
    font-style: italic;
    opacity: .75
}

.wp-block-table.has-fixed-layout {
    table-layout: fixed;
    width: 100%
}

.wp-block-table.aligncenter,
.wp-block-table.alignleft,
.wp-block-table.alignright {
    display: table;
    width: auto
}

.wp-block-table.is-style-stripes {
    border-spacing: 0;
    border-collapse: inherit;
    border-bottom: 1px solid #f3f4f5
}

.wp-block-table.is-style-stripes tr:nth-child(odd) {
    background-color: #f3f4f5
}

.wp-block-table.is-style-stripes td {
    border-color: transparent
}

.wp-block-text-columns {
    display: flex
}

.wp-block-text-columns.aligncenter {
    display: flex
}

.wp-block-text-columns .wp-block-column {
    margin: 0 16px;
    padding: 0
}

.wp-block-text-columns .wp-block-column:first-child {
    margin-left: 0
}

.wp-block-text-columns .wp-block-column:last-child {
    margin-right: 0
}

.wp-block-text-columns.columns-2 .wp-block-column {
    width: calc(100% / 2)
}

.wp-block-text-columns.columns-3 .wp-block-column {
    width: calc(100% / 3)
}

.wp-block-text-columns.columns-4 .wp-block-column {
    width: calc(100% / 4)
}

pre.wp-block-verse {
    white-space: nowrap;
    overflow: auto
}

.wp-block-video {
    margin-left: 0;
    margin-right: 0
}

.wp-block-video video {
    max-width: 100%
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .wp-block-video [poster] {
        -o-object-fit: cover;
        object-fit: cover
    }
}

.wp-block-video.aligncenter {
    text-align: center
}

.wp-block-video figcaption {
    margin-top: .5em;
    margin-bottom: 1em;
    color: #555d66;
    text-align: center;
    font-size: 13px
}

.has-pale-pink-background-color.has-pale-pink-background-color {
    background-color: #f78da7
}

.has-vivid-red-background-color.has-vivid-red-background-color {
    background-color: #cf2e2e
}

.has-luminous-vivid-orange-background-color.has-luminous-vivid-orange-background-color {
    background-color: #ff6900
}

.has-luminous-vivid-amber-background-color.has-luminous-vivid-amber-background-color {
    background-color: #fcb900
}

.has-light-green-cyan-background-color.has-light-green-cyan-background-color {
    background-color: #7bdcb5
}

.has-vivid-green-cyan-background-color.has-vivid-green-cyan-background-color {
    background-color: #00d084
}

.has-pale-cyan-blue-background-color.has-pale-cyan-blue-background-color {
    background-color: #8ed1fc
}

.has-vivid-cyan-blue-background-color.has-vivid-cyan-blue-background-color {
    background-color: #0693e3
}

.has-very-light-gray-background-color.has-very-light-gray-background-color {
    background-color: #eee
}

.has-cyan-bluish-gray-background-color.has-cyan-bluish-gray-background-color {
    background-color: #abb8c3
}

.has-very-dark-gray-background-color.has-very-dark-gray-background-color {
    background-color: #313131
}

.has-pale-pink-color.has-pale-pink-color {
    color: #f78da7
}

.has-vivid-red-color.has-vivid-red-color {
    color: #cf2e2e
}

.has-luminous-vivid-orange-color.has-luminous-vivid-orange-color {
    color: #ff6900
}

.has-luminous-vivid-amber-color.has-luminous-vivid-amber-color {
    color: #fcb900
}

.has-light-green-cyan-color.has-light-green-cyan-color {
    color: #7bdcb5
}

.has-vivid-green-cyan-color.has-vivid-green-cyan-color {
    color: #00d084
}

.has-pale-cyan-blue-color.has-pale-cyan-blue-color {
    color: #8ed1fc
}

.has-vivid-cyan-blue-color.has-vivid-cyan-blue-color {
    color: #0693e3
}

.has-very-light-gray-color.has-very-light-gray-color {
    color: #eee
}

.has-cyan-bluish-gray-color.has-cyan-bluish-gray-color {
    color: #abb8c3
}

.has-very-dark-gray-color.has-very-dark-gray-color {
    color: #313131
}

.has-small-font-size {
    font-size: 13px
}

.has-normal-font-size,
.has-regular-font-size {
    font-size: 16px
}

.has-medium-font-size {
    font-size: 20px
}

.has-large-font-size {
    font-size: 36px
}

.has-huge-font-size,
.has-larger-font-size {
    font-size: 42px
}

div.wpcf7 {
    margin: 0;
    padding: 0
}

div.wpcf7 .screen-reader-response {
    position: absolute;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    width: 1px;
    margin: 0;
    padding: 0;
    border: 0
}

div.wpcf7-response-output {
    margin: 2em .5em 1em;
    padding: .2em 1em;
    border: 2px solid red
}

div.wpcf7-mail-sent-ok {
    border: 2px solid #398f14
}

div.wpcf7-mail-sent-ng,
div.wpcf7-aborted {
    border: 2px solid red
}

div.wpcf7-spam-blocked {
    border: 2px solid orange
}

div.wpcf7-validation-errors,
div.wpcf7-acceptance-missing {
    border: 2px solid #f7e700
}

.wpcf7-form-control-wrap {
    position: relative
}

span.wpcf7-not-valid-tip {
    color: red;
    font-size: 1em;
    font-weight: 400;
    display: block
}

.use-floating-validation-tip span.wpcf7-not-valid-tip {
    position: absolute;
    top: 20%;
    left: 20%;
    z-index: 100;
    border: 1px solid red;
    background: #fff;
    padding: .2em .8em
}

span.wpcf7-list-item {
    display: inline-block;
    margin: 0 0 0 1em
}

span.wpcf7-list-item-label:before,
span.wpcf7-list-item-label:after {
    content: " "
}

.wpcf7-display-none {
    display: none
}

div.wpcf7 .ajax-loader {
    visibility: hidden;
    display: inline-block;
    background-image: url(../images/ajax-loader.gif);
    width: 16px;
    height: 16px;
    border: none;
    padding: 0;
    margin: 0 0 0 4px;
    vertical-align: middle
}

div.wpcf7 .ajax-loader.is-active {
    visibility: visible
}

div.wpcf7 div.ajax-error {
    display: none
}

div.wpcf7 .placeheld {
    color: #888
}

div.wpcf7 input[type=file] {
    cursor: pointer
}

div.wpcf7 input[type=file]:disabled {
    cursor: default
}

div.wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed
}

#ctf {
    overflow-y: auto;
    -ms-overflow-y: auto
}

#ctf .ctf-item {
    padding: 15px 5px;
    border-top: 1px solid #ddd;
    border-top: 1px solid rgba(0, 0, 0, .1);
    overflow: hidden
}

#ctf .ctf-item:first-child {
    border-top: none
}

#ctf .ctf_remaining {
    display: none
}

#ctf .ctf_more {
    padding: 1px;
    border: 1px solid transparent;
    border-radius: 3px;
    display: inline-block;
    line-height: 1
}

#ctf .ctf_more:hover {
    cursor: pointer;
    background: rgba(0, 0, 0, .05);
    border: 1px solid rgba(0, 0, 0, .1);
    text-decoration: none
}

#ctf .ctf-header {
    float: left;
    clear: both;
    margin: 0;
    padding: 5px 5px 15px;
    line-height: 1.2;
    width: 100%;
    border-bottom: 1px solid #ddd;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#ctf .ctf-header a {
    float: left;
    display: block;
    min-width: 100%\9
}

#ctf .ctf-header-img {
    float: left;
    position: relative;
    width: 48px;
    margin: 0 0 0 -100% !important;
    overflow: hidden;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px
}

#ctf .ctf-header-img img {
    display: block;
    float: left;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px
}

#ctf .ctf-author-avatar {
    clear: both;
    margin: 3px 6px 0 -53px
}

#ctf .ctf-author-name {
    margin-left: 6px
}

#ctf .ctf-author-box {
    margin-left: 53px
}

#ctf .ctf-header-img-hover,
#ctf .ctf-header-generic-icon {
    display: none;
    position: absolute;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    text-align: center;
    color: #fff;
    background: #1b95e0;
    background: rgba(27, 149, 224, .85);
    -moz-border-radius: 40px;
    -webkit-border-radius: 40px;
    border-radius: 40px
}

#ctf .ctf-header-img-hover .fa,
#ctf .ctf-header-generic-icon .fa {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -10px;
    margin-left: -8px;
    font-size: 20px
}

#ctf .ctf-header-text {
    float: left;
    width: 100%;
    padding-top: 5px
}

#ctf .ctf-no-bio .ctf-header-text {
    padding-top: 13px
}

#ctf .ctf-header a {
    text-decoration: none
}

#ctf .ctf-header-text .ctf-header-user,
#ctf .ctf-header-text p {
    float: left;
    clear: both;
    width: auto;
    margin: 0 0 0 60px !important;
    padding: 0 !important
}

#ctf .ctf-header-name {
    font-weight: 700;
    margin-right: 6px
}

#ctf .ctf-header-text .ctf-header-bio {
    padding: 0 !important
}

#ctf .ctf-header-text .ctf-verified {
    margin-right: 5px
}

#ctf .ctf-header .ctf-header-follow {
    display: inline-block;
    padding: 3px 6px;
    margin: 0 0 0 2px;
    position: relative;
    top: -2px;
    background: #1b95e0;
    color: #fff;
    font-size: 11px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    -moz-transition: background .6s ease-in-out;
    -webkit-transition: background .6s ease-in-out;
    -o-transition: background .6s ease-in-out;
    transition: background .6s ease-in-out
}

#ctf .ctf-header .ctf-header-follow .fa {
    margin-right: 3px;
    font-size: 12px
}

#ctf .ctf-header a:hover .ctf-header-follow {
    background: #0c7abf;
    -moz-transition: background .2s ease-in-out;
    -webkit-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out
}

#ctf .ctf-header-type-generic .ctf-header-img {
    color: #fff;
    width: 48px;
    height: 48px;
    position: relative
}

#ctf .ctf-header-type-generic .ctf-header-link:hover .ctf-header-generic-icon {
    background: #0c7abf
}

#ctf .ctf-header-type-generic .ctf-header-no-bio {
    padding-top: 9px !important;
    font-size: 16px;
    font-weight: 700
}

#ctf .ctf-header-type-generic .ctf-header-generic-icon {
    display: block;
    color: #fff;
    background: #1b95e0;
    -moz-transition: background .2s ease-in-out;
    -webkit-transition: background .2s ease-in-out;
    -o-transition: background .2s ease-in-out;
    transition: background .2s ease-in-out
}

#ctf .ctf-header-type-generic:hover .ctf-header-generic-icon {
    display: block;
    opacity: 1
}

#ctf .ctf-header .ctf-header-user {
    font-size: 16px;
    line-height: 1.3;
    -ms-word-wrap: break-word;
    word-break: break-word
}

#ctf .ctf-header p,
#ctf .ctf-header .ctf-header-screenname {
    font-size: 13px;
    line-height: 1.3
}

.ctf-screenreader {
    text-indent: -9999px !important;
    display: inline-block !important;
    width: 0 !important;
    height: 0 !important;
    line-height: 0 !important
}

#ctf .ctf-header-text.sbi-no-info .ctf-header-user {
    padding-top: 9px !important
}

#ctf .ctf-header-text.sbi-no-bio .ctf-header-counts {
    clear: both
}

#ctf .ctf-context {
    float: left;
    width: 100%;
    margin-left: 57px;
    margin-bottom: 2px
}

#ctf .ctf-retweet-icon {
    display: inline-block;
    font-size: inherit;
    background: #19cf86;
    color: #fff !important;
    padding: 1px 3px 3px;
    line-height: 1;
    margin: 0 5px 0 0;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px
}

#ctf .ctf-author-box {
    margin-left: 56px
}

#ctf .ctf-author-avatar {
    width: 48px;
    height: 48px;
    margin: 3px 6px 0 -56px;
    float: left;
    overflow: hidden;
    border: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

#ctf .ctf-author-avatar img {
    margin: 0 !important;
    padding: 0
}

#ctf .ctf-author-name,
#ctf .ctf-author-screenname,
#ctf .ctf-verified,
#ctf .ctf-tweet-meta {
    margin-left: 4px;
    margin-right: 4px;
    display: inline-block
}

#ctf .ctf-screename-sep {
    margin: 0 2px;
    display: inline-block
}

#ctf .ctf-author-name {
    font-weight: 700 !important;
    margin-top: 4px
}

#ctf .ctf-author-box-link {
    color: #000;
    text-decoration: none;
    display: inline;
    line-height: 1.5 !important
}

#ctf .ctf-verified,
#ctf .ctf-quoted-verified {
    color: #77c7f7;
    margin-left: 0
}

#ctf .ctf-quoted-verified {
    margin-right: 4px
}

#ctf .ctf-tweet-meta {
    display: inline-block
}

#ctf .ctf-replied-to-text a {
    font-size: inherit;
    color: inherit;
    font-weight: inherit
}

#ctf p.ctf-tweet-text,
#ctf p.ctf-media-link {
    padding: 0 !important;
    margin: 0 !important
}

#ctf .ctf-tweet-content,
#ctf .ctf-tweet-actions {
    margin-left: 58px
}

#ctf .ctf-hide-avatar .ctf-context,
#ctf .ctf-hide-avatar .ctf-tweet-content,
#ctf .ctf-hide-avatar .ctf-tweet-actions,
#ctf .ctf-hide-avatar .ctf-quoted-tweet,
#ctf .ctf-hide-avatar .ctf-author-box,
#ctf.ctf-narrow .ctf-hide-avatar .ctf-context,
#ctf.ctf-narrow .ctf-hide-avatar .ctf-tweet-content,
#ctf.ctf-narrow .ctf-hide-avatar .ctf-tweet-actions,
#ctf.ctf-narrow .ctf-hide-avatar .ctf-quoted-tweet,
#ctf.ctf-narrow .ctf-hide-avatar .ctf-author-box,
#ctf.ctf-super-narrow .ctf-hide-avatar .ctf-context,
#ctf.ctf-super-narrow .ctf-hide-avatar .ctf-tweet-content,
#ctf.ctf-super-narrow .ctf-hide-avatar .ctf-tweet-actions,
#ctf.ctf-super-narrow .ctf-hide-avatar .ctf-quoted-tweet,
#ctf.ctf-super-narrow .ctf-hide-avatar .ctf-author-box {
    margin-left: 0
}

#ctf .ctf-quoted-tweet {
    display: block;
    clear: both;
    margin: 7px 0 5px 58px;
    padding: 8px 12px;
    border: 1px solid #ddd;
    border: 1px solid rgba(0, 0, 0, .1);
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-transition: background .1s ease-in-out;
    -webkit-transition: background .1s ease-in-out;
    -o-transition: background .1s ease-in-out;
    transition: background .1s ease-in-out
}

#ctf .ctf-quoted-tweet:hover,
#ctf .ctf-quoted-tweet:focus {
    background: #eee;
    background: rgba(0, 0, 0, .05);
    border: 1px solid #ddd;
    border: 1px solid rgba(0, 0, 0, .05);
    -moz-transition: background .1s ease-in-out;
    -webkit-transition: background .1s ease-in-out;
    -o-transition: background .1s ease-in-out;
    transition: background .1s ease-in-out
}

#ctf .ctf-quoted-author-name {
    font-weight: 700;
    margin-right: 4px
}

#ctf .ctf-quoted-tweet p {
    margin: 2px 0
}

#ctf .ctf-tweet-actions a {
    padding: 2px 10px 2px 5px;
    float: left
}

#ctf .ctf-tweet-actions a.ctf-reply,
#ctf .ctf-tweet-actions a.ctf-retweet,
#ctf .ctf-tweet-actions a.ctf-like {
    color: #bbb;
    color: rgba(0, 0, 0, .3);
    text-decoration: none;
    border: none;
    -moz-transition: color .1s ease-in-out;
    -webkit-transition: color .1s ease-in-out;
    -o-transition: color .1s ease-in-out;
    transition: color .1s ease-in-out
}

#ctf .ctf-tweet-actions .ctf-reply {
    margin-left: -5px
}

#ctf .ctf-tweet-actions a:hover,
#ctf .ctf-tweet-actions a:focus {
    -moz-transition: color .1s ease-in-out;
    -webkit-transition: color .1s ease-in-out;
    -o-transition: color .1s ease-in-out;
    transition: color .1s ease-in-out
}

#ctf .ctf-tweet-actions .ctf-reply:hover,
#ctf .ctf-tweet-actions .ctf-reply:focus {
    color: #e34f0e !important
}

#ctf .ctf-tweet-actions .ctf-retweet:hover,
#ctf .ctf-tweet-actions .ctf-retweet:focus {
    color: #19cf86 !important
}

#ctf .ctf-tweet-actions .ctf-like:hover,
#ctf .ctf-tweet-actions .ctf-like:focus {
    color: #e81c4f !important
}

#ctf .ctf-action-count {
    display: none;
    float: right;
    padding-left: 3px;
    font-weight: 700;
    font-size: 11px;
    line-height: 14px
}

#ctf .ctf-tweet-text-media-wrap,
#ctf .ctf-quoted-tweet-text-media-wrap {
    margin-left: 5px;
    padding: 0 1px 0 4px;
    display: inline-block;
    border: 1px solid #ddd;
    border: 1px solid rgba(0, 0, 0, .15);
    color: inherit;
    text-decoration: none;
    line-height: 1.5;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    -moz-transition: background .1s ease-in-out;
    -webkit-transition: background .1s ease-in-out;
    -o-transition: background .1s ease-in-out;
    transition: background .1s ease-in-out
}

#ctf .ctf-tweet-text-media-wrap .fa,
#ctf .ctf-quoted-tweet-text-media-wrap .fa {
    padding-left: 3px
}

#ctf .ctf-tweet-text-media-wrap:hover,
#ctf .ctf-tweet-text-media-wrap:focus {
    background: #eee;
    background: rgba(0, 0, 0, .05);
    border: 1px solid #ddd;
    border: 1px solid rgba(0, 0, 0, .1);
    -moz-transition: background .1s ease-in-out;
    -webkit-transition: background .1s ease-in-out;
    -o-transition: background .1s ease-in-out;
    transition: background .1s ease-in-out
}

#ctf #ctf-more {
    display: block;
    border: none;
    background: #eee;
    background: rgba(0, 0, 0, .05);
    width: 100%;
    min-height: 30px;
    padding: 5px 0;
    margin: 0;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    outline: none;
    text-decoration: none;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    -moz-transition: background .1s ease-in-out;
    -webkit-transition: background .1s ease-in-out;
    -o-transition: background .1s ease-in-out;
    transition: background .1s ease-in-out
}

#ctf #ctf-more:hover {
    background: #ddd;
    background: rgba(0, 0, 0, .1);
    -moz-transition: background .1s ease-in-out;
    -webkit-transition: background .1s ease-in-out;
    -o-transition: background .1s ease-in-out;
    transition: background .1s ease-in-out
}

#ctf #ctf-more.ctf-loading span {
    -moz-transition: opacity .5s ease-in-out;
    -webkit-transition: opacity .5s ease-in-out;
    -o-transition: opacity .5s ease-in-out;
    transition: opacity .5s ease-in-out
}

#ctf #ctf-more.ctf-loading span {
    filter: alpha(opacity=0);
    opacity: 0
}

#ctf .ctf-loader {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -10px 0 0 -10px;
    background-color: none;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 100%;
    -webkit-animation: ctf-sk-scaleout 1s infinite ease-in-out;
    animation: ctf-sk-scaleout 1s infinite ease-in-out
}

@-webkit-keyframes ctf-sk-scaleout {
    0% {
        -webkit-transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        opacity: 0
    }
}

@keyframes ctf-sk-scaleout {
    0% {
        -webkit-transform: scale(0);
        transform: scale(0)
    }
    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 0
    }
}

.ctf-credit-link {
    width: 100%;
    clear: both;
    padding: 5px 0;
    margin-top: 5px;
    text-align: center;
    font-size: 12px
}

.ctf-credit-link .fa {
    margin-right: 4px
}

#ctf.ctf-styles .ctf-author-screenname,
#ctf.ctf-styles .ctf-context,
#ctf.ctf-styles .ctf-twitterlink,
#ctf.ctf-styles .ctf-tweet-meta {
    font-size: 12px
}

#ctf .ctf-error {
    width: 100%;
    text-align: center
}

#ctf .ctf-error p,
#ctf .ctf-error iframe,
#ctf .ctf-error code {
    padding: 0;
    margin: 0 2px
}

#ctf .ctf-error-user p {
    padding-bottom: 5px
}

#ctf .ctf-error-user {
    width: 100%
}

#ctf .ctf-error-admin {
    margin-top: 15px;
    display: inline-block
}

#ctf .ctf-error code {
    display: block;
    padding: 4px
}

#ctf .ctf-out-of-tweets {
    width: 100%
}

#ctf .ctf-out-of-tweets {
    display: block;
    border: 1px solid rgba(0, 0, 0, .1);
    background: 0 0;
    background: 0 0;
    width: 100%;
    min-height: 30px;
    padding: 5px 0;
    margin: 0;
    position: relative;
    text-align: center;
    box-sizing: border-box;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px
}

#ctf .ctf-out-of-tweets p,
#ctf .ctf-out-of-tweets iframe {
    margin: 0 2px;
    padding: 0
}

#ctf .ctf-out-of-tweets p {
    padding: 3px;
    display: none
}

#ctf.ctf-narrow .ctf-author-avatar,
#ctf.ctf-narrow .ctf-author-avatar img {
    width: 38px;
    height: 38px
}

#ctf.ctf-narrow .ctf-tweet-content,
#ctf.ctf-narrow .ctf-tweet-actions,
#ctf.ctf-narrow .ctf-quoted-tweet {
    margin-left: 48px
}

#ctf.ctf-narrow .ctf-context {
    margin-left: 49px
}

#ctf.ctf-narrow .ctf-author-box {
    margin-left: 46px
}

#ctf.ctf-narrow .ctf-author-avatar {
    margin-left: -46px
}

#ctf.ctf-narrow .ctf-tweet-content {
    padding: 3px 0 5px
}

#ctf.ctf-narrow .ctf-tweet-actions {
    float: left;
    clear: both
}

#ctf.ctf-super-narrow .ctf-context,
#ctf.ctf-super-narrow .ctf-tweet-content,
#ctf.ctf-super-narrow .ctf-tweet-actions,
#ctf.ctf-super-narrow .ctf-quoted-tweet {
    margin-left: 0
}

#ctf.ctf-super-narrow .ctf-author-box {
    min-height: 32px;
    margin-bottom: 2px
}

#ctf.ctf-super-narrow .ctf-author-avatar,
#ctf.ctf-super-narrow .ctf-author-avatar img {
    width: 32px;
    height: 32px
}

#ctf.ctf-super-narrow .ctf-author-box {
    margin-left: 38px;
    float: left;
    clear: both
}

#ctf.ctf-super-narrow .ctf-author-avatar {
    margin-left: -38px;
    margin-top: 0
}

#ctf.ctf-super-narrow .ctf-author-screenname,
#ctf.ctf-super-narrow .ctf-screename-sep {
    display: none
}

#ctf.ctf-super-narrow .ctf-context {
    padding-bottom: 5px
}

#ctf.ctf-super-narrow .ctf-author-name {
    display: inline-block
}

#ctf.ctf-super-narrow .ctf-tweet-content {
    float: left;
    clear: both
}

#ctf.ctf-super-narrow .ctf-credit-link {
    font-size: 10px
}

#ctf.ctf-super-narrow .ctf-header-bio {
    margin: 0 !important;
    padding-top: 5px
}

#ctf.ctf-super-narrow .ctf-header-user {
    min-height: 48px
}

#ctf.ctf-super-narrow .ctf-header-text {
    padding-top: 10px
}

#ctf.ctf-super-narrow .ctf-header-follow {
    margin-top: 5px
}

#ctf.ctf-super-narrow .ctf-more span {
    display: block;
    margin-top: 3px
}


/* @font-face {
    font-family: 'FontAwesome';
    src: url(//www.midas.ac.in/wp-content/plugins/custom-twitter-feeds/css/../fonts/fontawesome-webfont.eot?v=4.6.1);
    src: url(//www.midas.ac.in/wp-content/plugins/custom-twitter-feeds/css/../fonts/fontawesome-webfont.eot?#iefix&v=4.6.1) format('embedded-opentype'), url(//www.midas.ac.in/wp-content/plugins/custom-twitter-feeds/css/../fonts/fontawesome-webfont.woff?v=4.6.1) format('woff'), url(//www.midas.ac.in/wp-content/plugins/custom-twitter-feeds/css/../fonts/fontawesome-webfont.ttf?v=4.6.1) format('truetype'), url(//www.midas.ac.in/wp-content/plugins/custom-twitter-feeds/css/../fonts/fontawesome-webfont.svg?v=4.6.1#fontawesomeregular) format('svg');
    font-weight: 400;
    font-style: normal
}

#ctf .fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

#ctf .fa-retweet:before {
    content: "\f079"
}

#ctf .fa-reply:before {
    content: "\f112"
}

#ctf .fa-heart:before {
    content: "\f004"
}

#ctf .fa-check-circle:before {
    content: "\f058"
}

#ctf .fa-twitter:before {
    content: "\f099"
}

#ctf .fa-file-video-o:before {
    content: "\f1c8"
}

#ctf .fa-picture-o:before {
    content: "\f03e"
}

@media all and (max-width:640px) {
    #ctf.ctf-width-resp {
        width: 100% !important
    }
} */


/*!
 * Font Awesome Free 5.1.0 by @fontawesome - https://fontawesome.com
 * License - https://fontawesome.com/license (Icons: CC BY 4.0, Fonts: SIL OFL 1.1, Code: MIT License)
 */

.fa,
.fab,
.fal,
.far,
.fas {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -.0667em
}

.fa-xs {
    font-size: .75em
}

.fa-sm {
    font-size: .875em
}

.fa-1x {
    font-size: 1em
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-6x {
    font-size: 6em
}

.fa-7x {
    font-size: 7em
}

.fa-8x {
    font-size: 8em
}

.fa-9x {
    font-size: 9em
}

.fa-10x {
    font-size: 10em
}

.fa-fw {
    text-align: center;
    width: 1.25em
}

.fa-ul {
    list-style-type: none;
    margin-left: 2.5em;
    padding-left: 0
}

.fa-ul>li {
    position: relative
}

.fa-li {
    left: -2em;
    position: absolute;
    text-align: center;
    width: 2em;
    line-height: inherit
}

.fa-border {
    border: .08em solid #eee;
    border-radius: .1em;
    padding: .2em .25em .15em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left,
.fab.fa-pull-left,
.fal.fa-pull-left,
.far.fa-pull-left,
.fas.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right,
.fab.fa-pull-right,
.fal.fa-pull-right,
.far.fa-pull-right,
.fas.fa-pull-right {
    margin-left: .3em
}

.fa-spin {
    animation: a 2s infinite linear
}

.fa-pulse {
    animation: a 1s infinite steps(8)
}

@keyframes a {
    0% {
        transform: rotate(0deg)
    }
    to {
        transform: rotate(1turn)
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    transform: scaleX(-1)
}

.fa-flip-vertical {
    transform: scaleY(-1)
}

.fa-flip-horizontal.fa-flip-vertical,
.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)"
}

.fa-flip-horizontal.fa-flip-vertical {
    transform: scale(-1)
}

 :root .fa-flip-horizontal,
 :root .fa-flip-vertical,
 :root .fa-rotate-90,
 :root .fa-rotate-180,
 :root .fa-rotate-270 {
    -webkit-filter: none;
    filter: none
}

.fa-stack {
    display: inline-block;
    height: 2em;
    line-height: 2em;
    position: relative;
    vertical-align: middle;
    width: 2em
}

.fa-stack-1x,
.fa-stack-2x {
    left: 0;
    position: absolute;
    text-align: center;
    width: 100%
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-500px:before {
    content: "\f26e"
}

.fa-accessible-icon:before {
    content: "\f368"
}

.fa-accusoft:before {
    content: "\f369"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-card:before {
    content: "\f2bb"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-adn:before {
    content: "\f170"
}

.fa-adversal:before {
    content: "\f36a"
}

.fa-affiliatetheme:before {
    content: "\f36b"
}

.fa-algolia:before {
    content: "\f36c"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-allergies:before {
    content: "\f461"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-amazon-pay:before {
    content: "\f42c"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-american-sign-language-interpreting:before {
    content: "\f2a3"
}

.fa-amilia:before {
    content: "\f36d"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-android:before {
    content: "\f17b"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angry:before {
    content: "\f556"
}

.fa-angrycreative:before {
    content: "\f36e"
}

.fa-angular:before {
    content: "\f420"
}

.fa-app-store:before {
    content: "\f36f"
}

.fa-app-store-ios:before {
    content: "\f370"
}

.fa-apper:before {
    content: "\f371"
}

.fa-apple:before {
    content: "\f179"
}

.fa-apple-pay:before {
    content: "\f415"
}

.fa-archive:before {
    content: "\f187"
}

.fa-archway:before {
    content: "\f557"
}

.fa-arrow-alt-circle-down:before {
    content: "\f358"
}

.fa-arrow-alt-circle-left:before {
    content: "\f359"
}

.fa-arrow-alt-circle-right:before {
    content: "\f35a"
}

.fa-arrow-alt-circle-up:before {
    content: "\f35b"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-arrows-alt-h:before {
    content: "\f337"
}

.fa-arrows-alt-v:before {
    content: "\f338"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-asymmetrik:before {
    content: "\f372"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-atlas:before {
    content: "\f558"
}

.fa-audible:before {
    content: "\f373"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-autoprefixer:before {
    content: "\f41c"
}

.fa-avianex:before {
    content: "\f374"
}

.fa-aviato:before {
    content: "\f421"
}

.fa-award:before {
    content: "\f559"
}

.fa-aws:before {
    content: "\f375"
}

.fa-backspace:before {
    content: "\f55a"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-band-aid:before {
    content: "\f462"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-bars:before {
    content: "\f0c9"
}

.fa-baseball-ball:before {
    content: "\f433"
}

.fa-basketball-ball:before {
    content: "\f434"
}

.fa-bath:before {
    content: "\f2cd"
}

.fa-battery-empty:before {
    content: "\f244"
}

.fa-battery-full:before {
    content: "\f240"
}

.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-bed:before {
    content: "\f236"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bezier-curve:before {
    content: "\f55b"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bimobject:before {
    content: "\f378"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitcoin:before {
    content: "\f379"
}

.fa-bity:before {
    content: "\f37a"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-blackberry:before {
    content: "\f37b"
}

.fa-blender:before {
    content: "\f517"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-blogger:before {
    content: "\f37c"
}

.fa-blogger-b:before {
    content: "\f37d"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-bold:before {
    content: "\f032"
}

.fa-bolt:before {
    content: "\f0e7"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-bong:before {
    content: "\f55c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-book-open:before {
    content: "\f518"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-bowling-ball:before {
    content: "\f436"
}

.fa-box:before {
    content: "\f466"
}

.fa-box-open:before {
    content: "\f49e"
}

.fa-boxes:before {
    content: "\f468"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-briefcase-medical:before {
    content: "\f469"
}

.fa-broadcast-tower:before {
    content: "\f519"
}

.fa-broom:before {
    content: "\f51a"
}

.fa-brush:before {
    content: "\f55d"
}

.fa-btc:before {
    content: "\f15a"
}

.fa-bug:before {
    content: "\f188"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-burn:before {
    content: "\f46a"
}

.fa-buromobelexperte:before {
    content: "\f37f"
}

.fa-bus:before {
    content: "\f207"
}

.fa-bus-alt:before {
    content: "\f55e"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-calendar:before {
    content: "\f133"
}

.fa-calendar-alt:before {
    content: "\f073"
}

.fa-calendar-check:before {
    content: "\f274"
}

.fa-calendar-minus:before {
    content: "\f272"
}

.fa-calendar-plus:before {
    content: "\f271"
}

.fa-calendar-times:before {
    content: "\f273"
}

.fa-camera:before {
    content: "\f030"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-cannabis:before {
    content: "\f55f"
}

.fa-capsules:before {
    content: "\f46b"
}

.fa-car:before {
    content: "\f1b9"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-caret-square-down:before {
    content: "\f150"
}

.fa-caret-square-left:before {
    content: "\f191"
}

.fa-caret-square-right:before {
    content: "\f152"
}

.fa-caret-square-up:before {
    content: "\f151"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cc-amazon-pay:before {
    content: "\f42d"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-apple-pay:before {
    content: "\f416"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-centercode:before {
    content: "\f380"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-chalkboard:before {
    content: "\f51b"
}

.fa-chalkboard-teacher:before {
    content: "\f51c"
}

.fa-chart-area:before {
    content: "\f1fe"
}

.fa-chart-bar:before {
    content: "\f080"
}

.fa-chart-line:before {
    content: "\f201"
}

.fa-chart-pie:before {
    content: "\f200"
}

.fa-check:before {
    content: "\f00c"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-check-double:before {
    content: "\f560"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-chess:before {
    content: "\f439"
}

.fa-chess-bishop:before {
    content: "\f43a"
}

.fa-chess-board:before {
    content: "\f43c"
}

.fa-chess-king:before {
    content: "\f43f"
}

.fa-chess-knight:before {
    content: "\f441"
}

.fa-chess-pawn:before {
    content: "\f443"
}

.fa-chess-queen:before {
    content: "\f445"
}

.fa-chess-rook:before {
    content: "\f447"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-church:before {
    content: "\f51d"
}

.fa-circle:before {
    content: "\f111"
}

.fa-circle-notch:before {
    content: "\f1ce"
}

.fa-clipboard:before {
    content: "\f328"
}

.fa-clipboard-check:before {
    content: "\f46c"
}

.fa-clipboard-list:before {
    content: "\f46d"
}

.fa-clock:before {
    content: "\f017"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-closed-captioning:before {
    content: "\f20a"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-cloud-download-alt:before {
    content: "\f381"
}

.fa-cloud-upload-alt:before {
    content: "\f382"
}

.fa-cloudscale:before {
    content: "\f383"
}

.fa-cloudsmith:before {
    content: "\f384"
}

.fa-cloudversify:before {
    content: "\f385"
}

.fa-cocktail:before {
    content: "\f561"
}

.fa-code:before {
    content: "\f121"
}

.fa-code-branch:before {
    content: "\f126"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cog:before {
    content: "\f013"
}

.fa-cogs:before {
    content: "\f085"
}

.fa-coins:before {
    content: "\f51e"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-comment:before {
    content: "\f075"
}

.fa-comment-alt:before {
    content: "\f27a"
}

.fa-comment-dots:before {
    content: "\f4ad"
}

.fa-comment-slash:before {
    content: "\f4b3"
}

.fa-comments:before {
    content: "\f086"
}

.fa-compact-disc:before {
    content: "\f51f"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-compress:before {
    content: "\f066"
}

.fa-concierge-bell:before {
    content: "\f562"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-cookie:before {
    content: "\f563"
}

.fa-cookie-bite:before {
    content: "\f564"
}

.fa-copy:before {
    content: "\f0c5"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-couch:before {
    content: "\f4b8"
}

.fa-cpanel:before {
    content: "\f388"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-creative-commons-by:before {
    content: "\f4e7"
}

.fa-creative-commons-nc:before {
    content: "\f4e8"
}

.fa-creative-commons-nc-eu:before {
    content: "\f4e9"
}

.fa-creative-commons-nc-jp:before {
    content: "\f4ea"
}

.fa-creative-commons-nd:before {
    content: "\f4eb"
}

.fa-creative-commons-pd:before {
    content: "\f4ec"
}

.fa-creative-commons-pd-alt:before {
    content: "\f4ed"
}

.fa-creative-commons-remix:before {
    content: "\f4ee"
}

.fa-creative-commons-sa:before {
    content: "\f4ef"
}

.fa-creative-commons-sampling:before {
    content: "\f4f0"
}

.fa-creative-commons-sampling-plus:before {
    content: "\f4f1"
}

.fa-creative-commons-share:before {
    content: "\f4f2"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-crop:before {
    content: "\f125"
}

.fa-crop-alt:before {
    content: "\f565"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-crow:before {
    content: "\f520"
}

.fa-crown:before {
    content: "\f521"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-css3-alt:before {
    content: "\f38b"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-cut:before {
    content: "\f0c4"
}

.fa-cuttlefish:before {
    content: "\f38c"
}

.fa-d-and-d:before {
    content: "\f38d"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-deaf:before {
    content: "\f2a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-deploydog:before {
    content: "\f38e"
}

.fa-deskpro:before {
    content: "\f38f"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-diagnoses:before {
    content: "\f470"
}

.fa-dice:before {
    content: "\f522"
}

.fa-dice-five:before {
    content: "\f523"
}

.fa-dice-four:before {
    content: "\f524"
}

.fa-dice-one:before {
    content: "\f525"
}

.fa-dice-six:before {
    content: "\f526"
}

.fa-dice-three:before {
    content: "\f527"
}

.fa-dice-two:before {
    content: "\f528"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-digital-ocean:before {
    content: "\f391"
}

.fa-digital-tachograph:before {
    content: "\f566"
}

.fa-discord:before {
    content: "\f392"
}

.fa-discourse:before {
    content: "\f393"
}

.fa-divide:before {
    content: "\f529"
}

.fa-dizzy:before {
    content: "\f567"
}

.fa-dna:before {
    content: "\f471"
}

.fa-dochub:before {
    content: "\f394"
}

.fa-docker:before {
    content: "\f395"
}

.fa-dollar-sign:before {
    content: "\f155"
}

.fa-dolly:before {
    content: "\f472"
}

.fa-dolly-flatbed:before {
    content: "\f474"
}

.fa-donate:before {
    content: "\f4b9"
}

.fa-door-closed:before {
    content: "\f52a"
}

.fa-door-open:before {
    content: "\f52b"
}

.fa-dot-circle:before {
    content: "\f192"
}

.fa-dove:before {
    content: "\f4ba"
}

.fa-download:before {
    content: "\f019"
}

.fa-draft2digital:before {
    content: "\f396"
}

.fa-drafting-compass:before {
    content: "\f568"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-dribbble-square:before {
    content: "\f397"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-drum:before {
    content: "\f569"
}

.fa-drum-steelpan:before {
    content: "\f56a"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-dumbbell:before {
    content: "\f44b"
}

.fa-dyalog:before {
    content: "\f399"
}

.fa-earlybirds:before {
    content: "\f39a"
}

.fa-ebay:before {
    content: "\f4f4"
}

.fa-edge:before {
    content: "\f282"
}

.fa-edit:before {
    content: "\f044"
}

.fa-eject:before {
    content: "\f052"
}

.fa-elementor:before {
    content: "\f430"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-ember:before {
    content: "\f423"
}

.fa-empire:before {
    content: "\f1d1"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-envira:before {
    content: "\f299"
}

.fa-equals:before {
    content: "\f52c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-erlang:before {
    content: "\f39d"
}

.fa-ethereum:before {
    content: "\f42e"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-euro-sign:before {
    content: "\f153"
}

.fa-exchange-alt:before {
    content: "\f362"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-exclamation-triangle:before {
    content: "\f071"
}

.fa-expand:before {
    content: "\f065"
}

.fa-expand-arrows-alt:before {
    content: "\f31e"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-external-link-alt:before {
    content: "\f35d"
}

.fa-external-link-square-alt:before {
    content: "\f360"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-dropper:before {
    content: "\f1fb"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-facebook:before {
    content: "\f09a"
}

.fa-facebook-f:before {
    content: "\f39e"
}

.fa-facebook-messenger:before {
    content: "\f39f"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-feather:before {
    content: "\f52d"
}

.fa-feather-alt:before {
    content: "\f56b"
}

.fa-female:before {
    content: "\f182"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-alt:before {
    content: "\f15c"
}

.fa-file-archive:before {
    content: "\f1c6"
}

.fa-file-audio:before {
    content: "\f1c7"
}

.fa-file-code:before {
    content: "\f1c9"
}

.fa-file-contract:before {
    content: "\f56c"
}

.fa-file-download:before {
    content: "\f56d"
}

.fa-file-excel:before {
    content: "\f1c3"
}

.fa-file-export:before {
    content: "\f56e"
}

.fa-file-image:before {
    content: "\f1c5"
}

.fa-file-import:before {
    content: "\f56f"
}

.fa-file-invoice:before {
    content: "\f570"
}

.fa-file-invoice-dollar:before {
    content: "\f571"
}

.fa-file-medical:before {
    content: "\f477"
}

.fa-file-medical-alt:before {
    content: "\f478"
}

.fa-file-pdf:before {
    content: "\f1c1"
}

.fa-file-powerpoint:before {
    content: "\f1c4"
}

.fa-file-prescription:before {
    content: "\f572"
}

.fa-file-signature:before {
    content: "\f573"
}

.fa-file-upload:before {
    content: "\f574"
}

.fa-file-video:before {
    content: "\f1c8"
}

.fa-file-word:before {
    content: "\f1c2"
}

.fa-fill:before {
    content: "\f575"
}

.fa-fill-drip:before {
    content: "\f576"
}

.fa-film:before {
    content: "\f008"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-fingerprint:before {
    content: "\f577"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-first-aid:before {
    content: "\f479"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-first-order-alt:before {
    content: "\f50a"
}

.fa-firstdraft:before {
    content: "\f3a1"
}

.fa-fish:before {
    content: "\f578"
}

.fa-flag:before {
    content: "\f024"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-flipboard:before {
    content: "\f44d"
}

.fa-flushed:before {
    content: "\f579"
}

.fa-fly:before {
    content: "\f417"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-font:before {
    content: "\f031"
}

.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-font-awesome-alt:before {
    content: "\f35c"
}

.fa-font-awesome-flag:before {
    content: "\f425"
}

.fa-font-awesome-logo-full:before {
    content: "\f4e6"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-fonticons-fi:before {
    content: "\f3a2"
}

.fa-football-ball:before {
    content: "\f44e"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-fort-awesome-alt:before {
    content: "\f3a3"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-freebsd:before {
    content: "\f3a4"
}

.fa-frog:before {
    content: "\f52e"
}

.fa-frown:before {
    content: "\f119"
}

.fa-frown-open:before {
    content: "\f57a"
}

.fa-fulcrum:before {
    content: "\f50b"
}

.fa-futbol:before {
    content: "\f1e3"
}

.fa-galactic-republic:before {
    content: "\f50c"
}

.fa-galactic-senate:before {
    content: "\f50d"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-gas-pump:before {
    content: "\f52f"
}

.fa-gavel:before {
    content: "\f0e3"
}

.fa-gem:before {
    content: "\f3a5"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-github:before {
    content: "\f09b"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-gitkraken:before {
    content: "\f3a6"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-gitter:before {
    content: "\f426"
}

.fa-glass-martini:before {
    content: "\f000"
}

.fa-glass-martini-alt:before {
    content: "\f57b"
}

.fa-glasses:before {
    content: "\f530"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-globe-africa:before {
    content: "\f57c"
}

.fa-globe-americas:before {
    content: "\f57d"
}

.fa-globe-asia:before {
    content: "\f57e"
}

.fa-gofore:before {
    content: "\f3a7"
}

.fa-golf-ball:before {
    content: "\f450"
}

.fa-goodreads:before {
    content: "\f3a8"
}

.fa-goodreads-g:before {
    content: "\f3a9"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-google-drive:before {
    content: "\f3aa"
}

.fa-google-play:before {
    content: "\f3ab"
}

.fa-google-plus:before {
    content: "\f2b3"
}

.fa-google-plus-g:before {
    content: "\f0d5"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-graduation-cap:before {
    content: "\f19d"
}

.fa-gratipay:before {
    content: "\f184"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-greater-than:before {
    content: "\f531"
}

.fa-greater-than-equal:before {
    content: "\f532"
}

.fa-grimace:before {
    content: "\f57f"
}

.fa-grin:before {
    content: "\f580"
}

.fa-grin-alt:before {
    content: "\f581"
}

.fa-grin-beam:before {
    content: "\f582"
}

.fa-grin-beam-sweat:before {
    content: "\f583"
}

.fa-grin-hearts:before {
    content: "\f584"
}

.fa-grin-squint:before {
    content: "\f585"
}

.fa-grin-squint-tears:before {
    content: "\f586"
}

.fa-grin-stars:before {
    content: "\f587"
}

.fa-grin-tears:before {
    content: "\f588"
}

.fa-grin-tongue:before {
    content: "\f589"
}

.fa-grin-tongue-squint:before {
    content: "\f58a"
}

.fa-grin-tongue-wink:before {
    content: "\f58b"
}

.fa-grin-wink:before {
    content: "\f58c"
}

.fa-grip-horizontal:before {
    content: "\f58d"
}

.fa-grip-vertical:before {
    content: "\f58e"
}

.fa-gripfire:before {
    content: "\f3ac"
}

.fa-grunt:before {
    content: "\f3ad"
}

.fa-gulp:before {
    content: "\f3ae"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-hacker-news:before {
    content: "\f1d4"
}

.fa-hacker-news-square:before {
    content: "\f3af"
}

.fa-hand-holding:before {
    content: "\f4bd"
}

.fa-hand-holding-heart:before {
    content: "\f4be"
}

.fa-hand-holding-usd:before {
    content: "\f4c0"
}

.fa-hand-lizard:before {
    content: "\f258"
}

.fa-hand-paper:before {
    content: "\f256"
}

.fa-hand-peace:before {
    content: "\f25b"
}

.fa-hand-point-down:before {
    content: "\f0a7"
}

.fa-hand-point-left:before {
    content: "\f0a5"
}

.fa-hand-point-right:before {
    content: "\f0a4"
}

.fa-hand-point-up:before {
    content: "\f0a6"
}

.fa-hand-pointer:before {
    content: "\f25a"
}

.fa-hand-rock:before {
    content: "\f255"
}

.fa-hand-scissors:before {
    content: "\f257"
}

.fa-hand-spock:before {
    content: "\f259"
}

.fa-hands:before {
    content: "\f4c2"
}

.fa-hands-helping:before {
    content: "\f4c4"
}

.fa-handshake:before {
    content: "\f2b5"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-hdd:before {
    content: "\f0a0"
}

.fa-heading:before {
    content: "\f1dc"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-headphones-alt:before {
    content: "\f58f"
}

.fa-headset:before {
    content: "\f590"
}

.fa-heart:before {
    content: "\f004"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-helicopter:before {
    content: "\f533"
}

.fa-highlighter:before {
    content: "\f591"
}

.fa-hips:before {
    content: "\f452"
}

.fa-hire-a-helper:before {
    content: "\f3b0"
}

.fa-history:before {
    content: "\f1da"
}

.fa-hockey-puck:before {
    content: "\f453"
}

.fa-home:before {
    content: "\f015"
}

.fa-hooli:before {
    content: "\f427"
}

.fa-hornbill:before {
    content: "\f592"
}

.fa-hospital:before {
    content: "\f0f8"
}

.fa-hospital-alt:before {
    content: "\f47d"
}

.fa-hospital-symbol:before {
    content: "\f47e"
}

.fa-hot-tub:before {
    content: "\f593"
}

.fa-hotel:before {
    content: "\f594"
}

.fa-hotjar:before {
    content: "\f3b1"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-start:before {
    content: "\f251"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-hubspot:before {
    content: "\f3b2"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-id-card:before {
    content: "\f2c2"
}

.fa-id-card-alt:before {
    content: "\f47f"
}

.fa-image:before {
    content: "\f03e"
}

.fa-images:before {
    content: "\f302"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-industry:before {
    content: "\f275"
}

.fa-infinity:before {
    content: "\f534"
}

.fa-info:before {
    content: "\f129"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-italic:before {
    content: "\f033"
}

.fa-itunes:before {
    content: "\f3b4"
}

.fa-itunes-note:before {
    content: "\f3b5"
}

.fa-java:before {
    content: "\f4e4"
}

.fa-jedi-order:before {
    content: "\f50e"
}

.fa-jenkins:before {
    content: "\f3b6"
}

.fa-joget:before {
    content: "\f3b7"
}

.fa-joint:before {
    content: "\f595"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-js:before {
    content: "\f3b8"
}

.fa-js-square:before {
    content: "\f3b9"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-key:before {
    content: "\f084"
}

.fa-keybase:before {
    content: "\f4f5"
}

.fa-keyboard:before {
    content: "\f11c"
}

.fa-keycdn:before {
    content: "\f3ba"
}

.fa-kickstarter:before {
    content: "\f3bb"
}

.fa-kickstarter-k:before {
    content: "\f3bc"
}

.fa-kiss:before {
    content: "\f596"
}

.fa-kiss-beam:before {
    content: "\f597"
}

.fa-kiss-wink-heart:before {
    content: "\f598"
}

.fa-kiwi-bird:before {
    content: "\f535"
}

.fa-korvue:before {
    content: "\f42f"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-laravel:before {
    content: "\f3bd"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-laugh:before {
    content: "\f599"
}

.fa-laugh-beam:before {
    content: "\f59a"
}

.fa-laugh-squint:before {
    content: "\f59b"
}

.fa-laugh-wink:before {
    content: "\f59c"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-lemon:before {
    content: "\f094"
}

.fa-less:before {
    content: "\f41d"
}

.fa-less-than:before {
    content: "\f536"
}

.fa-less-than-equal:before {
    content: "\f537"
}

.fa-level-down-alt:before {
    content: "\f3be"
}

.fa-level-up-alt:before {
    content: "\f3bf"
}

.fa-life-ring:before {
    content: "\f1cd"
}

.fa-lightbulb:before {
    content: "\f0eb"
}

.fa-line:before {
    content: "\f3c0"
}

.fa-link:before {
    content: "\f0c1"
}

.fa-linkedin:before {
    content: "\f08c"
}

.fa-linkedin-in:before {
    content: "\f0e1"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-lira-sign:before {
    content: "\f195"
}

.fa-list:before {
    content: "\f03a"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-lock:before {
    content: "\f023"
}

.fa-lock-open:before {
    content: "\f3c1"
}

.fa-long-arrow-alt-down:before {
    content: "\f309"
}

.fa-long-arrow-alt-left:before {
    content: "\f30a"
}

.fa-long-arrow-alt-right:before {
    content: "\f30b"
}

.fa-long-arrow-alt-up:before {
    content: "\f30c"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-luggage-cart:before {
    content: "\f59d"
}

.fa-lyft:before {
    content: "\f3c3"
}

.fa-magento:before {
    content: "\f3c4"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-mailchimp:before {
    content: "\f59e"
}

.fa-male:before {
    content: "\f183"
}

.fa-mandalorian:before {
    content: "\f50f"
}

.fa-map:before {
    content: "\f279"
}

.fa-map-marked:before {
    content: "\f59f"
}

.fa-map-marked-alt:before {
    content: "\f5a0"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-map-marker-alt:before {
    content: "\f3c5"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-marker:before {
    content: "\f5a1"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mastodon:before {
    content: "\f4f6"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-medal:before {
    content: "\f5a2"
}

.fa-medapps:before {
    content: "\f3c6"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-medium-m:before {
    content: "\f3c7"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-medrt:before {
    content: "\f3c8"
}

.fa-meetup:before {
    content: "\f2e0"
}

.fa-megaport:before {
    content: "\f5a3"
}

.fa-meh:before {
    content: "\f11a"
}

.fa-meh-blank:before {
    content: "\f5a4"
}

.fa-meh-rolling-eyes:before {
    content: "\f5a5"
}

.fa-memory:before {
    content: "\f538"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-alt:before {
    content: "\f3c9"
}

.fa-microphone-alt-slash:before {
    content: "\f539"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-microsoft:before {
    content: "\f3ca"
}

.fa-minus:before {
    content: "\f068"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-mix:before {
    content: "\f3cb"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-mizuni:before {
    content: "\f3cc"
}

.fa-mobile:before {
    content: "\f10b"
}

.fa-mobile-alt:before {
    content: "\f3cd"
}

.fa-modx:before {
    content: "\f285"
}

.fa-monero:before {
    content: "\f3d0"
}

.fa-money-bill:before {
    content: "\f0d6"
}

.fa-money-bill-alt:before {
    content: "\f3d1"
}

.fa-money-bill-wave:before {
    content: "\f53a"
}

.fa-money-bill-wave-alt:before {
    content: "\f53b"
}

.fa-money-check:before {
    content: "\f53c"
}

.fa-money-check-alt:before {
    content: "\f53d"
}

.fa-monument:before {
    content: "\f5a6"
}

.fa-moon:before {
    content: "\f186"
}

.fa-mortar-pestle:before {
    content: "\f5a7"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-music:before {
    content: "\f001"
}

.fa-napster:before {
    content: "\f3d2"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-newspaper:before {
    content: "\f1ea"
}

.fa-nimblr:before {
    content: "\f5a8"
}

.fa-nintendo-switch:before {
    content: "\f418"
}

.fa-node:before {
    content: "\f419"
}

.fa-node-js:before {
    content: "\f3d3"
}

.fa-not-equal:before {
    content: "\f53e"
}

.fa-notes-medical:before {
    content: "\f481"
}

.fa-npm:before {
    content: "\f3d4"
}

.fa-ns8:before {
    content: "\f3d5"
}

.fa-nutritionix:before {
    content: "\f3d6"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-old-republic:before {
    content: "\f510"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-osi:before {
    content: "\f41a"
}

.fa-outdent:before {
    content: "\f03b"
}

.fa-page4:before {
    content: "\f3d7"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-paint-roller:before {
    content: "\f5aa"
}

.fa-palette:before {
    content: "\f53f"
}

.fa-palfed:before {
    content: "\f3d8"
}

.fa-pallet:before {
    content: "\f482"
}

.fa-paper-plane:before {
    content: "\f1d8"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-parachute-box:before {
    content: "\f4cd"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-parking:before {
    content: "\f540"
}

.fa-passport:before {
    content: "\f5ab"
}

.fa-paste:before {
    content: "\f0ea"
}

.fa-patreon:before {
    content: "\f3d9"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-pen:before {
    content: "\f304"
}

.fa-pen-alt:before {
    content: "\f305"
}

.fa-pen-fancy:before {
    content: "\f5ac"
}

.fa-pen-nib:before {
    content: "\f5ad"
}

.fa-pen-square:before {
    content: "\f14b"
}

.fa-pencil-alt:before {
    content: "\f303"
}

.fa-pencil-ruler:before {
    content: "\f5ae"
}

.fa-people-carry:before {
    content: "\f4ce"
}

.fa-percent:before {
    content: "\f295"
}

.fa-percentage:before {
    content: "\f541"
}

.fa-periscope:before {
    content: "\f3da"
}

.fa-phabricator:before {
    content: "\f3db"
}

.fa-phoenix-framework:before {
    content: "\f3dc"
}

.fa-phoenix-squadron:before {
    content: "\f511"
}

.fa-phone:before {
    content: "\f095"
}

.fa-phone-slash:before {
    content: "\f3dd"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-phone-volume:before {
    content: "\f2a0"
}

.fa-php:before {
    content: "\f457"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-pied-piper-hat:before {
    content: "\f4e5"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-piggy-bank:before {
    content: "\f4d3"
}

.fa-pills:before {
    content: "\f484"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-plane:before {
    content: "\f072"
}

.fa-plane-arrival:before {
    content: "\f5af"
}

.fa-plane-departure:before {
    content: "\f5b0"
}

.fa-play:before {
    content: "\f04b"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-playstation:before {
    content: "\f3df"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-plus:before {
    content: "\f067"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-poo:before {
    content: "\f2fe"
}

.fa-portrait:before {
    content: "\f3e0"
}

.fa-pound-sign:before {
    content: "\f154"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-prescription:before {
    content: "\f5b1"
}

.fa-prescription-bottle:before {
    content: "\f485"
}

.fa-prescription-bottle-alt:before {
    content: "\f486"
}

.fa-print:before {
    content: "\f02f"
}

.fa-procedures:before {
    content: "\f487"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-project-diagram:before {
    content: "\f542"
}

.fa-pushed:before {
    content: "\f3e1"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-python:before {
    content: "\f3e2"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-question:before {
    content: "\f128"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-quidditch:before {
    content: "\f458"
}

.fa-quinscape:before {
    content: "\f459"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-r-project:before {
    content: "\f4f7"
}

.fa-random:before {
    content: "\f074"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-react:before {
    content: "\f41b"
}

.fa-readme:before {
    content: "\f4d5"
}

.fa-rebel:before {
    content: "\f1d0"
}

.fa-receipt:before {
    content: "\f543"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-red-river:before {
    content: "\f3e3"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-redo:before {
    content: "\f01e"
}

.fa-redo-alt:before {
    content: "\f2f9"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-rendact:before {
    content: "\f3e4"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-reply:before {
    content: "\f3e5"
}

.fa-reply-all:before {
    content: "\f122"
}

.fa-replyd:before {
    content: "\f3e6"
}

.fa-researchgate:before {
    content: "\f4f8"
}

.fa-resolving:before {
    content: "\f3e7"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-ribbon:before {
    content: "\f4d6"
}

.fa-road:before {
    content: "\f018"
}

.fa-robot:before {
    content: "\f544"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-rocketchat:before {
    content: "\f3e8"
}

.fa-rockrms:before {
    content: "\f3e9"
}

.fa-rss:before {
    content: "\f09e"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-ruble-sign:before {
    content: "\f158"
}

.fa-ruler:before {
    content: "\f545"
}

.fa-ruler-combined:before {
    content: "\f546"
}

.fa-ruler-horizontal:before {
    content: "\f547"
}

.fa-ruler-vertical:before {
    content: "\f548"
}

.fa-rupee-sign:before {
    content: "\f156"
}

.fa-sad-cry:before {
    content: "\f5b3"
}

.fa-sad-tear:before {
    content: "\f5b4"
}

.fa-safari:before {
    content: "\f267"
}

.fa-sass:before {
    content: "\f41e"
}

.fa-save:before {
    content: "\f0c7"
}

.fa-schlix:before {
    content: "\f3ea"
}

.fa-school:before {
    content: "\f549"
}

.fa-screwdriver:before {
    content: "\f54a"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-search:before {
    content: "\f002"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-searchengin:before {
    content: "\f3eb"
}

.fa-seedling:before {
    content: "\f4d8"
}

.fa-sellcast:before {
    content: "\f2da"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-server:before {
    content: "\f233"
}

.fa-servicestack:before {
    content: "\f3ec"
}

.fa-share:before {
    content: "\f064"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-shekel-sign:before {
    content: "\f20b"
}

.fa-shield-alt:before {
    content: "\f3ed"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-shipping-fast:before {
    content: "\f48b"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-shoe-prints:before {
    content: "\f54b"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-shopware:before {
    content: "\f5b5"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-shuttle-van:before {
    content: "\f5b6"
}

.fa-sign:before {
    content: "\f4d9"
}

.fa-sign-in-alt:before {
    content: "\f2f6"
}

.fa-sign-language:before {
    content: "\f2a7"
}

.fa-sign-out-alt:before {
    content: "\f2f5"
}

.fa-signal:before {
    content: "\f012"
}

.fa-signature:before {
    content: "\f5b7"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-sistrix:before {
    content: "\f3ee"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-sith:before {
    content: "\f512"
}

.fa-skull:before {
    content: "\f54c"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-slack:before {
    content: "\f198"
}

.fa-slack-hash:before {
    content: "\f3ef"
}

.fa-sliders-h:before {
    content: "\f1de"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-smile:before {
    content: "\f118"
}

.fa-smile-beam:before {
    content: "\f5b8"
}

.fa-smile-wink:before {
    content: "\f4da"
}

.fa-smoking:before {
    content: "\f48d"
}

.fa-smoking-ban:before {
    content: "\f54d"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-snowflake:before {
    content: "\f2dc"
}

.fa-solar-panel:before {
    content: "\f5ba"
}

.fa-sort:before {
    content: "\f0dc"
}

.fa-sort-alpha-down:before {
    content: "\f15d"
}

.fa-sort-alpha-up:before {
    content: "\f15e"
}

.fa-sort-amount-down:before {
    content: "\f160"
}

.fa-sort-amount-up:before {
    content: "\f161"
}

.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-numeric-down:before {
    content: "\f162"
}

.fa-sort-numeric-up:before {
    content: "\f163"
}

.fa-sort-up:before {
    content: "\f0de"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-spa:before {
    content: "\f5bb"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-speakap:before {
    content: "\f3f3"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-splotch:before {
    content: "\f5bc"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-spray-can:before {
    content: "\f5bd"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-square-full:before {
    content: "\f45c"
}

.fa-squarespace:before {
    content: "\f5be"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-stamp:before {
    content: "\f5bf"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-star-half-alt:before {
    content: "\f5c0"
}

.fa-staylinked:before {
    content: "\f3f5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-steam-symbol:before {
    content: "\f3f6"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-sticker-mule:before {
    content: "\f3f7"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stopwatch:before {
    content: "\f2f2"
}

.fa-store:before {
    content: "\f54e"
}

.fa-store-alt:before {
    content: "\f54f"
}

.fa-strava:before {
    content: "\f428"
}

.fa-stream:before {
    content: "\f550"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-stripe:before {
    content: "\f429"
}

.fa-stripe-s:before {
    content: "\f42a"
}

.fa-stroopwafel:before {
    content: "\f551"
}

.fa-studiovinari:before {
    content: "\f3f8"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-subway:before {
    content: "\f239"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-suitcase-rolling:before {
    content: "\f5c1"
}

.fa-sun:before {
    content: "\f185"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-supple:before {
    content: "\f3f9"
}

.fa-surprise:before {
    content: "\f5c2"
}

.fa-swatchbook:before {
    content: "\f5c3"
}

.fa-swimmer:before {
    content: "\f5c4"
}

.fa-swimming-pool:before {
    content: "\f5c5"
}

.fa-sync:before {
    content: "\f021"
}

.fa-sync-alt:before {
    content: "\f2f1"
}

.fa-syringe:before {
    content: "\f48e"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-table-tennis:before {
    content: "\f45d"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-tablet-alt:before {
    content: "\f3fa"
}

.fa-tablets:before {
    content: "\f490"
}

.fa-tachometer-alt:before {
    content: "\f3fd"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-tape:before {
    content: "\f4db"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-taxi:before {
    content: "\f1ba"
}

.fa-teamspeak:before {
    content: "\f4f9"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-telegram-plane:before {
    content: "\f3fe"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-themeco:before {
    content: "\f5c6"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-thermometer:before {
    content: "\f491"
}

.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-thermometer-full:before {
    content: "\f2c7"
}

.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbtack:before {
    content: "\f08d"
}

.fa-ticket-alt:before {
    content: "\f3ff"
}

.fa-times:before {
    content: "\f00d"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-tint:before {
    content: "\f043"
}

.fa-tint-slash:before {
    content: "\f5c7"
}

.fa-tired:before {
    content: "\f5c8"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-toolbox:before {
    content: "\f552"
}

.fa-tooth:before {
    content: "\f5c9"
}

.fa-trade-federation:before {
    content: "\f513"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-train:before {
    content: "\f238"
}

.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-trash-alt:before {
    content: "\f2ed"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-trello:before {
    content: "\f181"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-truck-loading:before {
    content: "\f4de"
}

.fa-truck-moving:before {
    content: "\f4df"
}

.fa-tshirt:before {
    content: "\f553"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-tv:before {
    content: "\f26c"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-typo3:before {
    content: "\f42b"
}

.fa-uber:before {
    content: "\f402"
}

.fa-uikit:before {
    content: "\f403"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-umbrella-beach:before {
    content: "\f5ca"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-undo:before {
    content: "\f0e2"
}

.fa-undo-alt:before {
    content: "\f2ea"
}

.fa-uniregistry:before {
    content: "\f404"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-university:before {
    content: "\f19c"
}

.fa-unlink:before {
    content: "\f127"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-untappd:before {
    content: "\f405"
}

.fa-upload:before {
    content: "\f093"
}

.fa-usb:before {
    content: "\f287"
}

.fa-user:before {
    content: "\f007"
}

.fa-user-alt:before {
    content: "\f406"
}

.fa-user-alt-slash:before {
    content: "\f4fa"
}

.fa-user-astronaut:before {
    content: "\f4fb"
}

.fa-user-check:before {
    content: "\f4fc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-clock:before {
    content: "\f4fd"
}

.fa-user-cog:before {
    content: "\f4fe"
}

.fa-user-edit:before {
    content: "\f4ff"
}

.fa-user-friends:before {
    content: "\f500"
}

.fa-user-graduate:before {
    content: "\f501"
}

.fa-user-lock:before {
    content: "\f502"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-user-minus:before {
    content: "\f503"
}

.fa-user-ninja:before {
    content: "\f504"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-user-shield:before {
    content: "\f505"
}

.fa-user-slash:before {
    content: "\f506"
}

.fa-user-tag:before {
    content: "\f507"
}

.fa-user-tie:before {
    content: "\f508"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-users:before {
    content: "\f0c0"
}

.fa-users-cog:before {
    content: "\f509"
}

.fa-ussunnah:before {
    content: "\f407"
}

.fa-utensil-spoon:before {
    content: "\f2e5"
}

.fa-utensils:before {
    content: "\f2e7"
}

.fa-vaadin:before {
    content: "\f408"
}

.fa-vector-square:before {
    content: "\f5cb"
}

.fa-venus:before {
    content: "\f221"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-vial:before {
    content: "\f492"
}

.fa-vials:before {
    content: "\f493"
}

.fa-viber:before {
    content: "\f409"
}

.fa-video:before {
    content: "\f03d"
}

.fa-video-slash:before {
    content: "\f4e2"
}

.fa-vimeo:before {
    content: "\f40a"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-vimeo-v:before {
    content: "\f27d"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-vk:before {
    content: "\f189"
}

.fa-vnv:before {
    content: "\f40b"
}

.fa-volleyball-ball:before {
    content: "\f45f"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-vuejs:before {
    content: "\f41f"
}

.fa-walking:before {
    content: "\f554"
}

.fa-wallet:before {
    content: "\f555"
}

.fa-warehouse:before {
    content: "\f494"
}

.fa-weebly:before {
    content: "\f5cc"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-weight:before {
    content: "\f496"
}

.fa-weight-hanging:before {
    content: "\f5cd"
}

.fa-weixin:before {
    content: "\f1d7"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-whatsapp-square:before {
    content: "\f40c"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-whmcs:before {
    content: "\f40d"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-window-close:before {
    content: "\f410"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-wine-glass:before {
    content: "\f4e3"
}

.fa-wine-glass-alt:before {
    content: "\f5ce"
}

.fa-wix:before {
    content: "\f5cf"
}

.fa-wolf-pack-battalion:before {
    content: "\f514"
}

.fa-won-sign:before {
    content: "\f159"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-wordpress-simple:before {
    content: "\f411"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-x-ray:before {
    content: "\f497"
}

.fa-xbox:before {
    content: "\f412"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-y-combinator:before {
    content: "\f23b"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-yandex:before {
    content: "\f413"
}

.fa-yandex-international:before {
    content: "\f414"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-yen-sign:before {
    content: "\f157"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-youtube-square:before {
    content: "\f431"
}

.sr-only {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto
}


/* @font-face {
    font-family: "Font Awesome 5 Brands";
    font-style: normal;
    font-weight: 400;
    src: url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-brands-400.eot);
    src: url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-brands-400.eot?#iefix) format("embedded-opentype"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-brands-400.woff2) format("woff2"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-brands-400.woff) format("woff"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-brands-400.ttf) format("truetype"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-brands-400.svg#fontawesome) format("svg")
}

.fab {
    font-family: "Font Awesome 5 Brands"
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 400;
    src: url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-regular-400.eot);
    src: url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-regular-400.eot?#iefix) format("embedded-opentype"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-regular-400.woff2) format("woff2"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-regular-400.woff) format("woff"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-regular-400.ttf) format("truetype"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-regular-400.svg#fontawesome) format("svg")
}

.far {
    font-weight: 400
}

@font-face {
    font-family: "Font Awesome 5 Free";
    font-style: normal;
    font-weight: 900;
    src: url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-solid-900.eot);
    src: url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-solid-900.eot?#iefix) format("embedded-opentype"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-solid-900.woff2) format("woff2"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-solid-900.woff) format("woff"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-solid-900.ttf) format("truetype"), url(//www.midas.ac.in/wp-content/plugins/download-manager/assets/fontawesome/css/../webfonts/fa-solid-900.svg#fontawesome) format("svg")
} */

.fa,
.far,
.fas {
    font-family: "Font Awesome 5 Free"
}

.fa,
.fas {
    font-weight: 900
}


/*!
 * Bootstrap v3.3.4 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */


/*! normalize.css v3.0.2 | MIT License | git.io/normalize */


/*! Source: https://github.com/h5bp/html5-boilerplate/blob/master/src/css/main.css */

.w3eden html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%
}

.w3eden body {
    margin: 0
}

.w3eden article,
.w3eden aside,
.w3eden details,
.w3eden figcaption,
.w3eden figure,
.w3eden footer,
.w3eden header,
.w3eden hgroup,
.w3eden main,
.w3eden menu,
.w3eden nav,
.w3eden section,
.w3eden summary {
    display: block
}

.w3eden audio,
.w3eden canvas,
.w3eden progress,
.w3eden video {
    display: inline-block;
    vertical-align: baseline
}

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

.w3eden [hidden],
.w3eden template {
    display: none
}

.w3eden a {
    background-color: transparent
}

.w3eden a:active,
.w3eden a:hover {
    outline: 0
}

.w3eden abbr[title] {
    border-bottom: 1px dotted
}

.w3eden b,
.w3eden strong {
    font-weight: 700
}

.w3eden dfn {
    font-style: italic
}

.w3eden h1 {
    margin: .67em 0;
    font-size: 2em
}

.w3eden mark {
    color: #000;
    background: #ff0
}

.w3eden small {
    font-size: 80%
}

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

.w3eden sup {
    top: -.5em
}

.w3eden sub {
    bottom: -.25em
}

.w3eden img {
    border: 0
}

.w3eden svg:not(:root) {
    overflow: hidden
}

.w3eden figure {
    margin: 1em 40px
}

.w3eden hr {
    height: 0;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.w3eden pre {
    overflow: auto
}

.w3eden code,
.w3eden kbd,
.w3eden pre,
.w3eden samp {
    font-family: monospace, monospace;
    font-size: 1em
}

.w3eden button,
.w3eden input,
.w3eden optgroup,
.w3eden select,
.w3eden textarea {
    margin: 0;
    font: inherit;
    color: inherit
}

.w3eden button {
    overflow: visible
}

.w3eden button,
.w3eden select {
    text-transform: none
}

.w3eden button,
.w3eden html input[type=button],
.w3eden input[type=reset],
.w3eden input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

.w3eden button[disabled],
.w3eden html input[disabled] {
    cursor: default
}

.w3eden button::-moz-focus-inner,
.w3eden input::-moz-focus-inner {
    padding: 0;
    border: 0
}

.w3eden input {
    line-height: normal
}

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

.w3eden input[type=number]::-webkit-inner-spin-button,
.w3eden input[type=number]::-webkit-outer-spin-button {
    height: auto
}

.w3eden input[type=search] {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield
}

.w3eden input[type=search]::-webkit-search-cancel-button,
.w3eden input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

.w3eden fieldset {
    padding: .35em .625em .75em;
    margin: 0 2px;
    border: 1px solid silver
}

.w3eden legend {
    padding: 0;
    border: 0
}

.w3eden textarea {
    overflow: auto
}

.w3eden optgroup {
    font-weight: 700
}

.w3eden table {
    border-spacing: 0;
    border-collapse: collapse
}

.w3eden td,
.w3eden th {
    padding: 0
}

@media print {
    .w3eden *,
    .w3eden :after,
    .w3eden :before {
        color: #000!important;
        text-shadow: none!important;
        background: 0 0!important;
        -webkit-box-shadow: none!important;
        box-shadow: none !important
    }
    .w3eden a,
    .w3eden a:visited {
        text-decoration: underline
    }
    .w3eden a[href]:after {
        content: " (" attr(href) ")"
    }
    .w3eden abbr[title]:after {
        content: " (" attr(title) ")"
    }
    .w3eden a[href^="javascript:"]:after,
    .w3eden a[href^="#"]:after {
        content: ""
    }
    .w3eden blockquote,
    .w3eden pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }
    .w3eden thead {
        display: table-header-group
    }
    .w3eden img,
    .w3eden tr {
        page-break-inside: avoid
    }
    .w3eden img {
        max-width: 100% !important
    }
    .w3eden h2,
    .w3eden h3,
    .w3eden p {
        orphans: 3;
        widows: 3
    }
    .w3eden h2,
    .w3eden h3 {
        page-break-after: avoid
    }
    .w3eden select {
        background: #fff !important
    }
    .w3eden .navbar {
        display: none
    }
    .w3eden .btn>.caret,
    .w3eden .dropup>.btn>.caret {
        border-top-color: #000 !important
    }
    .w3eden .label {
        border: 1px solid #000
    }
    .w3eden .table {
        border-collapse: collapse !important
    }
    .w3eden .table td,
    .w3eden .table th {
        background-color: #fff !important
    }
    .w3eden .table-bordered td,
    .w3eden .table-bordered th {
        border: 1px solid #ddd !important
    }
}

.w3eden * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.w3eden :after,
.w3eden :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.w3eden html {
    font-size: 10px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0)
}

.w3eden body {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.42857143;
    color: #333;
    background-color: #fff
}

.w3eden button,
.w3eden input,
.w3eden select,
.w3eden textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

.w3eden a {
    color: #337ab7;
    text-decoration: none
}

.w3eden a:focus,
.w3eden a:hover {
    color: #23527c;
    text-decoration: underline
}

.w3eden a:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.w3eden figure {
    margin: 0
}

.w3eden img {
    vertical-align: middle
}

.w3eden .carousel-inner>.item>a>img,
.w3eden .carousel-inner>.item>img,
.w3eden .img-responsive,
.w3eden .thumbnail a>img,
.w3eden .thumbnail>img {
    display: block;
    max-width: 100%;
    height: auto
}

.w3eden .img-rounded {
    border-radius: 6px
}

.w3eden .img-thumbnail {
    display: inline-block;
    max-width: 100%;
    height: auto;
    padding: 4px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out
}

.w3eden .img-circle {
    border-radius: 50%
}

.w3eden hr {
    margin-top: 20px;
    margin-bottom: 20px;
    border: 0;
    border-top: 1px solid #eee
}

.w3eden .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.w3eden .sr-only-focusable:active,
.w3eden .sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

.w3eden [role=button] {
    cursor: pointer
}

.w3eden .h1,
.w3eden .h2,
.w3eden .h3,
.w3eden .h4,
.w3eden .h5,
.w3eden .h6,
.w3eden h1,
.w3eden h2,
.w3eden h3,
.w3eden h4,
.w3eden h5,
.w3eden h6 {
    font-family: inherit;
    font-weight: 500;
    line-height: 1.1;
    color: inherit
}

.w3eden .h1 .small,
.w3eden .h1 small,
.w3eden .h2 .small,
.w3eden .h2 small,
.w3eden .h3 .small,
.w3eden .h3 small,
.w3eden .h4 .small,
.w3eden .h4 small,
.w3eden .h5 .small,
.w3eden .h5 small,
.w3eden .h6 .small,
.w3eden .h6 small,
.w3eden h1 .small,
.w3eden h1 small,
.w3eden h2 .small,
.w3eden h2 small,
.w3eden h3 .small,
.w3eden h3 small,
.w3eden h4 .small,
.w3eden h4 small,
.w3eden h5 .small,
.w3eden h5 small,
.w3eden h6 .small,
.w3eden h6 small {
    font-weight: 400;
    line-height: 1;
    color: #777
}

.w3eden .h1,
.w3eden .h2,
.w3eden .h3,
.w3eden h1,
.w3eden h2,
.w3eden h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

.w3eden .h1 .small,
.w3eden .h1 small,
.w3eden .h2 .small,
.w3eden .h2 small,
.w3eden .h3 .small,
.w3eden .h3 small,
.w3eden h1 .small,
.w3eden h1 small,
.w3eden h2 .small,
.w3eden h2 small,
.w3eden h3 .small,
.w3eden h3 small {
    font-size: 65%
}

.w3eden .h4,
.w3eden .h5,
.w3eden .h6,
.w3eden h4,
.w3eden h5,
.w3eden h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

.w3eden .h4 .small,
.w3eden .h4 small,
.w3eden .h5 .small,
.w3eden .h5 small,
.w3eden .h6 .small,
.w3eden .h6 small,
.w3eden h4 .small,
.w3eden h4 small,
.w3eden h5 .small,
.w3eden h5 small,
.w3eden h6 .small,
.w3eden h6 small {
    font-size: 75%
}

.w3eden .h1,
.w3eden h1 {
    font-size: 36px
}

.w3eden .h2,
.w3eden h2 {
    font-size: 30px
}

.w3eden .h3,
.w3eden h3 {
    font-size: 24px
}

.w3eden .h4,
.w3eden h4 {
    font-size: 18px
}

.w3eden .h5,
.w3eden h5 {
    font-size: 14px
}

.w3eden .h6,
.w3eden h6 {
    font-size: 12px
}

.w3eden p {
    margin: 0 0 10px
}

.w3eden .lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

@media (min-width:768px) {
    .w3eden .lead {
        font-size: 21px
    }
}

.w3eden .small,
.w3eden small {
    font-size: 85%
}

.w3eden .mark,
.w3eden mark {
    padding: .2em;
    background-color: #fcf8e3
}

.w3eden .text-left {
    text-align: left
}

.w3eden .text-right {
    text-align: right
}

.w3eden .text-center {
    text-align: center
}

.w3eden .text-justify {
    text-align: justify
}

.w3eden .text-nowrap {
    white-space: nowrap
}

.w3eden .text-lowercase {
    text-transform: lowercase
}

.w3eden .text-uppercase {
    text-transform: uppercase
}

.w3eden .text-capitalize {
    text-transform: capitalize
}

.w3eden .text-muted {
    color: #777
}

.w3eden .text-primary {
    color: #337ab7
}

.w3eden a.text-primary:hover {
    color: #286090
}

.w3eden .text-success {
    color: #3c763d
}

.w3eden a.text-success:hover {
    color: #2b542c
}

.w3eden .text-info {
    color: #31708f
}

.w3eden a.text-info:hover {
    color: #245269
}

.w3eden .text-warning {
    color: #8a6d3b
}

.w3eden a.text-warning:hover {
    color: #66512c
}

.w3eden .text-danger {
    color: #a94442
}

.w3eden a.text-danger:hover {
    color: #843534
}

.w3eden .bg-primary {
    color: #fff;
    background-color: #337ab7
}

.w3eden a.bg-primary:hover {
    background-color: #286090
}

.w3eden .bg-success {
    background-color: #dff0d8
}

.w3eden a.bg-success:hover {
    background-color: #c1e2b3
}

.w3eden .bg-info {
    background-color: #d9edf7
}

.w3eden a.bg-info:hover {
    background-color: #afd9ee
}

.w3eden .bg-warning {
    background-color: #fcf8e3
}

.w3eden a.bg-warning:hover {
    background-color: #f7ecb5
}

.w3eden .bg-danger {
    background-color: #f2dede
}

.w3eden a.bg-danger:hover {
    background-color: #e4b9b9
}

.w3eden .page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

.w3eden ol,
.w3eden ul {
    margin-top: 0;
    margin-bottom: 10px
}

.w3eden ol ol,
.w3eden ol ul,
.w3eden ul ol,
.w3eden ul ul {
    margin-bottom: 0
}

.w3eden .list-unstyled {
    padding-left: 0;
    list-style: none
}

.w3eden .list-inline {
    padding-left: 0;
    margin-left: -5px;
    list-style: none
}

.w3eden .list-inline>li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px
}

.w3eden dl {
    margin-top: 0;
    margin-bottom: 20px
}

.w3eden dd,
.w3eden dt {
    line-height: 1.42857143
}

.w3eden dt {
    font-weight: 700
}

.w3eden dd {
    margin-left: 0
}

@media (min-width:768px) {
    .w3eden .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap
    }
    .w3eden .dl-horizontal dd {
        margin-left: 180px
    }
}

.w3eden abbr[data-original-title],
.w3eden abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.w3eden .initialism {
    font-size: 90%;
    text-transform: uppercase
}

.w3eden blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    font-size: 17.5px;
    border-left: 5px solid #eee
}

.w3eden blockquote ol:last-child,
.w3eden blockquote p:last-child,
.w3eden blockquote ul:last-child {
    margin-bottom: 0
}

.w3eden blockquote .small,
.w3eden blockquote footer,
.w3eden blockquote small {
    display: block;
    font-size: 80%;
    line-height: 1.42857143;
    color: #777
}

.w3eden blockquote .small:before,
.w3eden blockquote footer:before,
.w3eden blockquote small:before {
    content: '\2014 \00A0'
}

.w3eden code,
.w3eden kbd,
.w3eden pre,
.w3eden samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

.w3eden code {
    padding: 2px 4px;
    font-size: 90%;
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

.w3eden kbd {
    padding: 2px 4px;
    font-size: 90%;
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25)
}

.w3eden kbd kbd {
    padding: 0;
    font-size: 100%;
    font-weight: 700;
    -webkit-box-shadow: none;
    box-shadow: none
}

.w3eden pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857143;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

.w3eden pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0
}

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

.w3eden .container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

@media (min-width:768px) {
    .w3eden .container {
        width: 750px
    }
}

@media (min-width:992px) {
    .w3eden .container {
        width: 970px
    }
}

@media (min-width:1200px) {
    .w3eden .container {
        width: 1170px
    }
    .clr {
        clear: both;
    }
}

.w3eden .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto
}

.w3eden .row {
    margin-right: -15px;
    margin-left: -15px
}

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

.w3eden .col-xs-1,
.w3eden .col-xs-10,
.w3eden .col-xs-11,
.w3eden .col-xs-12,
.w3eden .col-xs-2,
.w3eden .col-xs-3,
.w3eden .col-xs-4,
.w3eden .col-xs-5,
.w3eden .col-xs-6,
.w3eden .col-xs-7,
.w3eden .col-xs-8,
.w3eden .col-xs-9 {
    float: left
}

.w3eden .col-xs-12 {
    width: 100%
}

.w3eden .col-xs-11 {
    width: 91.66666667%
}

.w3eden .col-xs-10 {
    width: 83.33333333%
}

.w3eden .col-xs-9 {
    width: 75%
}

.w3eden .col-xs-8 {
    width: 66.66666667%
}

.w3eden .col-xs-7 {
    width: 58.33333333%
}

.w3eden .col-xs-6 {
    width: 50%
}

.w3eden .col-xs-5 {
    width: 41.66666667%
}

.w3eden .col-xs-4 {
    width: 33.33333333%
}

.w3eden .col-xs-3 {
    width: 25%
}

.w3eden .col-xs-2 {
    width: 16.66666667%
}

.w3eden .col-xs-1 {
    width: 8.33333333%
}

.w3eden .col-xs-pull-12 {
    right: 100%
}

.w3eden .col-xs-pull-11 {
    right: 91.66666667%
}

.w3eden .col-xs-pull-10 {
    right: 83.33333333%
}

.w3eden .col-xs-pull-9 {
    right: 75%
}

.w3eden .col-xs-pull-8 {
    right: 66.66666667%
}

.w3eden .col-xs-pull-7 {
    right: 58.33333333%
}

.w3eden .col-xs-pull-6 {
    right: 50%
}

.w3eden .col-xs-pull-5 {
    right: 41.66666667%
}

.w3eden .col-xs-pull-4 {
    right: 33.33333333%
}

.w3eden .col-xs-pull-3 {
    right: 25%
}

.w3eden .col-xs-pull-2 {
    right: 16.66666667%
}

.w3eden .col-xs-pull-1 {
    right: 8.33333333%
}

.w3eden .col-xs-pull-0 {
    right: auto
}

.w3eden .col-xs-push-12 {
    left: 100%
}

.w3eden .col-xs-push-11 {
    left: 91.66666667%
}

.w3eden .col-xs-push-10 {
    left: 83.33333333%
}

.w3eden .col-xs-push-9 {
    left: 75%
}

.w3eden .col-xs-push-8 {
    left: 66.66666667%
}

.w3eden .col-xs-push-7 {
    left: 58.33333333%
}

.w3eden .col-xs-push-6 {
    left: 50%
}

.w3eden .col-xs-push-5 {
    left: 41.66666667%
}

.w3eden .col-xs-push-4 {
    left: 33.33333333%
}

.w3eden .col-xs-push-3 {
    left: 25%
}

.w3eden .col-xs-push-2 {
    left: 16.66666667%
}

.w3eden .col-xs-push-1 {
    left: 8.33333333%
}

.w3eden .col-xs-push-0 {
    left: auto
}

.w3eden .col-xs-offset-12 {
    margin-left: 100%
}

.w3eden .col-xs-offset-11 {
    margin-left: 91.66666667%
}

.w3eden .col-xs-offset-10 {
    margin-left: 83.33333333%
}

.w3eden .col-xs-offset-9 {
    margin-left: 75%
}

.w3eden .col-xs-offset-8 {
    margin-left: 66.66666667%
}

.w3eden .col-xs-offset-7 {
    margin-left: 58.33333333%
}

.w3eden .col-xs-offset-6 {
    margin-left: 50%
}

.w3eden .col-xs-offset-5 {
    margin-left: 41.66666667%
}

.w3eden .col-xs-offset-4 {
    margin-left: 33.33333333%
}

.w3eden .col-xs-offset-3 {
    margin-left: 25%
}

.w3eden .col-xs-offset-2 {
    margin-left: 16.66666667%
}

.w3eden .col-xs-offset-1 {
    margin-left: 8.33333333%
}

.w3eden .col-xs-offset-0 {
    margin-left: 0
}

@media (min-width:768px) {
    .w3eden .col-sm-1,
    .w3eden .col-sm-10,
    .w3eden .col-sm-11,
    .w3eden .col-sm-12,
    .w3eden .col-sm-2,
    .w3eden .col-sm-3,
    .w3eden .col-sm-4,
    .w3eden .col-sm-5,
    .w3eden .col-sm-6,
    .w3eden .col-sm-7,
    .w3eden .col-sm-8,
    .w3eden .col-sm-9 {
        float: left
    }
    .w3eden .col-sm-12 {
        width: 100%
    }
    .w3eden .col-sm-11 {
        width: 91.66666667%
    }
    .w3eden .col-sm-10 {
        width: 83.33333333%
    }
    .w3eden .col-sm-9 {
        width: 75%
    }
    .w3eden .col-sm-8 {
        width: 66.66666667%
    }
    .w3eden .col-sm-7 {
        width: 58.33333333%
    }
    .w3eden .col-sm-6 {
        width: 50%
    }
    .w3eden .col-sm-5 {
        width: 41.66666667%
    }
    .w3eden .col-sm-4 {
        width: 33.33333333%
    }
    .w3eden .col-sm-3 {
        width: 25%
    }
    .w3eden .col-sm-2 {
        width: 16.66666667%
    }
    .w3eden .col-sm-1 {
        width: 8.33333333%
    }
    .w3eden .col-sm-offset-12 {
        margin-left: 100%
    }
    .w3eden .col-sm-offset-11 {
        margin-left: 91.66666667%
    }
    .w3eden .col-sm-offset-10 {
        margin-left: 83.33333333%
    }
    .w3eden .col-sm-offset-9 {
        margin-left: 75%
    }
    .w3eden .col-sm-offset-8 {
        margin-left: 66.66666667%
    }
    .w3eden .col-sm-offset-7 {
        margin-left: 58.33333333%
    }
    .w3eden .col-sm-offset-6 {
        margin-left: 50%
    }
    .w3eden .col-sm-offset-5 {
        margin-left: 41.66666667%
    }
    .w3eden .col-sm-offset-4 {
        margin-left: 33.33333333%
    }
    .w3eden .col-sm-offset-3 {
        margin-left: 25%
    }
    .w3eden .col-sm-offset-2 {
        margin-left: 16.66666667%
    }
    .w3eden .col-sm-offset-1 {
        margin-left: 8.33333333%
    }
    .w3eden .col-sm-offset-0 {
        margin-left: 0
    }
}

@media (min-width:992px) {
    .w3eden .col-md-1,
    .w3eden .col-md-10,
    .w3eden .col-md-11,
    .w3eden .col-md-12,
    .w3eden .col-md-2,
    .w3eden .col-md-3,
    .w3eden .col-md-4,
    .w3eden .col-md-5,
    .w3eden .col-md-6,
    .w3eden .col-md-7,
    .w3eden .col-md-8,
    .w3eden .col-md-9 {
        float: left
    }
    .w3eden .col-md-12 {
        width: 100%
    }
    .w3eden .col-md-11 {
        width: 91.66666667%
    }
    .w3eden .col-md-10 {
        width: 83.33333333%
    }
    .w3eden .col-md-9 {
        width: 75%
    }
    .w3eden .col-md-8 {
        width: 66.66666667%
    }
    .w3eden .col-md-7 {
        width: 58.33333333%
    }
    .w3eden .col-md-6 {
        width: 50%
    }
    .w3eden .col-md-5 {
        width: 41.66666667%
    }
    .w3eden .col-md-4 {
        width: 33.33333333%
    }
    .w3eden .col-md-3 {
        width: 25%
    }
    .w3eden .col-md-2 {
        width: 16.66666667%
    }
    .w3eden .col-md-1 {
        width: 8.33333333%
    }
    .w3eden .col-md-offset-12 {
        margin-left: 100%
    }
    .w3eden .col-md-offset-11 {
        margin-left: 91.66666667%
    }
    .w3eden .col-md-offset-10 {
        margin-left: 83.33333333%
    }
    .w3eden .col-md-offset-9 {
        margin-left: 75%
    }
    .w3eden .col-md-offset-8 {
        margin-left: 66.66666667%
    }
    .w3eden .col-md-offset-7 {
        margin-left: 58.33333333%
    }
    .w3eden .col-md-offset-6 {
        margin-left: 50%
    }
    .w3eden .col-md-offset-5 {
        margin-left: 41.66666667%
    }
    .w3eden .col-md-offset-4 {
        margin-left: 33.33333333%
    }
    .w3eden .col-md-offset-3 {
        margin-left: 25%
    }
    .w3eden .col-md-offset-2 {
        margin-left: 16.66666667%
    }
    .w3eden .col-md-offset-1 {
        margin-left: 8.33333333%
    }
    .w3eden .col-md-offset-0 {
        margin-left: 0
    }
}

@media (min-width:1200px) {
    .w3eden .col-lg-1,
    .w3eden .col-lg-10,
    .w3eden .col-lg-11,
    .w3eden .col-lg-12,
    .w3eden .col-lg-2,
    .w3eden .col-lg-3,
    .w3eden .col-lg-4,
    .w3eden .col-lg-5,
    .w3eden .col-lg-6,
    .w3eden .col-lg-7,
    .w3eden .col-lg-8,
    .w3eden .col-lg-9 {
        float: left
    }
    .w3eden .col-lg-12 {
        width: 100%
    }
    .w3eden .col-lg-11 {
        width: 91.66666667%
    }
    .w3eden .col-lg-10 {
        width: 83.33333333%
    }
    .w3eden .col-lg-9 {
        width: 75%
    }
    .w3eden .col-lg-8 {
        width: 66.66666667%
    }
    .w3eden .col-lg-7 {
        width: 58.33333333%
    }
    .w3eden .col-lg-6 {
        width: 50%
    }
    .w3eden .col-lg-5 {
        width: 41.66666667%
    }
    .w3eden .col-lg-4 {
        width: 33.33333333%
    }
    .w3eden .col-lg-3 {
        width: 25%
    }
    .w3eden .col-lg-2 {
        width: 16.66666667%
    }
    .w3eden .col-lg-1 {
        width: 8.33333333%
    }
    .w3eden .col-lg-offset-12 {
        margin-left: 100%
    }
    .w3eden .col-lg-offset-11 {
        margin-left: 91.66666667%
    }
    .w3eden .col-lg-offset-10 {
        margin-left: 83.33333333%
    }
    .w3eden .col-lg-offset-9 {
        margin-left: 75%
    }
    .w3eden .col-lg-offset-8 {
        margin-left: 66.66666667%
    }
    .w3eden .col-lg-offset-7 {
        margin-left: 58.33333333%
    }
    .w3eden .col-lg-offset-6 {
        margin-left: 50%
    }
    .w3eden .col-lg-offset-5 {
        margin-left: 41.66666667%
    }
    .w3eden .col-lg-offset-4 {
        margin-left: 33.33333333%
    }
    .w3eden .col-lg-offset-3 {
        margin-left: 25%
    }
    .w3eden .col-lg-offset-2 {
        margin-left: 16.66666667%
    }
    .w3eden .col-lg-offset-1 {
        margin-left: 8.33333333%
    }
    .w3eden .col-lg-offset-0 {
        margin-left: 0
    }
}

.w3eden table {
    background-color: transparent
}

.w3eden caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777;
    text-align: left
}

.w3eden th {
    text-align: left
}

.w3eden .table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px
}

.w3eden .table>tbody>tr>td,
.w3eden .table>tbody>tr>th,
.w3eden .table>tfoot>tr>td,
.w3eden .table>tfoot>tr>th,
.w3eden .table>thead>tr>td,
.w3eden .table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.w3eden .table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.w3eden .table>caption+thead>tr:first-child>td,
.w3eden .table>caption+thead>tr:first-child>th,
.w3eden .table>colgroup+thead>tr:first-child>td,
.w3eden .table>colgroup+thead>tr:first-child>th,
.w3eden .table>thead:first-child>tr:first-child>td,
.w3eden .table>thead:first-child>tr:first-child>th {
    border-top: 0
}

.w3eden .table>tbody+tbody {
    border-top: 2px solid #ddd
}

.w3eden .table .table {
    background-color: #fff
}

.w3eden .table-condensed>tbody>tr>td,
.w3eden .table-condensed>tbody>tr>th,
.w3eden .table-condensed>tfoot>tr>td,
.w3eden .table-condensed>tfoot>tr>th,
.w3eden .table-condensed>thead>tr>td,
.w3eden .table-condensed>thead>tr>th {
    padding: 5px
}

.w3eden .table-bordered {
    border: 1px solid #ddd
}

.w3eden .table-bordered>tbody>tr>td,
.w3eden .table-bordered>tbody>tr>th,
.w3eden .table-bordered>tfoot>tr>td,
.w3eden .table-bordered>tfoot>tr>th,
.w3eden .table-bordered>thead>tr>td,
.w3eden .table-bordered>thead>tr>th {
    border: 1px solid #ddd
}

.w3eden .table-bordered>thead>tr>td,
.w3eden .table-bordered>thead>tr>th {
    border-bottom-width: 2px
}

.w3eden .table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.w3eden .table-hover>tbody>tr:hover {
    background-color: #f5f5f5
}

.w3eden table col[class*=col-] {
    position: static;
    display: table-column;
    float: none
}

.w3eden table td[class*=col-],
.w3eden table th[class*=col-] {
    position: static;
    display: table-cell;
    float: none
}

.w3eden .table>tbody>tr.active>td,
.w3eden .table>tbody>tr.active>th,
.w3eden .table>tbody>tr>td.active,
.w3eden .table>tbody>tr>th.active,
.w3eden .table>tfoot>tr.active>td,
.w3eden .table>tfoot>tr.active>th,
.w3eden .table>tfoot>tr>td.active,
.w3eden .table>tfoot>tr>th.active,
.w3eden .table>thead>tr.active>td,
.w3eden .table>thead>tr.active>th,
.w3eden .table>thead>tr>td.active,
.w3eden .table>thead>tr>th.active {
    background-color: #f5f5f5
}

.w3eden .table-hover>tbody>tr.active:hover>td,
.w3eden .table-hover>tbody>tr.active:hover>th,
.w3eden .table-hover>tbody>tr:hover>.active,
.w3eden .table-hover>tbody>tr>td.active:hover,
.w3eden .table-hover>tbody>tr>th.active:hover {
    background-color: #e8e8e8
}

.w3eden .table-responsive {
    min-height: .01%;
    overflow-x: auto
}

@media screen and (max-width:767px) {
    .w3eden .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }
    .w3eden .table-responsive>.table {
        margin-bottom: 0
    }
    .w3eden .table-responsive>.table>tbody>tr>td,
    .w3eden .table-responsive>.table>tbody>tr>th,
    .w3eden .table-responsive>.table>tfoot>tr>td,
    .w3eden .table-responsive>.table>tfoot>tr>th,
    .w3eden .table-responsive>.table>thead>tr>td,
    .w3eden .table-responsive>.table>thead>tr>th {
        white-space: nowrap
    }
    .w3eden .table-responsive>.table-bordered {
        border: 0
    }
    .w3eden .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .w3eden .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .w3eden .table-responsive>.table-bordered>tfoot>tr>td:first-child,
    .w3eden .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .w3eden .table-responsive>.table-bordered>thead>tr>td:first-child,
    .w3eden .table-responsive>.table-bordered>thead>tr>th:first-child {
        border-left: 0
    }
    .w3eden .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .w3eden .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .w3eden .table-responsive>.table-bordered>tfoot>tr>td:last-child,
    .w3eden .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .w3eden .table-responsive>.table-bordered>thead>tr>td:last-child,
    .w3eden .table-responsive>.table-bordered>thead>tr>th:last-child {
        border-right: 0
    }
    .w3eden .table-responsive>.table-bordered>tbody>tr:last-child>td,
    .w3eden .table-responsive>.table-bordered>tbody>tr:last-child>th,
    .w3eden .table-responsive>.table-bordered>tfoot>tr:last-child>td,
    .w3eden .table-responsive>.table-bordered>tfoot>tr:last-child>th {
        border-bottom: 0
    }
    .reg-button {
        display: none !important;
    }
}

.w3eden fieldset {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

.w3eden legend {
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    color: #333;
    border: 0;
    border-bottom: 1px solid #e5e5e5
}

.w3eden label {
    display: inline-block;
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700
}

.w3eden input[type=search] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.w3eden input[type=checkbox],
.w3eden input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px \9;
    line-height: normal
}

.w3eden input[type=file] {
    display: block
}

.w3eden input[type=range] {
    display: block;
    width: 100%
}

.w3eden select[multiple],
.w3eden select[size] {
    height: auto
}

.w3eden input[type=file]:focus,
.w3eden input[type=checkbox]:focus,
.w3eden input[type=radio]:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.w3eden output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555
}

.w3eden .form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #d5d5d5;
    border-radius: 3px;
    box-shadow: none;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.w3eden .form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 3px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 3px rgba(102, 175, 233, .6)
}

.w3eden .form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.w3eden .form-control:-ms-input-placeholder {
    color: #999
}

.w3eden .form-control::-webkit-input-placeholder {
    color: #999
}

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

.w3eden .form-control[disabled],
.w3eden fieldset[disabled] .form-control {
    cursor: not-allowed
}

.w3eden textarea.form-control {
    height: auto
}

.w3eden input[type=search] {
    -webkit-appearance: none
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    .w3eden input[type=date],
    .w3eden input[type=time],
    .w3eden input[type=datetime-local],
    .w3eden input[type=month] {
        line-height: 34px
    }
    .w3eden .input-group-sm input[type=date],
    .w3eden .input-group-sm input[type=time],
    .w3eden .input-group-sm input[type=datetime-local],
    .w3eden .input-group-sm input[type=month],
    .w3eden input[type=date].input-sm,
    .w3eden input[type=time].input-sm,
    .w3eden input[type=datetime-local].input-sm,
    .w3eden input[type=month].input-sm {
        line-height: 30px
    }
    .w3eden .input-group-lg input[type=date],
    .w3eden .input-group-lg input[type=time],
    .w3eden .input-group-lg input[type=datetime-local],
    .w3eden .input-group-lg input[type=month],
    .w3eden input[type=date].input-lg,
    .w3eden input[type=time].input-lg,
    .w3eden input[type=datetime-local].input-lg,
    .w3eden input[type=month].input-lg {
        line-height: 46px
    }
}

.w3eden .form-group {
    margin-bottom: 15px
}

.w3eden .checkbox,
.w3eden .radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.w3eden .checkbox label,
.w3eden .radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

.w3eden .checkbox input[type=checkbox],
.w3eden .checkbox-inline input[type=checkbox],
.w3eden .radio input[type=radio],
.w3eden .radio-inline input[type=radio] {
    position: absolute;
    margin-top: 4px \9;
    margin-left: -20px
}

.w3eden .checkbox+.checkbox,
.w3eden .radio+.radio {
    margin-top: -5px
}

.w3eden .checkbox-inline,
.w3eden .radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer
}

.w3eden .checkbox-inline+.checkbox-inline,
.w3eden .radio-inline+.radio-inline {
    margin-top: 0;
    margin-left: 10px
}

.w3eden fieldset[disabled] input[type=checkbox],
.w3eden fieldset[disabled] input[type=radio],
.w3eden input[type=checkbox].disabled,
.w3eden input[type=checkbox][disabled],
.w3eden input[type=radio].disabled,
.w3eden input[type=radio][disabled] {
    cursor: not-allowed
}

.w3eden .checkbox-inline.disabled,
.w3eden .radio-inline.disabled,
.w3eden fieldset[disabled] .checkbox-inline,
.w3eden fieldset[disabled] .radio-inline {
    cursor: not-allowed
}

.w3eden .checkbox.disabled label,
.w3eden .radio.disabled label,
.w3eden fieldset[disabled] .checkbox label,
.w3eden fieldset[disabled] .radio label {
    cursor: not-allowed
}

.w3eden .form-control-static {
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0
}

.w3eden .form-control-static.input-lg,
.w3eden .form-control-static.input-sm {
    padding-right: 0;
    padding-left: 0
}

.w3eden .input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.w3eden select.input-sm {
    height: 30px;
    line-height: 30px
}

.w3eden select[multiple].input-sm,
.w3eden textarea.input-sm {
    height: auto
}

.w3eden .form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.w3eden select.form-group-sm .form-control {
    height: 30px;
    line-height: 30px
}

.w3eden select[multiple].form-group-sm .form-control,
.w3eden textarea.form-group-sm .form-control {
    height: auto
}

.w3eden .form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.w3eden .input-lg {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.w3eden select.input-lg {
    height: 46px;
    line-height: 46px
}

.w3eden select[multiple].input-lg,
.w3eden textarea.input-lg {
    height: auto
}

.w3eden .form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.w3eden select.form-group-lg .form-control {
    height: 46px;
    line-height: 46px
}

.w3eden select[multiple].form-group-lg .form-control,
.w3eden textarea.form-group-lg .form-control {
    height: auto
}

.w3eden .form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.w3eden .has-feedback {
    position: relative
}

.w3eden .has-feedback .form-control {
    padding-right: 42.5px
}

.w3eden .form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.w3eden .input-lg+.form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.w3eden .input-sm+.form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.w3eden .has-success .checkbox,
.w3eden .has-success .checkbox-inline,
.w3eden .has-success .control-label,
.w3eden .has-success .help-block,
.w3eden .has-success .radio,
.w3eden .has-success .radio-inline,
.w3eden .has-success.checkbox label,
.w3eden .has-success.checkbox-inline label,
.w3eden .has-success.radio label,
.w3eden .has-success.radio-inline label {
    color: #3c763d
}

.w3eden .has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.w3eden .has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.w3eden .has-success .input-group-addon {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #3c763d
}

.w3eden .has-success .form-control-feedback {
    color: #3c763d
}

.w3eden .has-warning .checkbox,
.w3eden .has-warning .checkbox-inline,
.w3eden .has-warning .control-label,
.w3eden .has-warning .help-block,
.w3eden .has-warning .radio,
.w3eden .has-warning .radio-inline,
.w3eden .has-warning.checkbox label,
.w3eden .has-warning.checkbox-inline label,
.w3eden .has-warning.radio label,
.w3eden .has-warning.radio-inline label {
    color: #8a6d3b
}

.w3eden .has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.w3eden .has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.w3eden .has-warning .input-group-addon {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #8a6d3b
}

.w3eden .has-warning .form-control-feedback {
    color: #8a6d3b
}

.w3eden .has-error .checkbox,
.w3eden .has-error .checkbox-inline,
.w3eden .has-error .control-label,
.w3eden .has-error .help-block,
.w3eden .has-error .radio,
.w3eden .has-error .radio-inline,
.w3eden .has-error.checkbox label,
.w3eden .has-error.checkbox-inline label,
.w3eden .has-error.radio label,
.w3eden .has-error.radio-inline label {
    color: #a94442
}

.w3eden .has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.w3eden .has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.w3eden .has-error .input-group-addon {
    color: #a94442;
    background-color: #f2dede;
    border-color: #a94442
}

.w3eden .has-error .form-control-feedback {
    color: #a94442
}

.w3eden .has-feedback label~.form-control-feedback {
    top: 25px
}

.w3eden .has-feedback label.sr-only~.form-control-feedback {
    top: 0
}

.w3eden .help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373
}

@media (min-width:768px) {
    .w3eden .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }
    .w3eden .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }
    .w3eden .form-inline .form-control-static {
        display: inline-block
    }
    .w3eden .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }
    .w3eden .form-inline .input-group .form-control,
    .w3eden .form-inline .input-group .input-group-addon,
    .w3eden .form-inline .input-group .input-group-btn {
        width: auto
    }
    .w3eden .form-inline .input-group>.form-control {
        width: 100%
    }
    .w3eden .form-inline .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }
    .w3eden .form-inline .checkbox,
    .w3eden .form-inline .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }
    .w3eden .form-inline .checkbox label,
    .w3eden .form-inline .radio label {
        padding-left: 0
    }
    .w3eden .form-inline .checkbox input[type=checkbox],
    .w3eden .form-inline .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }
    .w3eden .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
}

.w3eden .form-horizontal .checkbox,
.w3eden .form-horizontal .checkbox-inline,
.w3eden .form-horizontal .radio,
.w3eden .form-horizontal .radio-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0
}

.w3eden .form-horizontal .checkbox,
.w3eden .form-horizontal .radio {
    min-height: 27px
}

.w3eden .form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:768px) {
    .w3eden .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right
    }
}

.w3eden .form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media (min-width:768px) {
    .w3eden .form-horizontal .form-group-lg .control-label {
        padding-top: 14.33px
    }
}

@media (min-width:768px) {
    .w3eden .form-horizontal .form-group-sm .control-label {
        padding-top: 6px
    }
}

.w3eden .btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 3px
}

.w3eden .btn.active.focus,
.w3eden .btn.active:focus,
.w3eden .btn.focus,
.w3eden .btn:active.focus,
.w3eden .btn:active:focus,
.w3eden .btn:focus {
    outline: thin dotted;
    outline: 5px auto -webkit-focus-ring-color;
    outline-offset: -2px
}

.w3eden .btn.focus,
.w3eden .btn:focus,
.w3eden .btn:hover {
    color: #333;
    text-decoration: none
}

.w3eden .btn.active,
.w3eden .btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.w3eden .btn.disabled,
.w3eden .btn[disabled],
.w3eden fieldset[disabled] .btn {
    pointer-events: none;
    cursor: not-allowed;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65
}

.w3eden .btn-secondary {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.w3eden .btn-secondary.active,
.w3eden .btn-secondary.focus,
.w3eden .btn-secondary:active,
.w3eden .btn-secondary:focus,
.w3eden .btn-secondary:hover,
.w3eden .open>.dropdown-toggle.btn-secondary {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.w3eden .btn-secondary.active,
.w3eden .btn-secondary:active,
.w3eden .open>.dropdown-toggle.btn-secondary {
    background-image: none
}

.w3eden .btn-secondary.disabled,
.w3eden .btn-secondary.disabled.active,
.w3eden .btn-secondary.disabled.focus,
.w3eden .btn-secondary.disabled:active,
.w3eden .btn-secondary.disabled:focus,
.w3eden .btn-secondary.disabled:hover,
.w3eden .btn-secondary[disabled],
.w3eden .btn-secondary[disabled].active,
.w3eden .btn-secondary[disabled].focus,
.w3eden .btn-secondary[disabled]:active,
.w3eden .btn-secondary[disabled]:focus,
.w3eden .btn-secondary[disabled]:hover,
.w3eden fieldset[disabled] .btn-secondary,
.w3eden fieldset[disabled] .btn-secondary.active,
.w3eden fieldset[disabled] .btn-secondary.focus,
.w3eden fieldset[disabled] .btn-secondary:active,
.w3eden fieldset[disabled] .btn-secondary:focus,
.w3eden fieldset[disabled] .btn-secondary:hover {
    background-color: #fff;
    border-color: #ccc
}

.w3eden .btn-secondary .badge {
    color: #fff;
    background-color: #333
}

.w3eden .btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4
}

.w3eden .btn-primary.active,
.w3eden .btn-primary.focus,
.w3eden .btn-primary:active,
.w3eden .btn-primary:focus,
.w3eden .btn-primary:hover,
.w3eden .open>.dropdown-toggle.btn-primary {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.w3eden .btn-primary.active,
.w3eden .btn-primary:active,
.w3eden .open>.dropdown-toggle.btn-primary {
    background-image: none
}

.w3eden .btn-primary.disabled,
.w3eden .btn-primary.disabled.active,
.w3eden .btn-primary.disabled.focus,
.w3eden .btn-primary.disabled:active,
.w3eden .btn-primary.disabled:focus,
.w3eden .btn-primary.disabled:hover,
.w3eden .btn-primary[disabled],
.w3eden .btn-primary[disabled].active,
.w3eden .btn-primary[disabled].focus,
.w3eden .btn-primary[disabled]:active,
.w3eden .btn-primary[disabled]:focus,
.w3eden .btn-primary[disabled]:hover,
.w3eden fieldset[disabled] .btn-primary,
.w3eden fieldset[disabled] .btn-primary.active,
.w3eden fieldset[disabled] .btn-primary.focus,
.w3eden fieldset[disabled] .btn-primary:active,
.w3eden fieldset[disabled] .btn-primary:focus,
.w3eden fieldset[disabled] .btn-primary:hover {
    background-color: #337ab7;
    border-color: #2e6da4
}

.w3eden .btn-primary .badge {
    color: #337ab7;
    background-color: #fff
}

.w3eden .btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.w3eden .btn-success.active,
.w3eden .btn-success.focus,
.w3eden .btn-success:active,
.w3eden .btn-success:focus,
.w3eden .btn-success:hover,
.w3eden .open>.dropdown-toggle.btn-success {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.w3eden .btn-success.active,
.w3eden .btn-success:active,
.w3eden .open>.dropdown-toggle.btn-success {
    background-image: none
}

.w3eden .btn-success.disabled,
.w3eden .btn-success.disabled.active,
.w3eden .btn-success.disabled.focus,
.w3eden .btn-success.disabled:active,
.w3eden .btn-success.disabled:focus,
.w3eden .btn-success.disabled:hover,
.w3eden .btn-success[disabled],
.w3eden .btn-success[disabled].active,
.w3eden .btn-success[disabled].focus,
.w3eden .btn-success[disabled]:active,
.w3eden .btn-success[disabled]:focus,
.w3eden .btn-success[disabled]:hover,
.w3eden fieldset[disabled] .btn-success,
.w3eden fieldset[disabled] .btn-success.active,
.w3eden fieldset[disabled] .btn-success.focus,
.w3eden fieldset[disabled] .btn-success:active,
.w3eden fieldset[disabled] .btn-success:focus,
.w3eden fieldset[disabled] .btn-success:hover {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.w3eden .btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.w3eden .btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.w3eden .btn-info.active,
.w3eden .btn-info.focus,
.w3eden .btn-info:active,
.w3eden .btn-info:focus,
.w3eden .btn-info:hover,
.w3eden .open>.dropdown-toggle.btn-info {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.w3eden .btn-info.active,
.w3eden .btn-info:active,
.w3eden .open>.dropdown-toggle.btn-info {
    background-image: none
}

.w3eden .btn-info.disabled,
.w3eden .btn-info.disabled.active,
.w3eden .btn-info.disabled.focus,
.w3eden .btn-info.disabled:active,
.w3eden .btn-info.disabled:focus,
.w3eden .btn-info.disabled:hover,
.w3eden .btn-info[disabled],
.w3eden .btn-info[disabled].active,
.w3eden .btn-info[disabled].focus,
.w3eden .btn-info[disabled]:active,
.w3eden .btn-info[disabled]:focus,
.w3eden .btn-info[disabled]:hover,
.w3eden fieldset[disabled] .btn-info,
.w3eden fieldset[disabled] .btn-info.active,
.w3eden fieldset[disabled] .btn-info.focus,
.w3eden fieldset[disabled] .btn-info:active,
.w3eden fieldset[disabled] .btn-info:focus,
.w3eden fieldset[disabled] .btn-info:hover {
    background-color: #5bc0de;
    border-color: #46b8da
}

.w3eden .btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.w3eden .btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.w3eden .btn-warning.active,
.w3eden .btn-warning.focus,
.w3eden .btn-warning:active,
.w3eden .btn-warning:focus,
.w3eden .btn-warning:hover,
.w3eden .open>.dropdown-toggle.btn-warning {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.w3eden .btn-warning.active,
.w3eden .btn-warning:active,
.w3eden .open>.dropdown-toggle.btn-warning {
    background-image: none
}

.w3eden .btn-warning.disabled,
.w3eden .btn-warning.disabled.active,
.w3eden .btn-warning.disabled.focus,
.w3eden .btn-warning.disabled:active,
.w3eden .btn-warning.disabled:focus,
.w3eden .btn-warning.disabled:hover,
.w3eden .btn-warning[disabled],
.w3eden .btn-warning[disabled].active,
.w3eden .btn-warning[disabled].focus,
.w3eden .btn-warning[disabled]:active,
.w3eden .btn-warning[disabled]:focus,
.w3eden .btn-warning[disabled]:hover,
.w3eden fieldset[disabled] .btn-warning,
.w3eden fieldset[disabled] .btn-warning.active,
.w3eden fieldset[disabled] .btn-warning.focus,
.w3eden fieldset[disabled] .btn-warning:active,
.w3eden fieldset[disabled] .btn-warning:focus,
.w3eden fieldset[disabled] .btn-warning:hover {
    background-color: #f0ad4e;
    border-color: #eea236
}

.w3eden .btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.w3eden .btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.w3eden .btn-danger.active,
.w3eden .btn-danger.focus,
.w3eden .btn-danger:active,
.w3eden .btn-danger:focus,
.w3eden .btn-danger:hover,
.w3eden .open>.dropdown-toggle.btn-danger {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.w3eden .btn-danger.active,
.w3eden .btn-danger:active,
.w3eden .open>.dropdown-toggle.btn-danger {
    background-image: none
}

.w3eden .btn-danger.disabled,
.w3eden .btn-danger.disabled.active,
.w3eden .btn-danger.disabled.focus,
.w3eden .btn-danger.disabled:active,
.w3eden .btn-danger.disabled:focus,
.w3eden .btn-danger.disabled:hover,
.w3eden .btn-danger[disabled],
.w3eden .btn-danger[disabled].active,
.w3eden .btn-danger[disabled].focus,
.w3eden .btn-danger[disabled]:active,
.w3eden .btn-danger[disabled]:focus,
.w3eden .btn-danger[disabled]:hover,
.w3eden fieldset[disabled] .btn-danger,
.w3eden fieldset[disabled] .btn-danger.active,
.w3eden fieldset[disabled] .btn-danger.focus,
.w3eden fieldset[disabled] .btn-danger:active,
.w3eden fieldset[disabled] .btn-danger:focus,
.w3eden fieldset[disabled] .btn-danger:hover {
    background-color: #d9534f;
    border-color: #d43f3a
}

.w3eden .btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.w3eden .btn-link {
    font-weight: 400;
    color: #337ab7;
    border-radius: 0
}

.w3eden .btn-link,
.w3eden .btn-link.active,
.w3eden .btn-link:active,
.w3eden .btn-link[disabled],
.w3eden fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.w3eden .btn-link,
.w3eden .btn-link:active,
.w3eden .btn-link:focus,
.w3eden .btn-link:hover {
    border-color: transparent
}

.w3eden .btn-link:focus,
.w3eden .btn-link:hover {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent
}

.w3eden .btn-link[disabled]:focus,
.w3eden .btn-link[disabled]:hover,
.w3eden fieldset[disabled] .btn-link:focus,
.w3eden fieldset[disabled] .btn-link:hover {
    color: #777;
    text-decoration: none
}

.w3eden .btn-group-lg>.btn,
.w3eden .btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.w3eden .btn-group-sm>.btn,
.w3eden .btn-sm {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.w3eden .btn-group-xs>.btn,
.w3eden .btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

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

.w3eden .btn-block+.btn-block {
    margin-top: 5px
}

.w3eden input[type=button].btn-block,
.w3eden input[type=reset].btn-block,
.w3eden input[type=submit].btn-block {
    width: 100%
}

.w3eden .fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear
}

.w3eden .fade.in {
    opacity: 1
}

.w3eden .collapse {
    display: none
}

.w3eden .collapse.in {
    display: block
}

.w3eden tr.collapse.in {
    display: table-row
}

.w3eden tbody.collapse.in {
    display: table-row-group
}

.w3eden .collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    -webkit-transition-timing-function: ease;
    -o-transition-timing-function: ease;
    transition-timing-function: ease;
    -webkit-transition-duration: .35s;
    -o-transition-duration: .35s;
    transition-duration: .35s;
    -webkit-transition-property: height, visibility;
    -o-transition-property: height, visibility;
    transition-property: height, visibility
}

.w3eden .caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 2px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent
}

.w3eden .dropdown,
.w3eden .dropup {
    position: relative
}

.w3eden .dropdown-toggle:focus {
    outline: 0
}

.w3eden .dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175)
}

.w3eden .dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.w3eden .dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.w3eden .dropdown-menu>li>a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap
}

.w3eden .dropdown-menu>li>a:focus,
.w3eden .dropdown-menu>li>a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5
}

.w3eden .dropdown-menu>.active>a,
.w3eden .dropdown-menu>.active>a:focus,
.w3eden .dropdown-menu>.active>a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #337ab7;
    outline: 0
}

.w3eden .dropdown-menu>.disabled>a,
.w3eden .dropdown-menu>.disabled>a:focus,
.w3eden .dropdown-menu>.disabled>a:hover {
    color: #777
}

.w3eden .dropdown-menu>.disabled>a:focus,
.w3eden .dropdown-menu>.disabled>a:hover {
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent;
    background-image: none;
    filter: progid: DXImageTransform.Microsoft.gradient(enabled=false)
}

.w3eden .open>.dropdown-menu {
    display: block
}

.w3eden .open>a {
    outline: 0
}

.w3eden .dropdown-menu-right {
    right: 0;
    left: auto
}

.w3eden .dropdown-menu-left {
    right: auto;
    left: 0
}

.w3eden .dropdown-header {
    display: block;
    padding: 3px 20px;
    font-size: 12px;
    line-height: 1.42857143;
    color: #777;
    white-space: nowrap
}

.w3eden .dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990
}

.w3eden .pull-right>.dropdown-menu {
    right: 0;
    left: auto
}

.w3eden .dropup .caret,
.w3eden .navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px solid
}

.w3eden .dropup .dropdown-menu,
.w3eden .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width:768px) {
    .w3eden .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }
    .w3eden .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }
}

.w3eden .btn-group,
.w3eden .btn-group-vertical {
    position: relative;
    display: inline-block;
    vertical-align: middle
}

.w3eden .btn-group-vertical>.btn,
.w3eden .btn-group>.btn {
    position: relative;
    float: left
}

.w3eden .btn-group-vertical>.btn.active,
.w3eden .btn-group-vertical>.btn:active,
.w3eden .btn-group-vertical>.btn:focus,
.w3eden .btn-group-vertical>.btn:hover,
.w3eden .btn-group>.btn.active,
.w3eden .btn-group>.btn:active,
.w3eden .btn-group>.btn:focus,
.w3eden .btn-group>.btn:hover {
    z-index: 2
}

.w3eden .btn-group .btn+.btn,
.w3eden .btn-group .btn+.btn-group,
.w3eden .btn-group .btn-group+.btn,
.w3eden .btn-group .btn-group+.btn-group {
    margin-left: -1px
}

.w3eden .btn-toolbar {
    margin-left: -5px
}

.w3eden .btn-toolbar .btn-group,
.w3eden .btn-toolbar .input-group {
    float: left
}

.w3eden .btn-toolbar>.btn,
.w3eden .btn-toolbar>.btn-group,
.w3eden .btn-toolbar>.input-group {
    margin-left: 5px
}

.w3eden .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.w3eden .btn-group>.btn:first-child {
    margin-left: 0
}

.w3eden .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.w3eden .btn-group>.btn:last-child:not(:first-child),
.w3eden .btn-group>.dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.w3eden .btn-group>.btn-group {
    float: left
}

.w3eden .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.w3eden .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,
.w3eden .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.w3eden .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.w3eden .btn-group .dropdown-toggle:active,
.w3eden .btn-group.open .dropdown-toggle {
    outline: 0
}

.w3eden .btn-group>.btn+.dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px
}

.w3eden .btn-group>.btn-lg+.dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px
}

.w3eden .btn-group.open .dropdown-toggle {
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.w3eden .btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.w3eden .btn .caret {
    margin-left: 0
}

.w3eden .btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.w3eden .dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.w3eden .btn-group-vertical>.btn,
.w3eden .btn-group-vertical>.btn-group,
.w3eden .btn-group-vertical>.btn-group>.btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.w3eden .btn-group-vertical>.btn-group>.btn {
    float: none
}

.w3eden .btn-group-vertical>.btn+.btn,
.w3eden .btn-group-vertical>.btn+.btn-group,
.w3eden .btn-group-vertical>.btn-group+.btn,
.w3eden .btn-group-vertical>.btn-group+.btn-group {
    margin-top: -1px;
    margin-left: 0
}

.w3eden .btn-group-vertical>.btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.w3eden .btn-group-vertical>.btn:first-child:not(:last-child) {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.w3eden .btn-group-vertical>.btn:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px
}

.w3eden .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn {
    border-radius: 0
}

.w3eden .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,
.w3eden .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.w3eden .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.w3eden .btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.w3eden .btn-group-justified>.btn,
.w3eden .btn-group-justified>.btn-group {
    display: table-cell;
    float: none;
    width: 1%
}

.w3eden .btn-group-justified>.btn-group .btn {
    width: 100%
}

.w3eden .btn-group-justified>.btn-group .dropdown-menu {
    left: auto
}

.w3eden [data-toggle=buttons]>.btn input[type=checkbox],
.w3eden [data-toggle=buttons]>.btn input[type=radio],
.w3eden [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],
.w3eden [data-toggle=buttons]>.btn-group>.btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.w3eden .input-group {
    position: relative;
    display: table;
    border-collapse: separate
}

.w3eden .input-group[class*=col-] {
    float: none;
    padding-right: 0;
    padding-left: 0
}

.w3eden .input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.w3eden .input-group-lg>.form-control,
.w3eden .input-group-lg>.input-group-addon,
.w3eden .input-group-lg>.input-group-btn>.btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

.w3eden select.input-group-lg>.form-control,
.w3eden select.input-group-lg>.input-group-addon,
.w3eden select.input-group-lg>.input-group-btn>.btn {
    height: 46px;
    line-height: 46px
}

.w3eden select[multiple].input-group-lg>.form-control,
.w3eden select[multiple].input-group-lg>.input-group-addon,
.w3eden select[multiple].input-group-lg>.input-group-btn>.btn,
.w3eden textarea.input-group-lg>.form-control,
.w3eden textarea.input-group-lg>.input-group-addon,
.w3eden textarea.input-group-lg>.input-group-btn>.btn {
    height: auto
}

.w3eden .input-group-sm>.form-control,
.w3eden .input-group-sm>.input-group-addon,
.w3eden .input-group-sm>.input-group-btn>.btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.w3eden select.input-group-sm>.form-control,
.w3eden select.input-group-sm>.input-group-addon,
.w3eden select.input-group-sm>.input-group-btn>.btn {
    height: 30px;
    line-height: 30px
}

.w3eden select[multiple].input-group-sm>.form-control,
.w3eden select[multiple].input-group-sm>.input-group-addon,
.w3eden select[multiple].input-group-sm>.input-group-btn>.btn,
.w3eden textarea.input-group-sm>.form-control,
.w3eden textarea.input-group-sm>.input-group-addon,
.w3eden textarea.input-group-sm>.input-group-btn>.btn {
    height: auto
}

.w3eden .input-group .form-control,
.w3eden .input-group-addon,
.w3eden .input-group-btn {
    display: table-cell
}

.w3eden .input-group .form-control:not(:first-child):not(:last-child),
.w3eden .input-group-addon:not(:first-child):not(:last-child),
.w3eden .input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.w3eden .input-group-addon,
.w3eden .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.w3eden .input-group-addon {
    padding: 6px 12px;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    color: #555;
    text-align: center;
    background-color: #eee;
    border: 1px solid #ccc;
    border-radius: 3px
}

.w3eden .input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.w3eden .input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.w3eden .input-group-addon input[type=checkbox],
.w3eden .input-group-addon input[type=radio] {
    margin-top: 0
}

.w3eden .input-group .form-control:first-child,
.w3eden .input-group-addon:first-child,
.w3eden .input-group-btn:first-child>.btn,
.w3eden .input-group-btn:first-child>.btn-group>.btn,
.w3eden .input-group-btn:first-child>.dropdown-toggle,
.w3eden .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,
.w3eden .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.w3eden .input-group-addon:first-child {
    border-right: 0
}

.w3eden .input-group .form-control:last-child,
.w3eden .input-group-addon:last-child,
.w3eden .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,
.w3eden .input-group-btn:first-child>.btn:not(:first-child),
.w3eden .input-group-btn:last-child>.btn,
.w3eden .input-group-btn:last-child>.btn-group>.btn,
.w3eden .input-group-btn:last-child>.dropdown-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.w3eden .input-group-addon:last-child {
    border-left: 0
}

.w3eden .input-group-btn {
    position: relative;
    white-space: nowrap
}

.w3eden .input-group-btn>.btn {
    position: relative
}

.w3eden .input-group-btn>.btn+.btn {
    margin-left: -1px
}

.w3eden .input-group-btn>.btn:active,
.w3eden .input-group-btn>.btn:focus,
.w3eden .input-group-btn>.btn:hover {
    z-index: 2
}

.w3eden .input-group-btn:first-child>.btn,
.w3eden .input-group-btn:first-child>.btn-group {
    margin-right: -1px
}

.w3eden .input-group-btn:last-child>.btn,
.w3eden .input-group-btn:last-child>.btn-group {
    margin-left: -1px
}

.w3eden .nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.w3eden .nav>li {
    position: relative;
    display: block
}

.w3eden .nav>li>a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.w3eden .nav>li>a:focus,
.w3eden .nav>li>a:hover {
    text-decoration: none;
    background-color: #eee
}

.w3eden .nav>li.disabled>a {
    color: #777
}

.w3eden .nav>li.disabled>a:focus,
.w3eden .nav>li.disabled>a:hover {
    color: #777;
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent
}

.w3eden .nav .open>a,
.w3eden .nav .open>a:focus,
.w3eden .nav .open>a:hover {
    background-color: #eee;
    border-color: #337ab7
}

.w3eden .nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.w3eden .nav>li>a>img {
    max-width: none
}

.w3eden .nav-tabs {
    border-bottom: 1px solid #ddd
}

.w3eden .nav-tabs>li {
    float: left;
    margin-bottom: -1px
}

.w3eden .nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857143;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.w3eden .nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd
}

.w3eden .nav-tabs>li.active>a,
.w3eden .nav-tabs>li.active>a:focus,
.w3eden .nav-tabs>li.active>a:hover {
    color: #555;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent
}

.w3eden .nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0
}

.w3eden .nav-tabs.nav-justified>li {
    float: none
}

.w3eden .nav-tabs.nav-justified>li>a {
    margin-bottom: 5px;
    text-align: center
}

.w3eden .nav-tabs.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:768px) {
    .w3eden .nav-tabs.nav-justified>li {
        display: table-cell;
        width: 1%
    }
    .w3eden .nav-tabs.nav-justified>li>a {
        margin-bottom: 0
    }
}

.w3eden .nav-tabs.nav-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.w3eden .nav-tabs.nav-justified>.active>a,
.w3eden .nav-tabs.nav-justified>.active>a:focus,
.w3eden .nav-tabs.nav-justified>.active>a:hover {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .w3eden .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }
    .w3eden .nav-tabs.nav-justified>.active>a,
    .w3eden .nav-tabs.nav-justified>.active>a:focus,
    .w3eden .nav-tabs.nav-justified>.active>a:hover {
        border-bottom-color: #fff
    }
}

.w3eden .nav-pills>li {
    float: left
}

.w3eden .nav-pills>li>a {
    border-radius: 4px
}

.w3eden .nav-pills>li+li {
    margin-left: 2px
}

.w3eden .nav-pills>li.active>a,
.w3eden .nav-pills>li.active>a:focus,
.w3eden .nav-pills>li.active>a:hover {
    color: #fff;
    background-color: #337ab7
}

.w3eden .nav-stacked>li {
    float: none
}

.w3eden .nav-stacked>li+li {
    margin-top: 2px;
    margin-left: 0
}

.w3eden .nav-justified {
    width: 100%
}

.w3eden .nav-justified>li {
    float: none
}

.w3eden .nav-justified>li>a {
    margin-bottom: 5px;
    text-align: center
}

.w3eden .nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width:768px) {
    .w3eden .nav-justified>li {
        display: table-cell;
        width: 1%
    }
    .w3eden .nav-justified>li>a {
        margin-bottom: 0
    }
}

.w3eden .nav-tabs-justified {
    border-bottom: 0
}

.w3eden .nav-tabs-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.w3eden .nav-tabs-justified>.active>a,
.w3eden .nav-tabs-justified>.active>a:focus,
.w3eden .nav-tabs-justified>.active>a:hover {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .w3eden .nav-tabs-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }
    .w3eden .nav-tabs-justified>.active>a,
    .w3eden .nav-tabs-justified>.active>a:focus,
    .w3eden .nav-tabs-justified>.active>a:hover {
        border-bottom-color: #fff
    }
}

.w3eden .tab-content>.tab-pane {
    display: none
}

.w3eden .tab-content>.active {
    display: block
}

.w3eden .nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.w3eden .navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent
}

@media (min-width:768px) {
    .w3eden .navbar {
        border-radius: 4px
    }
}

@media (min-width:768px) {
    .w3eden .navbar-header {
        float: left
    }
}

.w3eden .navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1)
}

.w3eden .navbar-collapse.in {
    overflow-y: auto
}

@media (min-width:768px) {
    .w3eden .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
    .w3eden .navbar-collapse.collapse {
        display: block!important;
        height: auto!important;
        padding-bottom: 0;
        overflow: visible !important
    }
    .w3eden .navbar-collapse.in {
        overflow-y: visible
    }
    .w3eden .navbar-fixed-bottom .navbar-collapse,
    .w3eden .navbar-fixed-top .navbar-collapse,
    .w3eden .navbar-static-top .navbar-collapse {
        padding-right: 0;
        padding-left: 0
    }
}

.w3eden .navbar-fixed-bottom .navbar-collapse,
.w3eden .navbar-fixed-top .navbar-collapse {
    max-height: 340px
}

@media (max-device-width:480px) and (orientation:landscape) {
    .w3eden .navbar-fixed-bottom .navbar-collapse,
    .w3eden .navbar-fixed-top .navbar-collapse {
        max-height: 200px
    }
}

.w3eden .container-fluid>.navbar-collapse,
.w3eden .container-fluid>.navbar-header,
.w3eden .container>.navbar-collapse,
.w3eden .container>.navbar-header {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:768px) {
    .w3eden .container-fluid>.navbar-collapse,
    .w3eden .container-fluid>.navbar-header,
    .w3eden .container>.navbar-collapse,
    .w3eden .container>.navbar-header {
        margin-right: 0;
        margin-left: 0
    }
}

.w3eden .navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width:768px) {
    .w3eden .navbar-static-top {
        border-radius: 0
    }
}

.w3eden .navbar-fixed-bottom,
.w3eden .navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width:768px) {
    .w3eden .navbar-fixed-bottom,
    .w3eden .navbar-fixed-top {
        border-radius: 0
    }
}

.w3eden .navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.w3eden .navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.w3eden .navbar-brand {
    float: left;
    height: 50px;
    padding: 15px;
    font-size: 18px;
    line-height: 20px
}

.w3eden .navbar-brand:focus,
.w3eden .navbar-brand:hover {
    text-decoration: none
}

.w3eden .navbar-brand>img {
    display: block
}

@media (min-width:768px) {
    .w3eden .navbar>.container .navbar-brand,
    .w3eden .navbar>.container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.w3eden .navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background-color: transparent;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px
}

.w3eden .navbar-toggle:focus {
    outline: 0
}

.w3eden .navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.w3eden .navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px
}

@media (min-width:768px) {
    .w3eden .navbar-toggle {
        display: none
    }
}

.w3eden .navbar-nav {
    margin: 7.5px -15px
}

.w3eden .navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px
}

@media (max-width:767px) {
    .w3eden .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
    .w3eden .navbar-nav .open .dropdown-menu .dropdown-header,
    .w3eden .navbar-nav .open .dropdown-menu>li>a {
        padding: 5px 15px 5px 25px
    }
    .w3eden .navbar-nav .open .dropdown-menu>li>a {
        line-height: 20px
    }
    .w3eden .navbar-nav .open .dropdown-menu>li>a:focus,
    .w3eden .navbar-nav .open .dropdown-menu>li>a:hover {
        background-image: none
    }
}

@media (min-width:768px) {
    .w3eden .navbar-nav {
        float: left;
        margin: 0
    }
    .w3eden .navbar-nav>li {
        float: left
    }
    .w3eden .navbar-nav>li>a {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.w3eden .navbar-form {
    padding: 10px 15px;
    margin-top: 8px;
    margin-right: -15px;
    margin-bottom: 8px;
    margin-left: -15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1)
}

@media (min-width:768px) {
    .w3eden .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }
    .w3eden .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }
    .w3eden .navbar-form .form-control-static {
        display: inline-block
    }
    .w3eden .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }
    .w3eden .navbar-form .input-group .form-control,
    .w3eden .navbar-form .input-group .input-group-addon,
    .w3eden .navbar-form .input-group .input-group-btn {
        width: auto
    }
    .w3eden .navbar-form .input-group>.form-control {
        width: 100%
    }
    .w3eden .navbar-form .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }
    .w3eden .navbar-form .checkbox,
    .w3eden .navbar-form .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }
    .w3eden .navbar-form .checkbox label,
    .w3eden .navbar-form .radio label {
        padding-left: 0
    }
    .w3eden .navbar-form .checkbox input[type=checkbox],
    .w3eden .navbar-form .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }
    .w3eden .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
}

@media (max-width:767px) {
    .w3eden .navbar-form .form-group {
        margin-bottom: 5px
    }
    .w3eden .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width:768px) {
    .w3eden .navbar-form {
        width: auto;
        padding-top: 0;
        padding-bottom: 0;
        margin-right: 0;
        margin-left: 0;
        border: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.w3eden .navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.w3eden .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
    margin-bottom: 0;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.w3eden .navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px
}

.w3eden .navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px
}

.w3eden .navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px
}

.w3eden .navbar-text {
    margin-top: 15px;
    margin-bottom: 15px
}

@media (min-width:768px) {
    .w3eden .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px
    }
}

@media (min-width:768px) {
    .w3eden .navbar-left {
        float: left !important
    }
    .w3eden .navbar-right {
        float: right!important;
        margin-right: -15px
    }
    .w3eden .navbar-right~.navbar-right {
        margin-right: 0
    }
}

.w3eden .navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

.w3eden .navbar-default .navbar-brand {
    color: #777
}

.w3eden .navbar-default .navbar-brand:focus,
.w3eden .navbar-default .navbar-brand:hover {
    color: #5e5e5e;
    background-color: transparent
}

.w3eden .navbar-default .navbar-text {
    color: #777
}

.w3eden .navbar-default .navbar-nav>li>a {
    color: #777
}

.w3eden .navbar-default .navbar-nav>li>a:focus,
.w3eden .navbar-default .navbar-nav>li>a:hover {
    color: #333;
    background-color: transparent
}

.w3eden .navbar-default .navbar-nav>.active>a,
.w3eden .navbar-default .navbar-nav>.active>a:focus,
.w3eden .navbar-default .navbar-nav>.active>a:hover {
    color: #555;
    background-color: #e7e7e7
}

.w3eden .navbar-default .navbar-nav>.disabled>a,
.w3eden .navbar-default .navbar-nav>.disabled>a:focus,
.w3eden .navbar-default .navbar-nav>.disabled>a:hover {
    color: #ccc;
    background-color: transparent
}

.w3eden .navbar-default .navbar-toggle {
    border-color: #ddd
}

.w3eden .navbar-default .navbar-toggle:focus,
.w3eden .navbar-default .navbar-toggle:hover {
    background-color: #ddd
}

.w3eden .navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.w3eden .navbar-default .navbar-collapse,
.w3eden .navbar-default .navbar-form {
    border-color: #e7e7e7
}

.w3eden .navbar-default .navbar-nav>.open>a,
.w3eden .navbar-default .navbar-nav>.open>a:focus,
.w3eden .navbar-default .navbar-nav>.open>a:hover {
    color: #555;
    background-color: #e7e7e7
}

@media (max-width:767px) {
    .w3eden .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #777
    }
    .w3eden .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
    .w3eden .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #333;
        background-color: transparent
    }
    .w3eden .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .w3eden .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
    .w3eden .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #555;
        background-color: #e7e7e7
    }
    .w3eden .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
    .w3eden .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .w3eden .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #ccc;
        background-color: transparent
    }
}

.w3eden .navbar-default .navbar-link {
    color: #777
}

.w3eden .navbar-default .navbar-link:hover {
    color: #333
}

.w3eden .navbar-default .btn-link {
    color: #777
}

.w3eden .navbar-default .btn-link:focus,
.w3eden .navbar-default .btn-link:hover {
    color: #333
}

.w3eden .navbar-default .btn-link[disabled]:focus,
.w3eden .navbar-default .btn-link[disabled]:hover,
.w3eden fieldset[disabled] .navbar-default .btn-link:focus,
.w3eden fieldset[disabled] .navbar-default .btn-link:hover {
    color: #ccc
}

.w3eden .navbar-inverse {
    background-color: #222;
    border-color: #080808
}

.w3eden .navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.w3eden .navbar-inverse .navbar-brand:focus,
.w3eden .navbar-inverse .navbar-brand:hover {
    color: #fff;
    background-color: transparent
}

.w3eden .navbar-inverse .navbar-text {
    color: #9d9d9d
}

.w3eden .navbar-inverse .navbar-nav>li>a {
    color: #9d9d9d
}

.w3eden .navbar-inverse .navbar-nav>li>a:focus,
.w3eden .navbar-inverse .navbar-nav>li>a:hover {
    color: #fff;
    background-color: transparent
}

.w3eden .navbar-inverse .navbar-nav>.active>a,
.w3eden .navbar-inverse .navbar-nav>.active>a:focus,
.w3eden .navbar-inverse .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: #080808
}

.w3eden .navbar-inverse .navbar-nav>.disabled>a,
.w3eden .navbar-inverse .navbar-nav>.disabled>a:focus,
.w3eden .navbar-inverse .navbar-nav>.disabled>a:hover {
    color: #444;
    background-color: transparent
}

.w3eden .navbar-inverse .navbar-toggle {
    border-color: #333
}

.w3eden .navbar-inverse .navbar-toggle:focus,
.w3eden .navbar-inverse .navbar-toggle:hover {
    background-color: #333
}

.w3eden .navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.w3eden .navbar-inverse .navbar-collapse,
.w3eden .navbar-inverse .navbar-form {
    border-color: #101010
}

.w3eden .navbar-inverse .navbar-nav>.open>a,
.w3eden .navbar-inverse .navbar-nav>.open>a:focus,
.w3eden .navbar-inverse .navbar-nav>.open>a:hover {
    color: #fff;
    background-color: #080808
}

@media (max-width:767px) {
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
        border-color: #080808
    }
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808
    }
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #9d9d9d
    }
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #fff;
        background-color: transparent
    }
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #fff;
        background-color: #080808
    }
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .w3eden .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #444;
        background-color: transparent
    }
}

.w3eden .navbar-inverse .navbar-link {
    color: #9d9d9d
}

.w3eden .navbar-inverse .navbar-link:hover {
    color: #fff
}

.w3eden .navbar-inverse .btn-link {
    color: #9d9d9d
}

.w3eden .navbar-inverse .btn-link:focus,
.w3eden .navbar-inverse .btn-link:hover {
    color: #fff
}

.w3eden .navbar-inverse .btn-link[disabled]:focus,
.w3eden .navbar-inverse .btn-link[disabled]:hover,
.w3eden fieldset[disabled] .navbar-inverse .btn-link:focus,
.w3eden fieldset[disabled] .navbar-inverse .btn-link:hover {
    color: #444
}

.w3eden .breadcrumb {
    padding: 8px 15px;
    margin-bottom: 20px;
    list-style: none;
    background-color: #f5f5f5;
    border-radius: 4px
}

.w3eden .breadcrumb>li {
    display: inline-block
}

.w3eden .breadcrumb>li+li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\00a0"
}

.w3eden .breadcrumb>.active {
    color: #777
}

.w3eden .pagination {
    display: inline-block;
    padding-left: 0;
    margin: 20px 0;
    border-radius: 4px
}

.w3eden .pagination>li {
    display: inline
}

.w3eden .pagination>li>a,
.w3eden .pagination>li>span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd
}

.w3eden .pagination>li:first-child>a,
.w3eden .pagination>li:first-child>span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.w3eden .pagination>li:last-child>a,
.w3eden .pagination>li:last-child>span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.w3eden .pagination>li>a:focus,
.w3eden .pagination>li>a:hover,
.w3eden .pagination>li>span:focus,
.w3eden .pagination>li>span:hover {
    color: #23527c;
    background-color: #eee;
    border-color: #ddd
}

.w3eden .pagination>.active>a,
.w3eden .pagination>.active>a:focus,
.w3eden .pagination>.active>a:hover,
.w3eden .pagination>.active>span,
.w3eden .pagination>.active>span:focus,
.w3eden .pagination>.active>span:hover {
    z-index: 2;
    color: #fff;
    cursor: default;
    background-color: #337ab7;
    border-color: #337ab7
}

.w3eden .pagination>.disabled>a,
.w3eden .pagination>.disabled>a:focus,
.w3eden .pagination>.disabled>a:hover,
.w3eden .pagination>.disabled>span,
.w3eden .pagination>.disabled>span:focus,
.w3eden .pagination>.disabled>span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.w3eden .pagination-lg>li>a,
.w3eden .pagination-lg>li>span {
    padding: 10px 16px;
    font-size: 18px
}

.w3eden .pagination-lg>li:first-child>a,
.w3eden .pagination-lg>li:first-child>span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.w3eden .pagination-lg>li:last-child>a,
.w3eden .pagination-lg>li:last-child>span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.w3eden .pagination-sm>li>a,
.w3eden .pagination-sm>li>span {
    padding: 5px 10px;
    font-size: 12px
}

.w3eden .pagination-sm>li:first-child>a,
.w3eden .pagination-sm>li:first-child>span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.w3eden .pagination-sm>li:last-child>a,
.w3eden .pagination-sm>li:last-child>span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px
}

.w3eden .pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none
}

.w3eden .pager li {
    display: inline
}

.w3eden .pager li>a,
.w3eden .pager li>span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.w3eden .pager li>a:focus,
.w3eden .pager li>a:hover {
    text-decoration: none;
    background-color: #eee
}

.w3eden .pager .next>a,
.w3eden .pager .next>span {
    float: right
}

.w3eden .pager .previous>a,
.w3eden .pager .previous>span {
    float: left
}

.w3eden .pager .disabled>a,
.w3eden .pager .disabled>a:focus,
.w3eden .pager .disabled>a:hover,
.w3eden .pager .disabled>span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff
}

.w3eden .label {
    display: inline;
    padding: .2em .6em .3em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25em
}

.w3eden a.label:focus,
.w3eden a.label:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.w3eden .label:empty {
    display: none
}

.w3eden .btn .label {
    position: relative;
    top: -1px
}

.w3eden .label-default {
    background-color: #777
}

.w3eden .label-default[href]:focus,
.w3eden .label-default[href]:hover {
    background-color: #5e5e5e
}

.w3eden .label-primary {
    background-color: #337ab7
}

.w3eden .label-primary[href]:focus,
.w3eden .label-primary[href]:hover {
    background-color: #286090
}

.w3eden .label-success {
    background-color: #5cb85c
}

.w3eden .label-success[href]:focus,
.w3eden .label-success[href]:hover {
    background-color: #449d44
}

.w3eden .label-info {
    background-color: #5bc0de
}

.w3eden .label-info[href]:focus,
.w3eden .label-info[href]:hover {
    background-color: #31b0d5
}

.w3eden .label-warning {
    background-color: #f0ad4e
}

.w3eden .label-warning[href]:focus,
.w3eden .label-warning[href]:hover {
    background-color: #ec971f
}

.w3eden .label-danger {
    background-color: #d9534f
}

.w3eden .label-danger[href]:focus,
.w3eden .label-danger[href]:hover {
    background-color: #c9302c
}

.w3eden .badge {
    display: inline-block;
    min-width: 10px;
    padding: 3px 7px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    background-color: #777;
    border-radius: 10px
}

.w3eden .badge:empty {
    display: none
}

.w3eden .btn .badge {
    position: relative;
    top: -1px
}

.w3eden .btn-group-xs>.btn .badge,
.w3eden .btn-xs .badge {
    top: 0;
    padding: 1px 5px
}

.w3eden a.badge:focus,
.w3eden a.badge:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.w3eden .list-group-item.active>.badge,
.w3eden .nav-pills>.active>a>.badge {
    color: #337ab7;
    background-color: #fff
}

.w3eden .list-group-item>.badge {
    float: right
}

.w3eden .list-group-item>.badge+.badge {
    margin-right: 5px
}

.w3eden .nav-pills>li>a>.badge {
    margin-left: 3px
}

.w3eden .jumbotron {
    padding: 30px 15px;
    margin-bottom: 30px;
    color: inherit;
    background-color: #eee
}

.w3eden .jumbotron .h1,
.w3eden .jumbotron h1 {
    color: inherit
}

.w3eden .jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200
}

.w3eden .jumbotron>hr {
    border-top-color: #d5d5d5
}

.w3eden .container .jumbotron,
.w3eden .container-fluid .jumbotron {
    border-radius: 6px
}

.w3eden .jumbotron .container {
    max-width: 100%
}

@media screen and (min-width:768px) {
    .w3eden .jumbotron {
        padding: 48px 0
    }
    .w3eden .container .jumbotron,
    .w3eden .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px
    }
    .w3eden .jumbotron .h1,
    .w3eden .jumbotron h1 {
        font-size: 63px
    }
}

.w3eden .thumbnail {
    display: block;
    padding: 4px;
    margin-bottom: 20px;
    line-height: 1.42857143;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: border .2s ease-in-out;
    -o-transition: border .2s ease-in-out;
    transition: border .2s ease-in-out
}

.w3eden .thumbnail a>img,
.w3eden .thumbnail>img {
    margin-right: auto;
    margin-left: auto
}

.w3eden a.thumbnail.active,
.w3eden a.thumbnail:focus,
.w3eden a.thumbnail:hover {
    border-color: #337ab7
}

.w3eden .thumbnail .caption {
    padding: 9px;
    color: #333
}

.w3eden .alert {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    border-radius: 4px
}

.w3eden .alert h4 {
    margin-top: 0;
    color: inherit
}

.w3eden .alert .alert-link {
    font-weight: 700
}

.w3eden .alert>p,
.w3eden .alert>ul {
    margin-bottom: 0
}

.w3eden .alert>p+p {
    margin-top: 5px
}

.w3eden .alert-dismissable,
.w3eden .alert-dismissible {
    padding-right: 35px
}

.w3eden .alert-dismissable .close,
.w3eden .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.w3eden .alert-success {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.w3eden .alert-success hr {
    border-top-color: #c9e2b3
}

.w3eden .alert-success .alert-link {
    color: #2b542c
}

.w3eden .alert-info {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.w3eden .alert-info hr {
    border-top-color: #a6e1ec
}

.w3eden .alert-info .alert-link {
    color: #245269
}

.w3eden .alert-warning {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.w3eden .alert-warning hr {
    border-top-color: #f7e1b5
}

.w3eden .alert-warning .alert-link {
    color: #66512c
}

.w3eden .alert-danger {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.w3eden .alert-danger hr {
    border-top-color: #e4b9c0
}

.w3eden .alert-danger .alert-link {
    color: #843534
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 40px 0
    }
    to {
        background-position: 0 0
    }
}

@-o-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
    }
}

.w3eden .progress {
    height: 20px;
    margin-bottom: 20px;
    overflow: hidden;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1)
}

.w3eden .progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #337ab7;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .15);
    -webkit-transition: width .6s ease;
    -o-transition: width .6s ease;
    transition: width .6s ease
}

.w3eden .progress-bar-striped,
.w3eden .progress-striped .progress-bar {
    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: -o-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);
    -webkit-background-size: 40px 40px;
    background-size: 40px 40px
}

.w3eden .progress-bar.active,
.w3eden .progress.active .progress-bar {
    -webkit-animation: progress-bar-stripes 2s linear infinite;
    -o-animation: progress-bar-stripes 2s linear infinite;
    animation: progress-bar-stripes 2s linear infinite
}

.w3eden .progress-bar-success {
    background-color: #5cb85c
}

.w3eden .progress-striped .progress-bar-success {
    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: -o-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)
}

.w3eden .progress-bar-info {
    background-color: #5bc0de
}

.w3eden .progress-striped .progress-bar-info {
    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: -o-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)
}

.w3eden .progress-bar-warning {
    background-color: #f0ad4e
}

.w3eden .progress-striped .progress-bar-warning {
    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: -o-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)
}

.w3eden .progress-bar-danger {
    background-color: #d9534f
}

.w3eden .progress-striped .progress-bar-danger {
    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: -o-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)
}

.w3eden .media {
    margin-top: 15px
}

.w3eden .media:first-child {
    margin-top: 0
}

.w3eden .media,
.w3eden .media-body {
    overflow: hidden;
    zoom: 1
}

.w3eden .media-body {
    width: 10000px
}

.w3eden .media-object {
    display: block
}

.w3eden .media-right,
.w3eden .media>.pull-right {
    padding-left: 10px
}

.w3eden .media-left,
.w3eden .media>.pull-left {
    padding-right: 10px
}

.w3eden .media-body,
.w3eden .media-left,
.w3eden .media-right {
    display: table-cell;
    vertical-align: top
}

.w3eden .media-middle {
    vertical-align: middle
}

.w3eden .media-bottom {
    vertical-align: bottom
}

.w3eden .media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.w3eden .media-list {
    padding-left: 0;
    list-style: none
}

.w3eden .list-group {
    padding-left: 0;
    margin-bottom: 20px
}

.w3eden .list-group-item {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd
}

.w3eden .list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px
}

.w3eden .list-group-item:last-child {
    margin-bottom: 0;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px
}

.w3eden a.list-group-item {
    color: #555
}

.w3eden a.list-group-item .list-group-item-heading {
    color: #333
}

.w3eden a.list-group-item:focus,
.w3eden a.list-group-item:hover {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5
}

.w3eden .list-group-item.disabled,
.w3eden .list-group-item.disabled:focus,
.w3eden .list-group-item.disabled:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #eee
}

.w3eden .list-group-item.disabled .list-group-item-heading,
.w3eden .list-group-item.disabled:focus .list-group-item-heading,
.w3eden .list-group-item.disabled:hover .list-group-item-heading {
    color: inherit
}

.w3eden .list-group-item.disabled .list-group-item-text,
.w3eden .list-group-item.disabled:focus .list-group-item-text,
.w3eden .list-group-item.disabled:hover .list-group-item-text {
    color: #777
}

.w3eden .list-group-item.active,
.w3eden .list-group-item.active:focus,
.w3eden .list-group-item.active:hover {
    z-index: 2;
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.w3eden .list-group-item.active .list-group-item-heading,
.w3eden .list-group-item.active .list-group-item-heading>.small,
.w3eden .list-group-item.active .list-group-item-heading>small,
.w3eden .list-group-item.active:focus .list-group-item-heading,
.w3eden .list-group-item.active:focus .list-group-item-heading>.small,
.w3eden .list-group-item.active:focus .list-group-item-heading>small,
.w3eden .list-group-item.active:hover .list-group-item-heading,
.w3eden .list-group-item.active:hover .list-group-item-heading>.small,
.w3eden .list-group-item.active:hover .list-group-item-heading>small {
    color: inherit
}

.w3eden .list-group-item.active .list-group-item-text,
.w3eden .list-group-item.active:focus .list-group-item-text,
.w3eden .list-group-item.active:hover .list-group-item-text {
    color: #c7ddef
}

.w3eden .list-group-item-success {
    color: #3c763d;
    background-color: #dff0d8
}

.w3eden a.list-group-item-success {
    color: #3c763d
}

.w3eden a.list-group-item-success .list-group-item-heading {
    color: inherit
}

.w3eden a.list-group-item-success:focus,
.w3eden a.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6
}

.w3eden a.list-group-item-success.active,
.w3eden a.list-group-item-success.active:focus,
.w3eden a.list-group-item-success.active:hover {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.w3eden .list-group-item-info {
    color: #31708f;
    background-color: #d9edf7
}

.w3eden a.list-group-item-info {
    color: #31708f
}

.w3eden a.list-group-item-info .list-group-item-heading {
    color: inherit
}

.w3eden a.list-group-item-info:focus,
.w3eden a.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3
}

.w3eden a.list-group-item-info.active,
.w3eden a.list-group-item-info.active:focus,
.w3eden a.list-group-item-info.active:hover {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.w3eden .list-group-item-warning {
    color: #8a6d3b;
    background-color: #fcf8e3
}

.w3eden a.list-group-item-warning {
    color: #8a6d3b
}

.w3eden a.list-group-item-warning .list-group-item-heading {
    color: inherit
}

.w3eden a.list-group-item-warning:focus,
.w3eden a.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc
}

.w3eden a.list-group-item-warning.active,
.w3eden a.list-group-item-warning.active:focus,
.w3eden a.list-group-item-warning.active:hover {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.w3eden .list-group-item-danger {
    color: #a94442;
    background-color: #f2dede
}

.w3eden a.list-group-item-danger {
    color: #a94442
}

.w3eden a.list-group-item-danger .list-group-item-heading {
    color: inherit
}

.w3eden a.list-group-item-danger:focus,
.w3eden a.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc
}

.w3eden a.list-group-item-danger.active,
.w3eden a.list-group-item-danger.active:focus,
.w3eden a.list-group-item-danger.active:hover {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.w3eden .list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.w3eden .list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

.w3eden .panel {
    margin-bottom: 20px;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: 0 1px 1px rgba(0, 0, 0, .05)
}

.w3eden .panel-body {
    padding: 15px
}

.w3eden .panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.w3eden .panel-heading>.dropdown .dropdown-toggle {
    color: inherit
}

.w3eden .panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.w3eden .panel-title>.small,
.w3eden .panel-title>.small>a,
.w3eden .panel-title>a,
.w3eden .panel-title>small,
.w3eden .panel-title>small>a {
    color: inherit
}

.w3eden .panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.w3eden .panel>.list-group,
.w3eden .panel>.panel-collapse>.list-group {
    margin-bottom: 0
}

.w3eden .panel>.list-group .list-group-item,
.w3eden .panel>.panel-collapse>.list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.w3eden .panel>.list-group:first-child .list-group-item:first-child,
.w3eden .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child {
    border-top: 0;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.w3eden .panel>.list-group:last-child .list-group-item:last-child,
.w3eden .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child {
    border-bottom: 0;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.w3eden .panel-heading+.list-group .list-group-item:first-child {
    border-top-width: 0
}

.w3eden .list-group+.panel-footer {
    border-top-width: 0
}

.w3eden .panel>.panel-collapse>.table,
.w3eden .panel>.table,
.w3eden .panel>.table-responsive>.table {
    margin-bottom: 0
}

.w3eden .panel>.panel-collapse>.table caption,
.w3eden .panel>.table caption,
.w3eden .panel>.table-responsive>.table caption {
    padding-right: 15px;
    padding-left: 15px
}

.w3eden .panel>.table-responsive:first-child>.table:first-child,
.w3eden .panel>.table:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,
.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,
.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child,
.w3eden .panel>.table:first-child>thead:first-child>tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,
.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,
.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,
.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,
.w3eden .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,
.w3eden .panel>.table:first-child>thead:first-child>tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.w3eden .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,
.w3eden .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,
.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,
.w3eden .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,
.w3eden .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,
.w3eden .panel>.table:first-child>thead:first-child>tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.w3eden .panel>.table-responsive:last-child>.table:last-child,
.w3eden .panel>.table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,
.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,
.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child,
.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,
.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,
.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,
.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,
.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.w3eden .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.w3eden .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,
.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,
.w3eden .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,
.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,
.w3eden .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.w3eden .panel>.panel-body+.table,
.w3eden .panel>.panel-body+.table-responsive,
.w3eden .panel>.table+.panel-body,
.w3eden .panel>.table-responsive+.panel-body {
    border-top: 1px solid #ddd
}

.w3eden .panel>.table>tbody:first-child>tr:first-child td,
.w3eden .panel>.table>tbody:first-child>tr:first-child th {
    border-top: 0
}

.w3eden .panel>.table-bordered,
.w3eden .panel>.table-responsive>.table-bordered {
    border: 0
}

.w3eden .panel>.table-bordered>tbody>tr>td:first-child,
.w3eden .panel>.table-bordered>tbody>tr>th:first-child,
.w3eden .panel>.table-bordered>tfoot>tr>td:first-child,
.w3eden .panel>.table-bordered>tfoot>tr>th:first-child,
.w3eden .panel>.table-bordered>thead>tr>td:first-child,
.w3eden .panel>.table-bordered>thead>tr>th:first-child,
.w3eden .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,
.w3eden .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,
.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,
.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,
.w3eden .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,
.w3eden .panel>.table-responsive>.table-bordered>thead>tr>th:first-child {
    border-left: 0
}

.w3eden .panel>.table-bordered>tbody>tr>td:last-child,
.w3eden .panel>.table-bordered>tbody>tr>th:last-child,
.w3eden .panel>.table-bordered>tfoot>tr>td:last-child,
.w3eden .panel>.table-bordered>tfoot>tr>th:last-child,
.w3eden .panel>.table-bordered>thead>tr>td:last-child,
.w3eden .panel>.table-bordered>thead>tr>th:last-child,
.w3eden .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,
.w3eden .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,
.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,
.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,
.w3eden .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,
.w3eden .panel>.table-responsive>.table-bordered>thead>tr>th:last-child {
    border-right: 0
}

.w3eden .panel>.table-bordered>tbody>tr:first-child>td,
.w3eden .panel>.table-bordered>tbody>tr:first-child>th,
.w3eden .panel>.table-bordered>thead>tr:first-child>td,
.w3eden .panel>.table-bordered>thead>tr:first-child>th,
.w3eden .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,
.w3eden .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,
.w3eden .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,
.w3eden .panel>.table-responsive>.table-bordered>thead>tr:first-child>th {
    border-bottom: 0
}

.w3eden .panel>.table-bordered>tbody>tr:last-child>td,
.w3eden .panel>.table-bordered>tbody>tr:last-child>th,
.w3eden .panel>.table-bordered>tfoot>tr:last-child>td,
.w3eden .panel>.table-bordered>tfoot>tr:last-child>th,
.w3eden .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,
.w3eden .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,
.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,
.w3eden .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th {
    border-bottom: 0
}

.w3eden .panel>.table-responsive {
    margin-bottom: 0;
    border: 0
}

.w3eden .panel-group {
    margin-bottom: 20px
}

.w3eden .panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.w3eden .panel-group .panel+.panel {
    margin-top: 5px
}

.w3eden .panel-group .panel-heading {
    border-bottom: 0
}

.w3eden .panel-group .panel-heading+.panel-collapse>.list-group,
.w3eden .panel-group .panel-heading+.panel-collapse>.panel-body {
    border-top: 1px solid #ddd
}

.w3eden .panel-group .panel-footer {
    border-top: 0
}

.w3eden .panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.w3eden .panel-default {
    border-color: #ddd
}

.w3eden .panel-default>.panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.w3eden .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ddd
}

.w3eden .panel-default>.panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.w3eden .panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ddd
}

.w3eden .panel-primary {
    border-color: #337ab7
}

.w3eden .panel-primary>.panel-heading {
    color: #fff;
    background-color: #337ab7;
    border-color: #337ab7
}

.w3eden .panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #337ab7
}

.w3eden .panel-primary>.panel-heading .badge {
    color: #337ab7;
    background-color: #fff
}

.w3eden .panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #337ab7
}

.w3eden .panel-success {
    border-color: #d6e9c6
}

.w3eden .panel-success>.panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.w3eden .panel-success>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #d6e9c6
}

.w3eden .panel-success>.panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.w3eden .panel-success>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #d6e9c6
}

.w3eden .panel-info {
    border-color: #bce8f1
}

.w3eden .panel-info>.panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.w3eden .panel-info>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #bce8f1
}

.w3eden .panel-info>.panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.w3eden .panel-info>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #bce8f1
}

.w3eden .panel-warning {
    border-color: #faebcc
}

.w3eden .panel-warning>.panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.w3eden .panel-warning>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #faebcc
}

.w3eden .panel-warning>.panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.w3eden .panel-warning>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #faebcc
}

.w3eden .panel-danger {
    border-color: #ebccd1
}

.w3eden .panel-danger>.panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.w3eden .panel-danger>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #ebccd1
}

.w3eden .panel-danger>.panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.w3eden .panel-danger>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #ebccd1
}

.w3eden .embed-responsive {
    position: relative;
    display: block;
    height: 0;
    padding: 0;
    overflow: hidden
}

.w3eden .embed-responsive .embed-responsive-item,
.w3eden .embed-responsive embed,
.w3eden .embed-responsive iframe,
.w3eden .embed-responsive object,
.w3eden .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.w3eden .embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.w3eden .embed-responsive-4by3 {
    padding-bottom: 75%
}

.w3eden .well {
    min-height: 20px;
    padding: 19px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border: 1px solid #e3e3e3;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05)
}

.w3eden .well blockquote {
    border-color: #ddd;
    border-color: rgba(0, 0, 0, .15)
}

.w3eden .well-lg {
    padding: 24px;
    border-radius: 6px
}

.w3eden .well-sm {
    padding: 9px;
    border-radius: 3px
}

.w3eden .close {
    float: right;
    font-size: 21px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2
}

.w3eden .close:focus,
.w3eden .close:hover {
    color: #000;
    text-decoration: none;
    cursor: pointer;
    filter: alpha(opacity=50);
    opacity: .5
}

.w3eden button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0
}

.w3eden .modal-open {
    overflow: hidden
}

.w3eden .modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    outline: 0
}

.w3eden .modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    transition: transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transform: translate(0, -25%)
}

.w3eden .modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0)
}

.w3eden .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.w3eden .modal-dialog {
    position: relative;
    width: auto;
    margin: 10px
}

.w3eden .modal-content {
    position: relative;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #999;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    outline: 0;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5)
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}

.modal-backdrop.fade {
    filter: alpha(opacity=0);
    opacity: 0
}

.modal-backdrop.in {
    filter: alpha(opacity=50);
    opacity: .5
}

.w3eden .modal-header {
    min-height: 16.43px;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5
}

.w3eden .modal-header .close {
    margin-top: -2px
}

.w3eden .modal-title {
    margin: 0;
    line-height: 1.42857143
}

.w3eden .modal-body {
    position: relative;
    padding: 15px
}

.w3eden .modal-footer {
    padding: 15px;
    text-align: right;
    border-top: 1px solid #e5e5e5
}

.w3eden .modal-footer .btn+.btn {
    margin-bottom: 0;
    margin-left: 5px
}

.w3eden .modal-footer .btn-group .btn+.btn {
    margin-left: -1px
}

.w3eden .modal-footer .btn-block+.btn-block {
    margin-left: 0
}

.w3eden .modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width:768px) {
    .w3eden .modal-dialog {
        width: 600px;
        margin: 100px auto
    }
    .w3eden .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }
    .w3eden .modal-sm {
        width: 300px
    }
}

@media (min-width:992px) {
    .w3eden .modal-lg {
        width: 900px
    }
}

.w3eden .tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.4;
    filter: alpha(opacity=0);
    opacity: 0
}

.w3eden .tooltip.in {
    filter: alpha(opacity=90);
    opacity: .9
}

.w3eden .tooltip.top {
    padding: 5px 0;
    margin-top: -3px
}

.w3eden .tooltip.right {
    padding: 0 5px;
    margin-left: 3px
}

.w3eden .tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px
}

.w3eden .tooltip.left {
    padding: 0 5px;
    margin-left: -3px
}

.w3eden .tooltip-inner {
    max-width: 200px;
    padding: 6px 12px;
    color: #fff;
    text-align: center;
    text-decoration: none;
    background-color: #000;
    border-radius: 2px
}

.w3eden .tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.w3eden .tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.w3eden .tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.w3eden .tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.w3eden .tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.w3eden .tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.w3eden .tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.w3eden .tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.w3eden .tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.w3eden .popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: left;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2)
}

.w3eden .popover.top {
    margin-top: -10px
}

.w3eden .popover.right {
    margin-left: 10px
}

.w3eden .popover.bottom {
    margin-top: 10px
}

.w3eden .popover.left {
    margin-left: -10px
}

.w3eden .popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.w3eden .popover-content {
    padding: 9px 14px
}

.w3eden .popover>.arrow,
.w3eden .popover>.arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.w3eden .popover>.arrow {
    border-width: 11px
}

.w3eden .popover>.arrow:after {
    content: "";
    border-width: 10px
}

.w3eden .popover.top>.arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0
}

.w3eden .popover.top>.arrow:after {
    bottom: 1px;
    margin-left: -10px;
    content: " ";
    border-top-color: #fff;
    border-bottom-width: 0
}

.w3eden .popover.right>.arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0
}

.w3eden .popover.right>.arrow:after {
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0
}

.w3eden .popover.bottom>.arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25)
}

.w3eden .popover.bottom>.arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff
}

.w3eden .popover.left>.arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25)
}

.w3eden .popover.left>.arrow:after {
    right: 1px;
    bottom: -10px;
    content: " ";
    border-right-width: 0;
    border-left-color: #fff
}

.w3eden .carousel {
    position: relative
}

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

.w3eden .carousel-inner>.item {
    position: relative;
    display: none;
    -webkit-transition: .6s ease-in-out left;
    -o-transition: .6s ease-in-out left;
    transition: .6s ease-in-out left
}

.w3eden .carousel-inner>.item>a>img,
.w3eden .carousel-inner>.item>img {
    line-height: 1
}

@media all and (transform-3d),
(-webkit-transform-3d) {
    .w3eden .carousel-inner>.item {
        -webkit-transition: -webkit-transform .6s ease-in-out;
        -o-transition: -o-transform .6s ease-in-out;
        transition: transform .6s ease-in-out;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        -webkit-perspective: 1000;
        perspective: 1000
    }
    .w3eden .carousel-inner>.item.active.right,
    .w3eden .carousel-inner>.item.next {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    .w3eden .carousel-inner>.item.active.left,
    .w3eden .carousel-inner>.item.prev {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    .w3eden .carousel-inner>.item.active,
    .w3eden .carousel-inner>.item.next.left,
    .w3eden .carousel-inner>.item.prev.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.w3eden .carousel-inner>.active,
.w3eden .carousel-inner>.next,
.w3eden .carousel-inner>.prev {
    display: block
}

.w3eden .carousel-inner>.active {
    left: 0
}

.w3eden .carousel-inner>.next,
.w3eden .carousel-inner>.prev {
    position: absolute;
    top: 0;
    width: 100%
}

.w3eden .carousel-inner>.next {
    left: 100%
}

.w3eden .carousel-inner>.prev {
    left: -100%
}

.w3eden .carousel-inner>.next.left,
.w3eden .carousel-inner>.prev.right {
    left: 0
}

.w3eden .carousel-inner>.active.left {
    left: -100%
}

.w3eden .carousel-inner>.active.right {
    left: 100%
}

.w3eden .carousel-control {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 15%;
    font-size: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    filter: alpha(opacity=50);
    opacity: .5
}

.w3eden .carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .0001)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .0001) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);
    background-repeat: repeat-x
}

.w3eden .carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .0001)), to(rgba(0, 0, 0, .5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .0001) 0, rgba(0, 0, 0, .5) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);
    background-repeat: repeat-x
}

.w3eden .carousel-control:focus,
.w3eden .carousel-control:hover {
    color: #fff;
    text-decoration: none;
    filter: alpha(opacity=90);
    outline: 0;
    opacity: .9
}

.w3eden .carousel-control .glyphicon-chevron-left,
.w3eden .carousel-control .glyphicon-chevron-right,
.w3eden .carousel-control .icon-next,
.w3eden .carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block
}

.w3eden .carousel-control .glyphicon-chevron-left,
.w3eden .carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px
}

.w3eden .carousel-control .glyphicon-chevron-right,
.w3eden .carousel-control .icon-next {
    right: 50%;
    margin-right: -10px
}

.w3eden .carousel-control .icon-next,
.w3eden .carousel-control .icon-prev {
    width: 20px;
    height: 20px;
    margin-top: -10px;
    font-family: serif;
    line-height: 1
}

.w3eden .carousel-control .icon-prev:before {
    content: '\2039'
}

.w3eden .carousel-control .icon-next:before {
    content: '\203a'
}

.w3eden .carousel-indicators {
    position: absolute;
    bottom: 10px;
    left: 50%;
    z-index: 15;
    width: 60%;
    padding-left: 0;
    margin-left: -30%;
    text-align: center;
    list-style: none
}

.w3eden .carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #000 \9;
    background-color: rgba(0, 0, 0, 0);
    border: 1px solid #fff;
    border-radius: 10px
}

.w3eden .carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff
}

.w3eden .carousel-caption {
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6)
}

.w3eden .carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width:768px) {
    .w3eden .carousel-control .glyphicon-chevron-left,
    .w3eden .carousel-control .glyphicon-chevron-right,
    .w3eden .carousel-control .icon-next,
    .w3eden .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -15px;
        font-size: 30px
    }
    .w3eden .carousel-control .glyphicon-chevron-left,
    .w3eden .carousel-control .icon-prev {
        margin-left: -15px
    }
    .w3eden .carousel-control .glyphicon-chevron-right,
    .w3eden .carousel-control .icon-next {
        margin-right: -15px
    }
    .w3eden .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px
    }
    .w3eden .carousel-indicators {
        bottom: 20px
    }
}

.w3eden .btn-group-vertical>.btn-group:after,
.w3eden .btn-group-vertical>.btn-group:before,
.w3eden .btn-toolbar:after,
.w3eden .btn-toolbar:before,
.w3eden .clearfix:after,
.w3eden .clearfix:before,
.w3eden .container-fluid:after,
.w3eden .container-fluid:before,
.w3eden .container:after,
.w3eden .container:before,
.w3eden .dl-horizontal dd:after,
.w3eden .dl-horizontal dd:before,
.w3eden .form-horizontal .form-group:after,
.w3eden .form-horizontal .form-group:before,
.w3eden .modal-footer:after,
.w3eden .modal-footer:before,
.w3eden .nav:after,
.w3eden .nav:before,
.w3eden .navbar-collapse:after,
.w3eden .navbar-collapse:before,
.w3eden .navbar-header:after,
.w3eden .navbar-header:before,
.w3eden .navbar:after,
.w3eden .navbar:before,
.w3eden .pager:after,
.w3eden .pager:before,
.w3eden .panel-body:after,
.w3eden .panel-body:before,
.w3eden .row:after,
.w3eden .row:before {
    display: table;
    content: " "
}

.w3eden .btn-group-vertical>.btn-group:after,
.w3eden .btn-toolbar:after,
.w3eden .clearfix:after,
.w3eden .container-fluid:after,
.w3eden .container:after,
.w3eden .dl-horizontal dd:after,
.w3eden .form-horizontal .form-group:after,
.w3eden .modal-footer:after,
.w3eden .nav:after,
.w3eden .navbar-collapse:after,
.w3eden .navbar-header:after,
.w3eden .navbar:after,
.w3eden .pager:after,
.w3eden .panel-body:after,
.w3eden .row:after {
    clear: both
}

.w3eden .center-block {
    display: block;
    margin-right: auto;
    margin-left: auto
}

.w3eden .pull-right {
    float: right !important
}

.w3eden .pull-left {
    float: left !important
}

.w3eden .hide {
    display: none !important
}

.w3eden .show {
    display: block !important
}

.w3eden .invisible {
    visibility: hidden
}

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

.w3eden .hidden {
    display: none !important
}

.w3eden .affix {
    position: fixed
}

@-ms-viewport {
    width: device-width
}

.w3eden .visible-lg,
.w3eden .visible-md,
.w3eden .visible-sm,
.w3eden .visible-xs {
    display: none !important
}

.w3eden .visible-lg-block,
.w3eden .visible-lg-inline,
.w3eden .visible-lg-inline-block,
.w3eden .visible-md-block,
.w3eden .visible-md-inline,
.w3eden .visible-md-inline-block,
.w3eden .visible-sm-block,
.w3eden .visible-sm-inline,
.w3eden .visible-sm-inline-block,
.w3eden .visible-xs-block,
.w3eden .visible-xs-inline,
.w3eden .visible-xs-inline-block {
    display: none !important
}

@media (max-width:767px) {
    .w3eden .visible-xs {
        display: block !important
    }
    .w3eden table.visible-xs {
        display: table
    }
    .w3eden tr.visible-xs {
        display: table-row !important
    }
    .w3eden td.visible-xs,
    .w3eden th.visible-xs {
        display: table-cell !important
    }
}

@media (max-width:767px) {
    .w3eden .visible-xs-block {
        display: block !important
    }
}

@media (max-width:767px) {
    .w3eden .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width:767px) {
    .w3eden .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .w3eden .visible-sm {
        display: block !important
    }
    .w3eden table.visible-sm {
        display: table
    }
    .w3eden tr.visible-sm {
        display: table-row !important
    }
    .w3eden td.visible-sm,
    .w3eden th.visible-sm {
        display: table-cell !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .w3eden .visible-sm-block {
        display: block !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .w3eden .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .w3eden .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .w3eden .visible-md {
        display: block !important
    }
    .w3eden table.visible-md {
        display: table
    }
    .w3eden tr.visible-md {
        display: table-row !important
    }
    .w3eden td.visible-md,
    .w3eden th.visible-md {
        display: table-cell !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .w3eden .visible-md-block {
        display: block !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .w3eden .visible-md-inline {
        display: inline !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .w3eden .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width:1200px) {
    .w3eden .visible-lg {
        display: block !important
    }
    .w3eden table.visible-lg {
        display: table
    }
    .w3eden tr.visible-lg {
        display: table-row !important
    }
    .w3eden td.visible-lg,
    .w3eden th.visible-lg {
        display: table-cell !important
    }
}

@media (min-width:1200px) {
    .w3eden .visible-lg-block {
        display: block !important
    }
}

@media (min-width:1200px) {
    .w3eden .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width:1200px) {
    .w3eden .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width:767px) {
    .w3eden .hidden-xs {
        display: none !important
    }
}

@media (min-width:768px) and (max-width:991px) {
    .w3eden .hidden-sm {
        display: none !important
    }
}

@media (min-width:992px) and (max-width:1199px) {
    .w3eden .hidden-md {
        display: none !important
    }
}

@media (min-width:1200px) {
    .w3eden .hidden-lg {
        display: none !important
    }
}

.w3eden .visible-print {
    display: none !important
}

@media print {
    .w3eden .visible-print {
        display: block !important
    }
    .w3eden table.visible-print {
        display: table
    }
    .w3eden tr.visible-print {
        display: table-row !important
    }
    .w3eden td.visible-print,
    .w3eden th.visible-print {
        display: table-cell !important
    }
}

.w3eden .visible-print-block {
    display: none !important
}

@media print {
    .w3eden .visible-print-block {
        display: block !important
    }
}

.w3eden .visible-print-inline {
    display: none !important
}

@media print {
    .w3eden .visible-print-inline {
        display: inline !important
    }
}

.w3eden .visible-print-inline-block {
    display: none !important
}

@media print {
    .w3eden .visible-print-inline-block {
        display: inline-block !important
    }
}

@media print {
    .w3eden .hidden-print {
        display: none !important
    }
}

.w3eden .btn {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, .05)));
    background-image: -webkit-linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .05));
    background-image: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, .05))
}

.w3eden .panel th {
    background-color: #eee !important;
    border-bottom-width: 1px !important
}

.w3eden .btn {
    border-radius: .2em
}

.w3eden .nav-pills a {
    border-radius: .2em;
    box-shadow: none !important;
    font-size: 9pt !important
}

.w3eden .panel-heading {
    font-weight: 700
}

.w3eden blockquote.alert {
    font-size: 14px;
    font-weight: 300;
    font-style: italic;
    border-radius: 2px !important
}

.w3eden .btn-group .btn:first-child:not(:last-child),
.w3eden .input-group .form-control:first-child:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: .2em;
    border-top-left-radius: .2em
}

.w3eden .btn-group .btn:last-child:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: .2em;
    border-bottom-right-radius: .2em
}

.w3eden .btn span.left-icon {
    float: left;
    background: none repeat scroll 0 0 rgba(0, 0, 0, .16);
    border-bottom-left-radius: 3px;
    border-right: 1px solid rgba(0, 0, 0, .12);
    border-top-left-radius: 3px;
    margin-left: -17px;
    margin-top: -8.5px;
    padding: 8.5px 12px;
    position: relative;
    width: 40px
}

.w3eden .panel .panel-footer {
    text-transform: unset
}

.w3eden .btn.wpdm-clear,
.w3eden .clear {
    clear: both
}

.w3eden .no-radius {
    border-radius: 0 !important
}

.w3eden .btn.wpdm-category {
    border: 0;
    border-bottom: 0 solid #ccc
}

.w3eden .table th a {
    font-weight: 700
}

.w3eden .btn.wpdm-front h3.title {
    margin: 10px 0 5px 10px;
    font-size: 14pt
}

.w3eden .qdb {
    background: var(--color-primary);
    text-decoration: none;
    color: #fff;
    padding: 5px 7px;
    font-size: 8pt;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.w3eden #loginform {
    margin-top: 20px
}

.w3eden #loginform .alert {
    border-radius: 0 !important
}

.w3eden .btn.wpdm-category-list li {
    clear: both
}

.w3eden .btn.wpdm-category-list {
    list-style: none
}

.w3eden .download_link label {
    width: 60px;
    display: block;
    font-size: 10px
}

.w3eden .cat-page-tilte {
    padding: 0 5px 10px 0;
    border: 0;
    border-top: 1px dotted #666;
    font-size: 11pt
}

.w3eden .cat-page-tilte legend {
    padding-right: 5px
}

.w3eden .wpdm-loading {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: var(--color-danger);
    color: #fff;
    padding: 7px 15px;
    position: absolute;
    font-size: 12px;
    font-weight: 700;
    z-index: 999999
}

.w3eden .drag-drop #drag-drop-area {
    border: 4px dashed #ddd;
    height: 200px
}

.w3eden .drag-drop-inside {
    text-align: center;
    padding: 30px
}

.w3eden .btn.wpdm-front .inside {
    padding: 10px
}

.w3eden #wpdm-login-form {
    position: absolute;
    padding: 0 10px;
    border: 1px solid #aaa;
    background: #eee;
    z-index: 9999999
}

.w3eden .btn.wpdm-drop-box {
    z-index: 99999;
    display: none;
    position: absolute
}

.w3eden .hndle {
    margin: 0 !important
}

.w3eden #categories_meta_box label {
    display: inline !important
}

.w3eden .more_previews_a {
    display: block;
    float: left;
    margin-right: 8px
}

.w3eden .link-template .more_previews_a {
    display: block;
    float: left;
    margin-right: 9px !important
}

.w3eden .more_previews_a:last-child {
    margin-right: 0 !important
}

.w3eden .wpdm_file .cont {
    padding: 5px 10px;
    -webkit-border-bottom-right-radius: 3px;
    -webkit-border-bottom-left-radius: 3px;
    -moz-border-radius-bottomright: 3px;
    -moz-border-radius-bottomleft: 3px;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    font-size: 9pt
}

.w3eden .wpdm-social-lock {
    margin-right: 5px
}

.w3eden .inf {
    padding: 4px;
    font-size: 8pt
}

.w3eden .wpdm_icon {
    box-shadow: none;
    min-width: 48px
}

.w3eden .panel-body iframe {
    margin: 0
}

.w3eden a.btn {
    text-decoration: none !important
}

.w3eden .popover {
    min-width: 250px
}

.w3eden .all-locks {
    padding: 15px
}

.w3eden td.actions {
    width: 100px
}

.w3eden .actions a.btn {
    border-radius: 2px
}

.w3eden input.input-xs {
    font-size: 8pt;
    width: 150px;
    height: 30px;
    line-height: normal;
    text-align: center
}

.w3eden .input-group-btn .btn.wpdm_submit {
    padding: 8px 16px !important
}

.w3eden #wp-post_content-editor-container {
    border: 0
}

.w3eden #package-content-section #insert-media-button {
    margin: 3px 0 0
}

.w3eden #package-content-section .wp-editor-tools.hide-if-no-js {
    background: #eef2f4 none repeat scroll 0 0;
    border-bottom: 1px solid #e5e5e5;
    padding: 10px 10px 0
}

.w3eden td.mceToolbar {
    border-bottom: 1px solid #ddd !important
}

.w3eden #post_content-html,
.w3eden #post_content-tmce {
    height: 27px
}

.w3eden a.mceButton .mceIcon,
.w3eden .mceAction {
    font: 400 15px/1 dashicons !important;
    text-align: left !important
}

.w3eden #attach-file-section .panel-body,
.w3eden #package-settings-section .panel-body {
    padding: 0 !important
}

.w3eden #attach-file-section .tab-content .panel-body,
.w3eden #package-settings-section .tab-content .panel-body {
    padding: 15px !important
}

.w3eden .btn.wpdm-full-front {
    width: 100% !important;
    clear: both;
    display: block
}

.w3eden #attach-file-section .nav-tabs,
.w3eden #package-settings-section .nav-tabs {
    margin: 0 !important;
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 0;
    background: #fafafa
}

.w3eden #attach-file-section .nav-tabs li,
.w3eden #package-settings-section .nav-tabs li {
    padding-bottom: 0 !important;
    border-bottom: 0 !important;
    margin-right: 2px
}

.w3eden #attach-file-section .nav-tabs li a,
.w3eden #package-settings-section .nav-tabs li a {
    padding: 8px 20px;
    font-size: 9pt;
    color: #777;
    font-weight: 500
}

.w3eden #attach-file-section .nav-tabs li.active a,
.w3eden #package-settings-section .nav-tabs li.active a {
    color: #333
}

.w3eden #attach-file-section .nav-tabs li:not(.active) a,
.w3eden #package-settings-section .nav-tabs li:not(.active) a {
    background: rgba(0, 0, 0, .03) !important;
    border: 1px solid #ddd
}

.w3eden #attach-file-section .nav-tabs li:not(.active) a:hover,
.w3eden #package-settings-section .nav-tabs li:not(.active) a:hover {
    background: rgba(0, 0, 0, .06) !important
}

.w3eden #attach-file-section .tab-content,
.w3eden #package-settings-section .tab-content {
    padding: 20px
}

.w3eden #attach-file-section #ftabs ul.jqueryFileTree li {
    padding-left: 20px !important
}

.w3eden #package-settings-section td {
    vertical-align: middle
}

.w3eden .wpdm-accordion {
    border: 0 !important
}

.w3eden .wpdm-accordion .panel h3 {
    font-size: 10pt !important;
    border-radius: 0;
    padding: 7px 10px !important;
    border-bottom: 1px solid #d1e0e4 !important;
    font-weight: 700;
    margin-bottom: -1px
}

.w3eden .wpdm-accordion h3 .wpdmlock {
    opacity: 1 !important;
    margin-right: 10px !important
}

.w3eden .wpdm-accordion .panel {
    padding: 0;
    overflow: hidden;
    border: 1px solid #d1e0e4;
    margin-bottom: 5px !important
}

.w3eden .wpdm-accordion .panel .panel-body,
.w3eden .wpdm-accordion .panel h3 {
    border: 0;
    margin: 0 !important
}

.w3eden .wpdmlock+label {
    border: 2px solid #306acb;
    display: inline-block;
    float: left;
    height: 14px !important;
    margin-right: 5px;
    margin-top: 1px !important;
    width: 14px !important
}

.w3eden .panel-heading>label {
    position: relative;
    margin: 0
}

.w3eden .wpdmlock:checked+label:after {
    content: "";
    position: absolute;
    left: 2px;
    top: 3px;
    background: #306acb;
    width: 10px !important;
    height: 10px !important;
    z-index: 999999
}

.w3eden .fwpdmlock {
    background: #fff;
    border-color: #e3e4e9;
    border-style: solid;
    border-width: 0 1px 1px;
    margin-top: -3px;
    width: 100%;
    border-radius: 0
}

.w3eden .form-control {
    box-shadow: none !important;
    border-radius: 3px;
    font-family: var(--fetfont)
}

.w3eden #package-settings-section .wpdm-accordion .panel {
    margin-bottom: -2px !important;
    border-radius: 0 !important
}

.w3eden .btn.wpdm-spin {
    -webkit-animation: spin 2s infinite linear;
    -moz-animation: spin 2s infinite linear;
    -ms-animation: spin 2s infinite linear;
    -o-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear
}

@keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        -moz-transform: rotate(359deg);
        -o-transform: rotate(359deg);
        -ms-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -moz-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-ms-keyframes spin {
    from {
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -ms-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@-o-keyframes spin {
    from {
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -o-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.w3eden .infoicon {
    position: absolute;
    margin-top: 10px;
    margin-left: 20px;
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAA+0lEQVQ4T2NkwAS6QKEEIBYF4p9QaXYg/QqIFwDxFWQtjEgcDiC7C4j/AHE/ED9GM1sOyC8EYpCecpjhMANANiwD4slAfACLq5CFnICcLCCOAuJfMANANq4G4mMENMOkbYGMACAuBhmgD8QxQFyKRTNMrBuLXC9QbAHIgAlA3APET7AoEoSKvcciBwqTApABK4A4AofT3aHiO3HILwcZsBSIo3EoqIaKt+KQX0wVA/B5gZALwF7AF4j4DIAHIr5oBKU8EAClE3QAj0aYArITEsgAipMyyBBQZuoE4r9QJ5OUmZD9pwPkJAKxMBD/hkqwAenXQDwfiK8iKwYAr/Q4G13HFTUAAAAASUVORK5CYII=") center center no-repeat;
    width: 16px;
    height: 16px
}

.w3eden #package-settings .form-control {
    display: inline
}

.w3eden div.tooltip.in {
    border-radius: 2px !important
}

.w3eden .dropdown-menu li {
    list-style: none !important
}

.w3eden .cat-panel>ul {
    padding-top: 10px;
    padding-left: 20px;
    margin: 0
}

.w3eden .cat-panel li {
    list-style: none
}

.w3eden .cat-panel label {
    font-weight: 400 !important;
    cursor: pointer
}

.w3eden .cat-panel {
    max-height: 200px;
    overflow: hidden
}

.w3eden .cat-panel:hover {
    overflow: auto
}

.w3eden .label-white {
    background: #fff !important;
    color: #222 !important;
    text-shadow: none !important;
    margin-left: 10px
}

.w3eden .label-primary {
    background-color: var(--color-primary)
}

.w3eden .label-info {
    background-color: var(--color-info)
}

.w3eden .label-warning {
    background-color: var(--color-warning)
}

.w3eden .label-success {
    background-color: var(--color-success)
}

.w3eden .label-danger {
    background-color: var(--color-danger)
}

.w3eden .btn.wpdm-* {
    position: relative
}

.w3eden .btn.wpdm-* .left-icon {
    left: 0;
    top: 0;
    bottom: 0;
    position: absolute
}

.w3eden .btn.btn-fb {
    background-color: #354c8c !important;
    border: 0 !important;
    color: #fff !important;
    font-size: 10px !important;
    font-weight: 700 !important
}

.w3eden .btn.btn-fb .label-white {
    color: #354c8c !important
}

.w3eden .btn.wpdm-android {
    background: #8ec147;
    color: #fff !important
}

.w3eden .btn.wpdm-apple {
    background: #777;
    color: #fff !important
}

.w3eden .btn.wpdm-behance {
    background: #07f;
    color: #fff !important
}

.w3eden .btn.wpdm-bitcoin {
    background: #f79012;
    color: #fff !important
}

.w3eden .btn.wpdm-buysellads {
    background: #c90100;
    color: #fff !important
}

.w3eden .btn.wpdm-codepen {
    background: #444;
    color: #fff !important
}

.w3eden .btn.wpdm-css3 {
    background: #0270bb;
    color: #fff
}

.w3eden .btn.wpdm-delicious {
    background: #31a9ff;
    color: #fff !important
}

.w3eden .btn.wpdm-deviantart {
    background: #05cc47;
    color: #fff !important
}

.w3eden .btn.wpdm-digg {
    background: #0093cc
}

.w3eden .btn.wpdm-dribbble {
    background: #ea4c89
}

.w3eden .btn.wpdm-dropbox {
    background: #007ee5
}

.w3eden .btn.wpdm-drupal {
    background: #0073ba
}

.w3eden .btn.wpdm-email-1 {
    background: #35c7ed
}

.w3eden .btn.wpdm-email-2 {
    background: #35c7ed
}

.w3eden .btn.wpdm-facebook {
    background: #4862a3;
    color: #fff !important
}

.w3eden .btn.wpdm-flickr {
    background: #ff1981
}

.w3eden .btn.wpdm-foursquare {
    background: #f04d7a
}

.w3eden .btn.wpdm-git {
    background: #f64d27
}

.w3eden .btn.wpdm-github {
    background: #999
}

.w3eden .btn.wpdm-google {
    background: #3f85f4;
    color: #fff !important
}

.w3eden .btn.wpdm-google-plus {
    background: #dd4b39;
    color: #fff !important
}

.w3eden .btn.wpdm-html5 {
    background: #e54d26
}

.w3eden .btn.wpdm-instagram {
    background: #3d6b92
}

.w3eden .btn.wpdm-joomla {
    background: #fc8f30
}

.w3eden .btn.wpdm-jsfiddle {
    background: #4679bd
}

.w3eden .btn.wpdm-lastfm {
    background: #df1c23
}

.w3eden .btn.wpdm-linkedin {
    background: #0177b5;
    color: #fff !important
}

.w3eden .btn.wpdm-linux {
    background: #39a6df
}

.w3eden .btn.wpdm-maxcdn {
    background: #ff5b02
}

.w3eden .btn.wpdm-medium {
    background: #333
}

.w3eden .btn.wpdm-pagelines {
    background: #444
}

.w3eden .btn.wpdm-paypal {
    background: #009cde
}

.w3eden .btn.wpdm-pinterest {
    background: #db242c;
    color: #fff !important
}

.w3eden .btn.wpdm-reddit {
    background: #ff4500
}

.w3eden .btn.wpdm-rss {
    background: #fc8f55
}

.w3eden .btn.wpdm-share {
    background: #01924b
}

.w3eden .btn.wpdm-skype {
    background: #00aff0
}

.w3eden .btn.wpdm-slideshare {
    background: #0679b5
}

.w3eden .btn.wpdm-soundcloud {
    background: #ff4e00
}

.w3eden .btn.wpdm-spotify {
    background: #84bd00
}

.w3eden .btn.wpdm-box {
    background: #07c;
    color: #fff !important
}

.w3eden .btn.wpdm-onedrive {
    background: #0088f3;
    color: #fff !important
}

.w3eden .btn.wpdm-stack-overflow {
    background: #07c
}

.w3eden .btn.wpdm-stumbleupon {
    background: #ea4b24
}

.w3eden .btn.wpdm-trello {
    background: #026aa7
}

.w3eden .btn.wpdm-tumblr {
    background: #2c4762
}

.w3eden .btn.wpdm-twitter {
    background: #55acee;
    color: #fff !important
}

.w3eden .btn.wpdm-vimeo {
    background: #4bf
}

.w3eden .btn.wpdm-vine {
    background: #00bf8f
}

.w3eden .btn.wpdm-vk {
    background: #6281a3
}

.w3eden .btn.wpdm-whatsapp {
    background: #59ac23
}

.w3eden .btn.wpdm-windows {
    background: #00bcf2
}

.w3eden .btn.wpdm-wordpress {
    background: #1e8cbe
}

.w3eden .btn.wpdm-xing {
    background: #006464
}

.w3eden .btn.wpdm-yahoo {
    background: #5210c4
}

.w3eden .btn.wpdm-yelp {
    background: #c41200
}

.w3eden .btn.wpdm-youtube {
    background: #d02022
}

.w3eden .btn.wpdm-youtube-play {
    background: #d02022
}

.w3eden .btn.wpdm-*:hover {
    opacity: .9
}

.w3eden .wpdm-social-lock {
    text-transform: none !important
}

.w3eden .wpdm-social-lock .fa {
    margin-right: 5px
}

.w3eden .pluginButtonIcon {
    left: 0;
    margin-left: -3px;
    margin-right: 5px;
    position: relative;
    vertical-align: top
}

.w3eden .btn.wpdm-btn-play {
    outline: none !important
}

.w3eden .btn.wpdm-btn-play-lg {
    font-size: 25px !important;
    padding: 12px 15px !important;
    width: 60px !important
}

.w3eden .sx_plugin-button-2x_favblue {
    background-position: 0 -42px
}

.w3eden .nav-tabs li {
    margin-left: 0 !important
}

.w3eden .nav-tabs li a {
    outline: none !important
}

.w3eden .ptypes li {
    padding-left: 0 !important;
    border: 0 !important;
    margin: 0 !important
}

.w3eden #wpdm-files_filter {
    padding-right: 10px;
    padding-top: 10px
}

.w3eden #wpdm-files {
    margin-bottom: 0
}

.w3eden #wpdm-files_info,
.w3eden #wpdm-files_paginate {
    padding: 10px
}

.w3eden a.btn-success:not(.btn-simple),
.w3eden a.btn-primary:not(.btn-simple),
.w3eden a.btn-warning:not(.btn-simple),
.w3eden a.btn-danger:not(.btn-simple),
.w3eden a.btn-info:not(.btn-simple) {
    color: #fff !important
}

.w3eden input.input-error {
    border: 1px solid var(--color-danger) !important;
    color: var(--color-danger) !important
}

.w3eden label.error {
    color: var(--color-danger);
    font-weight: 300 !important;
    font-size: 11px !important
}

.w3eden .btn.wpdm-archive-meta .wpdm-download-link {
    padding: 5px 10px !important;
    margin: 0 !important;
    font-size: 9pt
}

.w3eden .btn.wpdm-archive-meta li {
    border: 0 !important;
    list-style: none !important;
    padding-right: 20px !important
}

.w3eden .btn.wpdm-archive-meta li:last-child {
    padding: 0 !important;
    max-width: 100px !important;
    text-align: right !important
}

.w3eden .btn.wpdm-archive-meta .wpdm-download-link img {
    box-shadow: none !important;
    height: 30px;
    width: auto
}

.w3eden .wpdm-file-entry {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 3px;
    font-size: 9pt;
    text-align: center
}

.w3eden .panel {
    box-shadow: none !important
}

.w3eden .panel .modal-header,
.w3eden .panel .panel-heading {
    font-size: 9pt;
    background: #f5f5f5;
    font-weight: 900
}

.w3eden .modal-content {
    overflow: hidden
}

.w3eden .panel img,
.w3eden .wpdm-file-entry img {
    box-shadow: none
}

.w3eden .input-group input:not(:last-child) {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important
}

.w3eden .btn.btn-group.bootstrap-select .btn.dropdown-toggle {
    border-radius: 3px !important
}

.w3eden label.error.valid {
    display: none
}

.w3eden #wpdm-featured-image {
    display: block;
    width: 100%;
    height: 200px;
    border: 2px dashed #ddd;
    /* background: url(https://www.midas.ac.in/wp-content/plugins/download-manager/assets/css/../images/plus.svg) no-repeat center center; */
    background-size: 48px;
    text-indent: -999999px
}

.w3eden label.error.valid {
    display: none !important
}

.w3eden .cfile .panel-file .panel-heading .btn {
    position: absolute;
    right: 9px;
    top: 7px
}

.w3eden .cfile .panel-file .panel-heading {
    position: relative
}

.w3eden .btn {
    -webkit-transition: all .2s ease;
    transition: all .2s ease;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 1px;
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 2px
}

.w3eden .btn.btn-link {
    border: 0 !important;
    background: 0 0 !important
}

.w3eden .btn.btn-lg {
    padding: 14px 25px;
    font-size: 14px
}

.w3eden .btn.btn-sm,
.w3eden .btn.btn-xs {
    padding: 7px 10px;
    font-size: 10px;
    border-radius: 2px
}

.w3eden .btn.btn-xs {
    border-radius: 1.5px
}

.w3eden .btn.btn-xs {
    padding: 5px 8px;
    font-size: 9px
}

.w3eden .btn.btn-secondary,
.w3eden .flat-default,
.w3eden .flat-default.btn-bordered:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff
}

.w3eden .btn.btn-secondary:hover:not(.no-hover),
.w3eden .flat-default:hover:not(.no-hover),
.w3eden .flat-default.btn-bordered {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    color: #fff
}

.w3eden .btn.btn-secondary:active:not(.no-hover),
.w3eden .flat-default:active:not(.no-hover),
.w3eden .flat-default.btn-bordered {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
    color: #fff
}

.w3eden .btn-secondary.btn-simple {
    color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover);
    background: 0 0
}

.w3eden .btn-secondary.btn-simple:hover,
.w3eden .btn-secondary.btn-simple:focus,
.w3eden .btn-secondary.btn-simple:active {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
    box-shadow: none
}

.w3eden .btn,
.w3eden .navbar .navbar-nav>a.btn {
    border-width: 2px;
    font-weight: 800;
    letter-spacing: 1px;
    font-size: .8571em;
    line-height: 1.35em;
    border: none;
    border-radius: .1875rem;
    cursor: pointer;
    background-color: #888;
    color: #fff
}

.w3eden .btn:hover,
.w3eden .btn:focus,
.w3eden .btn:active,
.w3eden .btn.active,
.w3eden .btn:active:focus,
.w3eden .btn:active:hover,
.w3eden .btn.active:focus,
.w3eden .btn.active:hover,
.w3eden .show>.btn.dropdown-toggle,
.w3eden .show>.btn.dropdown-toggle:focus,
.w3eden .show>.btn.dropdown-toggle:hover,
.w3eden .navbar .navbar-nav>a.btn:hover,
.w3eden .navbar .navbar-nav>a.btn:focus,
.w3eden .navbar .navbar-nav>a.btn:active,
.w3eden .navbar .navbar-nav>a.btn.active,
.w3eden .navbar .navbar-nav>a.btn:active:focus,
.w3eden .navbar .navbar-nav>a.btn:active:hover,
.w3eden .navbar .navbar-nav>a.btn.active:focus,
.w3eden .navbar .navbar-nav>a.btn.active:hover,
.w3eden .show>.navbar .navbar-nav>a.btn.dropdown-toggle,
.w3eden .show>.navbar .navbar-nav>a.btn.dropdown-toggle:focus,
.w3eden .show>.navbar .navbar-nav>a.btn.dropdown-toggle:hover {
    background-color: #979797;
    color: #fff;
    box-shadow: none
}

.w3eden .btn:hover,
.w3eden .navbar .navbar-nav>a.btn:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .17)
}

.w3eden .btn.disabled,
.w3eden .btn.disabled:hover,
.w3eden .btn.disabled:focus,
.w3eden .btn.disabled.focus,
.w3eden .btn.disabled:active,
.w3eden .btn.disabled.active,
.w3eden .btn:disabled,
.w3eden .btn:disabled:hover,
.w3eden .btn:disabled:focus,
.w3eden .btn:disabled.focus,
.w3eden .btn:disabled:active,
.w3eden .btn:disabled.active,
.w3eden .btn[disabled],
.w3eden .btn[disabled]:hover,
.w3eden .btn[disabled]:focus,
.w3eden .btn[disabled].focus,
.w3eden .btn[disabled]:active,
.w3eden .btn[disabled].active,
.w3eden fieldset[disabled] .btn,
.w3eden fieldset[disabled] .btn:hover,
.w3eden fieldset[disabled] .btn:focus,
.w3eden fieldset[disabled] .btn.focus,
.w3eden fieldset[disabled] .btn:active,
.w3eden fieldset[disabled] .btn.active,
.w3eden .navbar .navbar-nav>a.btn.disabled,
.w3eden .navbar .navbar-nav>a.btn.disabled:hover,
.w3eden .navbar .navbar-nav>a.btn.disabled:focus,
.w3eden .navbar .navbar-nav>a.btn.disabled.focus,
.w3eden .navbar .navbar-nav>a.btn.disabled:active,
.w3eden .navbar .navbar-nav>a.btn.disabled.active,
.w3eden .navbar .navbar-nav>a.btn:disabled,
.w3eden .navbar .navbar-nav>a.btn:disabled:hover,
.w3eden .navbar .navbar-nav>a.btn:disabled:focus,
.w3eden .navbar .navbar-nav>a.btn:disabled.focus,
.w3eden .navbar .navbar-nav>a.btn:disabled:active,
.w3eden .navbar .navbar-nav>a.btn:disabled.active,
.w3eden .navbar .navbar-nav>a.btn[disabled],
.w3eden .navbar .navbar-nav>a.btn[disabled]:hover,
.w3eden .navbar .navbar-nav>a.btn[disabled]:focus,
.w3eden .navbar .navbar-nav>a.btn[disabled].focus,
.w3eden .navbar .navbar-nav>a.btn[disabled]:active,
.w3eden .navbar .navbar-nav>a.btn[disabled].active,
.w3eden fieldset[disabled] .navbar .navbar-nav>a.btn,
.w3eden fieldset[disabled] .navbar .navbar-nav>a.btn:hover,
.w3eden fieldset[disabled] .navbar .navbar-nav>a.btn:focus,
.w3eden fieldset[disabled] .navbar .navbar-nav>a.btn.focus,
.w3eden fieldset[disabled] .navbar .navbar-nav>a.btn:active,
.w3eden fieldset[disabled] .navbar .navbar-nav>a.btn.active {
    background-color: #888;
    border-color: #888
}

.w3eden .btn.btn-simple,
.w3eden .navbar .navbar-nav>a.btn.btn-simple {
    color: #888;
    border-color: #888
}

.w3eden .btn.btn-simple:hover,
.w3eden .btn.btn-simple:focus,
.w3eden .btn.btn-simple:active,
.w3eden .navbar .navbar-nav>a.btn.btn-simple:hover,
.w3eden .navbar .navbar-nav>a.btn.btn-simple:focus,
.w3eden .navbar .navbar-nav>a.btn.btn-simple:active {
    background-color: transparent;
    color: #979797;
    border-color: #979797;
    box-shadow: none
}

.w3eden .btn.btn-link,
.w3eden .navbar .navbar-nav>a.btn.btn-link {
    color: #888
}

.w3eden .btn.btn-link:hover,
.w3eden .btn.btn-link:focus,
.w3eden .btn.btn-link:active,
.w3eden .navbar .navbar-nav>a.btn.btn-link:hover,
.w3eden .navbar .navbar-nav>a.btn.btn-link:focus,
.w3eden .navbar .navbar-nav>a.btn.btn-link:active {
    background-color: transparent;
    color: #979797;
    text-decoration: none;
    box-shadow: none
}

.w3eden .btn:hover,
.w3eden .btn:focus,
.w3eden .navbar .navbar-nav>a.btn:hover,
.w3eden .navbar .navbar-nav>a.btn:focus {
    opacity: 1;
    filter: alpha(opacity=100);
    outline: 0 !important
}

.w3eden .btn:active,
.w3eden .btn.active,
.w3eden .open>.btn.dropdown-toggle,
.w3eden .navbar .navbar-nav>a.btn:active,
.w3eden .navbar .navbar-nav>a.btn.active,
.w3eden .open>.navbar .navbar-nav>a.btn.dropdown-toggle {
    -webkit-box-shadow: none;
    box-shadow: none;
    outline: 0 !important
}

.w3eden .btn.btn-icon,
.w3eden .navbar .navbar-nav>a.btn.btn-icon {
    height: 2.375rem;
    min-width: 2.375rem;
    width: 2.375rem;
    padding: 0;
    font-size: .9375rem;
    overflow: hidden;
    position: relative;
    line-height: normal
}

.w3eden .btn.btn-icon.btn-simple,
.w3eden .navbar .navbar-nav>a.btn.btn-icon.btn-simple {
    padding: 0
}

.w3eden .btn.btn-icon.btn-sm,
.w3eden .navbar .navbar-nav>a.btn.btn-icon.btn-sm {
    height: 1.875rem;
    min-width: 1.875rem;
    width: 1.875rem
}

.w3eden .btn.btn-icon.btn-sm i.fa,
.w3eden .btn.btn-icon.btn-sm i.now-ui-icons,
.w3eden .navbar .navbar-nav>a.btn.btn-icon.btn-sm i.fa,
.w3eden .navbar .navbar-nav>a.btn.btn-icon.btn-sm i.now-ui-icons {
    font-size: .6875rem
}

.w3eden .btn.btn-icon.btn-lg,
.w3eden .navbar .navbar-nav>a.btn.btn-icon.btn-lg {
    height: 3.6rem;
    min-width: 3.6rem;
    width: 3.6rem
}

.w3eden .btn.btn-icon.btn-lg i.now-ui-icons,
.w3eden .btn.btn-icon.btn-lg i.fa,
.w3eden .navbar .navbar-nav>a.btn.btn-icon.btn-lg i.now-ui-icons,
.w3eden .navbar .navbar-nav>a.btn.btn-icon.btn-lg i.fa {
    font-size: 1.325rem
}

.w3eden .btn.btn-icon:not(.btn-footer) i.now-ui-icons,
.w3eden .btn.btn-icon:not(.btn-footer) i.fa,
.w3eden .navbar .navbar-nav>a.btn.btn-icon:not(.btn-footer) i.now-ui-icons,
.w3eden .navbar .navbar-nav>a.btn.btn-icon:not(.btn-footer) i.fa {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-12px, -12px);
    line-height: 1.5626rem;
    width: 25px
}

.w3eden .btn:not(.btn-icon) .now-ui-icons,
.w3eden .navbar .navbar-nav>a.btn:not(.btn-icon) .now-ui-icons {
    position: relative;
    top: 1px
}

.w3eden .btn-primary {
    background-color: var(--color-primary);
    color: #fff
}

.w3eden .btn-primary:hover,
.w3eden .btn-primary:focus,
.w3eden .show>.btn-primary.dropdown-toggle,
.w3eden .show>.btn-primary.dropdown-toggle:focus,
.w3eden .show>.btn-primary.dropdown-toggle:hover {
    background-color: var(--color-primary-hover);
    color: #fff;
    box-shadow: none
}

.w3eden .btn-primary:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .17)
}

.w3eden .btn-primary:active,
.w3eden .btn-primary.active,
.w3eden .btn-primary:active:focus,
.w3eden .btn-primary:active:hover,
.w3eden .btn-primary.active:focus,
.w3eden .btn-primary.active:hover {
    background-color: var(--color-primary-active)
}

.w3eden .btn-primary.disabled,
.w3eden .btn-primary.disabled:hover,
.w3eden .btn-primary.disabled:focus,
.w3eden .btn-primary.disabled.focus,
.w3eden .btn-primary.disabled:active,
.w3eden .btn-primary.disabled.active,
.w3eden .btn-primary:disabled,
.w3eden .btn-primary:disabled:hover,
.w3eden .btn-primary:disabled:focus,
.w3eden .btn-primary:disabled.focus,
.w3eden .btn-primary:disabled:active,
.w3eden .btn-primary:disabled.active,
.w3eden .btn-primary[disabled],
.w3eden .btn-primary[disabled]:hover,
.w3eden .btn-primary[disabled]:focus,
.w3eden .btn-primary[disabled].focus,
.w3eden .btn-primary[disabled]:active,
.w3eden .btn-primary[disabled].active,
.w3eden fieldset[disabled] .btn-primary,
.w3eden fieldset[disabled] .btn-primary:hover,
.w3eden fieldset[disabled] .btn-primary:focus,
.w3eden fieldset[disabled] .btn-primary.focus,
.w3eden fieldset[disabled] .btn-primary:active,
.w3eden fieldset[disabled] .btn-primary.active {
    background-color: var(--color-primary);
    border-color: var(--color-primary-hover)
}

.w3eden .btn-secondary {
    background-color: var(--color-secondary);
    color: #fff
}

.w3eden .btn-secondary:hover,
.w3eden .btn-secondary:focus,
.w3eden .show>.btn-secondary.dropdown-toggle,
.w3eden .show>.btn-secondary.dropdown-toggle:focus,
.w3eden .show>.btn-secondary.dropdown-toggle:hover {
    background-color: var(--color-secondary-hover);
    color: #fff;
    box-shadow: none
}

.w3eden .btn-secondary:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .17)
}

.w3eden .btn-secondary:active,
.w3eden .btn-secondary.active,
.w3eden .btn-secondary:active:focus,
.w3eden .btn-secondary:active:hover,
.w3eden .btn-secondary.active:focus,
.w3eden .btn-secondary.active:hover {
    background-color: var(--color-secondary-active)
}

.w3eden .btn-secondary.disabled,
.w3eden .btn-secondary.disabled:hover,
.w3eden .btn-secondary.disabled:focus,
.w3eden .btn-secondary.disabled.focus,
.w3eden .btn-secondary.disabled:active,
.w3eden .btn-secondary.disabled.active,
.w3eden .btn-secondary:disabled,
.w3eden .btn-secondary:disabled:hover,
.w3eden .btn-secondary:disabled:focus,
.w3eden .btn-secondary:disabled.focus,
.w3eden .btn-secondary:disabled:active,
.w3eden .btn-secondary:disabled.active,
.w3eden .btn-secondary[disabled],
.w3eden .btn-secondary[disabled]:hover,
.w3eden .btn-secondary[disabled]:focus,
.w3eden .btn-secondary[disabled].focus,
.w3eden .btn-secondary[disabled]:active,
.w3eden .btn-secondary[disabled].active,
.w3eden fieldset[disabled] .btn-secondary,
.w3eden fieldset[disabled] .btn-secondary:hover,
.w3eden fieldset[disabled] .btn-secondary:focus,
.w3eden fieldset[disabled] .btn-secondary.focus,
.w3eden fieldset[disabled] .btn-secondary:active,
.w3eden fieldset[disabled] .btn-secondary.active {
    background-color: var(--color-secondary-hover);
    border-color: var(--color-secondary-hover)
}

.w3eden .btn-simple {
    background-image: none !important
}

.w3eden .btn-primary.btn-simple {
    color: var(--color-primary-hover);
    border-color: var(--color-primary-hover)
}

.w3eden .btn-primary.btn-simple:hover,
.w3eden .btn-primary.btn-simple:focus,
.w3eden .btn-primary.btn-simple:active {
    background-color: transparent;
    color: var(--color-primary);
    border-color: var(--color-primary);
    box-shadow: none
}

.w3eden .btn-primary.btn-link {
    color: var(--color-primary-hover)
}

.w3eden .btn-primary.btn-link:hover,
.w3eden .btn-primary.btn-link:focus,
.w3eden .btn-primary.btn-link:active {
    background-color: transparent;
    color: var(--color-primary-hover);
    text-decoration: none;
    box-shadow: none
}

.w3eden .btn-success {
    background-color: var(--color-success);
    color: #fff
}

.w3eden .btn-success:hover,
.w3eden .btn-success:focus,
.w3eden .btn-success:active,
.w3eden .btn-success.active,
.w3eden .btn-success:active:focus,
.w3eden .btn-success:active:hover,
.w3eden .btn-success.active:focus,
.w3eden .btn-success.active:hover,
.w3eden .show>.btn-success.dropdown-toggle,
.w3eden .show>.btn-success.dropdown-toggle:focus,
.w3eden .show>.btn-success.dropdown-toggle:hover {
    background-color: var(--color-success-hover);
    color: #fff;
    box-shadow: none
}

.w3eden .btn-success:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .17)
}

.w3eden .btn-success.disabled,
.w3eden .btn-success.disabled:hover,
.w3eden .btn-success.disabled:focus,
.w3eden .btn-success.disabled.focus,
.w3eden .btn-success.disabled:active,
.w3eden .btn-success.disabled.active,
.w3eden .btn-success:disabled,
.w3eden .btn-success:disabled:hover,
.w3eden .btn-success:disabled:focus,
.w3eden .btn-success:disabled.focus,
.w3eden .btn-success:disabled:active,
.w3eden .btn-success:disabled.active,
.w3eden .btn-success[disabled],
.w3eden .btn-success[disabled]:hover,
.w3eden .btn-success[disabled]:focus,
.w3eden .btn-success[disabled].focus,
.w3eden .btn-success[disabled]:active,
.w3eden .btn-success[disabled].active,
.w3eden fieldset[disabled] .btn-success,
.w3eden fieldset[disabled] .btn-success:hover,
.w3eden fieldset[disabled] .btn-success:focus,
.w3eden fieldset[disabled] .btn-success.focus,
.w3eden fieldset[disabled] .btn-success:active,
.w3eden fieldset[disabled] .btn-success.active {
    background-color: var(--color-success-hover);
    border-color: var(--color-success-hover)
}

.w3eden .btn-success.btn-simple {
    color: var(--color-success-hover);
    border-color: var(--color-success-hover)
}

.w3eden .btn-success.btn-simple:hover,
.w3eden .btn-success.btn-simple:focus,
.w3eden .btn-success.btn-simple:active {
    background-color: transparent;
    color: var(--color-success-hover);
    border-color: var(--color-success-hover);
    box-shadow: none
}

.w3eden .btn-success.btn-link {
    color: var(--color-success-hover)
}

.w3eden .btn-success.btn-link:hover,
.w3eden .btn-success.btn-link:focus,
.w3eden .btn-success.btn-link:active {
    background-color: transparent;
    color: var(--color-success-hover);
    text-decoration: none;
    box-shadow: none
}

.w3eden .btn-info {
    background-color: var(--color-info);
    color: #fff
}

.w3eden .btn-info:hover,
.w3eden .btn-info:focus,
.w3eden .show>.btn-info.dropdown-toggle,
.w3eden .show>.btn-info.dropdown-toggle:focus,
.w3eden .show>.btn-info.dropdown-toggle:hover {
    background-color: var(--color-info-hover);
    color: #fff;
    box-shadow: none
}

.w3eden .btn-info:active,
.w3eden .btn-info.active,
.w3eden .btn-info:active:focus,
.w3eden .btn-info:active:hover,
.w3eden .btn-info.active:focus,
.w3eden .btn-info.active:hover {
    background-color: var(--color-info-active)
}

.w3eden .btn-info:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .17)
}

.w3eden .btn-info.disabled,
.w3eden .btn-info.disabled:hover,
.w3eden .btn-info.disabled:focus,
.w3eden .btn-info.disabled.focus,
.w3eden .btn-info.disabled:active,
.w3eden .btn-info.disabled.active,
.w3eden .btn-info:disabled,
.w3eden .btn-info:disabled:hover,
.w3eden .btn-info:disabled:focus,
.w3eden .btn-info:disabled.focus,
.w3eden .btn-info:disabled:active,
.w3eden .btn-info:disabled.active,
.w3eden .btn-info[disabled],
.w3eden .btn-info[disabled]:hover,
.w3eden .btn-info[disabled]:focus,
.w3eden .btn-info[disabled].focus,
.w3eden .btn-info[disabled]:active,
.w3eden .btn-info[disabled].active,
.w3eden fieldset[disabled] .btn-info,
.w3eden fieldset[disabled] .btn-info:hover,
.w3eden fieldset[disabled] .btn-info:focus,
.w3eden fieldset[disabled] .btn-info.focus,
.w3eden fieldset[disabled] .btn-info:active,
.w3eden fieldset[disabled] .btn-info.active {
    background-color: var(--color-info);
    border-color: var(--color-info)
}

.w3eden .btn-info.btn-simple {
    color: var(--color-info);
    border-color: var(--color-info)
}

.w3eden .btn-info.btn-simple:hover,
.w3eden .btn-info.btn-simple:focus,
.w3eden .btn-info.btn-simple:active {
    background-color: transparent;
    color: var(--color-info-hover);
    border-color: var(--color-info-hover);
    box-shadow: none
}

.w3eden .btn-info.btn-link {
    color: var(--color-info)
}

.w3eden .btn-info.btn-link:hover,
.w3eden .btn-info.btn-link:focus,
.w3eden .btn-info.btn-link:active {
    background-color: transparent;
    color: var(--color-info-hover);
    text-decoration: none;
    box-shadow: none
}

.w3eden .btn-warning {
    background-color: var(--color-warning);
    color: #fff
}

.w3eden .btn-warning:hover,
.w3eden .btn-warning:focus,
.w3eden .btn-warning:active,
.w3eden .btn-warning.active,
.w3eden .btn-warning:active:focus,
.w3eden .btn-warning:active:hover,
.w3eden .btn-warning.active:focus,
.w3eden .btn-warning.active:hover,
.w3eden .show>.btn-warning.dropdown-toggle,
.w3eden .show>.btn-warning.dropdown-toggle:focus,
.w3eden .show>.btn-warning.dropdown-toggle:hover {
    background-color: var(--color-warning-hover);
    color: #fff;
    box-shadow: none
}

.w3eden .btn-warning:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .17)
}

.w3eden .btn-warning.disabled,
.w3eden .btn-warning.disabled:hover,
.w3eden .btn-warning.disabled:focus,
.w3eden .btn-warning.disabled.focus,
.w3eden .btn-warning.disabled:active,
.w3eden .btn-warning.disabled.active,
.w3eden .btn-warning:disabled,
.w3eden .btn-warning:disabled:hover,
.w3eden .btn-warning:disabled:focus,
.w3eden .btn-warning:disabled.focus,
.w3eden .btn-warning:disabled:active,
.w3eden .btn-warning:disabled.active,
.w3eden .btn-warning[disabled],
.w3eden .btn-warning[disabled]:hover,
.w3eden .btn-warning[disabled]:focus,
.w3eden .btn-warning[disabled].focus,
.w3eden .btn-warning[disabled]:active,
.w3eden .btn-warning[disabled].active,
.w3eden fieldset[disabled] .btn-warning,
.w3eden fieldset[disabled] .btn-warning:hover,
.w3eden fieldset[disabled] .btn-warning:focus,
.w3eden fieldset[disabled] .btn-warning.focus,
.w3eden fieldset[disabled] .btn-warning:active,
.w3eden fieldset[disabled] .btn-warning.active {
    background-color: var(--color-warning);
    border-color: var(--color-warning)
}

.w3eden .btn-warning.btn-simple {
    color: var(--color-warning);
    border-color: var(--color-warning)
}

.w3eden .btn-warning.btn-simple:hover,
.w3eden .btn-warning.btn-simple:focus,
.w3eden .btn-warning.btn-simple:active {
    background-color: transparent;
    color: var(--color-warning-hover);
    border-color: var(--color-warning-hover);
    box-shadow: none
}

.w3eden .btn-warning.btn-link {
    color: var(--color-warning)
}

.w3eden .btn-warning.btn-link:hover,
.w3eden .btn-warning.btn-link:focus,
.w3eden .btn-warning.btn-link:active {
    background-color: transparent;
    color: var(--color-warning-hover);
    text-decoration: none;
    box-shadow: none
}

.w3eden .btn-danger {
    background-color: var(--color-danger);
    color: #fff
}

.w3eden .btn-danger:hover,
.w3eden .btn-danger:focus,
.w3eden .btn-danger:active,
.w3eden .btn-danger.active,
.w3eden .btn-danger:active:focus,
.w3eden .btn-danger:active:hover,
.w3eden .btn-danger.active:focus,
.w3eden .btn-danger.active:hover,
.w3eden .show>.btn-danger.dropdown-toggle,
.w3eden .show>.btn-danger.dropdown-toggle:focus,
.w3eden .show>.btn-danger.dropdown-toggle:hover {
    background-color: var(--color-danger-hover);
    color: #fff;
    box-shadow: none
}

.w3eden .btn-danger:hover {
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, .17)
}

.w3eden .btn-danger.disabled,
.w3eden .btn-danger.disabled:hover,
.w3eden .btn-danger.disabled:focus,
.w3eden .btn-danger.disabled.focus,
.w3eden .btn-danger.disabled:active,
.w3eden .btn-danger.disabled.active,
.w3eden .btn-danger:disabled,
.w3eden .btn-danger:disabled:hover,
.w3eden .btn-danger:disabled:focus,
.w3eden .btn-danger:disabled.focus,
.w3eden .btn-danger:disabled:active,
.w3eden .btn-danger:disabled.active,
.w3eden .btn-danger[disabled],
.w3eden .btn-danger[disabled]:hover,
.w3eden .btn-danger[disabled]:focus,
.w3eden .btn-danger[disabled].focus,
.w3eden .btn-danger[disabled]:active,
.w3eden .btn-danger[disabled].active,
.w3eden fieldset[disabled] .btn-danger,
.w3eden fieldset[disabled] .btn-danger:hover,
.w3eden fieldset[disabled] .btn-danger:focus,
.w3eden fieldset[disabled] .btn-danger.focus,
.w3eden fieldset[disabled] .btn-danger:active,
.w3eden fieldset[disabled] .btn-danger.active {
    background-color: var(--color-danger);
    border-color: var(--color-danger)
}

.w3eden .btn-danger.btn-simple {
    color: var(--color-danger);
    border-color: var(--color-danger)
}

.w3eden .btn-danger.btn-simple:hover,
.w3eden .btn-danger.btn-simple:focus,
.w3eden .btn-danger.btn-simple:active {
    background-color: transparent;
    color: var(--color-danger-hover);
    border-color: var(--color-danger-hover);
    box-shadow: none
}

.w3eden .btn-danger.btn-link {
    color: var(--color-danger)
}

.w3eden .btn-danger.btn-link:hover,
.w3eden .btn-danger.btn-link:focus,
.w3eden .btn-danger.btn-link:active {
    background-color: transparent;
    color: var(--color-danger-hover);
    text-decoration: none;
    box-shadow: none
}

.w3eden .btn:disabled,
.w3eden .btn[disabled],
.w3eden .btn.disabled {
    opacity: .5;
    filter: alpha(opacity=50)
}

.w3eden .btn-round {
    border-width: 1px;
    border-radius: 30px !important;
    padding: 11px 23px
}

.w3eden .btn-round.btn-simple {
    padding: 10px 22px
}

.w3eden .btn-simple {
    border: 1px solid;
    border-color: #888;
    padding: 10px 22px;
    background-color: transparent
}

.w3eden .btn-simple.disabled,
.w3eden .btn-simple.disabled:hover,
.w3eden .btn-simple.disabled:focus,
.w3eden .btn-simple.disabled.focus,
.w3eden .btn-simple.disabled:active,
.w3eden .btn-simple.disabled.active,
.w3eden .btn-simple:disabled,
.w3eden .btn-simple:disabled:hover,
.w3eden .btn-simple:disabled:focus,
.w3eden .btn-simple:disabled.focus,
.w3eden .btn-simple:disabled:active,
.w3eden .btn-simple:disabled.active,
.w3eden .btn-simple[disabled],
.w3eden .btn-simple[disabled]:hover,
.w3eden .btn-simple[disabled]:focus,
.w3eden .btn-simple[disabled].focus,
.w3eden .btn-simple[disabled]:active,
.w3eden .btn-simple[disabled].active,
.w3eden fieldset[disabled] .btn-simple,
.w3eden fieldset[disabled] .btn-simple:hover,
.w3eden fieldset[disabled] .btn-simple:focus,
.w3eden fieldset[disabled] .btn-simple.focus,
.w3eden fieldset[disabled] .btn-simple:active,
.w3eden fieldset[disabled] .btn-simple.active,
.w3eden .btn-link.disabled,
.w3eden .btn-link.disabled:hover,
.w3eden .btn-link.disabled:focus,
.w3eden .btn-link.disabled.focus,
.w3eden .btn-link.disabled:active,
.w3eden .btn-link.disabled.active,
.w3eden .btn-link:disabled,
.w3eden .btn-link:disabled:hover,
.w3eden .btn-link:disabled:focus,
.w3eden .btn-link:disabled.focus,
.w3eden .btn-link:disabled:active,
.w3eden .btn-link:disabled.active,
.w3eden .btn-link[disabled],
.w3eden .btn-link[disabled]:hover,
.w3eden .btn-link[disabled]:focus,
.w3eden .btn-link[disabled].focus,
.w3eden .btn-link[disabled]:active,
.w3eden .btn-link[disabled].active,
.w3eden fieldset[disabled] .btn-link,
.w3eden fieldset[disabled] .btn-link:hover,
.w3eden fieldset[disabled] .btn-link:focus,
.w3eden fieldset[disabled] .btn-link.focus,
.w3eden fieldset[disabled] .btn-link:active,
.w3eden fieldset[disabled] .btn-link.active {
    background-color: transparent
}

.w3eden .btn-lg {
    font-size: 1em;
    border-radius: .25rem;
    padding: 15px 48px
}

.w3eden .btn-lg.btn-simple {
    padding: 14px 47px
}

.w3eden .btn-sm {
    font-size: 14px;
    border-radius: .1875rem;
    padding: 5px 15px
}

.w3eden .btn-link {
    border: 0;
    padding: .5rem .7rem;
    background-color: transparent
}

.w3eden .btn-wd {
    min-width: 140px
}

.w3eden .btn-group.select {
    width: 100%
}

.w3eden .btn-group.select .btn {
    text-align: left
}

.w3eden .btn-group.select .caret {
    position: absolute;
    top: 50%;
    margin-top: -1px;
    right: 8px
}

.w3eden .btn .label {
    margin-left: 5px
}

.w3eden #publish.btn {
    font-size: 9pt;
    font-weight: 700
}

.w3eden .w3eden.wpdm-prices fieldset {
    margin-bottom: 10px
}

.w3eden .w3eden.wpdm-prices fieldset legend {
    font-size: 10pt;
    font-weight: 900;
    margin-bottom: 7px
}

.w3eden .w3eden.wpdm-prices fieldset label {
    display: block;
    clear: both
}

input.wpdm-radio[type=radio],
input.wpdm-checkbox[type=checkbox] {
    border: 1px solid #d5dbde;
    background: #d5dbde;
    color: #555;
    clear: none;
    cursor: pointer;
    display: inline-block;
    line-height: 0;
    height: 16px;
    margin: -3px 4px 0 0 !important;
    outline: 0;
    padding: 0 !important;
    text-align: center;
    vertical-align: middle;
    width: 16px;
    min-width: 16px;
    -webkit-appearance: none;
    box-shadow: none;
    position: relative;
    border-radius: 1.5px !important;
    -webkit-transition: ease-in-out .3s;
    -moz-transition: ease-in-out .3s;
    -ms-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s
}

input.wpdm-radio.s-light[type=radio],
input.wpdm-checkbox.s-light[type=checkbox] {
    border: 1px solid #d5dbde;
    background: #fff
}

input.wpdm-checkbox.wpdm-checkbox-m[type=checkbox],
input.wpdm-radio.wpdm-radio-m[type=radio] {
    transform: scale(1.5);
    border-radius: 1px !important;
    margin: 7px 10px 0 5px !important
}

input.wpdm-checkbox[type=checkbox]:checked {
    border: 1px solid #1484f5;
    background: #1484f5;
    box-shadow: 0 0 4px rgba(20, 132, 245, .71)
}

input.wpdm-radio[type=radio]:checked {
    border: 1px solid #35c34d;
    background: #35c34d;
    box-shadow: 0 0 4px rgba(53, 195, 77, .71)
}

input.wpdm-radio[type=radio]:checked:before,
input.wpdm-checkbox[type=checkbox]:checked:before {
    content: "";
    position: absolute;
    left: 4.5px;
    top: 1.5px;
    width: 5px !important;
    height: 9px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(40deg);
    -ms-transform: rotate(40deg);
    transform: rotate(40deg)
}

input.wpdm-radio[type=radio]:checked:before,
input.wpdm-checkbox[type=checkbox]:checked:before {
    float: left;
    display: inline-block;
    vertical-align: middle;
    width: 16px;
    font: 400 21px/1 dashicons;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.w3eden .wpdm_cart tbody tr td {
    border-bottom: 1px solid #eee
}

.w3eden .wpdm_cart tr td {
    vertical-align: middle !important
}

.w3eden .wpdm_cart tr td:last-child {
    text-align: right
}

.w3eden #cart_submit .label.label-primary {
    background-color: rgba(0, 0, 0, .3);
    font-size: 8pt;
    font-weight: 400
}

.w3eden .btn.btn-linkedin {
    background-color: #007ab9 !important;
    color: #fff !important
}

.w3eden .wpdm-social-lock-box .placehold.wpdmlinkedin {
    background: #007ab9
}

.w3eden .wpdm-social-lock-box .placehold.wpdmtwitter {
    background: #4ec0ff
}

.w3eden .wpdm-social-lock-box .placehold.wpdmfacebook {
    background: #48649f
}

.w3eden .wpdmslb-facebookshare,
.w3eden .wpdmslb-tweet,
.w3eden .wpdmslb-facebooklike {
    margin-left: 3px
}

.w3eden .wpdm-social-lock-box .IN-widget a span:first-child {
    height: 20px;
    padding: 1px !important
}

.w3eden .wpdm-social-lock-box .IN-widget a span:last-child {
    width: 42px;
    overflow: hidden;
    border-radius: 2px;
    height: 20px;
    text-transform: uppercase
}

.w3eden .wpdm-social-lock-box .placehold:hover,
.w3eden .wpdm-social-lock-box:hover .placehold {
    transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    transform: translateX(-100%) rotateY(-180deg);
    -webkit-transform: translateX(-100%) rotateY(-180deg)
}

.w3eden .wpdm-social-lock-box:not(.wpdm-social-lock-unlocked):hover {
    border: 1px solid #ccc;
    box-shadow: 0 0 2px rgba(0, 0, 0, .2);
    transition: all .3s ease-in-out
}

.w3eden .wpdm-social-lock-box:not(.wpdm-social-lock-unlocked):hover *:not(.placehold) {
    opacity: 1
}

.w3eden .wpdm-social-lock-box a.btn.wpdm-download-button {
    margin-left: -10px;
    margin-top: -10px;
    height: 45px;
    line-height: 27px;
    width: 150px;
    opacity: 1 !important;
    font-size: 13pt;
    letter-spacing: 1px
}

.w3eden .wpdm-download-link .fa-download,
.w3eden .wpdm-download-link .fa-icon-left {
    margin-right: 5px
}

#attach-file-section .btn {
    font-size: 10px
}

.w3eden .fa-play {
    margin: 0 !important
}

.w3eden .alert {
    border-radius: 4px;
    padding: 10px 15px;
    letter-spacing: .5px;
    margin: 5px 0;
    text-align: left
}

.w3eden .alert:before {
    color: #fff !important;
    height: 100%;
    line-height: 27px !important;
    top: -27px !important;
    position: absolute;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    content: attr(data-title)
}

.w3eden .alert[data-title=""] {
    border-top: 0 !important
}

.w3eden .alert.alert-sm:before {
    display: none !important
}

.w3eden .alert.alert-info {
    background: rgba(var(--color-info-rgb), .15) !important;
    position: relative;
    border: 0 !important
}

.w3eden .alert.alert-info[data-title] {
    border-top: 27px solid var(--color-info) !important
}

.w3eden .alert.alert-info,
.w3eden .alert.alert-info * {
    color: var(--color-info) !important
}

.w3eden .alert.alert-success {
    background: rgba(var(--color-success-rgb), .1) !important;
    position: relative;
    border: 0 !important
}

.w3eden .alert.alert-success[data-title] {
    border-top: 27px solid var(--color-success) !important
}

.w3eden .alert.alert-success,
.w3eden .alert.alert-success *:not(.btn) {
    color: var(--color-success) !important
}

.w3eden .alert.alert-danger {
    background: rgba(var(--color-danger-rgb), .1) !important;
    position: relative;
    border: 0 !important
}

.w3eden .alert.alert-danger[data-title] {
    border-top: 27px solid var(--color-danger) !important
}

.w3eden .alert.alert-danger,
.w3eden .alert.alert-danger *:not(.btn) {
    color: var(--color-danger) !important
}

.w3eden .alert.alert-warning {
    background: rgba(var(--color-warning-rgb), .15) !important;
    position: relative;
    border: 0 !important
}

.w3eden .alert.alert-warning[data-title] {
    border-top: 27px solid var(--color-warning) !important
}

.w3eden .alert.alert-warning,
.w3eden .alert.alert-warning * {
    color: var(--color-warning) !important
}

.w3eden .alert.alert-sm[data-title],
.w3eden .alert.alert-sm {
    border-radius: 3px;
    letter-spacing: .5px;
    font-size: 9pt;
    padding: 7px 15px !important;
    border-width: 1px !important;
    border-top-width: 1px !important;
    border-style: solid !important
}

.w3eden .inline-block {
    display: inline-block !important
}

.w3eden .panel {
    box-shadow: none
}

.w3eden .list-group {
    padding-left: 0;
    margin-left: 0
}

.w3eden .list-group .list-group-item {
    line-height: 25px;
    font-size: 14px
}

.w3eden .list-group .badge {
    padding: 0 10px;
    border-radius: 2px;
    line-height: 25px;
    height: 25px;
    background: var(--color-info)
}

.w3eden .list-group-item.selected,
.w3eden .list-group-item.active,
.w3eden .list-group-item.active:focus,
.w3eden .list-group-item.active:hover {
    z-index: 2;
    color: #fff !important;
    background-color: var(--color-primary) !important;
    border-color: var(--color-primary) !important
}

.w3eden .panel-group .panel-heading+.panel-collapse>.panel-body,
.w3eden .panel-group .panel-heading+.panel-collapse>.list-group {
    border-top: 1px solid #ecf0f1
}

.w3eden .panel-group .panel-footer {
    border-top: 0
}

.w3eden .panel-footer {
    background: rgba(247, 249, 252, .4);
    border-top: 1px solid #e3e4e9;
    font-size: 9pt
}

.w3eden .panel-group .panel-footer+.panel-collapse .panel-body {
    border-bottom: 1px solid #ecf0f1
}

.w3eden .panel-default {
    border-color: #e3e4e9
}

.w3eden .panel-default>.panel-heading {
    color: #1f3e6f;
    background-color: #f7f9fc;
    border-color: #e3e4e9
}

.w3eden .panel-default>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: #e3e4e9
}

.w3eden .panel-default>.panel-heading .badge {
    color: #ecf0f1;
    background-color: var(--color-primary-hover)
}

.w3eden .panel-default>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: #e3e4e9
}

.w3eden .panel-primary {
    border-color: var(--color-primary-hover)
}

.w3eden .panel-primary>.panel-heading {
    color: #fff;
    background-color: var(--color-primary-hover);
    border-color: var(--color-primary-hover)
}

.w3eden .panel-primary>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--color-primary-hover)
}

.w3eden .panel-primary>.panel-heading .badge {
    color: var(--color-primary-hover);
    background-color: #fff
}

.w3eden .panel-primary>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--color-primary-hover)
}

.w3eden .panel-success {
    border-color: var(--color-success)
}

.w3eden .panel-success>.panel-heading {
    color: #fff;
    background-color: var(--color-success);
    border-color: var(--color-success)
}

.w3eden .panel-success>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--color-success)
}

.w3eden .panel-success>.panel-heading .badge {
    color: var(--color-success);
    background-color: #fff
}

.w3eden .panel-success>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--color-success)
}

.w3eden .panel-info {
    border-color: var(--color-info)
}

.w3eden .panel-info>.panel-heading {
    color: #fff;
    background-color: var(--color-info);
    border-color: var(--color-info)
}

.w3eden .panel-info>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--color-info)
}

.w3eden .panel-info>.panel-heading .badge {
    color: var(--color-info);
    background-color: #fff
}

.w3eden .panel-info>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--color-info)
}

.w3eden .panel-warning {
    border-color: var(--color-warning)
}

.w3eden .panel-warning>.panel-heading {
    color: #fff;
    background-color: var(--color-warning);
    border-color: var(--color-warning)
}

.w3eden .panel-warning>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--color-warning)
}

.w3eden .panel-warning>.panel-heading .badge {
    color: var(--color-warning);
    background-color: #fff
}

.w3eden .panel-warning>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--color-warning)
}

.w3eden .panel-danger {
    border-color: var(--color-danger)
}

.w3eden .panel-danger>.panel-heading {
    color: #fff;
    background-color: var(--color-danger);
    border-color: var(--color-danger)
}

.w3eden .panel-danger>.panel-heading+.panel-collapse>.panel-body {
    border-top-color: var(--color-danger)
}

.w3eden .panel-danger>.panel-heading .badge {
    color: var(--color-danger);
    background-color: #fff
}

.w3eden .panel-danger>.panel-footer+.panel-collapse>.panel-body {
    border-bottom-color: var(--color-danger)
}

.w3eden #lock-options .btn.wpdm-accordion .panel {
    padding: 0 !important;
    border: 0 !important;
    margin-bottom: 1px !important;
    border-radius: 0 !important
}

.w3eden #lock-options .btn.wpdm-accordion .panel .panel-heading label {
    margin: 0 !important;
    line-height: 18px
}

.w3eden #lock-options .btn.wpdm-accordion .panel .panel-heading {
    border-radius: 0 !important
}

.w3eden .ptypes li {
    list-style: none !important;
    padding: 0 !important
}

.w3eden .btn .filter-option {
    background: transparent none repeat scroll 0 0 !important
}

.w3eden #xfilelist input.input-sm {
    height: 31px !important
}

.w3eden #xfilelist .panel-footer.footer-info {
    font-family: Courier, monospace;
    font-size: 9pt;
    text-align: center;
    background: #fafafa
}

.w3eden #xfilelist .panel-heading {
    font-weight: 400;
    font-size: 8pt;
    padding-top: 0 !important;
    padding-bottom: 0;
    line-height: 40px;
    height: 40px;
    overflow: hidden;
    word-break: break-all
}

.w3eden .wpdm-filelist thead {
    display: none
}

.w3eden .wpdm-filelist td {
    border-left: 0;
    border-right: 0;
    border-top: 1px solid #fff !important;
    border-bottom: 0 !important;
    background: rgba(0, 0, 0, .03) !important;
    vertical-align: middle !important
}

.w3eden .wpdm-filelist {
    border: 0 !important
}

.w3eden .wpdm-frontend-tabs a {
    font-size: 14px !important
}

.w3eden .wpdm-frontend-tabs a.btn {
    border-left: 1px solid rgba(255, 255, 255, .15) !important;
    border-right: 1px solid rgba(0, 0, 0, .15) !important;
    border-bottom: 1px solid rgba(0, 0, 0, .15) !important
}

.w3eden .wpdm-frontend-tabs {
    border-bottom: 4px solid var(--color-primary) !important;
    border-radius: 3px;
    background: #34495e;
    overflow: hidden
}

.w3eden .nav-tabs.wpdm-frontend-tabs a:focus,
.w3eden .nav-tabs.wpdm-frontend-tabs a:active,
.w3eden .nav-tabs.wpdm-frontend-tabs li.active a,
.w3eden .nav-tabs.wpdm-frontend-tabs a.active {
    background: var(--color-primary) !important;
    border: 0 !important
}

.w3eden .wpdm-frontend-tabs a {
    color: #fff !important;
    border-radius: 0 !important;
    text-transform: uppercase;
    font-size: 9pt !important;
    font-weight: 900;
    border: 0 !important;
    line-height: 20px !important
}

.w3eden .wpdm-frontend-tabs a:hover {
    background: rgba(26, 188, 156, .69) !important
}

.w3eden i.fa[rel=del],
.w3eden i.fa[rel=undo] {
    cursor: pointer
}

.w3eden .well {
    padding: 15px;
    box-shadow: none;
    border: 0;
    font-style: normal;
    background: #f5f5f5;
    border-radius: 4px;
    margin-bottom: 10px
}

.w3eden #wpdm-pf #title {
    border-radius: 3px
}

.w3eden .btn.btn-addtocart .label {
    font-size: 11px;
    letter-spacing: .5px;
    padding: 2px 5px !important;
    display: inline-block;
    border-radius: 1px
}

.w3eden .g-recaptcha>div>div {
    width: 100% !important
}

.w3eden .panel-footer li.page-numbers {
    border: 1px solid;
    border-radius: 500px;
    display: inline-block;
    font-size: 10px;
    font-weight: 900;
    height: 20px;
    line-height: 18px;
    text-align: center;
    width: 20px
}

.w3eden .panel-footer span.page-numbers.current {
    font-weight: 900;
    color: #444
}

.w3eden .btn .label-price:empty {
    display: none
}

.w3eden .btn .label-price {
    background: rgba(0, 0, 0, .1)
}

.w3eden .panel .panel-heading:nth-child(n+2) {
    border-radius: 0 !important;
    border-top: 1px solid #e3e4e9 !important
}

.w3eden #currentfiles .panel-heading {
    border-top: 0 !important
}

.w3eden div.list-group.pm-list {
    margin-bottom: 0 !important
}

.w3eden div.list-group.pm-list .list-group-item {
    cursor: pointer !important
}

.w3eden .panel .panel-heading {
    font-size: 9pt;
    font-weight: 500
}

.w3eden #payment_form label {
    font-size: 9pt
}

.w3eden .wpdm_cart .cart_item_title a,
.w3eden .wpdm_cart .cart-total * {
    font-weight: 900
}

.w3eden .cart-total-final {
    text-transform: capitalize;
    letter-spacing: .5px
}

.w3eden .wpdm_cart thead th {
    background: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .1) !important;
    font-weight: 500;
    border-bottom: 0 !important;
    font-size: 8pt
}

.w3eden .wpdm_cart .thumb img {
    width: 40px;
    margin-right: 10px
}

@media (max-width:640px) {
    .w3eden div.wpdmcard,
    .w3eden div#wpdmreg,
    .w3eden div#wpdmlogin {
        padding: 10px !important;
        margin: 0 !important;
        border-radius: 0 !important;
        box-shadow: none
    }
    .w3eden div#wpdmreg .col-sm-6,
    .w3eden div#wpdmreg .col-sm-5 {
        padding-left: 15px !important;
        margin-top: 5px !important
    }
    .w3eden .wpdm_cart thead {
        display: none
    }
    .w3eden .wpdm_cart tr {
        border-bottom: 2px solid rgba(0, 0, 0, .2)
    }
    .w3eden .wpdm_cart td input.form-control {
        display: inline-block !important
    }
    .w3eden .wpdm_cart th,
    .w3eden .wpdm_cart td {
        display: block
    }
    .w3eden .wpdm_cart span.visible-xs {
        display: inline-block !important;
        width: 40%
    }
    .w3eden .wpdm_cart td .btn {
        display: block;
        margin-bottom: 5px;
        width: 100%
    }
}

.w3eden .discount-msg {
    padding: 6px 12px;
    background: #5bb283;
    color: #fff;
    margin-bottom: 5px;
    border-radius: 3px;
    display: block;
    font-weight: 400;
    font-size: 9pt;
    z-index: 999999999
}

.w3eden .discount-msg .fa {
    margin-right: 6px
}

.w3eden .selectpicker.btn.btn-secondary {
    background: 0 0 !important;
    color: #333 !important;
    border: 1px solid #d5d5d5 !important
}

.w3eden .field-group {
    margin-bottom: 10px
}

.w3eden fieldset {
    border: 1px solid #ddd !important;
    padding: 10px;
    border-radius: 3px
}

.w3eden legend {
    font-weight: 700;
    font-size: inherit;
    color: inherit;
    display: inline;
    float: left;
    padding: 10px !important;
    border-bottom: 1px solid #ddd !important
}

.w3eden .package-info-list {
    font-size: 9pt;
    line-height: 1.5;
    color: #888
}

.w3eden .package-info-list .pull-left .fa {
    font-size: 14pt;
    line-height: 30px;
    margin-right: 6px;
    color: var(--color-info)
}

.w3eden .package-info-list strong {
    color: #333
}

.w3eden .package-info-list .list-group-item .wpdm-download-link {
    font-size: 12pt;
    display: block;
    text-align: center;
    font-weight: 900;
    color: var(--color-info)
}

.w3eden .popover-title {
    font-weight: 900 !important
}

.w3eden .w3eden.user-dashboard {
    font-size: 13px
}

.w3eden .w3eden.user-dashboard .panel {
    font-size: 10pt
}

.w3eden div.list-group .list-group-item:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.w3eden .list-group-item:last-child {
    border-bottom-left-radius: 3px;
    border-bottom-right-radius: 3px;
    margin-bottom: 0
}

.w3eden .list-group-item {
    border-top: 1px solid #ddd !important
}

.w3eden .list-group-item .avatar {
    border: 0;
    padding: 0;
    margin: 5px 0 3px;
    border-radius: 2px;
    width: 100%;
    height: auto
}

.w3eden .panel.dashboard-panel {
    border-radius: 3px;
    border-color: #ddd
}

.w3eden .panel.dashboard-panel .panel-heading {
    border-top-left-radius: 2px;
    border-top-right-radius: 2px;
    background: 0 0;
    border-color: #ddd
}

.w3eden .w3eden.user-dashboard .pagination {
    padding: 0;
    width: 100% !important
}

.w3eden .panel.dashboard-panel h3 {
    margin: 0;
    padding: 0;
    font-size: 14pt;
    font-weight: 800
}

.w3eden .panel.dashboard-panel h3.popover-title {
    padding: 10px;
    font-size: 9pt;
    font-weight: 400;
    background: #f8f8f8
}

.w3eden #cppo {
    margin-right: -2px !important;
    margin-top: -3px !important
}

.w3eden .popover-content .form-control {
    font-family: Courier, monospace;
    font-size: 14pt;
    font-weight: 700;
    margin: 10px 0;
    text-align: center
}

.w3eden .popover-content .input-group .form-control {
    margin: 0
}

.w3eden .panel-body .panel-row {
    margin-top: 10px;
    margin-bottom: 10px !important;
    display: inline-table
}

.w3eden .w3eden.user-dashboard .table th,
.w3eden .w3eden.user-dashboard .table td {
    font-size: 9pt;
    vertical-align: middle
}

.w3eden .w3eden.user-dashboard th {
    background: #f5f5f5;
    border-bottom-width: 1px
}

.w3eden .card {
    border-radius: 3px;
    overflow: hidden
}

.w3eden .card img {
    border-radius: 0;
    width: 100%
}

.w3eden .card .card-body {
    display: table;
    width: 100%
}

.w3eden .card .card-footer:hover {
    color: #fff !important
}

.w3eden .w3eden.user-dashboard .card .card-footer {
    background: var(--color-primary);
    color: #fff !important;
    font-size: 9pt;
    display: block;
    float: left;
    margin-top: -4px;
    width: 100%;
    height: 35px;
    line-height: 35px;
    position: relative;
    text-align: center
}

.w3eden .card .card-footer:after {
    content: '';
    position: absolute;
    border-style: solid;
    border-width: 0 10px 10px;
    border-color: var(--color-primary) transparent;
    display: block;
    width: 0;
    z-index: 1;
    margin-left: -10px;
    top: -10px;
    left: 50%
}

.w3eden .w3eden.user-dashboard #edit-profile-form .col-md-6 {
    padding-bottom: 10px
}

.w3eden .w3eden.user-dashboard label {
    font-size: 10pt;
    color: #777
}

.w3eden .w3eden.user-dashboard #edit-profile-form label .fa-star.text-danger {
    float: right;
    color: rgba(231, 76, 60, .8);
    font-size: 10px
}

.w3eden .text-danger {
    color: var(--color-danger) !important
}

.w3eden .w3eden.user-dashboard #edit-profile-form label {
    display: block
}

.w3eden .w3eden.user-dashboard .popover {
    max-width: 800px !important;
    width: 320px
}

.w3eden #wpdm-dashboard-sidebar .list-group-item {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400
}

.w3eden #wpdm-dashboard-sidebar .list-group-item.selected,
.w3eden #wpdm-dashboard-sidebar .list-group-item.active,
.w3eden #wpdm-dashboard-sidebar .list-group-item.active:active,
.w3eden #wpdm-dashboard-sidebar .list-group-item.active:focus {
    font-weight: 800
}

.w3eden #wpdm-dashboard-sidebar {
    padding: 0 20px 0 0;
    width: 240px
}

.w3eden.author-dashbboard #wpdm-dashboard-sidebar {
    width: 200px
}

.w3eden #wpdm-dashboard-sidebar #logo-block {
    border-radius: 8px;
    border: 1px solid rgba(69, 89, 122, .2);
    margin-bottom: 25px;
    padding: 15px
}

.w3eden #wpdm-dashboard-sidebar .shop-logo {
    box-shadow: none;
    border-radius: 4px;
    margin: 0;
    max-width: 100%;
    height: auto
}

.w3eden .mr-3 {
    margin-right: 12px !important
}

#wpdm-dashboard-sidebar h3 {
    font-size: 10px;
    text-transform: uppercase;
    font-family: var(--wpdm-font);
    letter-spacing: 1px;
    color: var(--color-muted);
    opacity: .4;
    padding: 0;
    margin: 20px 0 10px;
    font-weight: 600
}

.w3eden #wpdm-dashboard-sidebar .udb-item,
.w3eden #wpdm-dashboard-sidebar .adp-item {
    font-size: 13px;
    letter-spacing: 1px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
    outline: none !important;
    color: #708ca3;
    font-family: var(--wpdm-font);
    padding-left: 6px
}

.w3eden #wpdm-dashboard-sidebar .adp-item:hover,
.w3eden #wpdm-dashboard-sidebar .udb-item:hover {
    text-decoration: none
}

.w3eden #wpdm-dashboard-sidebar .udb-item .fa,
.w3eden #wpdm-dashboard-sidebar .udb-item .far,
.w3eden #wpdm-dashboard-sidebar .udb-item .fas,
.w3eden #wpdm-dashboard-sidebar .adp-item .far,
.w3eden #wpdm-dashboard-sidebar .adp-item .fas,
.w3eden #wpdm-dashboard-sidebar .adp-item .fa {
    width: 30px;
    line-height: 30px;
    height: 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    -webkit-transition: all ease-in-out .4s;
    -moz-transition: all ease-in-out .4s;
    -ms-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
    background: #fff
}

.w3eden #wpdm-dashboard-sidebar .udb-item:hover .fa,
.w3eden #wpdm-dashboard-sidebar .udb-item:hover .far,
.w3eden #wpdm-dashboard-sidebar .udb-item:hover .fas {
    box-shadow: 0 0 8px rgba(var(--color-success-rgb), .2) !important
}

.w3eden #wpdm-dashboard-sidebar .udb-item:hover i.color-info {
    box-shadow: 0 0 8px rgba(var(--color-info-rgb), .2) !important
}

.w3eden #wpdm-dashboard-sidebar .udb-item:hover i.color-primary {
    box-shadow: 0 0 8px rgba(var(--color-primary-rgb), .2) !important
}

.w3eden #wpdm-dashboard-sidebar .udb-item:hover i.color-danger {
    box-shadow: 0 0 8px rgba(var(--color-danger-rgb), .2) !important
}

.w3eden .udb-item.selected {
    color: var(--color-primary) !important
}

.w3eden #wpdm-dashboard-sidebar .udb-item.selected .fa,
.w3eden #wpdm-dashboard-sidebar .udb-item.selected .far,
.w3eden #wpdm-dashboard-sidebar .udb-item.selected .fas {
    box-shadow: 0 0 8px rgba(var(--color-primary-rgb), .2) !important;
    background: linear-gradient(135deg, #fff, rgba(var(--color-primary-rgb), .2)) !important;
    color: var(--color-primary) !important
}

.w3eden .list-group-item.active,
.w3eden .list-group-item.active:focus,
.w3eden .list-group-item.active:hover {
    z-index: 2;
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary) !important
}

.w3eden #wpdm-dashboard-contents .tab-pane .panel:last-child {
    margin-bottom: 0
}

.w3eden #wpdm-dashboard-contents .tab-pane .panel:last-child {
    margin-bottom: 0
}

.w3eden #wpdm-dashboard-contents .nav-tabs {
    border-bottom: 1px solid #ddd !important
}

.w3eden #wpdm-dashboard-contents .nav-tabs a {
    border-color: #ddd #ddd transparent !important
}

.w3eden #wpdm-dashboard-contents .table {
    border-bottom: 0
}

.w3eden small {
    font-size: 11px !important
}

.w3eden .login-form-meta-text {
    margin-bottom: 15px !important
}

.w3eden .login-form-meta-text label {
    font-size: 12px;
    font-weight: 600;
    line-height: 14px;
    margin: 0
}

.w3eden .wpdmlogin-logo {
    padding-bottom: 20px
}

.w3eden .wpdmlogin-logo img {
    box-shadow: none !important;
    max-height: 128px
}

.w3eden #wpdmreg .input-group-addon .fa,
.w3eden #wpdmlogin .input-group-addon .fa {
    width: 20px
}

.w3eden #wpdmreg .input-group-addon,
.w3eden #wpdmlogin .input-group-addon {
    border-radius: 3px 0 0 3px;
    text-align: center
}

.w3eden #wpdmreg .btn,
.w3eden #wpdmlogin #loginform-submit {
    border-radius: 3px
}

.w3eden #wpdmreg .input-group .form-control,
.w3eden #wpdmlogin .input-group .form-control {
    border-radius: 0 3px 3px 0
}

.w3eden #wpdmreg,
.w3eden #wpdmlogin {
    margin: 0 auto;
    max-width: 450px
}

.w3eden #checkout-login #wpdmreg,
.w3eden #checkout-login #wpdmlogin {
    margin: 0 auto;
    max-width: 100%
}

.w3eden .popover.fade {
    z-index: -9999
}

.w3eden .popover.fade.in {
    z-index: 9999
}

.w3eden .package-info-list .panel {
    margin: -10px -15px;
    border: 0
}

.w3eden .package-info-list .panel .panel-heading {
    border-radius: 0
}

.w3eden .wpdm-social-lock {
    margin: 0 3px !important
}

.w3eden .wpdm-social-lock.btn {
    border-radius: 2px !important;
    margin-bottom: 5px !important
}

.w3eden .w3eden.author-dashbboard #tabs li a.active {
    background: var(--color-primary)
}

.w3eden .category-panel .category-thumb {
    width: 32px;
    max-width: 100%
}

.w3eden .category-panel.has-desc .category-thumb {
    width: 96px;
    max-width: 100%
}

.w3eden .panel.panel-package-locks {
    border: 0 none;
    box-shadow: 0 0 15px rgba(0, 0, 0, .15) !important;
    padding: 20px !important
}

.w3eden .panel.panel-package-locks .panel-heading {
    padding-bottom: 0 !important;
    font-size: 14pt !important;
    font-weight: 900;
    background: 0 0 !important;
    border: 0 !important;
    text-transform: uppercase
}

.w3eden .panel-body.wpdm-social-locks.text-center>p {
    margin-bottom: 20px;
    margin-top: 0;
    padding: 0
}

.w3eden #wp-post_content-editor-tools {
    padding-right: 7px !important
}

.w3eden .wp-editor-container {
    border-top: 1px solid #e7e6e6 !important
}

.w3eden #package-description .wp-switch-editor {
    background: rgba(255, 255, 255, .2);
    font-size: 8pt !important;
    font-weight: 800;
    height: 20px !important;
    letter-spacing: 1px;
    line-height: 20px !important;
    padding: 5px 15px !important
}

.w3eden .html-active .switch-html,
.w3eden .tmce-active .switch-tmce {
    border-bottom-color: #fafafa !important
}

.w3eden .html-active .switch-html,
.w3eden .tmce-active .switch-tmce,
.w3eden .quicktags-toolbar,
.w3eden div.mce-toolbar-grp {
    background: #fafafa !important
}

.w3eden .ed_button.button.button-small {
    border-color: #e1e1e1;
    border-radius: 2px;
    box-shadow: 0 0 1px rgba(0, 0, 0, .1);
    padding-left: 10px;
    padding-right: 10px
}

.w3eden .w3eden.author-dashbboard .nav.nav-tabs li a {
    font-weight: 400 !important;
    border-top-left-radius: 2px !important;
    border-top-right-radius: 2px !important
}

.w3eden #wpdm-pf .nav.nav-tabs a {
    font-size: 9pt !important;
    letter-spacing: .2px;
    text-transform: capitalize;
    padding: 7px 16px;
    border-radius: 2px 2px 0 0;
    font-family: var(--wpdm-font)
}

.w3eden #wpdm-pf .alert.alert-success {
    position: fixed;
    z-index: 999999999 !important;
    top: 50px;
    right: 20px;
    max-width: 300px;
    -webkit-transition: all .2s ease;
    transition: all .2s ease
}

.w3eden #wpdm-pf .alert.alert-success:before {
    background: 0 0 !important
}

.w3eden div.wpdmcard,
.w3eden div#wpdmreg,
.w3eden div#wpdmlogin {
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    padding: 40px;
    border-top: 5px solid var(--color-primary);
    box-shadow: 0 0 20px 1px rgba(0, 0, 0, .08);
    background: #fff;
    border-radius: 10px;
    margin-bottom: 50px;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, rgba(var(--color-primary-rgb), .1) 100%)
}

.w3eden div.wpdmcard.color-primary {
    border-top: 5px solid var(--color-primary) !important
}

.w3eden div.wpdmcard.color-purple {
    border-top: 5px solid #8557d3 !important
}

.w3eden div.wpdmcard.color-success,
.w3eden div.wpdmcard.color-green {
    border-top: 5px solid var(--color-success) !important
}

.w3eden div.wpdmcard.color-danger,
.w3eden div.wpdmcard.color-red {
    border-top: 5px solid var(--color-danger) !important;
    border-radius: 10px;
    box-shadow: 0 -1px 20px rgba(255, 50, 62, .1)
}

.w3eden div#wpdmreg {
    border-top: 5px solid var(--color-success);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, rgba(var(--color-success-rgb), .1) 100%)
}

.w3eden .input-group-addon.input-group-addon-active {
    border-color: #66afe9;
    color: #66afe9
}

.w3eden .input-group-asyoupay.input-group>.input-group-addon,
.w3eden #wpdmlogin_checkout .input-group>.input-group-addon,
.w3eden #wpdmreg_checkout .input-group>.input-group-addon,
.w3eden #wpdmlogin .input-group>.input-group-addon,
.w3eden #wpdmreg .input-group>.input-group-addon {
    background: #fff;
    border-right: 0;
    -webkit-transition: ease-in-out .3s;
    -moz-transition: ease-in-out .3s;
    -ms-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
    font-size: 11pt
}

.w3eden #wpdmlogin_checkout .input-group>.input-group-addon .fa,
.w3eden #wpdmreg_checkout .input-group>.input-group-addon .fa,
.w3eden #wpdmlogin .input-group>.input-group-addon .fa,
.w3eden #wpdmreg .input-group>.input-group-addon .fa {
    width: 18px;
    display: inline-block
}

.w3eden .input-group .input-group-addon+.form-control {
    border-left: 0;
    padding-left: 0 !important
}

.w3eden div#wpdmreg input.form-control {
    font-size: 11pt
}

.w3eden div#wpdmlogin.lostpass {
    border-top: 5px solid var(--color-info);
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 90%, rgba(var(--color-info-rgb), .1) 100%)
}

.w3eden .btn.btn-light,
.w3eden a.btn.btn-light,
.w3eden button.btn.btn-light {
    color: #555 !important;
    background-color: #f0f2f5;
    border-color: #d3d3d3;
    font-weight: 400 !important;
    letter-spacing: .5px
}

.w3eden .btn.btn-light:hover,
.w3eden .btn.btn-light:focus,
.w3eden .btn.btn-light:active,
.w3eden .btn.btn-light.active,
.w3eden .open .dropdown-toggle.btn-light {
    color: #444;
    background-color: #e3e4e6;
    border-color: #a99ab8
}

.w3eden .btn.btn-light:active,
.w3eden .btn.btn-light.active,
.w3eden .open .dropdown-toggle.btn-light {
    background-image: none
}

.w3eden .btn.btn-light.disabled,
.w3eden .btn.btn-light[disabled],
.w3eden fieldset[disabled] .btn-light,
.w3eden .btn.btn-light.disabled:hover,
.w3eden .btn.btn-light[disabled]:hover,
.w3eden fieldset[disabled] .btn-light:hover,
.w3eden .btn.btn-light.disabled:focus,
.w3eden .btn.btn-light[disabled]:focus,
.w3eden fieldset[disabled] .btn-light:focus,
.w3eden .btn.btn-light.disabled:active,
.w3eden .btn.btn-light[disabled]:active,
.w3eden fieldset[disabled] .btn-light:active,
.w3eden .btn.btn-light.disabled.active,
.w3eden .btn.btn-light[disabled].active,
.w3eden fieldset[disabled] .btn-light.active {
    background-color: #d9d7db;
    border-color: #a99ab8
}

.w3eden .btn.btn-light .badge {
    color: #d9d7db;
    background-color: #6c4c8c
}

.w3eden .panel-info .panel-body.lead {
    font-weight: 900
}

.w3eden .panel-body.lead {
    margin: 0
}

.w3eden .text-muted {
    color: rgba(69, 89, 122, .6) !important
}

.w3eden .color-purple {
    color: #8557d3 !important
}

.w3eden .color-success,
.w3eden .color-green {
    color: var(--color-success) !important
}

.w3eden .color-info,
.w3eden .color-blue {
    color: var(--color-info) !important
}

.w3eden .color-danger,
.w3eden .color-red,
.w3eden .color-red a {
    color: var(--color-danger) !important
}

.w3eden .color-primary {
    color: var(--color-primary) !important
}

.w3eden .list-group li {
    margin-left: 0
}

.w3eden .wpdm_hide {
    display: none !important
}

.w3eden video {
    max-width: 100% !important
}

.w3eden video.thumbnail {
    padding: 10px
}

.w3eden .videothumbs .thumbnail {
    display: inline-block;
    margin: 0 10px 20px 0 !important
}

@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-8deg);
        transform: scale(.9) rotate(-8deg)
    }
    30%,
    50%,
    70% {
        -webkit-transform: scale(1.3) rotate(8deg);
        transform: scale(1.3) rotate(8deg)
    }
    40%,
    60% {
        -webkit-transform: scale(1.3) rotate(-8deg);
        transform: scale(1.3) rotate(-8deg)
    }
    80%,
    100% {
        -webkit-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

@keyframes tada {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1)
    }
    10%,
    20% {
        -webkit-transform: scale(.9) rotate(-8deg);
        -ms-transform: scale(.9) rotate(-8deg);
        transform: scale(.9) rotate(-8deg)
    }
    30%,
    50%,
    70% {
        -webkit-transform: scale(1.3) rotate(8deg);
        -ms-transform: scale(1.3) rotate(8deg);
        transform: scale(1.3) rotate(8deg)
    }
    40%,
    60% {
        -webkit-transform: scale(1.3) rotate(-8deg);
        -ms-transform: scale(1.3) rotate(-8deg);
        transform: scale(1.3) rotate(-8deg)
    }
    80%,
    100% {
        -webkit-transform: scale(1) rotate(0);
        -ms-transform: scale(1) rotate(0);
        transform: scale(1) rotate(0)
    }
}

.faa-tada.animated,
.faa-tada.animated-hover:hover,
.faa-parent.animated-hover:hover>.faa-tada {
    -webkit-animation: tada 2s linear infinite;
    animation: tada 2s linear infinite
}

.faa-tada.animated.faa-fast,
.faa-tada.animated-hover.faa-fast:hover,
.faa-parent.animated-hover:hover>.faa-tada.faa-fast {
    -webkit-animation: tada 1s linear infinite;
    animation: tada 1s linear infinite
}

.faa-tada.animated.faa-slow,
.faa-tada.animated-hover.faa-slow:hover,
.faa-parent.animated-hover:hover>.faa-tada.faa-slow {
    -webkit-animation: tada 3s linear infinite;
    animation: tada 3s linear infinite
}

.w3eden iframe#thumbnail {
    background: #f2f6f8;
    background: -moz-linear-gradient(top, #f2f6f8 0%, #d8e1e7 5%, #e0eff9 100%);
    background: -webkit-linear-gradient(top, #f2f6f8 0%, #d8e1e7 5%, #e0eff9 100%);
    background: linear-gradient(to bottom, #f2f6f8 0%, #d8e1e7 5%, #e0eff9 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f2f6f8', endColorstr='#e0eff9', GradientType=0)
}

.input-group-btn .btn {
    height: 34px;
    line-height: 10px
}

.w3eden .alert.alert-progress {
    background: var(--color-info);
    color: #fff
}

.w3eden .btn.inddl[disabled] {
    display: none !important
}

.w3eden .package-locks .panel+.panel {
    margin-top: 5px
}

.w3eden .link-template-widget .media-body a {
    margin: 0 0 6px;
    padding: 0;
    line-height: normal;
    font-size: 12pt;
    display: block
}

.w3eden .panel-heading .role-tabs a .fa-circle {
    color: rgba(4, 180, 239, .3) !important
}

.w3eden .panel-heading .role-tabs a.active .fa-circle {
    color: #04b4ef !important
}

.w3eden .bold {
    font-weight: 800 !important
}

.wpdm-custom-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    /* background: #fff url(https://www.midas.ac.in/wp-content/plugins/download-manager/assets/css/../images/sort.svg) calc(100% - 10px) center no-repeat !important; */
    background-size: 15px !important;
    padding-right: 10px !important;
    cursor: pointer
}

.w3eden .table.manage-packages-frontend td {
    vertical-align: middle
}

.btn.btn-social {
    padding: 0;
    width: 48px;
    line-height: 40px;
    border-radius: 2px;
    margin: 0 3px;
    height: 40px
}

.w3eden .page-numbers.current {
    background: var(--color-primary) !important;
    border-color: var(--color-primary) !important;
    color: #fff !important;
    font-weight: 800
}

.w3eden .wpdm-pagination li {
    display: inline-block;
    margin: 0
}

.w3eden .panel-footer .page-numbers {
    padding: 4px 10px;
    font-size: 10px;
    border-radius: 3px
}

.__dt_row span {
    margin-right: 5px
}

.w3eden .package-title {
    font-weight: 700
}

.w3eden .wpdm-link-template img.wpdm_icon {
    width: 48px !important;
    margin: 0
}

.w3eden .wpdm-link-template.c2a3 .package-title {
    padding: 0;
    margin: 0 0 5px;
    line-height: 20px;
    font-size: 11pt
}

.c2a3 .wpdm-download-link.wpdm-download-locked.btn.btn-info {
    padding: 16px 28px;
    font-size: 14px;
    font-weight: 700
}

.panel-heading[data-toggle=collapse] {
    cursor: pointer !important;
    position: relative
}

.panel-heading[data-toggle=collapse]:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    right: 15px;
    line-height: 40px;
    top: 0;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
    content: "\f078";
    color: rgba(0, 0, 0, .3) !important
}

.panel-heading[aria-expanded=true]:after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    right: 15px;
    line-height: 40px;
    top: 0;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    font-weight: 900;
    content: "\f077"
}

.panel-heading.collapsed {
    border-bottom: 0;
    border-radius: 3px
}

.w3eden .has-error .form-control {
    border-color: var(--color-danger)
}

.w3eden .has-error .input-group-addon {
    color: var(--color-danger);
    background-color: #fff;
    border-color: var(--color-danger)
}

.w3eden .human {
    display: none
}

svg#wpdm-loading path,
svg#wpdm-loading rect {
    fill: #ff6700 !important
}

.w3eden .blockui {
    position: relative
}

.w3eden .blockui:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 9999;
    /* background: rgba(255, 255, 255, .4) url(https://www.midas.ac.in/wp-content/plugins/download-manager/assets/css/../images/loading.svg) center center no-repeat; */
    background-size: 48px;
    -webkit-transition: ease-in-out .4s;
    -moz-transition: ease-in-out .4s;
    -ms-transition: ease-in-out .4s;
    -o-transition: ease-in-out .4s;
    transition: ease-in-out .4s
}

#wpdm-floatify-top-right,
#wpdm-notify-top-right {
    position: fixed;
    top: 30px;
    right: 30px;
    z-index: 999999 !important
}

.wpdm-floatify {
    margin-bottom: 10px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 9pt;
    letter-spacing: .5px
}

.wpdm-notify {
    padding: 20px 20px 20px 50px;
    border-radius: 5px;
    float: right;
    clear: both;
    /* background: #fff url(https://www.midas.ac.in/wp-content/plugins/download-manager/assets/css/../images/info.svg) 15px center no-repeat; */
    background-size: 24px !important;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    margin-bottom: 10px;
    -webkit-transition: ease-in-out .3s;
    -moz-transition: ease-in-out .3s;
    -ms-transition: ease-in-out .3s;
    -o-transition: ease-in-out .3s;
    transition: ease-in-out .3s;
    cursor: pointer;
    font-size: 9pt;
    letter-spacing: .5px
}

.wpdm-hide-right {
    display: none;
    position: absolute
}

.wpdm-notify .wpdm-notify-title {
    display: block;
    margin-bottom: 5px
}

.wpdm-notify-info {
    border-left: 3px solid var(--color-info);
    color: var(--color-info)
}

.wpdm-notify-success {
    /* background: #fff url(https://www.midas.ac.in/wp-content/plugins/download-manager/assets/css/../images/success.svg) 15px center no-repeat !important; */
    background-size: 24px !important;
    border-left: 3px solid var(--color-success);
    color: var(--color-success)
}

.wpdm-notify-error {
    /* background: #fff url(https://www.midas.ac.in/wp-content/plugins/download-manager/assets/css/../images/error.svg) 15px center no-repeat !important; */
    background-size: 24px !important;
    border-left: 3px solid var(--color-danger);
    color: var(--color-danger)
}

.wpdm-overlay {
    position: relative;
    overflow: hidden
}

.wpdm-overlay-content {
    padding-top: 20px;
    position: absolute;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, .9)
}

.wpdm-overlay .wpdm-overlay-close {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 9pt;
    color: var(--color-red)
}

i.udbsap {
    width: 32px;
    vertical-align: middle;
    display: inline-block;
    height: 1px;
    margin-top: -2px;
    background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 17%, rgba(0, 0, 0, .65) 100%);
    background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 17%, rgba(0, 0, 0, .65) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 17%, rgba(0, 0, 0, .65) 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#a6000000', GradientType=1);
    opacity: .5
}

.file-info {
    font-size: 9pt;
    line-height: 1.4
}

.file-info .file-title {
    font-size: 10pt;
    font-weight: 700;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    line-height: 1.8;
    position: relative;
    width: calc(100% - 25px)
}

.wpdm-file-block .img-area img {
    height: auto;
    max-height: 180px;
    vertical-align: middle;
    margin: 15px auto;
    display: inline-block
}

.wpdm-file-block .img-area img.file-ico {
    padding: 20% !important
}

.w3eden .wpdm-link-template .package-title a,
.w3eden .wpdm-link-template .package-title {
    margin: 0 !important;
    font-size: 11pt;
    line-height: 24px
}

.w3eden .link-template-default.thumbnail {
    padding: 10px
}

.w3eden .link-template-default.thumbnail .wpdm-download-link.btn {
    padding: 0 20px !important;
    line-height: 48px !important;
    font-size: 12pt;
    margin: 0
}

.abutton {
    background-color: Crimson;
    border-radius: 5px;
    color: #fff;
    padding: .5em;
    text-decoration: none;
    padding: .3em;
    margin: 0 10px
}

.abutton:focus,
abutton:hover {
    background-color: #b22222;
    color: #fff
}

.fixed-social-icons {
    color: #000;
    margin-left: 5px;
    width: 31px;
    height: 31px;
    background-color: #fff;
    border-radius: 100%;
    display: inline-block;
    text-align: center
}

.margin8 {
    margin-top: 8px
}

.margin5 {
    margin-top: 5px
}

.follow-title {
    font-weight: 700;
    line-height: 28px;
    font-size: 12.5px;
    text-transform: uppercase;
    vertical-align: middle;
    margin-right: 9px;
    display: inline-block;
    letter-spacing: 1px;
    margin-bottom: 0
}

#bar-social {
    margin: 0 10px;
    position: absolute
}

.panel-grid.panel-has-style>.panel-row-style,
.panel-grid.panel-no-style {
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: nowrap;
    -ms-justify-content: space-between;
    justify-content: space-between
}

.panel-layout.panel-is-rtl .panel-grid.panel-has-style>.panel-row-style,
.panel-layout.panel-is-rtl .panel-grid.panel-no-style {
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse
}

.panel-grid-cell {
    -ms-box-sizing: border-box;
    box-sizing: border-box
}

.panel-grid-cell .panel-cell-style {
    height: 100%
}

.panel-grid-cell .so-panel {
    zoom: 1
}

.panel-grid-cell .so-panel:before {
    content: "";
    display: block
}

.panel-grid-cell .so-panel:after {
    content: "";
    display: table;
    clear: both
}

.panel-grid-cell .panel-last-child {
    margin-bottom: 0
}

.panel-grid-cell .widget-title {
    margin-top: 0
}

body.siteorigin-panels-before-js {
    overflow-x: hidden
}

body.siteorigin-panels-before-js .siteorigin-panels-stretch {
    margin-right: -1000px!important;
    margin-left: -1000px!important;
    padding-right: 1000px!important;
    padding-left: 1000px!important
}


/* @font-face {
    font-family: 'carousel-arrows';
    src: url(//www.midas.ac.in/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/css/fonts/carousel-arrows.eot?-95vnmw);
    src: url(//www.midas.ac.in/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/css/fonts/carousel-arrows.eot?#iefix-95vnmw) format('embedded-opentype'), url(//www.midas.ac.in/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/css/fonts/carousel-arrows.woff?-95vnmw) format('woff'), url(//www.midas.ac.in/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/css/fonts/carousel-arrows.ttf?-95vnmw) format('truetype'), url(//www.midas.ac.in/wp-content/plugins/so-widgets-bundle/widgets/post-carousel/css/fonts/carousel-arrows.svg?-95vnmw#carousel-arrows) format('svg');
    font-weight: 400;
    font-style: normal
} */

.sow-carousel-title .widget-title {
    display: inline-block;
    padding-right: 15px
}

.sow-carousel-title a.sow-carousel-next,
.sow-carousel-title a.sow-carousel-previous {
    font-family: 'carousel-arrows';
    speak: none;
    display: block;
    float: right;
    overflow: hidden;
    margin-left: 2px;
    margin-top: 3px;
    font-style: normal;
    font-weight: 400;
    font-variant: normal;
    text-transform: none;
    font-size: 8px;
    line-height: 18px;
    width: 18px;
    text-align: center;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-decoration: none;
    color: #fff;
    background: #333;
    border-radius: 2px
}

.sow-carousel-title a.sow-carousel-next:hover,
.sow-carousel-title a.sow-carousel-previous:hover {
    background: #444
}

.sow-carousel-title a.sow-carousel-next:before {
    content: "\e601"
}

.sow-carousel-title a.sow-carousel-previous:before {
    content: "\e600"
}

@media screen and (max-width:600px) {
    .sow-carousel-title a.sow-carousel-previous {
        display: none
    }
    .sow-carousel-title a.sow-carousel-next {
        display: none
    }
}

.widget_sow-carousel {
    overflow-x: hidden;
    overflow-y: hidden
}

.sow-carousel-wrapper {
    overflow: hidden;
    position: relative;
    left: 0;
    right: 0
}

.sow-carousel-wrapper ul.sow-carousel-items {
    list-style: none;
    -webkit-transition: all .45s ease;
    -moz-transition: all .45s ease;
    -o-transition: all .45s ease;
    transition: all .45s ease;
    height: 200px;
    margin: 0;
    padding: 0;
    zoom: 1;
    width: 99999px
}

.sow-carousel-wrapper ul.sow-carousel-items:before {
    content: '';
    display: block
}

.sow-carousel-wrapper ul.sow-carousel-items:after {
    content: '';
    display: table;
    clear: both
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item {
    list-style: none;
    margin-left: 0;
    padding: 0;
    display: block;
    float: left;
    margin-right: 15px;
    overflow-x: hidden;
    overflow-y: hidden
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item:last-child {
    margin-right: 0
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item.rtl {
    float: right
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item.rtl:last-child {
    margin-right: 15px
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail {
    line-height: 0
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a {
    display: block;
    background-position: center center
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a,
.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a span.overlay {
    -webkit-transition: all .35s ease;
    -moz-transition: all .35s ease;
    -o-transition: all .35s ease;
    transition: all .35s ease
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a span.overlay {
    display: block;
    width: 100%;
    height: 100%;
    background: #3279bb;
    opacity: 0;
    position: static
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a:hover span {
    opacity: .5
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-default-thumbnail {
    display: block;
    background: #e8e8e8;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0, #e0e0e0), color-stop(1, #e8e8e8));
    background: -ms-linear-gradient(bottom, #e0e0e0, #e8e8e8);
    background: -moz-linear-gradient(center bottom, #e0e0e0 0%, #e8e8e8 100%);
    background: -o-linear-gradient(#e8e8e8, #e0e0e0)
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item h3 {
    font-size: 15px;
    text-align: center;
    font-weight: 500;
    color: #474747;
    margin: 10px 0 0
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item h3 a {
    text-decoration: none;
    color: inherit
}

.sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-loading {
    display: block;
    float: left;
    background: url(../images/carousel-loader.gif) #f6f6f6 center center no-repeat;
    margin: 0
}

a.sow-carousel-previous {
    display: none
}

a.sow-carousel-next {
    display: none
}

.so-widget-sow-post-carousel-default-fa0e60bb7344 .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item {
    width: 270px
}

.so-widget-sow-post-carousel-default-fa0e60bb7344 .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a {
    background-repeat: no-repeat;
    background-size: 270px 270px
}

.so-widget-sow-post-carousel-default-fa0e60bb7344 .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a,
.so-widget-sow-post-carousel-default-fa0e60bb7344 .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a span.overlay {
    width: 270px;
    height: 270px
}

.so-widget-sow-post-carousel-default-fa0e60bb7344 .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a:hover {
    background-size: 300px 300px
}

.so-widget-sow-post-carousel-default-fa0e60bb7344 .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-default-thumbnail {
    width: 270px;
    height: 270px
}

.so-widget-sow-post-carousel-default-fa0e60bb7344 .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-loading {
    width: 270px;
    height: 270px
}

.wp-downloadmanager-paging a,
.wp-downloadmanager-paging a:link {
    padding: 2px 4px;
    margin: 2px;
    text-decoration: none;
    border: 1px solid #06c;
    color: #06c;
    background-color: #fff
}

.wp-downloadmanager-paging a:visited {
    padding: 2px 4px;
    margin: 2px;
    text-decoration: none;
    border: 1px solid #06c;
    color: #06c;
    background-color: #fff
}

.wp-downloadmanager-paging a:hover {
    border: 1px solid #000;
    color: #000;
    background-color: #fff
}

.wp-downloadmanager-paging a:active {
    padding: 2px 4px;
    margin: 2px;
    text-decoration: none;
    border: 1px solid #06c;
    color: #06c;
    background-color: #fff
}

.wp-downloadmanager-paging span.pages {
    padding: 2px 4px;
    margin: 2px;
    color: #000;
    border: 1px solid #000;
    background-color: #fff
}

.wp-downloadmanager-paging span.current {
    padding: 2px 4px;
    margin: 2px;
    font-weight: 700;
    border: 1px solid #000;
    color: #000;
    background-color: #fff
}

.wp-downloadmanager-paging span.extend {
    padding: 2px 4px;
    margin: 2px;
    border: 1px solid #000;
    color: #000;
    background-color: #fff
}

.download-search-highlight {
    color: red
}

[data-class=wpcf7cf_group],
.wpcf7cf_remove,
.wpcf7cf_add {
    display: none
}

.wpcf7cf_repeater_sub {
    margin-bottom: 20px
}

.wpcf7cf_repeater_controls,
.wpcf7cf_step_controls {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap
}

.wpcf7cf_multistep .wpcf7cf_step {
    display: none
}

.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative
}

.scroll-wrapper>.scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important
}

.scroll-wrapper>.scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0
}

.scroll-element {
    display: none
}

.scroll-element,
.scroll-element div {
    box-sizing: content-box
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block
}

.scroll-element .scroll-arrow,
.scroll-element .scroll-bar {
    cursor: default
}

.scroll-textarea {
    border: 1px solid #ccc;
    border-top-color: #999
}

.scroll-textarea>.scroll-content {
    overflow: hidden !important
}

.scroll-textarea>.scroll-content>textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: 0;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important
}

.scroll-textarea>.scroll-content>textarea::-webkit-scrollbar {
    height: 0;
    width: 0
}

.scrollbar-light>.scroll-element,
.scrollbar-light>.scroll-element div {
    border: 0;
    margin: 0;
    overflow: hidden;
    padding: 0;
    position: absolute;
    z-index: 10
}

.scrollbar-light>.scroll-element div {
    display: block;
    height: 100%;
    left: 5px;
    top: 0;
    width: 1px
}

.scrollbar-light>.scroll-element .scroll-element_outer {
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.scrollbar-light>.scroll-element .scroll-element_size {
    background: #dbdbdb;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2RiZGJkYiIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNlOGU4ZTgiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, #dbdbdb 0, #e8e8e8 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #dbdbdb), color-stop(100%, #e8e8e8));
    background: -webkit-linear-gradient(left, #dbdbdb 0, #e8e8e8 100%);
    background: -o-linear-gradient(left, #dbdbdb 0, #e8e8e8 100%);
    background: -ms-linear-gradient(left, #dbdbdb 0, #e8e8e8 100%);
    background: linear-gradient(to right, #dbdbdb 0, #e8e8e8 100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.scrollbar-light>.scroll-element.scroll-x {
    bottom: 0;
    height: 17px;
    left: 0;
    min-width: 100%;
    width: 100%
}

.scrollbar-light>.scroll-element.scroll-y {
    height: 100%;
    min-height: 100%;
    right: 2px;
    top: 0;
    width: 12px;
    opacity: 0
}

.scrollbar-light>.scroll-element .scroll-bar {
    background: #fefefe;
    background: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPGxpbmVhckdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgeDE9IjAlIiB5MT0iMCUiIHgyPSIxMDAlIiB5Mj0iMCUiPgogICAgPHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iI2ZlZmVmZSIgc3RvcC1vcGFjaXR5PSIxIi8+CiAgICA8c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiNmNWY1ZjUiIHN0b3Atb3BhY2l0eT0iMSIvPgogIDwvbGluZWFyR3JhZGllbnQ+CiAgPHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEiIGhlaWdodD0iMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);
    background: -moz-linear-gradient(left, #fefefe 0, #f5f5f5 100%);
    background: -webkit-gradient(linear, left top, right top, color-stop(0, #fefefe), color-stop(100%, #f5f5f5));
    background: -webkit-linear-gradient(left, #fefefe 0, #f5f5f5 100%);
    background: -o-linear-gradient(left, #fefefe 0, #f5f5f5 100%);
    background: -ms-linear-gradient(left, #fefefe 0, #f5f5f5 100%);
    background: linear-gradient(to right, #fefefe 0, #f5f5f5 100%);
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px
}

.scrollbar-light>.scroll-element.scroll-y .scroll-bar {
    left: 0;
    min-height: 10px;
    width: 11px;
    background: #12b3ff;
    opacity: .5;
    transition: opacity .25s
}

.scrollbar-light>.scroll-element.scroll-y .scroll-bar:hover {
    opacity: 1
}

.scrollbar-light>.scroll-element.scroll-x .scroll-element_size {
    left: -4px;
    width: 1px
}

.scrollbar-light>.scroll-element.scroll-y .scroll-element_outer {
    left: 0;
    top: 2px;
    width: 12px
}

.scrollbar-light>.scroll-element.scroll-y .scroll-element_size {
    top: -4px
}

.scrollbar-light>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size {
    left: -19px
}

.scrollbar-light>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size {
    top: -19px
}

.scrollbar-light>.scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track {
    left: -19px
}

.scrollbar-light>.scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track {
    top: -19px
}

.tipsy {
    font-size: 12px;
    position: absolute;
    padding: 5px;
    z-index: 100000
}

.tipsy-inner {
    background-color: #000;
    color: #fff;
    max-width: 200px;
    padding: 5px 8px 4px 8px;
    text-align: center
}

.tipsy-inner {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px
}

.tipsy-arrow {
    position: absolute;
    width: 0;
    height: 0;
    line-height: 0;
    border: 5px dashed #000
}

.tipsy-arrow-n {
    border-bottom-color: #000
}

.tipsy-arrow-s {
    border-top-color: #000
}

.tipsy-arrow-e {
    border-left-color: #000
}

.tipsy-arrow-w {
    border-right-color: #000
}

.tipsy-n .tipsy-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-bottom-style: solid;
    border-top: 0;
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-nw .tipsy-arrow {
    top: 0;
    left: 10px;
    border-bottom-style: solid;
    border-top: 0;
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-ne .tipsy-arrow {
    top: 0;
    right: 10px;
    border-bottom-style: solid;
    border-top: 0;
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-s .tipsy-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-top-style: solid;
    border-bottom: 0;
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-sw .tipsy-arrow {
    bottom: 0;
    left: 10px;
    border-top-style: solid;
    border-bottom: 0;
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-se .tipsy-arrow {
    bottom: 0;
    right: 10px;
    border-top-style: solid;
    border-bottom: 0;
    border-left-color: transparent;
    border-right-color: transparent
}

.tipsy-e .tipsy-arrow {
    right: 0;
    top: 50%;
    margin-top: -5px;
    border-left-style: solid;
    border-right: 0;
    border-top-color: transparent;
    border-bottom-color: transparent
}

.tipsy-w .tipsy-arrow {
    left: 0;
    top: 50%;
    margin-top: -5px;
    border-right-style: solid;
    border-left: 0;
    border-top-color: transparent;
    border-bottom-color: transparent
}

#popup_container {
    background: #fff
}

#popup_container #popup_title {
    padding: 10px 20px;
    background: #18b6c7;
    color: #fff;
    font-size: 18px;
    margin: 0
}

#popup_container #popup_content {
    padding: 20px
}

#popup_container #popup_content #popup_message {
    margin-bottom: 20px
}

#popup_container #popup_panel {
    text-align: center
}

.single-lp_course .course-students {
    padding-top: 10px
}

.single-lp_course .course-students-list {
    margin-top: 10px
}

.single-lp_course .course-students-list .students {
    list-style-type: none;
    margin: 0
}

.single-lp_course .course-students-list .students li {
    margin-right: 10px
}

.single-lp_course .course-students-list .students p {
    margin-top: 15px
}

.single-lp_course .lp_course .entry-footer {
    display: none
}


/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */


/* @font-face {
    font-family: FontAwesome;
    src: url(//www.midas.ac.in/wp-content/plugins/learnpress/assets/css/../fonts/awesome/fontawesome-webfont.eot?v=4.7.0);
    src: url(//www.midas.ac.in/wp-content/plugins/learnpress/assets/css/../fonts/awesome/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'), url(//www.midas.ac.in/wp-content/plugins/learnpress/assets/css/../fonts/awesome/fontawesome-webfont.woff2?v=4.7.0) format('woff2'), url(//www.midas.ac.in/wp-content/plugins/learnpress/assets/css/../fonts/awesome/fontawesome-webfont.woff?v=4.7.0) format('woff'), url(//www.midas.ac.in/wp-content/plugins/learnpress/assets/css/../fonts/awesome/fontawesome-webfont.ttf?v=4.7.0) format('truetype'), url(//www.midas.ac.in/wp-content/plugins/learnpress/assets/css/../fonts/awesome/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');
    font-weight: 400;
    font-style: normal
} */

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571429em;
    text-align: center
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center
}

.fa-li.fa-lg {
    left: -1.85714286em
}

.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa.fa-pull-left {
    margin-right: .3em
}

.fa.fa-pull-right {
    margin-left: .3em
}

.pull-right {
    float: right
}

.pull-left {
    float: left
}

.fa.pull-left {
    margin-right: .3em
}

.fa.pull-right {
    margin-left: .3em
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

 :root .fa-flip-horizontal,
 :root .fa-flip-vertical,
 :root .fa-rotate-180,
 :root .fa-rotate-270,
 :root .fa-rotate-90 {
    filter: none
}

.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.fa-glass:before {
    content: "\f000"
}

.fa-music:before {
    content: "\f001"
}

.fa-search:before {
    content: "\f002"
}

.fa-envelope-o:before {
    content: "\f003"
}

.fa-heart:before {
    content: "\f004"
}

.fa-star:before {
    content: "\f005"
}

.fa-star-o:before {
    content: "\f006"
}

.fa-user:before {
    content: "\f007"
}

.fa-film:before {
    content: "\f008"
}

.fa-th-large:before {
    content: "\f009"
}

.fa-th:before {
    content: "\f00a"
}

.fa-th-list:before {
    content: "\f00b"
}

.fa-check:before {
    content: "\f00c"
}

.fa-close:before,
.fa-remove:before,
.fa-times:before {
    content: "\f00d"
}

.fa-search-plus:before {
    content: "\f00e"
}

.fa-search-minus:before {
    content: "\f010"
}

.fa-power-off:before {
    content: "\f011"
}

.fa-signal:before {
    content: "\f012"
}

.fa-cog:before,
.fa-gear:before {
    content: "\f013"
}

.fa-trash-o:before {
    content: "\f014"
}

.fa-home:before {
    content: "\f015"
}

.fa-file-o:before {
    content: "\f016"
}

.fa-clock-o:before {
    content: "\f017"
}

.fa-road:before {
    content: "\f018"
}

.fa-download:before {
    content: "\f019"
}

.fa-arrow-circle-o-down:before {
    content: "\f01a"
}

.fa-arrow-circle-o-up:before {
    content: "\f01b"
}

.fa-inbox:before {
    content: "\f01c"
}

.fa-play-circle-o:before {
    content: "\f01d"
}

.fa-repeat:before,
.fa-rotate-right:before {
    content: "\f01e"
}

.fa-refresh:before {
    content: "\f021"
}

.fa-list-alt:before {
    content: "\f022"
}

.fa-lock:before {
    content: "\f023"
}

.fa-flag:before {
    content: "\f024"
}

.fa-headphones:before {
    content: "\f025"
}

.fa-volume-off:before {
    content: "\f026"
}

.fa-volume-down:before {
    content: "\f027"
}

.fa-volume-up:before {
    content: "\f028"
}

.fa-qrcode:before {
    content: "\f029"
}

.fa-barcode:before {
    content: "\f02a"
}

.fa-tag:before {
    content: "\f02b"
}

.fa-tags:before {
    content: "\f02c"
}

.fa-book:before {
    content: "\f02d"
}

.fa-bookmark:before {
    content: "\f02e"
}

.fa-print:before {
    content: "\f02f"
}

.fa-camera:before {
    content: "\f030"
}

.fa-font:before {
    content: "\f031"
}

.fa-bold:before {
    content: "\f032"
}

.fa-italic:before {
    content: "\f033"
}

.fa-text-height:before {
    content: "\f034"
}

.fa-text-width:before {
    content: "\f035"
}

.fa-align-left:before {
    content: "\f036"
}

.fa-align-center:before {
    content: "\f037"
}

.fa-align-right:before {
    content: "\f038"
}

.fa-align-justify:before {
    content: "\f039"
}

.fa-list:before {
    content: "\f03a"
}

.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b"
}

.fa-indent:before {
    content: "\f03c"
}

.fa-video-camera:before {
    content: "\f03d"
}

.fa-image:before,
.fa-photo:before,
.fa-picture-o:before {
    content: "\f03e"
}

.fa-pencil:before {
    content: "\f040"
}

.fa-map-marker:before {
    content: "\f041"
}

.fa-adjust:before {
    content: "\f042"
}

.fa-tint:before {
    content: "\f043"
}

.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044"
}

.fa-share-square-o:before {
    content: "\f045"
}

.fa-check-square-o:before {
    content: "\f046"
}

.fa-arrows:before {
    content: "\f047"
}

.fa-step-backward:before {
    content: "\f048"
}

.fa-fast-backward:before {
    content: "\f049"
}

.fa-backward:before {
    content: "\f04a"
}

.fa-play:before {
    content: "\f04b"
}

.fa-pause:before {
    content: "\f04c"
}

.fa-stop:before {
    content: "\f04d"
}

.fa-forward:before {
    content: "\f04e"
}

.fa-fast-forward:before {
    content: "\f050"
}

.fa-step-forward:before {
    content: "\f051"
}

.fa-eject:before {
    content: "\f052"
}

.fa-chevron-left:before {
    content: "\f053"
}

.fa-chevron-right:before {
    content: "\f054"
}

.fa-plus-circle:before {
    content: "\f055"
}

.fa-minus-circle:before {
    content: "\f056"
}

.fa-times-circle:before {
    content: "\f057"
}

.fa-check-circle:before {
    content: "\f058"
}

.fa-question-circle:before {
    content: "\f059"
}

.fa-info-circle:before {
    content: "\f05a"
}

.fa-crosshairs:before {
    content: "\f05b"
}

.fa-times-circle-o:before {
    content: "\f05c"
}

.fa-check-circle-o:before {
    content: "\f05d"
}

.fa-ban:before {
    content: "\f05e"
}

.fa-arrow-left:before {
    content: "\f060"
}

.fa-arrow-right:before {
    content: "\f061"
}

.fa-arrow-up:before {
    content: "\f062"
}

.fa-arrow-down:before {
    content: "\f063"
}

.fa-mail-forward:before,
.fa-share:before {
    content: "\f064"
}

.fa-expand:before {
    content: "\f065"
}

.fa-compress:before {
    content: "\f066"
}

.fa-plus:before {
    content: "\f067"
}

.fa-minus:before {
    content: "\f068"
}

.fa-asterisk:before {
    content: "\f069"
}

.fa-exclamation-circle:before {
    content: "\f06a"
}

.fa-gift:before {
    content: "\f06b"
}

.fa-leaf:before {
    content: "\f06c"
}

.fa-fire:before {
    content: "\f06d"
}

.fa-eye:before {
    content: "\f06e"
}

.fa-eye-slash:before {
    content: "\f070"
}

.fa-exclamation-triangle:before,
.fa-warning:before {
    content: "\f071"
}

.fa-plane:before {
    content: "\f072"
}

.fa-calendar:before {
    content: "\f073"
}

.fa-random:before {
    content: "\f074"
}

.fa-comment:before {
    content: "\f075"
}

.fa-magnet:before {
    content: "\f076"
}

.fa-chevron-up:before {
    content: "\f077"
}

.fa-chevron-down:before {
    content: "\f078"
}

.fa-retweet:before {
    content: "\f079"
}

.fa-shopping-cart:before {
    content: "\f07a"
}

.fa-folder:before {
    content: "\f07b"
}

.fa-folder-open:before {
    content: "\f07c"
}

.fa-arrows-v:before {
    content: "\f07d"
}

.fa-arrows-h:before {
    content: "\f07e"
}

.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080"
}

.fa-twitter-square:before {
    content: "\f081"
}

.fa-facebook-square:before {
    content: "\f082"
}

.fa-camera-retro:before {
    content: "\f083"
}

.fa-key:before {
    content: "\f084"
}

.fa-cogs:before,
.fa-gears:before {
    content: "\f085"
}

.fa-comments:before {
    content: "\f086"
}

.fa-thumbs-o-up:before {
    content: "\f087"
}

.fa-thumbs-o-down:before {
    content: "\f088"
}

.fa-star-half:before {
    content: "\f089"
}

.fa-heart-o:before {
    content: "\f08a"
}

.fa-sign-out:before {
    content: "\f08b"
}

.fa-linkedin-square:before {
    content: "\f08c"
}

.fa-thumb-tack:before {
    content: "\f08d"
}

.fa-external-link:before {
    content: "\f08e"
}

.fa-sign-in:before {
    content: "\f090"
}

.fa-trophy:before {
    content: "\f091"
}

.fa-github-square:before {
    content: "\f092"
}

.fa-upload:before {
    content: "\f093"
}

.fa-lemon-o:before {
    content: "\f094"
}

.fa-phone:before {
    content: "\f095"
}

.fa-square-o:before {
    content: "\f096"
}

.fa-bookmark-o:before {
    content: "\f097"
}

.fa-phone-square:before {
    content: "\f098"
}

.fa-twitter:before {
    content: "\f099"
}

.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a"
}

.fa-github:before {
    content: "\f09b"
}

.fa-unlock:before {
    content: "\f09c"
}

.fa-credit-card:before {
    content: "\f09d"
}

.fa-feed:before,
.fa-rss:before {
    content: "\f09e"
}

.fa-hdd-o:before {
    content: "\f0a0"
}

.fa-bullhorn:before {
    content: "\f0a1"
}

.fa-bell:before {
    content: "\f0f3"
}

.fa-certificate:before {
    content: "\f0a3"
}

.fa-hand-o-right:before {
    content: "\f0a4"
}

.fa-hand-o-left:before {
    content: "\f0a5"
}

.fa-hand-o-up:before {
    content: "\f0a6"
}

.fa-hand-o-down:before {
    content: "\f0a7"
}

.fa-arrow-circle-left:before {
    content: "\f0a8"
}

.fa-arrow-circle-right:before {
    content: "\f0a9"
}

.fa-arrow-circle-up:before {
    content: "\f0aa"
}

.fa-arrow-circle-down:before {
    content: "\f0ab"
}

.fa-globe:before {
    content: "\f0ac"
}

.fa-wrench:before {
    content: "\f0ad"
}

.fa-tasks:before {
    content: "\f0ae"
}

.fa-filter:before {
    content: "\f0b0"
}

.fa-briefcase:before {
    content: "\f0b1"
}

.fa-arrows-alt:before {
    content: "\f0b2"
}

.fa-group:before,
.fa-users:before {
    content: "\f0c0"
}

.fa-chain:before,
.fa-link:before {
    content: "\f0c1"
}

.fa-cloud:before {
    content: "\f0c2"
}

.fa-flask:before {
    content: "\f0c3"
}

.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4"
}

.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5"
}

.fa-paperclip:before {
    content: "\f0c6"
}

.fa-floppy-o:before,
.fa-save:before {
    content: "\f0c7"
}

.fa-square:before {
    content: "\f0c8"
}

.fa-bars:before,
.fa-navicon:before,
.fa-reorder:before {
    content: "\f0c9"
}

.fa-list-ul:before {
    content: "\f0ca"
}

.fa-list-ol:before {
    content: "\f0cb"
}

.fa-strikethrough:before {
    content: "\f0cc"
}

.fa-underline:before {
    content: "\f0cd"
}

.fa-table:before {
    content: "\f0ce"
}

.fa-magic:before {
    content: "\f0d0"
}

.fa-truck:before {
    content: "\f0d1"
}

.fa-pinterest:before {
    content: "\f0d2"
}

.fa-pinterest-square:before {
    content: "\f0d3"
}

.fa-google-plus-square:before {
    content: "\f0d4"
}

.fa-google-plus:before {
    content: "\f0d5"
}

.fa-money:before {
    content: "\f0d6"
}

.fa-caret-down:before {
    content: "\f0d7"
}

.fa-caret-up:before {
    content: "\f0d8"
}

.fa-caret-left:before {
    content: "\f0d9"
}

.fa-caret-right:before {
    content: "\f0da"
}

.fa-columns:before {
    content: "\f0db"
}

.fa-sort:before,
.fa-unsorted:before {
    content: "\f0dc"
}

.fa-sort-desc:before,
.fa-sort-down:before {
    content: "\f0dd"
}

.fa-sort-asc:before,
.fa-sort-up:before {
    content: "\f0de"
}

.fa-envelope:before {
    content: "\f0e0"
}

.fa-linkedin:before {
    content: "\f0e1"
}

.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2"
}

.fa-gavel:before,
.fa-legal:before {
    content: "\f0e3"
}

.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4"
}

.fa-comment-o:before {
    content: "\f0e5"
}

.fa-comments-o:before {
    content: "\f0e6"
}

.fa-bolt:before,
.fa-flash:before {
    content: "\f0e7"
}

.fa-sitemap:before {
    content: "\f0e8"
}

.fa-umbrella:before {
    content: "\f0e9"
}

.fa-clipboard:before,
.fa-paste:before {
    content: "\f0ea"
}

.fa-lightbulb-o:before {
    content: "\f0eb"
}

.fa-exchange:before {
    content: "\f0ec"
}

.fa-cloud-download:before {
    content: "\f0ed"
}

.fa-cloud-upload:before {
    content: "\f0ee"
}

.fa-user-md:before {
    content: "\f0f0"
}

.fa-stethoscope:before {
    content: "\f0f1"
}

.fa-suitcase:before {
    content: "\f0f2"
}

.fa-bell-o:before {
    content: "\f0a2"
}

.fa-coffee:before {
    content: "\f0f4"
}

.fa-cutlery:before {
    content: "\f0f5"
}

.fa-file-text-o:before {
    content: "\f0f6"
}

.fa-building-o:before {
    content: "\f0f7"
}

.fa-hospital-o:before {
    content: "\f0f8"
}

.fa-ambulance:before {
    content: "\f0f9"
}

.fa-medkit:before {
    content: "\f0fa"
}

.fa-fighter-jet:before {
    content: "\f0fb"
}

.fa-beer:before {
    content: "\f0fc"
}

.fa-h-square:before {
    content: "\f0fd"
}

.fa-plus-square:before {
    content: "\f0fe"
}

.fa-angle-double-left:before {
    content: "\f100"
}

.fa-angle-double-right:before {
    content: "\f101"
}

.fa-angle-double-up:before {
    content: "\f102"
}

.fa-angle-double-down:before {
    content: "\f103"
}

.fa-angle-left:before {
    content: "\f104"
}

.fa-angle-right:before {
    content: "\f105"
}

.fa-angle-up:before {
    content: "\f106"
}

.fa-angle-down:before {
    content: "\f107"
}

.fa-desktop:before {
    content: "\f108"
}

.fa-laptop:before {
    content: "\f109"
}

.fa-tablet:before {
    content: "\f10a"
}

.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b"
}

.fa-circle-o:before {
    content: "\f10c"
}

.fa-quote-left:before {
    content: "\f10d"
}

.fa-quote-right:before {
    content: "\f10e"
}

.fa-spinner:before {
    content: "\f110"
}

.fa-circle:before {
    content: "\f111"
}

.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112"
}

.fa-github-alt:before {
    content: "\f113"
}

.fa-folder-o:before {
    content: "\f114"
}

.fa-folder-open-o:before {
    content: "\f115"
}

.fa-smile-o:before {
    content: "\f118"
}

.fa-frown-o:before {
    content: "\f119"
}

.fa-meh-o:before {
    content: "\f11a"
}

.fa-gamepad:before {
    content: "\f11b"
}

.fa-keyboard-o:before {
    content: "\f11c"
}

.fa-flag-o:before {
    content: "\f11d"
}

.fa-flag-checkered:before {
    content: "\f11e"
}

.fa-terminal:before {
    content: "\f120"
}

.fa-code:before {
    content: "\f121"
}

.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122"
}

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123"
}

.fa-location-arrow:before {
    content: "\f124"
}

.fa-crop:before {
    content: "\f125"
}

.fa-code-fork:before {
    content: "\f126"
}

.fa-chain-broken:before,
.fa-unlink:before {
    content: "\f127"
}

.fa-question:before {
    content: "\f128"
}

.fa-info:before {
    content: "\f129"
}

.fa-exclamation:before {
    content: "\f12a"
}

.fa-superscript:before {
    content: "\f12b"
}

.fa-subscript:before {
    content: "\f12c"
}

.fa-eraser:before {
    content: "\f12d"
}

.fa-puzzle-piece:before {
    content: "\f12e"
}

.fa-microphone:before {
    content: "\f130"
}

.fa-microphone-slash:before {
    content: "\f131"
}

.fa-shield:before {
    content: "\f132"
}

.fa-calendar-o:before {
    content: "\f133"
}

.fa-fire-extinguisher:before {
    content: "\f134"
}

.fa-rocket:before {
    content: "\f135"
}

.fa-maxcdn:before {
    content: "\f136"
}

.fa-chevron-circle-left:before {
    content: "\f137"
}

.fa-chevron-circle-right:before {
    content: "\f138"
}

.fa-chevron-circle-up:before {
    content: "\f139"
}

.fa-chevron-circle-down:before {
    content: "\f13a"
}

.fa-html5:before {
    content: "\f13b"
}

.fa-css3:before {
    content: "\f13c"
}

.fa-anchor:before {
    content: "\f13d"
}

.fa-unlock-alt:before {
    content: "\f13e"
}

.fa-bullseye:before {
    content: "\f140"
}

.fa-ellipsis-h:before {
    content: "\f141"
}

.fa-ellipsis-v:before {
    content: "\f142"
}

.fa-rss-square:before {
    content: "\f143"
}

.fa-play-circle:before {
    content: "\f144"
}

.fa-ticket:before {
    content: "\f145"
}

.fa-minus-square:before {
    content: "\f146"
}

.fa-minus-square-o:before {
    content: "\f147"
}

.fa-level-up:before {
    content: "\f148"
}

.fa-level-down:before {
    content: "\f149"
}

.fa-check-square:before {
    content: "\f14a"
}

.fa-pencil-square:before {
    content: "\f14b"
}

.fa-external-link-square:before {
    content: "\f14c"
}

.fa-share-square:before {
    content: "\f14d"
}

.fa-compass:before {
    content: "\f14e"
}

.fa-caret-square-o-down:before,
.fa-toggle-down:before {
    content: "\f150"
}

.fa-caret-square-o-up:before,
.fa-toggle-up:before {
    content: "\f151"
}

.fa-caret-square-o-right:before,
.fa-toggle-right:before {
    content: "\f152"
}

.fa-eur:before,
.fa-euro:before {
    content: "\f153"
}

.fa-gbp:before {
    content: "\f154"
}

.fa-dollar:before,
.fa-usd:before {
    content: "\f155"
}

.fa-inr:before,
.fa-rupee:before {
    content: "\f156"
}

.fa-cny:before,
.fa-jpy:before,
.fa-rmb:before,
.fa-yen:before {
    content: "\f157"
}

.fa-rouble:before,
.fa-rub:before,
.fa-ruble:before {
    content: "\f158"
}

.fa-krw:before,
.fa-won:before {
    content: "\f159"
}

.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a"
}

.fa-file:before {
    content: "\f15b"
}

.fa-file-text:before {
    content: "\f15c"
}

.fa-sort-alpha-asc:before {
    content: "\f15d"
}

.fa-sort-alpha-desc:before {
    content: "\f15e"
}

.fa-sort-amount-asc:before {
    content: "\f160"
}

.fa-sort-amount-desc:before {
    content: "\f161"
}

.fa-sort-numeric-asc:before {
    content: "\f162"
}

.fa-sort-numeric-desc:before {
    content: "\f163"
}

.fa-thumbs-up:before {
    content: "\f164"
}

.fa-thumbs-down:before {
    content: "\f165"
}

.fa-youtube-square:before {
    content: "\f166"
}

.fa-youtube:before {
    content: "\f167"
}

.fa-xing:before {
    content: "\f168"
}

.fa-xing-square:before {
    content: "\f169"
}

.fa-youtube-play:before {
    content: "\f16a"
}

.fa-dropbox:before {
    content: "\f16b"
}

.fa-stack-overflow:before {
    content: "\f16c"
}

.fa-instagram:before {
    content: "\f16d"
}

.fa-flickr:before {
    content: "\f16e"
}

.fa-adn:before {
    content: "\f170"
}

.fa-bitbucket:before {
    content: "\f171"
}

.fa-bitbucket-square:before {
    content: "\f172"
}

.fa-tumblr:before {
    content: "\f173"
}

.fa-tumblr-square:before {
    content: "\f174"
}

.fa-long-arrow-down:before {
    content: "\f175"
}

.fa-long-arrow-up:before {
    content: "\f176"
}

.fa-long-arrow-left:before {
    content: "\f177"
}

.fa-long-arrow-right:before {
    content: "\f178"
}

.fa-apple:before {
    content: "\f179"
}

.fa-windows:before {
    content: "\f17a"
}

.fa-android:before {
    content: "\f17b"
}

.fa-linux:before {
    content: "\f17c"
}

.fa-dribbble:before {
    content: "\f17d"
}

.fa-skype:before {
    content: "\f17e"
}

.fa-foursquare:before {
    content: "\f180"
}

.fa-trello:before {
    content: "\f181"
}

.fa-female:before {
    content: "\f182"
}

.fa-male:before {
    content: "\f183"
}

.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184"
}

.fa-sun-o:before {
    content: "\f185"
}

.fa-moon-o:before {
    content: "\f186"
}

.fa-archive:before {
    content: "\f187"
}

.fa-bug:before {
    content: "\f188"
}

.fa-vk:before {
    content: "\f189"
}

.fa-weibo:before {
    content: "\f18a"
}

.fa-renren:before {
    content: "\f18b"
}

.fa-pagelines:before {
    content: "\f18c"
}

.fa-stack-exchange:before {
    content: "\f18d"
}

.fa-arrow-circle-o-right:before {
    content: "\f18e"
}

.fa-arrow-circle-o-left:before {
    content: "\f190"
}

.fa-caret-square-o-left:before,
.fa-toggle-left:before {
    content: "\f191"
}

.fa-dot-circle-o:before {
    content: "\f192"
}

.fa-wheelchair:before {
    content: "\f193"
}

.fa-vimeo-square:before {
    content: "\f194"
}

.fa-try:before,
.fa-turkish-lira:before {
    content: "\f195"
}

.fa-plus-square-o:before {
    content: "\f196"
}

.fa-space-shuttle:before {
    content: "\f197"
}

.fa-slack:before {
    content: "\f198"
}

.fa-envelope-square:before {
    content: "\f199"
}

.fa-wordpress:before {
    content: "\f19a"
}

.fa-openid:before {
    content: "\f19b"
}

.fa-bank:before,
.fa-institution:before,
.fa-university:before {
    content: "\f19c"
}

.fa-graduation-cap:before,
.fa-mortar-board:before {
    content: "\f19d"
}

.fa-yahoo:before {
    content: "\f19e"
}

.fa-google:before {
    content: "\f1a0"
}

.fa-reddit:before {
    content: "\f1a1"
}

.fa-reddit-square:before {
    content: "\f1a2"
}

.fa-stumbleupon-circle:before {
    content: "\f1a3"
}

.fa-stumbleupon:before {
    content: "\f1a4"
}

.fa-delicious:before {
    content: "\f1a5"
}

.fa-digg:before {
    content: "\f1a6"
}

.fa-pied-piper-pp:before {
    content: "\f1a7"
}

.fa-pied-piper-alt:before {
    content: "\f1a8"
}

.fa-drupal:before {
    content: "\f1a9"
}

.fa-joomla:before {
    content: "\f1aa"
}

.fa-language:before {
    content: "\f1ab"
}

.fa-fax:before {
    content: "\f1ac"
}

.fa-building:before {
    content: "\f1ad"
}

.fa-child:before {
    content: "\f1ae"
}

.fa-paw:before {
    content: "\f1b0"
}

.fa-spoon:before {
    content: "\f1b1"
}

.fa-cube:before {
    content: "\f1b2"
}

.fa-cubes:before {
    content: "\f1b3"
}

.fa-behance:before {
    content: "\f1b4"
}

.fa-behance-square:before {
    content: "\f1b5"
}

.fa-steam:before {
    content: "\f1b6"
}

.fa-steam-square:before {
    content: "\f1b7"
}

.fa-recycle:before {
    content: "\f1b8"
}

.fa-automobile:before,
.fa-car:before {
    content: "\f1b9"
}

.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba"
}

.fa-tree:before {
    content: "\f1bb"
}

.fa-spotify:before {
    content: "\f1bc"
}

.fa-deviantart:before {
    content: "\f1bd"
}

.fa-soundcloud:before {
    content: "\f1be"
}

.fa-database:before {
    content: "\f1c0"
}

.fa-file-pdf-o:before {
    content: "\f1c1"
}

.fa-file-word-o:before {
    content: "\f1c2"
}

.fa-file-excel-o:before {
    content: "\f1c3"
}

.fa-file-powerpoint-o:before {
    content: "\f1c4"
}

.fa-file-image-o:before,
.fa-file-photo-o:before,
.fa-file-picture-o:before {
    content: "\f1c5"
}

.fa-file-archive-o:before,
.fa-file-zip-o:before {
    content: "\f1c6"
}

.fa-file-audio-o:before,
.fa-file-sound-o:before {
    content: "\f1c7"
}

.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8"
}

.fa-file-code-o:before {
    content: "\f1c9"
}

.fa-vine:before {
    content: "\f1ca"
}

.fa-codepen:before {
    content: "\f1cb"
}

.fa-jsfiddle:before {
    content: "\f1cc"
}

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-ring:before,
.fa-life-saver:before,
.fa-support:before {
    content: "\f1cd"
}

.fa-circle-o-notch:before {
    content: "\f1ce"
}

.fa-ra:before,
.fa-rebel:before,
.fa-resistance:before {
    content: "\f1d0"
}

.fa-empire:before,
.fa-ge:before {
    content: "\f1d1"
}

.fa-git-square:before {
    content: "\f1d2"
}

.fa-git:before {
    content: "\f1d3"
}

.fa-hacker-news:before,
.fa-y-combinator-square:before,
.fa-yc-square:before {
    content: "\f1d4"
}

.fa-tencent-weibo:before {
    content: "\f1d5"
}

.fa-qq:before {
    content: "\f1d6"
}

.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7"
}

.fa-paper-plane:before,
.fa-send:before {
    content: "\f1d8"
}

.fa-paper-plane-o:before,
.fa-send-o:before {
    content: "\f1d9"
}

.fa-history:before {
    content: "\f1da"
}

.fa-circle-thin:before {
    content: "\f1db"
}

.fa-header:before {
    content: "\f1dc"
}

.fa-paragraph:before {
    content: "\f1dd"
}

.fa-sliders:before {
    content: "\f1de"
}

.fa-share-alt:before {
    content: "\f1e0"
}

.fa-share-alt-square:before {
    content: "\f1e1"
}

.fa-bomb:before {
    content: "\f1e2"
}

.fa-futbol-o:before,
.fa-soccer-ball-o:before {
    content: "\f1e3"
}

.fa-tty:before {
    content: "\f1e4"
}

.fa-binoculars:before {
    content: "\f1e5"
}

.fa-plug:before {
    content: "\f1e6"
}

.fa-slideshare:before {
    content: "\f1e7"
}

.fa-twitch:before {
    content: "\f1e8"
}

.fa-yelp:before {
    content: "\f1e9"
}

.fa-newspaper-o:before {
    content: "\f1ea"
}

.fa-wifi:before {
    content: "\f1eb"
}

.fa-calculator:before {
    content: "\f1ec"
}

.fa-paypal:before {
    content: "\f1ed"
}

.fa-google-wallet:before {
    content: "\f1ee"
}

.fa-cc-visa:before {
    content: "\f1f0"
}

.fa-cc-mastercard:before {
    content: "\f1f1"
}

.fa-cc-discover:before {
    content: "\f1f2"
}

.fa-cc-amex:before {
    content: "\f1f3"
}

.fa-cc-paypal:before {
    content: "\f1f4"
}

.fa-cc-stripe:before {
    content: "\f1f5"
}

.fa-bell-slash:before {
    content: "\f1f6"
}

.fa-bell-slash-o:before {
    content: "\f1f7"
}

.fa-trash:before {
    content: "\f1f8"
}

.fa-copyright:before {
    content: "\f1f9"
}

.fa-at:before {
    content: "\f1fa"
}

.fa-eyedropper:before {
    content: "\f1fb"
}

.fa-paint-brush:before {
    content: "\f1fc"
}

.fa-birthday-cake:before {
    content: "\f1fd"
}

.fa-area-chart:before {
    content: "\f1fe"
}

.fa-pie-chart:before {
    content: "\f200"
}

.fa-line-chart:before {
    content: "\f201"
}

.fa-lastfm:before {
    content: "\f202"
}

.fa-lastfm-square:before {
    content: "\f203"
}

.fa-toggle-off:before {
    content: "\f204"
}

.fa-toggle-on:before {
    content: "\f205"
}

.fa-bicycle:before {
    content: "\f206"
}

.fa-bus:before {
    content: "\f207"
}

.fa-ioxhost:before {
    content: "\f208"
}

.fa-angellist:before {
    content: "\f209"
}

.fa-cc:before {
    content: "\f20a"
}

.fa-ils:before,
.fa-shekel:before,
.fa-sheqel:before {
    content: "\f20b"
}

.fa-meanpath:before {
    content: "\f20c"
}

.fa-buysellads:before {
    content: "\f20d"
}

.fa-connectdevelop:before {
    content: "\f20e"
}

.fa-dashcube:before {
    content: "\f210"
}

.fa-forumbee:before {
    content: "\f211"
}

.fa-leanpub:before {
    content: "\f212"
}

.fa-sellsy:before {
    content: "\f213"
}

.fa-shirtsinbulk:before {
    content: "\f214"
}

.fa-simplybuilt:before {
    content: "\f215"
}

.fa-skyatlas:before {
    content: "\f216"
}

.fa-cart-plus:before {
    content: "\f217"
}

.fa-cart-arrow-down:before {
    content: "\f218"
}

.fa-diamond:before {
    content: "\f219"
}

.fa-ship:before {
    content: "\f21a"
}

.fa-user-secret:before {
    content: "\f21b"
}

.fa-motorcycle:before {
    content: "\f21c"
}

.fa-street-view:before {
    content: "\f21d"
}

.fa-heartbeat:before {
    content: "\f21e"
}

.fa-venus:before {
    content: "\f221"
}

.fa-mars:before {
    content: "\f222"
}

.fa-mercury:before {
    content: "\f223"
}

.fa-intersex:before,
.fa-transgender:before {
    content: "\f224"
}

.fa-transgender-alt:before {
    content: "\f225"
}

.fa-venus-double:before {
    content: "\f226"
}

.fa-mars-double:before {
    content: "\f227"
}

.fa-venus-mars:before {
    content: "\f228"
}

.fa-mars-stroke:before {
    content: "\f229"
}

.fa-mars-stroke-v:before {
    content: "\f22a"
}

.fa-mars-stroke-h:before {
    content: "\f22b"
}

.fa-neuter:before {
    content: "\f22c"
}

.fa-genderless:before {
    content: "\f22d"
}

.fa-facebook-official:before {
    content: "\f230"
}

.fa-pinterest-p:before {
    content: "\f231"
}

.fa-whatsapp:before {
    content: "\f232"
}

.fa-server:before {
    content: "\f233"
}

.fa-user-plus:before {
    content: "\f234"
}

.fa-user-times:before {
    content: "\f235"
}

.fa-bed:before,
.fa-hotel:before {
    content: "\f236"
}

.fa-viacoin:before {
    content: "\f237"
}

.fa-train:before {
    content: "\f238"
}

.fa-subway:before {
    content: "\f239"
}

.fa-medium:before {
    content: "\f23a"
}

.fa-y-combinator:before,
.fa-yc:before {
    content: "\f23b"
}

.fa-optin-monster:before {
    content: "\f23c"
}

.fa-opencart:before {
    content: "\f23d"
}

.fa-expeditedssl:before {
    content: "\f23e"
}

.fa-battery-4:before,
.fa-battery-full:before,
.fa-battery:before {
    content: "\f240"
}

.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241"
}

.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242"
}

.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243"
}

.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244"
}

.fa-mouse-pointer:before {
    content: "\f245"
}

.fa-i-cursor:before {
    content: "\f246"
}

.fa-object-group:before {
    content: "\f247"
}

.fa-object-ungroup:before {
    content: "\f248"
}

.fa-sticky-note:before {
    content: "\f249"
}

.fa-sticky-note-o:before {
    content: "\f24a"
}

.fa-cc-jcb:before {
    content: "\f24b"
}

.fa-cc-diners-club:before {
    content: "\f24c"
}

.fa-clone:before {
    content: "\f24d"
}

.fa-balance-scale:before {
    content: "\f24e"
}

.fa-hourglass-o:before {
    content: "\f250"
}

.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251"
}

.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252"
}

.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253"
}

.fa-hourglass:before {
    content: "\f254"
}

.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255"
}

.fa-hand-paper-o:before,
.fa-hand-stop-o:before {
    content: "\f256"
}

.fa-hand-scissors-o:before {
    content: "\f257"
}

.fa-hand-lizard-o:before {
    content: "\f258"
}

.fa-hand-spock-o:before {
    content: "\f259"
}

.fa-hand-pointer-o:before {
    content: "\f25a"
}

.fa-hand-peace-o:before {
    content: "\f25b"
}

.fa-trademark:before {
    content: "\f25c"
}

.fa-registered:before {
    content: "\f25d"
}

.fa-creative-commons:before {
    content: "\f25e"
}

.fa-gg:before {
    content: "\f260"
}

.fa-gg-circle:before {
    content: "\f261"
}

.fa-tripadvisor:before {
    content: "\f262"
}

.fa-odnoklassniki:before {
    content: "\f263"
}

.fa-odnoklassniki-square:before {
    content: "\f264"
}

.fa-get-pocket:before {
    content: "\f265"
}

.fa-wikipedia-w:before {
    content: "\f266"
}

.fa-safari:before {
    content: "\f267"
}

.fa-chrome:before {
    content: "\f268"
}

.fa-firefox:before {
    content: "\f269"
}

.fa-opera:before {
    content: "\f26a"
}

.fa-internet-explorer:before {
    content: "\f26b"
}

.fa-television:before,
.fa-tv:before {
    content: "\f26c"
}

.fa-contao:before {
    content: "\f26d"
}

.fa-500px:before {
    content: "\f26e"
}

.fa-amazon:before {
    content: "\f270"
}

.fa-calendar-plus-o:before {
    content: "\f271"
}

.fa-calendar-minus-o:before {
    content: "\f272"
}

.fa-calendar-times-o:before {
    content: "\f273"
}

.fa-calendar-check-o:before {
    content: "\f274"
}

.fa-industry:before {
    content: "\f275"
}

.fa-map-pin:before {
    content: "\f276"
}

.fa-map-signs:before {
    content: "\f277"
}

.fa-map-o:before {
    content: "\f278"
}

.fa-map:before {
    content: "\f279"
}

.fa-commenting:before {
    content: "\f27a"
}

.fa-commenting-o:before {
    content: "\f27b"
}

.fa-houzz:before {
    content: "\f27c"
}

.fa-vimeo:before {
    content: "\f27d"
}

.fa-black-tie:before {
    content: "\f27e"
}

.fa-fonticons:before {
    content: "\f280"
}

.fa-reddit-alien:before {
    content: "\f281"
}

.fa-edge:before {
    content: "\f282"
}

.fa-credit-card-alt:before {
    content: "\f283"
}

.fa-codiepie:before {
    content: "\f284"
}

.fa-modx:before {
    content: "\f285"
}

.fa-fort-awesome:before {
    content: "\f286"
}

.fa-usb:before {
    content: "\f287"
}

.fa-product-hunt:before {
    content: "\f288"
}

.fa-mixcloud:before {
    content: "\f289"
}

.fa-scribd:before {
    content: "\f28a"
}

.fa-pause-circle:before {
    content: "\f28b"
}

.fa-pause-circle-o:before {
    content: "\f28c"
}

.fa-stop-circle:before {
    content: "\f28d"
}

.fa-stop-circle-o:before {
    content: "\f28e"
}

.fa-shopping-bag:before {
    content: "\f290"
}

.fa-shopping-basket:before {
    content: "\f291"
}

.fa-hashtag:before {
    content: "\f292"
}

.fa-bluetooth:before {
    content: "\f293"
}

.fa-bluetooth-b:before {
    content: "\f294"
}

.fa-percent:before {
    content: "\f295"
}

.fa-gitlab:before {
    content: "\f296"
}

.fa-wpbeginner:before {
    content: "\f297"
}

.fa-wpforms:before {
    content: "\f298"
}

.fa-envira:before {
    content: "\f299"
}

.fa-universal-access:before {
    content: "\f29a"
}

.fa-wheelchair-alt:before {
    content: "\f29b"
}

.fa-question-circle-o:before {
    content: "\f29c"
}

.fa-blind:before {
    content: "\f29d"
}

.fa-audio-description:before {
    content: "\f29e"
}

.fa-volume-control-phone:before {
    content: "\f2a0"
}

.fa-braille:before {
    content: "\f2a1"
}

.fa-assistive-listening-systems:before {
    content: "\f2a2"
}

.fa-american-sign-language-interpreting:before,
.fa-asl-interpreting:before {
    content: "\f2a3"
}

.fa-deaf:before,
.fa-deafness:before,
.fa-hard-of-hearing:before {
    content: "\f2a4"
}

.fa-glide:before {
    content: "\f2a5"
}

.fa-glide-g:before {
    content: "\f2a6"
}

.fa-sign-language:before,
.fa-signing:before {
    content: "\f2a7"
}

.fa-low-vision:before {
    content: "\f2a8"
}

.fa-viadeo:before {
    content: "\f2a9"
}

.fa-viadeo-square:before {
    content: "\f2aa"
}

.fa-snapchat:before {
    content: "\f2ab"
}

.fa-snapchat-ghost:before {
    content: "\f2ac"
}

.fa-snapchat-square:before {
    content: "\f2ad"
}

.fa-pied-piper:before {
    content: "\f2ae"
}

.fa-first-order:before {
    content: "\f2b0"
}

.fa-yoast:before {
    content: "\f2b1"
}

.fa-themeisle:before {
    content: "\f2b2"
}

.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3"
}

.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4"
}

.fa-handshake-o:before {
    content: "\f2b5"
}

.fa-envelope-open:before {
    content: "\f2b6"
}

.fa-envelope-open-o:before {
    content: "\f2b7"
}

.fa-linode:before {
    content: "\f2b8"
}

.fa-address-book:before {
    content: "\f2b9"
}

.fa-address-book-o:before {
    content: "\f2ba"
}

.fa-address-card:before,
.fa-vcard:before {
    content: "\f2bb"
}

.fa-address-card-o:before,
.fa-vcard-o:before {
    content: "\f2bc"
}

.fa-user-circle:before {
    content: "\f2bd"
}

.fa-user-circle-o:before {
    content: "\f2be"
}

.fa-user-o:before {
    content: "\f2c0"
}

.fa-id-badge:before {
    content: "\f2c1"
}

.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2"
}

.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3"
}

.fa-quora:before {
    content: "\f2c4"
}

.fa-free-code-camp:before {
    content: "\f2c5"
}

.fa-telegram:before {
    content: "\f2c6"
}

.fa-thermometer-4:before,
.fa-thermometer-full:before,
.fa-thermometer:before {
    content: "\f2c7"
}

.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8"
}

.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9"
}

.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca"
}

.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb"
}

.fa-shower:before {
    content: "\f2cc"
}

.fa-bath:before,
.fa-bathtub:before,
.fa-s15:before {
    content: "\f2cd"
}

.fa-podcast:before {
    content: "\f2ce"
}

.fa-window-maximize:before {
    content: "\f2d0"
}

.fa-window-minimize:before {
    content: "\f2d1"
}

.fa-window-restore:before {
    content: "\f2d2"
}

.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3"
}

.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4"
}

.fa-bandcamp:before {
    content: "\f2d5"
}

.fa-grav:before {
    content: "\f2d6"
}

.fa-etsy:before {
    content: "\f2d7"
}

.fa-imdb:before {
    content: "\f2d8"
}

.fa-ravelry:before {
    content: "\f2d9"
}

.fa-eercast:before {
    content: "\f2da"
}

.fa-microchip:before {
    content: "\f2db"
}

.fa-snowflake-o:before {
    content: "\f2dc"
}

.fa-superpowers:before {
    content: "\f2dd"
}

.fa-wpexplorer:before {
    content: "\f2de"
}

.fa-meetup:before {
    content: "\f2e0"
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

@-webkit-keyframes rotating4 {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotating4 {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes animation4 {
    from {
        left: -40%;
        width: 40%
    }
    to {
        left: 100%;
        width: 10%
    }
}

@keyframes animation4 {
    from {
        left: -40%;
        width: 40%
    }
    to {
        left: 100%;
        width: 10%
    }
}

@keyframes lp-rotating {
    from {
        transform: rotate(0deg);
        -o-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg);
        -o-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

@-webkit-keyframes lp-rotating {
    from {
        transform: rotate(0deg);
        -webkit-transform: rotate(0deg)
    }
    to {
        transform: rotate(360deg);
        -webkit-transform: rotate(360deg)
    }
}

.ajaxload {
    background: #7b7b7b;
    display: inline-block;
    width: 30px;
    height: 30px;
    position: relative;
    content: '';
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-animation: lp-rotating 1s linear infinite;
    -moz-animation: lp-rotating 1s linear infinite;
    animation: lp-rotating 1s linear infinite
}

.ajaxload:after {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #dedede;
    position: absolute;
    content: '';
    top: 2px;
    left: 50%;
    margin-left: -3px
}

.learn-press-checkout.guest-checkout {
    display: none
}

.button-continue-guest-checkout {
    clear: both
}

#learn-press-payment .payment-methods {
    list-style: none;
    margin: 0;
    padding: 0
}

#learn-press-payment .payment-methods .lp-payment-method {
    margin-bottom: 20px
}

#learn-press-payment .payment-methods .lp-payment-method>label {
    display: block;
    background: #f5f5f5;
    padding: 10px 20px;
    line-height: 40px
}

#learn-press-payment .payment-methods .lp-payment-method>label img {
    vertical-align: middle
}

#learn-press-payment .payment-methods .lp-payment-method.selected>label {
    background: #e7f7ff
}

#learn-press-payment .payment-methods .payment-method-form {
    display: none;
    background: #f9f9f9;
    padding: 15px 20px;
    border-top: 1px solid #ddd
}

#learn-press-checkout-login,
#learn-press-checkout-register {
    margin-bottom: 1.5em;
    border: 1px solid #ddd;
    padding: 20px 20px 0;
    background: #fff
}

#learn-press-order-review,
.learn-press-checkout-comment {
    margin-bottom: 20px
}

#checkout-form-login,
#checkout-form-register {
    _display: none
}

#checkout-form-login .learn-press-form-register,
#checkout-form-login .learn-press-form-login,
#checkout-form-register .learn-press-form-register,
#checkout-form-register .learn-press-form-login {
    display: none
}

#checkout-guest-email {
    border: 1px solid #ddd;
    padding: 20px;
    margin: 0 0 20px
}

#checkout-guest-email .form-heading {
    margin: 0
}

#checkout-guest-email #checkout-guest-options {
    list-style: none;
    margin: 0
}

#checkout-guest-email #checkout-existing-account,
#checkout-guest-email #checkout-new-account {
    display: none;
    margin: 0
}

#checkout-guest-email.email-exists #checkout-existing-account {
    display: block
}

#checkout-guest-email.email-exists #checkout-new-account {
    display: none
}

.lp-list-table {
    border: none;
    width: 100%;
    margin-bottom: 20px
}

.lp-list-table th,
.lp-list-table td {
    border: 0 solid #ddd;
    border-bottom-width: 1px;
    line-height: 1;
    font-size: 16px;
    padding: 15px;
    background: #fff;
    text-align: left
}

.lp-list-table tr {
    border: 0
}

.lp-list-table thead tr {
    color: #444
}

.lp-list-table thead tr th {
    background: #00adff;
    color: #fff;
    border-bottom: none
}

.lp-list-table tbody tr {
    color: #777
}

.lp-list-table tbody tr td,
.lp-list-table tbody tr th {
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    background: #fff
}

.lp-list-table tbody tr td a,
.lp-list-table tbody tr th a {
    text-decoration: none;
    border-bottom: none
}

.lp-list-table tbody tr:nth-child(odd) {
    background: #f5f5f5
}

.lp-list-table .list-table-nav td {
    font-size: 14px
}

.lp-list-table .list-table-nav td.nav-text {
    text-align: left
}

.lp-list-table .list-table-nav td.nav-pages {
    text-align: right
}

.lp-list-table .list-table-nav td.nav-pages .learn-press-pagination {
    text-align: right
}

.lp-list-table .list-table-nav td.nav-pages .page-numbers {
    margin-bottom: 0
}

.lp-label {
    font-size: 12px;
    display: inline-block;
    padding: 3px 5px;
    background: #ddd;
    border-radius: 4px;
    line-height: 1;
    color: #fff
}

.lp-label.label-finished,
.lp-label.label-completed {
    background: #ffdc1e
}

.lp-label.label-passed {
    background: #14c4ff
}

.lp-label.label-failed {
    background: #ff4d66
}

.lp-label.label-enrolled,
.lp-label.label-started {
    background: #d243ff
}

.learn-press-form .form-fields {
    list-style: none;
    margin: 0;
    padding: 0
}

.learn-press-form .form-fields .form-field {
    margin: 0 0 20px
}

.learn-press-form .form-fields .form-field label {
    display: block;
    margin: 0 0 10px
}

.learn-press-form .form-fields .form-field input[type=text],
.learn-press-form .form-fields .form-field input[type=email],
.learn-press-form .form-fields .form-field input[type=number],
.learn-press-form .form-fields .form-field input[type=password],
.learn-press-form .form-fields .form-field textarea {
    padding: 8px;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.learn-press-form .form-fields .form-field .description {
    font-style: italic;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4
}

.learn-press-form .form-fields .form-field .asterisk {
    color: red
}

.form-desc {
    font-size: smaller;
    font-style: italic
}

.become-teacher-form {
    margin: 0 auto;
    width: 90%;
    max-width: 500px
}

.become-teacher-form .form-field input[type=text],
.become-teacher-form .form-field input[type=email],
.become-teacher-form .form-field input[type=number],
.become-teacher-form .form-field input[type=password] {
    width: 100%
}

#learn-press-user-profile {
    position: relative
}

#learn-press-user-profile:after {
    clear: both;
    display: block;
    content: ''
}

#learn-press-profile-header {
    height: 100px;
    background: #f0defb;
    position: relative;
    z-index: 100
}

#learn-press-profile-header .lp-profile-avatar {
    position: absolute;
    bottom: -10px;
    left: 10px
}

#learn-press-profile-header .lp-profile-avatar img {
    border-radius: 0
}

#learn-press-profile-nav {
    float: left;
    min-width: 200px;
    padding-top: 40px;
    background: #f5f5f5
}

#learn-press-profile-nav:before {
    content: '';
    width: 200px;
    background: #f5f5f5;
    top: 0;
    bottom: 0;
    position: absolute
}

#learn-press-profile-nav .tabs {
    list-style: none;
    margin: 0;
    padding: 0
}

#learn-press-profile-nav .tabs>li {
    margin-bottom: 0;
    position: relative
}

#learn-press-profile-nav .tabs>li ul {
    list-style: none;
    margin: 0;
    padding: 8px 0;
    display: none
}

#learn-press-profile-nav .tabs>li ul li a {
    padding-left: 20px
}

#learn-press-profile-nav .tabs>li ul li.active a {
    color: #fff
}

#learn-press-profile-nav .tabs>li ul li:hover a {
    background: 0 0;
    color: #fff
}

#learn-press-profile-nav .tabs>li a {
    display: block;
    text-decoration: none;
    padding: 5px 10px;
    border: none;
    box-shadow: none;
    outline: none
}

#learn-press-profile-nav .tabs>li a:hover {
    background: #fff
}

#learn-press-profile-nav .tabs>li.active ul {
    background: #eaeaea;
    display: block
}

#learn-press-profile-nav .tabs>li.active>a {
    background: #d9d9d9
}

#learn-press-profile-nav .tabs>li:hover:not(.active)>a {
    background: #d0d0d0;
    color: #fff
}

#learn-press-profile-nav .tabs>li:hover:not(.active) ul {
    background: #eaeaea;
    display: block;
    position: absolute;
    width: 200px;
    top: 0;
    margin: 0;
    padding: 0;
    left: 100%;
    z-index: 100
}

#learn-press-profile-content {
    float: right;
    width: calc(100% - 230px);
    margin-top: 30px;
    overflow: hidden
}

#learn-press-profile-content .lp-sections {
    list-style: none;
    overflow: hidden
}

#learn-press-profile-content .lp-sections li {
    float: left
}

#learn-press-profile-content .lp-sections li a {
    text-decoration: none;
    display: block;
    padding: 3px 5px;
    border: none;
    box-shadow: none
}

#learn-press-profile-content .lp-sections li.active a {
    border-bottom: 2px solid #ddd
}

#learn-press-profile-footer {
    clear: both;
    background: #fff;
    z-index: 10;
    position: relative
}

.lp-user-profile .profile-name {
    display: block;
    position: absolute;
    width: 100%;
    text-align: center;
    font-size: 13px
}

.profile-list-table td.column-actions {
    white-space: nowrap
}

.profile-list-table .result-percent {
    font-size: 12px;
    font-weight: 700;
    min-width: 40px;
    display: inline-block
}

.profile-list-courses .column-passing-grade,
.profile-list-courses .column-time-interval,
.profile-list-courses .column-date,
.profile-list-courses .column-status,
.profile-list-quizzes .column-passing-grade,
.profile-list-quizzes .column-time-interval,
.profile-list-quizzes .column-date,
.profile-list-quizzes .column-status {
    width: 150px
}

.profile-recover-order {
    padding: 20px;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.profile-recover-order p {
    margin-bottom: 10px
}

.profile-recover-order input[name=order-key] {
    width: 250px;
    display: inline-block
}

.order-recover input[name=order-key],
.order-recover button {
    vertical-align: middle
}

.column-order-action a {
    display: inline-block;
    margin-right: 5px
}

.lp-tab-sections {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    background: #eaeaea
}

.lp-tab-sections .section-tab {
    float: left;
    list-style: none
}

.lp-tab-sections .section-tab a,
.lp-tab-sections .section-tab span {
    display: inline-block;
    padding: 8px 10px;
    line-height: 1;
    box-shadow: none
}

.lp-tab-sections .section-tab.active span {
    border-bottom: 2px solid #00adff;
    padding-bottom: 6px
}

.lp-tab-sections:after {
    clear: both;
    display: block;
    content: ''
}

.profile-heading {
    font-size: 18px
}

.lp-sub-menu {
    list-style: none;
    margin: 0 0 10px
}

.lp-sub-menu li {
    display: inline-block
}

.lp-sub-menu li a,
.lp-sub-menu li span {
    display: inline-block;
    margin: 0 10px 0 0
}

.learn-press-nav-items .learn-press-pagination {
    float: right
}

.learn-press-nav-items:after {
    clear: both;
    display: block;
    content: ''
}

.lp-avatar-preview {
    position: relative;
    float: left;
    background-color: #ddd;
    margin-bottom: 20px;
    overflow: hidden
}

.lp-avatar-preview .profile-picture {
    float: left;
    margin-right: -100%;
    width: 100%;
    margin-top: -25%
}

.lp-avatar-preview .profile-picture img {
    width: 100%;
    height: 100%;
    border-radius: 0
}

.lp-avatar-preview .profile-picture.profile-avatar-hidden {
    display: none
}

.lp-avatar-preview .lp-avatar-preview-actions {
    position: absolute;
    top: 50%;
    width: 100%;
    margin-top: -14px;
    text-align: center
}

.lp-avatar-preview .lp-avatar-preview-actions a {
    text-decoration: none;
    font-size: 12px;
    background: #fff;
    display: inline-block;
    box-shadow: none;
    padding: 5px 10px
}

.lp-avatar-preview .lp-avatar-upload-progress {
    position: absolute;
    height: 10px;
    background: #fff;
    top: 50%;
    margin-top: -5px;
    left: 10px;
    right: 10px;
    display: none
}

.lp-avatar-preview .lp-avatar-upload-progress .lp-avatar-upload-progress-value {
    width: 0;
    height: 10px;
    background: #563d7c
}

.lp-avatar-preview .lp-avatar-upload-error {
    display: none
}

.lp-avatar-preview .lp-avatar-preview-actions {
    display: none
}

.lp-avatar-preview:hover .lp-avatar-preview-actions {
    display: block
}

.lp-avatar-preview.uploading .lp-avatar-preview-actions,
.lp-avatar-preview.upload-error .lp-avatar-preview-actions {
    display: none
}

.lp-avatar-preview.uploading .lp-avatar-upload-progress,
.lp-avatar-preview.upload-error .lp-avatar-upload-progress {
    display: block
}

.lp-avatar-preview.uploading:before,
.lp-avatar-preview.upload-error:before {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: .4;
    content: ''
}

.lp-avatar-preview.upload-error .lp-avatar-upload-error {
    display: block
}

.lp-avatar-preview.croping .lp-avatar-preview-actions {
    display: none
}

.lp-avatar-preview.croping .lp-avatar-crop-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    overflow: hidden
}

.lp-avatar-preview.croping .lp-avatar-crop-image img {
    max-width: inherit;
    cursor: move
}

.lp-avatar-preview.croping .lp-avatar-crop-image .lp-crop-controls {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 30px
}

.lp-avatar-preview.croping .lp-avatar-crop-image .lp-crop-controls .lp-zoom {
    position: absolute;
    height: 10px;
    bottom: 10px;
    left: 10px;
    right: 30px;
    background: #563d7a
}

.lp-avatar-preview.croping .lp-avatar-crop-image .lp-crop-controls .lp-zoom .ui-slider {
    position: absolute;
    left: 0;
    right: 10px;
    height: 100%
}

.lp-avatar-preview.croping .lp-avatar-crop-image .lp-crop-controls .lp-zoom .ui-slider .ui-slider-handle {
    display: inline-block;
    width: 10px;
    height: 14px;
    background: #fff;
    position: absolute;
    margin-top: -2px;
    border: 1px solid #563d7a;
    box-shadow: none;
    outline: none;
    cursor: ew-resize
}

.lp-avatar-preview.croping .lp-avatar-crop-image .lp-crop-controls .lp-cancel-upload {
    text-decoration: none;
    position: absolute;
    bottom: 5px;
    right: 5px;
    box-shadow: none
}

.lp-avatar-preview.croping .lp-avatar-crop-image .lp-crop-controls:before {
    position: absolute;
    height: 30px;
    width: 100%;
    content: '';
    background: #fff;
    opacity: .4
}

.lp-avatar-preview:after {
    clear: both;
    display: block;
    content: ''
}

#profile-mobile-menu {
    display: none
}

@media screen and (max-width:480px) {
    #learn-press-user-profile:before {
        display: none
    }
    #learn-press-profile-nav {
        height: 40px;
        z-index: 90;
        padding-top: 0;
        min-width: 40px;
        width: 40px;
        float: right;
        margin-bottom: 20px
    }
    #learn-press-profile-nav #profile-mobile-menu {
        display: block;
        width: 40px;
        height: 40px;
        float: right;
        line-height: 40px;
        text-align: center;
        cursor: pointer;
        box-shadow: none
    }
    #learn-press-profile-nav .learn-press-tabs {
        right: 0;
        width: 100%;
        display: none;
        background: #03a9f4;
        color: #fff;
        position: absolute;
        margin-top: 40px
    }
    #learn-press-profile-nav .learn-press-tabs li a {
        color: #fff
    }
    #learn-press-profile-nav .learn-press-tabs li:hover:not(.active)>a {
        background: #d0d0d0;
        color: #fff
    }
    #learn-press-profile-nav .learn-press-tabs li:hover:not(.active) ul {
        position: relative;
        left: 0;
        width: 100%
    }
    #learn-press-profile-nav:hover #profile-mobile-menu {
        background: #03a8f4;
        color: #fff
    }
    #learn-press-profile-nav:hover .learn-press-tabs {
        display: block
    }
    #learn-press-profile-nav:before {
        content: '';
        position: absolute;
        left: 0;
        right: 40px;
        height: 40px;
        background: #f5f5f5
    }
    #learn-press-profile-nav .tabs>li.active ul,
    #learn-press-profile-nav .tabs>li.active a,
    #learn-press-profile-nav .tabs>li:hover ul,
    #learn-press-profile-nav .tabs>li:hover a {
        background: #0191d4
    }
    #learn-press-profile-content {
        float: none;
        width: 100%
    }
}

#learn-press-user-profile .learn-press-form-login,
#learn-press-user-profile .learn-press-form-register {
    border: 1px solid #ddd;
    padding: 20px 20px 0;
    margin-bottom: 20px
}

#learn-press-course-tabs .course-tab-panel {
    display: none
}

#learn-press-course-tabs .course-tab-panel.active {
    display: block
}

.lp-single-course .course-author {
    margin-bottom: 40px
}

.lp-single-course .course-author .author-name {
    float: left;
    margin: 0 20px 0 0;
    text-align: center
}

.lp-single-course .course-author .author-name img {
    width: 80px;
    height: 80px;
    border-radius: 50%
}

.lp-single-course .course-author .author-name a {
    display: block
}

.lp-single-course .course-author .author-bio {
    font-size: 15px;
    font-style: italic
}

.lp-single-course .course-author:after {
    clear: both;
    display: block;
    content: ''
}

.lp-single-course .course-author .course-instructor-item {
    clear: both;
    padding-top: 20px
}

.lp-single-course .course-price {
    margin-bottom: 10px
}

.lp-single-course .course-price .origin-price,
.lp-single-course .course-price .price {
    vertical-align: middle
}

.lp-single-course .course-price .origin-price {
    font-size: 18px;
    text-decoration: line-through;
    font-style: italic;
    margin-right: 10px
}

.lp-single-course .course-price .price {
    font-size: 24px
}

.lp-single-course .lp-course-buttons {
    margin-bottom: 20px
}

.edit-content {
    margin-left: 5px
}

ul.learn-press-nav-tabs {
    list-style: none;
    border-bottom: 3px solid #ddd;
    margin: 0 0 20px;
    padding: 0
}

ul.learn-press-nav-tabs .course-nav {
    float: left;
    position: relative;
    margin: 0;
    list-style: none
}

ul.learn-press-nav-tabs .course-nav a {
    display: inline-block;
    padding: 10px 20px;
    border-bottom: none;
    outline: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

ul.learn-press-nav-tabs .course-nav a:focus {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none
}

ul.learn-press-nav-tabs .course-nav.active:after,
ul.learn-press-nav-tabs .course-nav:hover:after {
    position: absolute;
    bottom: -3px;
    background: #00adff;
    height: 3px;
    width: 100%;
    content: '';
    left: 0
}

ul.learn-press-nav-tabs:after {
    clear: both;
    display: block;
    content: ''
}

.course-item-popup #tab-curriculum {
    display: block
}

.course-curriculum ul.curriculum-sections {
    list-style: none;
    margin: 0;
    padding: 0
}

.course-curriculum ul.curriculum-sections .section {
    margin: 0;
    padding: 0
}

.course-curriculum ul.curriculum-sections .section.section-empty .section-header {
    margin-bottom: 20px
}

.course-curriculum ul.curriculum-sections .section.section-empty .learn-press-message {
    margin-left: 15px;
    margin-right: 15px
}

.course-curriculum ul.curriculum-sections .section-header {
    display: table;
    border-bottom: 1px solid #00adff;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.course-curriculum ul.curriculum-sections .section-header .section-left {
    display: table-cell;
    vertical-align: top;
    cursor: pointer
}

.course-curriculum ul.curriculum-sections .section-header .section-title,
.course-curriculum ul.curriculum-sections .section-header .section-desc {
    margin: 0 0 10px
}

.course-curriculum ul.curriculum-sections .section-header .section-title {
    font-weight: 400;
    margin-bottom: 0;
    font-size: 18px;
    padding: 10px 0
}

.course-curriculum ul.curriculum-sections .section-header .section-desc {
    font-size: 14px;
    font-style: italic
}

.course-curriculum ul.curriculum-sections .section-header .section-meta {
    display: table-cell;
    white-space: nowrap;
    padding-left: 20px;
    text-align: right;
    font-size: 14px;
    vertical-align: middle
}

.course-curriculum ul.curriculum-sections .section-header .section-meta .section-progress {
    display: inline-block;
    margin-right: 5px
}

.course-curriculum ul.curriculum-sections .section-header .section-meta .section-progress .progress-bg {
    width: 100px
}

.course-curriculum ul.curriculum-sections .section-content {
    list-style: none;
    margin: 0 0 15px;
    padding: 0
}

.course-curriculum ul.curriculum-sections .section-content .course-item {
    position: relative;
    font-size: 14px;
    border-bottom: 1px solid #eee;
    transition: padding-left linear .15s;
    background: #fff;
    margin: 0;
    padding: 0
}

.course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link {
    border-bottom: none;
    display: table;
    box-shadow: none;
    outline: none;
    width: 100%;
    line-height: 1.5
}

.course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link:before {
    font-family: fontawesome;
    font-size: 18px;
    left: 0;
    transition: left linear .15s;
    display: table-cell;
    width: 20px;
    padding: 10px 0
}

.course-curriculum ul.curriculum-sections .section-content .course-item .item-icon,
.course-curriculum ul.curriculum-sections .section-content .course-item .item-name {
    display: table-cell;
    vertical-align: middle;
    padding: 10px
}

.course-curriculum ul.curriculum-sections .section-content .course-item .item-icon:before {
    font-size: 18px
}

.course-curriculum ul.curriculum-sections .section-content .course-item .item-icon.icon-lock {
    float: right;
    margin-top: 15px
}

.course-curriculum ul.curriculum-sections .section-content .course-item .course-item-meta {
    display: table-cell;
    vertical-align: middle;
    white-space: nowrap;
    padding: 10px 0;
    text-align: right
}

.course-curriculum ul.curriculum-sections .section-content .course-item .course-item-meta .item-meta {
    height: 20px;
    line-height: 20px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    margin-left: 5px;
    padding: 0 8px;
    border-radius: 3px;
    font-size: 14px;
    color: #fff
}

.course-curriculum ul.curriculum-sections .section-content .course-item .course-item-meta .item-meta.final-quiz {
    background: #14c4ff
}

.course-curriculum ul.curriculum-sections .section-content .course-item .course-item-meta .item-meta.trans {
    padding: 0
}

.course-curriculum ul.curriculum-sections .section-content .course-item .course-item-meta .count-questions {
    background: #dd88ae
}

.course-curriculum ul.curriculum-sections .section-content .course-item .course-item-meta .duration {
    background: #009688
}

.course-curriculum ul.curriculum-sections .section-content .course-item .course-item-meta .course-item-status {
    color: #ddd;
    margin-left: 5px;
    display: none;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.course-curriculum ul.curriculum-sections .section-content .course-item .course-item-meta .course-item-status:before {
    vertical-align: middle;
    font-size: 14px
}

.course-curriculum ul.curriculum-sections .section-content .course-item.has-status .course-item-status {
    display: inline-block
}

.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.status-viewed .course-item-status {
    display: none
}

.course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_quiz.status-started .course-item-status:before {
    content: "\f00c"
}

.course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_quiz .section-item-link:before {
    content: "\f017"
}

.course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_lesson .section-item-link:before {
    content: "\f0f6"
}

.course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_lesson.course-item-type-video .section-item-link:before {
    content: "\f03d"
}

.course-curriculum ul.curriculum-sections .section-content .course-item.course-item-lp_lesson.course-item-type-audio .section-item-link:before {
    content: "\f027"
}

.course-curriculum ul.curriculum-sections .section-content .course-item.item-preview .course-item-status {
    background: #00adff;
    font-style: normal;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.course-curriculum ul.curriculum-sections .section-content .course-item.item-preview .course-item-status:before {
    content: attr(data-preview);
    color: #fff;
    vertical-align: baseline
}

.course-curriculum ul.curriculum-sections .section-content .course-item.item-locked .course-item-status {
    display: inline-block
}

.course-curriculum ul.curriculum-sections .section-content .course-item.item-locked .course-item-status:before {
    content: "\f023";
    color: #ab6060
}

.course-curriculum ul.curriculum-sections .section-content .course-item.has-status {
    padding-top: 1px
}

.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.status-completed .course-item-status,
.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.status-started .course-item-status {
    border-color: #00adff;
    color: #ddd
}

.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.status-completed .course-item-status:before,
.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.status-started .course-item-status:before {
    content: "\f00c"
}

.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.status-completed .course-item-status {
    color: #00adff
}

.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.passed .course-item-status {
    border-color: #00adff;
    color: #00adff
}

.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.item-failed .course-item-status,
.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.failed .course-item-status {
    border-color: red;
    color: red
}

.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.item-failed .course-item-status:before,
.course-curriculum ul.curriculum-sections .section-content .course-item.has-status.failed .course-item-status:before {
    content: "\f00d"
}

.course-curriculum ul.curriculum-sections .section-content .course-item:before {
    background: #00adff;
    height: 0;
    left: 0;
    top: 50%;
    position: absolute;
    content: '';
    width: 3px;
    transition: height linear .15s, top linear .15s
}

.course-curriculum ul.curriculum-sections .section-content .course-item.current {
    padding-left: 10px;
    background: #f9f9f9
}

.course-curriculum ul.curriculum-sections .section-content .course-item.current a:before {
    left: 10px
}

.course-curriculum ul.curriculum-sections .section-content .course-item.current:before {
    top: 0;
    height: 100%
}

.course-curriculum ul.curriculum-sections .section-content .course-item:not(.item-preview) .course-item-status {
    font-family: fontawesome
}

body.course-item-popup {
    overflow: hidden;
    _opacity: 0
}

body.course-item-popup #learn-press-course-curriculum {
    position: fixed;
    top: 32px;
    bottom: 0;
    left: 0;
    width: 400px;
    background: #fff;
    border-right: 1px solid #ddd;
    overflow: auto;
    z-index: 9999
}

body.course-item-popup #learn-press-course-curriculum .section-header {
    padding: 0 15px
}

body.course-item-popup #learn-press-course-curriculum .section-header .section-desc {
    margin: -10px 0 5px
}

body.course-item-popup #learn-press-course-curriculum .course-item {
    padding-left: 15px;
    padding-right: 15px
}

body.course-item-popup #learn-press-course-curriculum .course-item a:before {
    left: 15px
}

body.course-item-popup #learn-press-content-item {
    position: fixed;
    z-index: 9999;
    background: #fff;
    top: 32px;
    left: 400px;
    right: 0;
    bottom: 0;
    overflow: hidden
}

body.course-item-popup #learn-press-content-item .content-item-wrap {
    margin: 10px auto;
    max-width: 900px
}

body.course-item-popup #learn-press-content-item .course-item-title {
    font-size: 1.4rem
}

body.course-item-popup #learn-press-content-item .content-question-summary .review-heading {
    text-align: center
}

body.course-item-popup #learn-press-content-item .content-question-summary .question-title {
    font-size: 1.2rem;
    margin-bottom: 10px
}

body.course-item-popup #content-item-nav {
    position: fixed;
    z-index: 99999;
    left: 400px;
    right: 0;
    background: #f5f5f5;
    bottom: 0;
    height: 60px;
    border-top: 1px solid #ddd
}

body.course-item-popup #content-item-nav .content-item-nav-wrap {
    max-width: 900px;
    margin: 10px auto
}

body.course-item-popup #content-item-nav button {
    height: 40px;
    line-height: 40px;
    padding: 0 20px
}

body.course-item-popup .comment-form-textarea {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

body.course-item-popup.wpadminbar #learn-press-course-curriculum,
body.course-item-popup.wpadminbar #learn-press-content-item {
    top: 92px
}

body.course-item-popup.wpadminbar #course-item-content-header {
    top: 32px
}

body.course-item-popup.wpadminbar .content-item-description {
    margin-bottom: 20px
}

body.course-item-popup .content-item-summary {
    margin-bottom: 50px
}

body.course-item-popup .content-item-summary>h3 {
    margin-bottom: 20px
}

body.course-item-popup .content-item-summary.content-item-video .entry-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #000;
    line-height: 1
}

body.course-item-popup .content-item-summary.content-item-video .entry-video iframe {
    width: 100%;
    margin-bottom: 0;
    max-width: 900px;
    vertical-align: top
}

body.course-item-popup .learn-press-content-protected-message {
    margin-bottom: 50px;
    padding: 20px;
    background: #ffe0e0
}

body.course-item-popup.content-only #learn-press-content-item {
    left: 0;
    top: 0;
    bottom: 0;
    z-index: 9999999
}

body.course-item-popup.content-only #learn-press-content-item #course-item-content-header,
body.course-item-popup.content-only #learn-press-content-item #course-item-content-footer {
    display: none
}

body.course-item-popup.content-only #learn-press-content-item .content-item-scrollable {
    bottom: 0
}

body #ifr-course-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    background: #fff
}

body.full-screen-content-item #course-item-content-header .toggle-content-item:before {
    font: 28px/60px fontawesome;
    content: "\f066"
}

body .content-item-summary .form-button-finish-course,
body .lp-quiz-buttons .form-button-finish-course {
    float: right
}

#wpadminbar #wp-admin-bar-edit-lp_quiz .ab-item:before,
#wpadminbar #wp-admin-bar-edit-lp_lesson .ab-item:before,
#wpadminbar #wp-admin-bar-edit-lp_question .ab-item:before {
    font-family: fontawesome;
    top: 2px
}

#wpadminbar #wp-admin-bar-edit-lp_quiz .ab-item:before {
    content: "\f017"
}

#wpadminbar #wp-admin-bar-edit-lp_lesson .ab-item:before {
    content: "\f0f6"
}

#wpadminbar #wp-admin-bar-edit-lp_question .ab-item:before {
    content: "\f29c"
}

.scroll-wrapper {
    opacity: 0;
    overflow: hidden
}

.scroll-wrapper .scroll-element {
    background: 0 0
}

.scroll-wrapper .scroll-element.scroll-y.scroll-scrolly_visible {
    transition: opacity .25s
}

.scroll-wrapper:hover .scroll-element.scroll-y.scroll-scrolly_visible {
    opacity: .7
}

.course-remaining-time .lp-label.label-enrolled {
    font-size: inherit
}

.learn-press-course-results-progress {
    margin-right: -4%
}

.learn-press-course-results-progress .items-progress,
.learn-press-course-results-progress .course-progress {
    float: left;
    margin-right: 4%;
    width: 46%;
    margin-bottom: 30px
}

.learn-press-course-results-progress .items-progress .lp-course-progress-heading,
.learn-press-course-results-progress .course-progress .lp-course-progress-heading {
    margin-bottom: 10px
}

.learn-press-course-results-progress .items-progress .lp-progress-bar,
.learn-press-course-results-progress .course-progress .lp-progress-bar {
    height: 10px;
    border-radius: 5px;
    overflow: hidden;
    position: relative
}

.learn-press-course-results-progress .items-progress .lp-progress-bar .lp-progress-value,
.learn-press-course-results-progress .course-progress .lp-progress-bar .lp-progress-value {
    height: 10px;
    border-radius: 5px;
    margin-left: -100%;
    position: absolute;
    width: 100%
}

.learn-press-course-results-progress .items-progress .lp-course-status .grade.failed,
.learn-press-course-results-progress .course-progress .lp-course-status .grade.failed {
    background: red
}

.learn-press-course-results-progress .items-progress .lp-course-status .grade.passed,
.learn-press-course-results-progress .course-progress .lp-course-status .grade.passed {
    background: #3eadff
}

.learn-press-course-results-progress:after {
    clear: both;
    display: block;
    content: ''
}

#course-item-content-header,
#course-item-content-footer {
    position: fixed;
    height: 60px;
    right: 0;
    line-height: 60px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

#course-item-content-header {
    top: 0;
    left: 0;
    background: #e7f7ff;
    z-index: 100;
    border-bottom: 1px solid #ddd;
    padding: 0
}

#course-item-content-header .course-item-search {
    float: left;
    width: 400px;
    padding: 15px;
    box-sizing: border-box;
    position: relative
}

#course-item-content-header .course-item-search input {
    height: 30px;
    width: 385px;
    background: 0 0;
    border: none;
    padding: 0;
    box-shadow: none;
    float: left;
    font-style: italic;
    color: #aaa
}

#course-item-content-header .course-item-search input:focus {
    box-shadow: none;
    outline: none;
    color: #777
}

#course-item-content-header .course-item-search button {
    background: 0 0;
    border: none;
    position: absolute;
    z-index: 99;
    margin-left: -30px;
    padding: 0;
    height: 30px;
    line-height: 30px;
    font-size: 15px;
    right: 15px;
    color: #777
}

#course-item-content-header .course-item-search button:after {
    font-family: fontawesome;
    content: "\f002"
}

#course-item-content-header .course-item-search.has-keyword button:after {
    content: "\f00d"
}

#course-item-content-header .course-title {
    font-size: 1.4rem;
    float: left;
    clear: none;
    height: 60px;
    line-height: 60px;
    padding: 0 15px;
    margin: 0
}

#course-item-content-header .course-title a {
    box-shadow: none
}

#course-item-content-header .course-title:before {
    content: '';
    display: none
}

#course-item-content-header .form-button.lp-button-back {
    float: right;
    margin-right: 15px
}

#course-item-content-header .form-button.lp-button-back button {
    line-height: 34px
}

#course-item-content-header .toggle-content-item {
    display: inline-block;
    width: 60px;
    height: 60px;
    float: right;
    text-align: center;
    border-left: 1px solid #ddd
}

#course-item-content-header .toggle-content-item:before {
    font: 28px/60px fontawesome;
    content: "\f065"
}

#course-item-content-footer {
    border-top: 1px solid #ddd;
    bottom: 0;
    left: 400px;
    padding: 15px;
    display: none
}

#course-item-content-footer button,
#course-item-content-footer .lp-button {
    height: 35px;
    line-height: 30px;
    padding: 0 10px;
    font-size: 14px
}

.learn-press-form.completed button:before {
    font-family: fontawesome;
    content: '\f00c';
    font-size: 18px;
    margin-right: 10px
}

.lp-course-progress {
    position: relative
}

.lp-course-progress .lp-passing-conditional {
    position: absolute;
    height: 10px;
    width: 3px;
    background: red;
    top: 0;
    margin-left: -1px
}

@media screen and (max-width:1300px) {
    body.course-item-popup #course-item-content-header .course-item-search {
        width: 300px
    }
    body.course-item-popup #course-item-content-header .course-item-search input {
        width: 285px
    }
    body.course-item-popup #course-item-content-header .course-item-search button {
        left: 300px
    }
    body.course-item-popup #learn-press-course-curriculum {
        width: 300px
    }
    body.course-item-popup #learn-press-course-curriculum .progress-bg {
        width: 40px
    }
    body.course-item-popup #content-item-nav,
    body.course-item-popup #learn-press-content-item,
    body.course-item-popup #course-item-content-footer {
        left: 300px
    }
    body.course-item-popup .section-desc {
        display: none
    }
}

@media screen and (max-width:1200px) {
    body.course-item-popup #course-item-content-header .course-item-search {
        width: 300px
    }
    body.course-item-popup #course-item-content-header .course-item-search input {
        width: 285px
    }
    body.course-item-popup #course-item-content-header .course-item-search button {
        left: 300px
    }
    body.course-item-popup #learn-press-course-curriculum {
        width: 300px
    }
    body.course-item-popup #content-item-nav,
    body.course-item-popup #learn-press-content-item,
    body.course-item-popup #course-item-content-footer {
        left: 300px
    }
    body.course-item-popup #learn-press-content-item .content-item-nav-wrap,
    body.course-item-popup #learn-press-content-item .content-item-wrap {
        width: 90%
    }
}

@media screen and (max-width:768px) {
    body.course-item-popup #course-item-content-header .course-item-search {
        width: 200px
    }
    body.course-item-popup #course-item-content-header .course-item-search input {
        width: 185px
    }
    body.course-item-popup #course-item-content-header .course-item-search button {
        left: 200px
    }
    body.course-item-popup #learn-press-course-curriculum {
        width: 200px
    }
    body.course-item-popup #content-item-nav,
    body.course-item-popup #learn-press-content-item,
    body.course-item-popup #course-item-content-footer {
        left: 200px
    }
    body.course-item-popup #learn-press-content-item .content-item-nav-wrap,
    body.course-item-popup #learn-press-content-item .content-item-wrap {
        width: 90%
    }
    body.course-item-popup.wpadminbar #learn-press-content-item,
    body.course-item-popup.wpadminbar #learn-press-course-curriculum {
        top: 106px
    }
    body.course-item-popup.wpadminbar #course-item-content-header {
        top: 46px
    }
    .learn-press-course-results-progress {
        margin-right: 0
    }
    .learn-press-course-results-progress .items-progress,
    .learn-press-course-results-progress .course-progress {
        float: none;
        margin-right: 0;
        width: 100%;
        margin-bottom: 20px
    }
}

.lp-quiz-buttons {
    margin-bottom: 20px;
    clear: both;
    display: block;
    content: ''
}

.quiz-progress {
    background: #e7f7ff;
    margin-bottom: 30px
}

.quiz-progress .progress-items {
    display: flex
}

.quiz-progress .progress-items .progress-item {
    flex: 1;
    position: relative;
    font-size: 15px;
    color: #777
}

.quiz-progress .progress-items .progress-item .progress-number,
.quiz-progress .progress-items .progress-item .progress-label {
    display: block;
    text-align: center;
    line-height: 1
}

.quiz-progress .progress-items .progress-item .progress-number {
    font-size: 20px;
    margin: 15px 0 10px
}

.quiz-progress .progress-items .progress-item .progress-label {
    font-size: 14px;
    margin-bottom: 15px
}

.quiz-progress .progress-items .progress-item i {
    display: none;
    width: 60px;
    height: 60px;
    font-size: 30px;
    text-align: center;
    line-height: 60px;
    color: #fff;
    background: #00adff;
    float: left
}

.quiz-progress .progress-items .progress-item:after {
    clear: both;
    display: block;
    content: ''
}

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

.answer-options .answer-option {
    margin: 0 0 15px;
    position: relative;
    background: #f5f5f5;
    padding: 10px;
    display: flex;
    overflow: hidden;
    color: #777;
    cursor: pointer;
    font-size: 20px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: background linear .25s;
    -moz-transition: background linear .25s;
    transition: background linear .25s
}

.answer-options .answer-option .option-title {
    font-size: smaller;
    display: table-cell
}

.answer-options .answer-option .option-title .option-title-content {
    display: inline-block;
    vertical-align: middle
}

.answer-options .answer-option .option-title:before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    content: '';
    background: #ddd;
    -webkit-transition: background linear .25s;
    -moz-transition: background linear .25s;
    transition: background linear .25s
}

.answer-options .answer-option input[type=checkbox],
.answer-options .answer-option input[type=radio] {
    -webkit-appearance: initial;
    -moz-appearance: initial;
    margin: 0 10px 0 3px;
    position: relative;
    border: 1px solid #eaeaea;
    z-index: 10;
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: #fff;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.answer-options .answer-option input[type=checkbox]:focus,
.answer-options .answer-option input[type=radio]:focus {
    outline: none
}

.answer-options .answer-option input[type=checkbox]:after,
.answer-options .answer-option input[type=radio]:after {
    content: '';
    border: 2px solid #00adff;
    display: inline-block;
    width: 7px;
    height: 15px;
    border-top: none;
    border-left: none;
    position: absolute;
    top: 50%;
    left: 10px;
    box-sizing: content-box;
    opacity: 0;
    margin-top: -10px;
    -webkit-transform: rotate(36deg) scale(0);
    -moz-transform: rotate(36deg) scale(0);
    -ms-transform: rotate(36deg) scale(0);
    -o-transform: rotate(36deg) scale(0);
    transform: rotate(36deg) scale(0);
    -webkit-transition: all .25s;
    -moz-transition: all .25s;
    transition: all .25s
}

.answer-options .answer-option input[type=checkbox]:checked~.option-title .option-title-content,
.answer-options .answer-option input[type=radio]:checked~.option-title .option-title-content {
    position: relative
}

.answer-options .answer-option input[type=checkbox]:checked~.option-title:before,
.answer-options .answer-option input[type=radio]:checked~.option-title:before {
    background: #00adff
}

.answer-options .answer-option input[type=checkbox]:checked:after,
.answer-options .answer-option input[type=radio]:checked:after {
    opacity: 1;
    -webkit-transform: rotate(36deg) scale(1);
    -moz-transform: rotate(36deg) scale(1);
    -ms-transform: rotate(36deg) scale(1);
    -o-transform: rotate(36deg) scale(1);
    transform: rotate(36deg) scale(1)
}

.answer-options .answer-option input[type=radio] {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.answer-options .answer-option input[type=radio]:before {
    border-radius: 50%
}

.answer-options .answer-option .option-title {
    margin: 0
}

.answer-options .answer-option:hover {
    background: #e1f5ff
}

.answer-options .answer-option.answer-correct {
    background: #e1f5ff
}

.answer-options .answer-option.answer-correct input[type=radio]:checked~.option-title:before,
.answer-options .answer-option.answer-correct input[type=checkbox]:checked~.option-title:before {
    background: #e1f5ff
}

.answer-options .answer-option.answered-correct input[type=radio]:checked~.option-title:before,
.answer-options .answer-option.answered-correct input[type=checkbox]:checked~.option-title:before {
    background: #00adff
}

.answer-options .answer-option.answered-wrong input[type=radio]:before,
.answer-options .answer-option.answered-wrong input[type=radio]:after,
.answer-options .answer-option.answered-wrong input[type=checkbox]:before,
.answer-options .answer-option.answered-wrong input[type=checkbox]:after {
    border-color: red
}

.answer-options .answer-option.answered-wrong input[type=radio]:checked~.option-title:before,
.answer-options .answer-option.answered-wrong input[type=checkbox]:checked~.option-title:before {
    background: red
}

button[data-counter] {
    position: relative
}

button[data-counter]:after {
    content: "(+" attr(data-counter) ")";
    padding-left: 5px
}

.quiz-result {
    max-width: 400px;
    margin: 30px auto 20px;
    text-align: center
}

.quiz-result .result-grade .result-achieved,
.quiz-result .result-grade .result-require {
    display: inline-block;
    margin: 0 auto
}

.quiz-result .result-grade .result-achieved {
    font-size: 36px;
    border-bottom: 2px solid #04adff
}

.quiz-result .result-grade .result-require {
    display: block
}

.quiz-result .result-grade .result-message {
    font-size: 14px
}

.quiz-result.failed .result-achieved {
    color: #c55757
}

.quiz-result.failed .result-message strong {
    color: #c55757
}

.quiz-result.passed .result-achieved {
    color: #04adff
}

.quiz-result.passed .result-message strong {
    color: #04adff
}

.quiz-result .result-statistic {
    list-style: none;
    text-align: left;
    margin: 0;
    padding: 0
}

.quiz-result .result-statistic .result-statistic-field {
    display: flex
}

.quiz-result .result-statistic .result-statistic-field label,
.quiz-result .result-statistic .result-statistic-field p {
    flex: 1;
    margin: 0
}

.quiz-result .result-statistic .result-statistic-field label {
    font-weight: 700
}

.quiz-result .result-statistic .result-statistic-field p {
    text-align: right
}

.question-numbers {
    list-style: none;
    text-align: center
}

.question-numbers li {
    display: inline-block;
    position: relative;
    margin-bottom: 3px
}

.question-numbers li a {
    display: block;
    padding: 8px;
    background: #f5f5f5;
    line-height: 1;
    color: #999;
    border: 1px solid #ddd;
    font-size: 12px;
    min-width: 20px;
    box-shadow: none
}

.question-numbers li a span {
    vertical-align: middle
}

.question-numbers li a:hover {
    background: #00adff;
    color: #fff;
    border: 1px solid #3880a2
}

.question-numbers li.current a {
    background: #00adff;
    color: #fff !important;
    border-color: #3880a2
}

.question-numbers li.current.skipped:after {
    background: #fff
}

.question-numbers li.answered a:after {
    font-family: fontawesome;
    font-size: 8px;
    vertical-align: middle;
    margin-left: 3px
}

.question-numbers li.answered.answered-wrong a {
    color: red
}

.question-numbers li.answered.answered-true a {
    color: #00adff
}

.question-numbers li.answered.answered-true.current a {
    color: #fff
}

.question-numbers li.skipped:after {
    content: '';
    background: #aaa;
    width: 10px;
    height: 4px;
    position: absolute;
    border-radius: 2px;
    left: 50%;
    margin-left: -5px;
    bottom: 3px
}

.quiz-intro {
    list-style: none;
    margin: 0 0 20px;
    padding: 0;
    display: table
}

.quiz-intro li {
    margin: 0;
    display: table-row
}

.quiz-intro li label,
.quiz-intro li span {
    display: table-cell
}

.quiz-intro li label {
    font-weight: 700;
    padding: 0 20px 10px 0;
    line-height: 1
}

.quiz-intro li span {
    text-align: left
}

.question-explanation-content,
.question-hint-content {
    margin-bottom: 20px;
    background: #f5f5f5;
    padding: 10px 15px
}

.redo-quiz button[type=submit] {
    content: attr(data-counter)
}

.circle-bar {
    position: relative;
    width: 300px;
    height: 300px;
    border-color: #ddd
}

.circle-bar:before {
    border-radius: 50%;
    border: 10px solid #ddd;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    content: '';
    box-sizing: border-box
}

.circle-bar .before,
.circle-bar .after {
    border-radius: 50%;
    border: 10px solid #14c4ff;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    box-sizing: border-box
}

.circle-bar .before {
    border-bottom-color: transparent;
    border-left-color: transparent;
    transform: rotate(45deg)
}

.circle-bar .after {
    border-color: #14c4ff;
    border-right-color: transparent;
    border-top-color: transparent;
    transform: rotate(45deg)
}

.circle-bar.bg50 .after {
    transform: rotate(45deg);
    z-index: 10;
    border-left-color: inherit;
    border-bottom-color: inherit
}

.learn-press-message.fixed {
    position: fixed;
    top: 32px;
    left: 0;
    right: 0;
    background: rgba(0, 173, 255, .6);
    text-align: center;
    z-index: 100;
    color: #fff;
    padding: 10px
}

.learn-press-message.fixed[data-delay-in] {
    display: none
}

body.twentysixteen.learnpress-page .entry-footer {
    display: none
}

body.twentysixteen.learnpress-page .entry-content {
    float: none;
    width: auto
}

@media screen and (min-width:61.5625em) {
    body.twentysixteen.learnpress-page .entry-footer {
        display: none
    }
    body.twentysixteen.learnpress-page .entry-content {
        float: none;
        width: auto
    }
    body:not(.search-results) article:not(.type-page) .entry-footer {
        display: none
    }
    body:not(.search-results) article:not(.type-page) .entry-content {
        float: none;
        width: auto
    }
}

body.twentyseventeen.learnpress-page #primary article.page .entry-header,
body.twentyseventeen.learnpress-page #primary article.page .entry-content {
    width: 100%;
    float: none
}

@media screen and (min-width:48em) {
    body.twentyseventeen.learnpress-page #primary article.page .entry-header,
    body.twentyseventeen.learnpress-page #primary article.page .entry-content {
        width: 100%;
        float: none
    }
}

.lp-widget .items-progress,
.lp-widget .course-progress {
    width: 100%
}

.lp-widget .course-remaining-time {
    font-size: 14px
}

.lp-widget .lp-course-info-fields {
    margin: 0
}

.lp-widget .lp-course-info-fields .lp-course-info {
    list-style: none;
    margin: 0 0 10px
}

.lp-widget .lp-course-info-fields .lp-course-info .lp-label {
    float: right;
    background: #03a9f4
}

.learn-press-tip {
    display: none;
    line-height: 1;
    margin: 0 5px;
    font-size: 16px;
    vertical-align: baseline;
    cursor: pointer;
    font-style: normal
}

.learn-press-tip.ready {
    display: inline-block
}

.learn-press-tip:before {
    font-family: Fontawesome;
    content: "\f059"
}

.learn-press-tip:hover {
    color: #0073aa
}

.learn-press-tip-floating {
    background: rgba(39, 115, 170, .9);
    padding: 8px 10px;
    line-height: 1.2em;
    color: #fff;
    min-width: 20px;
    position: absolute;
    margin-left: -1px;
    font-size: 12px;
    z-index: 9999;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

.learn-press-tip-floating .close {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    top: -8px;
    border: 1px solid #fff;
    text-align: center;
    line-height: 16px;
    background: #468fbc;
    color: #fff;
    cursor: pointer;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.learn-press-tip-floating .close:before {
    content: "\f00d";
    font-family: Fontawesome
}

.learn-press-tip-floating p {
    margin: 0
}

.learn-press-tip-floating:before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    bottom: -7px;
    border: 7px solid transparent;
    border-top-color: rgba(39, 115, 170, .9);
    border-bottom-width: 0;
    left: 50%;
    margin-left: -7px
}

body.lp-preview.admin-bar #learn-press-content-item {
    top: 32px !important
}

body.lp-preview #learn-press-course-curriculum {
    display: none
}

body.lp-preview #learn-press-content-item {
    top: 0 !important;
    left: 0 !important
}

body.lp-preview #course-item-content-header {
    display: none
}

@-webkit-keyframes rotating4 {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotating4 {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes animation4 {
    from {
        left: -40%;
        width: 40%
    }
    to {
        left: 100%;
        width: 10%
    }
}

@keyframes animation4 {
    from {
        left: -40%;
        width: 40%
    }
    to {
        left: 100%;
        width: 10%
    }
}

#popup_container {
    opacity: 0;
    transform: scale(.5)
}

body.confirm #popup_overlay {
    z-index: 999998 !important
}

body.confirm #popup_container {
    z-index: 999999 !important;
    max-width: 90% !important;
    min-width: 300px !important;
    padding: 10px !important;
    background: #f5f5f5;
    transition: opacity .25s;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

body.confirm #popup_container #popup_title {
    display: none !important
}

body.confirm #popup_container #popup_message {
    margin: -10px;
    background: #fff;
    padding: 20px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px
}

body.confirm #popup_container .close {
    position: absolute;
    top: 3px;
    right: 10px
}

body.confirm #popup_container #popup_panel {
    margin-top: 20px;
    text-align: center
}

body.confirm #popup_container #popup_panel button,
body.confirm #popup_container #popup_panel input[type=button],
body.confirm #popup_container #popup_panel input[type=submit] {
    height: 30px;
    line-height: 30px;
    padding: 0 25px
}

body.confirm #popup_container #popup_cancel {
    display: none
}

body.confirm #popup_container.ready {
    opacity: 1;
    transform: scale(1)
}

input[type=text],
input[type=email],
input[type=number],
input[type=password] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.hide-if-js {
    display: none !important
}

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

.learn-press-breadcrumb {
    margin-bottom: 20px
}

.learnpress-page .lp-button {
    line-height: 45px;
    padding: 0 12px;
    height: 45px
}

.course-meta {
    margin-bottom: 20px
}

#learn-press-course-tabs {
    margin-bottom: 40px
}

form[name=search-course] {
    margin-bottom: 20px;
    position: relative
}

form[name=search-course] .search-course-input {
    width: 100%;
    padding: 12px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

form[name=search-course] .search-course-button {
    position: absolute;
    top: 1px;
    right: 1px;
    bottom: 1px;
    padding: 15px;
    height: auto;
    line-height: 1px
}

ul.learn-press-courses {
    list-style: none;
    margin-right: -2.1%;
    margin-left: 0;
    padding: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -moz-flex;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap
}

ul.learn-press-courses .course {
    list-style: none;
    width: 31.33333%;
    margin: 0 2% 20px 0;
    box-shadow: none;
    padding: 0
}

ul.learn-press-courses .course .course-thumbnail,
ul.learn-press-courses .course .course-title,
ul.learn-press-courses .course .course-info {
    margin: 0 0 .8em;
    line-height: 1
}

ul.learn-press-courses .course .course-thumbnail img {
    line-height: 1;
    vertical-align: top
}

ul.learn-press-courses .course .course-title {
    font-size: 1.2em;
    padding: 0;
    font-weight: 400
}

ul.learn-press-courses .course .course-info {
    font-size: 14px
}

ul.learn-press-courses .course .course-info>span {
    display: block
}

ul.learn-press-courses .course .course-info .course-price {
    float: left
}

ul.learn-press-courses .course .course-info .course-price .origin-price,
ul.learn-press-courses .course .course-info .course-price .price {
    vertical-align: middle
}

ul.learn-press-courses .course .course-info .course-price .origin-price {
    font-size: 16px;
    text-decoration: line-through;
    font-style: italic;
    margin-right: 10px
}

ul.learn-press-courses .course .course-info .course-price .price {
    font-size: 18px
}

ul.learn-press-courses .course .course-info .course-instructor {
    float: right
}

ul.learn-press-courses .course .course-info:after {
    clear: both;
    display: block;
    content: ''
}

ul.learn-press-courses .course .lp-course-buttons form {
    width: 100%;
    margin-bottom: 10px
}

ul.learn-press-courses .course .lp-course-buttons form button {
    width: 100%
}

.order-comments {
    width: 100%;
    min-height: 150px
}

.learn-press-progress {
    position: relative
}

.learn-press-progress .progress-bg {
    background: #ddd;
    height: 10px;
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}

.learn-press-progress .progress-bg .progress-active {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 50%;
    margin-left: -100%;
    background: #00adff;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}

.retake-course,
.enroll-course,
.purchase-course {
    display: inline-block
}

.table-orders {
    font-size: 16px
}

.table-orders th,
.table-orders td {
    padding: 5px 10px
}

.form-button {
    display: inline-block
}

.learn-press-pagination {
    text-align: center;
    margin-bottom: 20px
}

.learn-press-pagination .page-numbers {
    display: inline-block;
    list-style: none;
    margin: 0
}

.learn-press-pagination .page-numbers>li {
    display: inline-block;
    margin: 0
}

.learn-press-pagination .page-numbers>li a,
.learn-press-pagination .page-numbers>li span {
    display: block;
    padding: 5px 10px;
    border: 1px solid #ddd;
    box-shadow: none;
    line-height: 1;
    float: none;
    font-size: 1em;
    border-radius: 0
}

.learn-press-pagination .page-numbers>li span {
    background: #f5f5f5
}

.learn-press-message {
    padding: 10px 12px 10px 15px;
    background: #f5f5f5;
    position: relative;
    margin: 0 0 20px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px
}

.learn-press-message.icon {
    padding-left: 45px
}

.learn-press-message.icon:after {
    font-size: 20px;
    vertical-align: baseline;
    margin-right: 10px;
    position: absolute;
    left: 15px;
    top: 50%;
    margin-top: -13px;
    height: 26px;
    line-height: 26px;
    background: #04adff;
    width: 26px;
    text-align: center;
    border-radius: 50%;
    color: #fff;
    font-family: FontAwesome
}

.learn-press-message:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: #00adff;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px
}

.learn-press-message.error:before {
    background: #d85554
}

.learn-press-message.error.icon:before {
    background: #d85554
}

.learn-press-message.error.icon:after {
    content: "\f00d";
    background: #d85554
}

.learn-press-message.success.icon:before {
    background: #00adff
}

.learn-press-message.success.icon:after {
    content: "\f129";
    background: #00adff
}

ul.list-table-nav {
    display: flex;
    list-style: none;
    margin-left: 0
}

ul.list-table-nav .nav-text {
    flex: 1;
    text-align: left
}

ul.list-table-nav .nav-pages {
    flex: 1;
    text-align: right
}

ul.list-table-nav .nav-pages .learn-press-pagination {
    display: inline-block;
    margin-bottom: 0
}

.primary-color {
    color: #00adff
}

.primary-color-before:before {
    color: #00adff
}

.primary-color-after:after {
    color: #00adff
}

.primary-background-color {
    background: #00adff
}

.primary-background-color {
    background: #00adff
}

.course-origin-price {
    font-size: 85%;
    text-decoration: line-through;
    margin-right: 5px
}

.course-item-nav {
    display: flex
}

.course-item-nav .prev,
.course-item-nav .next {
    flex: 1
}

.course-item-nav .prev span,
.course-item-nav .next span {
    display: block;
    font-weight: 700
}

.course-item-nav .prev a,
.course-item-nav .next a {
    color: #999
}

.course-item-nav .next {
    text-align: right
}

.content-item-wrap #comments {
    margin-left: 0;
    margin-right: 0
}

.content-item-wrap #comments #comment {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

@media screen and (max-width:768px) {
    ul.learn-press-courses .course {
        width: 48%
    }
}

@media screen and (max-width:600px) {
    ul.learn-press-courses {
        margin-right: 0
    }
    ul.learn-press-courses .course {
        width: 100%;
        margin-right: 0
    }
}

@charset "UTF-8";

/*!
Theme Name: Education Pack
Theme URI: http://university.thimpress.com/
Author: ThimPress
Author URI: http://thimpress.com
Description: A free University WordPress theme for all universities, colleges, schools, educational institutions, learning centers, learning hubs. This theme is best used as an Education WordPress Theme.
Version: 1.7
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: two-columns, three-columns, left-sidebar, right-sidebar, custom-background, custom-header, custom-menu, editor-style, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, accessibility-ready
Text Domain: education-pack
Domain Path: /languages/
*/

body {
    color: #141414 !important
}

body,
figure {
    margin: 0
}

.img-thumbnail,
.table,
label {
    max-width: 100%
}

.navbar-fixed-bottom .navbar-collapse,
.navbar-fixed-top .navbar-collapse,
.pre-scrollable {
    max-height: 340px
}

.mfp-title,
pre {
    word-wrap: break-word
}

.mfp-arrow,
.owl-carousel,
.owl-carousel .owl-item,
html {
    -webkit-tap-highlight-color: transparent
}

.mfp-wrap,
.owl-carousel .owl-item,
.owl-carousel .owl-video-play-icon {
    -webkit-backface-visibility: hidden
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
    display: block
}

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline
}

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

[hidden],
template {
    display: none
}

a {
    background-color: transparent;
    text-decoration: none
}

a:active,
a:hover {
    outline: 0
}

b,
optgroup,
strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    margin: .67em 0
}

mark {
    background: #ff0
}

.btn,
.btn-danger.active,
.btn-danger:active,
.btn-default.active,
.btn-default:active,
.btn-info.active,
.btn-info:active,
.btn-success.active,
.btn-success:active,
.btn-warning.active,
.btn-warning:active,
.btn.active,
.btn:active,
.form-control,
.navbar-toggle,
.open>.btn-danger.dropdown-toggle,
.open>.btn-default.dropdown-toggle,
.open>.btn-info.dropdown-toggle,
.open>.btn-success.dropdown-toggle,
.open>.btn-warning.dropdown-toggle {
    background-image: none
}

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

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0;
    vertical-align: middle
}

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

hr {
    box-sizing: content-box;
    margin-top: 20px;
    margin-bottom: 20px
}

pre,
textarea {
    overflow: auto
}

code,
kbd,
pre,
samp {
    font-size: 1em
}

button,
input,
optgroup,
select,
textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button,
select {
    text-transform: none
}

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

button[disabled],
html input[disabled] {
    cursor: default
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0
}

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

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

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

*,
 :after,
 :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

html {
    font-size: 10px
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

a:focus {
    outline-offset: -2px
}

.img-responsive {
    display: block;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    padding: 4px;
    line-height: 1.42857;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 4px;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    display: inline-block;
    height: auto
}

.img-circle {
    border-radius: 50%
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto
}

[role=button] {
    cursor: pointer
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: inherit;
    font-weight: 500;
    color: inherit
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
    font-weight: 400;
    line-height: 1;
    color: #777
}

.h1,
.h2,
.h3,
h1,
h2,
h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

.h1 .small,
.h1 small,
.h2 .small,
.h2 small,
.h3 .small,
.h3 small,
h1 .small,
h1 small,
h2 .small,
h2 small,
h3 .small,
h3 small {
    font-size: 65%
}

.h4,
.h5,
.h6,
h4,
h5,
h6 {
    margin-top: 10px;
    margin-bottom: 10px
}

.h4 .small,
.h4 small,
.h5 .small,
.h5 small,
.h6 .small,
.h6 small,
h4 .small,
h4 small,
h5 .small,
h5 small,
h6 .small,
h6 small {
    font-size: 75%
}

.h1,
h1 {
    font-size: 36px
}

.h2,
h2 {
    font-size: 30px
}

.h3,
h3 {
    font-size: 24px
}

.h4,
h4 {
    font-size: 18px
}

.h5,
h5 {
    font-size: 14px
}

.h6,
h6 {
    font-size: 12px
}

p {
    margin: 0 0 10px
}

.lead {
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 300;
    line-height: 1.4
}

dt,
kbd kbd,
label {
    font-weight: 700
}

@media (min-width:768px) {
    .lead {
        font-size: 21px
    }
}

.small,
small {
    font-size: 85%
}

.mark,
mark {
    background-color: #fcf8e3;
    padding: .2em
}

.list-inline,
.list-unstyled {
    padding-left: 0;
    list-style: none
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.text-center {
    text-align: center
}

.text-justify {
    text-align: justify
}

.text-nowrap {
    white-space: nowrap
}

.text-lowercase {
    text-transform: lowercase
}

.initialism,
.text-uppercase {
    text-transform: uppercase
}

.text-capitalize {
    text-transform: capitalize
}

.text-muted {
    color: #777
}

.text-primary {
    color: #337ab7
}

a.text-primary:focus,
a.text-primary:hover {
    color: #286090
}

.text-success {
    color: #3c763d
}

a.text-success:focus,
a.text-success:hover {
    color: #2b542c
}

.text-info {
    color: #31708f
}

a.text-info:focus,
a.text-info:hover {
    color: #245269
}

.text-warning {
    color: #8a6d3b
}

a.text-warning:focus,
a.text-warning:hover {
    color: #66512c
}

.text-danger {
    color: #a94442
}

a.text-danger:focus,
a.text-danger:hover {
    color: #843534
}

.bg-primary {
    color: #fff;
    background-color: #337ab7
}

a.bg-primary:focus,
a.bg-primary:hover {
    background-color: #286090
}

.bg-success {
    background-color: #dff0d8
}

a.bg-success:focus,
a.bg-success:hover {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #d9edf7
}

a.bg-info:focus,
a.bg-info:hover {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #fcf8e3
}

a.bg-warning:focus,
a.bg-warning:hover {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #f2dede
}

a.bg-danger:focus,
a.bg-danger:hover {
    background-color: #e4b9b9
}

pre code,
table {
    background-color: transparent
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

dl,
ol,
ul {
    margin-top: 0
}

blockquote ol:last-child,
blockquote p:last-child,
blockquote ul:last-child,
ol ol,
ol ul,
ul ol,
ul ul {
    margin-bottom: 0
}

address,
dl {
    margin-bottom: 20px
}

ol,
ul {
    margin-bottom: 10px
}

.list-inline {
    margin-left: -5px
}

.list-inline>li {
    display: inline-block;
    padding-left: 5px;
    padding-right: 5px
}

dd,
dt {
    line-height: 1.42857
}

dd {
    margin-left: 0
}

.dl-horizontal dd:after,
.dl-horizontal dd:before {
    content: "";
    display: table
}

.dl-horizontal dd:after {
    clear: both
}

@media (min-width:768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        clear: left;
        text-align: right;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap
    }
    .dl-horizontal dd {
        margin-left: 180px
    }
    .container {
        width: 750px
    }
}

abbr[data-original-title],
abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #777
}

.initialism {
    font-size: 90%
}

blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eee
}

blockquote .small,
blockquote footer,
blockquote small {
    display: block;
    font-size: 80%;
    line-height: 1.42857;
    color: #777
}

legend,
pre {
    color: #333
}

blockquote .small:before,
blockquote footer:before,
blockquote small:before {
    content: '\2014 \00A0'
}

.blockquote-reverse,
blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    border-right: 5px solid #eee;
    border-left: 0;
    text-align: right
}

code,
kbd {
    padding: 2px 4px;
    font-size: 90%
}

.blockquote-reverse .small:before,
.blockquote-reverse footer:before,
.blockquote-reverse small:before,
blockquote.pull-right .small:before,
blockquote.pull-right footer:before,
blockquote.pull-right small:before {
    content: ''
}

.blockquote-reverse .small:after,
.blockquote-reverse footer:after,
.blockquote-reverse small:after,
blockquote.pull-right .small:after,
blockquote.pull-right footer:after,
blockquote.pull-right small:after {
    content: '\00A0 \2014'
}

address {
    font-style: normal;
    line-height: 1.42857
}

code,
kbd,
pre,
samp {
    font-family: Menlo, Monaco, Consolas, "Courier New", monospace
}

code {
    color: #c7254e;
    background-color: #f9f2f4;
    border-radius: 4px
}

kbd {
    color: #fff;
    background-color: #333;
    border-radius: 3px;
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25)
}

kbd kbd {
    padding: 0;
    font-size: 100%;
    box-shadow: none
}

pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: 13px;
    line-height: 1.42857;
    word-break: break-all;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px
}

.container-fluid:after,
.container-fluid:before,
.container:after,
.container:before,
.row:after,
.row:before {
    display: table;
    content: ""
}

.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto
}

pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    border-radius: 0
}

.btn,
.mfp-counter {
    white-space: nowrap
}

.pre-scrollable {
    overflow-y: scroll
}

.container:after {
    clear: both
}

@media (min-width:992px) {
    .container {
        width: 970px
    }
}

@media (min-width:1200px) {
    .container {
        width: 1170px
    }
}

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

.container-fluid:after {
    clear: both
}

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

.row:after {
    clear: both
}

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

.col-xs-1,
.col-xs-10,
.col-xs-11,
.col-xs-12,
.col-xs-2,
.col-xs-3,
.col-xs-4,
.col-xs-5,
.col-xs-6,
.col-xs-7,
.col-xs-8,
.col-xs-9 {
    float: left
}

.col-xs-1 {
    width: 8.33333%
}

.col-xs-2 {
    width: 16.66667%
}

.col-xs-3 {
    width: 25%
}

.col-xs-4 {
    width: 33.33333%
}

.col-xs-5 {
    width: 41.66667%
}

.col-xs-6 {
    width: 50%
}

.col-xs-7 {
    width: 58.33333%
}

.col-xs-8 {
    width: 66.66667%
}

.col-xs-9 {
    width: 75%
}

.col-xs-10 {
    width: 83.33333%
}

.col-xs-11 {
    width: 91.66667%
}

.col-xs-12 {
    width: 100%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-pull-1 {
    right: 8.33333%
}

.col-xs-pull-2 {
    right: 16.66667%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-4 {
    right: 33.33333%
}

.col-xs-pull-5 {
    right: 41.66667%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-7 {
    right: 58.33333%
}

.col-xs-pull-8 {
    right: 66.66667%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-10 {
    right: 83.33333%
}

.col-xs-pull-11 {
    right: 91.66667%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-push-1 {
    left: 8.33333%
}

.col-xs-push-2 {
    left: 16.66667%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-4 {
    left: 33.33333%
}

.col-xs-push-5 {
    left: 41.66667%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-7 {
    left: 58.33333%
}

.col-xs-push-8 {
    left: 66.66667%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-10 {
    left: 83.33333%
}

.col-xs-push-11 {
    left: 91.66667%
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-offset-0 {
    margin-left: 0
}

.col-xs-offset-1 {
    margin-left: 8.33333%
}

.col-xs-offset-2 {
    margin-left: 16.66667%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-4 {
    margin-left: 33.33333%
}

.col-xs-offset-5 {
    margin-left: 41.66667%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-7 {
    margin-left: 58.33333%
}

.col-xs-offset-8 {
    margin-left: 66.66667%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-10 {
    margin-left: 83.33333%
}

.col-xs-offset-11 {
    margin-left: 91.66667%
}

.col-xs-offset-12 {
    margin-left: 100%
}

@media (min-width:768px) {
    .col-sm-1,
    .col-sm-10,
    .col-sm-11,
    .col-sm-12,
    .col-sm-2,
    .col-sm-3,
    .col-sm-4,
    .col-sm-5,
    .col-sm-6,
    .col-sm-7,
    .col-sm-8,
    .col-sm-9 {
        float: left
    }
    .col-sm-1 {
        width: 8.33333%
    }
    .col-sm-2 {
        width: 16.66667%
    }
    .col-sm-3 {
        width: 25%
    }
    .col-sm-4 {
        width: 33.33333%
    }
    .col-sm-5 {
        width: 41.66667%
    }
    .col-sm-6 {
        width: 50%
    }
    .col-sm-7 {
        width: 58.33333%
    }
    .col-sm-8 {
        width: 66.66667%
    }
    .col-sm-9 {
        width: 75%
    }
    .col-sm-10 {
        width: 83.33333%
    }
    .col-sm-11 {
        width: 91.66667%
    }
    .col-sm-12 {
        width: 100%
    }
    .col-sm-pull-0 {
        right: auto
    }
    .col-sm-pull-1 {
        right: 8.33333%
    }
    .col-sm-pull-2 {
        right: 16.66667%
    }
    .col-sm-pull-3 {
        right: 25%
    }
    .col-sm-pull-4 {
        right: 33.33333%
    }
    .col-sm-pull-5 {
        right: 41.66667%
    }
    .col-sm-pull-6 {
        right: 50%
    }
    .col-sm-pull-7 {
        right: 58.33333%
    }
    .col-sm-pull-8 {
        right: 66.66667%
    }
    .col-sm-pull-9 {
        right: 75%
    }
    .col-sm-pull-10 {
        right: 83.33333%
    }
    .col-sm-pull-11 {
        right: 91.66667%
    }
    .col-sm-pull-12 {
        right: 100%
    }
    .col-sm-push-0 {
        left: auto
    }
    .col-sm-push-1 {
        left: 8.33333%
    }
    .col-sm-push-2 {
        left: 16.66667%
    }
    .col-sm-push-3 {
        left: 25%
    }
    .col-sm-push-4 {
        left: 33.33333%
    }
    .col-sm-push-5 {
        left: 41.66667%
    }
    .col-sm-push-6 {
        left: 50%
    }
    .col-sm-push-7 {
        left: 58.33333%
    }
    .col-sm-push-8 {
        left: 66.66667%
    }
    .col-sm-push-9 {
        left: 75%
    }
    .col-sm-push-10 {
        left: 83.33333%
    }
    .col-sm-push-11 {
        left: 91.66667%
    }
    .col-sm-push-12 {
        left: 100%
    }
    .col-sm-offset-0 {
        margin-left: 0
    }
    .col-sm-offset-1 {
        margin-left: 8.33333%
    }
    .col-sm-offset-2 {
        margin-left: 16.66667%
    }
    .col-sm-offset-3 {
        margin-left: 25%
    }
    .col-sm-offset-4 {
        margin-left: 33.33333%
    }
    .col-sm-offset-5 {
        margin-left: 41.66667%
    }
    .col-sm-offset-6 {
        margin-left: 50%
    }
    .col-sm-offset-7 {
        margin-left: 58.33333%
    }
    .col-sm-offset-8 {
        margin-left: 66.66667%
    }
    .col-sm-offset-9 {
        margin-left: 75%
    }
    .col-sm-offset-10 {
        margin-left: 83.33333%
    }
    .col-sm-offset-11 {
        margin-left: 91.66667%
    }
    .col-sm-offset-12 {
        margin-left: 100%
    }
}

@media (min-width:992px) {
    .col-md-1,
    .col-md-10,
    .col-md-11,
    .col-md-12,
    .col-md-2,
    .col-md-3,
    .col-md-4,
    .col-md-5,
    .col-md-6,
    .col-md-7,
    .col-md-8,
    .col-md-9 {
        float: left
    }
    .col-md-1 {
        width: 8.33333%
    }
    .col-md-2 {
        width: 16.66667%
    }
    .col-md-3 {
        width: 25%
    }
    .col-md-4 {
        width: 33.33333%
    }
    .col-md-5 {
        width: 41.66667%
    }
    .col-md-6 {
        width: 50%
    }
    .col-md-7 {
        width: 58.33333%
    }
    .col-md-8 {
        width: 66.66667%
    }
    .col-md-9 {
        width: 75%
    }
    .col-md-10 {
        width: 83.33333%
    }
    .col-md-11 {
        width: 91.66667%
    }
    .col-md-12 {
        width: 100%
    }
    .col-md-pull-0 {
        right: auto
    }
    .col-md-pull-1 {
        right: 8.33333%
    }
    .col-md-pull-2 {
        right: 16.66667%
    }
    .col-md-pull-3 {
        right: 25%
    }
    .col-md-pull-4 {
        right: 33.33333%
    }
    .col-md-pull-5 {
        right: 41.66667%
    }
    .col-md-pull-6 {
        right: 50%
    }
    .col-md-pull-7 {
        right: 58.33333%
    }
    .col-md-pull-8 {
        right: 66.66667%
    }
    .col-md-pull-9 {
        right: 75%
    }
    .col-md-pull-10 {
        right: 83.33333%
    }
    .col-md-pull-11 {
        right: 91.66667%
    }
    .col-md-pull-12 {
        right: 100%
    }
    .col-md-push-0 {
        left: auto
    }
    .col-md-push-1 {
        left: 8.33333%
    }
    .col-md-push-2 {
        left: 16.66667%
    }
    .col-md-push-3 {
        left: 25%
    }
    .col-md-push-4 {
        left: 33.33333%
    }
    .col-md-push-5 {
        left: 41.66667%
    }
    .col-md-push-6 {
        left: 50%
    }
    .col-md-push-7 {
        left: 58.33333%
    }
    .col-md-push-8 {
        left: 66.66667%
    }
    .col-md-push-9 {
        left: 75%
    }
    .col-md-push-10 {
        left: 83.33333%
    }
    .col-md-push-11 {
        left: 91.66667%
    }
    .col-md-push-12 {
        left: 100%
    }
    .col-md-offset-0 {
        margin-left: 0
    }
    .col-md-offset-1 {
        margin-left: 8.33333%
    }
    .col-md-offset-2 {
        margin-left: 16.66667%
    }
    .col-md-offset-3 {
        margin-left: 25%
    }
    .col-md-offset-4 {
        margin-left: 33.33333%
    }
    .col-md-offset-5 {
        margin-left: 41.66667%
    }
    .col-md-offset-6 {
        margin-left: 50%
    }
    .col-md-offset-7 {
        margin-left: 58.33333%
    }
    .col-md-offset-8 {
        margin-left: 66.66667%
    }
    .col-md-offset-9 {
        margin-left: 75%
    }
    .col-md-offset-10 {
        margin-left: 83.33333%
    }
    .col-md-offset-11 {
        margin-left: 91.66667%
    }
    .col-md-offset-12 {
        margin-left: 100%
    }
}

@media (min-width:1200px) {
    .col-lg-1,
    .col-lg-10,
    .col-lg-11,
    .col-lg-12,
    .col-lg-2,
    .col-lg-3,
    .col-lg-4,
    .col-lg-5,
    .col-lg-6,
    .col-lg-7,
    .col-lg-8,
    .col-lg-9 {
        float: left
    }
    .col-lg-1 {
        width: 8.33333%
    }
    .col-lg-2 {
        width: 16.66667%
    }
    .col-lg-3 {
        width: 25%
    }
    .col-lg-4 {
        width: 33.33333%
    }
    .col-lg-5 {
        width: 41.66667%
    }
    .col-lg-6 {
        width: 50%
    }
    .col-lg-7 {
        width: 58.33333%
    }
    .col-lg-8 {
        width: 66.66667%
    }
    .col-lg-9 {
        width: 75%
    }
    .col-lg-10 {
        width: 83.33333%
    }
    .col-lg-11 {
        width: 91.66667%
    }
    .col-lg-12 {
        width: 100%
    }
    .col-lg-pull-0 {
        right: auto
    }
    .col-lg-pull-1 {
        right: 8.33333%
    }
    .col-lg-pull-2 {
        right: 16.66667%
    }
    .col-lg-pull-3 {
        right: 25%
    }
    .col-lg-pull-4 {
        right: 33.33333%
    }
    .col-lg-pull-5 {
        right: 41.66667%
    }
    .col-lg-pull-6 {
        right: 50%
    }
    .col-lg-pull-7 {
        right: 58.33333%
    }
    .col-lg-pull-8 {
        right: 66.66667%
    }
    .col-lg-pull-9 {
        right: 75%
    }
    .col-lg-pull-10 {
        right: 83.33333%
    }
    .col-lg-pull-11 {
        right: 91.66667%
    }
    .col-lg-pull-12 {
        right: 100%
    }
    .col-lg-push-0 {
        left: auto
    }
    .col-lg-push-1 {
        left: 8.33333%
    }
    .col-lg-push-2 {
        left: 16.66667%
    }
    .col-lg-push-3 {
        left: 25%
    }
    .col-lg-push-4 {
        left: 33.33333%
    }
    .col-lg-push-5 {
        left: 41.66667%
    }
    .col-lg-push-6 {
        left: 50%
    }
    .col-lg-push-7 {
        left: 58.33333%
    }
    .col-lg-push-8 {
        left: 66.66667%
    }
    .col-lg-push-9 {
        left: 75%
    }
    .col-lg-push-10 {
        left: 83.33333%
    }
    .col-lg-push-11 {
        left: 91.66667%
    }
    .col-lg-push-12 {
        left: 100%
    }
    .col-lg-offset-0 {
        margin-left: 0
    }
    .col-lg-offset-1 {
        margin-left: 8.33333%
    }
    .col-lg-offset-2 {
        margin-left: 16.66667%
    }
    .col-lg-offset-3 {
        margin-left: 25%
    }
    .col-lg-offset-4 {
        margin-left: 33.33333%
    }
    .col-lg-offset-5 {
        margin-left: 41.66667%
    }
    .col-lg-offset-6 {
        margin-left: 50%
    }
    .col-lg-offset-7 {
        margin-left: 58.33333%
    }
    .col-lg-offset-8 {
        margin-left: 66.66667%
    }
    .col-lg-offset-9 {
        margin-left: 75%
    }
    .col-lg-offset-10 {
        margin-left: 83.33333%
    }
    .col-lg-offset-11 {
        margin-left: 91.66667%
    }
    .col-lg-offset-12 {
        margin-left: 100%
    }
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777
}

.table {
    width: 100%;
    margin-bottom: 20px
}

.table>tbody>tr>td,
.table>tbody>tr>th,
.table>tfoot>tr>td,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>thead>tr>th {
    padding: 8px;
    line-height: 1.42857;
    vertical-align: top;
    border-top: 1px solid #ddd
}

.table>thead>tr>th {
    vertical-align: bottom;
    border-bottom: 2px solid #ddd
}

.table>caption+thead>tr:first-child>td,
.table>caption+thead>tr:first-child>th,
.table>colgroup+thead>tr:first-child>td,
.table>colgroup+thead>tr:first-child>th,
.table>thead:first-child>tr:first-child>td,
.table>thead:first-child>tr:first-child>th {
    border-top: 0
}

.table>tbody+tbody {
    border-top: 2px solid #ddd
}

.table .table {
    background-color: #fff
}

.table-condensed>tbody>tr>td,
.table-condensed>tbody>tr>th,
.table-condensed>tfoot>tr>td,
.table-condensed>tfoot>tr>th,
.table-condensed>thead>tr>td,
.table-condensed>thead>tr>th {
    padding: 5px
}

.table-bordered,
.table-bordered>tbody>tr>td,
.table-bordered>tbody>tr>th,
.table-bordered>tfoot>tr>td,
.table-bordered>tfoot>tr>th,
.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border: 1px solid #ddd
}

.table-bordered>thead>tr>td,
.table-bordered>thead>tr>th {
    border-bottom-width: 2px
}

.table-striped>tbody>tr:nth-of-type(odd) {
    background-color: #f9f9f9
}

.table-hover>tbody>tr:hover,
.table>tbody>tr.active>td,
.table>tbody>tr.active>th,
.table>tbody>tr>td.active,
.table>tbody>tr>th.active,
.table>tfoot>tr.active>td,
.table>tfoot>tr.active>th,
.table>tfoot>tr>td.active,
.table>tfoot>tr>th.active,
.table>thead>tr.active>td,
.table>thead>tr.active>th,
.table>thead>tr>td.active,
.table>thead>tr>th.active {
    background-color: #f5f5f5
}

table col[class*=col-] {
    position: static;
    float: none;
    display: table-column
}

table td[class*=col-],
table th[class*=col-] {
    position: static;
    float: none;
    display: table-cell
}

.table-hover>tbody>tr.active:hover>td,
.table-hover>tbody>tr.active:hover>th,
.table-hover>tbody>tr:hover>.active,
.table-hover>tbody>tr>td.active:hover,
.table-hover>tbody>tr>th.active:hover {
    background-color: #e8e8e8
}

.table>tbody>tr.success>td,
.table>tbody>tr.success>th,
.table>tbody>tr>td.success,
.table>tbody>tr>th.success,
.table>tfoot>tr.success>td,
.table>tfoot>tr.success>th,
.table>tfoot>tr>td.success,
.table>tfoot>tr>th.success,
.table>thead>tr.success>td,
.table>thead>tr.success>th,
.table>thead>tr>td.success,
.table>thead>tr>th.success {
    background-color: #dff0d8
}

.table-hover>tbody>tr.success:hover>td,
.table-hover>tbody>tr.success:hover>th,
.table-hover>tbody>tr:hover>.success,
.table-hover>tbody>tr>td.success:hover,
.table-hover>tbody>tr>th.success:hover {
    background-color: #d0e9c6
}

.table>tbody>tr.info>td,
.table>tbody>tr.info>th,
.table>tbody>tr>td.info,
.table>tbody>tr>th.info,
.table>tfoot>tr.info>td,
.table>tfoot>tr.info>th,
.table>tfoot>tr>td.info,
.table>tfoot>tr>th.info,
.table>thead>tr.info>td,
.table>thead>tr.info>th,
.table>thead>tr>td.info,
.table>thead>tr>th.info {
    background-color: #d9edf7
}

.table-hover>tbody>tr.info:hover>td,
.table-hover>tbody>tr.info:hover>th,
.table-hover>tbody>tr:hover>.info,
.table-hover>tbody>tr>td.info:hover,
.table-hover>tbody>tr>th.info:hover {
    background-color: #c4e3f3
}

.table>tbody>tr.warning>td,
.table>tbody>tr.warning>th,
.table>tbody>tr>td.warning,
.table>tbody>tr>th.warning,
.table>tfoot>tr.warning>td,
.table>tfoot>tr.warning>th,
.table>tfoot>tr>td.warning,
.table>tfoot>tr>th.warning,
.table>thead>tr.warning>td,
.table>thead>tr.warning>th,
.table>thead>tr>td.warning,
.table>thead>tr>th.warning {
    background-color: #fcf8e3
}

.table-hover>tbody>tr.warning:hover>td,
.table-hover>tbody>tr.warning:hover>th,
.table-hover>tbody>tr:hover>.warning,
.table-hover>tbody>tr>td.warning:hover,
.table-hover>tbody>tr>th.warning:hover {
    background-color: #faf2cc
}

.table>tbody>tr.danger>td,
.table>tbody>tr.danger>th,
.table>tbody>tr>td.danger,
.table>tbody>tr>th.danger,
.table>tfoot>tr.danger>td,
.table>tfoot>tr.danger>th,
.table>tfoot>tr>td.danger,
.table>tfoot>tr>th.danger,
.table>thead>tr.danger>td,
.table>thead>tr.danger>th,
.table>thead>tr>td.danger,
.table>thead>tr>th.danger {
    background-color: #f2dede
}

.table-hover>tbody>tr.danger:hover>td,
.table-hover>tbody>tr.danger:hover>th,
.table-hover>tbody>tr:hover>.danger,
.table-hover>tbody>tr>td.danger:hover,
.table-hover>tbody>tr>th.danger:hover {
    background-color: #ebcccc
}

.table-responsive {
    overflow-x: auto;
    min-height: .01%
}

@media screen and (max-width:767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #ddd
    }
    .table-responsive>.table {
        margin-bottom: 0
    }
    .table-responsive>.table>tbody>tr>td,
    .table-responsive>.table>tbody>tr>th,
    .table-responsive>.table>tfoot>tr>td,
    .table-responsive>.table>tfoot>tr>th,
    .table-responsive>.table>thead>tr>td,
    .table-responsive>.table>thead>tr>th {
        white-space: nowrap
    }
    .table-responsive>.table-bordered {
        border: 0
    }
    .table-responsive>.table-bordered>tbody>tr>td:first-child,
    .table-responsive>.table-bordered>tbody>tr>th:first-child,
    .table-responsive>.table-bordered>tfoot>tr>td:first-child,
    .table-responsive>.table-bordered>tfoot>tr>th:first-child,
    .table-responsive>.table-bordered>thead>tr>td:first-child,
    .table-responsive>.table-bordered>thead>tr>th:first-child {
        border-left: 0
    }
    .table-responsive>.table-bordered>tbody>tr>td:last-child,
    .table-responsive>.table-bordered>tbody>tr>th:last-child,
    .table-responsive>.table-bordered>tfoot>tr>td:last-child,
    .table-responsive>.table-bordered>tfoot>tr>th:last-child,
    .table-responsive>.table-bordered>thead>tr>td:last-child,
    .table-responsive>.table-bordered>thead>tr>th:last-child {
        border-right: 0
    }
    .table-responsive>.table-bordered>tbody>tr:last-child>td,
    .table-responsive>.table-bordered>tbody>tr:last-child>th,
    .table-responsive>.table-bordered>tfoot>tr:last-child>td,
    .table-responsive>.table-bordered>tfoot>tr:last-child>th {
        border-bottom: 0
    }
}

fieldset,
legend {
    padding: 0;
    border: 0
}

fieldset {
    margin: 0;
    min-width: 0
}

legend {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    font-size: 21px;
    line-height: inherit;
    border-bottom: 1px solid #e5e5e5
}

label {
    display: inline-block;
    margin-bottom: 5px
}

input[type=search] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-appearance: none
}

input[type=checkbox],
input[type=radio] {
    margin: 4px 0 0;
    margin-top: 1px;
    line-height: normal
}

.form-control,
output {
    font-size: 14px;
    line-height: 1.42857;
    color: #555;
    display: block
}

input[type=file] {
    display: block
}

input[type=range] {
    display: block;
    width: 100%
}

select[multiple],
select[size] {
    height: auto
}

input[type=file]:focus,
input[type=checkbox]:focus,
input[type=radio]:focus {
    outline: dotted thin;
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px
}

output {
    padding-top: 7px
}

.form-control {
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6)
}

.form-control::-moz-placeholder {
    color: #999;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #999
}

.form-control::-webkit-input-placeholder {
    color: #999
}

.has-success .checkbox,
.has-success .checkbox-inline,
.has-success .control-label,
.has-success .form-control-feedback,
.has-success .help-block,
.has-success .radio,
.has-success .radio-inline,
.has-success.checkbox label,
.has-success.checkbox-inline label,
.has-success.radio label,
.has-success.radio-inline label {
    color: #3c763d
}

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

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

.form-control[disabled],
fieldset[disabled] .form-control {
    cursor: not-allowed
}

textarea.form-control {
    height: auto
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    input[type=date].form-control,
    input[type=time].form-control,
    input[type=datetime-local].form-control,
    input[type=month].form-control {
        line-height: 34px
    }
    .input-group-sm input[type=date],
    .input-group-sm input[type=time],
    .input-group-sm input[type=datetime-local],
    .input-group-sm input[type=month],
    input[type=date].input-sm,
    input[type=time].input-sm,
    input[type=datetime-local].input-sm,
    input[type=month].input-sm {
        line-height: 30px
    }
    .input-group-lg input[type=date],
    .input-group-lg input[type=time],
    .input-group-lg input[type=datetime-local],
    .input-group-lg input[type=month],
    input[type=date].input-lg,
    input[type=time].input-lg,
    input[type=datetime-local].input-lg,
    input[type=month].input-lg {
        line-height: 46px
    }
}

.form-group {
    margin-bottom: 15px
}

.checkbox,
.radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.checkbox label,
.radio label {
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

.checkbox input[type=checkbox],
.checkbox-inline input[type=checkbox],
.radio input[type=radio],
.radio-inline input[type=radio] {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px
}

.checkbox+.checkbox,
.radio+.radio {
    margin-top: -5px
}

.checkbox-inline,
.radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    vertical-align: middle;
    font-weight: 400;
    cursor: pointer
}

.checkbox-inline+.checkbox-inline,
.radio-inline+.radio-inline {
    margin-top: 0;
    margin-left: 10px
}

.checkbox-inline.disabled,
.checkbox.disabled label,
.radio-inline.disabled,
.radio.disabled label,
fieldset[disabled] .checkbox label,
fieldset[disabled] .checkbox-inline,
fieldset[disabled] .radio label,
fieldset[disabled] .radio-inline,
fieldset[disabled] input[type=checkbox],
fieldset[disabled] input[type=radio],
input[type=checkbox].disabled,
input[type=checkbox][disabled],
input[type=radio].disabled,
input[type=radio][disabled] {
    cursor: not-allowed
}

.form-control-static {
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0;
    min-height: 34px
}

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

.form-group-sm .form-control,
.input-sm {
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px
}

.input-sm {
    height: 30px;
    line-height: 1.5
}

select.input-sm {
    height: 30px;
    line-height: 30px
}

select[multiple].input-sm,
textarea.input-sm {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    line-height: 1.5
}

.form-group-lg .form-control,
.input-lg {
    border-radius: 6px;
    padding: 10px 16px;
    font-size: 18px
}

.form-group-sm select.form-control {
    height: 30px;
    line-height: 30px
}

.form-group-sm select[multiple].form-control,
.form-group-sm textarea.form-control {
    height: auto
}

.form-group-sm .form-control-static {
    height: 30px;
    min-height: 32px;
    padding: 6px 10px;
    font-size: 12px;
    line-height: 1.5
}

.input-lg {
    height: 46px;
    line-height: 1.33333
}

select.input-lg {
    height: 46px;
    line-height: 46px
}

select[multiple].input-lg,
textarea.input-lg {
    height: auto
}

.form-group-lg .form-control {
    height: 46px;
    line-height: 1.33333
}

.form-group-lg select.form-control {
    height: 46px;
    line-height: 46px
}

.form-group-lg select[multiple].form-control,
.form-group-lg textarea.form-control {
    height: auto
}

.form-group-lg .form-control-static {
    height: 46px;
    min-height: 38px;
    padding: 11px 16px;
    font-size: 18px;
    line-height: 1.33333
}

.has-feedback {
    position: relative
}

.has-feedback .form-control {
    padding-right: 42.5px
}

.form-control-feedback {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 2;
    display: block;
    width: 34px;
    height: 34px;
    line-height: 34px;
    text-align: center;
    pointer-events: none
}

.form-group-lg .form-control+.form-control-feedback,
.input-group-lg+.form-control-feedback,
.input-lg+.form-control-feedback {
    width: 46px;
    height: 46px;
    line-height: 46px
}

.form-group-sm .form-control+.form-control-feedback,
.input-group-sm+.form-control-feedback,
.input-sm+.form-control-feedback {
    width: 30px;
    height: 30px;
    line-height: 30px
}

.has-success .form-control {
    border-color: #3c763d;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-success .form-control:focus {
    border-color: #2b542c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #67b168
}

.has-success .input-group-addon {
    color: #3c763d;
    border-color: #3c763d;
    background-color: #dff0d8
}

.has-warning .checkbox,
.has-warning .checkbox-inline,
.has-warning .control-label,
.has-warning .form-control-feedback,
.has-warning .help-block,
.has-warning .radio,
.has-warning .radio-inline,
.has-warning.checkbox label,
.has-warning.checkbox-inline label,
.has-warning.radio label,
.has-warning.radio-inline label {
    color: #8a6d3b
}

.has-warning .form-control {
    border-color: #8a6d3b;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-warning .form-control:focus {
    border-color: #66512c;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #c0a16b
}

.has-warning .input-group-addon {
    color: #8a6d3b;
    border-color: #8a6d3b;
    background-color: #fcf8e3
}

.has-error .checkbox,
.has-error .checkbox-inline,
.has-error .control-label,
.has-error .form-control-feedback,
.has-error .help-block,
.has-error .radio,
.has-error .radio-inline,
.has-error.checkbox label,
.has-error.checkbox-inline label,
.has-error.radio label,
.has-error.radio-inline label {
    color: #a94442
}

.has-error .form-control {
    border-color: #a94442;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075)
}

.has-error .form-control:focus {
    border-color: #843534;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 6px #ce8483
}

.has-error .input-group-addon {
    color: #a94442;
    border-color: #a94442;
    background-color: #f2dede
}

.has-feedback label~.form-control-feedback {
    top: 25px
}

.has-feedback label.sr-only~.form-control-feedback {
    top: 0
}

.help-block {
    display: block;
    margin-top: 5px;
    margin-bottom: 10px;
    color: #737373
}

.btn,
.nav {
    margin-bottom: 0
}

@media (min-width:768px) {
    .form-inline .form-control-static,
    .form-inline .form-group {
        display: inline-block
    }
    .form-inline .control-label,
    .form-inline .form-group {
        margin-bottom: 0;
        vertical-align: middle
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }
    .form-inline .input-group {
        display: inline-table;
        vertical-align: middle
    }
    .form-inline .input-group .form-control,
    .form-inline .input-group .input-group-addon,
    .form-inline .input-group .input-group-btn {
        width: auto
    }
    .form-inline .input-group>.form-control {
        width: 100%
    }
    .form-inline .checkbox,
    .form-inline .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }
    .form-inline .checkbox label,
    .form-inline .radio label {
        padding-left: 0
    }
    .form-inline .checkbox input[type=checkbox],
    .form-inline .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }
    .form-inline .has-feedback .form-control-feedback {
        top: 0
    }
    .form-horizontal .control-label {
        text-align: right;
        margin-bottom: 0;
        padding-top: 7px
    }
}

.btn-block,
.nav-justified,
.nav-tabs.nav-justified,
input[type=button].btn-block,
input[type=reset].btn-block,
input[type=submit].btn-block {
    width: 100%
}

.form-horizontal .checkbox,
.form-horizontal .checkbox-inline,
.form-horizontal .radio,
.form-horizontal .radio-inline {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 7px
}

.form-horizontal .checkbox,
.form-horizontal .radio {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-left: -15px;
    margin-right: -15px
}

.form-horizontal .form-group:after,
.form-horizontal .form-group:before {
    content: "";
    display: table
}

.form-horizontal .form-group:after {
    clear: both
}

.btn,
.fa-fw,
.fa-li,
.fa-stack-1x,
.fa-stack-2x,
.mfp-container {
    text-align: center
}

.form-horizontal .has-feedback .form-control-feedback {
    right: 15px
}

@media (min-width:768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px
    }
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857;
    border-radius: 4px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: dotted thin;
    outline: -webkit-focus-ring-color auto 5px;
    outline-offset: -2px
}

.btn.focus,
.btn:focus,
.btn:hover {
    color: #333;
    text-decoration: none
}

.btn.active,
.btn:active {
    outline: 0;
    -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125);
    box-shadow: inset 0 3px 5px rgba(0, 0, 0, .125)
}

.btn.disabled,
.btn[disabled],
fieldset[disabled] .btn {
    cursor: not-allowed;
    opacity: .65;
    filter: alpha(opacity=65);
    -webkit-box-shadow: none;
    box-shadow: none
}

a.btn.disabled,
fieldset[disabled] a.btn {
    pointer-events: none
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc
}

.btn-default.focus,
.btn-default:focus {
    color: #333;
    background-color: #e6e6e6;
    border-color: #8c8c8c
}

.btn-default.active,
.btn-default:active,
.btn-default:hover,
.open>.btn-default.dropdown-toggle {
    color: #333;
    background-color: #e6e6e6;
    border-color: #adadad
}

.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open>.btn-default.dropdown-toggle.focus,
.open>.btn-default.dropdown-toggle:focus,
.open>.btn-default.dropdown-toggle:hover {
    color: #333;
    background-color: #d4d4d4;
    border-color: #8c8c8c
}

.btn-default.disabled.focus,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled].focus,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
    background-color: #fff;
    border-color: #ccc
}

.btn-default .badge {
    color: #fff;
    background-color: #333
}

.btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary.focus,
.btn-primary:focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40
}

.btn-primary.active,
.btn-primary:active,
.btn-primary:hover,
.open>.btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #286090;
    border-color: #204d74
}

.btn-primary.active.focus,
.btn-primary.active:focus,
.btn-primary.active:hover,
.btn-primary:active.focus,
.btn-primary:active:focus,
.btn-primary:active:hover,
.open>.btn-primary.dropdown-toggle.focus,
.open>.btn-primary.dropdown-toggle:focus,
.open>.btn-primary.dropdown-toggle:hover {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40
}

.btn-primary.active,
.btn-primary:active,
.open>.btn-primary.dropdown-toggle {
    background-image: none
}

.btn-primary.disabled.focus,
.btn-primary.disabled:focus,
.btn-primary.disabled:hover,
.btn-primary[disabled].focus,
.btn-primary[disabled]:focus,
.btn-primary[disabled]:hover,
fieldset[disabled] .btn-primary.focus,
fieldset[disabled] .btn-primary:focus,
fieldset[disabled] .btn-primary:hover {
    background-color: #337ab7;
    border-color: #2e6da4
}

.btn-primary .badge {
    color: #337ab7;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success.focus,
.btn-success:focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625
}

.btn-success.active,
.btn-success:active,
.btn-success:hover,
.open>.btn-success.dropdown-toggle {
    color: #fff;
    background-color: #449d44;
    border-color: #398439
}

.btn-success.active.focus,
.btn-success.active:focus,
.btn-success.active:hover,
.btn-success:active.focus,
.btn-success:active:focus,
.btn-success:active:hover,
.open>.btn-success.dropdown-toggle.focus,
.open>.btn-success.dropdown-toggle:focus,
.open>.btn-success.dropdown-toggle:hover {
    color: #fff;
    background-color: #398439;
    border-color: #255625
}

.btn-success.disabled.focus,
.btn-success.disabled:focus,
.btn-success.disabled:hover,
.btn-success[disabled].focus,
.btn-success[disabled]:focus,
.btn-success[disabled]:hover,
fieldset[disabled] .btn-success.focus,
fieldset[disabled] .btn-success:focus,
fieldset[disabled] .btn-success:hover {
    background-color: #5cb85c;
    border-color: #4cae4c
}

.btn-success .badge {
    color: #5cb85c;
    background-color: #fff
}

.btn-info {
    color: #fff;
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info.focus,
.btn-info:focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85
}

.btn-info.active,
.btn-info:active,
.btn-info:hover,
.open>.btn-info.dropdown-toggle {
    color: #fff;
    background-color: #31b0d5;
    border-color: #269abc
}

.btn-info.active.focus,
.btn-info.active:focus,
.btn-info.active:hover,
.btn-info:active.focus,
.btn-info:active:focus,
.btn-info:active:hover,
.open>.btn-info.dropdown-toggle.focus,
.open>.btn-info.dropdown-toggle:focus,
.open>.btn-info.dropdown-toggle:hover {
    color: #fff;
    background-color: #269abc;
    border-color: #1b6d85
}

.btn-info.disabled.focus,
.btn-info.disabled:focus,
.btn-info.disabled:hover,
.btn-info[disabled].focus,
.btn-info[disabled]:focus,
.btn-info[disabled]:hover,
fieldset[disabled] .btn-info.focus,
fieldset[disabled] .btn-info:focus,
fieldset[disabled] .btn-info:hover {
    background-color: #5bc0de;
    border-color: #46b8da
}

.btn-info .badge {
    color: #5bc0de;
    background-color: #fff
}

.btn-warning {
    color: #fff;
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning.focus,
.btn-warning:focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d
}

.btn-warning.active,
.btn-warning:active,
.btn-warning:hover,
.open>.btn-warning.dropdown-toggle {
    color: #fff;
    background-color: #ec971f;
    border-color: #d58512
}

.btn-warning.active.focus,
.btn-warning.active:focus,
.btn-warning.active:hover,
.btn-warning:active.focus,
.btn-warning:active:focus,
.btn-warning:active:hover,
.open>.btn-warning.dropdown-toggle.focus,
.open>.btn-warning.dropdown-toggle:focus,
.open>.btn-warning.dropdown-toggle:hover {
    color: #fff;
    background-color: #d58512;
    border-color: #985f0d
}

.btn-warning.disabled.focus,
.btn-warning.disabled:focus,
.btn-warning.disabled:hover,
.btn-warning[disabled].focus,
.btn-warning[disabled]:focus,
.btn-warning[disabled]:hover,
fieldset[disabled] .btn-warning.focus,
fieldset[disabled] .btn-warning:focus,
fieldset[disabled] .btn-warning:hover {
    background-color: #f0ad4e;
    border-color: #eea236
}

.btn-warning .badge {
    color: #f0ad4e;
    background-color: #fff
}

.btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger.focus,
.btn-danger:focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19
}

.btn-danger.active,
.btn-danger:active,
.btn-danger:hover,
.open>.btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #c9302c;
    border-color: #ac2925
}

.btn-danger.active.focus,
.btn-danger.active:focus,
.btn-danger.active:hover,
.btn-danger:active.focus,
.btn-danger:active:focus,
.btn-danger:active:hover,
.open>.btn-danger.dropdown-toggle.focus,
.open>.btn-danger.dropdown-toggle:focus,
.open>.btn-danger.dropdown-toggle:hover {
    color: #fff;
    background-color: #ac2925;
    border-color: #761c19
}

.btn-danger.disabled.focus,
.btn-danger.disabled:focus,
.btn-danger.disabled:hover,
.btn-danger[disabled].focus,
.btn-danger[disabled]:focus,
.btn-danger[disabled]:hover,
fieldset[disabled] .btn-danger.focus,
fieldset[disabled] .btn-danger:focus,
fieldset[disabled] .btn-danger:hover {
    background-color: #d9534f;
    border-color: #d43f3a
}

.btn-danger .badge {
    color: #d9534f;
    background-color: #fff
}

.btn-link {
    color: #337ab7;
    font-weight: 400;
    border-radius: 0
}

.btn-link,
.btn-link.active,
.btn-link:active,
.btn-link[disabled],
fieldset[disabled] .btn-link {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn-link,
.btn-link:active,
.btn-link:focus,
.btn-link:hover {
    border-color: transparent
}

.btn-link:focus,
.btn-link:hover {
    color: #23527c;
    text-decoration: underline;
    background-color: transparent
}

.mfp-close,
.nav>li.disabled>a:focus,
.nav>li.disabled>a:hover,
.nav>li>a:focus,
.nav>li>a:hover,
.navbar-brand:focus,
.navbar-brand:hover,
.navigation .width-navigation .inner-navigation a:hover,
a:active,
a:focus,
a:hover,
input:focus,
textarea:focus {
    text-decoration: none
}

.btn-link[disabled]:focus,
.btn-link[disabled]:hover,
fieldset[disabled] .btn-link:focus,
fieldset[disabled] .btn-link:hover {
    color: #777;
    text-decoration: none
}

.btn-lg {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.33333;
    border-radius: 6px
}

.btn-sm,
.btn-xs {
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.btn-sm {
    padding: 5px 10px
}

.btn-xs {
    padding: 1px 5px
}

.btn-block {
    display: block
}

.btn-block+.btn-block {
    margin-top: 5px
}

.nav {
    padding-left: 0;
    list-style: none
}

.nav:after,
.nav:before {
    content: "";
    display: table
}

.nav>li,
.nav>li>a {
    display: block;
    position: relative
}

.nav:after {
    clear: both
}

.nav>li>a {
    padding: 10px 15px
}

.nav>li>a:focus,
.nav>li>a:hover {
    background-color: #eee
}

.nav>li.disabled>a {
    color: #777
}

.nav>li.disabled>a:focus,
.nav>li.disabled>a:hover {
    color: #777;
    background-color: transparent;
    cursor: not-allowed
}

.nav .open>a,
.nav .open>a:focus,
.nav .open>a:hover {
    background-color: #eee;
    border-color: #337ab7
}

.nav .nav-divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.nav>li>a>img {
    max-width: none
}

.nav-tabs {
    border-bottom: 1px solid #ddd
}

.nav-tabs>li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs>li>a {
    margin-right: 2px;
    line-height: 1.42857;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0
}

.nav-tabs>li>a:hover {
    border-color: #eee #eee #ddd
}

.nav-tabs>li.active>a,
.nav-tabs>li.active>a:focus,
.nav-tabs>li.active>a:hover {
    color: #555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent;
    cursor: default
}

.nav-pills>li {
    float: left
}

.nav-justified>li,
.nav-stacked>li,
.nav-tabs.nav-justified>li {
    float: none
}

.nav-pills>li>a {
    border-radius: 4px
}

.nav-pills>li+li {
    margin-left: 2px
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    color: #fff;
    background-color: #337ab7
}

.nav-stacked>li+li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified>li>a,
.nav-tabs.nav-justified>li>a {
    text-align: center;
    margin-bottom: 5px
}

.nav-justified>.dropdown .dropdown-menu {
    top: auto;
    left: auto
}

.nav-tabs-justified,
.nav-tabs.nav-justified {
    border-bottom: 0
}

.nav-tabs-justified>li>a,
.nav-tabs.nav-justified>li>a {
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs-justified>.active>a,
.nav-tabs-justified>.active>a:focus,
.nav-tabs-justified>.active>a:hover,
.nav-tabs.nav-justified>.active>a,
.nav-tabs.nav-justified>.active>a:focus,
.nav-tabs.nav-justified>.active>a:hover {
    border: 1px solid #ddd
}

@media (min-width:768px) {
    .nav-justified>li,
    .nav-tabs.nav-justified>li {
        display: table-cell;
        width: 1%
    }
    .nav-justified>li>a,
    .nav-tabs.nav-justified>li>a {
        margin-bottom: 0
    }
    .nav-tabs-justified>li>a,
    .nav-tabs.nav-justified>li>a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }
    .nav-tabs-justified>.active>a,
    .nav-tabs-justified>.active>a:focus,
    .nav-tabs-justified>.active>a:hover,
    .nav-tabs.nav-justified>.active>a,
    .nav-tabs.nav-justified>.active>a:focus,
    .nav-tabs.nav-justified>.active>a:hover {
        border-bottom-color: #fff
    }
}

.tab-content>.tab-pane {
    display: none
}

.tab-content>.active {
    display: block
}

.navbar-collapse:after,
.navbar-collapse:before,
.navbar-header:after,
.navbar-header:before,
.navbar:after,
.navbar:before {
    content: "";
    display: table
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent
}

.navbar:after {
    clear: both
}

.navbar-header:after {
    clear: both
}

.navbar-collapse {
    overflow-x: visible;
    padding-right: 15px;
    padding-left: 15px;
    border-top: 1px solid transparent;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1);
    -webkit-overflow-scrolling: touch
}

.navbar-collapse:after {
    clear: both
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (max-device-width:480px) and (orientation:landscape) {
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse {
        max-height: 200px
    }
}

.container-fluid>.navbar-collapse,
.container-fluid>.navbar-header,
.container>.navbar-collapse,
.container>.navbar-header {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width:768px) {
    .navbar {
        border-radius: 4px
    }
    .navbar-header {
        float: left
    }
    .navbar-collapse {
        width: auto;
        border-top: 0;
        box-shadow: none
    }
    .navbar-collapse.collapse {
        display: block!important;
        height: auto!important;
        padding-bottom: 0;
        overflow: visible!important
    }
    .navbar-collapse.in {
        overflow-y: visible
    }
    .navbar-fixed-bottom .navbar-collapse,
    .navbar-fixed-top .navbar-collapse,
    .navbar-static-top .navbar-collapse {
        padding-left: 0;
        padding-right: 0
    }
    .container-fluid>.navbar-collapse,
    .container-fluid>.navbar-header,
    .container>.navbar-collapse,
    .container>.navbar-header {
        margin-right: 0;
        margin-left: 0
    }
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

.navbar-fixed-bottom,
.navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

.navbar-fixed-top {
    top: 0;
    border-width: 0 0 1px
}

.navbar-fixed-bottom {
    bottom: 0;
    margin-bottom: 0;
    border-width: 1px 0 0
}

.navbar-brand {
    float: left;
    padding: 15px;
    font-size: 18px;
    line-height: 20px;
    height: 50px
}

.navbar-brand>img {
    display: block
}

@media (min-width:768px) {
    .navbar-fixed-bottom,
    .navbar-fixed-top {
        border-radius: 0
    }
    .navbar>.container .navbar-brand,
    .navbar>.container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    margin-right: 15px;
    padding: 9px 10px;
    margin-top: 8px;
    margin-bottom: 8px;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 4px
}

.navbar-toggle:focus {
    outline: 0
}

.navbar-toggle .icon-bar {
    display: block;
    width: 22px;
    height: 2px;
    border-radius: 1px
}

.navbar-toggle .icon-bar+.icon-bar {
    margin-top: 4px
}

.navbar-nav {
    margin: 7.5px -15px
}

.navbar-nav>li>a {
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px
}

@media (max-width:767px) {
    .navbar-nav .open .dropdown-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0;
        background-color: transparent;
        border: 0;
        box-shadow: none
    }
    .navbar-nav .open .dropdown-menu .dropdown-header,
    .navbar-nav .open .dropdown-menu>li>a {
        padding: 5px 15px 5px 25px
    }
    .navbar-nav .open .dropdown-menu>li>a {
        line-height: 20px
    }
    .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-nav .open .dropdown-menu>li>a:hover {
        background-image: none
    }
}

@media (min-width:768px) {
    .navbar-toggle {
        display: none
    }
    .navbar-nav {
        float: left;
        margin: 0
    }
    .navbar-nav>li {
        float: left
    }
    .navbar-nav>li>a {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

.navbar-form {
    padding: 10px 15px;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .1), 0 1px 0 rgba(255, 255, 255, .1);
    margin: 8px -15px
}

@media (min-width:768px) {
    .navbar-form .form-control-static,
    .navbar-form .form-group {
        display: inline-block
    }
    .navbar-form .control-label,
    .navbar-form .form-group {
        margin-bottom: 0;
        vertical-align: middle
    }
    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }
    .navbar-form .input-group {
        display: inline-table;
        vertical-align: middle
    }
    .navbar-form .input-group .form-control,
    .navbar-form .input-group .input-group-addon,
    .navbar-form .input-group .input-group-btn {
        width: auto
    }
    .navbar-form .input-group>.form-control {
        width: 100%
    }
    .navbar-form .checkbox,
    .navbar-form .radio {
        display: inline-block;
        margin-top: 0;
        margin-bottom: 0;
        vertical-align: middle
    }
    .navbar-form .checkbox label,
    .navbar-form .radio label {
        padding-left: 0
    }
    .navbar-form .checkbox input[type=checkbox],
    .navbar-form .radio input[type=radio] {
        position: relative;
        margin-left: 0
    }
    .navbar-form .has-feedback .form-control-feedback {
        top: 0
    }
    .navbar-form {
        width: auto;
        border: 0;
        margin-left: 0;
        margin-right: 0;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none
    }
}

.fa,
.fa-stack {
    display: inline-block
}

@media (max-width:767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }
    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

.navbar-nav>li>.dropdown-menu {
    margin-top: 0;
    border-top-right-radius: 0;
    border-top-left-radius: 0
}

.navbar-fixed-bottom .navbar-nav>li>.dropdown-menu {
    margin-bottom: 0;
    border-radius: 4px 4px 0 0
}

.navbar-btn {
    margin-top: 8px;
    margin-bottom: 8px
}

.navbar-btn.btn-sm {
    margin-top: 10px;
    margin-bottom: 10px
}

.navbar-btn.btn-xs {
    margin-top: 14px;
    margin-bottom: 14px
}

.navbar-text {
    margin-top: 15px;
    margin-bottom: 15px
}

@media (min-width:768px) {
    .navbar-text {
        float: left;
        margin-left: 15px;
        margin-right: 15px
    }
    .navbar-left {
        float: left!important
    }
    .navbar-right {
        float: right!important;
        margin-right: -15px
    }
    .navbar-right~.navbar-right {
        margin-right: 0
    }
}

.fa.fa-pull-left,
.fa.pull-left {
    margin-right: .3em
}

.navbar-default {
    background-color: #f8f8f8;
    border-color: #e7e7e7
}

.navbar-default .navbar-brand {
    color: #777
}

.navbar-default .navbar-brand:focus,
.navbar-default .navbar-brand:hover {
    color: #5e5e5e;
    background-color: transparent
}

.navbar-default .navbar-nav>li>a,
.navbar-default .navbar-text {
    color: #777
}

.navbar-default .navbar-nav>li>a:focus,
.navbar-default .navbar-nav>li>a:hover {
    color: #333;
    background-color: transparent
}

.navbar-default .navbar-nav>.active>a,
.navbar-default .navbar-nav>.active>a:focus,
.navbar-default .navbar-nav>.active>a:hover {
    color: #555;
    background-color: #e7e7e7
}

.navbar-default .navbar-nav>.disabled>a,
.navbar-default .navbar-nav>.disabled>a:focus,
.navbar-default .navbar-nav>.disabled>a:hover {
    color: #ccc;
    background-color: transparent
}

.navbar-default .navbar-toggle {
    border-color: #ddd
}

.navbar-default .navbar-toggle:focus,
.navbar-default .navbar-toggle:hover {
    background-color: #ddd
}

.navbar-default .navbar-toggle .icon-bar {
    background-color: #888
}

.navbar-default .navbar-collapse,
.navbar-default .navbar-form {
    border-color: #e7e7e7
}

.navbar-default .navbar-nav>.open>a,
.navbar-default .navbar-nav>.open>a:focus,
.navbar-default .navbar-nav>.open>a:hover {
    background-color: #e7e7e7;
    color: #555
}

@media (max-width:767px) {
    .navbar-default .navbar-nav .open .dropdown-menu>li>a {
        color: #777
    }
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #333;
        background-color: transparent
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #555;
        background-color: #e7e7e7
    }
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #ccc;
        background-color: transparent
    }
}

.navbar-default .navbar-link {
    color: #777
}

.navbar-default .navbar-link:hover {
    color: #333
}

.navbar-default .btn-link {
    color: #777
}

.navbar-default .btn-link:focus,
.navbar-default .btn-link:hover {
    color: #333
}

.navbar-default .btn-link[disabled]:focus,
.navbar-default .btn-link[disabled]:hover,
fieldset[disabled] .navbar-default .btn-link:focus,
fieldset[disabled] .navbar-default .btn-link:hover {
    color: #ccc
}

.navbar-inverse {
    background-color: #222;
    border-color: #090909
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:focus,
.navbar-inverse .navbar-brand:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav>li>a,
.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav>li>a:focus,
.navbar-inverse .navbar-nav>li>a:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-nav>.active>a,
.navbar-inverse .navbar-nav>.active>a:focus,
.navbar-inverse .navbar-nav>.active>a:hover {
    color: #fff;
    background-color: #090909
}

.navbar-inverse .navbar-nav>.disabled>a,
.navbar-inverse .navbar-nav>.disabled>a:focus,
.navbar-inverse .navbar-nav>.disabled>a:hover {
    color: #444;
    background-color: transparent
}

.navbar-inverse .navbar-toggle {
    border-color: #333
}

.navbar-inverse .navbar-toggle:focus,
.navbar-inverse .navbar-toggle:hover {
    background-color: #333
}

.navbar-inverse .navbar-toggle .icon-bar {
    background-color: #fff
}

.navbar-inverse .navbar-collapse,
.navbar-inverse .navbar-form {
    border-color: #101010
}

.navbar-inverse .navbar-nav>.open>a,
.navbar-inverse .navbar-nav>.open>a:focus,
.navbar-inverse .navbar-nav>.open>a:hover {
    background-color: #090909;
    color: #fff
}

@media (max-width:767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header {
        border-color: #090909
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #090909
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a {
        color: #9d9d9d
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover {
        color: #fff;
        background-color: transparent
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover {
        color: #fff;
        background-color: #090909
    }
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,
    .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover {
        color: #444;
        background-color: transparent
    }
}

.navbar-inverse .navbar-link {
    color: #9d9d9d
}

.navbar-inverse .navbar-link:hover {
    color: #fff
}

.navbar-inverse .btn-link {
    color: #9d9d9d
}

.navbar-inverse .btn-link:focus,
.navbar-inverse .btn-link:hover {
    color: #fff
}

.navbar-inverse .btn-link[disabled]:focus,
.navbar-inverse .btn-link[disabled]:hover,
fieldset[disabled] .navbar-inverse .btn-link:focus,
fieldset[disabled] .navbar-inverse .btn-link:hover {
    color: #444
}


/* @font-face {
    font-family: FontAwesome;
    src: url(//www.midas.ac.in/wp-content/themes/university-wp-org/assets/fonts/awesome/fontawesome-webfont.eot?v=4.5.0);
    src: url(//www.midas.ac.in/wp-content/themes/university-wp-org/assets/fonts/awesome/fontawesome-webfont.eot?#iefix&v=4.5.0) format("embedded-opentype"), url(//www.midas.ac.in/wp-content/themes/university-wp-org/assets/fonts/awesome/fontawesome-webfont.woff2?v=4.5.0) format("woff2"), url(//www.midas.ac.in/wp-content/themes/university-wp-org/assets/fonts/awesome/fontawesome-webfont.woff?v=4.5.0) format("woff"), url(//www.midas.ac.in/wp-content/themes/university-wp-org/assets/fonts/awesome/fontawesome-webfont.ttf?v=4.5.0) format("truetype"), url(//www.midas.ac.in/wp-content/themes/university-wp-org/assets/fonts/awesome/fontawesome-webfont.svg?v=4.5.0#fontawesomeregular) format("svg");
    font-weight: 400;
    font-style: normal
} */

.fa {
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale
}

.fa-lg {
    font-size: 1.33333em;
    line-height: .75em;
    vertical-align: -15%
}

.fa-stack,
.mfp-container:before,
.mfp-content,
.table-cell {
    vertical-align: middle
}

.fa-2x {
    font-size: 2em
}

.fa-3x {
    font-size: 3em
}

.fa-4x {
    font-size: 4em
}

.fa-5x {
    font-size: 5em
}

.fa-fw {
    width: 1.28571em
}

.fa-ul {
    padding-left: 0;
    margin-left: 2.14286em;
    list-style-type: none
}

.fa.fa-pull-right,
.fa.pull-right {
    margin-left: .3em
}

.fa-ul>li {
    position: relative
}

.fa-li {
    position: absolute;
    left: -2.14286em;
    width: 2.14286em;
    top: .14286em
}

.fa-li.fa-lg {
    left: -1.85714em
}

.fa-border {
    padding: .2em .25em .15em;
    border: .08em solid #eee;
    border-radius: .1em
}

.fa-pull-left {
    float: left
}

.fa-pull-right {
    float: right
}

.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8)
}

@-webkit-keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

@keyframes fa-spin {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }
    100% {
        -webkit-transform: rotate(359deg);
        transform: rotate(359deg)
    }
}

.fa-rotate-90 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=1);
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg)
}

.fa-rotate-180 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg)
}

.fa-rotate-270 {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=3);
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg)
}

.fa-flip-horizontal {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=0);
    -webkit-transform: scale(-1, 1);
    -ms-transform: scale(-1, 1);
    transform: scale(-1, 1)
}

.fa-flip-vertical {
    filter: progid: DXImageTransform.Microsoft.BasicImage(rotation=2);
    -webkit-transform: scale(1, -1);
    -ms-transform: scale(1, -1);
    transform: scale(1, -1)
}

 :root .fa-flip-horizontal,
 :root .fa-flip-vertical,
 :root .fa-rotate-180,
 :root .fa-rotate-270,
 :root .fa-rotate-90 {
    filter: none
}

.fa-stack {
    position: relative;
    width: 2em;
    height: 2em;
    line-height: 2em
}

.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%
}

.mfp-bg,
.mfp-wrap {
    position: fixed;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%
}

.fa-stack-1x {
    line-height: inherit
}

.fa-stack-2x {
    font-size: 2em
}

.fa-inverse {
    color: #fff
}

.mfp-arrow:after,
.mfp-arrow:before,
.mfp-container:before,
.mfp-figure:after {
    content: ''
}

.mfp-bg {
    z-index: 1042;
    overflow: hidden;
    background: #0b0b0b;
    opacity: .8
}

.mfp-wrap {
    z-index: 1043;
    outline: 0!important
}

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

.mfp-container:before {
    display: inline-block;
    height: 100%
}

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

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

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

.mfp-ajax-cur {
    cursor: progress
}

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

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

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

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

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

.mfp-hide {
    display: none!important
}

.mfp-preloader {
    color: #ccc;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -.8em;
    left: 8px;
    right: 8px;
    z-index: 1044
}

.mfp-preloader a {
    color: #ccc
}

.mfp-close,
.mfp-preloader a:hover {
    color: #fff
}

.mfp-s-error .mfp-content,
.mfp-s-ready .mfp-preloader {
    display: none
}

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

.content-pusher.boxed-area,
.gallery-item {
    overflow: hidden
}

.mfp-figure:after,
.mfp-iframe-scaler iframe {
    box-shadow: 0 0 8px rgba(0, 0, 0, .6);
    position: absolute;
    left: 0
}

button::-moz-focus-inner {
    padding: 0;
    border: 0
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    opacity: .65;
    padding: 0 0 18px 10px;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace
}

.mfp-close:focus,
.mfp-close:hover {
    opacity: 1
}

.mfp-close:active {
    top: 1px
}

.mfp-close-btn-in .mfp-close {
    color: #333
}

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

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

.mfp-figure,
img.mfp-img {
    line-height: 0
}

.mfp-arrow {
    position: absolute;
    opacity: .65;
    margin: -55px 0 0;
    top: 50%;
    padding: 0;
    width: 90px;
    height: 110px
}

.gallery-item:hover .gallery-caption,
.mfp-arrow:focus,
.mfp-arrow:hover {
    opacity: 1
}

.mfp-arrow:active {
    margin-top: -54px
}

.mfp-arrow:after,
.mfp-arrow:before {
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: inset transparent
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: .7
}

.mfp-arrow-left {
    left: 0
}

.mfp-arrow-left:after {
    border-right: 17px solid #fff;
    margin-left: 31px
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3f3f3f
}

.mfp-arrow-right {
    right: 0
}

.mfp-arrow-right:after {
    border-left: 17px solid #fff;
    margin-left: 39px
}

.mfp-arrow-right:before {
    border-left: 27px solid #3f3f3f
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px
}

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

.mfp-iframe-holder .mfp-close {
    top: -40px
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%
}

.mfp-iframe-scaler iframe {
    display: block;
    top: 0;
    width: 100%;
    height: 100%;
    background: #000
}

.mfp-figure:after,
img.mfp-img {
    width: auto;
    height: auto;
    display: block
}

img.mfp-img {
    box-sizing: border-box;
    padding: 40px 0;
    margin: 0 auto
}

.mfp-figure:after {
    top: 40px;
    bottom: 40px;
    right: 0;
    z-index: -1;
    background: #444
}

.gallery-caption:before,
.gallery:after {
    content: ""
}

.mfp-figure small {
    color: #bdbdbd;
    display: block;
    font-size: 12px;
    line-height: 14px
}

.mfp-figure figure {
    margin: 0
}

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

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #f3f3f3;
    padding-right: 36px
}

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

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

.content-pusher.boxed-area,
.content-pusher.boxed-area header.site-header {
    max-width: 1200px;
    margin: 0 auto
}

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

.blog-content:after,
.clear-after,
.page-content article .content-inner .entry-content .entry-tag-share:after {
    clear: both;
    content: "";
    display: block
}

.screen-reader-text {
    display: none
}

.box-shadow .boxed-area {
    box-shadow: 0 0 32px rgba(0, 0, 0, .23)
}

.gallery-columns-1 .gallery-item,
img {
    max-width: 100%
}

* {
    margin: 0;
    padding: 0
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: inherit
}

.gallery-caption,
.wp-caption-text {
    -webkit-box-sizing: border-box;
    font-size: 12px;
    line-height: 1.5
}

p {
    margin-bottom: 20px
}

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

hr {
    border: none;
    background: rgba(0, 0, 0, .1);
    height: 1px;
    margin: 20px 0
}

code {
    white-space: normal
}

.clear {
    clear: both
}

mark {
    background-color: #ff0;
    color: #000
}

.alert {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px
}

a:focus,
input:focus,
textarea:focus {
    outline: 0;
    box-shadow: none
}

.post.sticky .content-inner {
    border-bottom: none!important
}

.post.sticky .entry-content {
    padding: 30px 15px;
    background: rgba(0, 0, 0, .04);
    -webkit-box-shadow: 0 0 0 1px rgba(0, 0, 0, .09);
    -moz-box-shadow: 0 0 0 1px rgba(0, 0, 0, .09);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .09)
}

.alignleft {
    float: left
}

.alignright {
    float: right
}

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

@media (max-width:767px) {
    .alignleft,
    .alignright {
        float: none
    }
}

img {
    height: auto
}

blockquote.alignleft,
img.alignleft {
    margin: 7px 24px 7px 0
}

.wp-caption.alignleft {
    margin: 7px 14px 7px 0
}

blockquote.alignright,
img.alignright {
    margin: 7px 0 7px 24px
}

.wp-caption.alignright {
    margin: 7px 0 7px 14px
}

.wp-caption-text {
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    font-style: italic;
    margin: 9px 0;
    padding-right: 10px
}

.gallery {
    margin-bottom: 20px
}

.gallery-item {
    display: inline-block;
    margin: 0 4px 4px 0;
    position: relative
}

.gallery-columns-2 .gallery-item {
    max-width: 48%;
    max-width: -webkit-calc(50% - 4px);
    max-width: calc(50% - 4px)
}

.gallery-columns-3 .gallery-item {
    max-width: 32%;
    max-width: -webkit-calc(33.3% - 4px);
    max-width: calc(33.3% - 4px)
}

.gallery-columns-4 .gallery-item {
    max-width: 23%;
    max-width: -webkit-calc(25% - 4px);
    max-width: calc(25% - 4px)
}

.gallery-columns-5 .gallery-item {
    max-width: 19%;
    max-width: -webkit-calc(20% - 4px);
    max-width: calc(20% - 4px)
}

.gallery-columns-6 .gallery-item {
    max-width: 15%;
    max-width: -webkit-calc(16.7% - 4px);
    max-width: calc(16.7% - 4px)
}

.gallery-columns-7 .gallery-item {
    max-width: 13%;
    max-width: -webkit-calc(14.28% - 4px);
    max-width: calc(14.28% - 4px)
}

.gallery-columns-8 .gallery-item {
    max-width: 11%;
    max-width: -webkit-calc(12.5% - 4px);
    max-width: calc(12.5% - 4px)
}

.gallery-columns-9 .gallery-item {
    max-width: 9%;
    max-width: -webkit-calc(11.1% - 4px);
    max-width: calc(11.1% - 4px)
}

.gallery-columns-1 .gallery-item:nth-of-type(1n),
.gallery-columns-2 .gallery-item:nth-of-type(2n),
.gallery-columns-3 .gallery-item:nth-of-type(3n),
.gallery-columns-4 .gallery-item:nth-of-type(4n),
.gallery-columns-5 .gallery-item:nth-of-type(5n),
.gallery-columns-6 .gallery-item:nth-of-type(6n),
.gallery-columns-7 .gallery-item:nth-of-type(7n),
.gallery-columns-8 .gallery-item:nth-of-type(8n),
.gallery-columns-9 .gallery-item:nth-of-type(9n) {
    margin-right: 0
}

.gallery-columns-1.gallery-size-medium figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-1.gallery-size-thumbnail figure.gallery-item:nth-of-type(1n+1),
.gallery-columns-2.gallery-size-thumbnail figure.gallery-item:nth-of-type(2n+1),
.gallery-columns-3.gallery-size-thumbnail figure.gallery-item:nth-of-type(3n+1) {
    clear: left
}

.gallery-caption {
    background-color: rgba(0, 0, 0, .7);
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #fff;
    margin: 0;
    max-height: 50%;
    padding: 6px 8px;
    position: absolute;
    bottom: 0;
    left: 0;
    text-align: left;
    width: 100%
}

.gallery-caption:before {
    height: 100%;
    min-height: 49px;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%
}

.gallery-columns-7 .gallery-caption,
.gallery-columns-8 .gallery-caption,
.gallery-columns-9 .gallery-caption {
    display: none
}

.gallery:after {
    display: block;
    clear: both
}

.hidden,
.hide {
    display: none!important
}

.bypostauthor>article .fn:before {
    content: "\f408";
    margin: 0 2px 0 -2px;
    position: relative;
    top: -1px
}

dd,
table {
    margin-bottom: 24px
}

ol,
ul {
    margin-left: 25px
}

ol {
    list-style: decimal;
    margin-left: 15px
}

ul.square {
    list-style: square
}

ul.circle {
    list-style: circle
}

ol ol,
ol ul,
ul ol,
ul ul {
    margin: 4px 0 5px 30px
}

ol ol li,
ol ul li,
ul ol li,
ul ul li {
    margin-bottom: 6px
}

td,
th {
    padding: 4px 6px
}

table,
td,
tr {
    border: 1px solid #ccc
}

td,
th {
    border-width: 0 1px 1px 0
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%
}

caption,
td,
th {
    font-weight: 400;
    text-align: left
}

th {
    font-weight: 700
}

.breadcrumb {
    background: 0 0
}

figure {
    max-width: 100%
}

.hidden {
    visibility: hidden!important
}

.show {
    display: block!important
}

.invisible {
    visibility: hidden
}

.pull-right {
    float: right!important
}

.pull-left {
    float: left!important
}

header#masthead .mobile-logo,
header#masthead .retina-logo {
    display: none
}

@media (-webkit-min-device-pixel-ratio:2),
(min--moz-device-pixel-ratio:2),
(-o-min-device-pixel-ratio:2/1),
(min-device-pixel-ratio:2),
(min-resolution:192dpi),
(min-resolution:2dppx) {
    header#masthead.has-retina-logo .no-sticky-logo {
        width: 180px;
        max-width: 180px;
        display: inline-block!important
    }
    header#masthead.has-retina-logo .logo,
    header#masthead.has-retina-logo .mobile-logo,
    header#masthead.has-retina-logo .sticky-logo img {
        display: none!important
    }
    header#masthead.has-retina-logo .retina-logo {
        display: inline-block!important
    }
}

header#masthead .header-v1 {
    padding-top: 5px;
    padding-bottom: 5px;
    position: relative;
    z-index: 999
}

header#masthead .header-v1 #primary-menu>li:first-child>a {
    padding-left: 0
}

header#masthead .header-v1 .header-right {
    float: right;
    padding-top: 7px
}

header#masthead .header-v1 .tm-table {
    width: 100%
}

header#masthead.menu-hidden .search-form {
    display: none!important
}

@media (max-width:768px) {
    body.responsive #primary-menu,
    body.responsive .content-pusher.mobile-menu-open .navigation .menu-mobile-effect,
    body.responsive .content-pusher.mobile-menu-open .navigation-top .menu-mobile-effect {
        display: none
    }
    body.responsive .mobile-menu-container ul,
    body.responsive .mobile-menu-container ul li {
        float: none
    }
    body.responsive .content-pusher {
        overflow: hidden
    }
    body.responsive .content-pusher.mobile-menu-open .mobile-menu-container .menu-mobile-effect {
        position: relative;
        top: 25px;
        right: 0
    }
    body.responsive .content-pusher.mobile-menu-open .mobile-menu-container .menu-mobile-effect .icon-bar {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
        top: 13px
    }
    body.responsive .content-pusher.mobile-menu-open .mobile-menu-container .menu-mobile-effect .icon-bar:nth-child(2) {
        filter: alpha(opacity=0);
        -ms-filter: "alpha(opacity=0)";
        -webkit-opacity: 0;
        -khtml-opacity: 0;
        -moz-opacity: 0;
        -ms-opacity: 0;
        -o-opacity: 0;
        opacity: 0
    }
    body.responsive .content-pusher.mobile-menu-open .mobile-menu-container .menu-mobile-effect .icon-bar:nth-child(3) {
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
        top: 13px
    }
    body.responsive .content-pusher.creative-left.mobile-menu-open .menu-mobile-effect.navbar-toggle {
        right: 0;
        left: auto
    }
    body.responsive .content-pusher.creative-left .menu-mobile-effect.navbar-toggle {
        left: 15px
    }
    body.responsive .content-pusher.creative-left .mobile-menu-container {
        -webkit-transform: translate(-270px);
        -moz-transform: translate(-270px);
        -ms-transform: translate(-270px);
        -o-transform: translate(-270px);
        left: 0
    }
    body.responsive .content-pusher.creative-right .menu-mobile-effect.navbar-toggle {
        right: 0
    }
    body.responsive .content-pusher.creative-right .mobile-menu-container {
        right: 0;
        -webkit-transform: translate(100%, 0);
        -moz-transform: translate(100%, 0);
        -ms-transform: translate(100%, 0);
        -o-transform: translate(100%, 0)
    }
    body.responsive .content-pusher.mobile-menu-open.content-pusher:after {
        filter: alpha(opacity=100);
        -ms-filter: "alpha(opacity=100)";
        -webkit-opacity: 1;
        -khtml-opacity: 1;
        -moz-opacity: 1;
        -ms-opacity: 1;
        -o-opacity: 1;
        opacity: 1
    }
    body.responsive .content-pusher.mobile-menu-open.content-pusher .mobile-menu-container ul.sub-menu li a {
        font-size: 13px
    }
    body.responsive .content-pusher.mobile-menu-open .mobile-effect.mobile-menu-container {
        visibility: visible;
        box-shadow: 0 1px 5px -2px rgba(42, 42, 42, .4);
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0)
    }
    body.responsive .mobile-menu-container {
        position: fixed;
        visibility: hidden;
        top: 0;
        bottom: 0;
        z-index: 99999;
        width: 270px;
        height: 100%;
        overflow: auto;
        -webkit-transition: all .5s;
        -khtml-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s
    }
    body.responsive .mobile-menu-container span.icon-toggle {
        cursor: pointer
    }
    body.responsive .mobile-menu-container>.nav {
        margin-top: 15px;
        padding-left: 5px;
        padding-right: 5px
    }
    body.responsive .mobile-menu-container ul.navbar-nav {
        margin: 0
    }
    body.responsive .mobile-menu-container ul.sub-menu {
        background-image: none!important;
        margin-top: 0;
        margin-bottom: 0;
        overflow: hidden;
        display: none
    }
    body.responsive .mobile-menu-container ul li.current-menu-parent ul.sub-menu,
    body.responsive .mobile-menu-container ul.sub-menu li ul {
        display: block
    }
    body.responsive .mobile-menu-container ul li.disable_link {
        margin-left: 20px
    }
    body.responsive .mobile-menu-container ul li .icon-toggle {
        position: absolute;
        right: 0;
        width: 32px;
        height: 32px;
        top: 8px
    }
    body.responsive .mobile-menu-container ul li .icon-toggle:after,
    body.responsive .mobile-menu-container ul li .icon-toggle:before {
        display: none
    }
    body.responsive .mobile-menu-container ul li .icon-toggle .fa {
        vertical-align: middle
    }
    body.responsive .mobile-menu-container ul li a {
        display: block;
        outline: 0;
        -webkit-transition: background .3s, box-shadow .3s;
        transition: background .3s, box-shadow .3s
    }
    body.responsive .mobile-menu-container ul li a:focus,
    body.responsive .mobile-menu-container ul li a:hover {
        background: 0 0
    }
    body.responsive .mobile-menu-container .menu-right {
        padding: 0 15px;
        margin-top: 20px
    }
    body.responsive .mobile-menu-container .menu-right .button_search {
        display: none
    }
    body.responsive .mobile-menu-container .header-right {
        margin-top: 30px
    }
    body.responsive .mobile-menu-container .header-right ul {
        margin: 0;
        padding: 0 15px
    }
    body.responsive .mobile-menu-container .header-right ul .header-info {
        margin: 0 0 20px
    }
    body.responsive .mobile-menu-container .header-right ul .header-info .info-2 {
        color: #fff;
        font-size: 14px
    }
    body.responsive.admin-bar .mobile-menu-container {
        padding-top: 50px
    }
    body.responsive .content-pusher {
        right: 0;
        position: relative;
        -webkit-transition: all .5s;
        -khtml-transition: all .5s;
        -moz-transition: all .5s;
        -ms-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        height: 100%
    }
    body.responsive .menu-mobile-effect.navbar-toggle {
        cursor: pointer;
        float: right;
        display: inline-block;
        z-index: 1;
        vertical-align: middle;
        width: 40px;
        height: 40px;
        padding: 0;
        position: absolute;
        top: 50%;
        margin: -20px 0 0;
        background: #222;
        border-radius: 0
    }
    body.responsive .menu-mobile-effect.navbar-toggle span.icon-bar {
        width: 22px;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
        position: absolute;
        left: 0;
        right: 0;
        margin: 0 auto;
        top: 11px;
        -webkit-transition: all .3s ease-in-out;
        -khtml-transition: all .3s ease-in-out;
        -moz-transition: all .3s ease-in-out;
        -ms-transition: all .3s ease-in-out;
        -o-transition: all .3s ease-in-out;
        transition: all .3s ease-in-out
    }
    body.responsive .menu-mobile-effect.navbar-toggle span.icon-bar:nth-child(2) {
        top: 18px
    }
    body.responsive .menu-mobile-effect.navbar-toggle span.icon-bar:nth-child(3) {
        top: 25px
    }
}

#masthead.affix.menu-hidden .navigation,
#masthead.sticky-header.no-transition.affix .navigation {
    -webkit-transform: translate(0, -100%);
    -moz-transform: translate(0, -100%);
    -ms-transform: translate(0, -100%);
    -o-transform: translate(0, -100%)
}

#masthead,
#masthead.affix-top {
    -khtml-transition: all ease-out .3s
}

@media (min-width:769px) {
    .mobile-menu-container {
        display: none
    }
}

#masthead {
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-transition: all ease-out .3s;
    -moz-transition: all ease-out .3s;
    -ms-transition: all ease-out .3s;
    -o-transition: all ease-out .3s;
    transition: all ease-out .3s
}

.tm-table {
    display: table;
    table-layout: fixed
}

.table-cell {
    display: table-cell
}

.navigation {
    background: #f77930;
    background: -moz-linear-gradient(top, #f77930 0%, #d54e01 100%);
    background: -webkit-linear-gradient(top, #f77930 0%, #d54e01 100%);
    background: linear-gradient(to bottom, #f77930 0%, #d54e01 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f77930', endColorstr='#d54e01', GradientType=0)
}

.navigation .tm-table {
    width: 100%
}

.navigation .width-navigation {
    width: 100%;
    float: left
}

.navigation .width-navigation ul li {
    list-style: none;
    display: inline-block;
    vertical-align: middle
}

.navigation .width-navigation .inner-navigation {
    width: 100%;
    position: relative;
    min-height: 70px
}

.navigation .width-navigation .inner-navigation .navbar {
    border: none;
    padding: 0 20px 0 0;
    text-align: right;
    min-height: inherit;
    float: left;
    margin: 0
}

.navigation .width-navigation .inner-navigation .navbar>li.menu-item {
    float: none;
    padding: 0 15px
}

.navigation .width-navigation .inner-navigation .navbar>li.menu-item span.icon-toggle {
    margin-left: 4px;
    display: inline-block;
    font-size: 14px!important;
    padding: 10px 0
}

.navigation .width-navigation .inner-navigation .navbar>li.menu-item>a {
    /* text-transform: uppercase; */
    display: inline-block
}

.navigation .width-navigation .inner-navigation .navbar>li.menu-item>a,
.navigation .width-navigation .inner-navigation .navbar>li.menu-item>span {
    float: left
}

.navigation .width-navigation .inner-navigation .navbar>li.menu-item>ul.sub-menu {
    left: 0;
    top: 100%
}

.navigation .width-navigation .inner-navigation .navbar li a {
    padding: 10px 0;
    display: block
}

.navigation .width-navigation .inner-navigation .navbar li:first-child {
    padding-left: 0
}

.navigation .width-navigation .inner-navigation .menu ul {
    border: none;
    padding: 0 20px 0 0;
    text-align: right;
    min-height: inherit;
    float: left;
    margin: 0
}

.navigation .width-navigation .inner-navigation .menu ul>li.menu-item {
    float: left;
    padding: 0 25px
}

.navigation .width-navigation .inner-navigation .menu ul>li.menu-item span.icon-toggle {
    margin-left: 4px;
    display: inline-block;
    font-size: 14px!important;
    padding: 20px 0
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .mega-menu .menu-megamenu li ul,
.navigation .width-navigation .inner-navigation .menu ul li {
    margin: 0
}

.navigation .width-navigation .inner-navigation .menu ul>li.menu-item>a {
    text-transform: uppercase;
    display: inline-block
}

.navigation .width-navigation .inner-navigation .menu ul>li.menu-item>a,
.navigation .width-navigation .inner-navigation .menu ul>li.menu-item>span {
    float: left
}

.navigation .width-navigation .inner-navigation .menu ul>li.menu-item>ul.sub-menu {
    left: 0;
    top: 100%
}

.navigation .width-navigation .inner-navigation .menu ul li a {
    padding: 20px 0;
    display: block;
    text-transform: uppercase
}

.navigation .width-navigation .inner-navigation .menu ul li:first-child {
    padding-left: 0
}

.navigation .width-navigation .inner-navigation .menu-right {
    margin-bottom: 0;
    float: right;
    position: absolute
}

.navigation .width-navigation .inner-navigation .menu-right .button_search {
    height: 70px;
    line-height: 70px;
    float: right;
    color: #333;
    font-size: 14px;
    cursor: pointer
}

.navigation .width-navigation .inner-navigation .menu-right .search-form {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    z-index: 99;
    display: none;
    line-height: normal
}

.navigation .width-navigation .inner-navigation .menu-right .search-form:after {
    color: #333
}

.navigation .width-navigation .inner-navigation .menu-right .search-form:hover:after {
    color: #439fdf
}

#masthead.header-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999
}

#masthead.header-default {
    position: relative
}

#masthead.no-affix-top .no-sticky-logo {
    display: none
}

#masthead.affix-top .width-logo .no-sticky-logo,
#masthead.no-affix-top .sticky-logo {
    display: block
}

#masthead.affix-top {
    background-color: transparent;
    -webkit-transition: all ease-out .3s;
    -moz-transition: all ease-out .3s;
    -ms-transition: all ease-out .3s;
    -o-transition: all ease-out .3s;
    transition: all ease-out .3s
}

#masthead.affix .width-logo .no-sticky-logo,
#masthead.affix-top .width-logo .sticky-logo {
    display: none
}

#masthead.sticky-header .navigation {
    position: static;
    left: 0;
    right: 0;
    z-index: 99999
}

#masthead.sticky-header.no-transition.affix .navigation,
#masthead.sticky-header.no-transition.affix-top.menu-show .navigation {
    -webkit-transition: none;
    -khtml-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none
}

#masthead.affix {
    -webkit-transition: all .4s;
    -khtml-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s
}

#masthead.affix .navigation {
    z-index: 9999;
    position: fixed;
    width: 100%;
    -webkit-transition: all .4s;
    -khtml-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    transition: all .4s;
    padding-bottom: 0;
    background-color: #eee
}

#masthead.affix .width-logo .sticky-logo {
    display: block
}

.navigation .width-navigation .inner-navigation .navbar>li .sub-menu li a {
    border-bottom: 1px solid #ddd
}

@media (min-width:769px) {
    .navigation .width-logo a:hover {
        text-decoration: none
    }
    .navigation .width-logo a img {
        -webkit-transition: all ease-out .3s;
        -khtml-transition: all ease-out .3s;
        -moz-transition: all ease-out .3s;
        -ms-transition: all ease-out .3s;
        -o-transition: all ease-out .3s;
        transition: all ease-out .3s
    }
    .navigation .width-navigation .inner-navigation {
        display: table;
        float: none;
        text-align: center
    }
    .navigation .width-navigation .inner-navigation .navbar {
        display: table-cell;
        vertical-align: middle;
        width: auto;
        float: none
    }
    .navigation .width-navigation .inner-navigation .navbar>li {
        position: relative
    }
    .navigation .width-navigation .inner-navigation .navbar>li .sub-menu {
        min-width: 195px;
        position: absolute;
        top: auto;
        right: 0;
        display: none;
        z-index: 999;
        padding: 0;
        margin: 0;
        background-color: #fff;
        box-shadow: 0 2px 3px rgba(0, 0, 0, .09);
        -moz-box-shadow: 0 2px 3px rgba(0, 0, 0, .09);
        -o-box-shadow: 0 2px 3px rgba(0, 0, 0, .09);
        -ms-box-shadow: 0 2px 3px rgba(0, 0, 0, .09)
    }
    .navigation .width-navigation .inner-navigation .navbar>li .sub-menu li {
        width: 100%;
        text-align: left;
        position: relative
    }
    .navigation .width-navigation .inner-navigation .navbar>li .sub-menu li:last-child:after {
        display: none
    }
    .navigation .width-navigation .inner-navigation .navbar>li .sub-menu li a {
        color: #3a3a3a;
        padding: 5px 12px;
        font-size: 15px
    }
    .navigation .width-navigation .inner-navigation .navbar>li .sub-menu li>.sub-menu {
        top: 0;
        right: 100%
    }
    .navigation .width-navigation .inner-navigation .menu-right {
        display: table-cell;
        right: 0
    }
    .navigation .width-navigation .inner-navigation .menu-right section {
        display: table-cell;
        vertical-align: middle
    }
    .navigation .width-navigation .inner-navigation .menu-right .list-links {
        margin-bottom: 0
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper .mega-menu .menu-item.hide-on-desktop {
        display: none
    }
}

.content-pusher {
    position: relative;
    left: 0;
    z-index: 99;
    height: 100%
}

#wrapper-container {
    overflow: hidden
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary li.menu-item a[class^=dashicons]:before {
    font-family: dashicons
}

@media (min-width:601px) {
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-1-of-1 {
        width: 100%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-1-of-2 {
        width: 50%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-2-of-2 {
        width: 100%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-1-of-3 {
        width: 33.33333%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-2-of-3 {
        width: 66.66667%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-3-of-3 {
        width: 100%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-1-of-4 {
        width: 25%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-2-of-4 {
        width: 50%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-3-of-4 {
        width: 75%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-4-of-4 {
        width: 100%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-1-of-5 {
        width: 20%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-2-of-5 {
        width: 40%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-3-of-5 {
        width: 60%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-4-of-5 {
        width: 80%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-5-of-5 {
        width: 100%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-1-of-6 {
        width: 16.66667%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-2-of-6 {
        width: 33.33333%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-3-of-6 {
        width: 50%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-4-of-6 {
        width: 66.66667%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-5-of-6 {
        width: 83.33333%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-6-of-6 {
        width: 100%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-1-of-7 {
        width: 14.28571%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-2-of-7 {
        width: 28.57143%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-3-of-7 {
        width: 42.85714%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-4-of-7 {
        width: 57.14286%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-5-of-7 {
        width: 71.42857%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-6-of-7 {
        width: 85.71429%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-7-of-7 {
        width: 100%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-1-of-8 {
        width: 12.5%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-2-of-8 {
        width: 25%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-3-of-8 {
        width: 37.5%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-4-of-8 {
        width: 50%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-5-of-8 {
        width: 62.5%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-6-of-8 {
        width: 75%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-7-of-8 {
        width: 87.5%
    }
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary>li.menu-megamenu>ul.sub-menu li.menu-columns-8-of-8 {
        width: 100%
    }
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary li.menu-flyout.align-bottom-right {
    text-align: right
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper #mega-menu-primary li.menu-flyout.item-align-right>.sub-menu {
    left: auto;
    right: 0
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .mega-menu {
    float: left;
    position: static
}

@media (min-width:769px) {
    .navigation .width-navigation .inner-navigation .mega-menu-wrapper .mega-menu .menu-megamenu {
        position: static
    }
}

.header-info,
.navigation .tm-table {
    position: relative
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .mega-menu .menu-megamenu li {
    vertical-align: top
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .mega-menu .menu-megamenu li a {
    padding: 14px 0
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .mega-menu .menu-megamenu li ul li {
    padding: 0
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .mega-menu .menu-megamenu li:after {
    left: 0;
    right: 0;
    bottom: 0
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .mega-menu .menu-megamenu .sub-menu>li:after {
    display: none
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .menu-right {
    float: left
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .menu-right>.widget .btn-book:before {
    top: -15px;
    bottom: -10px
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .menu-right>.widget .btn-book .inner-bottom {
    bottom: -20px
}

.navigation .width-navigation .inner-navigation .mega-menu-wrapper .menu-right>.widget.widget_shopping_cart .widget_shopping_cart_content {
    top: 57px
}

@media (max-width:768px) {
    .mega-menu .menu-item.hide-sub-menu-on-mobile .icon-toggle,
    .mega-menu .menu-item.hide-sub-menu-on-mobile .mega-sub-menu {
        visibility: hidden;
        display: none
    }
}

.mega-menu .widget_products img {
    max-width: 60px
}

.header-info {
    padding-left: 38px;
    list-style: none;
    float: left;
    margin-right: 35px
}

.header-info:last-child {
    margin: 0
}

.header-info:before {
    content: "\f0e0";
    font-family: FontAwesome;
    width: 30px;
    height: 30px;
    line-height: 28px;
    background: #fff;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    float: left;
    position: absolute;
    top: 0;
    left: 0
}

.header-info.phone:before {
    content: "\f095"
}

.header-info.counsel-code:before {
    content: "\f00c"
}

.header-info .info-1 {
    font-size: 16px;
    color: #000;
    letter-spacing: 0;
    font-style: italic;
    margin: 0;
    line-height: 1;
    font-weight: 700
}

.header-info .info-2 {
    font-family: Montserrat;
    font-size: 16px;
    color: #f77930;
    letter-spacing: 0;
    margin: 0;
    font-weight: 700
}

.header-info .info-2 a {
    color: #333
}

.widget_thim_recent_posts ul {
    margin: 0
}

.widget_thim_recent_posts ul li {
    margin-bottom: 40px;
    display: inline-block;
    padding: 0 0 0 130px;
    position: relative;
    min-height: 100px
}

.widget_thim_recent_posts ul li:last-child {
    margin: 0
}

.widget_thim_recent_posts ul li.no-thumbnail {
    padding: 0
}

.widget_thim_recent_posts ul li .post_thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100px;
    overflow: hidden
}

.widget_thim_recent_posts ul li .post_thumbnail img {
    -webkit-transition: all 1s;
    -khtml-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.widget_thim_featured_posts ul li .title a,
.widget_thim_recent_posts ul li .title a {
    font-weight: 700;
    text-transform: none;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    -khtml-transition: all .5s
}

.widget_thim_recent_posts ul li .post_thumbnail:hover img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1)
}

.widget_thim_recent_posts ul li .title {
    margin: 0;
    line-height: 24px;
    font-size: 14px
}

.widget_thim_recent_posts ul li .title a {
    font-size: 14px;
    color: #333;
    line-height: 24px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.widget_thim_recent_posts ul li .time {
    margin-top: 20px;
    font-size: 12px;
    font-style: italic;
    color: #666;
    font-weight: 700
}

.widget_thim_featured_posts ul {
    margin: 0
}

.widget_thim_featured_posts ul li {
    margin-bottom: 30px;
    display: inline-block;
    padding: 0 0 0 90px;
    position: relative;
    min-height: 70px;
    width: 100%
}

.widget_thim_featured_posts ul li:last-child {
    margin: 0
}

.widget_thim_featured_posts ul li.no-thumbnail {
    padding: 0
}

.widget_thim_featured_posts ul li .post_thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 70px;
    overflow: hidden
}

.widget_thim_featured_posts ul li .post_thumbnail img {
    -webkit-transition: all 1s;
    -khtml-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.widget_thim_featured_posts ul li .post_thumbnail img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1)
}

.widget_thim_featured_posts ul li .title {
    margin: 0;
    line-height: 18px;
    font-size: 14px
}

.widget_thim_featured_posts ul li .title a {
    font-size: 14px;
    color: #fff;
    line-height: 18px;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    transition: all .5s
}

.list-link li,
.list-link li a {
    line-height: 28px;
    width: 100%;
    float: left;
    display: inline-block
}

.widget_thim_featured_posts ul li .time {
    margin-top: 11px;
    font-size: 13px;
    font-style: italic;
    color: #ddd;
    font-weight: 400
}

.list-link {
    margin: 0;
    list-style: none;
    overflow: hidden
}

.list-link li {
    margin-bottom: 15px
}

.list-link li:last-child {
    margin-bottom: 0
}

.list-link li a {
    font-weight: 700;
    font-size: 18px;
    color: #666
}

.list-link li a:before {
    content: "\f0da";
    font-family: FontAwesome;
    margin-right: 20px;
    font-weight: 400;
    font-size: 14px
}

.list-link.style-2 li a {
    font-size: 16px;
    font-weight: 400
}

.list-link.style-2 li a:before {
    color: #333;
    margin-right: 9px
}

.thim-tweets .tweet-item {
    margin-bottom: 37px;
    position: relative;
    padding-left: 37px
}

.thim-tweets .tweet-item:before {
    content: "\f099";
    font-family: FontAwesome;
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #68adef
}

.thim-tweets .tweet-item:last-child {
    margin: 0
}

.thim-tweets .tweet-item .content {
    line-height: 26px
}

#ctf .ctf-item {
    padding: 0;
    margin-bottom: 35px;
    border: none;
    position: relative;
    top: -7px
}

#ctf .ctf-item:last-child {
    margin: 0
}

#ctf .ctf-item .ctf-author-box {
    clear: none;
    position: relative;
    top: 7px
}

#ctf .ctf-item .ctf-tweet-content {
    clear: none;
    float: right;
    width: calc(100% - 45px);
    width: -webkit-calc(100% - 45px);
    width: -moz-calc(100% - 45px)
}

.widget_thim_gallery .row {
    margin-right: -7.5px;
    margin-left: -7.5px
}

.widget_thim_gallery .row .item {
    margin-bottom: 15px;
    padding: 0 7.5px;
    position: relative;
    overflow: hidden
}

.widget_thim_gallery .style-2 .row .fancybox,
.widget_thim_gallery .style-2 .row .item {
    margin: 0;
    padding: 0
}

.widget_thim_gallery .row .item:after {
    content: "";
    position: absolute;
    top: 0;
    left: 7.5px;
    right: 7.5px;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    background: rgba(0, 0, 0, .5);
    pointer-events: none;
    cursor: pointer;
    -webkit-transition: all .5s;
    -khtml-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.widget_thim_gallery .row .item:hover:after {
    opacity: 1;
    visibility: visible
}

.widget_thim_gallery .row .fancybox {
    overflow: hidden;
    position: relative;
    width: 100%;
    float: left
}

.widget_thim_gallery .row .fancybox img {
    width: 100%;
    height: auto;
    -webkit-transition: all 1s;
    -khtml-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.widget_thim_gallery .style-2 .row {
    margin: 0
}

.widget_thim_gallery .style-2 .row .item:after {
    left: 0;
    right: 0;
    opacity: 1;
    visibility: visible
}

.widget_thim_gallery .style-2 .row .item:hover:after {
    opacity: 0;
    visibility: hidden
}

.thim-heading {
    position: relative;
    padding-bottom: 19px;
    margin-bottom: 49px
}

.thim-heading:after,
.thim-heading:before {
    content: '';
    position: absolute;
    left: 0
}

.thim-heading:before {
    border-top: 1px solid #ddd;
    width: 170px;
    height: 1px;
    bottom: 0
}

.thim-heading:after {
    height: 4px;
    width: 50px;
    bottom: 1px
}

.thim-slider,
.thim-slider .slides .item-link {
    position: relative
}

.thim-heading h3 {
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 9px
}

.thim-heading .subtitle {
    color: #999;
    font-style: italic;
    font-size: 14px;
    line-height: 19px
}

.thim-heading.heading-center {
    text-align: center
}

.thim-heading.heading-center:before {
    left: 50%;
    margin-left: -85px
}

.thim-heading.heading-center:after {
    left: 50%;
    margin-left: -25px
}

.thim-heading.heading-right {
    text-align: right
}

.thim-heading.heading-right:after,
.thim-heading.heading-right:before {
    left: auto;
    right: 0
}

.thim-slider ul {
    margin: 0;
    list-style: none
}

.thim-slider .slides .item-link .slider-content {
    position: absolute;
    top: auto;
    right: 0;
    width: 100%;
    bottom: 35px;
    left: auto
}

.thim-slider .slides .item-link .slider-content .slider-content-inner {
    width: 100%;
    text-align: center
}

.thim-slider .slides .item-link .slider-content .title {
    font-size: 36px;
    color: #fff;
    line-height: 48px;
    margin: 0 0 31px
}

.thim-slider .slides .item-link .slider-content .description {
    font-size: 16px;
    color: #fff;
    line-height: 28px;
    margin: 0 0 32px
}

.thim-slider .slides .item-link .slider-content .slider-button {
    padding: 0 50px;
    line-height: 50px;
    font-size: 13px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    float: right
}

.thim-slider .slides .item-link .slider-content .slider-button:hover {
    background: #fff;
    color: #222
}

.thim-slider .flex-direction-nav {
    margin: 0
}

.thim-slider .flex-direction-nav a {
    position: absolute;
    z-index: 9;
    top: 50%;
    cursor: pointer;
    width: 40px;
    margin: -20px 0 0;
    height: 40px;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
    font-size: 0;
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.thim-slider .flex-direction-nav a:before {
    color: #fff
}

.thim-slider .flex-direction-nav a:hover {
    background: #222
}

.thim-slider .flex-direction-nav .flex-prev {
    left: -40px;
    opacity: 0
}

.thim-slider .flex-direction-nav .flex-prev:before {
    content: "\f104";
    font-family: FontAwesome;
    font-size: 22px;
    line-height: 40px;
    display: inline-block
}

.thim-slider .flex-direction-nav .flex-next {
    right: -40px;
    opacity: 0
}

.thim-slider .flex-direction-nav .flex-next:before {
    content: "\f105";
    font-family: FontAwesome;
    font-size: 22px;
    line-height: 40px;
    display: inline-block
}

.thim-slider:hover .flex-direction-nav .flex-prev {
    opacity: .8;
    left: 20px
}

.thim-slider:hover .flex-direction-nav .flex-next {
    opacity: .8;
    right: 20px
}

.thim-icon-box {
    text-align: center;
    border: 1px solid red;
    border-radius: 92px;
    height: 140px;
    width: 140px;
    padding: 25px 0 0
}

.thim-icon-box .icon {
    margin-bottom: 19px
}

.thim-icon-box .icon span {
    font-size: 40px;
    color: #3498db
}

.thim-icon-box h3 {
    font-size: 16px;
    color: #333;
    line-height: 19px;
    margin: 0;
    text-transform: uppercase
}

.thim-icon-box .description {
    font-size: 16px;
    line-height: 28px;
    margin-top: 5px
}

.thim-feature .title {
    font-size: 22px;
    color: #333;
    line-height: 27px;
    padding-left: 19px;
    margin: 0 0 42px;
    position: relative
}

.thim-feature .title:before {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

.thim-feature .description {
    font-size: 16px;
    line-height: 28px
}

.thim-list-posts {
    position: relative
}

.thim-list-posts .link_read_more {
    position: absolute;
    top: -68px;
    right: 0
}

.thim-list-posts .link_read_more a,
.knowmore-btn {
    font-size: 13px;
    display: inline-block;
    position: relative;
    font-weight: 700;
    background: #fff;
    padding-left: 15px
}

.thim-list-posts .link_read_more a:after,
.knowmore-btn:after {
    content: "\f105";
    font-family: FontAwesome;
    margin-left: 8px;
    font-weight: 400
}

.knowmore-btn {
    font-family: Montserrat;
    color: #f07821
}

.thim-list-posts .link_read_more a:hover {
    color: #222
}

.thim-list-posts .item-post {
    margin-bottom: 40px;
    padding-bottom: 36px;
    border-bottom: 1px solid #ddd
}

.thim-list-posts .item-post .article-image {
    margin-bottom: 21px;
    overflow: hidden
}

.thim-list-posts .item-post .article-image img {
    -webkit-transition: all 1s;
    -khtml-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.archive-courses article .inner-course,
.thim-brands .item-brands a img {
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s
}

.thim-list-posts .item-post .article-image img:hover {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1)
}

.thim-list-posts .item-post .article-image .img-post-mobile {
    display: none
}

.thim-list-posts .item-post .article-title-wrapper h5 {
    font-size: 22px;
    line-height: 34px;
    margin: 0 0 16px
}

.thim-list-posts .item-post .article-title-wrapper h5 a {
    color: #333
}

.thim-list-posts .item-post .article-title-wrapper .article-meta {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-bottom: 0;
    line-height: 17px
}

.thim-list-posts .item-post .article-title-wrapper .article-meta .entry-date {
    font-weight: 700
}

.thim-list-posts .item-post .article-title-wrapper .article-meta>span {
    display: inline-block;
    margin-right: 5px
}

.thim-list-posts.style-2 .item-post .article-image,
.thim-list-posts.style-2 .item-post .article-title-wrapper h5 {
    margin: 0
}

.thim-list-posts .item-post .article-title-wrapper .article-meta>span a {
    font-weight: 700;
    text-transform: capitalize;
    font-style: italic;
    color: #666
}

.thim-list-posts.style-2 .item-post {
    position: relative;
    padding-bottom: 0;
    border: none
}

.thim-list-posts.style-2 .item-post:before {
    content: '';
    width: 100%;
    height: 120px;
    background-image: linear-gradient(-180deg, rgba(17, 17, 17, 0) 0, rgba(0, 0, 0, .52) 47%, #000 99%);
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 1;
    pointer-events: none
}

.thim-list-posts.style-2 .item-post .article-title-wrapper {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 0 20px 20px;
    z-index: 10
}

.thim-list-posts.style-2 .item-post .article-title-wrapper .article-meta,
.thim-list-posts.style-2 .item-post .article-title-wrapper .article-meta>span a,
.thim-list-posts.style-2 .item-post .article-title-wrapper h5 a {
    color: #fff
}

.thim-list-posts.style-3 .item-post {
    position: relative;
    padding-left: 129px;
    min-height: 100px;
    padding-bottom: 0;
    border: none
}

.thim-list-posts.style-3 .item-post .article-image {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0
}

.thim-list-posts.style-3 .item-post .article-title-wrapper {
    float: left;
    width: 100%
}

.thim-list-posts.style-3 .item-post .article-title-wrapper h5 {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 16px;
    position: relative;
    top: -5px;
    float: left;
    width: 100%
}

.thim-list-posts.style-3 .item-post .article-title-wrapper .article-meta,
.thim-list-posts.style-3 .item-post .article-title-wrapper h5 a {
    float: left;
    width: 100%
}

.thim-list-posts.style-3 .item-post .article-title-wrapper .article-meta .author {
    display: none
}

.thim-testimonials {
    overflow: hidden
}

.thim-testimonials .item-link {
    padding: 0 0 0 20%;
    position: relative;
    min-height: 200px
}

.thim-testimonials .item-link .item-img {
    position: absolute;
    width: 130px;
    top: 0;
    left: 0;
    margin: 0 auto;
    border-radius: 50%;
    overflow: hidden
}

.thim-testimonials .item-link .item-content {
    padding-top: 20px;
    text-align: left
}

.thim-testimonials .item-link .item-content .description {
    position: relative;
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 37px;
    z-index: 1
}

.thim-testimonials .item-link .item-content .description:before {
    content: "\f10d";
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: -25px;
    font-size: 64px;
    line-height: 64px;
    color: #eee;
    z-index: -1
}

.thim-testimonials .item-link .item-content .item-info {
    position: relative;
    padding-left: 70px
}

.thim-testimonials .item-link .item-content .item-info:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 50px;
    height: 1px;
    background: #ddd
}

.thim-testimonials .item-link .item-content .item-info h3 {
    font-size: 20px;
    line-height: 24px;
    margin: 0 0 10px
}

.thim-testimonials .item-link .item-content .item-info span {
    font-size: 14px;
    color: #999;
    font-style: italic;
    line-height: 19px
}

.thim-brands {
    width: 100%;
    overflow: hidden
}

.thim-brands .owl-wrapper-outer {
    margin-left: -15px;
    margin-right: -15px
}

.thim-brands .owl-item {
    margin: 0;
    padding: 0 15px
}

.thim-brands .item-brands {
    width: 100%;
    float: left;
    max-height: 75px;
    text-align: center;
    line-height: 75px
}

.thim-brands .item-brands a {
    line-height: 75px;
    display: inline-block;
    width: 100%;
    vertical-align: middle
}

.thim-brands .item-brands a img {
    display: inline-block;
    width: auto;
    -khtml-transition: all .5s;
    transition: all .5s
}

.thim-brands .item-brands a img:hover {
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
    -moz-transform: scale(1.07);
    -ms-transform: scale(1.07);
    -o-transform: scale(1.07)
}

.archive-courses article .inner-course:hover .course-time,
.archive-courses article .inner-course:hover .teacher_course .thim-co-instructor {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1)
}

.widget_social_link_widget {
    display: inline-block;
    width: 100%
}

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

.widget_social_link_widget ul li {
    float: left;
    margin-right: 12px
}

.widget_social_link_widget ul li a {
    font-size: 0;
    width: 30px;
    height: 30px;
    line-height: 28px;
    border: 1px solid #fff;
    color: #fff;
    border-radius: 50%;
    display: inline-block;
    text-align: center
}

.widget_social_link_widget ul li a i {
    font-size: 14px;
    display: inline-block;
    line-height: 28px
}

.single-image.center {
    text-align: center
}

.single-image.right {
    text-align: right
}

#shaon-pricing-table-plus h3,
#shaon-pricing-table-plus h4,
#shaon-pricing-table-plus li,
#shaon-pricing-table-plus ul {
    list-style: none
}

.minimal {
    margin: 20px auto 0
}

.minimal .plan {
    width: 25%;
    float: left;
    margin-left: -1px;
    margin-bottom: 20px
}

.minimal .plan:first-child {
    margin-left: 0
}

.smooth .minimal .content-highlight {
    padding: 0 15px
}

.smooth .minimal {
    margin: 20px -15px 0
}

.minimal .plan h3 {
    text-align: center;
    line-height: 45px;
    margin: 0
}

.minmal .plan h3 {
    background: #5e923c
}

.minimal .plan li {
    line-height: 3.8em
}

.plan li,
.select {
    text-align: center
}

.minimal .select {
    border: 1px solid #ddd
}

.minimal .highlight.featured .select {
    padding-bottom: 20px
}

.gray .minimal .features ul {
    border-bottom: none
}

.minimal .features ul {
    border: 1px solid #ddd
}

.minimal .features ul li {
    border-bottom: 1px solid #ddd
}

.minimal .features ul li:last-child {
    border-bottom: none
}

.interval {
    font-size: 11px
}

.highlight .amount,
.interval {
    display: block;
    text-align: center
}

.highlight .amount {
    font-size: 40px
}

.highlight .amount span {
    vertical-align: super;
    font-size: 20px
}

.minimal .p1 h3 {
    border: 1px solid #ddd;
    margin: 0
}

.minimal .plan h4 {
    padding: 10px 0;
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
    margin: 0;
    font-weight: 600!important;
    color: #333
}

.minimal .pt-button {
    color: #fff;
    display: block;
    line-height: 40px;
    margin: 20px auto;
    width: 131px;
    background: #181818;
    text-transform: uppercase
}

.minimal .highlight.featured .pt-button,
.minimal .pt-button:active,
.minimal .pt-button:hover {
    background: #fe4444
}

.minimal .highlight h3 {
    padding: 10px 0;
    color: #fe4444
}

.minimal .highlight.featured h3 {
    margin-top: -20px;
    padding: 20px 0;
    background: #fe4444;
    color: #fff!important
}

.minimal .highlight {
    position: relative
}

.green .minimal .highlight.featured {
    z-index: 9
}

.green .minimal .highlight.featured .features ul,
.green .minimal .highlight.featured h3,
.green .minimal .highlight.featured h4 {
    border-color: #fe4444
}

.green .minimal .highlight.featured h3 {
    margin-top: 0;
    padding: 10px 0;
    background: #fff;
    color: #fe4444;
    border-bottom-color: #ddd!important
}

.green .minimal .highlight.featured .features ul {
    border-top-color: #ddd!important
}

@media (max-width:800px) {
    .minimal .plan,
    .minimal .plan:nth-child(2n) {
        margin-left: 20px
    }
    .minimal .plan {
        width: 45%;
        float: left
    }
    .minimal .plan:nth-child(2n+1) {
        margin-left: 0
    }
    .smooth .minimal .content-highlight {
        padding: 0
    }
    .smooth .minimal {
        margin: 20px auto 0
    }
}

@media (max-width:480px) {
    .minimal .plan {
        width: 100%;
        float: none;
        margin-left: 0!important
    }
}

#shaon-pricing-table-plus .minimal .features ul {
    margin: 0
}

#shaon-pricing-table-plus .plan.p2 .icon i:before {
    content: "?"
}

#shaon-pricing-table-plus .plan.p3 .icon i:before {
    content: "?"
}

.courses-media-slider #learn-press-pmpro-notice.purchase-course a {
    padding: 0 26px;
    display: inline-block;
    float: left;
    line-height: 37px;
    border-radius: 4px;
    font-size: 16px;
    font-family: lato;
    text-transform: capitalize;
    font-weight: 500;
    height: 39px
}

.courses-media-slider #learn-press-pmpro-notice {
    float: left;
    margin-right: 10px;
    margin-left: 10px
}

.courses-media-slider article .meta_course .heading_info ul li {
    margin-bottom: 20px
}

.courses-media-slider article .meta_course .heading_info ul li .purchase-course .btn.purchase-button {
    text-transform: capitalize
}

body.archive.learnpress .site-content {
    padding: 75px 15px
}

.course-view {
    text-align: right
}

.course-view span {
    font-size: 14px;
    color: #728592
}

.course-view span:hover {
    cursor: pointer
}

.course-price .origin-price {
    text-decoration: line-through;
    font-weight: 300;
    font-style: italic;
    color: #999;
    font-size: 15px;
    padding-left: 5px
}

#review h3 .close,
.review-form h3 .close,
.review-stars>li span,
.single-quiz .question-title a {
    text-decoration: none
}

.archive-courses {
    padding: 0 15px
}

.archive-courses.course-grid .course-description {
    display: none
}

.archive-courses article {
    padding-top: 0!important
}

.archive-courses article .inner-course {
    border: 1px solid #e0e0e0;
    margin-bottom: 30px;
    -khtml-transition: all .5s;
    transition: all .5s
}

.archive-courses article .inner-course .course-thumbnail {
    display: block;
    position: relative;
    margin: 0
}

.archive-courses article .inner-course .course-thumbnail:before {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    content: "";
    background: rgba(0, 0, 0, .6);
    background: -moz-linear-gradient(bottom, rgba(0, 0, 0, .8) 0, transparent 95%);
    background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, .8) 0, transparent 95%);
    background: -o-linear-gradient(bottom, rgba(0, 0, 0, .8) 0, transparent 95%);
    background: -ms-linear-gradient(bottom, rgba(0, 0, 0, .8) 0, transparent 95%);
    background: linear-gradient(to top, rgba(0, 0, 0, .8) 0, transparent 95%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#ffffff', GradientType=0);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all .5s;
    -khtml-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.archive-courses article .inner-course .course-time,
.archive-courses article .inner-course:hover .course-time {
    -ms-transition: all .2s ease-in-out 0s;
    -o-transition: all .2s ease-in-out 0s;
    -khtml-transition: all .2s ease-in-out 0s
}

.archive-courses article .inner-course:hover {
    -webkit-box-shadow: 0 0 20px #e0e0e0;
    -khtml-box-shadow: 0 0 20px #e0e0e0;
    -moz-box-shadow: 0 0 20px #e0e0e0;
    -ms-box-shadow: 0 0 20px #e0e0e0;
    -o-box-shadow: 0 0 20px #e0e0e0;
    box-shadow: 0 0 20px #e0e0e0
}

.archive-courses article .inner-course:hover .course-time {
    -webkit-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s
}

.archive-courses article .inner-course:hover .course-thumbnail:before {
    opacity: 1;
    visibility: visible
}

.archive-courses article .inner-course .wrapper-course-thumbnail {
    position: relative;
    min-height: 202px;
    background: #999
}

.archive-courses article .inner-course .wrapper-course-thumbnail label {
    line-height: 24px;
    padding: 1px 10px 2px;
    font-size: 14px;
    text-transform: uppercase;
    font-style: italic;
    color: #fff;
    margin: 0;
    font-weight: 400;
    position: absolute;
    left: -3px;
    top: 15px
}

.archive-courses article .inner-course .course-description {
    padding: 0 20px;
    font-size: 15px;
    line-height: 22px
}

.archive-courses article .inner-course .course-time {
    position: absolute;
    top: 50%;
    margin-top: -45px;
    left: 50%;
    margin-left: -45px;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    width: 90px;
    height: 90px;
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    line-height: 20px;
    -webkit-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s
}

.archive-courses article .inner-course .course-time span {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    font-style: italic;
    margin-top: 5px
}

.archive-courses article .inner-course .course-time span.course-day {
    font-size: 32px;
    text-transform: none;
    font-style: normal;
    font-weight: 700
}

.archive-courses article .inner-course .course-time span:first-child {
    margin-top: 12px
}

.archive-courses article .inner-course .teacher_course {
    position: absolute;
    left: 0;
    bottom: 50%;
    padding: 0;
    width: 100%;
    text-align: center;
    -webkit-transform: translate(0, 50%);
    -moz-transform: translate(0, 50%);
    -ms-transform: translate(0, 50%);
    -o-transform: translate(0, 50%)
}

.archive-courses article .inner-course .teacher_course .author-wrapper {
    text-align: center
}

.archive-courses article .inner-course .teacher_course .thim-co-instructor {
    display: inline-block;
    margin: 0 5px;
    -webkit-transform: scale(0, 0);
    -moz-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    -webkit-transition: all .2s ease-in-out 0s;
    -khtml-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    -ms-transition: all .2s ease-in-out 0s;
    -o-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s
}

.archive-courses article .inner-course .teacher_course .thim-co-instructor .author-avatar {
    padding: 2px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    max-width: 42px;
    display: inline-block
}

.archive-courses article .inner-course .teacher_course .thim-co-instructor .author-avatar img {
    border-radius: 50%
}

.archive-courses article .inner-course .teacher_course .thim-co-instructor .author-bio {
    margin-top: 5px
}

.archive-courses article .inner-course .teacher_course .thim-co-instructor .author-bio .author-top a {
    color: #fff;
    text-transform: capitalize;
    font-weight: 300;
    font-style: italic
}

.archive-courses article .inner-course .course-title {
    padding: 24px 20px 0
}

.archive-courses article .inner-course .course-title h2 {
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    line-height: 22px
}

.archive-courses article .inner-course .course-title h2 a:hover {
    color: #2c3339!important
}

.archive-courses article .inner-course .author {
    padding: 5px 20px 15px;
    border-bottom: 1px solid #eee;
    overflow: hidden;
    line-height: 32px;
    font-style: italic
}

.archive-courses article .inner-course .author a {
    font-weight: 600;
    color: #888
}

.archive-courses article .inner-course .author .avatar {
    float: right;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    overflow: hidden
}

.archive-courses article .inner-course .course-price {
    padding: 15px 20px;
    display: block;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase
}

.archive-courses article .inner-course .course-students {
    padding: 25px 20px;
    border-top: none;
    overflow: hidden;
    color: #cfcfcf;
    display: block
}

.archive-courses article .inner-course .course-students>span:before {
    content: "\f307";
    font-family: dashicons!important;
    float: left;
    padding: 0 3px 0 0;
    line-height: 24px;
    font-size: 20px
}

.archive-courses article .inner-course .course-students .course-rate,
.archive-courses article .inner-course .course-students span {
    width: 60%;
    float: left;
    padding: 0
}

.archive-courses article .inner-course .course-students .course-rate .review-number,
.archive-courses article .inner-course .course-students span .review-number {
    display: none
}

.archive-courses article .inner-course .course-students .course-rate .students,
.archive-courses article .inner-course .course-students span .students {
    font-weight: 400
}

.archive-courses article .inner-course .course-students .course-rate {
    width: 40%;
    text-align: right;
    margin: 0
}

.archive-courses .loop-pagination,
.archive-courses .pagination {
    text-align: right;
    display: inline-block;
    width: 100%;
    margin: 0;
    padding-top: 12px;
    background: 0 0
}

.archive-courses .loop-pagination:after,
.archive-courses .loop-pagination:before,
.archive-courses .pagination:after,
.archive-courses .pagination:before {
    content: " ";
    display: table
}

.archive-courses .loop-pagination:after,
.archive-courses .pagination:after {
    clear: both
}

.archive-courses .loop-pagination li,
.archive-courses .pagination li {
    display: inline-block;
    zoom: 1;
    list-style: none;
    margin-right: 6px
}

.archive-courses .loop-pagination li .page-numbers,
.archive-courses .pagination li .page-numbers {
    width: 40px;
    height: 40px;
    color: #878a97;
    border: 1px solid #ccc;
    text-align: center;
    line-height: 38px;
    display: inline-block;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.archive-courses .loop-pagination li .page-numbers.next,
.archive-courses .loop-pagination li .page-numbers.prev,
.archive-courses .pagination li .page-numbers.next,
.archive-courses .pagination li .page-numbers.prev {
    white-space: nowrap;
    overflow: hidden;
    font-size: 0
}

.archive-courses .loop-pagination li .page-numbers.next:before,
.archive-courses .pagination li .page-numbers.next:before {
    content: "\f105";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    font-size: 16px
}

.archive-courses .loop-pagination li .page-numbers.prev:before,
.archive-courses .pagination li .page-numbers.prev:before {
    content: "\f104";
    display: inline-block;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: 400;
    line-height: 38px;
    font-size: 16px
}

.course-grid article {
    float: left
}

.course-grid .course-excerpt {
    display: none
}

.inner-course .course-rating {
    text-align: right
}

.inner-course .course-rating .review-stars-rated .review-stars.filled {
    color: #d3ced2
}

.thim-review {
    overflow: hidden;
    position: relative;
    height: 1em;
    line-height: 1;
    font-size: 11px;
    width: 60px;
    font-family: FontAwesome
}

.thim-review:before {
    content: "\f006\f006\f006\f006\f006";
    color: #d3ced2;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    letter-spacing: 2px
}

.thim-review span {
    color: #fed559;
    overflow: hidden;
    float: left;
    top: 0;
    left: 0;
    position: absolute;
    padding-top: 1.5em
}

.thim-review span:before {
    content: "\f005\f005\f005\f005\f005";
    top: 0;
    font-size: 11px;
    position: absolute;
    left: 0;
    letter-spacing: 2px
}

.custom-search {
    padding-top: 45px;
    padding-bottom: 45px
}

.custom-search .thim-widget-courses-searching .courses-searching button {
    background: #2c3339
}

.custom-search .thim-widget-courses-searching .courses-searching button:hover {
    background: rgba(44, 51, 57, .87)
}

#top-sidebar-courses {
    background-color: #f7fafb;
    position: relative
}

#top-sidebar-courses .thim-widget-courses {
    padding-top: 0;
    padding-bottom: 20px
}

#top-sidebar-courses .widget-box-title {
    padding-bottom: 0
}

#top-sidebar-courses .widget-box-title .title {
    margin-bottom: 0;
    font-size: 22px;
    padding: 10px 0
}

#top-sidebar-courses .widget-box-title:after {
    height: 2px
}

#top-sidebar-courses:before {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 56px;
    background-color: #fff;
    border-bottom: 1px solid #dedede
}

#top-sidebar-courses .owl-theme .owl-nav {
    position: absolute;
    right: 10px;
    top: -96px;
    margin: 0
}

#top-sidebar-courses .owl-theme .owl-nav .owl-next,
#top-sidebar-courses .owl-theme .owl-nav .owl-prev {
    position: static
}

.lpr_course.has-post-thumbnail {
    padding-top: 0!important
}

.page-title[class*=courses_archive_] .breadcrumbs {
    margin-top: 0
}

.page-title[class*=courses_archive_] .breadcrumbs ul {
    margin: 0
}

.page-title[class*=courses_archive_] .breadcrumbs ul li a,
.page-title[class*=courses_archive_] .breadcrumbs ul li span {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    font-style: italic
}

.page-title[class*=courses_archive_] .breadcrumbs ul li a span,
.page-title[class*=courses_archive_] .breadcrumbs ul li span span {
    color: #fff
}

.page-title[class*=courses_archive_] h1 {
    line-height: 45px;
    margin-bottom: 20px
}

.page-title[class*=courses_archive_] .banner-description {
    line-height: 24px
}

.page-title.courses_archive_1 .main-top {
    background-position: center center;
    background-repeat: no-repeat;
    text-align: left;
    background-size: cover
}

.page-title.courses_archive_1 .main-top .banner-description,
.page-title.courses_archive_1 .main-top h1 {
    width: 55%
}

.page-title.courses_archive_2 .main-top {
    background-position: bottom center;
    background-repeat: no-repeat;
    background-size: cover;
    padding-top: 150px;
    padding-bottom: 80px
}

.page-title.courses_archive_2 .main-top .content {
    max-width: 685px
}

.page-title.courses_archive_2 .main-top .overlay-top-header {
    opacity: .9
}

.thim-course-top {
    background-color: #f6f9fa;
    padding: 10px 10px 10px 20px;
    margin-bottom: 30px
}

.thim-course-top .course-index,
.thim-course-top .lpr_course-switch {
    display: inline-block;
    line-height: 32px;
    margin-right: 15px
}

.thim-course-top .course-index a,
.thim-course-top .lpr_course-switch a {
    font-size: 16px;
    padding: 0 3px;
    color: #777
}

.thim-course-top .courses-searching {
    text-align: right
}

.thim-course-top .courses-searching form {
    position: relative;
    display: inline-block
}

.thim-course-top .courses-searching form input[type=text] {
    width: 220px
}

.thim-course-top .courses-searching form button {
    position: absolute;
    right: 0;
    line-height: 32px;
    padding: 0 10px;
    top: 0;
    background: 0 0;
    border: none
}

.thim-course-top .courses-searching ul {
    margin: 0
}

.learnpress-content .message {
    background-color: #f6f9fa;
    padding: 12px 15px;
    font-size: 14px;
    margin: 25px 0
}

.cols_num_3>article:nth-child(3n+1),
.cols_num_4>article:nth-child(4n+1) {
    clear: both
}

#learn-press-checkout button {
    padding: 0 30px;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 40px;
    background: #3498db
}

#learn-press-checkout button:hover {
    background: #181818
}

#learn-press-checkout textarea {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px!important
}

#learn-press-checkout input {
    line-height: 38px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0 10px!important
}

@media (min-width:992px) {
    .blog-grid .col-md-3:nth-child(4n+1),
    .blog-grid .col-md-4:nth-child(3n+1),
    .blog-grid .col-md-6:nth-child(2n+1),
    .course-grid .col-md-3:nth-child(4n+1),
    .course-grid .col-md-4:nth-child(3n+1),
    .course-grid .col-md-6:nth-child(2n+1),
    .posts-display .col-md-6:nth-child(2n+1),
    .products-grid .col-md-3:nth-child(4n+1),
    .products-grid .col-md-4:nth-child(3n+1),
    .products-grid .col-md-6:nth-child(2n+1) {
        clear: both
    }
    #main .course-list article {
        margin-bottom: 30px;
        width: 100%;
        overflow: hidden
    }
    #main .course-list .inner-course {
        display: table;
        margin-bottom: 0!important;
        width: 100%;
        border: 2px solid #f1f1f1;
        table-layout: fixed;
        padding-left: 202px;
        min-height: 202px;
        position: relative
    }
    #main .course-list .inner-course .course-excerpt {
        width: 33%;
        display: table-cell;
        vertical-align: middle
    }
    #main .course-list .inner-course .wrapper-course-thumbnail {
        width: 202px;
        position: absolute;
        top: 0;
        left: 0
    }
    #main .course-list .inner-course .item-list-center {
        width: 100%;
        float: left;
        padding-top: 17px;
        min-height: 202px;
        position: relative;
        padding-bottom: 60px
    }
    #main .course-list .inner-course .item-list-center .course-students {
        border-top: 1px solid #f1f1f1;
        padding: 11px 16px;
        position: absolute;
        width: 100%;
        bottom: 2px;
        left: 0
    }
    #main .course-list .inner-course .item-list-center .course-students .course-students {
        display: inline-block;
        border: none;
        padding: 0;
        position: static;
        width: auto
    }
    #main .course-list .inner-course .course-description {
        padding: 0 16px;
        line-height: 20px
    }
    #main .course-list .inner-course .course-excerpt {
        border-right: none;
        padding: 0 16px 20px
    }
    #main .course-list .inner-course .course-excerpt h6 {
        margin-bottom: 10px;
        font-style: italic
    }
    #main .course-list .inner-course .course-price {
        padding: 15px 16px
    }
    #main .course-list .inner-course .course-title {
        padding-top: 0!important;
        padding-left: 16px;
        padding-right: 16px;
        margin-bottom: 5px
    }
    #main .course-list .inner-course .course-title h2 {
        font-size: 16.44px
    }
}

.learn-press-search-course-form,
ul.learn-press-courses li {
    margin-bottom: 30px!important
}

@media (max-width:991px) {
    .container {
        width: auto
    }
    .archive_switch .col-sm-6:nth-child(2n+1),
    .blog-grid .col-sm-6:nth-child(2n+1),
    .course-grid .col-sm-6:nth-child(2n+1),
    .posts-display .col-sm-6:nth-child(2n+1) {
        clear: both
    }
    #main .course-list article {
        float: left
    }
    #main .course-list .course-excerpt {
        display: none
    }
    .breadcrumbs-wrapper .display {
        display: none!important
    }
    .thim-gallery-images-default .item {
        display: table-cell;
        vertical-align: middle;
        float: none
    }
    .courses-media-slider:after,
    .courses-media-slider:before {
        width: 641px
    }
}

@media (min-width:768px) and (max-width:991px) {
    .course-grid .col-sm-6:nth-child(2n+1) {
        clear: both
    }
}

.learn-press-search-course-form .search-course-input {
    transition: all .5s;
    height: 48px;
    border: 1px solid #e7e7e7
}

.learn-press-search-course-form button {
    outline: 0;
    padding: 0 30px!important
}

ul.learn-press-courses li .thumbnail {
    margin-bottom: 25px;
    position: relative;
    overflow: hidden
}

ul.learn-press-courses li .thumbnail .price {
    text-transform: uppercase;
    display: inline-block;
    padding: 5px 15px;
    bottom: 0;
    position: absolute;
    left: 0;
    color: #fff!important
}

ul.learn-press-courses li .date-comment {
    font-style: italic;
    font-size: 13px;
    margin-bottom: 25px
}

ul.learn-press-courses li h4.title {
    margin: 0 0 10px;
    font-size: 18px
}

ul.learn-press-courses li .course-info {
    display: none
}

ul.learn-press-courses li .course-description {
    margin-bottom: 30px
}

ul.learn-press-courses button {
    outline: 0
}

ul.learn-press-courses .learn-press-course-wishlist.wishlist-button {
    transition: all .5s;
    border: none;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    font-weight: 700;
    display: inline-block;
    color: #fff;
    padding: 0 12px;
    text-transform: uppercase
}

table.learn-press-cart-table tbody td,
table.learn-press-cart-table thead th {
    border: 1px solid #eee;
    text-align: center
}

table.learn-press-cart-table thead {
    background-color: #fafafa
}

table.learn-press-cart-table tbody td {
    vertical-align: middle
}

table.learn-press-cart-table tbody .course-price,
table.learn-press-cart-table tbody .course-total,
table.learn-press-cart-table tbody td.course-name {
    text-align: center
}

.checkout-button {
    color: #fff;
    border-radius: 5px;
    width: auto;
    padding: 6px 25px;
    text-align: center
}

.checkout-button:hover {
    background-color: #323945
}

form.lp-checkout .logged-in {
    padding: 15px 30px;
    background-color: #f7f6f7
}

#learn-press-checkout-user-form {
    text-align: center;
    margin-bottom: 80px
}

#learn-press-checkout-user-form #learn-press-checkout-user-login ul.form-fields {
    list-style-type: none;
    margin: 0
}

#learn-press-checkout-user-form #learn-press-checkout-user-login ul.form-fields li label {
    display: none
}

#learn-press-checkout-user-form #learn-press-checkout-user-login ul.form-fields li input {
    padding: 0 20px;
    border: 1px solid #e5e5e5;
    color: #aaa!important;
    background-color: #f8f8f8;
    width: 50%;
    margin: 0 0 20px;
    height: 40px
}

#learn-press-checkout-user-form #learn-press-checkout-user-login ul.form-fields li button:hover,
#learn-press-checkout-user-form #learn-press-checkout-user-register .form-content a:hover {
    background-color: #323945
}

#learn-press-checkout-user-form #learn-press-checkout-user-login ul.form-fields li button {
    width: 50%;
    color: #fff;
    border-radius: 5px;
    height: 40px;
    text-transform: uppercase
}

#learn-press-checkout-user-form #learn-press-checkout-user-register .form-content a {
    padding: 5px 25px;
    font-weight: 700;
    display: inline-block;
    position: relative;
    margin-top: 10px;
    line-height: 30px;
    font-size: 13px;
    text-transform: uppercase;
    border-radius: 5px;
    color: #fff
}

#order_review h3 {
    margin-bottom: 50px;
    text-align: center
}

#order_review table.learn-press-checkout-review-order-table thead {
    background-color: #fafafa
}

#order_review table.learn-press-checkout-review-order-table tbody td,
#order_review table.learn-press-checkout-review-order-table thead th {
    border: 1px solid #eee;
    text-align: center
}

#order_review table.learn-press-checkout-review-order-table tbody td.course-name {
    text-align: center
}

#order_review table.learn-press-checkout-review-order-table .cart-subtotal td,
#order_review table.learn-press-checkout-review-order-table .cart-subtotal th,
#order_review table.learn-press-checkout-review-order-table .order-total td,
#order_review table.learn-press-checkout-review-order-table .order-total th {
    border: 1px solid #eee;
    text-align: center
}

#order_review textarea {
    width: 100%;
    height: 100px;
    border: 1px solid #eee;
    padding: 10px 15px;
    margin-bottom: 80px
}

#learn-press-payment ul.payment-methods {
    margin: 0;
    list-style-type: none
}

#learn-press-payment .place-order-action input.button {
    margin-top: 10px;
    height: 40px;
    padding: 0 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    border-radius: 5px
}

#learn-press-payment .place-order-action input.button:hover {
    background-color: #323945;
    border-color: #323945
}

.button-box .woocommerce-message {
    position: relative;
    margin-bottom: 85px
}

.button-box .button.wc-forward {
    position: absolute;
    width: 100%;
    top: calc(100% + 20px);
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    -o-transform: translate(-50%, 0)
}

#learn-press-profile-header {
    height: auto
}

#learn-press-user-profile {
    margin-top: 50px
}

#learn-press-profile-nav .tabs li a {
    padding: 10px 20px;
    color: #181818
}

#learn-press-profile-nav .tabs li.active>a,
#learn-press-profile-nav .tabs li:hover:not(.active)>a {
    color: #fff;
    background: #3498db
}

#learn-press-profile-nav .tabs li ul li {
    margin-bottom: 0
}

#learn-press-profile-nav {
    padding-top: 60px
}

.profile .archive-courses {
    padding: 0
}

.profile .lp-tab-sections .section-tab a,
.profile .lp-tab-sections .section-tab span {
    display: inline-block;
    padding: 15px 20px;
    color: #181818
}

.profile .lp-tab-sections .section-tab.active a,
.profile .lp-tab-sections .section-tab.active span,
.profile .lp-tab-sections .section-tab:hover a,
.profile .lp-tab-sections .section-tab:hover span {
    border: none;
    padding-bottom: 15px;
    color: #fff;
    background: #3498db
}

.profile #learn-press-profile-content {
    margin-top: 0
}

.profile .lp-user-profile .profile-name {
    text-transform: uppercase
}

.profile input {
    line-height: 38px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0 10px!important
}

.profile textarea {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 10px!important
}

.profile .dk-selected {
    line-height: 38px;
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 0 10px
}

.profile.learnpress-page button {
    padding: 0 30px;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 40px;
    background: #3498db
}

.profile.learnpress-page button:hover {
    background: #181818
}

.profile #profile-content-wishlist ul.learn-press-courses .course {
    display: flex;
    width: 100%;
    align-items: center;
    margin: 0 0 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee
}

.profile #profile-content-wishlist ul.learn-press-courses .course h2 {
    font-size: 20px;
    margin: 0;
    line-height: 30px;
    width: 70%
}

.profile #profile-content-wishlist ul.learn-press-courses .course h2 a {
    color: #181818
}

.profile #profile-content-wishlist ul.learn-press-courses .course button {
    width: 30%
}

.profile-recover-order input[name=order-key] {
    width: 250px;
    display: inline-block;
    line-height: 38px;
    border-radius: 5px;
    box-shadow: none;
    padding: 0 10px;
    outline: 0;
    border: 1px solid #eee
}

.learnpress #learn-press-checkout-login {
    padding-bottom: 25px
}

.learnpress #learn-press-checkout-login h3 {
    font-size: 24px;
    text-transform: uppercase
}

.learnpress #learn-press-checkout-login .form-fields .form-field input {
    border: 1px solid #eee
}

.learnpress button.lp-button-guest-checkout {
    outline: 0;
    margin-top: 20px;
    border: none;
    color: #fff!important;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    padding: 0 30px
}

#learn-press-checkout-register {
    padding-bottom: 25px
}

.learn-press-form-register h3 {
    font-size: 24px!important;
    text-transform: uppercase
}

.learn-press-form-register input {
    border: 1px solid #eee
}

.course-review-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    text-align: center
}

.review-overlay {
    background: #000;
    bottom: 0;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    opacity: .6
}

.review-form {
    background-color: #fff;
    padding: 20px;
    position: relative;
    width: 80%;
    max-width: 600px;
    margin-top: 50px;
    display: inline-block;
    text-align: left
}

.review-form h3 {
    font-size: 16px;
    margin: 0 0 20px
}

.review-form h3 .close {
    float: right;
    border: none;
    width: auto;
    height: auto;
    margin-right: -9px;
    margin-top: -7px
}

.review-form h3 .close:before {
    font-size: 32px
}

.review-form .review-fields {
    margin: 0 0 -20px;
    list-style: none
}

.review-form .review-fields>li {
    margin: 0 0 40px
}

.review-form .review-fields>li>label {
    display: block;
    margin: 0 0 7px;
    font-size: 15px
}

.review-form .review-fields>li>label .required {
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    line-height: 1;
    height: 15px;
    margin-top: -3px
}

.review-form .review-fields>li input[type=text],
.review-form .review-fields>li textarea {
    width: 100%
}

#review-overlay {
    background-color: rgba(0, 0, 0, .25);
    bottom: 0;
    display: flex;
    justify-content: center;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%
}

#review-overlay>.review-wrapper {
    align-self: center;
    background-color: rgba(0, 0, 0, .25);
    border-radius: 2px;
    padding: 6px;
    width: 450px
}

#review-overlay .review-content {
    background-color: #fff;
    border-radius: 2px;
    padding: 24px;
    position: relative
}

#review {
    position: fixed;
    z-index: 99999;
    display: none;
    align-self: center;
    background-color: rgba(0, 0, 0, .25);
    border-radius: 2px;
    padding: 6px;
    width: 500px;
    top: 50px;
    left: 50%;
    margin-left: -250px
}

#review .review-content {
    background-color: #fff;
    border-radius: 2px;
    padding: 24px;
    position: relative
}

#review h3 {
    font-size: 16px;
    margin: 0 0 20px
}

#review h3 .close {
    float: right;
    border: none;
    width: auto;
    height: auto;
    margin-right: -9px;
    margin-top: -7px
}

#review h3 .close:before {
    font-size: 32px
}

#review .review-fields {
    margin: 0 0 -20px;
    list-style: none
}

#review .review-fields>li {
    margin: 0 0 20px
}

#review .review-fields>li>label {
    display: block;
    margin: 0 0 7px;
    font-size: 15px
}

#review .review-fields>li>label .required {
    margin-left: 5px;
    display: inline-block;
    vertical-align: middle;
    font-size: 24px;
    line-height: 1;
    height: 15px;
    margin-top: -3px
}

.review-stars {
    margin: 0;
    list-style: none
}

.review-stars:after {
    clear: both;
    content: '';
    display: block
}

.review-stars>li {
    width: 16px;
    height: 20px;
    list-style: none;
    float: left
}

.review-stars>li span {
    font-size: 16px;
    border-bottom: none;
    width: auto;
    height: auto
}

.review-stars>li a:focus,
.review-stars>li a:visited {
    border: none
}

.review-stars>li span:before {
    width: 40px;
    height: 40px
}

.review-stars>li span.hover:before {
    content: "\f155";
    color: #f05a19;
    cursor: pointer
}

#review .review-actions {
    text-align: right;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0
}

#review .submitting {
    display: none
}

#review .review-stars {
    cursor: pointer
}

.review-stars-rated {
    position: relative;
    width: auto
}

.review-stars-rated .review-stars {
    display: inline-block
}

.review-stars-rated .review-stars.filled {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
    white-space: nowrap;
    height: 20px
}

.review-stars-rated .review-stars.empty,
.review-stars-rated .review-stars.filled {
    overflow: hidden;
    line-height: 1;
    font-size: 11px;
    width: 60px;
    font-family: FontAwesome;
    color: #cfcfcf
}

.review-stars-rated .review-stars.empty:before {
    content: "\f006\f006\f006\f006\f006"
}

.review-stars-rated .review-stars.filled:before {
    content: "\f005\f005\f005\f005\f005"
}

#course-reviews .loading {
    display: none
}

.course-review-wrapper .review-form .review-fields input,
.course-review-wrapper .review-form .review-fields textarea {
    border: none;
    background-color: #f8f8f8;
    color: #aaa;
    width: 100%;
    padding: 12px 20px;
    border-radius: 5px
}

.course-review-wrapper .review-form .review-fields .review-stars,
.course-review-wrapper .review-form .review-fields label {
    margin-left: 20px
}

.course-review-wrapper .review-form .review-fields .review-actions button {
    color: #fff;
    border-radius: 5px;
    width: auto;
    padding: 6px 25px;
    text-align: center;
    border: 1px solid;
    margin-right: 10px
}

.course-review-wrapper .review-form .review-fields .review-actions button:hover {
    background-color: #323945
}

#learn-press-course-tabs .review-stars-rated .review-stars.empty,
#learn-press-course-tabs .review-stars-rated .review-stars.filled {
    color: #f2b827;
    font-size: 16px;
    width: 84px
}

#learn-press-course-tabs .review-stars-rated .review-stars.empty:before {
    color: #f2b827
}

#learn-press-course-tabs .review-stars-rated .review-stars.filled:before {
    font-size: 16px
}

.learnpress button.write-a-review {
    border-radius: 5px;
    background: #3498db
}

#course-item-content-header .form-button.lp-button-back button {
    padding: 0 30px;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 40px;
    background: #181818
}

.single .learn-press header {
    margin-bottom: 30px;
    overflow: hidden;
    border-bottom: 1px solid #eee
}

.single .learn-press header .author {
    margin-bottom: 20px
}

.page-title .breadcrumbs {
    margin-top: 0
}

.page-title .breadcrumbs ul {
    margin: 0
}

.page-title .breadcrumbs ul li a,
.page-title .breadcrumbs ul li span {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    font-style: italic
}

.page-title[class*=courses_single] h1 {
    line-height: 45px;
    margin-bottom: 15px
}

.page-title[class*=courses_single] .banner-description {
    line-height: 24px
}

.page-title[class*=courses_single] .main-top .content {
    max-width: 1020px
}

.page-title[class*=courses_single] .heading_info {
    margin-top: 45px
}

.page-title[class*=courses_single] .heading_info ul {
    margin: 0
}

.page-title[class*=courses_single] .heading_info ul li {
    text-align: left;
    display: inline-block;
    border-right: 1px solid rgba(255, 255, 255, .2);
    vertical-align: middle;
    padding-right: 21px;
    padding-left: 21px;
    text-transform: uppercase;
    color: #fff;
    font-size: 14px;
    font-weight: 700
}

.page-title[class*=courses_single] .heading_info ul li:last-child {
    border-right: none
}

.page-title[class*=courses_single] .heading_info ul li label {
    display: block;
    margin-bottom: 0;
    font-weight: 300;
    text-align: left;
    font-size: 14px;
    text-transform: none;
    line-height: 1;
    margin-top: 8px;
    color: #c8c8c8
}

.page-title[class*=courses_single] .heading_info ul li .review-stars-rated,
.page-title[class*=courses_single] .heading_info ul li p {
    display: inline-block
}

.page-title[class*=courses_single] .heading_info ul li .course-origin-price {
    color: #999;
    padding-left: 5px;
    padding-right: 0;
    font-weight: 300;
    font-style: italic
}

.page-title[class*=courses_single] .heading_info ul li .course-price {
    font-size: 30px;
    font-weight: 700;
    line-height: 38px
}

.page-title[class*=courses_single] .heading_info ul li .author .avatar,
.page-title[class*=courses_single] .heading_info ul li .author .info {
    display: inline-block;
    vertical-align: top
}

.page-title[class*=courses_single] .heading_info ul li .author .avatar img,
.page-title[class*=courses_single] .heading_info ul li .author .info img {
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    border-radius: 100%;
    margin-right: 10px
}

.page-title[class*=courses_single] .heading_info ul li .author .avatar a,
.page-title[class*=courses_single] .heading_info ul li .author .info a {
    color: #fff
}

.page-title[class*=courses_single] .heading_info ul li .thim-review {
    height: 12px;
    font-size: 12px;
    width: 65px
}

.page-title[class*=courses_single] .heading_info ul li .thim-review:before {
    color: #fff;
    letter-spacing: 2px
}

.page-title[class*=courses_single] .heading_info ul li .thim-review span:before {
    font-size: 12px
}

.page-title[class*=courses_single] .heading_info ul li .enroll-course,
.page-title[class*=courses_single] .heading_info ul li .purchase-course {
    margin-bottom: 0
}

.page-title[class*=courses_single] .heading_info ul li .enroll-course .btn,
.page-title[class*=courses_single] .heading_info ul li .enroll-course button.btn,
.page-title[class*=courses_single] .heading_info ul li .purchase-course .btn,
.page-title[class*=courses_single] .heading_info ul li .purchase-course button.btn {
    font-size: 16px;
    font-weight: 600;
    height: 39px;
    line-height: 16px;
    padding: 10px 12px 12px;
    color: #fff
}

.page-title[class*=courses_single] .heading_info ul li .enroll-course .btn:focus,
.page-title[class*=courses_single] .heading_info ul li .enroll-course .btn:hover,
.page-title[class*=courses_single] .heading_info ul li .enroll-course button.btn:focus,
.page-title[class*=courses_single] .heading_info ul li .enroll-course button.btn:hover,
.page-title[class*=courses_single] .heading_info ul li .purchase-course .btn:focus,
.page-title[class*=courses_single] .heading_info ul li .purchase-course .btn:hover,
.page-title[class*=courses_single] .heading_info ul li .purchase-course button.btn:focus,
.page-title[class*=courses_single] .heading_info ul li .purchase-course button.btn:hover {
    color: #fff;
    outline: 0;
    background-color: #323945;
    border-color: #323945
}

.single-lp_course h1.entry-title {
    font-weight: 700;
    line-height: 30px;
    padding-bottom: 30px;
    margin-top: 0;
    display: inline-block
}

.single-lp_course .author {
    float: right;
    font-style: italic
}

.single-lp_course .author a {
    font-weight: 700;
    color: #878787
}

.single-lp_course .author img {
    border-radius: 50%;
    margin-right: 10px
}

.single-lp_course .course-content .complete-lesson-button {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    border: none;
    color: #fff;
    margin-bottom: 20px;
    margin-top: 40px
}

.single-lp_course #learning-curriculum .course-curriculum {
    background-color: #fdfdfd;
    border: 1px solid #e5e5e5;
    padding: 15px 0
}

.single-lp_course #learning-curriculum .course-curriculum .curriculum-sections .section .section-header {
    color: #fff;
    padding: 0 20px 25px;
    position: relative
}

.single-lp_course #learning-curriculum .course-curriculum .curriculum-sections .section .section-header:before {
    position: absolute;
    width: 30px;
    height: 2px;
    content: "";
    bottom: 5px
}

.single-lp_course #learning-curriculum .course-curriculum ul {
    margin-left: 0
}

.single-lp_course #learning-curriculum .course-curriculum ul ul {
    margin: 4px 0 5px
}

.single-lp_course #learning-curriculum .course-curriculum .curriculum-sections .section {
    border-bottom: 1px solid #363d42;
    padding-bottom: 20px;
    margin-bottom: 20px
}

.single-lp_course #learning-curriculum .course-curriculum .curriculum-sections .section:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0
}

.single-lp_course #learning-curriculum .course-curriculum .curriculum-sections .section .section-content {
    padding-left: 20px;
    padding-right: 20px
}

.single-lp_course #learning-curriculum .course-curriculum .course-lesson.current a,
.single-lp_course #learning-curriculum .course-curriculum .course-quiz.current a {
    color: #fff
}

.single-lp_course #learning-curriculum .course-curriculum .course-lesson a,
.single-lp_course #learning-curriculum .course-curriculum .course-lesson span,
.single-lp_course #learning-curriculum .course-curriculum .course-quiz a,
.single-lp_course #learning-curriculum .course-curriculum .course-quiz span {
    color: #7a8c98
}

.single-lp_course #learning-curriculum .course-curriculum .course-lesson .lesson-quiz-icon:before,
.single-lp_course #learning-curriculum .course-curriculum .course-quiz .lesson-quiz-icon:before {
    content: "\f096";
    font: normal normal normal 14px/1 FontAwesome;
    color: #ddd;
    padding: 5px;
    background: 0 0;
    width: auto;
    height: auto;
    line-height: inherit
}

.single-lp_course #learning-curriculum .course-curriculum .course-lesson.completed a,
.single-lp_course #learning-curriculum .course-curriculum .course-quiz.completed a {
    text-decoration: none;
    color: #fff
}

.single-lp_course #learning-curriculum .course-curriculum .course-lesson.completed .lesson-quiz-icon:before,
.single-lp_course #learning-curriculum .course-curriculum .course-quiz.completed .lesson-quiz-icon:before {
    content: "\f046"
}

.single-lp_course #learning-curriculum .course-curriculum .course-lesson.current .lesson-quiz-icon:before,
.single-lp_course #learning-curriculum .course-curriculum .course-quiz.current .lesson-quiz-icon:before {
    content: "\f06e"
}

.single-lp_course #learning-curriculum .course-curriculum .course-lesson.loading .lesson-quiz-icon,
.single-lp_course #learning-curriculum .course-curriculum .course-quiz.loading .lesson-quiz-icon {
    -webkit-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear
}

.single-lp_course #learning-curriculum .course-curriculum .course-lesson.loading .lesson-quiz-icon:before,
.single-lp_course #learning-curriculum .course-curriculum .course-quiz.loading .lesson-quiz-icon:before {
    content: "\f110"
}

.single-lp_course #learning-curriculum .forum-link,
.single-lp_course #learning-curriculum .write-a-review {
    width: 100%;
    border: none;
    color: #fff;
    margin-top: 15px;
    border-radius: 5px;
    padding: 15px 20px
}

.single-lp_course #learning-curriculum .forum-link:hover,
.single-lp_course #learning-curriculum .write-a-review:hover {
    background-color: #323945
}

.single-lp_course #learning-curriculum .forum-link {
    text-align: center
}

.single-lp_course #learning-curriculum .forum-link a {
    color: #fff
}

.single-lp_course #course-landing .course-description,
.single-lp_course #course-learning .course-description {
    padding-top: 20px;
    line-height: 28px
}

.single-lp_course #course-landing .course-description h4,
.single-lp_course #course-learning .course-description h4 {
    text-transform: none;
    font-weight: 500
}

.single-lp_course #course-landing .course-price,
.single-lp_course #course-learning .course-price {
    padding-bottom: 4px;
    line-height: 28px
}

.single-lp_course #course-landing .course-students,
.single-lp_course #course-learning .course-students {
    color: #888;
    display: block;
    padding-top: 0
}

.single-lp_course #course-landing .course-students>span:before,
.single-lp_course #course-learning .course-students>span:before {
    content: "\f19d";
    font: normal normal normal 14px/1 FontAwesome
}

.single-lp_course #course-landing .course-students>span:after,
.single-lp_course #course-learning .course-students>span:after {
    content: "";
    position: absolute;
    left: -15px;
    top: -30px;
    bottom: -25px;
    background-color: rgba(0, 0, 0, .1);
    width: 1px
}

.single-lp_course #course-landing .course-students>span,
.single-lp_course #course-learning .course-students>span {
    float: right
}

.single-lp_course #course-landing .course-students span,
.single-lp_course #course-learning .course-students span {
    position: relative;
    width: 50%;
    text-align: right
}

.single-lp_course #course-landing .course-students .course-rate,
.single-lp_course #course-learning .course-students .course-rate {
    float: left;
    width: 50%
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta,
.single-lp_course #course-landing .user-review .review-stars-rated,
.single-lp_course #course-learning .user-review .review-stars-rated {
    float: right
}

.single-lp_course #course-landing .course-students .course-rate .review-number,
.single-lp_course #course-learning .course-students .course-rate .review-number {
    display: none
}

.single-lp_course #course-landing .user-review .user-name,
.single-lp_course #course-landing .user-review .user-review-info,
.single-lp_course #course-landing .user-review p,
.single-lp_course #course-learning .user-review .user-name,
.single-lp_course #course-learning .user-review .user-review-info,
.single-lp_course #course-learning .user-review p {
    display: inline
}

.single-lp_course #course-landing .user-review .user-rate-info,
.single-lp_course #course-learning .user-review .user-rate-info {
    border-right: 1px rgba(0, 0, 0, .1) solid
}

.single-lp_course #course-landing .user-review .avatar,
.single-lp_course #course-learning .user-review .avatar {
    border-radius: 50%
}

.single-lp_course #course-landing .user-review .review-content,
.single-lp_course #course-learning .user-review .review-content {
    font-weight: 400
}

.single-lp_course #course-landing div[id*=row-course-],
.single-lp_course #course-learning div[id*=row-course-] {
    background-color: #fdfdfd;
    border: 1px solid #ccc;
    margin-bottom: 40px;
    padding: 0 25px
}

.single-lp_course #course-landing div[id*=row-course-] .title_row_course,
.single-lp_course #course-learning div[id*=row-course-] .title_row_course {
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    font-size: 24px;
    padding: 20px 0 24px;
    margin: 0
}

.single-lp_course #course-landing div[id*=row-course-] .course-rating,
.single-lp_course #course-learning div[id*=row-course-] .course-rating {
    padding-bottom: 50px
}

.single-lp_course #course-landing div[id*=row-course-] .course-rating .title_row_course,
.single-lp_course #course-learning div[id*=row-course-] .course-rating .title_row_course {
    margin-bottom: 40px
}

.single-lp_course .single-button button.button-retake-course:hover,
.single-lp_course .single-button button.learn-press-popup-certificate:hover {
    background: #323945
}

.single-lp_course .course-wishlist,
.single-lp_course .course-wishlisted {
    background-color: transparent
}

.single-lp_course button:focus {
    outline: 0;
    box-shadow: 0 0 0
}

.single-lp_course .course-wishlisted:hover {
    color: #8f9ea8;
    border: 2px solid #8f9ea8
}

.single-lp_course .quiz-questions h3 {
    padding-bottom: 40px;
    position: relative
}

.single-lp_course .quiz-questions h3:before {
    position: absolute;
    width: 30px;
    height: 2px;
    content: "";
    bottom: 25px
}

.single-lp_course .quiz-questions>ul {
    margin-top: 5px
}

.single-lp_course .quiz-questions .list-quiz-question {
    font-weight: 700
}

.single-lp_course .quiz-questions .list-quiz-question i {
    font-size: 12px;
    font-weight: 400
}

.course-content-lesson-nav-text {
    display: none
}

.learnpress #course-landing #landing-curriculum,
.learnpress #course-learning #landing-curriculum {
    margin: 40px 0
}

.learnpress #course-landing .course-curriculum,
.learnpress #course-learning .course-curriculum {
    background-color: #fdfdfd;
    border: 1px solid #ccc;
    padding: 0 26px
}

.learnpress #course-landing .course-curriculum .no_curriculumn,
.learnpress #course-learning .course-curriculum .no_curriculumn {
    padding: 20px 0;
    display: block
}

.learnpress #course-landing .course-curriculum .course-curriculum-title,
.learnpress #course-learning .course-curriculum .course-curriculum-title {
    padding-top: 20px;
    font-weight: 500;
    border-bottom: 1px solid #ccc;
    padding-bottom: 24px;
    font-size: 24px;
    margin-bottom: 0;
    margin-top: 0
}

.learnpress #course-landing .course-curriculum ul,
.learnpress #course-learning .course-curriculum ul {
    margin: 0;
    list-style: none;
    background: 0 0
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections,
.learnpress #course-learning .course-curriculum ul.curriculum-sections {
    margin-left: 0;
    background-color: transparent
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section {
    padding: 0
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section:first-child .section-header .collapse:before,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section:first-child .section-header .collapse:before {
    content: "\f068"
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-header .collapse:before,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section:first-child .section-header .collapse.plus:before,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-header .collapse:before,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section:first-child .section-header .collapse.plus:before {
    content: "\f067"
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section:first-child .section-content,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section:first-child .section-content {
    display: block
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section:last-child,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section:last-child .section-content .course-lesson:last-child,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section:last-child .section-content .course-quiz:last-child,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section:last-child .section-header,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section:last-child,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section:last-child .section-content .course-lesson:last-child,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section:last-child .section-content .course-quiz:last-child,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section:last-child .section-header {
    border-bottom: none
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-header,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-header {
    font-weight: 500;
    font-size: 18px;
    position: relative;
    padding: 16px 0 20px;
    margin: 0;
    background: 0 0;
    color: #2b3339;
    display: inline-block;
    width: 100%;
    border-bottom: 1px solid #ccc
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-header .collapse,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-header .collapse {
    font: normal normal normal 14px/1 FontAwesome;
    margin-right: 10px
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-header .collapse.plus:before,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-header .collapse.plus:before {
    content: "\f068"
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-lesson,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-quiz,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-lesson,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-quiz {
    padding-left: 40px
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta-center,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-center,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta-center,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-center {
    float: left;
    max-width: calc(100% - 40px);
    max-width: -webkit-calc(100% - 40px);
    max-width: -moz-calc(100% - 40px);
    width: 100%
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta-center .course-item-title,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-center .course-item-title,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta-center .course-item-title,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-center .course-item-title {
    width: 100%
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta-center.has-completed .completed-button,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-center.has-completed .completed-button,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta-center.has-completed .completed-button,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-center.has-completed .completed-button {
    display: inline-block
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .completed-button,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .completed-button,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .completed-button,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .completed-button {
    line-height: 24px;
    border: 0;
    width: 24px;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    margin-left: 0;
    font-size: 12px;
    font-weight: 700;
    cursor: default;
    display: none
}

.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .lesson-preview,
.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .lesson-preview,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .lesson-preview,
.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .lesson-preview {
    line-height: 24px;
    border: 0;
    padding: 0 12px;
    background: #ffb606;
    color: #fff;
    display: none;
    border-radius: 3px;
    margin-left: 0;
    font-size: 12px;
    font-weight: 700
}

.learnpress div#course-curriculum-popup #popup-main #popup-footer {
    display: none
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections,
.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-header {
    background-color: transparent
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-header .collapse {
    font: normal normal normal 14px/1 FontAwesome;
    margin-right: 10px
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-header .collapse:before {
    content: "\f067"
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-header .collapse.plus:before {
    content: "\f068"
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content {
    background-color: #fff;
    border-bottom: 1px solid #eee
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content li {
    padding-right: 15px;
    padding-left: 15px
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content li.item-current {
    background-color: #f9fafa
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content li .meta {
    float: right
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content li .meta-center {
    float: left;
    max-width: calc(100% - 30px);
    max-width: -webkit-calc(100% - 30px);
    max-width: -moz-calc(100% - 30px);
    width: 100%
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content li .meta-center .course-item-title {
    width: 100%
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content li .meta-center .completed-button,
.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content li .meta-center .lesson-preview {
    display: none
}

.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content li .meta-center.has-completed .completed-button,
.learnpress div#course-curriculum-popup #learn-press-course-curriculum .curriculum-sections .section-content li .meta-center.has-completed .lesson-preview {
    display: inline-block;
    margin-left: 10px;
    color: #64bc62
}

.learnpress .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-left {
    display: inline-block;
    float: left;
    min-width: 104px;
    cursor: default
}

.learnpress .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-left .course-format-icon {
    margin-right: 10px;
    min-width: 15px
}

.learnpress .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-left .index {
    display: inline-block
}

.learnpress .course-curriculum ul.curriculum-sections .section .section-content .course-quiz .meta-left .index .label {
    margin-right: 5px
}

.course-content-lesson-nav {
    padding-top: 20px;
    margin-top: 10px
}

.course-content-lesson-nav a:after,
.course-content-lesson-nav a:before {
    font: normal normal normal 14px/1 FontAwesome
}

.course-content-lesson-nav .prev-lesson:before {
    content: "\f177";
    margin-right: 10px
}

.course-content-lesson-nav .next-lesson:after {
    content: "\f178";
    margin-left: 10px
}

.learn-press ul {
    list-style: outside
}

#learning-curriculum ul,
.lp-question-wrap ul {
    list-style: none
}

.related-courses {
    margin-top: 30px
}

.course-review-head {
    padding-bottom: 15px;
    margin-bottom: 30px
}

.course-reviews-list {
    margin-left: 0
}

.course-reviews-list li {
    list-style: none;
    overflow: hidden;
    margin-bottom: 0
}

.course-reviews-list li .review-right {
    width: calc(100% - 130px);
    width: -webkit-calc(100% - 130px);
    width: -moz-calc(100% - 130px);
    float: left
}

.course-reviews-list li .review-right .user-name {
    background-color: #f6f9fa;
    padding: 10px 20px;
    text-transform: uppercase;
    color: #858585;
    font-size: 12px
}

.course-reviews-list li .review-right .user-name i {
    margin-right: 10px
}

.course-reviews-list li .review-right .review-stars-rated {
    float: right
}

.course-reviews-list li .review-right .review-content {
    padding: 15px 20px
}

.course-reviews-list li .review-right .review-content h6 {
    margin-top: 0;
    font-weight: 700
}

#masthead.slideUp {
    -webkit-transform: translateY(-250px);
    -webkit-transition: -webkit-transform .2s;
    transform: translateY(-250px);
    transition: transform .2s
}

.custom-border-images .single-image img {
    -webkit-transition: all .2s ease-in-out 0s;
    -khtml-transition: all .2s ease-in-out 0s;
    -moz-transition: all .2s ease-in-out 0s;
    -ms-transition: all .2s ease-in-out 0s;
    -o-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    border: 1px solid #e2ecef
}

#learn-press-course-curriculum .section .course-item {
    margin: 0 0 10px;
    list-style: none;
    border-top: 0;
    padding: 0;
    background: 0 0
}

#learn-press-course-curriculum .section .course-item:hover {
    background-color: transparent
}

#learn-press-course-curriculum .section-content {
    background: #fff;
    padding: 0
}

#learn-press-course-curriculum .section-content li.course-lesson,
#learn-press-course-curriculum .section-content li.course-quiz {
    padding: 22px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #ccc
}

#learn-press-course-curriculum .section-content .course-item .course-item-title {
    font-size: 14px
}

#learn-press-course-curriculum .section-content .course-item:hover {
    background-color: transparent!important
}

.learnpress h3 {
    margin-top: 20px;
    margin-bottom: 10px
}

.learnpress .section-header {
    display: flex!important;
    flex-direction: column;
    background: 0 0
}

.learnpress button.write-a-review {
    border: none;
    color: #fff;
    padding: 0 15px
}

.course-item-meta .lp-label {
    padding: 5px 8px;
    margin-left: 5px;
    font-size: 12px;
    line-height: inherit
}

#learn-press-course-curriculum .section .course-item-meta {
    display: inline-block;
    position: static;
    margin: 0 0 0 20px;
    float: none;
    padding-top: 0
}

#learn-press-course-curriculum .section .course-item {
    overflow: hidden;
    color: #878a97
}

#learn-press-course-curriculum .section .course-item .course-item-title {
    color: #878a97;
    font-size: 16px;
    text-align: left
}

#learn-press-course-curriculum .section .course-item .course-item-title:before {
    margin-right: 8px
}

#learn-press-course-curriculum .section .lesson-title {
    display: inline-block
}

#learn-press-course-curriculum .section .section-content li.course-quiz .meta-left {
    margin-bottom: 5px
}

#learn-press-course-curriculum .section .section-content li.course-quiz .meta-center {
    width: 100%;
    max-width: 100%!important
}

#learning-curriculum #learn-press-course-curriculum .section .section-content {
    margin-top: 20px
}

#learning-curriculum #learn-press-course-curriculum .section .course-item {
    padding: 10px 0;
    margin: 0
}

#learning-curriculum #learn-press-course-curriculum .section .item-completed a,
#learning-curriculum #learn-press-course-curriculum .section .lp-label {
    color: #fff
}

.complete-lesson-button .dashicons {
    margin-top: 4px;
    margin-right: 4px
}

.quiz-questions-list,
.quiz-questions-list .learn-press-question-wrap .question-title {
    margin: 0
}

.quiz-countdown #quiz-countdown-value {
    font-size: 44px
}

.single-quiz .quiz-sidebar {
    float: left;
    width: 25%;
    margin-left: 0;
    padding: 0;
    border: 0
}

.quiz-questions-list .learn-press-question-wrap {
    font-weight: 400;
    padding: 15px 0 20px;
    margin: 0;
    border-bottom: 1px solid #ddd
}

.quiz-questions-list .learn-press-question-wrap:first-child {
    padding-top: 0
}

.quiz-questions-list .learn-press-question-wrap:last-child {
    border-bottom: 0
}

.quiz-question-nav-buttons button {
    color: #fff;
    margin-right: 10px;
    padding: 0 15px;
    border: none
}

.quiz-question-nav-buttons button:hover {
    color: #fff;
    background: #aaa
}

.quiz-question-content .learn-press-question-options>li.answer-option>label input[type=checkbox],
.quiz-question-content .learn-press-question-options>li.answer-option>label input[type=radio] {
    width: 16px;
    height: 16px
}

.quiz-question-content .learn-press-question-options>li.answer-option>label input[type=checkbox]:checked:before,
.quiz-question-content .learn-press-question-options>li.answer-option>label input[type=radio]:checked:before {
    width: 7px;
    height: 8px;
    top: 0;
    left: 0;
    border-width: 2px
}

.quiz-question-content .learn-press-question-options>li.answer-option>label input[type=checkbox]:checked+p,
.quiz-question-content .learn-press-question-options>li.answer-option>label input[type=radio]:checked+p {
    background-color: transparent;
    color: inherit
}

.quiz-question-content .learn-press-question-options>li.answer-option p.single-lines {
    line-height: 35px;
    min-height: 35px;
    padding-left: 40px;
    font-size: 14px
}

.content-item-quiz .quiz-questions .quiz-questions-list .learn-press-question-wrap {
    padding: 5px 0
}

.content-item-quiz .quiz-result .quiz-result-field {
    background-color: transparent!important;
    padding-top: 2px!important;
    padding-bottom: 2px!important
}

.content-item-quiz .quiz-result .quiz-result-summary {
    margin-left: 0
}

.content-item-quiz .quiz-result p.quiz-result-time {
    margin-bottom: 5px
}

.one-courses-page {
    background: #f6f9fa
}

#learn-press-finish-course,
#learn-press-popup-certificate,
#popup_ok,
#popup_panel #popup_ok {
    line-height: 28px;
    padding: 6px 20px;
    border-radius: 5px;
    border: none;
    color: #fff
}

#learn-press-finish-course {
    margin-bottom: 20px
}

#popup_cancel {
    line-height: 28px;
    padding: 6px 20px;
    border-radius: 5px;
    background-color: #2c3339;
    border: none;
    color: #fff
}

#popup_title {
    margin: 0;
    box-shadow: none
}

#row-course-review .course-rating:after {
    clear: both;
    content: "";
    display: table
}

#row-course-review .course-rating .rating-title {
    margin-bottom: 13px;
    line-height: 25px
}

#row-course-review .course-rating .average-rating {
    display: inline-block;
    float: left;
    margin-right: 30px
}

#row-course-review .course-rating .average-rating .rating-box {
    text-align: center;
    border: 8px solid;
    width: 211px;
    height: 211px;
    border-radius: 50%
}

#row-course-review .course-rating .average-rating .rating-box .average-value {
    font-weight: 500;
    font-size: 75px;
    line-height: 80px;
    margin: 27px 0 4px
}

#row-course-review .course-rating .average-rating .rating-box .review-star {
    line-height: 16px
}

#row-course-review .course-rating .average-rating .rating-box .review-amount {
    line-height: 20px;
    font-size: 16px;
    color: #2b3339;
    margin-top: -2px
}

#row-course-review .course-rating .detailed_rating {
    width: calc(100% - 255px);
    width: -webkit-calc(100% - 255px);
    width: -moz-calc(100% - 255px);
    float: left;
    display: inline-block;
    max-width: 100%
}

#row-course-review .course-rating .detailed_rating .rating-box {
    width: 100%;
    overflow: hidden;
    padding: 0
}

#row-course-review .course-rating .detailed_rating .stars {
    clear: both;
    padding: 7px 10px;
    font-size: 18px
}

#row-course-review .course-rating .detailed_rating .stars:last-child {
    padding-bottom: 0
}

#row-course-review .course-rating .detailed_rating .stars>div {
    display: inline-table;
    line-height: 30px
}

#row-course-review .course-rating .detailed_rating .stars>div.key {
    font-weight: 700;
    min-width: 60px;
    color: #2b3339
}

#row-course-review .course-rating .detailed_rating .stars>div.bar {
    width: 370px;
    max-width: 100%;
    margin: 0 20px
}

#row-course-review .course-rating .detailed_rating .stars>div.bar .full_bar {
    background: #eee;
    height: 12px;
    position: relative
}

#row-course-review .course-rating .detailed_rating .stars>div.bar .full_bar>div {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0
}

#row-course-review .course-rating .detailed_rating .stars>div.value {
    color: #999
}

#row-course-review .course-review #course-reviews {
    padding-bottom: 35px
}

#row-course-review .course-review .content-review>ul {
    margin: 0
}

#row-course-review .course-review .content-review>ul>li {
    border-top: 1px solid #eee;
    padding: 41px 0 35px;
    overflow: hidden;
    list-style: none;
    display: block
}

#row-course-review .course-review .content-review>ul>li:last-child {
    padding-bottom: 0
}

#row-course-review .course-review .content-review>ul .review-author {
    width: 95px;
    overflow: hidden;
    float: left;
    margin-right: 30px
}

#row-course-review .course-review .content-review>ul .review-author img {
    border-radius: 50%
}

#row-course-review .course-review .content-review>ul .review-time {
    display: inline-block;
    font-size: 15px;
    color: #878a97;
    width: 100%;
    margin-bottom: 14px;
    position: relative;
    top: -3px
}

#row-course-review .course-review .content-review>ul .review-time i {
    font-size: 16px;
    margin-right: 7px
}

#row-course-review .course-review .content-review>ul .review-text {
    width: calc(100% - 125px);
    width: -webkit-calc(100% - 125px);
    width: -moz-calc(100% - 125px);
    float: right;
    margin-top: -8px
}

#row-course-review .course-review .content-review>ul .review-text .author-name {
    display: inline-block;
    vertical-align: top;
    font-weight: 700;
    font-size: 16px;
    margin: 0 17px 0 0;
    line-height: 28px;
    text-transform: capitalize
}

#row-course-review .course-review .content-review>ul .review-text .review-star {
    display: inline-block;
    line-height: 28px
}

#row-course-review .course-review .content-review>ul .review-text .review-star .review-stars-rated,
#row-course-review .course-review .content-review>ul .review-text .review-star .review-stars-rated .review-stars {
    float: left
}

#row-course-review .course-review .content-review>ul .review-text .review-star .review-stars-rated .review-stars.filled {
    color: #fffc00
}

#row-course-review .course-review .content-review>ul .review-text .review-star .review-stars-rated .review-stars>li {
    height: 28px;
    line-height: 28px
}

#row-course-review .course-review .content-review>ul .review-text .review-title {
    font-size: 16px;
    font-weight: 700;
    line-height: 28px;
    margin: 0 0 12px;
    color: #2b3339
}

#row-course-review .course-review .content-review>ul .review-text .description {
    font-size: 16px;
    line-height: 26px
}

#row-course-review .review-load-more {
    text-align: center
}

#row-course-review .review-load-more #course-review-load-more {
    width: 30px;
    height: 30px;
    cursor: pointer;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 30px;
    margin-top: 40px;
    -webkit-transition: all .3s;
    -khtml-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

#row-course-review .review-load-more #course-review-load-more.loading .fa {
    -webkit-animation: fa-spin 1s infinite linear;
    animation: fa-spin 1s infinite linear
}

#row-course-review .review-load-more #course-review-load-more.loading .fa:before {
    content: '\f1ce'
}

#row-course-review .add-review {
    padding-bottom: 40px
}

#row-course-review .add-review .title {
    font-weight: 700;
    margin: 0;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 35px;
    padding: 55px 0 3px
}

#row-course-review .add-review .description {
    margin-bottom: 12px;
    color: #999
}

#row-course-review .add-review .review-stars-rated {
    clear: both;
    display: block;
    margin-bottom: 5px
}

#row-course-review .add-review .review-stars {
    cursor: pointer
}

#row-course-review .add-review form label {
    font-size: 13px;
    font-weight: 400;
    line-height: 30px;
    margin-bottom: 0;
    display: block;
    margin-top: 10px
}

#row-course-review .add-review form label span {
    vertical-align: top
}

#row-course-review .add-review form input[type=text] {
    height: 40px;
    line-height: 38px;
    width: 50%;
    border: 1px solid #e3e6e6;
    padding: 0 10px;
    clear: both;
    display: block
}

#row-course-review .add-review form textarea {
    border: 1px solid #e3e6e6;
    padding: 10px;
    clear: both;
    width: 100%;
    display: block;
    min-height: 100px
}

#row-course-review .add-review form button[type=submit] {
    padding: 5px 25px;
    text-transform: uppercase;
    line-height: 30px;
    border: 0;
    box-shadow: none;
    font-size: 13px;
    font-weight: 700;
    height: 40px;
    margin-top: 20px
}

.course-learning-summary .course-wishlist-box {
    margin-top: 20px;
    display: none
}

.course-learning-summary .course-wishlist-box span.fa {
    font-size: 14px;
    cursor: pointer
}

.course-learning-summary .course-wishlist-box span.fa .text {
    margin-left: 5px;
    font-size: 17px
}

.course-learning-summary .course-curriculum,
.course-learning-summary .row_course {
    margin-top: 35px
}

.learn-press-form button:hover {
    background-color: #23282d;
    color: #fff
}

.learn-press-content-item-summary button {
    padding: 0 12px;
    font-size: 14px;
    line-height: 30px;
    border: none;
    margin-top: 20px;
    border-radius: 4px;
    color: #fff
}

.learn-press-content-item-only>.message {
    background-color: #eee;
    border-left: 2px solid;
    padding-left: 15px;
    padding-bottom: 8px;
    padding-top: 8px;
    margin-bottom: 20px
}

.learn-press-video-intro {
    background: #000
}

.learn-press-video-intro .video-content {
    text-align: center
}

body.learnpress.content-item-only .learn-press-content-item-only {
    padding: 0
}

body.learnpress.content-item-only #learn-press-content-item {
    width: 100%;
    max-width: 100%
}

body.learnpress.content-item-only #learn-press-content-item .learn-press-content-item-container {
    width: 700px;
    margin: auto;
    overflow: hidden;
    padding-bottom: 40px;
    padding-top: 30px;
    max-width: 100%
}

body.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta-center,
body.learnpress #course-learning .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .meta-center {
    width: auto;
    display: inline-block
}

body.learnpress #learn-press-course-curriculum ul.curriculum-sections .section-content .item-status.item-status-passed,
body.learnpress #learn-press-course-curriculum ul.curriculum-sections .section-content .item-status.item-status-started {
    display: inline-block;
    position: inherit
}

body.learnpress #course-landing .course-curriculum ul.curriculum-sections .section .section-content .course-lesson .lesson-preview {
    line-height: 24px;
    width: 24px;
    text-align: center;
    border: 0;
    padding: 0;
    background: #54b551;
    color: #fff;
    display: inline-block;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    margin-left: 0;
    font-size: 12px;
    font-weight: 700
}

body.learnpress #learn-press-course-curriculum .course-item.course-quiz .course-item-title:before {
    content: none
}

.thim-ralated-course .related-title {
    margin-top: 0;
    line-height: 30px;
    padding-bottom: 20px;
    margin-bottom: 26px;
    position: relative;
    font-size: 30px
}

.thim-ralated-course .related-title:before {
    content: '';
    width: 50px;
    height: 3px;
    background: #eee;
    position: absolute;
    bottom: 0;
    left: 0
}

.thim-ralated-course .archive-courses {
    padding: 0
}

.single-button .price-box {
    font-size: 30px;
    font-weight: 700;
    background: #f6f9fa;
    text-align: center;
    padding: 28px 10px 34px;
    border: 1px solid #ccc
}

.single-button .price-box .course-origin-price {
    padding-left: 15px;
    font-size: 18px;
    font-weight: lighter
}

.single-button .button-box {
    border: 1px solid #ccc;
    border-top: 0;
    padding: 30px 21px;
    text-align: center
}

.single-button .button-box .intro {
    font-size: 14px;
    font-weight: 300;
    color: #878a97;
    text-align: center;
    margin: 0
}

.single-button .button-box form.purchase-course {
    margin: 0
}

.single-button .button-box .btn,
.single-button .button-box button {
    margin: 0 0 15px;
    padding: 0 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    border-width: inherit;
    border-style: unset;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -o-transition: all .3s;
    -ms-transition: all .3s;
    transition: all .3s
}

.single-button .button-box .includes-box {
    padding-top: 23px;
    margin-top: 23px;
    border-top: 1px solid #ccc;
    text-align: left
}

.single-button .button-box .includes-box h3 {
    margin: 0 0 5px;
    text-align: center
}

.single-button .button-box .includes-box p {
    font-size: 16px;
    font-weight: 400;
    line-height: 28px
}

.single-button .button-box .includes-box ul {
    margin: 0;
    list-style: none
}

.single-button .button-box .includes-box ul li {
    margin-bottom: 7px
}

.single-button .button-box .includes-box ul li:last-child {
    margin-bottom: 0
}

.single-button .button-box .includes-box ul li i {
    margin-right: 10px
}

.single-button .wishlist-box {
    padding: 30px 16px;
    margin-top: 20px;
    border: 1px solid #ccc;
    text-align: center
}

.single-button .wishlist-box .learn-press-course-wishlist {
    margin: 0 0 20px;
    text-align: center;
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    width: 100%;
    display: inline-block;
    border: 1px solid #e1e8ed;
    border-radius: 3px;
    color: #878a97;
    padding: 0;
    font-weight: 600
}

.single-button .wishlist-box .learn-press-course-wishlist.ajaxload {
    width: 30px;
    padding: 0;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    font-size: 0;
    display: inline-block
}

.single-button .wishlist-box .learn-press-course-wishlist .course-wishlist,
.single-button .wishlist-box .learn-press-course-wishlist .course-wishlisted {
    cursor: pointer;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 900;
    width: 100%;
    text-align: center;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 3px;
    color: #878a97
}

.single-button .wishlist-box .learn-press-course-wishlist .course-wishlist i,
.single-button .wishlist-box .learn-press-course-wishlist .course-wishlisted i {
    margin-right: 7px
}

.single-button .wishlist-box .share {
    display: inline-block;
    width: 100%;
    text-align: center
}

.single-button .wishlist-box .share ul {
    display: inline-block;
    margin: 0;
    list-style: none
}

.single-button .wishlist-box .share ul li {
    float: left;
    padding: 0 12px
}

.single-button .wishlist-box .share ul li a {
    color: #2b3339;
    font-size: 14px
}

.single-content .course-thumbnail {
    position: relative;
    margin-bottom: 30px;
    min-height: 300px
}

.single-content .course-thumbnail:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: #2b3339;
    opacity: .5
}

.single-content .course-thumbnail .open-popup-media {
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: inline-block;
    width: 105px;
    height: 105px;
    border: 4px solid #e2e3e6;
    border-radius: 50%;
    color: #e2e3e6;
    line-height: 95px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 2
}

.single-content .course-thumbnail .open-popup-media i {
    font-size: 60px;
    width: 100%;
    position: relative;
    left: 7px;
    line-height: 94px
}

.single-content .course-thumbnail img {
    width: 100%
}

.course-item-nav {
    border-top: 1px dashed #ccc;
    overflow: hidden;
    padding-top: 10px;
    margin-top: 30px
}

.course-item-nav .course-content-lesson-nav {
    line-height: 25px;
    max-width: 50%;
    padding: 0;
    margin: 0
}

.course-item-nav .course-content-lesson-nav span {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 11px
}

.course-item-nav .course-content-lesson-nav a {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    display: block;
    line-height: 20px;
    margin-top: 5px
}

.course-item-nav .course-item-prev {
    float: left;
    text-align: left
}

.course-item-nav .course-item-next {
    float: right;
    text-align: right
}

#course-curriculum-popup #learn-press-course-curriculum .section-content {
    display: block
}

.single-lp_course .mfp-wrap .mfp-container .mfp-content {
    text-align: center
}

#iframe-popup {
    display: inline-block;
    min-width: 700px
}

div#course-curriculum-popup #popup-main #popup-content {
    bottom: 0
}

#learn-press-course-curriculum ul.curriculum-sections .section-content .course-quiz .item-status.item-status-started:before {
    content: "\f017";
    line-height: 24px;
    height: 23px;
    width: 24px;
    display: block;
    text-align: center;
    font-family: FontAwesome
}

#learn-press-finish-course,
#learn-press-pmpro-notice.purchase-course .button.purchase-button,
#learn_press_take_course,
.button-add-to-cart,
.button-box .woocommerce-message .button.wc-forward,
.button-retake-course,
.learn-press-popup-certificate {
    margin: 0 0 15px;
    padding: 0 20px;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 14px;
    line-height: 36px;
    color: #fff;
    border-width: inherit;
    border-style: unset;
    display: inline-block;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-transition: all .3s;
    -khtml-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s
}

#learn-press-finish-course:hover,
#learn-press-pmpro-notice.purchase-course .button.purchase-button:hover,
#learn_press_take_course:hover,
.button-add-to-cart:hover,
.button-box .woocommerce-message .button.wc-forward:hover,
.button-retake-course:hover,
.learn-press-popup-certificate:hover {
    background: #323945
}

.learnpress-content #course-learning .button-finish-course,
.learnpress-content #course-learning .button-retake-course,
.learnpress-content #course-learning .learn-press-popup-certificate {
    display: none!important
}

#course-curriculum-popup #popup-sidebar #learn-press-course-curriculum .course-item {
    display: flex
}

#course-curriculum-popup #popup-sidebar #learn-press-course-curriculum .course-item .course-item-title {
    position: relative;
    padding-left: 20px;
    flex-grow: 1;
    padding-right: 10px
}

#course-curriculum-popup #popup-sidebar #learn-press-course-curriculum .course-item .course-item-title:before {
    position: absolute;
    top: 0;
    left: 0
}

#course-curriculum-popup #popup-sidebar #learn-press-course-curriculum .course-item .course-item-meta-wrapper {
    display: flex;
    flex-direction: column;
    text-align: right;
    flex-shrink: 0
}

#learn-press-block-content:after,
#learn-press-block-content:before,
#learn-press-course-tabs ul.learn-press-nav-tabs .course-nav:after {
    display: none
}

#course-curriculum-popup #popup-sidebar #learn-press-course-curriculum .course-item .course-item-meta-wrapper .course-item-meta,
#course-curriculum-popup #popup-sidebar #learn-press-course-curriculum .course-item .course-item-meta-wrapper .lp-label {
    margin-left: 0
}

#course-curriculum-popup #popup-sidebar #learn-press-course-curriculum .course-quiz .meta-left {
    min-width: unset;
    flex-shrink: 0
}

#course-curriculum-popup #popup-sidebar #learn-press-course-curriculum .course-quiz .meta-left .course-format-icon {
    margin-right: 0
}

#learn-press-course-curriculum .course-item .course-item-meta .lp-icon,
#learn-press-course-curriculum .course-item .course-item-meta .lp-label {
    color: #fff
}

#learn-press-course-curriculum .course-item-meta .item-loop-meta-text.item-final.lp-label {
    padding: 5px 8px
}

.lp_course .message {
    background-color: #f6f9fa;
    padding: 12px 15px;
    font-size: 14px;
    margin: 25px 0;
    border-left: 3px solid #00bce4
}

#learn-press-course-tabs {
    margin-top: 30px;
    border: 1px solid #e1e8ed
}

#learn-press-course-tabs .course-tab-panel {
    padding: 20px
}

#learn-press-course-tabs ul.learn-press-nav-tabs {
    border-bottom: 1px solid #e1e8ed
}

#learn-press-course-tabs ul.learn-press-nav-tabs .course-nav {
    border-right: 1px solid #e1e8ed;
    transition: all .5s
}

#learn-press-course-tabs ul.learn-press-nav-tabs .course-nav a {
    font-size: 16px;
    color: #333;
    padding: 15px 30px;
    font-weight: 700
}

#learn-press-course-tabs ul.learn-press-nav-tabs .course-nav.active,
#learn-press-course-tabs ul.learn-press-nav-tabs .course-nav:hover {
    background-color: #3498db
}

#learn-press-course-tabs ul.learn-press-nav-tabs .course-nav.active a,
#learn-press-course-tabs ul.learn-press-nav-tabs .course-nav:hover a {
    color: #fff
}

#learn-press-course-tabs .thim-about-author {
    padding-bottom: 28px;
    padding-top: 25px;
    border-top: 1px solid #ccc
}

#learn-press-course-tabs .thim-about-author:first-child {
    border: none
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-avatar {
    float: left;
    width: 145px;
    text-align: center
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-avatar img {
    border-radius: 50%;
    overflow: hidden;
    margin-top: 4px
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-avatar .thim-author-social {
    margin-left: 0;
    margin-top: 20px
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-avatar .thim-author-social li {
    display: inline-block;
    list-style: none;
    padding: 0 8px
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-avatar .thim-author-social li a {
    font-size: 16px;
    color: #2b3339
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-bio {
    width: calc(100% - 145px);
    width: -webkit-calc(100% - 145px);
    width: -moz-calc(100% - 145px);
    float: left
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-bio .author-top {
    margin-bottom: 15px
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-bio .author-top .name {
    font-size: 16px;
    font-weight: 700;
    color: #2b3339;
    text-transform: capitalize
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-bio .author-top .job {
    font-style: italic
}

#learn-press-course-tabs .thim-about-author .author-wrapper .author-bio .author-description {
    font-size: 16px;
    line-height: 28px
}

.course-curriculum ul.curriculum-sections .section-header .section-title {
    font-weight: 700
}

.course-curriculum ul.curriculum-sections .section-content .course-item>a {
    color: #878a97
}

.course-curriculum ul.curriculum-sections .section-content .course-item>a:hover {
    color: #3498db
}

.learn-press-course-results-progress {
    margin-bottom: 30px
}

.learnpress .learn-press-form button {
    padding: 0 30px;
    border: none;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 40px
}

#lp-announcements .title {
    font-size: 20px;
    margin: 0 0 10px
}

#lp-announcements #comments .list-comments {
    margin-bottom: 30px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
    padding-left: 30px;
    background: 0 0
}

#lp-announcements #comments .list-comments .comments-title {
    margin-bottom: 0;
    font-size: 16px
}

#lp-announcements #comments .list-comments .comment {
    list-style: none;
    padding: 30px 0 0;
    position: relative;
    display: inline-block;
    width: 100%;
    margin-top: 30px;
    border-top: 1px solid #eee
}

#lp-announcements #comments .list-comments .comment:first-child {
    margin: 0;
    padding-top: 20px;
    border: none
}

#lp-announcements #comments .list-comments .comment .content-comment {
    display: flex;
    flex-direction: column;
    padding-left: 20px
}

#lp-announcements #comments .list-comments .comment .author {
    font-style: normal;
    margin-bottom: 10px
}

#lp-announcements #comments .list-comments .comment .author a {
    font-weight: 600
}

#lp-announcements #comments .list-comments .comment .author .comment-date {
    font-style: normal;
    font-weight: 400
}

#lp-announcements #comments .list-comments .comment .message {
    padding: 0;
    background: 0 0;
    border: none;
    display: inline-block;
    width: 100%;
    margin: 0
}

#lp-announcements #comments .comment-respond #reply-title,
#lp-announcements #comments .comment-respond .logged-in-as,
#lp-announcements #comments .list-comments .comment .message:before {
    display: none
}

#lp-announcements #comments .form-comment {
    padding-left: 30px
}

#lp-announcements #comments .comment-respond {
    border-top: 1px solid #eee;
    padding: 30px 0 0;
    margin-top: 30px
}

#lp-announcements #comments .comment-respond form {
    display: flex
}

#lp-announcements #comments .comment-respond form textarea {
    max-height: 50px
}

#lp-announcements #comments .comment-respond form p.form-submit {
    display: inline-block;
    width: auto
}

body.course-item-popup .content-item-summary button {
    margin-top: 30px
}

body.course-item-popup #learn-press-content-item .course-item-title {
    font-size: 30px
}

.single-lp_course .course-learning-summary .course-wishlist {
    display: none
}

.course-students-list .students {
    display: grid;
    grid-gap: 30px;
    margin: 0
}

.course-students-list .students li .user-info {
    margin: 0;
    width: auto;
    line-height: 32px;
    float: none
}

.course-students-list .students li .user-info img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%
}

.course-students-list .students li .user-info .name {
    margin-left: 10px;
    text-transform: capitalize;
    color: #333;
    font-weight: 700
}

.course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link {
    display: flex;
    justify-content: space-between;
    padding: 5px 0
}

.course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link:before {
    display: none
}

.course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link .item-name {
    padding: 0
}

.course-curriculum ul.curriculum-sections .section-content .course-item .section-item-link .item-name:before {
    content: "\f0f6";
    font-family: FontAwesome;
    width: 25px;
    display: inline-flex
}

.course-author .author-name img {
    margin-right: 15px
}

.list-course-instructors .author-wrapper .author-avatar {
    width: 96px;
    float: left;
    margin-right: 15px
}

.course-curriculum ul.curriculum-sections .section-header .section-desc {
    line-height: normal
}

#lp-single-course .course-summary .course-thumbnail a {
    pointer-events: none;
    cursor: default
}

.course-landing-summary .course-meta {
    margin-top: 30px;
    display: flex;
    align-items: center
}

.course-landing-summary .course-meta .course-price {
    margin: 0 20px 0 0
}

.course-landing-summary .course-meta .lp-course-buttons {
    margin-bottom: 0
}

.lp-single-course .course-author .author-name a {
    text-transform: uppercase;
    margin-top: 10px
}

.lp-single-course .course-author .author-name img {
    margin-right: 0
}

.course-author h3 {
    font-size: 18px;
    text-transform: uppercase
}

.thim-related-course {
    margin-top: 50px
}

.thim-related-course .related-title {
    margin: 0 0 30px;
    font-size: 24px;
    text-transform: uppercase
}

.thim-related-course .wrapper-course-thumbnail {
    position: relative;
    overflow: hidden
}

.thim-related-course .wrapper-course-thumbnail .price-ht {
    margin: 0;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 5px 10px;
    display: inline-block;
    color: #fff;
    text-transform: uppercase
}

.thim-related-course .wrapper-course-thumbnail .price-ht .course-price {
    color: #fff!important
}

.thim-related-course .course-title {
    margin-top: 20px
}

.thim-related-course .course-title a {
    font-size: 18px
}

.lp-single-course .course-price {
    margin-bottom: 0!important
}

.learn-press-course-results-progress {
    border: 2px solid #e7e7e7;
    margin-right: 0
}

.learn-press-course-results-progress .items-progress .number {
    display: inline-block;
    margin-bottom: 10px
}

.learn-press-course-results-progress .course-progress,
.learn-press-course-results-progress .items-progress {
    margin: 10px 0 30px;
    width: 50%;
    float: left;
    padding: 0 20px
}

.learn-press-course-results-progress .course-progress .lp-course-status,
.learn-press-course-results-progress .items-progress .lp-course-status {
    margin-bottom: 10px
}

.course-tabs #learn-press-course-curriculum .section-content {
    padding-top: 10px
}

#learn-press-content-item iframe {
    max-width: 100%;
    width: 100%
}

.content-item-wrap #comments {
    display: none!important
}

form.completed {
    padding: 10px 30px;
    display: inline-block;
    color: #fff;
    text-transform: uppercase
}

#lp-single-course .course-summary .course-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

#lp-single-course .course-meta .course-price {
    display: inline-block;
    line-height: 45px;
    padding: 0 12px;
    height: 45px;
    color: #fff;
    text-transform: uppercase;
    margin-right: 20px;
    font-size: 13px;
    font-weight: 700
}

#lp-single-course .course-meta .course-price .price {
    font-size: inherit
}

#learn-press-course .course-students,
.single-lp_course .course-wishlist,
.single-lp_course .course-wishlisted {
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    color: #fff;
    padding: 0 12px;
    display: inline-block;
    text-transform: uppercase;
    font-weight: 700
}

#learn-press-course .course-students {
    margin-right: 20px
}

.single-lp_course .course-wishlist,
.single-lp_course .course-wishlisted {
    border: none;
    margin-left: 15px;
    transition: all .5s
}

.quiz-clock {
    display: inline-block;
    width: 100%
}

.quiz-countdown {
    padding: 0
}

.quiz-countdown.quiz-timer {
    float: left;
    margin: 20px 0;
    padding: 10px 20px
}

.quiz-countdown .quiz-countdown {
    padding: 0
}

.single-quiz i {
    margin: 0
}

.single-quiz a {
    color: #aaa;
    text-decoration: underline
}

.hid {
    display: none
}

.learn-press .quiz-summary h1.entry-title {
    padding: 20px 0
}

.learn-press .quiz-summary .quiz-top-meta {
    padding-top: 20px;
    padding-bottom: 20px
}

.course-instructor {
    display: inline;
    font-style: italic
}

.course-instructor .avatar {
    border-radius: 50%;
    margin-right: 5px
}

.course-instructor a {
    font-weight: 700;
    text-decoration: none
}

.forum-link {
    display: inline;
    float: right
}

.quiz-sidebar .button-finish-quiz,
.quiz-sidebar .button-start-quiz {
    font-size: 16px;
    width: 100%;
    height: 80px;
    color: #fff;
    border-radius: 0
}

.quiz-sidebar .button-finish-quiz:hover,
.quiz-sidebar .button-start-quiz:hover {
    background-color: #aaa
}

.quiz-sidebar .quiz-clock {
    background-color: #2c3339;
    height: 300px;
    padding-top: 40px
}

.quiz-sidebar .quiz-clock .quiz-timer {
    font-weight: 700;
    color: #fff;
    width: 200px;
    height: 200px;
    background-color: #1f242c;
    border-radius: 50%;
    margin: 0 auto;
    padding-top: 35px
}

.quiz-sidebar .quiz-clock .quiz-timer .quiz-time-remaining-text {
    padding-bottom: 15px
}

.quiz-sidebar .quiz-clock .quiz-timer .quiz-time-remaining-label {
    padding-top: 15px
}

.quiz-sidebar .quiz-questions {
    padding: 35px 20px;
    background-color: #f6f9fa
}

.quiz-sidebar .quiz-questions h4 {
    font-weight: 700
}

.quiz-sidebar .quiz-questions h4.unanswered i {
    color: #ddd
}

.quiz-sidebar .quiz-questions hr {
    margin: 20px 0
}

.quiz-question-nav,
.quiz-sidebar {
    margin-top: 0
}

.learn-press .quiz-started .quiz-question-nav-buttons {
    padding-top: 20px;
    padding-bottom: 20px;
    margin-top: 35px
}

.quiz-question-nav {
    float: none
}

.quiz-question-nav .quiz-question-nav-buttons {
    overflow: hidden
}

.quiz-question-nav .quiz-question-nav-buttons .next-question,
.quiz-question-nav .quiz-question-nav-buttons .prev-question {
    border: none;
    background: 0 0;
    color: #aaa;
    text-decoration: underline
}

.quiz-question-nav .quiz-question-nav-buttons .prev-question {
    float: left
}

.quiz-question-nav .quiz-question-nav-buttons .next-question {
    float: right
}

.quiz-result {
    margin: 10px 0 30px
}

.back-to-course,
.quiz-questions .lpr-question-hint {
    margin-left: 15px
}

.quiz-questions .lpr-question-hint .correct label {
    margin-bottom: 0;
    line-height: 25px
}

button.button-retake-quiz {
    width: 100%;
    color: #fff;
    margin-bottom: 25px;
    padding: 8px 0
}

button.button-retake-quiz:hover {
    background: #323945
}

#learning-curriculum .course-curriculum>h3 {
    color: #fff;
    padding: 20px;
    margin-top: -15px;
    margin-bottom: 30px
}

.lp-quiz-buttons button {
    height: 40px;
    display: block;
    padding: 0 20px;
    background: #b9b9b9;
    border: 0;
    border-radius: 5px;
    color: #fff;
    text-transform: uppercase;
    line-height: 40px;
    font-size: 15px
}

.lp-quiz-buttons button:hover {
    background: #a0a0a0
}

.lp-quiz-buttons .complete-quiz button {
    background: #13900b
}

.lp-quiz-buttons .complete-quiz button:hover {
    background: #0d6107
}

.lp-quiz-buttons .next-question button {
    background: #259688
}

.lp-quiz-buttons .next-question button:hover {
    background: #1b6d63
}

.widget_lp-widget-featured-courses,
.widget_lp-widget-popular-courses,
.widget_lp-widget-recent-courses {
    position: relative;
    overflow: hidden
}

.widget_lp-widget-featured-courses .widget-title,
.widget_lp-widget-popular-courses .widget-title,
.widget_lp-widget-recent-courses .widget-title {
    font-size: 24px;
    margin-bottom: 30px;
    text-transform: uppercase
}

.widget_lp-widget-featured-courses .widget-body,
.widget_lp-widget-popular-courses .widget-body,
.widget_lp-widget-recent-courses .widget-body {
    margin: 0 -15px
}

.widget_lp-widget-featured-courses .widget-body:after,
.widget_lp-widget-featured-courses .widget-body:before,
.widget_lp-widget-popular-courses .widget-body:after,
.widget_lp-widget-popular-courses .widget-body:before,
.widget_lp-widget-recent-courses .widget-body:after,
.widget_lp-widget-recent-courses .widget-body:before {
    content: " ";
    display: table
}

.widget_lp-widget-featured-courses .widget-body:after,
.widget_lp-widget-popular-courses .widget-body:after,
.widget_lp-widget-recent-courses .widget-body:after {
    clear: both
}

.widget_lp-widget-featured-courses .widget-body .course-entry,
.widget_lp-widget-popular-courses .widget-body .course-entry,
.widget_lp-widget-recent-courses .widget-body .course-entry {
    width: 33.33%;
    float: left;
    padding: 0 15px 20px
}

.widget-area .widget_lp-widget-featured-courses .widget-body .course-entry,
.widget-area .widget_lp-widget-popular-courses .widget-body .course-entry,
.widget-area .widget_lp-widget-recent-courses .widget-body .course-entry {
    width: 100%
}

.widget_lp-widget-featured-courses .widget-body .course-entry .course-cover,
.widget_lp-widget-popular-courses .widget-body .course-entry .course-cover,
.widget_lp-widget-recent-courses .widget-body .course-entry .course-cover {
    height: 180px
}

.widget_lp-widget-featured-courses .widget-body .course-entry .course-cover img,
.widget_lp-widget-popular-courses .widget-body .course-entry .course-cover img,
.widget_lp-widget-recent-courses .widget-body .course-entry .course-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.widget_lp-widget-featured-courses .widget-body .course-entry .course-detail .course-description,
.widget_lp-widget-popular-courses .widget-body .course-entry .course-detail .course-description,
.widget_lp-widget-recent-courses .widget-body .course-entry .course-detail .course-description {
    margin: 15px 0 20px
}

.widget_lp-widget-featured-courses .widget-body .course-entry .course-detail .course-title,
.widget_lp-widget-popular-courses .widget-body .course-entry .course-detail .course-title,
.widget_lp-widget-recent-courses .widget-body .course-entry .course-detail .course-title {
    font-size: 18px;
    color: inherit
}

.widget_lp-widget-featured-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field,
.widget_lp-widget-popular-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field,
.widget_lp-widget-recent-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field {
    margin-bottom: 10px;
    width: 49%;
    float: left;
    color: #fff;
    padding: 0 20px;
    height: 45px;
    line-height: 45px;
    font-size: 13px;
    text-transform: uppercase;
    text-align: center
}

.widget_lp-widget-featured-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field:nth-child(2n),
.widget_lp-widget-popular-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field:nth-child(2n),
.widget_lp-widget-recent-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field:nth-child(2n) {
    float: right
}

.widget_lp-widget-featured-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field>a,
.widget_lp-widget-popular-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field>a,
.widget_lp-widget-recent-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field>a {
    display: block;
    height: 45px;
    width: 100%;
    color: #fff
}

.widget_lp-widget-featured-courses .widget-footer,
.widget_lp-widget-popular-courses .widget-footer,
.widget_lp-widget-recent-courses .widget-footer {
    position: absolute;
    top: 5px;
    right: 0
}

.post-type-archive-lp_course .widget_lp-widget-featured-courses .widget-footer,
.post-type-archive-lp_course .widget_lp-widget-popular-courses .widget-footer,
.post-type-archive-lp_course .widget_lp-widget-recent-courses .widget-footer {
    display: none!important
}

.widget-area .widget_lp-widget-featured-courses .widget-footer a,
.widget-area .widget_lp-widget-popular-courses .widget-footer a,
.widget-area .widget_lp-widget-recent-courses .widget-footer a {
    float: left!important;
    display: block;
    height: 45px;
    line-height: 45px;
    color: #fff!important;
    padding: 0 20px;
    text-align: center;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
    width: 100%
}

.widget-area .widget_lp-widget-featured-courses .widget-footer,
.widget-area .widget_lp-widget-popular-courses .widget-footer,
.widget-area .widget_lp-widget-recent-courses .widget-footer {
    position: static
}

.widget_lp-widget-featured-courses .widget-footer a:after,
.widget_lp-widget-popular-courses .widget-footer a:after,
.widget_lp-widget-recent-courses .widget-footer a:after {
    font-family: FontAwesome;
    content: "\f101"
}

.widget-area .widget_lp-widget-featured-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field,
.widget-area .widget_lp-widget-popular-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field,
.widget-area .widget_lp-widget-recent-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field {
    background: 0 0;
    color: #333;
    text-transform: capitalize;
    border: 1px solid #eee
}

.widget-area .widget_lp-widget-featured-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field>a,
.widget-area .widget_lp-widget-popular-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field>a,
.widget-area .widget_lp-widget-recent-courses .widget-body .course-entry .course-detail .course-meta-data .course-meta-field>a {
    color: #333
}

.main-top {
    clear: both;
    position: relative;
    background-size: cover;
    overflow: hidden;
    z-index: 8;
    background-repeat: no-repeat;
    background-color: #666;
    background-position: center
}

.main-top .overlay-top-header {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 1
}

.main-top .content {
    position: absolute;
    z-index: 3;
    right: 0;
    left: 0;
    border: 0;
    margin: auto;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%)
}

.main-top .content h1,
.main-top .content h2 {
    margin-top: 0;
    text-align: inherit;
    line-height: 48px;
    letter-spacing: .05em
}

#breadcrumbs li,
#breadcrumbs li a {
    line-height: 28px;
    display: inline-block
}

.main-top .content .banner-description {
    font-weight: 300;
    text-align: inherit
}

#breadcrumbs {
    padding: 0;
    margin: 20px 0 0;
    border: none
}

#breadcrumbs li {
    list-style: none
}

#breadcrumbs li span.breadcrum-icon {
    margin: 0 10px;
    filter: alpha(opacity=50);
    -ms-filter: "alpha(opacity=50)";
    -webkit-opacity: .5;
    -khtml-opacity: .5;
    -moz-opacity: .5;
    -ms-opacity: .5;
    -o-opacity: .5;
    opacity: .5
}

#breadcrumbs li:last-child .breadcrum-icon,
#breadcrumbs li:last-child:after {
    display: none
}

.search-form {
    position: relative;
    line-height: 42px;
    border: none
}

.search-form:after {
    content: "\f002";
    font: normal normal normal 14px/1 FontAwesome;
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 42px;
    text-align: center;
    line-height: 42px
}

.search-form label {
    width: 100%;
    display: inline-block;
    font-weight: 400;
    margin: 0
}

.search-form .search-field {
    line-height: 40px;
    background: #fff;
    height: 42px;
    padding: 0 60px 0 15px;
    font-size: 14px;
    width: 100%;
    border: 1px solid #eee;
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.search-form .search-submit {
    width: 40px;
    position: absolute;
    top: 0;
    right: 0;
    border: none;
    z-index: 2;
    background: 0 0!important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    line-height: 42px;
    height: 42px;
    color: transparent;
    font-size: 0;
    font-weight: 700;
    text-transform: uppercase
}

.widget-area .widget {
    position: relative
}

.widget-area .widget .widget-title {
    margin-bottom: 50px;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    padding-bottom: 17px;
    position: relative;
    line-height: 1
}

.widget-area .widget .widget-title:before {
    content: '';
    border-top: 1px solid #ddd;
    width: 170px;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0
}

.widget-area .widget .widget-title:after {
    content: '';
    height: 4px;
    width: 50px;
    position: absolute;
    bottom: 1px;
    left: 0
}

.widget-area .widget.widget_archive ul li .children,
.widget-area .widget.widget_archive ul li .sub-menu,
.widget-area .widget.widget_categories ul li .children,
.widget-area .widget.widget_categories ul li .sub-menu,
.widget-area .widget.widget_meta ul li .children,
.widget-area .widget.widget_meta ul li .sub-menu,
.widget-area .widget.widget_nav_menu ul li .children,
.widget-area .widget.widget_nav_menu ul li .sub-menu,
.widget-area .widget.widget_pages ul li .children,
.widget-area .widget.widget_pages ul li .sub-menu,
.widget-area .widget.widget_recent_comments ul li .children,
.widget-area .widget.widget_recent_comments ul li .sub-menu,
.widget-area .widget.widget_recent_entries ul li .children,
.widget-area .widget.widget_recent_entries ul li .sub-menu {
    padding-left: 15px
}

.widget-area .widget.widget_archive ul li .children li,
.widget-area .widget.widget_archive ul li .sub-menu li,
.widget-area .widget.widget_categories ul li .children li,
.widget-area .widget.widget_categories ul li .sub-menu li,
.widget-area .widget.widget_meta ul li .children li,
.widget-area .widget.widget_meta ul li .sub-menu li,
.widget-area .widget.widget_nav_menu ul li .children li,
.widget-area .widget.widget_nav_menu ul li .sub-menu li,
.widget-area .widget.widget_pages ul li .children li,
.widget-area .widget.widget_pages ul li .sub-menu li,
.widget-area .widget.widget_recent_comments ul li .children li,
.widget-area .widget.widget_recent_comments ul li .sub-menu li,
.widget-area .widget.widget_recent_entries ul li .children li,
.widget-area .widget.widget_recent_entries ul li .sub-menu li {
    border: none;
    padding-bottom: 0
}

.widget-area .widget.widget_archive ul li a:before,
.widget-area .widget.widget_categories ul li a:before,
.widget-area .widget.widget_meta ul li a:before,
.widget-area .widget.widget_nav_menu ul li a:before,
.widget-area .widget.widget_pages ul li a:before,
.widget-area .widget.widget_recent_comments ul li a:before,
.widget-area .widget.widget_recent_comments ul li:before,
.widget-area .widget.widget_recent_entries ul li a:before {
    content: "\f0da";
    font-family: FontAwesome;
    margin-right: 10px;
    color: #333;
    font-size: 14px
}

.widget-area .widget.widget_recent_comments ul li a:before {
    display: none
}

.widget-area .widget.widget_rss ul li .rsswidget {
    width: 100%;
    display: inline-block
}

.widget-area .widget.widget_rss .rss-date {
    font-size: 16px;
    font-style: italic
}

.widget-area .widget ul {
    margin: 0
}

.widget-area .widget ul li {
    margin: 0;
    padding: 10px 0;
    list-style: none;
    line-height: 20px;
    display: block
}

.widget-area .widget ul li a {
    font-weight: 400;
    font-size: 16px;
    text-transform: capitalize;
    color: #666;
    line-height: 22px
}

.widget-area .widget select {
    max-width: 100%
}

.widget-area .widget .dk-select {
    width: 100%;
    line-height: 40px
}

.widget-area .widget .dk-select .dk-selected {
    height: 40px
}

.widget-area .widget .dk-select ul li {
    padding: 10px
}

.widget-area .widget.widget_thim_recent_posts ul {
    margin: 10px 0 0
}

.widget-area .widget.widget_thim_recent_posts ul li {
    margin-bottom: 40px;
    display: inline-block;
    padding: 0 0 0 130px;
    position: relative;
    min-height: 100px
}

.widget-area .widget.widget_thim_recent_posts ul li:last-child {
    margin: 0
}

.widget-area .widget.widget_thim_recent_posts ul li.no-thumbnail {
    padding: 0
}

.widget-area .widget.widget_thim_recent_posts ul li .post_thumbnail {
    position: absolute;
    top: 0;
    left: 0
}

.widget-area .widget.widget_thim_recent_posts ul li .title {
    margin: 0;
    line-height: 24px;
    font-size: 14px;
    position: relative;
    top: -4px
}

.widget-area .widget.widget_thim_recent_posts ul li .title a {
    font-weight: 700;
    font-size: 14px;
    text-transform: none;
    color: #333;
    line-height: 24px;
    -webkit-transition: all .5s;
    -khtml-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.widget-area .widget.widget_thim_recent_posts ul li .time {
    margin-top: 20px;
    font-size: 12px;
    font-style: italic;
    color: #666;
    font-weight: 700
}

.widget-area .widget.widget_social_link_widget ul {
    width: 100%;
    float: left;
    margin-top: 5px
}

.widget-area .widget.widget_social_link_widget ul li {
    width: 100%;
    float: left;
    position: relative;
    margin-bottom: 10px;
    padding: 0
}

.widget-area .widget.widget_social_link_widget ul li:last-child {
    margin: 0
}

.widget-area .widget.widget_social_link_widget ul li a {
    color: #fff;
    line-height: 40px;
    font-size: 16px;
    width: 100%;
    float: left;
    border: none;
    height: 40px;
    text-align: left;
    border-radius: 0
}

.widget-area .widget.widget_social_link_widget ul li i {
    width: 47px;
    float: left;
    margin-right: 28px;
    position: relative;
    text-align: center;
    font-size: 14px;
    line-height: 40px;
    display: inline-block
}

.widget-area .widget.widget_social_link_widget ul li i:after {
    content: '';
    height: 26px;
    width: 1px;
    background: #fff;
    position: absolute;
    right: 0;
    top: 50%;
    margin-top: -13px
}

.widget-area .widget.widget_social_link_widget ul li.facebook {
    background: #3b5998
}

.widget-area .widget.widget_social_link_widget ul li.twitter {
    background: #55acee
}

.widget-area .widget.widget_social_link_widget ul li.skype {
    background: #00aff0
}

.widget-area .widget.widget_social_link_widget ul li.pinterest {
    background: #cb2027
}

.widget-area .widget.widget_social_link_widget ul li.google {
    background: #dd4b39
}

.widget-area .widget.widget_social_link_widget ul li.tumblr {
    background: #32506d
}

.widget-area .widget.widget_social_link_widget ul li.linkedin {
    background: #007bb5
}

.widget-area .widget.widget_social_link_widget ul li.rss {
    background: #f60
}

.widget-area .widget.widget_social_link_widget ul li.instagram {
    background: #125688
}

.widget-area .widget.widget_social_link_widget ul li.youtube {
    background: #b00
}

.blog-content article,
.page-content article {
    margin-bottom: 40px
}

.blog-content article.sticky .content-inner .entry-content,
.page-content article.sticky .content-inner .entry-content {
    padding: 30px;
    border: none
}

.blog-content article .entry-title,
.page-content article .entry-title {
    margin-top: 8px;
    margin-bottom: 5px;
    line-height: 1.4em
}

.blog-content article .entry-meta,
.page-content article .entry-meta {
    font-size: 12px;
    color: #666;
    font-style: italic;
    margin-bottom: 0
}

.blog-content article .entry-meta>span,
.page-content article .entry-meta>span {
    display: inline-block;
    margin-right: 5px
}

.blog-content article .entry-meta>span a,
.page-content article .entry-meta>span a {
    font-weight: 700;
    text-transform: capitalize;
    font-style: italic
}

.blog-content article .entry-meta .entry-date,
.page-content article .entry-meta .entry-date {
    font-weight: 700
}

.blog-content article .flexslider .flex-direction-nav a:before,
.page-content article .flexslider .flex-direction-nav a:before {
    color: #fff
}

.blog-content article.format-quote blockquote,
.page-content article.format-quote blockquote {
    font-style: italic
}

.blog-content article.format-quote blockquote a:hover,
.page-content article.format-quote blockquote a:hover {
    text-decoration: underline
}

#comments .list-comments .comment-list .comment .content-comment .author span .comment-edit-link:hover,
#comments .list-comments .comment-list .comment .content-comment .author span .comment-reply-link:hover {
    text-decoration: none
}

.blog-content article.format-quote blockquote p,
.page-content article.format-quote blockquote p {
    font-weight: 100;
    margin-bottom: 10px
}

.blog-content {
    margin-left: -15px;
    margin-right: -15px
}

.col-sm-6.aligncenter .blog-content h2.entry-title {
    font-size: 26px
}

.blog-content article .content-inner .post-image,
.blog-content article .content-inner .thumbnail {
    position: relative;
    overflow: hidden
}

.blog-content article .content-inner .post-image img,
.blog-content article .content-inner .thumbnail img {
    width: 100%;
    -webkit-transition: all 1s;
    -khtml-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s
}

.blog-content article .content-inner .readmore a:before,
.loop-pagination li .page-numbers {
    -webkit-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s
}

.blog-content article .content-inner .entry-title {
    font-size: 22px;
    line-height: 34px;
    margin: 0 0 16px
}

.blog-content article .content-inner .entry-content {
    padding: 20px 0 35px;
    border-bottom: 1px solid #ddd
}

.blog-content article .content-inner .entry-content .entry-meta .comment-total {
    display: none
}

.blog-content article .content-inner .readmore {
    margin-top: 20px
}

.blog-content article .content-inner .readmore a {
    position: relative;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase
}

.blog-content article .content-inner .readmore a:after,
.blog-content article .content-inner .readmore a:before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    border-bottom: 2px solid;
    border-color: transparent
}

.blog-content article .content-inner .readmore a:before {
    z-index: 2;
    -webkit-transform: scale(0, 1);
    -moz-transform: scale(0, 1);
    -ms-transform: scale(0, 1);
    -o-transform: scale(0, 1);
    -khtml-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s
}

.blog-content article .content-inner .readmore a:hover:before {
    -webkit-transform: scale(1, 1);
    -moz-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1)
}

.blog-content article:hover .thumbnail img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1)
}

.loop-pagination {
    margin: 10px 0 0;
    text-align: center
}

.loop-pagination li {
    display: inline-block;
    list-style: none
}

.loop-pagination li .page-numbers {
    font-weight: 700;
    display: inline-block;
    width: 30px;
    text-align: center;
    height: 30px;
    line-height: 30px;
    margin: 0 5px;
    background: #fff;
    border: none;
    color: #999;
    -khtml-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s
}

.loop-pagination li .page-numbers.current,
.loop-pagination li a:focus,
.loop-pagination li a:hover {
    background: #ddd;
    color: #333
}

.loop-pagination li .page-numbers.next,
.loop-pagination li .page-numbers.prev {
    font-size: 0
}

.loop-pagination li .page-numbers.next:before,
.loop-pagination li .page-numbers.prev:before {
    font-family: FontAwesome;
    font-size: 14px;
    line-height: 30px
}

.loop-pagination li .page-numbers.prev:before {
    content: "\f104"
}

.loop-pagination li .page-numbers.next:before {
    content: "\f105"
}

.loop-pagination li a {
    -webkit-transition: all .3s ease-in-out 0s;
    -khtml-transition: all .3s ease-in-out 0s;
    -moz-transition: all .3s ease-in-out 0s;
    -ms-transition: all .3s ease-in-out 0s;
    -o-transition: all .3s ease-in-out 0s;
    transition: all .3s ease-in-out 0s
}

.page-content article .content-inner {
    margin-bottom: 30px
}

.page-content article .content-inner .post-formats-wrapper iframe {
    width: 100%
}

.page-content article .content-inner .entry-title {
    font-size: 26px;
    line-height: 34px
}

.page-content article .content-inner .entry-content {
    padding: 23px 0 45px
}

.page-content article .content-inner .entry-content .entry-header {
    margin-bottom: 0
}

.page-content article .content-inner .entry-content .entry-header .entry-title {
    margin-top: 0;
    margin-bottom: 18px
}

.page-content article .content-inner .entry-content .entry-meta {
    margin-bottom: 38px
}

.page-content article .content-inner .entry-content .entry-meta span.comment-total {
    margin-right: 0;
    margin-left: 20px
}

.page-content article .content-inner .entry-content .entry-description {
    margin-bottom: 39px;
    line-height: 28px
}

.page-content article .content-inner .entry-content .entry-tag-share ul {
    margin: 0
}

.page-content article .content-inner .entry-content .entry-tag-share .tags-links {
    color: #666;
    line-height: 19px;
    margin: 0 0 21px;
    font-weight: 700;
    display: block
}

.page-content article .content-inner .entry-content .entry-tag-share .tags-links a {
    font-weight: 400
}

.page-content article .content-inner .entry-content .entry-tag-share .share-click {
    display: inline-block;
    float: left;
    width: 100%
}

.page-content article .content-inner .entry-content .entry-tag-share .share-click .thim-social-share>li:last-child {
    margin-right: 0
}

.page-content article .content-inner .entry-content .entry-tag-share .share-click h3 {
    font-size: 16px;
    color: #666;
    line-height: 19px;
    margin: 0 0 21px
}

.list-about li a,
.page-content article .nav-single h3 a {
    color: #333
}

.page-content article .nav-single {
    padding: 26px 0 22px;
    border-top: 2px solid #979797;
    width: 100%;
    display: inline-block
}

.page-content article .nav-single .nav-previous {
    width: 45%;
    float: left
}

.page-content article .nav-single .nav-next {
    width: 45%;
    float: right;
    text-align: right
}

.page-content article .nav-single h3 {
    line-height: 28px;
    font-size: 18px;
    margin: 0
}

.page-content article .nav-single h3 span {
    display: block;
    font-size: 16px;
    color: #666;
    margin-bottom: 9px;
    line-height: 19px
}

.page-content article .thim-about-author {
    padding: 40px 0;
    border-bottom: 2px solid #979797
}

.page-content article .thim-about-author .author-wrapper {
    display: table
}

.page-content article .thim-about-author .author-wrapper .author-avatar {
    text-align: center;
    display: table-cell;
    min-width: 100px
}

.page-content article .thim-about-author .author-wrapper .author-avatar img {
    border-radius: 100%;
    margin-bottom: 15px
}

.page-content article .thim-about-author .author-wrapper .author-avatar .author-top .name {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase
}

.page-content article .thim-about-author .author-wrapper .author-avatar .author-top .role {
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    font-style: italic;
    color: #999;
    text-transform: capitalize
}

.page-content article .thim-about-author .author-wrapper .author-bio {
    padding-left: 50px;
    display: table-cell;
    vertical-align: top
}

.page-content article .thim-about-author .author-wrapper .author-bio .author-description {
    margin-bottom: 30px
}

.page-content article .thim-about-author .author-wrapper .author-bio .thim-author-social {
    margin: 0;
    padding: 0
}

.page-content article .thim-about-author .author-wrapper .author-bio .thim-author-social li {
    display: inline-block;
    list-style: none;
    margin-right: 10px
}

.page-content article .thim-about-author .author-wrapper .author-bio .thim-author-social li:last-child {
    margin-right: 0
}

.page-content article .thim-about-author .author-wrapper .author-bio .thim-author-social li a i {
    width: 30px;
    height: 30px;
    text-align: center;
    line-height: 30px;
    border: 1px solid #999;
    color: #999;
    border-radius: 100%
}

.page-content article .thim-about-author .author-wrapper .author-bio .thim-author-social li a:hover.facebook i {
    color: #3b5999;
    border-color: #3b5999
}

.page-content article .thim-about-author .author-wrapper .author-bio .thim-author-social li a:hover.twitter i {
    color: #55acee;
    border-color: #55acee
}

.page-content article .thim-about-author .author-wrapper .author-bio .thim-author-social li a:hover.skype i {
    color: #00aff0;
    border-color: #00aff0
}

.page-content article .thim-about-author .author-wrapper .author-bio .thim-author-social li a:hover.pinterest i {
    color: #bd081c;
    border-color: #bd081c
}

.page-content article.format-chat .group-chat li {
    font-weight: 700
}

.page-content article.format-chat .group-chat li .chat-name {
    min-width: 80px;
    display: inline-block
}

.page-content article.format-chat .group-chat li .chat-message {
    font-weight: 400
}

.page-content article .related-archive {
    background: #fff;
    padding: 40px 0;
    border-bottom: 2px solid #979797
}

.page-content article .related-archive .related-title {
    font-size: 16px;
    color: #666;
    margin: 0 0 26px
}

.page-content article .related-archive ul {
    list-style: none;
    margin-bottom: 0
}

.page-content article .related-archive ul li .rel-post-text .entry-title {
    margin-top: 25px;
    font-size: 18px
}

.page-content article .related-archive ul li .rel-post-text .entry-title.no-images {
    margin-top: 0
}

.thim-social-share {
    margin: 35px 0 0;
    display: block
}

.thim-social-share li {
    display: inline-block;
    list-style: none;
    float: left;
    max-height: 20px;
    line-height: 20px;
    margin-right: 10px;
    max-width: 95px
}

.thim-social-share li.google-plus {
    max-width: 57px
}

#comments .list-comments {
    background-color: #fff;
    margin-bottom: 30px;
    margin-top: 42px;
    border-top: 2px solid #979797;
    padding-top: 45px
}

#comments .list-comments .comments-title {
    margin-bottom: 50px;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    padding-bottom: 17px;
    position: relative;
    line-height: 1;
    font-size: 24px
}

#comments .list-comments .comment-list {
    margin: 0
}

#comments .list-comments .comment-list .comment {
    list-style: none;
    padding: 35px 0 0;
    position: relative
}

#comments .list-comments .comment-list .comment:last-child .content-comment .message {
    padding-bottom: 0
}

#comments .list-comments .comment-list .comment:last-child .content-comment .message:before {
    display: none
}

#comments .list-comments .comment-list .comment img {
    border-radius: 100%;
    float: left;
    margin-right: 10px
}

#comments .list-comments .comment-list .comment .author-name,
#comments .list-comments .comment-list .comment .author-name a {
    text-transform: capitalize
}

#comments .list-comments .comment-list .comment .comment-date {
    font-size: 13px;
    font-weight: 300;
    font-style: italic
}

#comments .list-comments .comment-list .comment .content-comment {
    width: auto
}

#comments .list-comments .comment-list .comment .content-comment .author {
    font-size: 16px;
    line-height: 19px;
    font-weight: 700;
    margin-bottom: 12px
}

#comments .list-comments .comment-list .comment .content-comment .author .comment-extra-info {
    font-size: 14px;
    margin-left: 30px;
    font-weight: 400
}

#comments .list-comments .comment-list .comment .content-comment .author span .comment-reply-link {
    float: right;
    text-transform: uppercase;
    font-size: 14px
}

#comments .list-comments .comment-list .comment .content-comment .author span .comment-edit-link {
    font-size: 14px;
    font-weight: 700;
    margin-left: 10px;
    text-transform: uppercase
}

#comments .list-comments .comment-list .comment .content-comment .message {
    line-height: 28px;
    position: relative;
    padding-bottom: 23px;
    padding-left: 60px
}

#comments .list-comments .comment-list .comment .content-comment .message:before {
    content: '';
    position: absolute;
    left: 60px;
    right: 0;
    bottom: 0;
    border-top: 1px solid #eee
}

#comments .list-comments .comment-list .comment .content-comment .message img.emoji {
    float: none
}

#comments .list-comments .comment-list .comment:first-child {
    padding-top: 0;
    border-top-color: transparent
}

#comments .list-comments .comment-list .comment .children {
    margin: 0;
    position: relative;
    padding-top: 35px;
    padding-left: 60px
}

#comments .list-comments .comment-list .comment .children li:last-child .content-comment .message {
    padding-bottom: 23px
}

#comments .list-comments .comment-list .comment .children li:last-child .content-comment .message:before {
    display: block
}

#comments .comment-respond {
    background-color: #fff;
    padding: 45px 0 0;
    margin-top: 42px;
    border-top: 2px solid #979797
}

#comments .comment-respond #reply-title {
    margin-bottom: 50px;
    font-weight: 700;
    margin-top: 0;
    text-transform: uppercase;
    padding-bottom: 17px;
    position: relative;
    line-height: 1;
    font-size: 24px
}

#comments .comment-respond #reply-title small {
    font-weight: 700;
    font-size: 12px;
    margin: 0 10px
}

#comments .comment-respond .comment-form .comment-notes {
    display: none
}

#comments .comment-respond .comment-form>p {
    width: 50%;
    display: inline-block;
    margin-right: 0;
    float: left;
    margin-bottom: 30px
}

#comments .comment-respond .comment-form textarea,
#comments .comment-respond .comment-form>p input[type=text],
#comments .comment-respond .comment-form>p input[type=email] {
    width: 100%
}

#comments .comment-respond .comment-form>p.comment-form-author {
    padding-right: 15px
}

#comments .comment-respond .comment-form>p.comment-form-email {
    padding-left: 15px
}

#comments .comment-respond .comment-form>p.comment-form-comment,
#comments .comment-respond .comment-form>p.form-submit {
    width: 100%;
    display: block
}

#comments .comment-respond .comment-form>p.form-submit {
    margin-bottom: 0
}

#comments .comment-respond .comment-form>p input.submit {
    border: 1px solid #ccc;
    height: 50px;
    line-height: 48px;
    padding: 0 45px;
    color: #616161;
    font-size: 14px;
    font-weight: 700;
    background: #fff
}

#comments .comment-respond .comment-form input[type=text],
#comments .comment-respond .comment-form input[type=email],
#comments .comment-respond .comment-form textarea {
    outline: 0;
    box-shadow: none;
    padding: 10px 20px;
    font-size: 14px;
    color: #999;
    float: left
}

#comments .comment-respond .comment-form input::-webkit-input-placeholder,
#comments .comment-respond .comment-form textarea::-webkit-input-placeholder {
    color: #999
}

#comments .comment-respond .comment-form input:-moz-placeholder,
#comments .comment-respond .comment-form textarea:-moz-placeholder {
    color: #999
}

#comments .comment-respond .comment-form input::-moz-placeholder,
#comments .comment-respond .comment-form textarea::-moz-placeholder {
    color: #999
}

#comments .comment-respond .comment-form input:-ms-input-placeholder,
#comments .comment-respond .comment-form textarea:-ms-input-placeholder {
    color: #999
}

.content-area,
.site-content {
    clear: both
}

footer#colophon .footer {
    padding: 40px 0 55px
}

footer#colophon .footer.no-padding {
    padding: 0
}

footer#colophon .widget-title {
    margin-top: 16px;
    margin-bottom: 20px;
    font-size: 20px;
    line-height: 30px;
    padding: 0 0 0 12px;
    position: relative
}

footer .footer-sidebars .widget_thim_featured_posts ul li .time {
    margin-top: 2px
}

footer .footer-sidebars .widget_thim_featured_posts ul li {
    margin-bottom: 15px
}

footer#colophon .widget_social_link_widget .widget-title {
    margin-bottom: 20px
}

footer#colophon .widget-title:before {
    content: '';
    width: 3px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0
}

footer#colophon .site-info {
    text-align: center
}

footer#colophon .site-info a:hover {
    text-decoration: underline
}

footer#colophon .footer-sidebars .col-md-20 {
    width: 20%
}

footer#colophon .footer-sidebars p {
    line-height: 34px;
    font-size: 14px
}

footer#colophon .footer-sidebars .widget_single-images {
    margin-bottom: 33px
}

footer#colophon .footer-sidebars .footer-info {
    margin-bottom: 20px
}

footer#colophon .footer-sidebars .list-link li {
    margin-bottom: 12px;
    line-height: 18px
}

footer#colophon .footer-sidebars .list-link li a {
    line-height: 18px;
    font-size: 14px;
    color: #fff
}

footer#colophon .footer-sidebars .list-link li a:before {
    margin-right: 10px
}

footer#colophon .footer-sidebars .thim-tweets .tweet-item {
    top: -5px
}

footer#colophon .copyright-content {
    padding: 30px 0;
    border-top: 1px solid transparent
}

footer#colophon .copyright-content ul {
    margin: 0;
    list-style: none
}

footer#colophon .copyright-content ul li {
    display: inline-block
}

footer#colophon .copyright-area .copyright-content a {
    font-weight: 700
}

@media (max-width:1200px) {
    body.responsive .thim-slider .slides .item-link .slider-content {
        top: 100px
    }
    body.responsive .list-link li a {
        font-size: 16px
    }
    body.responsive .thim-list-posts .item-post .article-title-wrapper h5 {
        font-size: 18px;
        line-height: 28px
    }
    body.responsive .thim-list-posts.style-3 .item-post {
        overflow: hidden
    }
    body.responsive .thim-list-posts.style-3 .item-post .article-title-wrapper h5 {
        font-size: 14px;
        line-height: 24px
    }
    body.responsive #home-gallery .gallery-info {
        width: 400px;
        margin-left: -200px;
        margin-top: -120px;
        height: 240px;
        padding-top: 45px
    }
}

@media (max-width:1200px) and (min-width:992px) {
    body.responsive .thim-testimonials .item-link {
        min-height: 410px
    }
}

@media (max-width:992px) {
    body.responsive .container {
        padding-left: 15px;
        padding-right: 15px
    }
    body.responsive .thim-slider .slides .item-link .slider-content {
        top: 50px;
        left: 50px
    }
    body.responsive .thim-slider .slides .item-link .slider-content .title {
        font-size: 24px;
        line-height: 30px;
        margin: 0 0 15px
    }
    body.responsive footer#colophon .footer {
        padding: 50px 0 20px
    }
    body.responsive .footer-sidebars>div {
        margin-bottom: 40px
    }
    body.responsive .error-404 .content-404 {
        padding-top: 0
    }
    body.responsive .error-404 .content-404 .intro {
        font-size: 40px
    }
}

@media (max-width:992px) and (min-width:769px) {
    body.responsive .navigation .width-navigation .inner-navigation .navbar>li.menu-item {
        padding: 0 20px
    }
    body.responsive .navigation .width-navigation .inner-navigation .navbar>li.menu-item:first-child {
        padding-left: 0
    }
    body.responsive .thim-icon-box h3 {
        font-size: 11px
    }
    body.responsive .list-link li {
        margin-bottom: 5px
    }
    body.responsive .list-link li a {
        font-size: 14px
    }
    body.responsive .thim-list-posts.style-3 .item-post {
        padding-left: 100px;
        min-height: 85px;
        margin-bottom: 25px
    }
    body.responsive .thim-list-posts.style-3 .item-post .article-image {
        width: 85px
    }
    body.responsive .thim-list-posts.style-3 .item-post .article-title-wrapper h5 {
        margin: 0 0 5px
    }
    body.responsive .thim-testimonials .item-link {
        padding-left: 220px;
        min-height: 322px
    }
    body.responsive .thim-testimonials .item-link .item-img {
        width: 200px
    }
    body.responsive .thim-testimonials .item-link .item-content .description {
        position: relative;
        font-size: 14px;
        line-height: 28px
    }
    body.responsive #home-gallery .gallery-info {
        width: 300px;
        margin-left: -150px;
        margin-top: -90px;
        height: 180px;
        padding-top: 30px
    }
    body.responsive #home-gallery .gallery-info .thim-heading {
        margin-bottom: 20px
    }
    body.responsive .footer-sidebars>div:nth-child(2n+1) {
        clear: both
    }
    body.responsive .thim-heading h3 {
        font-size: 20px;
        line-height: 28px
    }
    body.responsive .widget-area .widget.widget_thim_recent_posts ul li {
        margin-bottom: 20px;
        padding-left: 100px;
        min-height: 85px
    }
    body.responsive .widget-area .widget.widget_thim_recent_posts ul li .post_thumbnail {
        width: 85px
    }
    body.responsive .widget-area .widget.widget_thim_recent_posts ul li .time {
        margin-top: 10px
    }
    body.responsive .widget-area aside.widget .rsswidget,
    body.responsive .widget-area aside.widget .widget-title {
        font-size: 18px
    }
    .switcher {
        width: 100px !important;
    }
    .switcher .option {
        width: 98px !important;
    }
}

@media (max-width:768px) {
    body.responsive header#masthead.sticky-header.affix {
        z-index: 9999;
        position: fixed;
        width: 100%;
        top: 0;
        border-bottom: 1px solid #ddd;
        padding: 10px 0!important;
        background-color: #fff;
        -webkit-transition: all ease-out .3s;
        -khtml-transition: all ease-out .3s;
        -moz-transition: all ease-out .3s;
        -ms-transition: all ease-out .3s;
        -o-transition: all ease-out .3s;
        transition: all ease-out .3s
    }
    body.responsive header#masthead.sticky-header.affix .width-logo .sticky-logo img {
        width: 150px
    }
    body.responsive .visible-lg,
    body.responsive .visible-md,
    body.responsive .visible-sm,
    body.responsive .visible-xs {
        display: block!important
    }
    body.responsive .header-v3 .navigation-top,
    body.responsive .stack-center .width-logo {
        margin: 0!important
    }
    body.responsive .header-v3 .navigation-top>.tm-table,
    body.responsive .stack-center .width-logo>.tm-table {
        display: block
    }
    body.responsive .header-v3 .navigation-top .menu-mobile-effect,
    body.responsive .stack-center .width-logo .menu-mobile-effect {
        margin-top: 0
    }
    body.responsive header#masthead .width-logo {
        width: 100%;
        text-align: center
    }
    body.responsive header#masthead .logo {
        display: none
    }
    body.responsive header#masthead .mobile-logo {
        display: inline-block
    }
    body.responsive .thim-list-posts.style-1 .item-post .article-image .img-post,
    body.responsive .thim-list-posts.style-2 .item-post .article-image .img-post,
    body.responsive .thim-slider .slides .item-link .slider-content .description,
    body.responsive header .width-navigation,
    body.responsive header#masthead .header-v1 .header-right {
        display: none
    }
    body.responsive header#masthead .header-v1 {
        padding-top: 0;
        padding-bottom: 0
    }
    body.responsive header.site-header.header-overlay.affix {
        position: fixed
    }
    body.responsive header.site-header {
        padding-top: 20px;
        padding-bottom: 20px!important
    }
    body.responsive header .width-logo {
        float: left
    }
    body.responsive .thim-slider .slides .item-link .slider-content {
        right: 50px;
        width: auto
    }
    body.responsive .thim-slider .slides .item-link .slider-content .container {
        padding: 0
    }
    body.responsive .thim-slider .slides .item-link .slider-content .slider-content-inner {
        width: 100%
    }
    body.responsive .thim-slider .slides .item-link .slider-content .slider-button {
        padding: 0 30px;
        line-height: 40px
    }
    body.responsive #list-icon-box .panel-grid-cell {
        width: 33.33%;
        float: left
    }
    body.responsive #list-icon-box .panel-grid-cell:nth-child(3n) {
        border: none
    }
    body.responsive .thim-list-posts.style-1 .item-post .article-image .img-post-mobile,
    body.responsive .thim-list-posts.style-2 .item-post .article-image .img-post-mobile {
        display: block
    }
    body.responsive .thim-list-posts.style-1 .item-post .article-image img,
    body.responsive .thim-list-posts.style-2 .item-post .article-image img {
        width: 100%
    }
    body.responsive .thim-testimonials .item-link .item-content .description {
        font-size: 16px;
        line-height: 28px
    }
    body.responsive #home-gallery {
        margin-top: 30px
    }
    body.responsive .widget_thim_gallery .style-2 .row .item {
        width: 50%;
        float: left
    }
    body.responsive footer#colophon .widget_thim_gallery .row .item {
        width: 20%;
        float: left
    }
    body.responsive .error-404 .content-404 {
        padding-top: 50px;
        text-align: center
    }
    body.responsive .error-404 .image-404 .img {
        padding: 0;
        text-align: center
    }
    body.responsive #list-certificate .panel-grid-cell {
        width: 33.33%;
        float: left
    }
}

@media (max-width:767px) {
    body.responsive #secondary {
        margin-top: 50px
    }
}

@media (max-width:599px) {
    body.responsive .thim-icon-box h3 {
        font-size: 14px
    }
    body.responsive .thim-testimonials .item-link {
        padding-left: 220px;
        min-height: 322px
    }
    body.responsive .thim-testimonials .item-link .item-img {
        width: 200px
    }
    body.responsive .thim-testimonials .item-link .item-content .description {
        font-size: 14px;
        line-height: 26px
    }
    body.responsive #comments .list-comments .comment-list li .content-comment .message,
    body.responsive .page-content article .nav-single h3 {
        line-height: 24px;
        font-size: 14px
    }
    body.responsive #home-gallery .gallery-info {
        width: 300px;
        margin-left: -150px;
        margin-top: -90px;
        height: 180px;
        padding-top: 25px
    }
    body.responsive #home-gallery .gallery-info .thim-heading {
        margin-bottom: 20px
    }
    body.responsive .page-content article .nav-single h3 span {
        display: block;
        font-size: 14px
    }
    body.responsive #list-certificate .panel-grid-cell {
        width: 100%
    }
    body.responsive .single-image {
        text-align: center!important
    }
}

@media (max-width:480px) {
    body.responsive header#masthead .mobile-logo {
        width: 175px
    }
    body.responsive .thim-slider .slides .item-link .slider-content {
        top: 20px;
        left: 20px;
        right: 20px
    }
    body.responsive .thim-slider .slides .item-link .slider-content .title {
        font-size: 18px;
        line-height: 24px
    }
    body.responsive .thim-slider .slides .item-link .slider-content .slider-button {
        padding: 0 20px;
        line-height: 34px;
        font-weight: 400
    }
    body.responsive #list-icon-box .panel-grid-cell {
        width: 50%;
        border: none
    }
    body.responsive .action-info h3 {
        font-size: 24px;
        margin: 0 0 30px
    }
    body.responsive .thim-testimonials .item-link {
        padding: 0;
        min-height: 0
    }
    body.responsive .thim-testimonials .item-link .item-img {
        width: 100%;
        position: static
    }
    body.responsive #home-gallery .gallery-info {
        width: 240px;
        margin-left: -120px
    }
    body.responsive footer#colophon .widget_thim_gallery .row .item {
        width: 33.33%
    }
    body.responsive .error-404 .content-404 .intro {
        font-size: 30px;
        margin-bottom: 0
    }
    body.responsive .thim-social-share li {
        margin-bottom: 10px
    }
}

body.disable-responsive .container {
    width: 1170px;
    max-width: none!important
}

.sk-double-bounce,
.sk-rotating-plane {
    width: 40px;
    height: 40px;
    margin: 40px auto
}

body.disable-responsive .wrapper-container {
    min-width: 1170px!important;
    overflow: visible!important
}

body.disable-responsive .menu-mobile-effect,
body.disable-responsive .mobile-menu-container {
    display: none!important
}

.sk-rotating-plane {
    background-color: #333;
    animation: sk-rotatePlane 1.2s infinite ease-in-out
}

@keyframes sk-rotatePlane {
    0% {
        transform: perspective(120px) rotateX(0) rotateY(0)
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0)
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg)
    }
}

.sk-double-bounce {
    position: relative
}

.sk-double-bounce .sk-child {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: #333;
    opacity: .6;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-doubleBounce 2s infinite ease-in-out
}

.sk-chasing-dots .sk-child,
.sk-spinner-pulse,
.sk-three-bounce .sk-child {
    background-color: #333;
    border-radius: 100%
}

.sk-double-bounce .sk-double-bounce2 {
    animation-delay: -1s
}

@keyframes sk-doubleBounce {
    0%,
    100% {
        transform: scale(0)
    }
    50% {
        transform: scale(1)
    }
}

.sk-wave {
    margin: 40px auto;
    width: 50px;
    height: 40px;
    text-align: center;
    font-size: 10px
}

.sk-wave .sk-rect {
    background-color: #333;
    height: 100%;
    width: 6px;
    display: inline-block;
    animation: sk-waveStretchDelay 1.2s infinite ease-in-out
}

.sk-wave .sk-rect1 {
    animation-delay: -1.2s
}

.sk-wave .sk-rect2 {
    animation-delay: -1.1s
}

.sk-wave .sk-rect3 {
    animation-delay: -1s
}

.sk-wave .sk-rect4 {
    animation-delay: -.9s
}

.sk-wave .sk-rect5 {
    animation-delay: -.8s
}

@keyframes sk-waveStretchDelay {
    0%,
    100%,
    40% {
        transform: scaleY(.4)
    }
    20% {
        transform: scaleY(1)
    }
}

.sk-wandering-cubes {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative
}

.sk-wandering-cubes .sk-cube {
    background-color: #333;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 0;
    left: 0;
    animation: sk-wanderingCube 1.8s ease-in-out -1.8s infinite both
}

.sk-chasing-dots,
.sk-spinner-pulse {
    width: 40px;
    height: 40px;
    margin: 40px auto
}

.sk-wandering-cubes .sk-cube2 {
    animation-delay: -.9s
}

@keyframes sk-wanderingCube {
    0% {
        transform: rotate(0)
    }
    25% {
        transform: translateX(30px) rotate(-90deg) scale(.5)
    }
    50% {
        transform: translateX(30px) translateY(30px) rotate(-179deg)
    }
    50.1% {
        transform: translateX(30px) translateY(30px) rotate(-180deg)
    }
    75% {
        transform: translateX(0) translateY(30px) rotate(-270deg) scale(.5)
    }
    100% {
        transform: rotate(-360deg)
    }
}

.sk-spinner-pulse {
    animation: sk-pulseScaleOut 1s infinite ease-in-out
}

@keyframes sk-pulseScaleOut {
    0% {
        transform: scale(0)
    }
    100% {
        transform: scale(1);
        opacity: 0
    }
}

.sk-chasing-dots {
    position: relative;
    text-align: center;
    animation: sk-chasingDotsRotate 2s infinite linear
}

.sk-chasing-dots .sk-child {
    width: 60%;
    height: 60%;
    display: inline-block;
    position: absolute;
    top: 0;
    animation: sk-chasingDotsBounce 2s infinite ease-in-out
}

.sk-chasing-dots .sk-dot2 {
    top: auto;
    bottom: 0;
    animation-delay: -1s
}

@keyframes sk-chasingDotsRotate {
    100% {
        transform: rotate(360deg)
    }
}

@keyframes sk-chasingDotsBounce {
    0%,
    100% {
        transform: scale(0)
    }
    50% {
        transform: scale(1)
    }
}

.sk-three-bounce {
    margin: 40px auto;
    width: 80px;
    text-align: center
}

.sk-three-bounce .sk-child {
    width: 20px;
    height: 20px;
    display: inline-block;
    animation: sk-three-bounce 1.4s ease-in-out 0s infinite both
}

.sk-circle .sk-child:before,
.sk-fading-circle .sk-circle:before {
    display: block;
    border-radius: 100%;
    background-color: #333;
    content: ''
}

.sk-three-bounce .sk-bounce1 {
    animation-delay: -.32s
}

.sk-three-bounce .sk-bounce2 {
    animation-delay: -.16s
}

@keyframes sk-three-bounce {
    0%,
    100%,
    80% {
        transform: scale(0)
    }
    40% {
        transform: scale(1)
    }
}

.sk-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative
}

.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.sk-circle .sk-child:before {
    margin: 0 auto;
    width: 15%;
    height: 15%;
    animation: sk-circleBounceDelay 1.2s infinite ease-in-out both
}

.sk-circle .sk-circle2 {
    transform: rotate(30deg)
}

.sk-circle .sk-circle3 {
    transform: rotate(60deg)
}

.sk-circle .sk-circle4 {
    transform: rotate(90deg)
}

.sk-circle .sk-circle5 {
    transform: rotate(120deg)
}

.sk-circle .sk-circle6 {
    transform: rotate(150deg)
}

.sk-circle .sk-circle7 {
    transform: rotate(180deg)
}

.sk-circle .sk-circle8 {
    transform: rotate(210deg)
}

.sk-circle .sk-circle9 {
    transform: rotate(240deg)
}

.sk-circle .sk-circle10 {
    transform: rotate(270deg)
}

.sk-circle .sk-circle11 {
    transform: rotate(300deg)
}

.sk-circle .sk-circle12 {
    transform: rotate(330deg)
}

.sk-circle .sk-circle2:before {
    animation-delay: -1.1s
}

.sk-circle .sk-circle3:before {
    animation-delay: -1s
}

.sk-circle .sk-circle4:before {
    animation-delay: -.9s
}

.sk-circle .sk-circle5:before {
    animation-delay: -.8s
}

.sk-circle .sk-circle6:before {
    animation-delay: -.7s
}

.sk-circle .sk-circle7:before {
    animation-delay: -.6s
}

.sk-circle .sk-circle8:before {
    animation-delay: -.5s
}

.sk-circle .sk-circle9:before {
    animation-delay: -.4s
}

.sk-circle .sk-circle10:before {
    animation-delay: -.3s
}

.sk-circle .sk-circle11:before {
    animation-delay: -.2s
}

.sk-circle .sk-circle12:before {
    animation-delay: -.1s
}

@keyframes sk-circleBounceDelay {
    0%,
    100%,
    80% {
        transform: scale(0)
    }
    40% {
        transform: scale(1)
    }
}

.sk-cube-grid {
    width: 40px;
    height: 40px;
    margin: 40px auto
}

.sk-cube-grid .sk-cube {
    width: 33.33%;
    height: 33.33%;
    background-color: #333;
    float: left;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out
}

.sk-cube-grid .sk-cube1 {
    animation-delay: .2s
}

.sk-cube-grid .sk-cube2 {
    animation-delay: .3s
}

.sk-cube-grid .sk-cube3 {
    animation-delay: .4s
}

.sk-cube-grid .sk-cube4 {
    animation-delay: .1s
}

.sk-cube-grid .sk-cube5 {
    animation-delay: .2s
}

.sk-cube-grid .sk-cube6 {
    animation-delay: .3s
}

.sk-cube-grid .sk-cube7 {
    animation-delay: 0ms
}

.sk-cube-grid .sk-cube8 {
    animation-delay: .1s
}

.sk-cube-grid .sk-cube9 {
    animation-delay: .2s
}

@keyframes sk-cubeGridScaleDelay {
    0%,
    100%,
    70% {
        transform: scale3D(1, 1, 1)
    }
    35% {
        transform: scale3D(0, 0, 1)
    }
}

.sk-fading-circle {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative
}

.sk-fading-circle .sk-circle {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0
}

.sk-fading-circle .sk-circle:before {
    margin: 0 auto;
    width: 15%;
    height: 15%;
    animation: sk-circleFadeDelay 1.2s infinite ease-in-out both
}

.sk-fading-circle .sk-circle2 {
    transform: rotate(30deg)
}

.sk-fading-circle .sk-circle3 {
    transform: rotate(60deg)
}

.sk-fading-circle .sk-circle4 {
    transform: rotate(90deg)
}

.sk-fading-circle .sk-circle5 {
    transform: rotate(120deg)
}

.sk-fading-circle .sk-circle6 {
    transform: rotate(150deg)
}

.sk-fading-circle .sk-circle7 {
    transform: rotate(180deg)
}

.sk-fading-circle .sk-circle8 {
    transform: rotate(210deg)
}

.sk-fading-circle .sk-circle9 {
    transform: rotate(240deg)
}

.sk-fading-circle .sk-circle10 {
    transform: rotate(270deg)
}

.sk-fading-circle .sk-circle11 {
    transform: rotate(300deg)
}

.sk-fading-circle .sk-circle12 {
    transform: rotate(330deg)
}

.sk-fading-circle .sk-circle2:before {
    animation-delay: -1.1s
}

.sk-fading-circle .sk-circle3:before {
    animation-delay: -1s
}

.sk-fading-circle .sk-circle4:before {
    animation-delay: -.9s
}

.sk-fading-circle .sk-circle5:before {
    animation-delay: -.8s
}

.sk-fading-circle .sk-circle6:before {
    animation-delay: -.7s
}

.sk-fading-circle .sk-circle7:before {
    animation-delay: -.6s
}

.sk-fading-circle .sk-circle8:before {
    animation-delay: -.5s
}

.sk-fading-circle .sk-circle9:before {
    animation-delay: -.4s
}

.sk-fading-circle .sk-circle10:before {
    animation-delay: -.3s
}

.sk-fading-circle .sk-circle11:before {
    animation-delay: -.2s
}

.sk-fading-circle .sk-circle12:before {
    animation-delay: -.1s
}

@keyframes sk-circleFadeDelay {
    0%,
    100%,
    39% {
        opacity: 0
    }
    40% {
        opacity: 1
    }
}

.sk-folding-cube {
    margin: 40px auto;
    width: 40px;
    height: 40px;
    position: relative;
    transform: rotateZ(45deg)
}

.sk-folding-cube .sk-cube {
    float: left;
    width: 50%;
    height: 50%;
    position: relative;
    transform: scale(1.1)
}

.sk-folding-cube .sk-cube:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #333;
    animation: sk-foldCubeAngle 2.4s infinite linear both;
    transform-origin: 100% 100%
}

.sk-folding-cube .sk-cube2 {
    transform: scale(1.1) rotateZ(90deg)
}

.sk-folding-cube .sk-cube3 {
    transform: scale(1.1) rotateZ(180deg)
}

.sk-folding-cube .sk-cube4 {
    transform: scale(1.1) rotateZ(270deg)
}

.sk-folding-cube .sk-cube2:before {
    animation-delay: .3s
}

.sk-folding-cube .sk-cube3:before {
    animation-delay: .6s
}

.sk-folding-cube .sk-cube4:before {
    animation-delay: .9s
}

@keyframes sk-foldCubeAngle {
    0%,
    10% {
        transform: perspective(140px) rotateX(-180deg);
        opacity: 0
    }
    25%,
    75% {
        transform: perspective(140px) rotateX(0);
        opacity: 1
    }
    100%,
    90% {
        transform: perspective(140px) rotateY(180deg);
        opacity: 0
    }
}

#thim-preloading {
    position: fixed;
    z-index: 999999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center
}

#back-to-top,
.top-right-down {
    width: 35px;
    height: 35px;
    position: fixed;
    right: 34px;
    cursor: pointer;
    -webkit-transition: all .3s;
    -khtml-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-align: center;
    line-height: 35px;
    -webkit-transform: translateY(100px);
    -moz-transform: translateY(100px);
    -ms-transform: translateY(100px);
    -o-transform: translateY(100px);
    z-index: 999
}

.top-right-down {
    top: auto;
    bottom: 188px;
    background-color: #f07821;
    color: #fff;
    position: fixed
}

#back-to-top.scrollup {
    bottom: 0
}

#back-to-top.scrolldown {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0)
}

#back-to-top.scrolldown {
    bottom: 128px
}

.dk-select,
.dk-select *,
.dk-select :after,
.dk-select :before,
.dk-select-multi,
.dk-select-multi *,
.dk-select-multi :after,
.dk-select-multi :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.dk-select,
.dk-select-multi {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.5em;
    width: 200px;
    cursor: pointer
}

.dk-selected {
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    padding: 0 1.5em 0 .5em;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis
}

.dk-selected:after,
.dk-selected:before {
    content: '';
    display: block;
    position: absolute;
    right: 0
}

.dk-selected:before {
    top: 50%;
    border: solid transparent;
    border-width: .25em .25em 0;
    border-top-color: #ccc;
    margin: -.125em .5em 0 0
}

.dk-selected:after {
    top: 0;
    height: 100%;
    border-left: 1px solid #ccc;
    margin: 0 1.5em 0 0
}

.dk-selected-disabled {
    color: #bbb
}

.dk-select .dk-select-options {
    position: absolute;
    display: none;
    left: 0;
    right: 0
}

.dk-select-open-up .dk-select-options {
    border-radius: 0;
    margin-bottom: -1px;
    bottom: 100%
}

.dk-select-open-down .dk-select-options {
    border-radius: 0;
    margin-top: -1px;
    top: 100%
}

.dk-select-multi .dk-select-options {
    max-height: 10em
}

.dk-select-options {
    background-color: #fff;
    border: 1px solid #ccc;
    border-radius: 0;
    list-style: none;
    margin: 0;
    max-height: 10.5em;
    overflow-x: hidden;
    overflow-y: auto;
    padding: .25em 0;
    width: auto;
    z-index: 100
}

.dk-optgroup,
.dk-optgroup+.dk-option {
    margin-top: .25em
}

.dk-option-selected {
    background-color: #3297fd;
    color: #fff
}

.dk-select-options-highlight .dk-option-selected {
    background-color: transparent;
    color: inherit
}

.dk-option {
    padding: 0 .5em
}

.dk-select-options .dk-option-highlight {
    background-color: #3297fd;
    color: #fff
}

.dk-select-options .dk-option-disabled {
    color: #bbb;
    background-color: transparent
}

.dk-select-options .dk-option-hidden {
    display: none
}

.dk-optgroup {
    border: solid #ccc;
    border-width: 1px 0;
    padding: .25em 0
}

.dk-select-open-down .dk-selected:after,
.dk-select-open-up .dk-selected:after,
.dk-selected:focus:after,
.dk-selected:hover:after {
    border-left-color: #3297fd
}

.dk-optgroup+.dk-optgroup {
    border-top-width: 0;
    margin-top: 0
}

.dk-optgroup:nth-child(2) {
    padding-top: 0;
    border-top: none;
    margin-top: 0
}

.dk-optgroup:last-child {
    border-bottom-width: 0;
    margin-bottom: 0;
    padding-bottom: 0
}

.dk-optgroup-label {
    padding: 0 .5em .25em;
    font-weight: 700;
    width: 100%
}

.dk-optgroup-options {
    list-style: none;
    padding-left: 0
}

.dk-optgroup-options li {
    padding-left: 1.2em
}

.dk-select-open-up .dk-selected {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    border-color: #3297fd
}

.dk-select-open-down .dk-selected {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    border-color: #3297fd
}

.dk-select-open-down .dk-selected:before,
.dk-select-open-up .dk-selected:before {
    border-width: 0 .25em .25em;
    border-bottom-color: #3297fd
}

.dk-select-multi:focus .dk-select-options,
.dk-select-open-down .dk-select-options,
.dk-select-open-up .dk-select-options {
    display: block;
    border-color: #3297fd
}

.dk-select-multi:focus,
.dk-select-multi:hover {
    outline: 0
}

.dk-selected:focus,
.dk-selected:hover {
    outline: 0;
    border-color: #3297fd
}

.dk-selected:focus:before,
.dk-selected:hover:before {
    border-top-color: #3297fd
}

.dk-select-disabled {
    opacity: .6;
    color: #bbb;
    cursor: not-allowed
}

.dk-select-disabled .dk-selected:focus,
.dk-select-disabled .dk-selected:hover {
    border-color: inherit
}

.dk-select-disabled .dk-selected:focus:before,
.dk-select-disabled .dk-selected:hover:before {
    border-top-color: inherit
}

.dk-select-disabled .dk-selected:focus:after,
.dk-select-disabled .dk-selected:hover:after {
    border-left-color: inherit
}

select[data-dkcacheid] {
    display: none
}


/*! fancyBox v2.1.5 fancyapps.com | fancyapps.com/fancybox/#license */

.fancybox-image,
.fancybox-inner,
.fancybox-nav,
.fancybox-nav span,
.fancybox-outer,
.fancybox-skin,
.fancybox-tmp,
.fancybox-wrap,
.fancybox-wrap iframe,
.fancybox-wrap object {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
    vertical-align: top
}

.fancybox-wrap {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 8020
}

.fancybox-inner,
.fancybox-outer,
.fancybox-skin {
    position: relative
}

.fancybox-skin {
    background: #f9f9f9;
    color: #444;
    text-shadow: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px
}

.fancybox-opened {
    z-index: 8030
}

.fancybox-opened .fancybox-skin {
    -webkit-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
    -moz-box-shadow: 0 10px 25px rgba(0, 0, 0, .5);
    box-shadow: 0 10px 25px rgba(0, 0, 0, .5)
}

.fancybox-inner {
    overflow: hidden
}

.fancybox-type-iframe .fancybox-inner {
    -webkit-overflow-scrolling: touch
}

.fancybox-error {
    color: #444;
    font: 14px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 15px;
    white-space: nowrap
}

.fancybox-iframe,
.fancybox-image {
    display: block;
    width: 100%;
    height: 100%
}

.fancybox-image {
    max-width: 100%;
    max-height: 100%
}

#fancybox-loading {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -22px;
    margin-left: -22px;
    background-position: 0 -108px;
    opacity: .8;
    cursor: pointer;
    z-index: 8060
}

.fancybox-close,
.fancybox-nav {
    width: 36px;
    height: 36px;
    z-index: 8040;
    position: absolute;
    cursor: pointer;
    text-align: center
}

.fancybox-close {
    top: -18px;
    right: -18px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #ddd;
    font-size: 18px;
    line-height: 32px
}

.fancybox-close:before {
    content: "\f00d";
    font-family: FontAwesome
}

.fancybox-nav {
    top: 50%;
    margin-top: -18px;
    text-decoration: none;
    line-height: 34px;
    font-size: 16px;
    background: rgba(0, 0, 0, .5);
    color: #fff
}

.fancybox-nav:before {
    content: "\f105";
    font-family: FontAwesome
}

.fancybox-prev:before,
.flexslider .flex-direction-nav .flex-prev:before {
    content: "\f104"
}

.fancybox-nav:hover {
    background: #222;
    color: #fff
}

.fancybox-prev {
    left: 10px
}

.fancybox-next {
    right: 10px
}

.fancybox-tmp {
    position: absolute;
    top: -99999px;
    left: -99999px;
    visibility: hidden;
    max-width: 99999px;
    max-height: 99999px;
    overflow: visible!important
}

.fancybox-lock,
.fancybox-lock body {
    overflow: hidden!important
}

.fancybox-lock {
    width: auto
}

.fancybox-lock-test {
    overflow-y: hidden!important
}

.fancybox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    display: none;
    z-index: 8010
}

.fancybox-overlay-fixed {
    position: fixed;
    bottom: 0;
    right: 0;
    background: rgba(0, 0, 0, .7)
}

.fancybox-lock .fancybox-overlay {
    overflow: auto;
    overflow-y: scroll
}

.fancybox-title {
    visibility: hidden;
    font: 400 13px/20px "Helvetica Neue", Helvetica, Arial, sans-serif;
    position: relative;
    text-shadow: none;
    z-index: 8050
}

.fancybox-opened .fancybox-title {
    visibility: visible
}

.fancybox-title-float-wrap {
    position: absolute;
    bottom: 0;
    right: 50%;
    margin-bottom: -35px;
    z-index: 8050;
    text-align: center
}

.fancybox-title-float-wrap .child {
    display: inline-block;
    margin-right: -100%;
    padding: 2px 20px;
    background: 0 0;
    background: rgba(0, 0, 0, .8);
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    text-shadow: 0 1px 2px #222;
    color: #fff;
    font-weight: 700;
    line-height: 24px;
    white-space: nowrap
}

.fancybox-title-outside-wrap {
    position: relative;
    margin-top: 10px;
    color: #fff
}

.fancybox-title-inside-wrap {
    padding-top: 10px
}

.fancybox-title-over-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #fff;
    padding: 10px;
    background: #000;
    background: rgba(0, 0, 0, .8)
}

.owl-carousel {
    display: none;
    width: 100%;
    position: relative;
    z-index: 1
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    cursor: grab
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d
}

.owl-carousel .owl-dots.disabled,
.owl-carousel .owl-nav.disabled {
    display: none
}

.no-js .owl-carousel,
.owl-carousel.owl-loaded {
    display: block
}

.owl-carousel .owl-dot,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-nav .owl-prev {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block
}

.owl-carousel.owl-hidden {
    opacity: 0
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab
}

.owl-carousel.owl-rtl {
    direction: rtl
}

.owl-carousel.owl-rtl .owl-item {
    float: right
}

.owl-carousel .animated {
    animation-duration: 1s;
    animation-fill-mode: both
}

.owl-carousel .owl-animated-in {
    z-index: 0
}

.owl-carousel .owl-animated-out {
    z-index: 1
}

.owl-carousel .fadeOut {
    animation-name: fadeOut
}

@keyframes fadeOut {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.owl-height {
    transition: height .5s ease-in-out
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity .4s ease
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d
}

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    /* background: url(https://cdn.shortpixel.ai/client/q_glossy,ret_img/https://www.midas.ac.in/wp-content/themes/university-wp-org/owl.video.play.png) no-repeat; */
    cursor: pointer;
    z-index: 1;
    transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    transform: scale(1.3, 1.3)
}

.owl-carousel .owl-video-playing .owl-video-play-icon,
.owl-carousel .owl-video-playing .owl-video-tn {
    display: none
}

.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity .4s ease
}

.button,
.submit,
a,
input[type=submit] {
    -khtml-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.button,
.submit,
input[type=submit] {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    border: 0;
    padding: 8px 25px;
    display: inline-block;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.button:hover,
.submit:hover,
input[type=submit]:hover {
    color: #fff
}

.site-content {
    padding-top: 50px;
    padding-bottom: 100px
}

.site-content.no-padding {
    padding: 0
}

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

a {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

.flexslider {
    position: relative
}

.flexslider ul {
    margin: 0;
    list-style: none
}

.flexslider .flex-direction-nav {
    margin: 0
}

.flexslider .flex-direction-nav a {
    position: absolute;
    z-index: 9;
    top: 50%;
    cursor: pointer;
    width: 31px;
    margin: -16px 0 0;
    height: 32px;
    background-color: #fff;
    text-align: center;
    overflow: hidden;
    font-size: 0;
    -webkit-transition: all .3s ease-in-out;
    -khtml-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.flexslider .flex-direction-nav .flex-next:before,
.flexslider .flex-direction-nav .flex-prev:before {
    font-family: FontAwesome;
    font-size: 22px;
    line-height: 31px;
    display: inline-block
}

.flexslider .flex-direction-nav a:hover:before {
    color: #fff
}

.flexslider .flex-direction-nav .flex-prev {
    left: -36px;
    opacity: 0
}

.flexslider .flex-direction-nav .flex-next {
    right: -36px;
    opacity: 0
}

.flexslider .flex-direction-nav .flex-next:before {
    content: "\f105"
}

.flexslider:hover .flex-direction-nav .flex-prev {
    opacity: .8;
    left: 5px
}

.flexslider:hover .flex-direction-nav .flex-next {
    opacity: .8;
    right: 5px
}

.post-password-form input[type=submit] {
    line-height: 32px;
    padding: 0 25px
}

#list-icon-box {
    border-bottom: 1px solid #ddd
}

#list-icon-box .panel-grid-cell {
    border-right: 1px solid #ddd
}

#list-icon-box .panel-grid-cell:last-child {
    border: none
}

.article__parallax {
    background-attachment: fixed;
    background-position: 50% 0;
    position: relative;
    z-index: 1
}

.article__parallax:before {
    content: '';
    height: 100%;
    width: 100%;
    background: rgba(17, 17, 17, .6);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1
}

.action-info {
    text-align: center;
    color: #fff
}

.action-info h3 {
    font-size: 30px;
    color: #fff;
    line-height: 42px;
    margin: 0 0 50px
}

.action-info .button {
    height: 50px;
    line-height: 50px;
    padding: 0 50px;
    font-size: 13px
}

#home-discover .thim-list-posts {
    border-bottom: 1px solid #ddd
}

#home-discover .thim-list-posts .item-post {
    margin-bottom: 0;
    border-bottom: none
}

#home-gallery {
    position: relative
}

#home-gallery .widget_thim_gallery {
    margin-bottom: 0!important
}

#home-gallery .gallery-info {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    margin-left: -160px;
    margin-top: -60px;
    padding-top: 40px;
    height: 180px
}

#home-gallery .gallery-info .thim-heading {
    margin-bottom: 30px
}

.gallery-info {
    width: 100%;
    height: 290px;
    background: #fff;
    text-align: center;
    padding-top: 74px
}

.gallery-info .all-gallery {
    font-size: 13px;
    font-weight: 700
}

.gallery-info .all-gallery:after {
    content: "\f105";
    font-family: FontAwesome;
    margin-left: 8px;
    font-weight: 400
}

.error-404 {
    padding: 0
}

.error-404 .image-404 .img {
    padding-left: 97px
}

.error-404 .content-404 {
    padding-top: 127px
}

.error-404 .content-404 h1 {
    font-size: 66px;
    line-height: 81px;
    margin: 0 0 6px
}

.error-404 .content-404 p {
    color: #666;
    font-size: 16px;
    line-height: 22px
}

.error-404 .content-404 .intro {
    font-size: 46px;
    font-weight: 700;
    line-height: 62px;
    margin-bottom: 31px
}

.about-info {
    font-size: 16px;
    line-height: 28px
}

.about-info .about-des {
    position: relative;
    top: -7px
}

.about-info .panel-grid-cell:nth-child(2) .panel-first-child {
    margin-bottom: 15px!important
}

.list-about {
    margin: 0;
    list-style: none
}

.list-about li i {
    left: 0;
    top: 5px;
    color: #f07821;
    font-size: 20px;
    margin: 0 10px
}

.list-about li i.fa-envelope {
    font-size: 16px
}

.list-about li {
    position: relative;
    padding-left: 30px
}

.list-about li {
    margin-bottom: 14px
}

.list-about li:last-child {
    margin: 0
}

.wpcf7-form input,
.wpcf7-form textarea {
    background: #fff;
    width: 100%;
    float: left;
    height: 45px;
    color: #777;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border: 1px solid #ccc;
    font-size: 14px;
    -khtml-transition: all .5s
}

.wpcf7-form .wpcf7-form-control-wrap {
    margin-bottom: 30px;
    display: inline-block;
    width: 100%;
    float: left
}

.wpcf7-form input {
    padding: 0 20px;
    transition: all .5s
}

.wpcf7-form textarea {
    padding: 20px;
    min-height: 100px;
    transition: all .5s
}

.wpcf7-form .contact-button {
    text-align: center
}

.wpcf7-form .contact-button .wpcf7-submit {
    width: auto;
    padding: 0 45px;
    border: 1px solid #ccc;
    background: #fff;
    color: #424242;
    font-size: 14px;
    display: inline-block;
    float: none;
    -webkit-transition: all .5s;
    -khtml-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s
}

@media (min-width:1200px) {
    .siteorigin-panels-stretch {
        margin-left: -385px;
        margin-right: -385px;
        padding-left: 385px;
        padding-right: 385px
    }
}

@media print {
    #back-to-top,
    #colophon .footer,
    #comments,
    #secondary,
    .menu-mobile-effect.navbar-toggle,
    .nav-single,
    .page-title,
    .related-archive,
    .thim-about-author {
        display: none!important
    }
}

.panel-grid-cell .widget-title {
    color: #fff;
    text-align: center
}

.action-info.counselling-code h3 {
    font-size: 80px;
    margin: 30px 0 30px;
    line-height: 80px
}

.action-info.counselling-code h2 {
    color: #fff;
    border-top: 1px solid #ddd;
    width: 400px;
    margin: 0 auto 30px;
    padding-top: 30px;
    line-height: 42px;
    font-size: 32px
}

.home-footer-form label {
    display: block
}

.switcher .selected {
    background: #fff !important
}

.switcher {
    width: 200px !important;
    float: right !important;
    margin-top: 5px !important;
    margin-bottom: 25px
}

.switcher .selected a {
    border: 1px solid #dcdcdc !important;
    padding: 8px 5px !important;
    width: 88px !important;
    background: url(../images/arrow_down.png) 85px center no-repeat !important
}

.switcher .option {
    position: absolute !important;
    width: 198px !important;
    right: 15px
}

.site-header {
    padding-bottom: 0 !important
}

.switcher .option {
    background-color: #fff !important
}

.switcher .option a {
    padding: 6px 5px !important
}

.switcher .option a.selected {
    background: #f07922 !important;
    color: #fff !important
}

.header-right .widget_text.widget.widget_custom_html {
    clear: both
}

header#masthead .width-navigation li .sub-menu li:last-child a {
    border-bottom: 0 none
}

.footer-sidebars .widget.widget_text {
    clear: both
}

.header-info .info-2 {
    font-family: Roboto !important
}

#pg-149-5,
#pg-149-6 {
    margin-bottom: 50px !important
}

#pg-149-2 .so-panel.widget.widget_thim-icon-box {
    width: 50%;
    float: left;
    background-color: #f3f0ee;
    margin-bottom: 0;
    padding: 15px 0
}

#pg-149-2 .so-panel.widget.widget_thim-icon-box .thim-icon-box .icon {
    margin-bottom: 0;
    min-height: 48px
}

#pg-149-2 .so-panel.widget.widget_thim-icon-box .thim-icon-box h3 {
    font-size: 14px;
    color: #333;
    line-height: inherit;
    margin: 0;
    font-weight: 500
}

#pg-149-2 #pgc-149-2-1 .thim-feature .title {
    margin-bottom: 10px
}

#pg-149-0 {
    margin-bottom: 60px !important
}

.wpcf7-form input.wpcf7-submit {
    color: #fff
}

header#masthead .width-navigation .navbar>li>a,
header#masthead .width-navigation .navbar>li>span {
    font-family: Roboto !important;
    font-weight: 500;
    font-style: normal;
    font-size: 14px;
    line-height: 30px;
    color: #fff !important
}

.so-widget-single-images.so-widget-single-images-default-d75171398898 img {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 1px 1px 4px #ccc
}

.services_panel .panel {
    min-height: 240px;
    border: 1px solid #eea236;
    border-top: 3px solid #eea236 !important;
    background: #fbfbfb;
    margin-top: 5%;
    padding: 15px;
    font-family: 'Rubik', sans-serif
}

.services_panel .panel img {
    width: 115px
}

.services_panel .panel .btn {
    width: 235px;
    margin-top: 25px;
    background: #f2f2f2;
    color: #333;
    border-bottom: 3px solid #e6e6e6
}

.services_panel .panel .btn:hover {
    border-bottom: 2px solid #e6e6e6
}

#pgc-149-2-0 hr.type_7 {
    border-bottom: 3px dotted #e5e5e5;
    box-shadow: inset 0 -1px 0 0 #e5e5e5, inset 0 1px 0 0 #e5e5e5, 0 1px 0 0 #e5e5e5, 0 -1px 0 0 #e5e5e5;
    margin-bottom: 1px
}

#panel-697-0-0-1 h3 {
    display: none
}

.services_panel .fa-check-circle {
    color: #eea236
}

.box1 .icon,
.box2,
.box3,
.box4,
.box5 .icon li a {
    text-align: center
}

.box10:after,
.box10:before,
.box1:after,
.box1:before,
.box2 .inner-content:after,
.box3:after,
.box3:before,
.box4:before,
.box5:after,
.box5:before,
.box6:after,
.box7:after,
.box7:before {
    content: ""
}

.box1,
.box11,
.box12,
.box13,
.box14,
.box16,
.box17,
.box18,
.box2,
.box20,
.box21,
.box3,
.box4,
.box5,
.box5 .icon li a,
.box6,
.box7,
.box8 {
    overflow: hidden
}

.box1 .title,
.box10 .title,
.box4 .title,
.box7 .title {
    letter-spacing: 1px
}

.box3 .post,
.box4 .post,
.box5 .post,
.box7 .post {
    font-style: italic
}

.box4 {
    position: relative;
    border: 1px solid #ccc;
    box-shadow: 1px 1px 3px 0px #ccc;
    border-radius: 5px
}

.box4:hover:before {
    width: 200%
}

.box4 img {
    width: 100%;
    height: auto
}

.box4 p {
    margin-bottom: 10px
}

.box-content {
    min-height: 80px
}

.box4 .icon,
.box5 .icon {
    list-style: none;
    padding: 0
}

.box4:hover .box-content {
    transform: scale(1)
}

.box4 .title {
    font-size: 20px;
    font-weight: 700;
    color: #d54e01;
    margin: 0 0 10px;
    line-height: 22px
}

.box4 .post {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #291103;
    margin-bottom: 20px
}

.box4 .icon {
    margin: 0
}

.box4 .icon li {
    display: inline-block
}

.box4 .icon li a {
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 20px;
    background: #fff;
    color: #ee4266;
    margin-right: 10px;
    transition: all .3s ease 0s
}

.box5 .icon,
.box5 .icon li {
    display: inline-block
}

@media only screen and (max-width:990px) {
    .box4 {
        margin-bottom: 30px
    }
}

@media only screen and (max-width:767px) {
    .box4:before {
        left: -400px
    }
    .box4:hover:before {
        width: 300%
    }
    #back-to-top,
    .top-right-down {
        display: none;
    }
    div.pull-left.logo-side>p:nth-child(2),
    p:nth-child(3),
    p:nth-child(4) {
        display: block;
    }
}

.mt-40 {
    margin-bottom: 2%
}

.notice {
    padding: 15px;
    background-color: #fafafa;
    border-left: 6px solid #7f7f84;
    margin-bottom: 10px;
    -webkit-box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
    -moz-box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 8px -6px rgba(0, 0, 0, .2)
}

.notice-success {
    border-color: #f4752c
}

.notice-success>strong {
    color: #f4752c;
    font-size: 24px
}

#pg-149-2 {
    margin-bottom: 20px !important
}

#pg-w5c36d5c054b0e-0 {
    margin-bottom: 0 !important
}

#pgc-149-3-0 .panel-layout {
    margin-bottom: 30px
}

#post-764 .textwidget h3 {
    margin: 0;
    padding: 0
}

#post-764 .textwidget h2 {
    margin: 0;
    padding: 0;
    font-size: 14px
}

.eligi {
    margin: 0;
    padding: 0
}

.eligi h4 {
    margin: 0;
    padding: 0;
    color: #f07821
}

.eligi ul {
    margin: 0;
    padding: 0
}

.eligi li {
    margin: 0 0 0 17px;
    padding: 0;
    line-height: 33px;
    font-size: 16px
}

.nata h4 {
    font-size: 24px;
    margin: 10px 0 15px;
    padding: 0;
    color: #f4752c
}

.e-bro {
    width: 200px;
    height: 37px;
    border: 1px solid #fed302;
    background: #fed302;
    padding: 5px;
    color: #000;
    font-size: 24px;
    text-align: center;
    position: relative;
    top: -28px;
    font-family: 'Staatliches', cursive !important
}

.e-bro a {
    color: #000
}

.btn-hot {
    color: #fff !important;
    background-color: #db5566;
    border-bottom: 2px solid #af4451;
    padding: 15px;
    margin-left: 20%
}

.btn-hot a {
    color: #fff;
    font-weight: 700;
    font-size: 27px
}

.newfnt {
    font-family: 'Staatliches', cursive !important;
    font-size: 45px;
    color: #f4752c
}

.cup {
    font-size: 72px;
    color: #f4752c;
    text-align: center;
    height: 100px;
    width: 100px;
    margin: 0 auto 25px;
    border: 1px solid #f4752c;
    border-radius: 50px;
    padding-top: 18px
}

.akriti {
    margin: 0;
    padding: 0
}

.akriti h3 {
    margin: 0;
    padding: 0;
    font-size: 34px;
    color: #f4752c
}

.akriti h4 {
    margin: 0;
    padding: 0;
    font-size: 34px;
    color: #fff
}

.comptetion {
    background: #ff1053;
    background: -moz-linear-gradient(top, #ff1053 0%, #ff1053 100%);
    background: -webkit-linear-gradient(top, #ff1053 0%, #ff1053 100%);
    background: linear-gradient(to bottom, #ff1053 0%, #ff1053 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#ff1053', endColorstr='#ff1053', GradientType=0);
    padding: 15px;
    color: #fff
}

.comptetion .notice-danger1 {
    color: #000;
    font-family: 'Staatliches', cursive !important;
    font-size: 30px;
    border-color: #d73814
}

.faclr {
    color: #f4752c;
    font-size: 28px;
    margin-right: 15px
}

.newfnt1 {
    font-family: 'Staatliches', cursive !important;
    font-size: 20px
}

.ngg-widget img {
    border: 2px solid #a9a9a9;
    margin: 0 16px 25px 0 !important;
    padding: 1px;
    height: auto;
    float: left;
    width: 23% !important
}

#ngg-webslice h3 {
    display: none
}

.page-contact-us .wpcf7-form .wpcf7-form-control-wrap,
.page-contact-us .wpcf7-form label {
    margin-bottom: 0;
    width: 100%
}

.page-contact-us .wpcf7-form p {
    margin-bottom: 15px;
    float: left;
    width: 100%
}

.list-about li b {
    color: #777
}

.atchi h3 {
    font-size: 18px;
    color: #f07821;
    margin: 20px 0 0;
    padding: 0
}

.footer-sidebars .info-1 {
    color: #fff !important
}

.contact-locat address b {
    color: #777
}

.contact-locat h4 {
    font-size: 16px;
    font-family: Roboto;
    color: #777
}

.first-adrs {
    position: relative;
    padding-left: 30px;
    margin-top: 20px
}

.first-adrs address i {
    position: absolute;
    left: 0;
    top: 0;
    color: #f07821;
    font-size: 20px
}

.page-contact-us #pg-157-1 {
    margin-bottom: 0
}

.page-contact-us .site-content {
    padding-bottom: 35px
}

.page-e-brochure label,
.page-application-form label {
    width: 100%
}

aside#secondary.widget-area .thim-heading {
    margin-bottom: 30px;
    margin-top: 15px
}

aside#secondary.widget-area .thim-list-posts.style-3 .item-post {
    padding-left: 115px;
    margin-bottom: 20px
}

aside#secondary.widget-area .thim-list-posts.style-3 .item-post .article-title-wrapper h5 {
    margin: 22px 0 0;
    top: 0
}

aside#secondary.widget-area .theiaStickySidebar {
    background-color: #ececec;
    padding: 15px;
    float: left
}

aside#secondary.widget-area .thim-heading {
    padding-bottom: 5px
}

aside#secondary.widget-area aside.widget {
    margin-bottom: 0
}

.contact-now-btn,
.down-appform,
.down-brochure {
    background: #f77930;
    background: -moz-linear-gradient(top, #f77930 0%, #d54e01 100%);
    background: -webkit-linear-gradient(top, #f77930 0%, #d54e01 100%);
    background: linear-gradient(to bottom, #f77930 0%, #d54e01 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f77930', endColorstr='#d54e01', GradientType=0);
    color: #fff;
    padding: 8px 20px;
    display: block;
    font-size: 18px;
    text-align: center;
    margin-bottom: 15px
}

.down-appform,
.down-brochure {
    display: inline-block
}

.contact-now-btn:hover,
.contact-now-btn:focus,
.contact-now-btn:active,
.down-appform:hover,
.down-appform:focus,
.down-appform:active,
.down-brochure:hover,
.down-brochure:focus,
.down-brochure:active {
    color: #fff
}

.home #pg-149-3 .panel-grid-cell .thim-heading {
    margin-bottom: 30px
}

.home #pg-149-3 .panel-grid-cell {
    position: relative
}

.home #pg-149-3 .panel-grid-cell>.widget_custom_html.panel-last-child {
    position: absolute;
    right: 0;
    top: 25px
}

.home #pg-149-3 #pg-w5c38753b33eec-0 {
    margin-bottom: 10px
}

.home #pg-149-3 .thim-icon-box {
    margin-bottom: 20px
}

#home-main-content #pg-149-7 {
    padding: 30px 0 30px
}

#home-main-content .panel-layout #pg-149-8.panel-grid .panel-grid-cell:last-child {
    background-color: #eee;
    padding: 15px;
    text-align: center
}

#home-main-content .panel-layout #pg-149-8.panel-grid .panel-grid-cell:last-child .thim-slider .slides .item-link .slider-content {
    position: static
}

#home-main-content .panel-layout #pg-149-8.panel-grid .panel-grid-cell:last-child .thim-slider .slides .item-link .slider-content>.container {
    width: auto
}

#home-main-content .panel-layout #pg-149-8.panel-grid .panel-grid-cell:last-child .thim-slider .slides .item-link .slider-content .slider-content-inner {
    width: auto
}

#home-main-content .panel-layout #pg-149-8.panel-grid .panel-grid-cell:last-child .thim-slider .slides .item-link .slider-content .title {
    font-size: 22px;
    color: #f07821;
    margin: 0;
    line-height: 30px
}

#home-main-content .panel-layout #pg-149-8.panel-grid .panel-grid-cell:last-child .thim-slider .slides .item-link .slider-content .description {
    font-size: 16px;
    color: #484848;
    line-height: 20px;
    margin: 0
}

.page-students .panel-grid-cell .widget-title {
    color: #f07821;
    text-align: center;
    font-size: 20px
}

.page-students .gallery {
    text-align: center
}

.imgbdr {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 1px 1px 4px #ccc
}

header#masthead .width-logo {
    width: 92px !important
}

.logo-side {
    margin: 45px 0 0 15px
}

.logo-side p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px
}

.page-e-brochure .thim-heading {
    margin-bottom: 20px
}

.page-e-brochure .custom-html-widget h5 {
    margin-bottom: 30px
}

.page-contact-us .main-top {
    background-image: url(../images/contact-banner.jpg) !important
}

.page-events .main-top,
.post-akriti .main-top,
.post-orientation-day .main-top {
    background-image: url(../images/events-banner.jpg) !important
}

.page-facilities .main-top {
    background-image: url(../images/facility-banner.jpg) !important
}

.page-activities .main-top,
.page-clubs .main-top,
.page-sports .main-top,
.category.category-blog .main-top {
    background-image: url(../images/activity-banner.jpg) !important
}

.page-academics .main-top,
.page-scholarship-scheme .main-top {
    background-image: url(../images/academic-banner.jpg) !important
}

.page-admissions .main-top,
.page-process .main-top,
.page-nata .main-top,
.page-e-brochure .main-top,
.page-application-form .main-top,
.page-transfer .main-top {
    background-image: url(../images/admission-banner.jpg) !important
}

.page-about .main-top,
.page-midas .main-top {
    background-image: url(../images/about-banner.jpg)
}

.post-nasa .main-top {
    background-image: url(../images/nasa-banner-1.jpg) !important
}

.page-curriculum .main-top {
    background-image: url(../images/curriculam-banner.jpg) !important
}

.page-workshops .main-top {
    background-image: url(../images/workshop-banner.jpg) !important
}

.page-guest-lectures .main-top {
    background-image: url(../images/guest-lectures-banner.jpg) !important
}

.page-eligibility .main-top {
    background-image: url(../images/Eligibility.jpg) !important
}

.page-leadership .main-top {
    background-image: url(../images/leadership-banner.jpg) !important
}

.page-faculty .main-top {
    background-image: url(../images/faculty.jpg) !important
}

.page-career .main-top {
    background-image: url(../images/career-banner.jpg) !important
}

.page-study-tour .main-top {
    background-image: url(../images/study-tour-banner.jpg) !important
}

.page-student-works .main-top {
    background-image: url(../images/student-work-banner.jpg) !important
}

.page-student-achievements .main-top,
.page-students .main-top {
    background-image: url(../images/student-achivement.jpg) !important
}

.page-alumni .main-top {
    background-image: url(../images/alumini-achivement.jpg) !important
}

.page-media .main-top {
    background-image: url(../images/banner5.jpg) !important
}

.post-graduation-day .main-top {
    background-image: url(../images/graduation-day-banner.jpg) !important
}

.post-architecture-4-0 .main-top {
    background-image: url(../images/about-banner.jpg) !important
}

.post-a-tribute-to-b_v_doshi .main-top {
    background-image: url(../images/architec-40-banner.jpg) !important
}

.post-trikona .main-top {
    background-image: url(../images/trikona-banner.jpg) !important
}

.post-worlds-largest-painting .main-top {
    background-image: url(../images/world-large-paint-banner.jpg) !important
}

.post-symposium .main-top {
    background-image: url(../images/symposium-banner.jpg) !important
}

footer#colophon .copyright-area .copyright-text {
    font-family: Roboto;
    font-size: 12px
}

.mailtodet {
    background-color: #fff;
    border-top: 3px solid #f4752c;
    padding: 15px;
    box-shadow: 0px 0px 3px 1px rgba(0, 0, 0, .2);
    display: inline-block;
    font-size: 18px;
    font-weight: 500
}

.page-career .widget_media_image,
.page-process .widget_media_image,
.page-eligibility .widget_media_image {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 5px;
    box-shadow: 1px 1px 4px #ccc
}

.page-process .thim-heading,
.page-eligibility .thim-heading {
    margin-bottom: 0
}

.page-process h4 {
    color: #ed741b
}

.post-1410 .article-meta {
    display: none
}

#pg-149-0.panel-grid.panel-has-style {
    margin-bottom: 0 !important
}

#pg-149-1 {
    padding: 10px;
    background-color: #404245
}

#pg-149-1 marquee a {
    color: #fff
}

#pg-149-1 marquee a:hover,
#pg-149-1 marquee a:focus,
#pg-149-1 marquee a:active {
    color: #f07821
}

#tidio-chat {
    display: none
}

.price-det {
    background: #f77930;
    background: -moz-linear-gradient(top, #f77930 0%, #d54e01 100%);
    background: -webkit-linear-gradient(top, #f77930 0%, #d54e01 100%);
    background: linear-gradient(to bottom, #f77930 0%, #d54e01 100%);
    filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#f77930', endColorstr='#d54e01', GradientType=0);
    color: #fff;
    padding: 10px;
    float: left;
    width: 100%;
    min-height: 175px
}

.price-det h3 {
    margin: 0;
    font-size: 20px;
    color: #fff
}

.price-det p {
    line-height: 18px;
    margin-bottom: 8px;
    float: left;
    width: 100%
}

.price-det p span:first-child {
    width: 35%;
    float: left;
    color: #ffd0b6
}

.price-det p span:last-child {
    width: 65%;
    float: left
}

.price-panal {
    margin-bottom: 30px;
    float: left;
    width: 100%
}

.reg-button {
    padding: 0 12px;
    line-height: 35px;
    font-size: 13px;
    color: #fff;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    float: right;
    font-family: Montserrat;
    background: #f07821;
    position: absolute;
    right: 70px;
    top: 17px;
    z-index: 999;
}

.post-trikona .widget_shortcodes-ultimate .widget-title {
    display: none
}

.page-nata .thim-heading {
    margin-bottom: 18px;
    margin-top: 55px
}

.page-clubs .panel-grid-cell h3.widget-title,
.siteorigin-widget-tinymce h3 {
    font-size: 20px;
    color: #f07821;
    text-align: left
}

.siteorigin-widget-tinymce h5 {
    font-size: 15px;
    line-height: 20px;
    text-transform: none
}

.page-workshops #ngg-webslice h3 {
    display: block;
    color: #f07821;
    text-align: left;
    font-size: 24px
}

.sitemap-btn {
    font-size: 18px;
    background-color: #f07821;
    color: #fff;
    padding: 10px 30px;
    border-radius: 3px
}

footer#colophon .sitemap-btn:hover,
footer#colophon .sitemap-btn:focus,
footer#colophon .sitemap-btn:active {
    background-color: #d54e01;
    color: #fff
}

.panel .panel-head {
    font-size: 18px;
    border-bottom: 2px solid #e6cbb8;
    margin-bottom: 30px;
    margin-top: 40px
}

.panel .panel-cont .control-label {
    color: #555
}

.wpcf7-form .dk-selected {
    background: #fff;
    width: 100%;
    float: left;
    height: 32px;
    color: #777;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    border: 1px solid #ccc;
    font-size: 14px;
    -khtml-transition: all .5s;
    line-height: 33px
}

.wpcf7-form .dk-select {
    width: 100%
}

.wpcf7-form .panel input,
.wpcf7-form .panel textarea {
    height: 32px;
    line-height: 32;
    margin-bottom: 10px
}

.wpcf7-form .panel h5 {
    font-weight: 400
}

.wpcf7-form .panel .wpcf7-form-control-wrap {
    margin-bottom: 5px
}

.wpcf7-form .panel input[type=checkbox],
.wpcf7-form .panel input[type=radio] {
    width: auto;
    height: 20px
}

.wpcf7-form .panel .wpcf7-radio .wpcf7-list-item-label,
.wpcf7-form .panel .wpcf7-checkbox .wpcf7-list-item-label {
    line-height: 33px;
    padding-left: 8px
}

.wpcf7-form .panel .wpcf7-checkbox span.wpcf7-list-item {
    margin: 0
}

.wpcf7-form .panel input.wpcf7-submit.submit-btn {
    font-size: 18px;
    background-color: #f07821 !important;
    color: #fff !important;
    padding: 10px 30px;
    border-radius: 3px;
    width: auto;
    height: auto;
    line-height: inherit;
    border: 0 none
}

.application-form-note {
    border: 1px solid #ddd;
    background-color: #eee;
    padding: 10px
}

.application-form-note b {
    color: #f07821
}

.application-form-note-para {
    line-height: 18px;
    font-size: 12px
}

.aply-now-btn {
    position: fixed;
    right: 20px;
    top: 70vh;
    background: #f07821;
    color: #fff;
    padding: 8px 15px;
    z-index: 999
}

#pgc-149-0-0 {
    position: relative
}

#pgc-149-2-1 .widget-title {
    font-size: 24px;
    line-height: 1;
    text-transform: uppercase;
    margin: 0 0 9px;
    position: relative;
    color: #333;
    padding-bottom: 15px
}

#pgc-149-2-1 .widget-title:after {
    height: 4px;
    width: 50px;
    bottom: 1px;
    background: #f07821;
    content: '';
    position: absolute;
    left: 0
}

#pgc-149-2-1 .so-widget-sow-post-carousel-default-fa0e60bb7344 .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item .sow-carousel-thumbnail a {
    width: 100%;
    height: 260px;
    background-position: center;
    background-size: cover
}

#pgc-149-2-1 .sow-carousel-wrapper ul.sow-carousel-items li.sow-carousel-item h3 {
    padding: 0 20px 20px;
    z-index: 10;
    font-size: 22px;
    line-height: 34px;
    font-weight: 700;
    color: #f07821
}

.sow-carousel-wrapper ul.sow-carousel-items {
    height: 260px
}

.online-applcat-form {
    background-color: #f07821;
    color: #fff;
    border: 0 none;
    padding: 8px 12px
}

.click-btn {
    background: #f07821;
    color: #fff;
    padding: 8px 15px;
    font-weight: 700;
    font-size: 18px
}

.account-det-box {
    background-color: #eee;
    width: 50%;
    padding: 10px 30px
}

.account-det-box h4 {
    color: #f07821
}

.account-det-box p {
    margin: 0
}

.alumi {
    margin: 0;
    padding: 0
}

.alumi ul {
    margin: 0;
    padding: 0
}

.alumi li {
    margin: 0;
    padding: 0 10px
}

.alumi h3 {
    font-size: 18px
}

.mt10 {
    margin-bottom: 5px
}

@media only screen and (max-width:1199px) {
    header#masthead .header-v1 .header-right {
        float: right;
        width: 52%
    }
    .navigation .width-navigation .inner-navigation .navbar {
        text-align: center;
        padding: 0
    }
    .navigation .width-navigation .inner-navigation .navbar>li.menu-item {
        padding: 0 12px
    }
    .header-info .info-1 {
        font-size: 13px
    }
    .header-info .info-2 {
        font-size: 14px;
        min-height: 34px
    }
    .switcher {
        width: 100px !important;
    }
}

@media only screen and (max-width:991px) {
    .logo-side {
        margin: 10px 0 0 15px;
        width: 30%
    }
    header#masthead .header-v1 .header-right {
        float: right;
        width: 66%
    }
    .navigation .width-navigation .inner-navigation .navbar {
        text-align: center;
        padding: 0
    }
    body.responsive .navigation .width-navigation .inner-navigation .navbar>li.menu-item {
        padding: 0 1px
    }
    .switcher {
        margin-bottom: 8px
    }
    .home .panel-grid.panel-has-style>.panel-row-style,
    .home .panel-grid.panel-no-style {
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }
    .home #pgc-w5c45abe0527dc-1-0,
    .home #pgc-w5c45abe0527dc-1-1,
    .home #pgc-w5c45abe0527dc-1-2,
    .home #pgc-w5c45abe0527dc-1-3,
    .home #pgc-w5c45abe0527dc-1-4,
    .home #pgc-w5c45abe0527dc-1-5 {
        width: 33.33%
    }
    .services_panel .panel {
        min-height: inherit
    }
}

@media only screen and (max-width:850px) {
    header#masthead .width-navigation .navbar>li>a,
    header#masthead .width-navigation .navbar>li>span {
        font-size: 13px
    }
}

@media only screen and (max-width:768px) {
    body.responsive header#masthead .logo {
        display: block
    }
    body.responsive header#masthead .mobile-logo {
        display: none !important
    }
    body.responsive header#masthead .width-logo {
        margin-left: 50px
    }
    .logo-side {
        width: auto;
        margin: 42px 0 0 8px
    }
    body.responsive header.site-header {
        padding-top: 5px;
        padding-bottom: 5px !important
    }
    .sticky-header.affix .logo-side {
        display: none
    }
    body.responsive header#masthead.sticky-header.affix .width-logo .sticky-logo img {
        width: auto
    }
    .switcher {
        float: left !important;
        margin: 15px 20px
    }
    .switcher .option {
        position: relative !important;
        right: 0px;
    }
    body.responsive .mobile-menu-container .header-right {
        margin-top: 0
    }
    .header-info .info-1 {
        color: #ddd
    }
    .header-info .info-2 a {
        color: #fff
    }
    body.responsive .mobile-menu-container .header-right ul .header-info {
        margin: 0 0 5px
    }
    .thim-heading h3 {
        font-size: 16px
    }
    .thim-heading .subtitle {
        font-size: 13px
    }
    .home #pgc-w5c45abe0527dc-1-0,
    .home #pgc-w5c45abe0527dc-1-1,
    .home #pgc-w5c45abe0527dc-1-2,
    .home #pgc-w5c45abe0527dc-1-3,
    .home #pgc-w5c45abe0527dc-1-4,
    .home #pgc-w5c45abe0527dc-1-5 {
        width: 33.33%
    }
    .page-about .single-image.right,
    .page-about .single-image.center {
        text-align: left
    }
    .thim-slider .flex-direction-nav .flex-prev:before,
    .thim-slider .flex-direction-nav .flex-next:before {
        line-height: 30px
    }
    .thim-slider:hover .flex-direction-nav .flex-next {
        opacity: .8;
        right: auto;
        left: 40px;
        bottom: 4px;
        top: auto
    }
    .thim-slider .flex-direction-nav .flex-next {
        right: auto;
        left: 40px;
        bottom: 4px;
        opacity: 1;
        top: auto
    }
    .thim-slider:hover .flex-direction-nav .flex-prev {
        opacity: .8;
        left: 5px;
        top: auto;
        bottom: 4px
    }
    .thim-slider .flex-direction-nav .flex-prev {
        left: 5px;
        top: auto;
        bottom: 4px;
        opacity: 1
    }
    .thim-slider .flex-direction-nav a {
        height: 30px;
        width: 30px
    }
    .reg-button {
        right: 10px;
        top: 138px
    }
}

@media only screen and (max-width:600px) {
    .logo-side {
        width: 65%;
        margin: 20px 0 0 8px
    }
    .ngg-widget img {
        width: 100% !important
    }
}

@media only screen and (max-width:480px) {
    .logo-side p {
        font-weight: 400;
        font-size: 12px;
        line-height: 17px
    }
    .logo-side {
        width: 56%;
        margin: 20px 0 0 8px
    }
}

@media only screen and (max-width:380px) {
    .logo-side {
        width: 100%;
        margin: 0
    }
    body.responsive .container.header-v1 {
        padding-right: 0
    }
    header#masthead .width-logo {
        width: 198px !important;
        margin: 0 auto;
        margin-left: auto
    }
    body.responsive .menu-mobile-effect.navbar-toggle {
        top: 8px;
        margin: 0
    }
    .reg-button {
        top: 15px
    }
}

.ngg-widget img {
    border: 2px solid #a9a9a9;
    margin: 0 2px 2px 0;
    padding: 1px;
    height: 250px !important;
    float: left
}

#menu-item-2867 {
    display: none
}

.textwidget ul {
    margin: 0;
    list-style: none
}

.wpdm-download-link.btn.btn-primary. {
    border-radius: 4px
}


/*
You can add your own CSS here.

Click the help icon above to learn more.
*/

.w3eden .fetfont,
.w3eden .btn,
.w3eden .btn.wpdm-front h3.title,
.w3eden .wpdm-social-lock-box .IN-widget a span:last-child,
.w3eden #xfilelist .panel-heading,
.w3eden .wpdm-frontend-tabs a,
.w3eden .alert:before,
.w3eden .panel .panel-heading,
.w3eden .discount-msg,
.w3eden .panel.dashboard-panel h3,
.w3eden #wpdm-dashboard-sidebar .list-group-item,
.w3eden #package-description .wp-switch-editor,
.w3eden .w3eden.author-dashbboard .nav.nav-tabs li a,
.w3eden .wpdm_cart thead th,
.w3eden #csp .list-group-item,
.w3eden .modal-title {
    font-family: Rubik, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    text-transform: uppercase;
    font-weight: 500
}

.w3eden #csp .list-group-item {
    text-transform: unset
}

 :root {
    --color-primary: #4a8eff;
    --color-primary-rgb: 74, 142, 255;
    --color-primary-hover: #4a8eff;
    --color-primary-active: #4a8eff;
    --color-secondary: #4a8eff;
    --color-secondary-rgb: 74, 142, 255;
    --color-secondary-hover: #4a8eff;
    --color-secondary-active: #4a8eff;
    --color-success: #18ce0f;
    --color-success-rgb: 24, 206, 15;
    --color-success-hover: #4a8eff;
    --color-success-active: #4a8eff;
    --color-info: #2ca8ff;
    --color-info-rgb: 44, 168, 255;
    --color-info-hover: #2ca8ff;
    --color-info-active: #2ca8ff;
    --color-warning: #f29e0f;
    --color-warning-rgb: 242, 158, 15;
    --color-warning-hover: orange;
    --color-warning-active: orange;
    --color-danger: #ff5062;
    --color-danger-rgb: 255, 80, 98;
    --color-danger-hover: #ff5062;
    --color-danger-active: #ff5062;
    --color-green: #30b570;
    --color-blue: #0073ff;
    --color-purple: #8557d3;
    --color-red: #ff5062;
    --color-muted: rgba(69, 89, 122, .6);
    --wpdm-font: Rubik, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"
}

.wpdm-download-link.btn.btn-primary {
    border-radius: 4px
}

.switcher {
    font-family: Arial;
    font-size: 10pt;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    width: 163px;
    line-height: 17px
}

.switcher a {
    text-decoration: none;
    display: block;
    font-size: 10pt;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.switcher a img {
    vertical-align: middle;
    display: inline;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: .8
}

.switcher a:hover img {
    opacity: 1
}

.switcher .selected {
    background: #fff url(../images/switcher.png) repeat-x;
    position: relative;
    z-index: 9999
}

.switcher .selected a {
    border: 1px solid #ccc;
    background: url(../images/arrow_down.png) 146px center no-repeat;
    color: #666;
    padding: 3px 5px;
    width: 151px
}

.switcher .selected a.open {
    background-image: url(../images/arrow_up.png)
}

.switcher .selected a:hover {
    background: #f0f0f0 url(../images/arrow_down.png) 146px center no-repeat
}

.switcher .option {
    position: relative;
    z-index: 9998;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #eee;
    display: none;
    width: 161px;
    max-height: 198px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    overflow-y: auto;
    overflow-x: hidden
}

.switcher .option a {
    color: #000;
    padding: 3px 5px
}

.switcher .option a:hover {
    background: #ffc
}

.switcher .option a.selected {
    background: #ffc
}

#selected_lang_name {
    float: none
}

.l_name {
    float: none !important;
    margin: 0
}

.switcher .option::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    border-radius: 5px;
    background-color: #f5f5f5
}

.switcher .option::-webkit-scrollbar {
    width: 5px
}

.switcher .option::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    background-color: #888
}

#goog-gt-tt {
    display: none !important
}

.goog-te-banner-frame {
    display: none !important
}

.goog-te-menu-value:hover {
    text-decoration: none !important
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important
}

body {
    top: 0 !important
}

#google_translate_element2 {
    display: none!important
}

.switcher {
    font-family: Arial;
    font-size: 10pt;
    text-align: left;
    cursor: pointer;
    overflow: hidden;
    width: 163px;
    line-height: 5px
}

.switcher a {
    text-decoration: none;
    display: block;
    font-size: 10pt;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box
}

.switcher a img {
    vertical-align: middle;
    display: inline;
    border: 0;
    padding: 0;
    margin: 0;
    opacity: .8
}

.switcher a:hover img {
    opacity: 1
}

.switcher .selected {
    background: #fff url(../images/switcher.png) repeat-x;
    position: relative;
    z-index: 9999
}

.switcher .selected a {
    border: 1px solid #ccc;
    background: url(../images/arrow_down.png) 146px center no-repeat;
    color: #666;
    padding: 3px 5px;
    width: 151px
}

.switcher .selected a.open {
    background-image: url(../images/arrow_up.png);
}

.switcher .selected a:hover {
    background: #f0f0f0 url(../images/arrow_down.png) 146px center no-repeat
}

.switcher .option {
    position: relative;
    z-index: 9998;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    background-color: #eee;
    display: none;
    width: 161px;
    max-height: 198px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    overflow-y: auto;
    overflow-x: hidden
}

.switcher .option a {
    color: #000;
    padding: 3px 5px
}

.switcher .option a:hover {
    background: #ffc
}

.switcher .option a.selected {
    background: #ffc
}

#selected_lang_name {
    float: none
}

.l_name {
    float: none !important;
    margin: 0
}

.switcher .option::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    border-radius: 5px;
    background-color: #f5f5f5
}

.switcher .option::-webkit-scrollbar {
    width: 5px
}

.switcher .option::-webkit-scrollbar-thumb {
    border-radius: 5px;
    -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, .3);
    background-color: #888
}

#goog-gt-tt {
    display: none !important;
}

.goog-te-banner-frame {
    display: none !important
}

.goog-te-menu-value:hover {
    text-decoration: none !important
}

.goog-text-highlight {
    background-color: transparent !important;
    box-shadow: none !important
}

body {
    top: 0 !important
}

#google_translate_element2 {
    display: none!important
}

#pgc-w5c9f304fbc184-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pl-w5c9f304fbc184 .so-panel {
    margin-bottom: 30px
}

#pl-w5c9f304fbc184 .so-panel:last-child {
    margin-bottom: 0
}

#pg-w5c9f304fbc184-0.panel-no-style,
#pg-w5c9f304fbc184-0.panel-has-style>.panel-row-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

@media (max-width:780px) {
    #pg-w5c9f304fbc184-0.panel-no-style,
    #pg-w5c9f304fbc184-0.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-w5c9f304fbc184-0>.panel-grid-cell,
    #pg-w5c9f304fbc184-0>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pl-w5c9f304fbc184 .panel-grid-cell {
        padding: 0
    }
    #pl-w5c9f304fbc184 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-w5c9f304fbc184 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}

#pgc-w5c5530dbae616-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pg-w5c5530dbae616-0,
#pl-w5c5530dbae616 .so-panel {
    margin-bottom: 30px
}

#pgc-w5c5530dbae616-1-0,
#pgc-w5c5530dbae616-1-1,
#pgc-w5c5530dbae616-1-2,
#pgc-w5c5530dbae616-1-3,
#pgc-w5c5530dbae616-1-4,
#pgc-w5c5530dbae616-1-5 {
    width: 16.6667%;
    width: calc(16.6667% - (.83333333333333*30px))
}

#pl-w5c5530dbae616 .so-panel:last-child {
    margin-bottom: 0
}

#pg-w5c5530dbae616-0.panel-no-style,
#pg-w5c5530dbae616-0.panel-has-style>.panel-row-style,
#pg-w5c5530dbae616-1.panel-no-style,
#pg-w5c5530dbae616-1.panel-has-style>.panel-row-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

@media (max-width:780px) {
    #pg-w5c5530dbae616-0.panel-no-style,
    #pg-w5c5530dbae616-0.panel-has-style>.panel-row-style,
    #pg-w5c5530dbae616-1.panel-no-style,
    #pg-w5c5530dbae616-1.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-w5c5530dbae616-0>.panel-grid-cell,
    #pg-w5c5530dbae616-0>.panel-row-style>.panel-grid-cell,
    #pg-w5c5530dbae616-1>.panel-grid-cell,
    #pg-w5c5530dbae616-1>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pgc-w5c5530dbae616-1-0,
    #pgc-w5c5530dbae616-1-1,
    #pgc-w5c5530dbae616-1-2,
    #pgc-w5c5530dbae616-1-3,
    #pgc-w5c5530dbae616-1-4 {
        margin-bottom: 30px
    }
    #pl-w5c5530dbae616 .panel-grid-cell {
        padding: 0
    }
    #pl-w5c5530dbae616 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-w5c5530dbae616 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/*About*/

#pgc-151-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pg-151-0,
#pl-151 .so-panel:last-child {
    margin-bottom: 0
}

#pgc-151-1-0,
#pgc-151-1-1 {
    width: 50%;
    width: calc(50% - (.5*30px))
}

#pg-151-1 {
    margin-bottom: 74px
}

#pgc-151-2-0,
#pgc-151-2-1,
#pgc-151-2-2 {
    width: 33.3333%;
    width: calc(33.3333% - (.66666666666667*30px))
}

#pl-151 .so-panel {
    margin-bottom: 30px
}

@media (max-width:780px) {
    #pg-151-0.panel-no-style,
    #pg-151-0.panel-has-style>.panel-row-style,
    #pg-151-1.panel-no-style,
    #pg-151-1.panel-has-style>.panel-row-style,
    #pg-151-2.panel-no-style,
    #pg-151-2.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-151-0>.panel-grid-cell,
    #pg-151-0>.panel-row-style>.panel-grid-cell,
    #pg-151-1>.panel-grid-cell,
    #pg-151-1>.panel-row-style>.panel-grid-cell,
    #pg-151-2>.panel-grid-cell,
    #pg-151-2>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pgc-151-1-0,
    #pgc-151-2-0,
    #pgc-151-2-1 {
        margin-bottom: 30px
    }
    #pl-151 .panel-grid-cell {
        padding: 0
    }
    #pl-151 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-151 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* End of About */


/* Midas */

#pg-697-0.panel-no-style,
#pg-697-0.panel-has-style>.panel-row-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

@media (max-width:780px) {
    #pg-697-0.panel-no-style,
    #pg-697-0.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-697-0>.panel-grid-cell,
    #pg-697-0>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pl-697 .panel-grid-cell {
        padding: 0
    }
    #pl-697 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-697 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* Career */

#pgc-651-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pg-651-0,
#pl-651 .so-panel:last-child {
    margin-bottom: 0
}

#pgc-651-1-0,
#pgc-651-1-1 {
    width: 50%;
    width: calc(50% - (.5*30px))
}

#pl-651 .so-panel {
    margin-bottom: 30px
}

#pg-651-1.panel-no-style,
#pg-651-1.panel-has-style>.panel-row-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

@media (max-width:780px) {
    #pg-651-0.panel-no-style,
    #pg-651-0.panel-has-style>.panel-row-style,
    #pg-651-1.panel-no-style,
    #pg-651-1.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-651-0>.panel-grid-cell,
    #pg-651-0>.panel-row-style>.panel-grid-cell,
    #pg-651-1>.panel-grid-cell,
    #pg-651-1>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pgc-651-1-0 {
        margin-bottom: 30px
    }
    #pl-651 .panel-grid-cell {
        padding: 0
    }
    #pl-651 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-651 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* End of Career */


/* Process */

#pgc-1541-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pg-1541-0,
#pl-1541 .so-panel {
    margin-bottom: 30px
}

#pgc-1541-1-0,
#pgc-1541-1-1 {
    width: 50%;
    width: calc(50% - (.5*30px))
}

#pl-1541 .so-panel:last-child {
    margin-bottom: 0
}

#pg-1541-1.panel-no-style,
#pg-1541-1.panel-has-style>.panel-row-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

@media (max-width:780px) {
    #pg-1541-0.panel-no-style,
    #pg-1541-0.panel-has-style>.panel-row-style,
    #pg-1541-1.panel-no-style,
    #pg-1541-1.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-1541-0>.panel-grid-cell,
    #pg-1541-0>.panel-row-style>.panel-grid-cell,
    #pg-1541-1>.panel-grid-cell,
    #pg-1541-1>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pgc-1541-1-0 {
        margin-bottom: 30px
    }
    #pl-1541 .panel-grid-cell {
        padding: 0
    }
    #pl-1541 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-1541 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* End of Process */


/* Eligibility */

#pgc-764-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pg-764-0,
#pl-764 .so-panel {
    margin-bottom: 30px
}

#pgc-764-1-0,
#pgc-764-1-1 {
    width: 50%;
    width: calc(50% - (.5*30px))
}

#pl-764 .so-panel:last-child {
    margin-bottom: 0
}

#pg-764-0.panel-no-style,
#pg-764-0.panel-has-style>.panel-row-style,
#pg-764-1.panel-no-style,
#pg-764-1.panel-has-style>.panel-row-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

@media (max-width:780px) {
    #pg-764-0.panel-no-style,
    #pg-764-0.panel-has-style>.panel-row-style,
    #pg-764-1.panel-no-style,
    #pg-764-1.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-764-0>.panel-grid-cell,
    #pg-764-0>.panel-row-style>.panel-grid-cell,
    #pg-764-1>.panel-grid-cell,
    #pg-764-1>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pgc-764-1-0 {
        margin-bottom: 30px
    }
    #pl-764 .panel-grid-cell {
        padding: 0
    }
    #pl-764 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-764 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* End of Eligiblity */


/* Transfer */

#pgc-788-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pl-788 .so-panel {
    margin-bottom: 30px
}

#pl-788 .so-panel:last-child {
    margin-bottom: 0
}

@media (max-width:780px) {
    #pg-788-0.panel-no-style,
    #pg-788-0.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-788-0>.panel-grid-cell,
    #pg-788-0>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pl-788 .panel-grid-cell {
        padding: 0
    }
    #pl-788 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-788 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* End of Transfer */


/* GL */

#pgc-798-0-0 {
    width: 100%
}

#pg-798-0 {
    margin-left: -15px;
    margin-right: -15px
}

#pg-798-0>.panel-grid-cell,
#pg-798-0>.panel-row-style>.panel-grid-cell {
    padding-left: 15px;
    padding-right: 15px
}

#pl-798 .so-panel {
    margin-bottom: 30px
}

#pl-798 .so-panel:last-child {
    margin-bottom: 0
}

@media (max-width:780px) {
    #pl-798 .panel-grid-cell {
        float: none;
        width: auto
    }
    #pl-798 .panel-grid {
        margin-left: 0;
        margin-right: 0
    }
    #pl-798 .panel-grid-cell {
        padding: 0
    }
    #pl-798 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-798 .panel-grid .panel-grid-cell-mobile-last,
    #pg-798-0>.panel-grid-cell,
    #pg-798-0>.panel-row-style>.panel-grid-cell:last-child {
        margin-bottom: 0
    }
    #pg-798-0>.panel-grid-cell,
    #pg-798-0>.panel-row-style>.panel-grid-cell {
        margin-bottom: 30px
    }
}


/* End of GL */


/* Workshops */

#pgc-707-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pl-707 .so-panel {
    margin-bottom: 30px
}

#pl-707 .so-panel:last-child {
    margin-bottom: 0
}

@media (max-width:780px) {
    #pg-707-0.panel-no-style,
    #pg-707-0.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-707-0>.panel-grid-cell,
    #pg-707-0>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pl-707 .panel-grid-cell {
        padding: 0
    }
    #pl-707 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-707 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* End of Workshops */


/* Student Works */

#pgc-779-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pl-779 .so-panel {
    margin-bottom: 30px
}

#pl-779 .so-panel:last-child {
    margin-bottom: 0
}

@media (max-width:780px) {
    #pg-779-0.panel-no-style,
    #pg-779-0.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-779-0>.panel-grid-cell,
    #pg-779-0>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pl-779 .panel-grid-cell {
        padding: 0
    }
    #pl-779 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-779 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* End of Student Works */


/* Scholarship Scheme */

#pgc-785-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pl-785 .so-panel {
    margin-bottom: 30px
}

#pl-785 .so-panel:last-child {
    margin-bottom: 0
}

@media (max-width:780px) {
    #pg-785-0.panel-no-style,
    #pg-785-0.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-785-0>.panel-grid-cell,
    #pg-785-0>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pl-785 .panel-grid-cell {
        padding: 0
    }
    #pl-785 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-785 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* End Scholarship Scheme */


/* Clubs */

#pgc-782-0-0,
#pgc-782-2-0,
#pgc-782-3-0,
#pgc-782-4-0,
#pgc-782-5-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pg-782-0,
#pg-782-1,
#pg-782-2,
#pg-782-3,
#pg-782-4,
#pl-782 .so-panel {
    margin-bottom: 30px
}

#pgc-782-1-0,
#pgc-782-1-1,
#pgc-782-1-2 {
    width: 33.3333%;
    width: calc(33.3333% - (.66666666666667*30px))
}

#pl-782 .so-panel:last-child {
    margin-bottom: 0
}

#pg-782-1.panel-no-style,
#pg-782-1.panel-has-style>.panel-row-style,
#pg-782-2.panel-no-style,
#pg-782-2.panel-has-style>.panel-row-style,
#pg-782-3.panel-no-style,
#pg-782-3.panel-has-style>.panel-row-style,
#pg-782-5.panel-no-style,
#pg-782-5.panel-has-style>.panel-row-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

@media (max-width:780px) {
    #pg-782-0.panel-no-style,
    #pg-782-0.panel-has-style>.panel-row-style,
    #pg-782-1.panel-no-style,
    #pg-782-1.panel-has-style>.panel-row-style,
    #pg-782-2.panel-no-style,
    #pg-782-2.panel-has-style>.panel-row-style,
    #pg-782-3.panel-no-style,
    #pg-782-3.panel-has-style>.panel-row-style,
    #pg-782-4.panel-no-style,
    #pg-782-4.panel-has-style>.panel-row-style,
    #pg-782-5.panel-no-style,
    #pg-782-5.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-782-0>.panel-grid-cell,
    #pg-782-0>.panel-row-style>.panel-grid-cell,
    #pg-782-1>.panel-grid-cell,
    #pg-782-1>.panel-row-style>.panel-grid-cell,
    #pg-782-2>.panel-grid-cell,
    #pg-782-2>.panel-row-style>.panel-grid-cell,
    #pg-782-3>.panel-grid-cell,
    #pg-782-3>.panel-row-style>.panel-grid-cell,
    #pg-782-4>.panel-grid-cell,
    #pg-782-4>.panel-row-style>.panel-grid-cell,
    #pg-782-5>.panel-grid-cell,
    #pg-782-5>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pgc-782-1-0,
    #pgc-782-1-1 {
        margin-bottom: 30px
    }
    #pl-782 .panel-grid-cell {
        padding: 0
    }
    #pl-782 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-782 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* End Clubs */


/* Sports */

#pgc-694-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pl-694 .so-panel {
    margin-bottom: 30px
}

#pl-694 .so-panel:last-child {
    margin-bottom: 0
}

@media (max-width:780px) {
    #pg-694-0.panel-no-style,
    #pg-694-0.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-694-0>.panel-grid-cell,
    #pg-694-0>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pl-694 .panel-grid-cell {
        padding: 0
    }
    #pl-694 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-694 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/*End Sports */

#pgc-816-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pl-816 .so-panel {
    margin-bottom: 30px
}

#pl-816 .so-panel:last-child {
    margin-bottom: 0
}

@media (max-width:780px) {
    #pg-816-0.panel-no-style,
    #pg-816-0.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-816-0>.panel-grid-cell,
    #pg-816-0>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pl-816 .panel-grid-cell {
        padding: 0
    }
    #pl-816 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-816 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* Alumni */

#pgc-813-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pl-813 .so-panel {
    margin-bottom: 30px
}

#pl-813 .so-panel:last-child {
    margin-bottom: 0
}

@media (max-width:780px) {
    #pg-813-0.panel-no-style,
    #pg-813-0.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-813-0>.panel-grid-cell,
    #pg-813-0>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pl-813 .panel-grid-cell {
        padding: 0
    }
    #pl-813 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-813 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}

.alumi {
    margin: 0;
    padding: 0
}

.alumi ul {
    margin: 0;
    padding: 0
}

.alumi li {
    margin: 0;
    padding: 0 10px
}

.alumi h3 {
    font-size: 18px
}

.mt10 {
    margin-bottom: 5px
}


/* End Alumni */


/* Contact */

#pgc-157-0-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pg-157-0,
#pl-157 .so-panel {
    margin-bottom: 30px
}

#pgc-157-1-0 {
    width: 59.9898%;
    width: calc(59.9898% - (.40010193679918*30px))
}

#pgc-157-1-1 {
    width: 40.0102%;
    width: calc(40.0102% - (.59989806320082*30px))
}

#pg-157-1 {
    margin-bottom: 74px
}

#pl-157 .so-panel:last-child {
    margin-bottom: 0
}

#pg-157-0.panel-no-style,
#pg-157-0.panel-has-style>.panel-row-style,
#pg-157-1.panel-no-style,
#pg-157-1.panel-has-style>.panel-row-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

@media (max-width:780px) {
    #pg-157-0.panel-no-style,
    #pg-157-0.panel-has-style>.panel-row-style,
    #pg-157-1.panel-no-style,
    #pg-157-1.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-157-0>.panel-grid-cell,
    #pg-157-0>.panel-row-style>.panel-grid-cell,
    #pg-157-1>.panel-grid-cell,
    #pg-157-1>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pgc-157-1-0 {
        margin-bottom: 30px
    }
    #pl-157 .panel-grid-cell {
        padding: 0
    }
    #pl-157 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-157 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* Contact */


/* Media */

#pgc-1919-0-0,
#pgc-1919-0-1 {
    width: 50%;
    width: calc(50% - (.5*30px))
}

#pg-1919-0,
#pl-1919 .so-panel {
    margin-bottom: 30px
}

#pgc-1919-1-0 {
    width: 100%;
    width: calc(100% - (0*30px))
}

#pl-1919 .so-panel:last-child {
    margin-bottom: 0
}

#pg-1919-0.panel-no-style,
#pg-1919-0.panel-has-style>.panel-row-style,
#pg-1919-1.panel-no-style,
#pg-1919-1.panel-has-style>.panel-row-style {
    -webkit-align-items: flex-start;
    align-items: flex-start
}

@media (max-width:780px) {
    #pg-1919-0.panel-no-style,
    #pg-1919-0.panel-has-style>.panel-row-style,
    #pg-1919-1.panel-no-style,
    #pg-1919-1.panel-has-style>.panel-row-style {
        -webkit-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column
    }
    #pg-1919-0>.panel-grid-cell,
    #pg-1919-0>.panel-row-style>.panel-grid-cell,
    #pg-1919-1>.panel-grid-cell,
    #pg-1919-1>.panel-row-style>.panel-grid-cell {
        width: 100%;
        margin-right: 0
    }
    #pgc-1919-0-0 {
        margin-bottom: 30px
    }
    #pl-1919 .panel-grid-cell {
        padding: 0
    }
    #pl-1919 .panel-grid .panel-grid-cell-empty {
        display: none
    }
    #pl-1919 .panel-grid .panel-grid-cell-mobile-last {
        margin-bottom: 0
    }
}


/* Media */


/*  */

.snip1543 {
    background-color: #fff;
    color: #ffffff;
    font-size: 16px;
    overflow: hidden;
    position: relative;
    text-align: left;
    width: 100%;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.snip1543 *,
.snip1543 *:before,
.snip1543 *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.snip1543 img {
    backface-visibility: hidden;
    max-width: 100%;
    vertical-align: top;
}

.snip1543:before,
.snip1543:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    content: '';
    background-color: #f07821;
    opacity: 0.5;
    -webkit-transition: all 0.45s ease;
    transition: all 0.45s ease;
}

.snip1543:before {
    -webkit-transform: skew(30deg) translateX(-80%);
    transform: skew(30deg) translateX(-80%);
}

.snip1543:after {
    -webkit-transform: skew(-30deg) translateX(-70%);
    transform: skew(-30deg) translateX(-70%);
}

.snip1543 figcaption {
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    bottom: 0;
    padding: 25px 40% 25px 20px;
}

.snip1543 figcaption:before,
.snip1543 figcaption:after {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #f07821;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    content: '';
    opacity: 0.5;
    z-index: -1;
}

.snip1543 figcaption:before {
    -webkit-transform: skew(30deg) translateX(-100%);
    transform: skew(30deg) translateX(-100%);
}

.snip1543 figcaption:after {
    -webkit-transform: skew(-30deg) translateX(-90%);
    transform: skew(-30deg) translateX(-90%);
}

.snip1543 h3,
.snip1543 p {
    margin: 0;
    opacity: 0;
    letter-spacing: 1px;
    color: #fff;
}

.snip1543 h3 {
    font-weight: 700;
    line-height: 1em;
}

.snip1543 a {
    position: relative;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.snip1543:hover h3,
.snip1543.hover h3,
.snip1543:hover p,
.snip1543.hover p {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 0.9;
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.snip1543:hover:before,
.snip1543.hover:before {
    -webkit-transform: skew(30deg) translateX(-20%);
    transform: skew(30deg) translateX(-20%);
    -webkit-transition-delay: 0.05s;
    transition-delay: 0.05s;
}

.snip1543:hover:after,
.snip1543.hover:after {
    -webkit-transform: skew(-30deg) translateX(-10%);
    transform: skew(-30deg) translateX(-10%);
}

.snip1543:hover figcaption:before,
.snip1543.hover figcaption:before {
    -webkit-transform: skew(30deg) translateX(-40%);
    transform: skew(30deg) translateX(-40%);
    -webkit-transition-delay: 0.15s;
    transition-delay: 0.15s;
}

.snip1543:hover figcaption:after,
.snip1543.hover figcaption:after {
    -webkit-transform: skew(-30deg) translateX(-30%);
    transform: skew(-30deg) translateX(-30%);
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.mb-10 {
    margin-bottom: 10px;
}


/*  */

.modal-active {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    height: auto;
}

.modal-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}

.modal-layer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, .5);
    z-index: 9998;
}

.modal {
    display: flex;
    position: relative;
    width: 90%;
    max-width: 90%;
    max-height: 90%;
    z-index: 9999;
}

.modal-youtube {
    width: 640px;
    height: 360px;
}

.modal-close-btn {
    position: absolute;
    background-color: #FFF;
    line-height: 0;
    padding: 13px;
    border: 1px solid deepskyblue;
    border-radius: 99px;
    color: deeppink;
    right: -20px;
    top: -20px;
    cursor: pointer;
}

.modal-content {
    width: 100%;
    background-color: #FFF;
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

button::-moz-focus-inner {
    padding: 0;
    border: 0 none;
}

.demo-modal {
    max-width: 800px;
}

.demo-modal-content {
    padding: 20px;
}

h1.title {
    font-size: 2em;
}


/* Modal Form */

.trigger_popup {
    transform: rotate(270deg);
    position: fixed;
    top: 45%;
    right: -3.5%;
    z-index: 999;
    cursor: pointer;
    background-color: #c74000;
    border-color: #c74000;
    border-radius: 5px;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0;
    padding: 10px 16px;
    font-size: 18px;
    color: #fff;
    line-height: 1.33;
}

.trigger_popup:hover {
    background-color: #c74000;
    border-color: #c74000;
}


/* The Modal (background) */

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 9999999;
    /* Sit on top */
    padding-top: 35px;
    /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
    max-width: inherit;
    max-height: inherit;
}



/* Modal Content */

.modal-content {
    background-color: transparent;
    margin: auto;
    padding: 0;
    border: 0px solid #888;
    max-width: 390px;
    position: relative;
    box-shadow: none;
}


/* The Close Button */

.close {
    color: #c1c1c1;
    float: right;
    font-size: 30px;
    font-weight: bold;
    position: absolute;
    right: 15px;
    z-index: 9999;
    top: 2px;
}

.close:hover,
.close:focus {
    color: #797878;
    text-decoration: none;
    cursor: pointer;
}

.head_text {
    background-color: #c74000;
    color: #fff;
    text-align: center;
    padding: 7px;
    font-size: 20px;
    border-top-left-radius: 35px;
}

@media (max-width:768px) {
    .trigger_popup {
        transform: rotate(0);
        bottom: 0;
        top: 90%;
        right: unset;
        margin: 0;
        left: 15%;
        font-size: 14px;
        padding: 6px 10px;
    }
    .popupCloseButton {
        top: -10px;
        right: -2px;
    }
}


/* End modal Form */


/*Adt Styles */
.apply-arts{
    display: flex;
    justify-content: center;
}

.btn-orange{
    background-color: #e56318;
    color: #fff;
    font-weight: 600;
}
.btn-orange:hover,.btn-orange:active{
    color: #fff;
}

.tm-table{
    display: flex;
}

.mobile-arts{display: none;}

@media only screen and (max-width: 767px){
    div.pull-left.logo-side>p:nth-child(2), p:nth-child(3), p:nth-child(4) {
        display: block;
    }
    .logo-side{
        margin: 10px 0 0 8px; 
    }
    .logo-side p{
        margin-bottom: 5px;
        }
        .mobile-arts{display: block;}
}

/* The Modal (background) */
.akriti-modal {
    display: block !important; /* Hidden by default */
    position: relative !important; /* Stay in place */
    z-index: 99999;
    left: 0;
    right: 0;
    max-width: 800px;
    padding-top: 0;
  }

  .akriti-modal .modal-close-btn {
    position: absolute;
    background-color: #FFF;
    line-height: 0;
    padding: 13px;
    border: 1px solid deepskyblue;
    border-radius: 99px;
    color: deeppink;
    right: 0px;
    top: 10px;
    cursor: pointer;
    z-index:11111;
}
  
  /* Modal Content */
  .akriti-modal  .modal-content {
    background-color: rgba(255,255,255);
    margin: auto;
    max-width: inherit;
    padding: 20px;
    border: 1px solid #888;
    width: 100%;
    max-width: auto;
  }
  
  /* The Close Button */
  .atkriti-modal  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .atkriti-modal .close:hover,
  .atkriti-modal .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }