@charset "UTF-8";



@-webkit-keyframes bounce {
    20%, 53%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    20%, 53%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
    -webkit-transform-origin: center bottom;
    transform-origin: center bottom
}

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

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

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

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.rubberBand {
    -webkit-animation-name: rubberBand;
    animation-name: rubberBand
}

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

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

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

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

.headShake {
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-name: headShake;
    animation-name: headShake
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

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

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

@-webkit-keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes jello {
    11.1%, from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    11.1%, from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

.jello {
    -webkit-animation-name: jello;
    animation-name: jello;
    -webkit-transform-origin: center;
    transform-origin: center
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.heartBeat {
    -webkit-animation-name: heartBeat;
    animation-name: heartBeat;
    -webkit-animation-duration: 1.3s;
    animation-duration: 1.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out
}

@-webkit-keyframes bounceIn {
    20%, 40%, 60%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    20%, 40%, 60%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

.bounceIn {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn
}

@-webkit-keyframes bounceInDown {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInDown {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceInLeft {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInLeft {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceInRight {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInRight {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceInUp {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

.bounceOut {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: bounceOut;
    animation-name: bounceOut
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

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

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

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

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

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

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

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

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

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

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

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

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

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

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

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

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

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

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

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

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

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

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

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

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

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

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

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

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

.animated.flip {
    -webkit-backface-visibility: visible;
    backface-visibility: visible;
    -webkit-animation-name: flip;
    animation-name: flip
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

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

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

.flipOutX {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-animation-name: flipOutX;
    animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

.flipOutY {
    -webkit-animation-duration: .75s;
    animation-duration: .75s;
    -webkit-backface-visibility: visible !important;
    backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    animation-name: flipOutY
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

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

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

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

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

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

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

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

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

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

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

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

.hinge {
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-name: hinge;
    animation-name: hinge
}

@-webkit-keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

.jackInTheBox {
    -webkit-animation-name: jackInTheBox;
    animation-name: jackInTheBox
}

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

@-webkit-keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.animated.delay-1s {
    -webkit-animation-delay: 1s;
    animation-delay: 1s
}

.animated.delay-2s {
    -webkit-animation-delay: 2s;
    animation-delay: 2s
}

.animated.delay-3s {
    -webkit-animation-delay: 3s;
    animation-delay: 3s
}

.animated.delay-4s {
    -webkit-animation-delay: 4s;
    animation-delay: 4s
}

.animated.delay-5s {
    -webkit-animation-delay: 5s;
    animation-delay: 5s
}

.animated.fast {
    -webkit-animation-duration: .8s;
    animation-duration: .8s
}

.animated.faster {
    -webkit-animation-duration: .5s;
    animation-duration: .5s
}

.animated.slow {
    -webkit-animation-duration: 2s;
    animation-duration: 2s
}

.animated.slower {
    -webkit-animation-duration: 3s;
    animation-duration: 3s
}

select.bs-select-hidden, select.selectpicker {
    display: none !important
}

.bootstrap-select > .dropdown-toggle {
    width: 100%;
    padding-right: 25px;
    z-index: 1
}

.bootstrap-select > .dropdown-toggle.bs-placeholder, .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
    color: #999
}

.bootstrap-select > select {
    position: absolute !important;
    bottom: 0;
    left: 0%;
    display: block !important;
    width: .5px !important;
    height: 100% !important;
    padding: 0 0 !important;
    opacity: 0 !important;
    border: none
}

.bootstrap-select > select.mobile-device {
    top: 0;
    left: 0;
    display: block !important;
    width: 100% !important;
    z-index: 2
}

.error .bootstrap-select .dropdown-toggle, .has-error .bootstrap-select .dropdown-toggle {
    border-color: #b94a48
}

.bootstrap-select.fit-width {
    width: auto !important
}

.bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
    width: 220px;
    width: 100%
}

.bootstrap-select .dropdown-toggle:focus {
    outline: thin dotted #333;
    outline-offset: -2px
}

.bootstrap-select.form-control {
    margin-bottom: 0;
    padding: 0;
    border: none
}

.bootstrap-select.form-control:not([class*=col-]) {
    width: 100%
}

.bootstrap-select.form-control.input-group-btn {
    z-index: auto
}

.bootstrap-select.form-control.input-group-btn:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.bootstrap-select.btn-group:not(.input-group-btn), .bootstrap-select.btn-group[class*=col-] {
    float: none;
    display: inline-block;
    margin-left: 0
}

.bootstrap-select.btn-group.dropdown-menu-right, .bootstrap-select.btn-group[class*=col-].dropdown-menu-right, .row .bootstrap-select.btn-group[class*=col-].dropdown-menu-right {
    float: right
}

.form-group .bootstrap-select.btn-group, .form-horizontal .bootstrap-select.btn-group, .form-inline .bootstrap-select.btn-group {
    margin-bottom: 0
}

.form-group-lg .bootstrap-select.btn-group.form-control, .form-group-sm .bootstrap-select.btn-group.form-control {
    padding: 0
}

.form-group-lg .bootstrap-select.btn-group.form-control .dropdown-toggle, .form-group-sm .bootstrap-select.btn-group.form-control .dropdown-toggle {
    height: 100%;
    font-size: inherit;
    line-height: inherit;
    border-radius: inherit
}

.form-inline .bootstrap-select.btn-group .form-control {
    width: 100%
}

.bootstrap-select.btn-group.disabled, .bootstrap-select.btn-group > .disabled {
    cursor: not-allowed
}

.bootstrap-select.btn-group.disabled:focus, .bootstrap-select.btn-group > .disabled:focus {
    outline: 0
}

.bootstrap-select.btn-group.bs-container {
    position: absolute;
    height: 0 !important;
    padding: 0 0 !important
}

.bootstrap-select.btn-group.bs-container .dropdown-menu {
    z-index: 1060
}

.bootstrap-select.btn-group .dropdown-toggle .filter-option {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    text-align: left;
    color: #000;
    font-weight:500;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    position: absolute;
    top: 50%;
    right: 12px;
    margin-top: -2px;
    vertical-align: middle;
    width: 11px;
    height: 7px;
    border: none;
    background: url(../img/selectdropdown.png) no-repeat center center !important
}

.bootstrap-select.btn-group[class*=col-] .dropdown-toggle {
    width: 100%
}

.bootstrap-select.btn-group .dropdown-menu {
    min-width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    overflow-y: scroll !important
}

.bootstrap-select.btn-group .dropdown-menu.inner {
    position: static;
    float: none;
    border: 0;
    padding: 0;
    margin: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    overflow: hidden !important
}

.bootstrap-select.btn-group .dropdown-menu li {
    position: relative
}

.bootstrap-select.btn-group .dropdown-menu li.active small {
    color: #fff
}

.bootstrap-select.btn-group .dropdown-menu li.disabled a {
    cursor: not-allowed
}

.bootstrap-select.btn-group .dropdown-menu li a {
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;


    position: relative;
    padding: .75rem 1.5rem;
    overflow: hidden;
    font-size: .9rem;
    line-height: 1;
    text-overflow: ellipsis;
    cursor: pointer;
    border-bottom: 1px solid #e4e9f2;
    transition: background-color .2s ease-in-out,color .2s ease-in-out;
    display:flex;
    align-items:center;
    justify-content:space-between;

    color: #1d4477;
    font-weight: 500;
    font-size: 14px;
}

.bootstrap-select.btn-group .dropdown-menu li a.opt {
    position: relative;
    padding-left: 2.25em
}

.bootstrap-select.btn-group .dropdown-menu li a span.check-mark {
    display: none
}

.bootstrap-select.btn-group .dropdown-menu li a span.text {
    display: inline-block
}

.bootstrap-select.btn-group .dropdown-menu li small {
    padding-left: .5em
}

.bootstrap-select.btn-group .dropdown-menu .notify {
    position: absolute;
    bottom: 5px;
    width: 96%;
    margin: 0 2%;
    min-height: 26px;
    padding: 3px 5px;
    background: #f5f5f5;
    border: 1px solid #e3e3e3;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .05);
    pointer-events: none;
    opacity: .9;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bootstrap-select.btn-group .no-results {
    padding: 3px;
    background: #f5f5f5;
    margin: 0 5px;
    white-space: nowrap
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .filter-option {
    position: static
}

.bootstrap-select.btn-group.fit-width .dropdown-toggle .caret {
    position: static;
    top: auto;
    margin-top: -1px
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li.selected a span.check-mark {
    position: relative;
    display: inline-block;
    color: #3ed8c3;
}

.bootstrap-select.btn-group.show-tick .dropdown-menu li a span.text {
    margin-right: 34px;
    font-size:inherit;
    font-weight:inherit;
    font:inherit;
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle {
    z-index: 1061
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:before {
    content: '';
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid rgba(204, 204, 204, .2);
    position: absolute;
    bottom: -4px;
    left: 9px;
    display: none
}

.bootstrap-select.show-menu-arrow .dropdown-toggle:after {
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    position: absolute;
    bottom: -4px;
    left: 10px;
    display: none
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:before {
    bottom: auto;
    top: -3px;
    border-top: 7px solid rgba(204, 204, 204, .2);
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.dropup .dropdown-toggle:after {
    bottom: auto;
    top: -3px;
    border-top: 6px solid #fff;
    border-bottom: 0
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:before {
    right: 12px;
    left: auto
}

.bootstrap-select.show-menu-arrow.pull-right .dropdown-toggle:after {
    right: 13px;
    left: auto
}

.bootstrap-select.show-menu-arrow.open > .dropdown-toggle:after, .bootstrap-select.show-menu-arrow.open > .dropdown-toggle:before {
    display: block
}

.bs-actionsbox, .bs-donebutton, .bs-searchbox {
    padding: 4px 8px
}

.bs-actionsbox {
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bs-actionsbox .btn-group button {
    width: 50%
}

.bs-donebutton {
    float: left;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

.bs-donebutton .btn-group button {
    width: 100%
}

.bs-searchbox + .bs-actionsbox {
    padding: 0 8px 4px
}

.bs-searchbox .form-control {
    margin-bottom: 0;
    width: 100%;
    float: none
}

@media print {
    *, :after, :before {
        color: #000 !important;
        text-shadow: none !important;
        background: 0 0 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: ""
    }

    blockquote, pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img, tr {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    h2, h3, p {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    .navbar {
        display: none
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td, .table th {
        background-color: #fff !important
    }

    .table-bordered td, .table-bordered th {
        border: 1px solid #ddd !important
    }
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-asterisk:before {
    content: "\2a"
}

.glyphicon-plus:before {
    content: "\2b"
}

.glyphicon-eur:before, .glyphicon-euro:before {
    content: "\20ac"
}

.glyphicon-minus:before {
    content: "\2212"
}

.glyphicon-cloud:before {
    content: "\2601"
}

.glyphicon-envelope:before {
    content: "\2709"
}

.glyphicon-pencil:before {
    content: "\270f"
}

.glyphicon-glass:before {
    content: "\e001"
}

.glyphicon-music:before {
    content: "\e002"
}

.glyphicon-search:before {
    content: "\e003"
}

.glyphicon-heart:before {
    content: "\e005"
}

.glyphicon-star:before {
    content: "\e006"
}

.glyphicon-star-empty:before {
    content: "\e007"
}

.glyphicon-user:before {
    content: "\e008"
}

.glyphicon-film:before {
    content: "\e009"
}

.glyphicon-th-large:before {
    content: "\e010"
}

.glyphicon-th:before {
    content: "\e011"
}

.glyphicon-th-list:before {
    content: "\e012"
}

.glyphicon-ok:before {
    content: "\e013"
}

.glyphicon-remove:before {
    content: "\e014"
}

.glyphicon-zoom-in:before {
    content: "\e015"
}

.glyphicon-zoom-out:before {
    content: "\e016"
}

.glyphicon-off:before {
    content: "\e017"
}

.glyphicon-signal:before {
    content: "\e018"
}

.glyphicon-cog:before {
    content: "\e019"
}

.glyphicon-trash:before {
    content: "\e020"
}

.glyphicon-home:before {
    content: "\e021"
}

.glyphicon-file:before {
    content: "\e022"
}

.glyphicon-time:before {
    content: "\e023"
}

.glyphicon-road:before {
    content: "\e024"
}

.glyphicon-download-alt:before {
    content: "\e025"
}

.glyphicon-download:before {
    content: "\e026"
}

.glyphicon-upload:before {
    content: "\e027"
}

.glyphicon-inbox:before {
    content: "\e028"
}

.glyphicon-play-circle:before {
    content: "\e029"
}

.glyphicon-repeat:before {
    content: "\e030"
}

.glyphicon-refresh:before {
    content: "\e031"
}

.glyphicon-list-alt:before {
    content: "\e032"
}

.glyphicon-lock:before {
    content: "\e033"
}

.glyphicon-flag:before {
    content: "\e034"
}

.glyphicon-headphones:before {
    content: "\e035"
}

.glyphicon-volume-off:before {
    content: "\e036"
}

.glyphicon-volume-down:before {
    content: "\e037"
}

.glyphicon-volume-up:before {
    content: "\e038"
}

.glyphicon-qrcode:before {
    content: "\e039"
}

.glyphicon-barcode:before {
    content: "\e040"
}

.glyphicon-tag:before {
    content: "\e041"
}

.glyphicon-tags:before {
    content: "\e042"
}

.glyphicon-book:before {
    content: "\e043"
}

.glyphicon-bookmark:before {
    content: "\e044"
}

.glyphicon-print:before {
    content: "\e045"
}

.glyphicon-camera:before {
    content: "\e046"
}

.glyphicon-font:before {
    content: "\e047"
}

.glyphicon-bold:before {
    content: "\e048"
}

.glyphicon-italic:before {
    content: "\e049"
}

.glyphicon-text-height:before {
    content: "\e050"
}

.glyphicon-text-width:before {
    content: "\e051"
}

.glyphicon-align-left:before {
    content: "\e052"
}

.glyphicon-align-center:before {
    content: "\e053"
}

.glyphicon-align-right:before {
    content: "\e054"
}

.glyphicon-align-justify:before {
    content: "\e055"
}

.glyphicon-list:before {
    content: "\e056"
}

.glyphicon-indent-left:before {
    content: "\e057"
}

.glyphicon-indent-right:before {
    content: "\e058"
}

.glyphicon-facetime-video:before {
    content: "\e059"
}

.glyphicon-picture:before {
    content: "\e060"
}

.glyphicon-map-marker:before {
    content: "\e062"
}

.glyphicon-adjust:before {
    content: "\e063"
}

.glyphicon-tint:before {
    content: "\e064"
}

.glyphicon-edit:before {
    content: "\e065"
}

.glyphicon-share:before {
    content: "\e066"
}

.glyphicon-check:before {
    content: "\e067"
}

.glyphicon-move:before {
    content: "\e068"
}

.glyphicon-step-backward:before {
    content: "\e069"
}

.glyphicon-fast-backward:before {
    content: "\e070"
}

.glyphicon-backward:before {
    content: "\e071"
}

.glyphicon-play:before {
    content: "\e072"
}

.glyphicon-pause:before {
    content: "\e073"
}

.glyphicon-stop:before {
    content: "\e074"
}

.glyphicon-forward:before {
    content: "\e075"
}

.glyphicon-fast-forward:before {
    content: "\e076"
}

.glyphicon-step-forward:before {
    content: "\e077"
}

.glyphicon-eject:before {
    content: "\e078"
}

.glyphicon-chevron-left:before {
    content: "\e079"
}

.glyphicon-chevron-right:before {
    content: "\e080"
}

.glyphicon-plus-sign:before {
    content: "\e081"
}

.glyphicon-minus-sign:before {
    content: "\e082"
}

.glyphicon-remove-sign:before {
    content: "\e083"
}

.glyphicon-ok-sign:before {
    content: "\e084"
}

.glyphicon-question-sign:before {
    content: "\e085"
}

.glyphicon-info-sign:before {
    content: "\e086"
}

.glyphicon-screenshot:before {
    content: "\e087"
}

.glyphicon-remove-circle:before {
    content: "\e088"
}

.glyphicon-ok-circle:before {
    content: "\e089"
}

.glyphicon-ban-circle:before {
    content: "\e090"
}

.glyphicon-arrow-left:before {
    content: "\e091"
}

.glyphicon-arrow-right:before {
    content: "\e092"
}

.glyphicon-arrow-up:before {
    content: "\e093"
}

.glyphicon-arrow-down:before {
    content: "\e094"
}

.glyphicon-share-alt:before {
    content: "\e095"
}

.glyphicon-resize-full:before {
    content: "\e096"
}

.glyphicon-resize-small:before {
    content: "\e097"
}

.glyphicon-exclamation-sign:before {
    content: "\e101"
}

.glyphicon-gift:before {
    content: "\e102"
}

.glyphicon-leaf:before {
    content: "\e103"
}

.glyphicon-fire:before {
    content: "\e104"
}

.glyphicon-eye-open:before {
    content: "\e105"
}

.glyphicon-eye-close:before {
    content: "\e106"
}

.glyphicon-warning-sign:before {
    content: "\e107"
}

.glyphicon-plane:before {
    content: "\e108"
}

.glyphicon-calendar:before {
    content: "\e109"
}

.glyphicon-random:before {
    content: "\e110"
}

.glyphicon-comment:before {
    content: "\e111"
}

.glyphicon-magnet:before {
    content: "\e112"
}

.glyphicon-chevron-up:before {
    content: "\e113"
}

.glyphicon-chevron-down:before {
    content: "\e114"
}

.glyphicon-retweet:before {
    content: "\e115"
}

.glyphicon-shopping-cart:before {
    content: "\e116"
}

.glyphicon-folder-close:before {
    content: "\e117"
}

.glyphicon-folder-open:before {
    content: "\e118"
}

.glyphicon-resize-vertical:before {
    content: "\e119"
}

.glyphicon-resize-horizontal:before {
    content: "\e120"
}

.glyphicon-hdd:before {
    content: "\e121"
}

.glyphicon-bullhorn:before {
    content: "\e122"
}

.glyphicon-bell:before {
    content: "\e123"
}

.glyphicon-certificate:before {
    content: "\e124"
}

.glyphicon-thumbs-up:before {
    content: "\e125"
}

.glyphicon-thumbs-down:before {
    content: "\e126"
}

.glyphicon-hand-right:before {
    content: "\e127"
}

.glyphicon-hand-left:before {
    content: "\e128"
}

.glyphicon-hand-up:before {
    content: "\e129"
}

.glyphicon-hand-down:before {
    content: "\e130"
}

.glyphicon-circle-arrow-right:before {
    content: "\e131"
}

.glyphicon-circle-arrow-left:before {
    content: "\e132"
}

.glyphicon-circle-arrow-up:before {
    content: "\e133"
}

.glyphicon-circle-arrow-down:before {
    content: "\e134"
}

.glyphicon-globe:before {
    content: "\e135"
}

.glyphicon-wrench:before {
    content: "\e136"
}

.glyphicon-tasks:before {
    content: "\e137"
}

.glyphicon-filter:before {
    content: "\e138"
}

.glyphicon-briefcase:before {
    content: "\e139"
}

.glyphicon-fullscreen:before {
    content: "\e140"
}

.glyphicon-dashboard:before {
    content: "\e141"
}

.glyphicon-paperclip:before {
    content: "\e142"
}

.glyphicon-heart-empty:before {
    content: "\e143"
}

.glyphicon-link:before {
    content: "\e144"
}

.glyphicon-phone:before {
    content: "\e145"
}

.glyphicon-pushpin:before {
    content: "\e146"
}

.glyphicon-usd:before {
    content: "\e148"
}

.glyphicon-gbp:before {
    content: "\e149"
}

.glyphicon-sort:before {
    content: "\e150"
}

.glyphicon-sort-by-alphabet:before {
    content: "\e151"
}

.glyphicon-sort-by-alphabet-alt:before {
    content: "\e152"
}

.glyphicon-sort-by-order:before {
    content: "\e153"
}

.glyphicon-sort-by-order-alt:before {
    content: "\e154"
}

.glyphicon-sort-by-attributes:before {
    content: "\e155"
}

.glyphicon-sort-by-attributes-alt:before {
    content: "\e156"
}

.glyphicon-unchecked:before {
    content: "\e157"
}

.glyphicon-expand:before {
    content: "\e158"
}

.glyphicon-collapse-down:before {
    content: "\e159"
}

.glyphicon-collapse-up:before {
    content: "\e160"
}

.glyphicon-log-in:before {
    content: "\e161"
}

.glyphicon-flash:before {
    content: "\e162"
}

.glyphicon-log-out:before {
    content: "\e163"
}

.glyphicon-new-window:before {
    content: "\e164"
}

.glyphicon-record:before {
    content: "\e165"
}

.glyphicon-save:before {
    content: "\e166"
}

.glyphicon-open:before {
    content: "\e167"
}

.glyphicon-saved:before {
    content: "\e168"
}

.glyphicon-import:before {
    content: "\e169"
}

.glyphicon-export:before {
    content: "\e170"
}

.glyphicon-send:before {
    content: "\e171"
}

.glyphicon-floppy-disk:before {
    content: "\e172"
}

.glyphicon-floppy-saved:before {
    content: "\e173"
}

.glyphicon-floppy-remove:before {
    content: "\e174"
}

.glyphicon-floppy-save:before {
    content: "\e175"
}

.glyphicon-floppy-open:before {
    content: "\e176"
}

.glyphicon-credit-card:before {
    content: "\e177"
}

.glyphicon-transfer:before {
    content: "\e178"
}

.glyphicon-cutlery:before {
    content: "\e179"
}

.glyphicon-header:before {
    content: "\e180"
}

.glyphicon-compressed:before {
    content: "\e181"
}

.glyphicon-earphone:before {
    content: "\e182"
}

.glyphicon-phone-alt:before {
    content: "\e183"
}

.glyphicon-tower:before {
    content: "\e184"
}

.glyphicon-stats:before {
    content: "\e185"
}

.glyphicon-sd-video:before {
    content: "\e186"
}

.glyphicon-hd-video:before {
    content: "\e187"
}

.glyphicon-subtitles:before {
    content: "\e188"
}

.glyphicon-sound-stereo:before {
    content: "\e189"
}

.glyphicon-sound-dolby:before {
    content: "\e190"
}

.glyphicon-sound-5-1:before {
    content: "\e191"
}

.glyphicon-sound-6-1:before {
    content: "\e192"
}

.glyphicon-sound-7-1:before {
    content: "\e193"
}

.glyphicon-copyright-mark:before {
    content: "\e194"
}

.glyphicon-registration-mark:before {
    content: "\e195"
}

.glyphicon-cloud-download:before {
    content: "\e197"
}

.glyphicon-cloud-upload:before {
    content: "\e198"
}

.glyphicon-tree-conifer:before {
    content: "\e199"
}

.glyphicon-tree-deciduous:before {
    content: "\e200"
}

.glyphicon-cd:before {
    content: "\e201"
}

.glyphicon-save-file:before {
    content: "\e202"
}

.glyphicon-open-file:before {
    content: "\e203"
}

.glyphicon-level-up:before {
    content: "\e204"
}

.glyphicon-copy:before {
    content: "\e205"
}

.glyphicon-paste:before {
    content: "\e206"
}

.glyphicon-alert:before {
    content: "\e209"
}

.glyphicon-equalizer:before {
    content: "\e210"
}

.glyphicon-king:before {
    content: "\e211"
}

.glyphicon-queen:before {
    content: "\e212"
}

.glyphicon-pawn:before {
    content: "\e213"
}

.glyphicon-bishop:before {
    content: "\e214"
}

.glyphicon-knight:before {
    content: "\e215"
}

.glyphicon-baby-formula:before {
    content: "\e216"
}

.glyphicon-tent:before {
    content: "\26fa"
}

.glyphicon-blackboard:before {
    content: "\e218"
}

.glyphicon-bed:before {
    content: "\e219"
}

.glyphicon-apple:before {
    content: "\f8ff"
}

.glyphicon-erase:before {
    content: "\e221"
}

.glyphicon-hourglass:before {
    content: "\231b"
}

.glyphicon-lamp:before {
    content: "\e223"
}

.glyphicon-duplicate:before {
    content: "\e224"
}

.glyphicon-piggy-bank:before {
    content: "\e225"
}

.glyphicon-scissors:before {
    content: "\e226"
}

.glyphicon-bitcoin:before {
    content: "\e227"
}

.glyphicon-btc:before {
    content: "\e227"
}

.glyphicon-xbt:before {
    content: "\e227"
}

.glyphicon-yen:before {
    content: "\a5"
}

.glyphicon-jpy:before {
    content: "\a5"
}

.glyphicon-ruble:before {
    content: "\20bd"
}

.glyphicon-rub:before {
    content: "\20bd"
}

.glyphicon-scale:before {
    content: "\e230"
}

.glyphicon-ice-lolly:before {
    content: "\e231"
}

.glyphicon-ice-lolly-tasted:before {
    content: "\e232"
}

.glyphicon-education:before {
    content: "\e233"
}

.glyphicon-option-horizontal:before {
    content: "\e234"
}

.glyphicon-option-vertical:before {
    content: "\e235"
}

.glyphicon-menu-hamburger:before {
    content: "\e236"
}

.glyphicon-modal-window:before {
    content: "\e237"
}

.glyphicon-oil:before {
    content: "\e238"
}

.glyphicon-grain:before {
    content: "\e239"
}

.glyphicon-sunglasses:before {
    content: "\e240"
}

.glyphicon-text-size:before {
    content: "\e241"
}

.glyphicon-text-color:before {
    content: "\e242"
}

.glyphicon-text-background:before {
    content: "\e243"
}

.glyphicon-object-align-top:before {
    content: "\e244"
}

.glyphicon-object-align-bottom:before {
    content: "\e245"
}

.glyphicon-object-align-horizontal:before {
    content: "\e246"
}

.glyphicon-object-align-left:before {
    content: "\e247"
}

.glyphicon-object-align-vertical:before {
    content: "\e248"
}

.glyphicon-object-align-right:before {
    content: "\e249"
}

.glyphicon-triangle-right:before {
    content: "\e250"
}

.glyphicon-triangle-left:before {
    content: "\e251"
}

.glyphicon-triangle-bottom:before {
    content: "\e252"
}

.glyphicon-triangle-top:before {
    content: "\e253"
}

.glyphicon-console:before {
    content: "\e254"
}

.glyphicon-superscript:before {
    content: "\e255"
}

.glyphicon-subscript:before {
    content: "\e256"
}

.glyphicon-menu-left:before {
    content: "\e257"
}

.glyphicon-menu-right:before {
    content: "\e258"
}

.glyphicon-menu-down:before {
    content: "\e259"
}

.glyphicon-menu-up:before {
    content: "\e260"
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}

:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box
}



html {
    font: 100%/1.15 sans-serif;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: transparent;
    box-sizing: border-box;
    overflow-y: scroll;
    max-width: 1920px;
    margin: auto;
    display: block;
    background: #e8e8e4;
    font-family: RWESansPS;

}

body {
    line-height: 1.42857143;
    margin: 0;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background: #fff;
    padding: 0 !important;
    position: relative;
}

button, input, select, textarea {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    margin: 0
}

a {
    text-decoration: none;
    background: transparent 0 0;
    -webkit-text-decoration-skip: objects;
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    color: #1d4477
}

a:focus, a:hover {
    color: #23527c;
    text-decoration: underline
}

a:focus {
    outline: 5px;
    outline-offset: -2px
}

figure {
    margin: 0 0 1rem;
    overflow: hidden
}

img {
    vertical-align: middle;
    border-style: none
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img, .img-responsive, .thumbnail a > img, .thumbnail > img {
    display: block;
    max-width: 100%;
    height: auto
}

.img-rounded {
    border-radius: 6px
}

.img-thumbnail {
    display: inline-block;
    line-height: 1.42857143;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    padding: .25rem;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    max-width: 100%;
    height: auto
}

.img-circle {
    border-radius: 50%
}

hr {
    margin: 1em 0;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    padding: 0
}

.sr-only {
    margin: -1px;
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    -webkit-clip-path: inset(50%);
    clip-path: inset(50%);
    border: 0
}

.sr-only-focusable:active, .sr-only-focusable:focus {
    margin: 0;
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    -webkit-clip-path: none;
    clip-path: none
}

[role=button] {
    cursor: pointer
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    line-height: 1.1;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
    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: 2.5rem
}

.h2, h2 {
    font-size: 2rem
}

.h3, h3 {
    font-size: 1.75rem
}

.h4, h4 {
    font-size: 1.5rem
}

.h5, h5 {
    font-size: 1.25rem
}

.h6, h6 {
    font-size: 1rem
}

p {
    margin: 0 0 1rem
}

.lead {
    margin-bottom: 20px;
    line-height: 1.4;
    font-size: 1.25rem;
    font-weight: 300
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px
    }
}

.small, small {
    font-size: 80%;
    font-weight: 400
}

.mark, mark {
    padding: .2em;
    background-color: #fcf8e3
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.bg-primary {
    color: #fff;
    background-color: #007bff !important
}

a.bg-primary:focus, a.bg-primary:hover {
    background-color: #286090
}

.bg-success {
    background-color: #28a745 !important
}

a.bg-success:focus, a.bg-success:hover {
    background-color: #c1e2b3
}

.bg-info {
    background-color: #17a2b8 !important
}

a.bg-info:focus, a.bg-info:hover {
    background-color: #afd9ee
}

.bg-warning {
    background-color: #ffc107 !important
}

a.bg-warning:focus, a.bg-warning:hover {
    background-color: #f7ecb5
}

.bg-danger {
    background-color: #dc3545 !important
}

a.bg-danger:focus, a.bg-danger:hover {
    background-color: #e4b9b9
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eee
}

ol, ul {
    margin-top: 0;
    margin-bottom: 10px
}

ol ol, ol ul, ul ol, ul ul {
    margin-bottom: 0
}

.list-unstyled {
    padding-left: 0;
    list-style: none
}

.list-inline {
    margin-left: -5px;
    padding-left: 0;
    list-style: none
}

.list-inline > li {
    display: inline-block;
    padding-right: 5px;
    padding-left: 5px
}

dl {
    margin-top: 0;
    margin-bottom: 20px
}

dd, dt {
    line-height: 1.42857143
}

dt {
    font-weight: 700
}

dd {
    margin-left: 0;
    margin-bottom: .5rem;
    margin-left: 0
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }
}

abbr[data-original-title], abbr[title] {
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
    text-decoration: underline dotted;
    cursor: help;
    border-bottom: 0
}

.initialism {
    font-size: 90%;
    text-transform: uppercase
}

blockquote {
    font-size: 17.5px;
    border-left: 5px solid #eee;
    margin: 0 0 1rem;
    padding: 16px;
    background: #eee
}

blockquote ol:last-child, blockquote p:last-child, blockquote ul:last-child {
    margin-bottom: 0
}

blockquote .small, blockquote footer, blockquote small {
    display: block;
    font-size: 80%;
    line-height: 1.42857143;
    color: #777
}

blockquote .small:before, blockquote footer:before, blockquote small:before {
    content: '\2014 \A0'
}

.blockquote-reverse, blockquote.pull-right {
    padding-right: 15px;
    padding-left: 0;
    text-align: right;
    border-right: 5px solid #eee;
    border-left: 0
}

.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: '\A0 \2014'
}

address {
    margin-bottom: 20px;
    line-height: 1.42857143;
    margin-bottom: 1rem;
    font-style: normal;
    line-height: inherit
}

code, kbd, pre, samp {
    font: 1em monospace, sans-serif
}

code {
    padding: 2px 4px;
    background-color: #f9f2f4;
    border-radius: 4px;
    font-size: 87.5%;
    color: #e83e8c;
    word-break: break-word
}

kbd {
    -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
    box-shadow: inset 0 -1px 0 rgba(0, 0, 0, .25);
    padding: .2rem .4rem;
    font-size: 87.5%;
    color: #fff;
    background-color: #212529;
    border-radius: .2rem
}

kbd kbd {
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    font-size: 100%;
    font-weight: 700
}

pre {
    padding: 9.5px;
    margin: 0 0 1rem;
    line-height: 1.42857143;
    word-break: break-all;
    background-color: #f5f5f5;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: auto;
    -ms-overflow-style: scrollbar;
    display: block;
    font-size: 87.5%;
    color: #212529;
    white-space: pre;
    white-space: pre-wrap;
    white-space: pre-line;
    word-wrap: break-word
}

pre code {
    padding: 0;
    white-space: pre-wrap;
    background-color: transparent;
    border-radius: 0;
    font-size: inherit;
    color: inherit;
    word-break: normal
}

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

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

@media (min-width: 768px) {
    .container {
        width: 750px
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

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

.row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px
}

.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-right: 15px;
    padding-left: 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-12 {
    width: 100%
}

.col-xs-11 {
    width: 91.66666667%
}

.col-xs-10 {
    width: 83.33333333%
}

.col-xs-9 {
    width: 75%
}

.col-xs-8 {
    width: 66.66666667%
}

.col-xs-7 {
    width: 58.33333333%
}

.col-xs-6 {
    width: 50%
}

.col-xs-5 {
    width: 41.66666667%
}

.col-xs-4 {
    width: 33.33333333%
}

.col-xs-3 {
    width: 25%
}

.col-xs-2 {
    width: 16.66666667%
}

.col-xs-1 {
    width: 8.33333333%
}

.col-xs-pull-12 {
    right: 100%
}

.col-xs-pull-11 {
    right: 91.66666667%
}

.col-xs-pull-10 {
    right: 83.33333333%
}

.col-xs-pull-9 {
    right: 75%
}

.col-xs-pull-8 {
    right: 66.66666667%
}

.col-xs-pull-7 {
    right: 58.33333333%
}

.col-xs-pull-6 {
    right: 50%
}

.col-xs-pull-5 {
    right: 41.66666667%
}

.col-xs-pull-4 {
    right: 33.33333333%
}

.col-xs-pull-3 {
    right: 25%
}

.col-xs-pull-2 {
    right: 16.66666667%
}

.col-xs-pull-1 {
    right: 8.33333333%
}

.col-xs-pull-0 {
    right: auto
}

.col-xs-push-12 {
    left: 100%
}

.col-xs-push-11 {
    left: 91.66666667%
}

.col-xs-push-10 {
    left: 83.33333333%
}

.col-xs-push-9 {
    left: 75%
}

.col-xs-push-8 {
    left: 66.66666667%
}

.col-xs-push-7 {
    left: 58.33333333%
}

.col-xs-push-6 {
    left: 50%
}

.col-xs-push-5 {
    left: 41.66666667%
}

.col-xs-push-4 {
    left: 33.33333333%
}

.col-xs-push-3 {
    left: 25%
}

.col-xs-push-2 {
    left: 16.66666667%
}

.col-xs-push-1 {
    left: 8.33333333%
}

.col-xs-push-0 {
    left: auto
}

.col-xs-offset-12 {
    margin-left: 100%
}

.col-xs-offset-11 {
    margin-left: 91.66666667%
}

.col-xs-offset-10 {
    margin-left: 83.33333333%
}

.col-xs-offset-9 {
    margin-left: 75%
}

.col-xs-offset-8 {
    margin-left: 66.66666667%
}

.col-xs-offset-7 {
    margin-left: 58.33333333%
}

.col-xs-offset-6 {
    margin-left: 50%
}

.col-xs-offset-5 {
    margin-left: 41.66666667%
}

.col-xs-offset-4 {
    margin-left: 33.33333333%
}

.col-xs-offset-3 {
    margin-left: 25%
}

.col-xs-offset-2 {
    margin-left: 16.66666667%
}

.col-xs-offset-1 {
    margin-left: 8.33333333%
}

.col-xs-offset-0 {
    margin-left: 0
}

@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-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}

@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-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }
}

@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-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }
}

table {
    background-color: transparent;
    border-collapse: collapse;
    border-collapse: separate;
    border-spacing: 0;
    font-size: inherit;
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-top: .75rem;
    padding-bottom: .75rem;
    color: #6c757d;
    text-align: left;
    caption-side: bottom
}

th {
    text-align: left;
    text-align: inherit;
    font-weight: 700;
    vertical-align: bottom
}

.table {
    margin-bottom: 20px;
    width: 100%;
    max-width: 100%;
    margin-bottom: 1rem;
    background-color: transparent
}

.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.42857143;
    vertical-align: top;
    border-top: 1px solid #ddd;
    font-size:16px;
}

.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 {
    border: none
}

.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 {
    background-color: #f5f5f5
}

table col[class*=col-] {
    position: static;
    display: table-column;
    float: none
}

table td[class*=col-], table th[class*=col-] {
    position: static;
    display: table-cell;
    float: none
}

.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-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 {
    min-height: .01%;
    overflow-x: auto;
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar
}


@media screen and (min-width:768px) {
    .recentnews > a {
        margin: 0 15px 20px;
    }
}
@media screen and (max-width: 767px) {

    .recommendations.recommendationsalternative h2 > a {
        font: inherit;
        height: auto;
    }

    .recommendations.recommendationsalternative > span {
        flex: 1 1 auto;
        color: #1d4477;
        font: 700 22px/1.3em RWESansPS;
        margin-bottom: 40px;
    }

    .content-wrapper h2 {
        font: 700 18px/1.3em RWESansPS !important;
    }


    .footer-info > .content-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        flex-wrap: wrap;
        height: auto;
    }

    .topicfocus-slider + .content-wrapper > .topicfocus {
        display:none;
    }

    .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 {
    min-width: 0;
    padding: 0;
    margin: 0;
    border: 0
}

legend {
    margin-bottom: 20px;
    border: 0;
    border-bottom: 1px solid #e5e5e5;
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin-bottom: .5rem;
    font-size: 1.5rem;
    line-height: inherit;
    color: inherit;
    white-space: normal
}

label {
    max-width: 100%;
    margin-bottom: 5px;
    font-weight: 700;
    display: inline-block;
    margin-bottom: .5rem
}

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;
    line-height: normal;
    box-sizing: border-box;
    padding: 0
}

input[type=file] {
    display: block
}

input[type=range] {
    display: block;
    width: 100%
}

select[multiple], select[size] {
    height: auto
}

input[type=checkbox]:focus, input[type=file]:focus, input[type=radio]:focus {
    outline: 5px;
    outline-offset: -2px
}

output {
    display: block;
    padding-top: 7px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    display: inline-block
}

.form-control {
    height: 34px;
    line-height: 1.42857143;
    background: #fff none;
    -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, -webkit-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;
    display: block;
    width: 100%;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.form-control:focus {
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, .6);
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

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

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

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

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

.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=datetime-local].form-control, input[type=month].form-control, input[type=time].form-control {
        line-height: 34px
    }

    .input-group-sm input[type=date], .input-group-sm input[type=datetime-local], .input-group-sm input[type=month], .input-group-sm input[type=time], input[type=date].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm, input[type=time].input-sm {
        line-height: 30px
    }

    .input-group-lg input[type=date], .input-group-lg input[type=datetime-local], .input-group-lg input[type=month], .input-group-lg input[type=time], input[type=date].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg, input[type=time].input-lg {
        line-height: 46px
    }
}

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

.checkbox, .radio {
    position: relative;
    display: block;
    margin-top: 10px;
    margin-bottom: 10px
}

.checkbox label, .radio label {
    cursor: pointer;
    min-height: 20px;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    flex: 0 0 auto;
    padding-left: 0;
    width: 100%
}

.checkbox input[type=checkbox], .checkbox-inline input[type=checkbox], .radio input[type=radio], .radio-inline input[type=radio] {
    position: absolute;
    margin-left: -20px
}

.checkbox + .checkbox, .radio + .radio {
    margin-top: -5px
}

.checkbox-inline, .radio-inline {
    position: relative;
    display: inline-block;
    padding-left: 20px;
    margin-bottom: 0;
    font-weight: 400;
    vertical-align: middle;
    cursor: pointer
}

.checkbox-inline + .checkbox-inline, .radio-inline + .radio-inline {
    margin-top: 0;
    margin-left: 10px
}

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
}

.checkbox-inline.disabled, .radio-inline.disabled, fieldset[disabled] .checkbox-inline, fieldset[disabled] .radio-inline {
    cursor: not-allowed
}

.checkbox.disabled label, .radio.disabled label, fieldset[disabled] .checkbox label, fieldset[disabled] .radio label {
    cursor: not-allowed
}

.form-control-static {
    min-height: 34px;
    padding-top: 7px;
    padding-bottom: 7px;
    margin-bottom: 0
}

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

.input-sm {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-sm {
    height: 30px;
    line-height: 30px
}

select[multiple].input-sm, textarea.input-sm {
    height: auto
}

.form-group-sm .form-control {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

.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;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-lg {
    height: 46px;
    line-height: 46px
}

select[multiple].input-lg, textarea.input-lg {
    height: auto
}

.form-group-lg .form-control {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

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

.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 .checkbox, .has-success .checkbox-inline, .has-success .control-label, .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
}

.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;
    background-color: #dff0d8;
    border-color: #3c763d
}

.has-success .form-control-feedback {
    color: #3c763d
}

.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning .control-label, .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;
    background-color: #fcf8e3;
    border-color: #8a6d3b
}

.has-warning .form-control-feedback {
    color: #8a6d3b
}

.has-error .checkbox, .has-error .checkbox-inline, .has-error .control-label, .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;
    background-color: #f2dede;
    border-color: #a94442
}

.has-error .form-control-feedback {
    color: #a94442
}

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

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-static {
        display: inline-block
    }

    .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 .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

    .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 .checkbox, .form-horizontal .checkbox-inline, .form-horizontal .radio, .form-horizontal .radio-inline {
    padding-top: 7px;
    margin-top: 0;
    margin-bottom: 0
}

.form-horizontal .checkbox, .form-horizontal .radio {
    min-height: 27px
}

.form-horizontal .form-group {
    margin-right: -15px;
    margin-left: -15px
}

@media (min-width: 768px) {
    .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right
    }
}

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

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

.btn {
    margin-bottom: 0;
    line-height: 1.42857143;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

.btn.active.focus, .btn.active:focus, .btn.focus, .btn:active.focus, .btn:active:focus, .btn:focus {
    outline: 5px;
    outline-offset: -2px
}

.btn.focus, .btn:focus, .btn:hover {
    color: #333;
    text-decoration: none
}

.btn.active, .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)
}

.btn.disabled, .btn[disabled], fieldset[disabled] .btn {
    cursor: not-allowed;
    -webkit-box-shadow: none;
    box-shadow: none;
    opacity: .65
}

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:hover {
    color: #333;
    background: #edf1f7 !important;
    border-color: #adadad
}

.btn-default.active, .btn-default:active, .open > .dropdown-toggle.btn-default {
    color: #333;
    background: #e6e6e6 none;
    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 > .dropdown-toggle.btn-default.focus, .open > .dropdown-toggle.btn-default:focus, .open > .dropdown-toggle.btn-default: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: #007bff;
    border-color: #007bff
}

.btn-primary.focus, .btn-primary:focus {
    color: #fff;
    background-color: #286090;
    border-color: #122b40;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-primary:hover {
    color: #fff;
    background-color: #0069d9;
    border-color: #0062cc
}

.btn-primary.active, .btn-primary:active, .open > .dropdown-toggle.btn-primary {
    color: #fff;
    background: #286090 none;
    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 > .dropdown-toggle.btn-primary.focus, .open > .dropdown-toggle.btn-primary:focus, .open > .dropdown-toggle.btn-primary:hover {
    color: #fff;
    background-color: #204d74;
    border-color: #122b40
}

.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: #1d4477;
    border-color: #2e6da4
}

.btn-primary .badge {
    color: #1d4477;
    background-color: #fff
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-success.focus, .btn-success:focus {
    color: #fff;
    background-color: #449d44;
    border-color: #255625;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34
}

.btn-success.active, .btn-success:active, .open > .dropdown-toggle.btn-success {
    color: #fff;
    background: #449d44 none;
    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 > .dropdown-toggle.btn-success.focus, .open > .dropdown-toggle.btn-success:focus, .open > .dropdown-toggle.btn-success: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: #17a2b8;
    border-color: #17a2b8
}

.btn-info.focus, .btn-info:focus {
    color: #fff;
    background-color: #31b0d5;
    border-color: #1b6d85;
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-info:hover {
    color: #fff;
    background-color: #138496;
    border-color: #117a8b
}

.btn-info.active, .btn-info:active, .open > .dropdown-toggle.btn-info {
    color: #fff;
    background: #31b0d5 none;
    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 > .dropdown-toggle.btn-info.focus, .open > .dropdown-toggle.btn-info:focus, .open > .dropdown-toggle.btn-info: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: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-warning.focus, .btn-warning:focus {
    color: #fff;
    background-color: #ec971f;
    border-color: #985f0d;
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.btn-warning:hover {
    color: #212529;
    background-color: #e0a800;
    border-color: #d39e00
}

.btn-warning.active, .btn-warning:active, .open > .dropdown-toggle.btn-warning {
    color: #fff;
    background: #ec971f none;
    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 > .dropdown-toggle.btn-warning.focus, .open > .dropdown-toggle.btn-warning:focus, .open > .dropdown-toggle.btn-warning: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: #dc3545;
    border-color: #dc3545
}

.btn-danger.focus, .btn-danger:focus {
    color: #fff;
    background-color: #c9302c;
    border-color: #761c19;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.btn-danger:hover {
    color: #fff;
    background-color: #c82333;
    border-color: #bd2130
}

.btn-danger.active, .btn-danger:active, .open > .dropdown-toggle.btn-danger {
    color: #fff;
    background: #c9302c none;
    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 > .dropdown-toggle.btn-danger.focus, .open > .dropdown-toggle.btn-danger:focus, .open > .dropdown-toggle.btn-danger: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 {
    border-radius: 0;
    font-weight: 400;
    color: #007bff;
    background-color: transparent
}

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

.btn-link[disabled]:focus, .btn-link[disabled]:hover, fieldset[disabled] .btn-link:focus, fieldset[disabled] .btn-link:hover {
    color: #777;
    text-decoration: none
}

.btn-group-lg > .btn, .btn-lg {
    line-height: 1.3333333;
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.btn-group-sm > .btn, .btn-sm {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.btn-group-xs > .btn, .btn-xs {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

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

.btn-block + .btn-block {
    margin-top: 5px;
    margin-top: .5rem
}

input[type=button].btn-block, input[type=reset].btn-block, input[type=submit].btn-block {
    width: 100%
}

.fade {
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    opacity: 0;
    transition: opacity .15s linear
}

.fade.in {
    opacity: 1
}

.collapse {
    display: none
}

.collapse.in {
    display: block
}

tr.collapse.in {
    display: table-row
}

tbody.collapse.in {
    display: table-row-group
}

.collapsing {
    -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;
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height .35s ease
}

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

.dropdown, .dropup {
    position: relative
}

.dropdown-toggle:focus {
    outline: 0
}

.dropdown-menu {
    min-width: 160px;
    text-align: left;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    /*-webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, .175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, .175);*/
    position: absolute;
    top: 100%;
    transform: translateY(10px);
    left: 0;
    z-index: 9999;
    display: none;
    float: left;
    min-width: 10rem;
    padding:  .5rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    background-clip: padding-box;
    /*border-radius: .25rem;*/
    background: #ffffff;
}

.dropdown-menu .rwebutton.buttonwhite {
    display: block;
    margin: 25px auto 10px;
    text-align: center;
    width: 80%;
}

.dropdown-menu.pull-right {
    right: 0;
    left: auto
}

.rwebutton-full.resultcount {
    width: 100%;
}

.dropdown-menu .divider {
    height: 1px;
    margin: 9px 0;
    overflow: hidden;
    background-color: #e5e5e5
}

.dropdown-menu > li > a {
    display: block;
    padding: 3px 20px;
    clear: both;
    font-weight: 400;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap
}

.dropdown-menu > li > a:focus, .dropdown-menu > li > a:hover {
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5
}

.dropdown-menu > .active > a, .dropdown-menu > .active > a:focus, .dropdown-menu > .active > a:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1d4477;
    outline: 0
}

.dropdown-menu > .disabled > a, .dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
    color: #777
}

.dropdown-menu > .disabled > a:focus, .dropdown-menu > .disabled > a:hover {
    text-decoration: none;
    cursor: not-allowed;
    background: transparent none
}

.open > .dropdown-menu {
    display: block
}

.open > a {
    outline: 0
}

.dropdown-menu-right {
    right: 0;
    left: auto
}

.dropdown-menu-left {
    right: auto;
    left: 0
}

.dropdown-header {
    line-height: 1.42857143;
    display: block;
    padding: .5rem 1.5rem;
    margin-bottom: 0;
    font-size: .875rem;
    color: #6c757d;
    white-space: nowrap
}

.dropdown-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990
}

.pull-right > .dropdown-menu {
    right: 0;
    left: auto
}

.dropup .caret, .navbar-fixed-bottom .dropdown .caret {
    content: "";
    border-top: 0;
    border-bottom: 4px dashed
}

.dropup .dropdown-menu, .navbar-fixed-bottom .dropdown .dropdown-menu {
    top: auto;
    bottom: 100%;
    margin-bottom: 2px
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }
}

.btn-group, .btn-group-vertical {
    display: inline-block;
    position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    vertical-align: middle
}

.btn-group-vertical > .btn, .btn-group > .btn {
    float: left;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto
}

.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group-vertical > .btn:hover, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus, .btn-group > .btn:hover {
    z-index: 2
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group {
    margin-left: -1px
}

.btn-toolbar {
    margin-left: -5px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.btn-toolbar .btn, .btn-toolbar .btn-group, .btn-toolbar .input-group {
    float: left
}

.btn-toolbar > .btn, .btn-toolbar > .btn-group, .btn-toolbar > .input-group {
    margin-left: 5px
}

.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
    border-radius: 0
}

.btn-group > .btn:first-child {
    margin-left: 0
}

.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group > .btn:last-child:not(:first-child), .btn-group > .dropdown-toggle:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group > .btn-group {
    float: left
}

.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group .dropdown-toggle:active, .btn-group.open .dropdown-toggle {
    outline: 0
}

.btn-group > .btn + .dropdown-toggle {
    padding-right: 8px;
    padding-left: 8px
}

.btn-group > .btn-lg + .dropdown-toggle {
    padding-right: 12px;
    padding-left: 12px
}

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

.btn-group.open .dropdown-toggle.btn-link {
    -webkit-box-shadow: none;
    box-shadow: none
}

.btn .caret {
    margin-left: 0
}

.btn-lg .caret {
    border-width: 5px 5px 0;
    border-bottom-width: 0
}

.dropup .btn-lg .caret {
    border-width: 0 5px 5px
}

.btn-group-vertical > .btn, .btn-group-vertical > .btn-group, .btn-group-vertical > .btn-group > .btn {
    display: block;
    float: none;
    width: 100%;
    max-width: 100%
}

.btn-group-vertical > .btn-group > .btn {
    float: none
}

.btn-group-vertical > .btn + .btn, .btn-group-vertical > .btn + .btn-group, .btn-group-vertical > .btn-group + .btn, .btn-group-vertical > .btn-group + .btn-group {
    margin-top: -1px;
    margin-left: 0
}

.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.btn-group-vertical > .btn:first-child:not(:last-child) {
    border-radius: 4px 4px 0 0
}

.btn-group-vertical > .btn:last-child:not(:first-child) {
    border-radius: 0 0 4px 4px
}

.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
    border-radius: 0
}

.btn-group-vertical > .btn-group:first-child:not(:last-child) > .btn:last-child, .btn-group-vertical > .btn-group:first-child:not(:last-child) > .dropdown-toggle {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:last-child:not(:first-child) > .btn:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.btn-group-justified {
    display: table;
    width: 100%;
    table-layout: fixed;
    border-collapse: separate
}

.btn-group-justified > .btn, .btn-group-justified > .btn-group {
    display: table-cell;
    float: none;
    width: 1%
}

.btn-group-justified > .btn-group .btn {
    width: 100%
}

.btn-group-justified > .btn-group .dropdown-menu {
    left: auto
}

[data-toggle=buttons] > .btn input[type=checkbox], [data-toggle=buttons] > .btn input[type=radio], [data-toggle=buttons] > .btn-group > .btn input[type=checkbox], [data-toggle=buttons] > .btn-group > .btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group {
    display: table;
    border-collapse: separate;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    width: 100%
}

.input-group[class*=col-] {
    float: none;
    padding-right: 0;
    padding-left: 0
}

.input-group .form-control {
    position: relative;
    z-index: 2;
    float: left;
    width: 100%;
    margin-bottom: 0
}

.input-group .form-control:focus {
    z-index: 3
}

.input-group-lg > .form-control, .input-group-lg > .input-group-addon, .input-group-lg > .input-group-btn > .btn {
    height: 46px;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    border-radius: 6px
}

select.input-group-lg > .form-control, select.input-group-lg > .input-group-addon, select.input-group-lg > .input-group-btn > .btn {
    height: 46px;
    line-height: 46px
}

select[multiple].input-group-lg > .form-control, select[multiple].input-group-lg > .input-group-addon, select[multiple].input-group-lg > .input-group-btn > .btn, textarea.input-group-lg > .form-control, textarea.input-group-lg > .input-group-addon, textarea.input-group-lg > .input-group-btn > .btn {
    height: auto
}

.input-group-sm > .form-control, .input-group-sm > .input-group-addon, .input-group-sm > .input-group-btn > .btn {
    height: 30px;
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
    border-radius: 3px
}

select.input-group-sm > .form-control, select.input-group-sm > .input-group-addon, select.input-group-sm > .input-group-btn > .btn {
    height: 30px;
    line-height: 30px
}

select[multiple].input-group-sm > .form-control, select[multiple].input-group-sm > .input-group-addon, select[multiple].input-group-sm > .input-group-btn > .btn, textarea.input-group-sm > .form-control, textarea.input-group-sm > .input-group-addon, textarea.input-group-sm > .input-group-btn > .btn {
    height: auto
}

.input-group .form-control, .input-group-addon, .input-group-btn {
    display: table-cell
}

.input-group .form-control:not(:first-child):not(:last-child), .input-group-addon:not(:first-child):not(:last-child), .input-group-btn:not(:first-child):not(:last-child) {
    border-radius: 0
}

.input-group-addon, .input-group-btn {
    width: 1%;
    white-space: nowrap;
    vertical-align: middle
}

.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: 4px
}

.input-group-addon.input-sm {
    padding: 5px 10px;
    font-size: 12px;
    border-radius: 3px
}

.input-group-addon.input-lg {
    padding: 10px 16px;
    font-size: 18px;
    border-radius: 6px
}

.input-group-addon input[type=checkbox], .input-group-addon input[type=radio] {
    margin-top: 0
}

.input-group .form-control:first-child, .input-group-addon:first-child, .input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group > .btn, .input-group-btn:first-child > .dropdown-toggle, .input-group-btn:last-child > .btn-group:not(:last-child) > .btn, .input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group-addon:first-child {
    border-right: 0
}

.input-group .form-control:last-child, .input-group-addon:last-child, .input-group-btn:first-child > .btn-group:not(:first-child) > .btn, .input-group-btn:first-child > .btn:not(:first-child), .input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group > .btn, .input-group-btn:last-child > .dropdown-toggle {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group-addon:last-child {
    border-left: 0
}

.input-group-btn {
    position: relative;
    font-size: 0;
    white-space: nowrap
}

.input-group-btn > .btn {
    position: relative
}

.input-group-btn > .btn + .btn {
    margin-left: -1px
}

.input-group-btn > .btn:active, .input-group-btn > .btn:focus, .input-group-btn > .btn:hover {
    z-index: 2
}

.input-group-btn:first-child > .btn, .input-group-btn:first-child > .btn-group {
    margin-right: -1px
}

.input-group-btn:last-child > .btn, .input-group-btn:last-child > .btn-group {
    z-index: 2;
    margin-left: -1px
}

.nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none
}

.nav > li {
    position: relative;
    display: block
}

.nav > li > a {
    position: relative;
    display: block;
    padding: 10px 15px
}

.nav > li > a:focus, .nav > li > a:hover {
    text-decoration: none;
    background-color: #eee
}

.nav > li.disabled > a {
    color: #777
}

.nav > li.disabled > a:focus, .nav > li.disabled > a:hover {
    color: #777;
    text-decoration: none;
    cursor: not-allowed;
    background-color: transparent
}

.nav .open > a, .nav .open > a:focus, .nav .open > a:hover {
    background-color: #eee;
    border-color: #1d4477
}

.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 #dee2e6
}

.nav-tabs > li {
    float: left;
    margin-bottom: -1px
}

.nav-tabs > li > a {
    margin-right: 2px;
    line-height: 1.42857143;
    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;
    cursor: default;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: transparent
}

.nav-tabs.nav-justified {
    width: 100%;
    border-bottom: 0
}

.nav-tabs.nav-justified > li {
    float: none
}

.nav-tabs.nav-justified > li > a {
    margin-bottom: 5px;
    text-align: center;
    margin-right: 0;
    border-radius: 4px
}

.nav-tabs.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0
    }
}

.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-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
        border-bottom-color: #fff
    }
}

.nav-pills > li {
    float: left
}

.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: #1d4477
}

.nav-stacked > li {
    float: none
}

.nav-stacked > li + li {
    margin-top: 2px;
    margin-left: 0
}

.nav-justified {
    width: 100%
}

.nav-justified > li {
    float: none
}

.nav-justified > li > a {
    margin-bottom: 5px;
    text-align: center
}

.nav-justified > .dropdown .dropdown-menu {
    top: auto;
    left: auto
}

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-justified > li > a {
        margin-bottom: 0
    }
}

.nav-tabs-justified {
    border-bottom: 0
}

.nav-tabs-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 {
    border: 1px solid #ddd
}

@media (min-width: 768px) {
    .nav-tabs-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 {
        border-bottom-color: #fff
    }
}

.tab-content > .tab-pane {
    display: none
}

.tab-content > .active {
    display: block
}

.nav-tabs .dropdown-menu {
    margin-top: -1px;
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.navbar {
    position: relative;
    min-height: 50px;
    margin-bottom: 20px;
    border: 1px solid transparent;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: .5rem 1rem
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 4px
    }
}

@media (min-width: 768px) {
    .navbar-header {
        float: left
    }
}

.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);
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.navbar-collapse.in {
    overflow-y: auto
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        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-right: 0;
        padding-left: 0
    }
}

.navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
    max-height: 340px
}

@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) {
    .container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
        margin-right: 0;
        margin-left: 0
    }
}

.navbar-static-top {
    z-index: 1000;
    border-width: 0 0 1px
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

.navbar-fixed-bottom, .navbar-fixed-top {
    position: fixed;
    right: 0;
    left: 0;
    z-index: 1030
}

@media (min-width: 768px) {
    .navbar-fixed-bottom, .navbar-fixed-top {
        border-radius: 0
    }
}

.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;
    height: 50px;
    padding: .3125rem 15px;
    line-height: 20px;
    display: inline-block;
    margin-right: 1rem;
    font-size: 1.25rem;
    line-height: inherit;
    white-space: nowrap
}

.navbar-brand:focus, .navbar-brand:hover {
    text-decoration: none
}

.navbar-brand > img {
    display: block
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px
    }
}

.navbar-toggle {
    position: relative;
    float: right;
    padding: 9px 10px;
    margin-top: 8px;
    margin-right: 15px;
    margin-bottom: 8px;
    background: transparent none;
    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
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none
    }
}

.navbar-nav {
    margin: 7.5px -15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    list-style: none
}

.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;
        -webkit-box-shadow: none;
        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-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;
    margin: 8px -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) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .navbar-form .form-control-static {
        display: inline-block
    }

    .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 .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

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

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width: 768px) {
    .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
    }
}

.navbar-nav > li > .dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-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;
    display: inline-block;
    padding-top: .5rem;
    padding-bottom: .5rem
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px
    }

    .navbar-right ~ .navbar-right {
        margin-right: 0
    }
}

.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-text {
    color: #777
}

.navbar-default .navbar-nav > li > a {
    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 {
    color: #555;
    background-color: #e7e7e7
}

@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: #080808
}

.navbar-inverse .navbar-brand {
    color: #9d9d9d
}

.navbar-inverse .navbar-brand:focus, .navbar-inverse .navbar-brand:hover {
    color: #fff;
    background-color: transparent
}

.navbar-inverse .navbar-text {
    color: #9d9d9d
}

.navbar-inverse .navbar-nav > li > a {
    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: #080808
}

.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 {
    color: #fff;
    background-color: #080808
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808
    }

    .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: #080808
    }

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

.breadcrumb {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: .75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: .25rem
}

.breadcrumb > li {
    display: inline-block
}

.breadcrumb > li + li:before {
    padding: 0 5px;
    color: #ccc;
    content: "/\a0"
}

.breadcrumb > .active {
    color: #777
}

.pagination {
    display: inline-block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: .25rem;
    margin: 0
}

.pagination > li {
    display: inline
}

.pagination > li > a, .pagination > li > span {
    position: relative;
    float: left;
    padding: 6px 12px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #1d4477;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd
}

.pagination > li:first-child > a, .pagination > li:first-child > span {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px
}

.pagination > li:last-child > a, .pagination > li:last-child > span {
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px
}

.pagination > li > a:focus, .pagination > li > a:hover, .pagination > li > span:focus, .pagination > li > span:hover {
    z-index: 2;
    color: #23527c;
    background-color: #eee;
    border-color: #ddd
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #1d4477;
    border-color: #1d4477
}

.pagination > .disabled > a, .pagination > .disabled > a:focus, .pagination > .disabled > a:hover, .pagination > .disabled > span, .pagination > .disabled > span:focus, .pagination > .disabled > span:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #fff;
    border-color: #ddd
}

.pagination-lg > li > a, .pagination-lg > li > span {
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333
}

.pagination-lg > li:first-child > a, .pagination-lg > li:first-child > span {
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px
}

.pagination-lg > li:last-child > a, .pagination-lg > li:last-child > span {
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px
}

.pagination-sm > li > a, .pagination-sm > li > span {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5
}

.pagination-sm > li:first-child > a, .pagination-sm > li:first-child > span {
    border-top-left-radius: 3px;
    border-bottom-left-radius: 3px
}

.pagination-sm > li:last-child > a, .pagination-sm > li:last-child > span {
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px
}

.pager {
    padding-left: 0;
    margin: 20px 0;
    text-align: center;
    list-style: none
}

.pager li {
    display: inline
}

.pager li > a, .pager li > span {
    display: inline-block;
    padding: 5px 14px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 15px
}

.pager li > a:focus, .pager li > a:hover {
    text-decoration: none;
    background-color: #eee
}

.pager .next > a, .pager .next > span {
    float: right
}

.pager .previous > a, .pager .previous > span {
    float: left
}

.pager .disabled > a, .pager .disabled > a:focus, .pager .disabled > a:hover, .pager .disabled > span {
    color: #777;
    cursor: not-allowed;
    background-color: #fff
}

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

a.label:focus, a.label:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.label:empty {
    display: none
}

.btn .label {
    position: relative;
    top: -1px
}

.label-default {
    background-color: #777
}

.label-default[href]:focus, .label-default[href]:hover {
    background-color: #5e5e5e
}

.label-primary {
    background-color: #1d4477
}

.label-primary[href]:focus, .label-primary[href]:hover {
    background-color: #286090
}

.label-success {
    background-color: #5cb85c
}

.label-success[href]:focus, .label-success[href]:hover {
    background-color: #449d44
}

.label-info {
    background-color: #5bc0de
}

.label-info[href]:focus, .label-info[href]:hover {
    background-color: #31b0d5
}

.label-warning {
    background-color: #f0ad4e
}

.label-warning[href]:focus, .label-warning[href]:hover {
    background-color: #ec971f
}

.label-danger {
    background-color: #d9534f
}

.label-danger[href]:focus, .label-danger[href]:hover {
    background-color: #c9302c
}

.badge {
    min-width: 10px;
    color: #fff;
    vertical-align: middle;
    background-color: #777;
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem
}

.badge:empty {
    display: none
}

.btn .badge {
    position: relative;
    top: -1px
}

.btn-group-xs > .btn .badge, .btn-xs .badge {
    top: 0;
    padding: 1px 5px
}

a.badge:focus, a.badge:hover {
    color: #fff;
    text-decoration: none;
    cursor: pointer
}

.list-group-item.active > .badge, .nav-pills > .active > a > .badge {
    color: #1d4477;
    background-color: #fff
}

.list-group-item > .badge {
    float: right
}

.list-group-item > .badge + .badge {
    margin-right: 5px
}

.nav-pills > li > a > .badge {
    margin-left: 3px
}

.jumbotron {
    padding: 2rem 1rem;
    margin-bottom: 30px;
    color: inherit;
    margin-bottom: 2rem;
    background-color: #e9ecef;
    border-radius: .3rem
}

.jumbotron .h1, .jumbotron h1 {
    color: inherit
}

.jumbotron p {
    margin-bottom: 15px;
    font-size: 21px;
    font-weight: 200
}

.jumbotron > hr {
    border-top-color: #d5d5d5
}

.container .jumbotron, .container-fluid .jumbotron {
    padding-right: 15px;
    padding-left: 15px;
    border-radius: 6px
}

.jumbotron .container {
    max-width: 100%
}

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron, .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px
    }

    .jumbotron .h1, .jumbotron h1 {
        font-size: 63px
    }
}

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

.thumbnail a > img, .thumbnail > img {
    margin-right: auto;
    margin-left: auto
}

a.thumbnail.active, a.thumbnail:focus, a.thumbnail:hover {
    border-color: #1d4477
}

.thumbnail .caption {
    padding: 9px;
    color: #333
}

.alert {
    margin-bottom: 20px;
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem
}

.alert h4 {
    margin-top: 0;
    color: inherit
}

.alert .alert-link {
    font-weight: 700
}

.alert > p, .alert > ul {
    margin-bottom: 0
}

.alert > p + p {
    margin-top: 5px
}

.alert-dismissable, .alert-dismissible {
    padding-right: 35px
}

.alert-dismissable .close, .alert-dismissible .close {
    position: relative;
    top: -2px;
    right: -21px;
    color: inherit
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb
}

.alert-success hr {
    border-top-color: #b1dfbb
}

.alert-success .alert-link {
    color: #0b2e13
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb
}

.alert-info hr {
    border-top-color: #abdde5
}

.alert-info .alert-link {
    color: #062c33
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba
}

.alert-warning hr {
    border-top-color: #ffe8a1
}

.alert-warning .alert-link {
    color: #533f03
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb
}

.alert-danger hr {
    border-top-color: #f1b0b7
}

.alert-danger .alert-link {
    color: #491217
}

@-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
    }
}

.progress {
    height: 20px;
    margin-bottom: 20px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .1);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 1rem;
    overflow: hidden;
    font-size: .75rem;
    background-color: #e9ecef;
    border-radius: .25rem
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    -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;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    background-color: #007bff;
    transition: width .6s ease
}

.progress-bar-striped, .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
}

.progress-bar.active, .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
}

.progress-bar-success {
    background-color: #5cb85c
}

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

.progress-bar-info {
    background-color: #5bc0de
}

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

.progress-bar-warning {
    background-color: #f0ad4e
}

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

.progress-bar-danger {
    background-color: #d9534f
}

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

.media {
    margin-top: 15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start
}

.media:first-child {
    margin-top: 0
}

.media, .media-body {
    overflow: hidden;
    zoom: 1
}

.media-body {
    width: 10000px;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1
}

.media-object {
    display: block
}

.media-object.img-thumbnail {
    max-width: none
}

.media-right, .media > .pull-right {
    padding-left: 10px
}

.media-left, .media > .pull-left {
    padding-right: 10px
}

.media-body, .media-left, .media-right {
    display: table-cell;
    vertical-align: top
}

.media-middle {
    vertical-align: middle
}

.media-bottom {
    vertical-align: bottom
}

.media-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.media-list {
    padding-left: 0;
    list-style: none
}

.list-group {
    margin-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0
}

.list-group-item {
    position: relative;
    display: block;
    padding: .75rem 1.25rem;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .125)
}

.list-group-item:first-child {
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.list-group-item:last-child {
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    margin-bottom: 0;
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

a.list-group-item, button.list-group-item {
    color: #555
}

a.list-group-item .list-group-item-heading, button.list-group-item .list-group-item-heading {
    color: #333
}

a.list-group-item:focus, a.list-group-item:hover, button.list-group-item:focus, button.list-group-item:hover {
    color: #555;
    text-decoration: none;
    background-color: #f5f5f5
}

button.list-group-item {
    width: 100%;
    text-align: left
}

.list-group-item.disabled, .list-group-item.disabled:focus, .list-group-item.disabled:hover {
    color: #777;
    cursor: not-allowed;
    background-color: #eee
}

.list-group-item.disabled .list-group-item-heading, .list-group-item.disabled:focus .list-group-item-heading, .list-group-item.disabled:hover .list-group-item-heading {
    color: inherit
}

.list-group-item.disabled .list-group-item-text, .list-group-item.disabled:focus .list-group-item-text, .list-group-item.disabled:hover .list-group-item-text {
    color: #777
}

.list-group-item.active, .list-group-item.active:focus, .list-group-item.active:hover {
    z-index: 2;
    color: #fff;
    background-color: #1d4477;
    border-color: #1d4477
}

.list-group-item.active .list-group-item-heading, .list-group-item.active .list-group-item-heading > .small, .list-group-item.active .list-group-item-heading > small, .list-group-item.active:focus .list-group-item-heading, .list-group-item.active:focus .list-group-item-heading > .small, .list-group-item.active:focus .list-group-item-heading > small, .list-group-item.active:hover .list-group-item-heading, .list-group-item.active:hover .list-group-item-heading > .small, .list-group-item.active:hover .list-group-item-heading > small {
    color: inherit
}

.list-group-item.active .list-group-item-text, .list-group-item.active:focus .list-group-item-text, .list-group-item.active:hover .list-group-item-text {
    color: #c7ddef
}

.list-group-item-success {
    color: #155724;
    background-color: #c3e6cb
}

a.list-group-item-success, button.list-group-item-success {
    color: #3c763d
}

a.list-group-item-success .list-group-item-heading, button.list-group-item-success .list-group-item-heading {
    color: inherit
}

a.list-group-item-success:focus, a.list-group-item-success:hover, button.list-group-item-success:focus, button.list-group-item-success:hover {
    color: #3c763d;
    background-color: #d0e9c6
}

a.list-group-item-success.active, a.list-group-item-success.active:focus, a.list-group-item-success.active:hover, button.list-group-item-success.active, button.list-group-item-success.active:focus, button.list-group-item-success.active:hover {
    color: #fff;
    background-color: #3c763d;
    border-color: #3c763d
}

.list-group-item-info {
    color: #0c5460;
    background-color: #bee5eb
}

a.list-group-item-info, button.list-group-item-info {
    color: #31708f
}

a.list-group-item-info .list-group-item-heading, button.list-group-item-info .list-group-item-heading {
    color: inherit
}

a.list-group-item-info:focus, a.list-group-item-info:hover, button.list-group-item-info:focus, button.list-group-item-info:hover {
    color: #31708f;
    background-color: #c4e3f3
}

a.list-group-item-info.active, a.list-group-item-info.active:focus, a.list-group-item-info.active:hover, button.list-group-item-info.active, button.list-group-item-info.active:focus, button.list-group-item-info.active:hover {
    color: #fff;
    background-color: #31708f;
    border-color: #31708f
}

.list-group-item-warning {
    color: #856404;
    background-color: #ffeeba
}

a.list-group-item-warning, button.list-group-item-warning {
    color: #8a6d3b
}

a.list-group-item-warning .list-group-item-heading, button.list-group-item-warning .list-group-item-heading {
    color: inherit
}

a.list-group-item-warning:focus, a.list-group-item-warning:hover, button.list-group-item-warning:focus, button.list-group-item-warning:hover {
    color: #8a6d3b;
    background-color: #faf2cc
}

a.list-group-item-warning.active, a.list-group-item-warning.active:focus, a.list-group-item-warning.active:hover, button.list-group-item-warning.active, button.list-group-item-warning.active:focus, button.list-group-item-warning.active:hover {
    color: #fff;
    background-color: #8a6d3b;
    border-color: #8a6d3b
}

.list-group-item-danger {
    color: #721c24;
    background-color: #f5c6cb
}

a.list-group-item-danger, button.list-group-item-danger {
    color: #a94442
}

a.list-group-item-danger .list-group-item-heading, button.list-group-item-danger .list-group-item-heading {
    color: inherit
}

a.list-group-item-danger:focus, a.list-group-item-danger:hover, button.list-group-item-danger:focus, button.list-group-item-danger:hover {
    color: #a94442;
    background-color: #ebcccc
}

a.list-group-item-danger.active, a.list-group-item-danger.active:focus, a.list-group-item-danger.active:hover, button.list-group-item-danger.active, button.list-group-item-danger.active:focus, button.list-group-item-danger.active:hover {
    color: #fff;
    background-color: #a94442;
    border-color: #a94442
}

.list-group-item-heading {
    margin-top: 0;
    margin-bottom: 5px
}

.list-group-item-text {
    margin-bottom: 0;
    line-height: 1.3
}

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

.panel-body {
    padding: 15px
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel-heading > .dropdown .dropdown-toggle {
    color: inherit
}

.panel-title {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 16px;
    color: inherit
}

.panel-title > .small, .panel-title > .small > a, .panel-title > a, .panel-title > small, .panel-title > small > a {
    color: inherit
}

.panel-footer {
    padding: 10px 15px;
    background-color: #f5f5f5;
    border-top: 1px solid #ddd;
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .list-group, .panel > .panel-collapse > .list-group {
    margin-bottom: 0
}

.panel > .list-group .list-group-item, .panel > .panel-collapse > .list-group .list-group-item {
    border-width: 1px 0;
    border-radius: 0
}

.panel > .list-group:first-child .list-group-item:first-child, .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
}

.panel > .list-group:last-child .list-group-item:last-child, .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
}

.panel > .panel-heading + .panel-collapse > .list-group .list-group-item:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.panel-heading + .list-group .list-group-item:first-child {
    border-top-width: 0
}

.list-group + .panel-footer {
    border-top-width: 0
}

.panel > .panel-collapse > .table, .panel > .table, .panel > .table-responsive > .table {
    margin-bottom: 0
}

.panel > .panel-collapse > .table caption, .panel > .table caption, .panel > .table-responsive > .table caption {
    padding-right: 15px;
    padding-left: 15px
}

.panel > .table-responsive:first-child > .table:first-child, .panel > .table:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child, .panel > .table:first-child > thead:first-child > tr:first-child {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px
}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:first-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:first-child, .panel > .table:first-child > thead:first-child > tr:first-child td:first-child, .panel > .table:first-child > thead:first-child > tr:first-child th:first-child {
    border-top-left-radius: 3px
}

.panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table-responsive:first-child > .table:first-child > thead:first-child > tr:first-child th:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child td:last-child, .panel > .table:first-child > tbody:first-child > tr:first-child th:last-child, .panel > .table:first-child > thead:first-child > tr:first-child td:last-child, .panel > .table:first-child > thead:first-child > tr:first-child th:last-child {
    border-top-right-radius: 3px
}

.panel > .table-responsive:last-child > .table:last-child, .panel > .table:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px
}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:first-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:first-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:first-child {
    border-bottom-left-radius: 3px
}

.panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table-responsive:last-child > .table:last-child > tfoot:last-child > tr:last-child th:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child td:last-child, .panel > .table:last-child > tbody:last-child > tr:last-child th:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child td:last-child, .panel > .table:last-child > tfoot:last-child > tr:last-child th:last-child {
    border-bottom-right-radius: 3px
}

.panel > .panel-body + .table, .panel > .panel-body + .table-responsive, .panel > .table + .panel-body, .panel > .table-responsive + .panel-body {
    border-top: 1px solid #ddd
}

.panel > .table > tbody:first-child > tr:first-child td, .panel > .table > tbody:first-child > tr:first-child th {
    border-top: 0
}

.panel > .table-bordered, .panel > .table-responsive > .table-bordered {
    border: 0
}

.panel > .table-bordered > tbody > tr > td:first-child, .panel > .table-bordered > tbody > tr > th:first-child, .panel > .table-bordered > tfoot > tr > td:first-child, .panel > .table-bordered > tfoot > tr > th:first-child, .panel > .table-bordered > thead > tr > td:first-child, .panel > .table-bordered > thead > tr > th:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:first-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:first-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:first-child, .panel > .table-responsive > .table-bordered > thead > tr > td:first-child, .panel > .table-responsive > .table-bordered > thead > tr > th:first-child {
    border-left: 0
}

.panel > .table-bordered > tbody > tr > td:last-child, .panel > .table-bordered > tbody > tr > th:last-child, .panel > .table-bordered > tfoot > tr > td:last-child, .panel > .table-bordered > tfoot > tr > th:last-child, .panel > .table-bordered > thead > tr > td:last-child, .panel > .table-bordered > thead > tr > th:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > td:last-child, .panel > .table-responsive > .table-bordered > tbody > tr > th:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > td:last-child, .panel > .table-responsive > .table-bordered > tfoot > tr > th:last-child, .panel > .table-responsive > .table-bordered > thead > tr > td:last-child, .panel > .table-responsive > .table-bordered > thead > tr > th:last-child {
    border-right: 0
}

.panel > .table-bordered > tbody > tr:first-child > td, .panel > .table-bordered > tbody > tr:first-child > th, .panel > .table-bordered > thead > tr:first-child > td, .panel > .table-bordered > thead > tr:first-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:first-child > th, .panel > .table-responsive > .table-bordered > thead > tr:first-child > td, .panel > .table-responsive > .table-bordered > thead > tr:first-child > th {
    border-bottom: 0
}

.panel > .table-bordered > tbody > tr:last-child > td, .panel > .table-bordered > tbody > tr:last-child > th, .panel > .table-bordered > tfoot > tr:last-child > td, .panel > .table-bordered > tfoot > tr:last-child > th, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > td, .panel > .table-responsive > .table-bordered > tbody > tr:last-child > th, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > td, .panel > .table-responsive > .table-bordered > tfoot > tr:last-child > th {
    border-bottom: 0
}

.panel > .table-responsive {
    margin-bottom: 0;
    border: 0
}

.panel-group {
    margin-bottom: 20px
}

.panel-group .panel {
    margin-bottom: 0;
    border-radius: 4px
}

.panel-group .panel + .panel {
    margin-top: 5px
}

.panel-group .panel-heading {
    border-bottom: 0
}

.panel-group .panel-heading + .panel-collapse > .list-group, .panel-group .panel-heading + .panel-collapse > .panel-body {
    border-top: 1px solid #ddd
}

.panel-group .panel-footer {
    border-top: 0
}

.panel-group .panel-footer + .panel-collapse .panel-body {
    border-bottom: 1px solid #ddd
}

.panel-default {
    border-color: #ddd
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd
}

.panel-default > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ddd
}

.panel-default > .panel-heading .badge {
    color: #f5f5f5;
    background-color: #333
}

.panel-default > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ddd
}

.panel-primary {
    border-color: #1d4477
}

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #1d4477;
    border-color: #1d4477
}

.panel-primary > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #1d4477
}

.panel-primary > .panel-heading .badge {
    color: #1d4477;
    background-color: #fff
}

.panel-primary > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #1d4477
}

.panel-success {
    border-color: #d6e9c6
}

.panel-success > .panel-heading {
    color: #3c763d;
    background-color: #dff0d8;
    border-color: #d6e9c6
}

.panel-success > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #d6e9c6
}

.panel-success > .panel-heading .badge {
    color: #dff0d8;
    background-color: #3c763d
}

.panel-success > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #d6e9c6
}

.panel-info {
    border-color: #bce8f1
}

.panel-info > .panel-heading {
    color: #31708f;
    background-color: #d9edf7;
    border-color: #bce8f1
}

.panel-info > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #bce8f1
}

.panel-info > .panel-heading .badge {
    color: #d9edf7;
    background-color: #31708f
}

.panel-info > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #bce8f1
}

.panel-warning {
    border-color: #faebcc
}

.panel-warning > .panel-heading {
    color: #8a6d3b;
    background-color: #fcf8e3;
    border-color: #faebcc
}

.panel-warning > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #faebcc
}

.panel-warning > .panel-heading .badge {
    color: #fcf8e3;
    background-color: #8a6d3b
}

.panel-warning > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #faebcc
}

.panel-danger {
    border-color: #ebccd1
}

.panel-danger > .panel-heading {
    color: #a94442;
    background-color: #f2dede;
    border-color: #ebccd1
}

.panel-danger > .panel-heading + .panel-collapse > .panel-body {
    border-top-color: #ebccd1
}

.panel-danger > .panel-heading .badge {
    color: #f2dede;
    background-color: #a94442
}

.panel-danger > .panel-footer + .panel-collapse > .panel-body {
    border-bottom-color: #ebccd1
}

.embed-responsive {
    height: 0;
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    overflow: hidden
}

.embed-responsive .embed-responsive-item, .embed-responsive embed, .embed-responsive iframe, .embed-responsive object, .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0
}

.embed-responsive-16by9 {
    padding-bottom: 56.25%
}

.embed-responsive-4by3 {
    padding-bottom: 75%
}

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

.well blockquote {
    border-color: rgba(0, 0, 0, .15)
}

.well-lg {
    padding: 24px;
    border-radius: 6px
}

.well-sm {
    border-radius: 3px;
    padding: 30px;
    background-image: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
}

.close {
    opacity: .2;
    float: right;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
    color: #fff;
    opacity: 1
}

.close:focus, .close:hover {
    cursor: pointer;
    opacity: .5;
    color: #3ed8c3;
    text-decoration: none;
    opacity: .75
}

button.close {
    cursor: pointer;
    background: transparent 0 0;
    padding: 0;
    border: 0;
    -webkit-appearance: none;
    text-shadow: none;
    box-shadow: none;
}

.modal-open {
    overflow: hidden
}

.modal {
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    z-index: 9999999999;

}

.modal.fade .modal-dialog {
    -webkit-transition: -webkit-transform .3s ease-out;
    -o-transition: -o-transform .3s ease-out;
    -ms-transform: translate(0, -25%);
    -o-transform: translate(0, -25%);
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%)
}

.modal.in .modal-dialog {
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%)
}

.modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto
}

.modal-dialog {
    position: relative;
    width: auto;
    margin: .5rem;
    pointer-events: none
}

.modal-content {
    -webkit-background-clip: padding-box;
    -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    box-shadow: 0 3px 9px rgba(0, 0, 0, .5);
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem;
    outline: 0
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000
}


.modal-backdrop.in {
    opacity: .5;
    z-index: 9999999
}

.modal-backdrop.fade {
    opacity: 0
}

.modal-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    border-top-left-radius: .3rem;
    border-top-right-radius: .3rem;
    padding: 15px;
    border-bottom: 1px solid #e5e5e5;
    background: #1d4477;
    color: #fff;
    background-image: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
    font: 20px RWESansPS;
    align-items: center;
}

button.close:after {
    content: "green";
    font-family: "rwe-blog" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    content: "\e0a7";
}

.modal-header .close {
    margin: 0;
    padding: 0;
    order:2;
}

.bottom > span {
    margin-bottom: 5px;
    display: inline-block;
}

.owl-carousel + .content-wrapper .topicfocus {
    transform: translateY(-100%);
    z-index: 9999;
    position: relative;
}


.owl-carousel + .content-wrapper .topicfocus {
    transform: translateY(-100%);
    z-index: 9999;
    position: absolute;
    right:0;
}

.modal-title {
    margin: 0;
    line-height: 1.42857143;
    line-height: 1.5;
    font-weight:500;
}

.modal-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    position: relative;
    position: relative;
    padding: 15px;
    background: #e8e8e4;
    color: #1d4477;
    font: 400 18px RWESansPS;
    line-height: 1.5em;
}

.modal-footer {
    text-align: right;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    padding: 1rem;
    border-top: 1px solid #e9ecef
}

.modal-footer .btn + .btn {
    margin-bottom: 0;
    margin-left: 5px
}

.modal-footer .btn-group .btn + .btn {
    margin-left: -1px
}

.modal-footer .btn-block + .btn-block {
    margin-left: 0
}

.modal-scrollbar-measure {
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll;
    position: absolute;
    top: -9999px;
    width: 50px;
    height: 50px;
    overflow: scroll
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

.tooltip {
    font: normal 400 .875rem/1.42857143 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    word-wrap: normal;
    position: absolute;
    z-index: 1070;
    display: block;
    margin: 0;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    word-wrap: break-word;
    opacity: 0
}

.tooltip.in {
    opacity: .9
}

.tooltip.top {
    padding: 5px 0;
    margin-top: -3px
}

.tooltip.right {
    padding: 0 5px;
    margin-left: 3px
}

.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px
}

.tooltip.left {
    padding: 0 5px;
    margin-left: -3px
}

.tooltip-inner {
    max-width: 200px;
    padding: .25rem .5rem;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: .25rem
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000
}

.popover {
    display: none;
    padding: 1px;
    font: normal 400 .875rem/1.42857143 -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    word-wrap: normal;
    -webkit-background-clip: padding-box;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: block;
    max-width: 276px;
    line-height: 1.5;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    white-space: normal;
    line-break: auto;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: .3rem
}

.popover.top {
    margin-top: -10px
}

.popover.right {
    margin-left: 10px
}

.popover.bottom {
    margin-top: 10px
}

.popover.left {
    margin-left: -10px
}

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0
}

.popover-content {
    padding: 9px 14px
}

.popover > .arrow, .popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid
}

.popover > .arrow {
    border-width: 11px
}

.popover > .arrow:after {
    content: "";
    border-width: 10px
}

.popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0
}

.popover.top > .arrow:after {
    bottom: 1px;
    margin-left: -10px;
    content: " ";
    border-top-color: #fff;
    border-bottom-width: 0
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0
}

.popover.right > .arrow:after {
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0
}

.popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: rgba(0, 0, 0, .25)
}

.popover.bottom > .arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: rgba(0, 0, 0, .25)
}

.popover.left > .arrow:after {
    right: 1px;
    bottom: -10px;
    content: " ";
    border-right-width: 0;
    border-left-color: #fff
}

.carousel {
    position: relative
}

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

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

.carousel-inner > .item > a > img, .carousel-inner > .item > img {
    line-height: 1
}

@media all and (transform-3d),(-webkit-transform-3d) {
    .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: 1000px;
        perspective: 1000px
    }

    .carousel-inner > .item.active.right, .carousel-inner > .item.next {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    .carousel-inner > .item.active.left, .carousel-inner > .item.prev {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    .carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

.carousel-inner > .active, .carousel-inner > .next, .carousel-inner > .prev {
    display: block
}

.carousel-inner > .active {
    left: 0
}

.carousel-inner > .next, .carousel-inner > .prev {
    position: absolute;
    top: 0;
    width: 100%
}

.carousel-inner > .next {
    left: 100%
}

.carousel-inner > .prev {
    left: -100%
}

.carousel-inner > .next.left, .carousel-inner > .prev.right {
    left: 0
}

.carousel-inner > .active.left {
    left: -100%
}

.carousel-inner > .active.right {
    left: 100%
}

.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);
    background-color: rgba(0, 0, 0, 0);
    opacity: .5
}

.carousel-control.left {
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .1) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .1) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .5)), to(rgba(0, 0, 0, .1)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .5) 0, rgba(0, 0, 0, .1) 100%);
    background-repeat: repeat-x
}

.carousel-control.right {
    right: 0;
    left: auto;
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .1) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, .1) 0, rgba(0, 0, 0, .5) 100%);
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, .1)), to(rgba(0, 0, 0, .5)));
    background-image: linear-gradient(to right, rgba(0, 0, 0, .1) 0, rgba(0, 0, 0, .5) 100%);
    background-repeat: repeat-x
}

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

.carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -10px
}

.carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
    left: 50%;
    margin-left: -10px
}

.carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
    right: 50%;
    margin-right: -10px
}

.carousel-control .icon-next, .carousel-control .icon-prev {
    width: 20px;
    height: 20px;
    font-family: serif;
    line-height: 1
}

.carousel-control .icon-prev:before {
    content: '\2039'
}

.carousel-control .icon-next:before {
    content: '\203a'
}

.carousel-indicators {
    left: 50%;
    width: 60%;
    margin-left: -30%;
    text-align: center;
    position: absolute;
    right: 0;
    bottom: 10px;
    left: 0;
    z-index: 15;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding-left: 0;
    margin-right: 15%;
    margin-left: 15%;
    list-style: none
}

.carousel-indicators li {
    display: inline-block;
    width: 10px;
    height: 10px;
    margin: 1px 3px;
    cursor: pointer;
    border: 1px solid #fff;
    border-radius: 10px;
    position: relative;
    -webkit-box-flex: 0;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    width: 30px;
    height: 3px;
    text-indent: -999px;
    background-color: rgba(255, 255, 255, .5)
}

.carousel-indicators .active {
    width: 12px;
    height: 12px;
    margin: 0;
    background-color: #fff
}

.carousel-caption {
    text-shadow: 0 1px 2px rgba(0, 0, 0, .6);
    position: absolute;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #fff;
    text-align: center
}

.carousel-caption .btn {
    text-shadow: none
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -10px
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

.btn-group-vertical > .btn-group:after, .btn-group-vertical > .btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
    display: table;
    content: " "
}

.btn-group-vertical > .btn-group:after, .btn-toolbar:after, .clearfix:after, .container-fluid:after, .container:after, .dl-horizontal dd:after, .form-horizontal .form-group:after, .modal-footer:after, .modal-header:after, .nav:after, .navbar-collapse:after, .navbar-header:after, .navbar:after, .pager:after, .panel-body:after, .row:after {
    clear: both
}

.center-block {
    display: block;
    margin-right: auto;
    margin-left: auto
}

.pull-right {
    float: right !important
}

.pull-left {
    float: left !important
}

.hide {
    display: none !important
}

.show {
    display: block !important
}

.invisible {
    visibility: hidden;
    visibility: hidden !important
}

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

.hidden {
    display: none !important
}

.affix {
    position: fixed
}


.visible-lg, .visible-md, .visible-sm, .visible-xs {
    display: none !important
}

.visible-lg-block, .visible-lg-inline, .visible-lg-inline-block, .visible-md-block, .visible-md-inline, .visible-md-inline-block, .visible-sm-block, .visible-sm-inline, .visible-sm-inline-block, .visible-xs-block, .visible-xs-inline, .visible-xs-inline-block {
    display: none !important
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table !important
    }

    tr.visible-xs {
        display: table-row !important
    }

    td.visible-xs, th.visible-xs {
        display: table-cell !important
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table !important
    }

    tr.visible-sm {
        display: table-row !important
    }

    td.visible-sm, th.visible-sm {
        display: table-cell !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table !important
    }

    tr.visible-md {
        display: table-row !important
    }

    td.visible-md, th.visible-md {
        display: table-cell !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table !important
    }

    tr.visible-lg {
        display: table-row !important
    }

    td.visible-lg, th.visible-lg {
        display: table-cell !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }
}

.visible-print {
    display: none !important
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    td.visible-print, th.visible-print {
        display: table-cell !important
    }
}

.visible-print-block {
    display: none !important
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

.visible-print-inline {
    display: none !important
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

.visible-print-inline-block {
    display: none !important
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

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

@media print {
    *, :after, :before {
        color: #000 !important;
        text-shadow: none !important;
        background: 0 0 !important;
        -webkit-box-shadow: none !important;
        box-shadow: none !important
    }

    a, a:visited {
        text-decoration: underline
    }

    a[href]:after {
        content: " (" attr(href) ")"
    }

    abbr[title]:after {
        content: " (" attr(title) ")"
    }

    a[href^="#"]:after, a[href^="javascript:"]:after {
        content: ""
    }

    blockquote, pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img, tr {
        page-break-inside: avoid
    }

    img {
        max-width: 100% !important
    }

    h2, h3, p {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    .navbar {
        display: none
    }

    .btn > .caret, .dropup > .btn > .caret {
        border-top-color: #000 !important
    }

    .label {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td, .table th {
        background-color: #fff !important
    }

    .table-bordered td, .table-bordered th {
        border: 1px solid #ddd !important
    }
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url(../fonts/glyphicons-halflings-regular.eot);
    src: url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'), url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'), url(../fonts/glyphicons-halflings-regular.woff) format('woff'), url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'), url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')
}

@media (min-width: 768px) {
    .lead {
        font-size: 21px
    }
}

@media (min-width: 768px) {
    .dl-horizontal dt {
        float: left;
        width: 160px;
        overflow: hidden;
        clear: left;
        text-align: right;
        text-overflow: ellipsis;
        white-space: nowrap
    }

    .dl-horizontal dd {
        margin-left: 180px
    }
}

@media (min-width: 768px) {
    .container {
        width: 750px
    }
}

@media (min-width: 992px) {
    .container {
        width: 970px
    }
}

@media (min-width: 1200px) {
    .container {
        width: 1170px
    }
}

@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-12 {
        width: 100%
    }

    .col-sm-11 {
        width: 91.66666667%
    }

    .col-sm-10 {
        width: 83.33333333%
    }

    .col-sm-9 {
        width: 75%
    }

    .col-sm-8 {
        width: 66.66666667%
    }

    .col-sm-7 {
        width: 58.33333333%
    }

    .col-sm-6 {
        width: 50%
    }

    .col-sm-5 {
        width: 41.66666667%
    }

    .col-sm-4 {
        width: 33.33333333%
    }

    .col-sm-3 {
        width: 25%
    }

    .col-sm-2 {
        width: 16.66666667%
    }

    .col-sm-1 {
        width: 8.33333333%
    }

    .col-sm-pull-12 {
        right: 100%
    }

    .col-sm-pull-11 {
        right: 91.66666667%
    }

    .col-sm-pull-10 {
        right: 83.33333333%
    }

    .col-sm-pull-9 {
        right: 75%
    }

    .col-sm-pull-8 {
        right: 66.66666667%
    }

    .col-sm-pull-7 {
        right: 58.33333333%
    }

    .col-sm-pull-6 {
        right: 50%
    }

    .col-sm-pull-5 {
        right: 41.66666667%
    }

    .col-sm-pull-4 {
        right: 33.33333333%
    }

    .col-sm-pull-3 {
        right: 25%
    }

    .col-sm-pull-2 {
        right: 16.66666667%
    }

    .col-sm-pull-1 {
        right: 8.33333333%
    }

    .col-sm-pull-0 {
        right: auto
    }

    .col-sm-push-12 {
        left: 100%
    }

    .col-sm-push-11 {
        left: 91.66666667%
    }

    .col-sm-push-10 {
        left: 83.33333333%
    }

    .col-sm-push-9 {
        left: 75%
    }

    .col-sm-push-8 {
        left: 66.66666667%
    }

    .col-sm-push-7 {
        left: 58.33333333%
    }

    .col-sm-push-6 {
        left: 50%
    }

    .col-sm-push-5 {
        left: 41.66666667%
    }

    .col-sm-push-4 {
        left: 33.33333333%
    }

    .col-sm-push-3 {
        left: 25%
    }

    .col-sm-push-2 {
        left: 16.66666667%
    }

    .col-sm-push-1 {
        left: 8.33333333%
    }

    .col-sm-push-0 {
        left: auto
    }

    .col-sm-offset-12 {
        margin-left: 100%
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%
    }

    .col-sm-offset-9 {
        margin-left: 75%
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%
    }

    .col-sm-offset-6 {
        margin-left: 50%
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%
    }

    .col-sm-offset-3 {
        margin-left: 25%
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%
    }

    .col-sm-offset-0 {
        margin-left: 0
    }
}

@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-12 {
        width: 100%
    }

    .col-md-11 {
        width: 91.66666667%
    }

    .col-md-10 {
        width: 83.33333333%
    }

    .col-md-9 {
        width: 75%
    }

    .col-md-8 {
        width: 66.66666667%
    }

    .col-md-7 {
        width: 58.33333333%
    }

    .col-md-6 {
        width: 50%
    }

    .col-md-5 {
        width: 41.66666667%
    }

    .col-md-4 {
        width: 33.33333333%
    }

    .col-md-3 {
        width: 25%
    }

    .col-md-2 {
        width: 16.66666667%
    }

    .col-md-1 {
        width: 8.33333333%
    }

    .col-md-pull-12 {
        right: 100%
    }

    .col-md-pull-11 {
        right: 91.66666667%
    }

    .col-md-pull-10 {
        right: 83.33333333%
    }

    .col-md-pull-9 {
        right: 75%
    }

    .col-md-pull-8 {
        right: 66.66666667%
    }

    .col-md-pull-7 {
        right: 58.33333333%
    }

    .col-md-pull-6 {
        right: 50%
    }

    .col-md-pull-5 {
        right: 41.66666667%
    }

    .col-md-pull-4 {
        right: 33.33333333%
    }

    .col-md-pull-3 {
        right: 25%
    }

    .col-md-pull-2 {
        right: 16.66666667%
    }

    .col-md-pull-1 {
        right: 8.33333333%
    }

    .col-md-pull-0 {
        right: auto
    }

    .col-md-push-12 {
        left: 100%
    }

    .col-md-push-11 {
        left: 91.66666667%
    }

    .col-md-push-10 {
        left: 83.33333333%
    }

    .col-md-push-9 {
        left: 75%
    }

    .col-md-push-8 {
        left: 66.66666667%
    }

    .col-md-push-7 {
        left: 58.33333333%
    }

    .col-md-push-6 {
        left: 50%
    }

    .col-md-push-5 {
        left: 41.66666667%
    }

    .col-md-push-4 {
        left: 33.33333333%
    }

    .col-md-push-3 {
        left: 25%
    }

    .col-md-push-2 {
        left: 16.66666667%
    }

    .col-md-push-1 {
        left: 8.33333333%
    }

    .col-md-push-0 {
        left: auto
    }

    .col-md-offset-12 {
        margin-left: 100%
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%
    }

    .col-md-offset-9 {
        margin-left: 75%
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%
    }

    .col-md-offset-6 {
        margin-left: 50%
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%
    }

    .col-md-offset-3 {
        margin-left: 25%
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%
    }

    .col-md-offset-0 {
        margin-left: 0
    }
}

@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-12 {
        width: 100%
    }

    .col-lg-11 {
        width: 91.66666667%
    }

    .col-lg-10 {
        width: 83.33333333%
    }

    .col-lg-9 {
        width: 75%
    }

    .col-lg-8 {
        width: 66.66666667%
    }

    .col-lg-7 {
        width: 58.33333333%
    }

    .col-lg-6 {
        width: 50%
    }

    .col-lg-5 {
        width: 41.66666667%
    }

    .col-lg-4 {
        width: 33.33333333%
    }

    .col-lg-3 {
        width: 25%
    }

    .col-lg-2 {
        width: 16.66666667%
    }

    .col-lg-1 {
        width: 8.33333333%
    }

    .col-lg-pull-12 {
        right: 100%
    }

    .col-lg-pull-11 {
        right: 91.66666667%
    }

    .col-lg-pull-10 {
        right: 83.33333333%
    }

    .col-lg-pull-9 {
        right: 75%
    }

    .col-lg-pull-8 {
        right: 66.66666667%
    }

    .col-lg-pull-7 {
        right: 58.33333333%
    }

    .col-lg-pull-6 {
        right: 50%
    }

    .col-lg-pull-5 {
        right: 41.66666667%
    }

    .col-lg-pull-4 {
        right: 33.33333333%
    }

    .col-lg-pull-3 {
        right: 25%
    }

    .col-lg-pull-2 {
        right: 16.66666667%
    }

    .col-lg-pull-1 {
        right: 8.33333333%
    }

    .col-lg-pull-0 {
        right: auto
    }

    .col-lg-push-12 {
        left: 100%
    }

    .col-lg-push-11 {
        left: 91.66666667%
    }

    .col-lg-push-10 {
        left: 83.33333333%
    }

    .col-lg-push-9 {
        left: 75%
    }

    .col-lg-push-8 {
        left: 66.66666667%
    }

    .col-lg-push-7 {
        left: 58.33333333%
    }

    .col-lg-push-6 {
        left: 50%
    }

    .col-lg-push-5 {
        left: 41.66666667%
    }

    .col-lg-push-4 {
        left: 33.33333333%
    }

    .col-lg-push-3 {
        left: 25%
    }

    .col-lg-push-2 {
        left: 16.66666667%
    }

    .col-lg-push-1 {
        left: 8.33333333%
    }

    .col-lg-push-0 {
        left: auto
    }

    .col-lg-offset-12 {
        margin-left: 100%
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%
    }

    .col-lg-offset-9 {
        margin-left: 75%
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%
    }

    .col-lg-offset-6 {
        margin-left: 50%
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%
    }

    .col-lg-offset-3 {
        margin-left: 25%
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%
    }

    .col-lg-offset-0 {
        margin-left: 0
    }
}

@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
    }
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
    input[type=date].form-control, input[type=datetime-local].form-control, input[type=month].form-control, input[type=time].form-control {
        line-height: 34px
    }

    .input-group-sm input[type=date], .input-group-sm input[type=datetime-local], .input-group-sm input[type=month], .input-group-sm input[type=time], input[type=date].input-sm, input[type=datetime-local].input-sm, input[type=month].input-sm, input[type=time].input-sm {
        line-height: 30px
    }

    .input-group-lg input[type=date], .input-group-lg input[type=datetime-local], .input-group-lg input[type=month], .input-group-lg input[type=time], input[type=date].input-lg, input[type=datetime-local].input-lg, input[type=month].input-lg, input[type=time].input-lg {
        line-height: 46px
    }
}

@media (min-width: 768px) {
    .form-inline .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-static {
        display: inline-block
    }

    .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 .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

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

@media (min-width: 768px) {
    .form-horizontal .control-label {
        padding-top: 7px;
        margin-bottom: 0;
        text-align: right
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-lg .control-label {
        padding-top: 11px;
        font-size: 18px
    }
}

@media (min-width: 768px) {
    .form-horizontal .form-group-sm .control-label {
        padding-top: 6px;
        font-size: 12px
    }
}

@media (min-width: 768px) {
    .navbar-right .dropdown-menu {
        right: 0;
        left: auto
    }

    .navbar-right .dropdown-menu-left {
        right: auto;
        left: 0
    }
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-tabs.nav-justified > li > a {
        margin-bottom: 0
    }
}

@media (min-width: 768px) {
    .nav-tabs.nav-justified > li > a {
        border-bottom: 1px solid #ddd;
        border-radius: 4px 4px 0 0
    }

    .nav-tabs.nav-justified > .active > a, .nav-tabs.nav-justified > .active > a:focus, .nav-tabs.nav-justified > .active > a:hover {
        border-bottom-color: #fff
    }
}

@media (min-width: 768px) {
    .nav-justified > li {
        display: table-cell;
        width: 1%
    }

    .nav-justified > li > a {
        margin-bottom: 0
    }
}

@media (min-width: 768px) {
    .nav-tabs-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 {
        border-bottom-color: #fff
    }
}

@media (min-width: 768px) {
    .navbar {
        border-radius: 4px
    }
}

@media (min-width: 768px) {
    .navbar-header {
        float: left
    }
}

@media (min-width: 768px) {
    .navbar-collapse {
        width: auto;
        border-top: 0;
        -webkit-box-shadow: none;
        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-right: 0;
        padding-left: 0
    }
}

@media (max-device-width: 480px) and (orientation: landscape) {
    .navbar-fixed-bottom .navbar-collapse, .navbar-fixed-top .navbar-collapse {
        max-height: 200px
    }
}

@media (min-width: 768px) {
    .container-fluid > .navbar-collapse, .container-fluid > .navbar-header, .container > .navbar-collapse, .container > .navbar-header {
        margin-right: 0;
        margin-left: 0
    }
}

@media (min-width: 768px) {
    .navbar-static-top {
        border-radius: 0
    }
}

@media (min-width: 768px) {
    .navbar-fixed-bottom, .navbar-fixed-top {
        border-radius: 0
    }
}

@media (min-width: 768px) {
    .navbar > .container .navbar-brand, .navbar > .container-fluid .navbar-brand {
        margin-left: -15px
    }
}

@media (min-width: 768px) {
    .navbar-toggle {
        display: none
    }
}

@media (max-width: 767px) {
    .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
    }

    .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-nav {
        float: left;
        margin: 0
    }

    .navbar-nav > li {
        float: left
    }

    .navbar-nav > li > a {
        padding-top: 15px;
        padding-bottom: 15px
    }
}

@media (min-width: 768px) {
    .navbar-form .form-group {
        display: inline-block;
        margin-bottom: 0;
        vertical-align: middle
    }

    .navbar-form .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .navbar-form .form-control-static {
        display: inline-block
    }

    .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 .control-label {
        margin-bottom: 0;
        vertical-align: middle
    }

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

@media (max-width: 767px) {
    .navbar-form .form-group {
        margin-bottom: 5px
    }

    .navbar-form .form-group:last-child {
        margin-bottom: 0
    }
}

@media (min-width: 768px) {
    .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
    }
}

@media (min-width: 768px) {
    .navbar-text {
        float: left;
        margin-right: 15px;
        margin-left: 15px
    }
}

@media (min-width: 768px) {
    .navbar-left {
        float: left !important
    }

    .navbar-right {
        float: right !important;
        margin-right: -15px
    }

    .navbar-right ~ .navbar-right {
        margin-right: 0
    }
}

@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
    }
}

@media (max-width: 767px) {
    .navbar-inverse .navbar-nav .open .dropdown-menu > .dropdown-header {
        border-color: #080808
    }

    .navbar-inverse .navbar-nav .open .dropdown-menu .divider {
        background-color: #080808
    }

    .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: #080808
    }

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

@media screen and (min-width: 768px) {
    .jumbotron {
        padding-top: 48px;
        padding-bottom: 48px
    }

    .container .jumbotron, .container-fluid .jumbotron {
        padding-right: 60px;
        padding-left: 60px
    }

    .jumbotron .h1, .jumbotron h1 {
        font-size: 63px
    }
}

@-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
    }
}

@media (min-width: 768px) {
    .modal-dialog {
        width: 600px;
        margin: 30px auto
    }

    .modal-content {
        -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, .5);
        box-shadow: 0 5px 15px rgba(0, 0, 0, .5)
    }

    .modal-sm {
        width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        width: 900px
    }
}

@media all and (transform-3d),(-webkit-transform-3d) {
    .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: 1000px;
        perspective: 1000px
    }

    .carousel-inner > .item.active.right, .carousel-inner > .item.next {
        left: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }

    .carousel-inner > .item.active.left, .carousel-inner > .item.prev {
        left: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }

    .carousel-inner > .item.active, .carousel-inner > .item.next.left, .carousel-inner > .item.prev.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@media screen and (min-width: 768px) {
    .carousel-control .glyphicon-chevron-left, .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next, .carousel-control .icon-prev {
        width: 30px;
        height: 30px;
        margin-top: -10px;
        font-size: 30px
    }

    .carousel-control .glyphicon-chevron-left, .carousel-control .icon-prev {
        margin-left: -10px
    }

    .carousel-control .glyphicon-chevron-right, .carousel-control .icon-next {
        margin-right: -10px
    }

    .carousel-caption {
        right: 20%;
        left: 20%;
        padding-bottom: 30px
    }

    .carousel-indicators {
        bottom: 20px
    }
}

@media (max-width: 767px) {
    .visible-xs {
        display: block !important
    }

    table.visible-xs {
        display: table !important
    }

    tr.visible-xs {
        display: table-row !important
    }

    td.visible-xs, th.visible-xs {
        display: table-cell !important
    }
}

@media (max-width: 767px) {
    .visible-xs-block {
        display: block !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline {
        display: inline !important
    }
}

@media (max-width: 767px) {
    .visible-xs-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm {
        display: block !important
    }

    table.visible-sm {
        display: table !important
    }

    tr.visible-sm {
        display: table-row !important
    }

    td.visible-sm, th.visible-sm {
        display: table-cell !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-block {
        display: block !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline {
        display: inline !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .visible-sm-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md {
        display: block !important
    }

    table.visible-md {
        display: table !important
    }

    tr.visible-md {
        display: table-row !important
    }

    td.visible-md, th.visible-md {
        display: table-cell !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-block {
        display: block !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline {
        display: inline !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .visible-md-inline-block {
        display: inline-block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important
    }

    table.visible-lg {
        display: table !important
    }

    tr.visible-lg {
        display: table-row !important
    }

    td.visible-lg, th.visible-lg {
        display: table-cell !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-block {
        display: block !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline {
        display: inline !important
    }
}

@media (min-width: 1200px) {
    .visible-lg-inline-block {
        display: inline-block !important
    }
}

@media (max-width: 767px) {
    .hidden-xs {
        display: none !important
    }
}

@media (min-width: 768px) and (max-width: 991px) {
    .hidden-sm {
        display: none !important
    }
}

@media (min-width: 992px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important
    }
}

@media print {
    .visible-print {
        display: block !important
    }

    table.visible-print {
        display: table !important
    }

    tr.visible-print {
        display: table-row !important
    }

    td.visible-print, th.visible-print {
        display: table-cell !important
    }
}

@media print {
    .visible-print-block {
        display: block !important
    }
}

@media print {
    .visible-print-inline {
        display: inline !important
    }
}

@media print {
    .visible-print-inline-block {
        display: inline-block !important
    }
}

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

footer #eviews {
    /*display: block !important;*/
    display:flex;
    flex-direction: column;
    flex: 0 0 340px;
    border-right: 2px solid #fff;
    padding-right: 55px;
    color: #fff;
    font: 400 16px RWESansPS
}

.ss {
    margin-top:auto;
}

.ss > span {
    display: block;
    margin-bottom: 15px;
    font-size: 18px;
    font-weight: 500;
}

#frontpage .energiewrapper-directorscut #energiewetter {
    width: calc(100% - 430px - 30px);
    margin-right: 30px;
    float: left;
    padding: 20px 0 50px
}

.energiewrapper-directorscut #energiewetter {
    width: calc(100% - 430px - 30px);
    margin-right: 30px;
    float: left;
    padding: 20px 0 50px
}

.energiewrapper-directorscut #recent-energymix {
    float: right;
    width: 430px;
    background: #e8e8e4;
    padding: 20px 15px;
    display: block;
    height: 100%
}

.energiewrapper-directorscut .energy-headline {
    color: #1d4477;
    font: 500 18px RWESansPS;
    text-align: center;
    display: inline-block;
    width: 100%
}

.energiebox:after {
    content: attr(data-name);
    bottom: -30px;
    display: block;
    color: #fff;
    font: 400 14px/1.2em RWESansPS;
    position: absolute;
    bottom: 0;
    top: auto;
    transform: translateY(100%) translateY(10px);
    left: 0
}

#recent-energymix {
    overflow:hidden;
}
.energiewrapper-directorscut .energiewrapper {
    display: flex;
    width: 100%;
    position: absolute;
    background: repeating-linear-gradient(to bottom, #ddd, #ddd 1px, #fff 1px, #fff 10%);
    bottom: 90px;
    left: 0;
    background-position: top -10px left
}

.energiewrapper-directorscut .energie {
    margin-top: 40px;
    height: 360px;
    position: relative;
    overflow: hidden
}

.energiewrapper-directorscut .energiebox {
    height: 360px
}

#frontpage .energiewrapper-directorscut #energiewetter-header h2 {
    font: 700 24px RWESansPS;
    color: #1d4477;
    margin-bottom: 0
}

.energiewrapper-directorscut #energiewetter-header h2 {
    font: 700 24px RWESansPS;
    color: #fff;
    margin-bottom: 0
}

#frontpage .energiewrapper-directorscut {
    margin: 50px 0
}

footer .energiewrapper-directorscut #energiewetter-header h2 {
    color: #1d4477
}

#frontpage .energiewrapper-directorscut #energiewetter-header {
    border-bottom: 1px solid #ccc;
    padding-bottom: 25px;
    margin-top: 50px
}

.energiewrapper-directorscut #energiewetter-header {
    margin-top: 0
}

#frontpage .energiewrapper-directorscut .timetable {
    color: #000;
    margin-bottom: 0;
    float: right
}

.energiewrapper-directorscut .timetable span {
    font: 500 16px RWESansPS;
    color: #1d4477;
}

.energiewrapper-directorscut .timetable {
    color: #1d4477;
    margin-bottom: 0;
    float: right;
    margin-top: -22px
}

.energiewrapper-directorscut .timetable a {
    color: #1d4477
}

#frontpage .energiewrapper-directorscut .timetable a {
    color: #1d4477
}

#frontpage .energiewrapper-directorscut .energiebox .percentage:before, #frontpage .energiewrapper-directorscut .energiebox:after {
    color: #000
}

.energiewrapper-directorscut .energiebox .percentage:before, .energiewrapper-directorscut .energiebox:after {
    color: #000
}

.energiewrapper-directorscut #energiewetter > strong {
    color: #1d4477
}

.energiewrapper-directorscut .energy-legend {
    display: block;
    text-align: center
}

.energiewrapper-directorscut .energy-legend li {
    display: inline;
    font-size: 14px;
    position: relative;
    margin: 0 10px
}

.energiewrapper-directorscut .energy-legend li:first-of-type:before {
    content: '';
    width: 10px;
    height: 10px;
    background: #3ed8c3;
    top: 50%;
    left: -18px;
    transform: translateY(0);
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px
}

.energiewrapper-directorscut .energy-legend li:last-of-type:before {
    content: '';
    width: 10px;
    height: 10px;
    background: #1d4477;
    top: 50%;
    left: -18px;
    transform: translateY(0);
    display: inline-block;
    border-radius: 50%;
    margin-right: 5px
}

.energiewrapper-directorscut .stretchwrapper {
    justify-content: space-between;
    display: flex;
    align-items: stretch;
    border-toP: none;
    margin-bottom: 50px;
    max-height: 400px;
    justify-content: space-between;
    margin-bottom: 0;
    display: flex;
    align-items: stretch;
    border-top: 1px solid #ccc;
    max-height: 400px;
    justify-content: space-between;
    margin-top: 25px
}

#frontpage .energiewrapper-directorscut .stretchwrapper {
    border-toP: none;
    margin-top: 0;
    overflow: hidden
}

footer .energiewrapper-directorscut .stretchwrapper {
    border-bottom: 0
}

.energiewrapper-directorscut div.bottom {
    display: inline-block;
    position: absolute;
    bottom: 80px;
    left: 4px;
    right: 0;
    margin: auto;
}

.energiewrapper-directorscut div.inner-bottom {
    width: 135px;
    margin: auto;
    transform: translateY(0);
    border-top: 1px solid #ccc;
    padding-top: 5px;
}

.energiewrapper-directorscut .bottom {
    width: 125px;
    text-align: center;
    height: auto;
    width: 100%
}

.energiewrapper-directorscut .inner-bottom > span {
    color: #333;
    font-size: 12px;
    text-align: center;
    display: inline-block;
    width: 100%;
    padding: 0 10px;
}

.energiewrapper-directorscut .inner-bottom {
    border-bottom-right-radius: 90px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 50px;
    border-bottom-right-radius: 50px;
    border-bottom-left-radius: 90px
}


.energiewrapper-directorscut .inner-bottom strong {
    font-size: 16px;
    color: #1d4477;
    display:inline-block;
    width:100%;
}

.energiewrapper-directorscut .test-circle {
    max-width: 300px;
    height: 100%;
    height: 300px
}

.wrapper > footer {
    background: #1d4477;
    width: 100%;
    margin-top: 100px
}

.wrapper > footer .energiewrapper-directorscut #recent-energymix {
    background: #fff
}

#frontpage footer .energiewrapper-directorscut .energiewrapper {
    background: repeating-linear-gradient(to bottom, #ccc, #ccc 1px, #ededed 1px, #ededed 10%)
}

#frontpage footer .footer-flex {
    padding: 0
}

#frontpage.wrapper > footer {
    background: #fff
}

/*#frontpage.wrapper > footer .content-wrapper:not(.footer-info):not(.footerrelaunch) {
    display: none
}*/


#frontpage .energyfooter {
    display: none;
}

footer .energiewrapper-directorscut .energiewrapper {
    background: repeating-linear-gradient(to bottom, #bbb, #bbb 1px, #e8e8e4 1px, #e8e8e4 10%);
    background-position: top -10px left
}

.socialmobile {
    display:none;
}

.content-wrapper .content-wrapper {
    max-width: unset !important;
    width: 100% !important
}

.energiewrapper-directorscut #steinkohle .percentage {
    background: #56585a;
    height: calc(0px)
}

.energiewrapper-directorscut #steinkohle .percentage.animated {
    background: #56585a;
    height: calc(20% * 1.5 - 5px)
}

.energiewrapper-directorscut #braunkohle .percentage {
    background: #9d0d15;
    height: calc(0px)
}

.energiewrapper-directorscut #braunkohle .percentage.animated {
    background: #9d0d15;
    height: calc(20% * 1.5 - 5px)
}

#windenergie .percentage {
    background: #8dceed;
    height: calc(0px)
}

#windenergie .percentage.animated {
    background: #8dceed;
    height: calc(30% * 1.5 - 5px)
}

#kernenergie .percentage {
    background: #f49e00;
    height: calc(0px)
}

#kernenergie .percentage.animated {
    background: #ef7d00;
    background: #ef7d00 !important
}


#solarenergie .percentage.animated {
    background: #7fa2a8;
    background: #7fa2a8 !important
}

#gas .percentage {
    background: #fd0;
    height: calc(0px)
}

#gas .percentage.animated {
    background: #fc0;
    background: #fc0 !important
}

#andere .percentage {
    background: #d9dadb;
    height: calc(0px)
}

#andere .percentage.animated {
    background: #d9dadb;
    height: calc(7% * 1.5 - 5px)
}

#braunkohle {
    border-bottom: 5px solid #9d0d15
}

#steinkohle {
    border-bottom: 5px solid #56585a
}

#windenergie {
    border-bottom: 5px solid #8dceed
}

#kernenergie {
    border-bottom: 5px solid #ef7d00
}

#solarenergie {
    border-bottom: 5px solid #7fa2a8
}

#gas {
    border-bottom: 5px solid #fc0
}

#andere {
    border-bottom: 5px solid #d9dadb
}


.energiewrapper-directorscut .energiebox .percentage {
    background: #d9dadb;
    height: calc(0px)
}

.energiebox {
    height: 200px;
    flex: 1 1 144px;
    padding-bottom: 5px;
    border-bottom: 5px solid #1c9475;
    float: left;
    margin-right: 5px;
    position: relative
}

.restTimer {
    opacity: 0;
    visibility: hidden;
    transition: all 1s
}

#frontpage .energiebox .percentage:before {
    content: attr(data-frontendpercentage)
}

@media screen and (max-width: 1279px) {
    footer .energiewrapper-directorscut .energiewrapper {
        background: 0 0
    }

    .energiewrapper-directorscut .energiebox, .energiewrapper-directorscut .energiebox .percentage {
        height: 40px !important
    }

    .energiewrapper-directorscut .energiebox .percentage {
        top: 0;
        left: 5px;
        height: 15px !important;
        width: 0;
        transition: width 2s
    }

    .energiewrapper-directorscut div.inner-bottom {
        padding-top: 10px;
        width: 173px
    }

    .energiewrapper-directorscut .stretchwrapper {
        max-height: unset;
        height: auto
    }

    .energiewrapper-directorscut .energie {
        height: auto
    }

    .energiewrapper-directorscut .timetable {
        text-align: left
    }

    .energiewrapper-directorscut .energiewrapper {
        flex-direction: column;
        position: relative;
        bottom: auto;
        top: auto;
        left: auto;
        right: auto;
        background: 0 0
    }

    .energiewrapper-directorscut .energiebox {
        flex: auto;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    .energiewrapper-directorscut .energiebox .percentage:before {
        top: -2px;
        bottom: auto;
        right: -40px;
        left: auto;
        width: 30px
    }

    .energiewrapper-directorscut .energiebox:after {
        bottom: 0;
        left: 5px
    }



    .energiewrapper-directorscut #braunkohle .percentage.animated {
        width: calc(70% - 5px)
    }

    .energiewrapper-directorscut #steinkohle {
        border-bottom: 0;
        border-left: 5px solid #56585a
    }

    .energiewrapper-directorscut #steinkohle .percentage.animated {
        width: calc(20% - 5px)
    }


    .energiewrapper-directorscut #kernenergie .percentage.animated {
        width: calc(0% - 5px)
    }



    .energiewrapper-directorscut #wasserkraft .percentage.animated {
        width: calc(0% - 5px)
    }

    .energiewrapper-directorscut #windenergie {
        border-bottom: 0;
        border-left: 5px solid #219bde
    }

    .energiewrapper-directorscut #windenergie .percentage.animated {
        width: calc(30% - 5px)
    }



    .energiewrapper-directorscut #solarenergie .percentage.animated {
        width: calc(3% - 5px)
    }


    .energiewrapper-directorscut #other {
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    .energiewrapper-directorscut #gas .percentage.animated {
        width: calc(7% - 5px)
    }

    .energiewrapper-directorscut #andere {
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    .energiewrapper-directorscut #energiewetter {
        padding: 20px 0 25px
    }

    .energiewrapper-directorscut .test-circle {
        max-width: 400px;
        height: 390px
    }

    .energiewrapper-directorscut div.bottom {
        width: 100%;
        height: 95px;
        bottom: 110px
    }

    .energiewrapper-directorscut .bottom > span {
        margin-bottom: 30px
    }

    footer .energiewrapper-directorscut {
        margin: 30px 0 0;
        padding: 0
    }

    footer .energiewrapper-directorscut #energiewetter {
        margin: 0
    }
}

@media screen and (max-width: 1023px) {
    #frontpage .energiewrapper-directorscut .stretchwrapper {
        overflow: visible
    }

    .energiewrapper-directorscut #energiewetter-header {
        display: flex;
        align-items: center;
        padding-bottom: 10px
    }

    .timetable {
        margin-top: 5px !important;
        margin-left: auto !important
    }

    footer .energiewrapper-directorscut .test-circle {
        max-width: 300px;
        height: 100%
    }

    .energiewrapper-directorscut .energiebox .percentage:before, footer .energiewrapper-directorscut .energiebox:after {
        font-size: 12px
    }

    .energiewrapper-directorscut .bottom > span {
        margin-bottom: 8px
    }

    .energiewrapper-directorscut div.bottom {
        height: 75px;
        width: 100%;
        bottom: 80px;
        left: 4px
    }

    .energiewrapper-directorscut div.inner-bottom {
        width: 130px;
        padding-top: 5px
    }

    .energiewrapper-directorscut .test-circle {
        max-width: 300px;
        height: auto !important
    }

    .energiewrapper-directorscut .stretchwrapper {
        border-bottom: 0;
        flex-wrap: wrap
    }

    .energiewrapper-directorscut #energiewetter-header h2 {
        display: inline-block
    }

    .energiewrapper-directorscut .energie {
        margin-top: 20px
    }

    .energiewrapper-directorscut #energiewetter {
        width: 100%;
        order: 1;
        padding: 20px 0 25px
    }

    .energiewrapper-directorscut #recent-energymix {
        width: 100%;
        order: 2
    }

    #frontpage .energiewrapper-directorscut #energiewetter {
        width: 100%;
        order: 1;
        padding: 20px 0 25px
    }

    #frontpage .energiewrapper-directorscut #recent-energymix {
        width: 100%;
        order: 2
    }
}

@media screen and (max-width: 767px) {
    .energiewrapper-directorscut .energiebox .percentage:before, footer .energiewrapper-directorscut .energiebox:after {
        font-size: 14px
    }

    .energiewrapper-directorscut .energie {
        margin-top: 20px
    }

    .energiewrapper-directorscut #energiewetter {
        padding-bottom: 20px
    }

    .energiewrapper-directorscut .timetable {
        text-align: left;
        float: none;
        display: block;
        margin: 30px 0 -25px
    }

    #frontpage .energiewrapper-directorscut .stretchwrapper {
        margin-top: 20px
    }

    footer .energiewrapper-directorscut .stretchwrapper {
        max-height: unset;
        height: auto
    }

    footer .energiewrapper-directorscut .energie {
        height: auto
    }

    #frontpage .energiewrapper-directorscut .timetable {
        text-align: left;
        float: none;
        display: block;
        margin: 30px 0 0
    }

    #frontpage .energiewrapper-directorscut #energiewetter, footer .energiewrapper-directorscut #energiewetter {
        padding: 0
    }

    .content-wrapper .content-wrapper {
        max-width: unset
    }

    footer .energiewrapper-directorscut .energiewrapper {
        flex-direction: column;
        position: relative;
        bottom: auto;
        top: auto;
        left: auto;
        right: auto;
        background: 0 0
    }

    footer .energiewrapper-directorscut .energiebox {
        flex: auto;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    footer .energiewrapper-directorscut .energiebox .percentage:before {
        top: -2px;
        bottom: auto;
        right: -40px;
        left: auto;
        width: 30px
    }

    footer .energiewrapper-directorscut .energiebox:after {
        bottom: 0;
        left: 5px
    }

    footer .energiewrapper-directorscut .energiebox, footer .energiewrapper-directorscut .energiebox .percentage {
        height: 40px !important
    }

    footer .energiewrapper-directorscut .energiebox .percentage {
        top: 0;
        left: 5px;
        height: 15px !important;
        width: 0;
        transition: width 2s;
        background: #d9dadb
    }



    footer .energiewrapper-directorscut #braunkohle .percentage.animated {
        width: calc(70% - 5px)
    }

    footer .energiewrapper-directorscut #steinkohle {
        border-bottom: 0;
        border-left: 5px solid #56585a
    }

    footer .energiewrapper-directorscut #steinkohle .percentage.animated {
        width: calc(20% - 5px)
    }

    footer .energiewrapper-directorscut #kernenergie {
        border-bottom: 0;
        border-left: 5px solid #bf162b
    }

    footer .energiewrapper-directorscut #kernenergie .percentage.animated {
        width: calc(0% - 5px)
    }



    footer .energiewrapper-directorscut #wasserkraft .percentage.animated {
        width: calc(0% - 5px)
    }

    footer .energiewrapper-directorscut #windenergie {
        border-bottom: 0;
        border-left: 5px solid #219bde
    }

    footer .energiewrapper-directorscut #windenergie .percentage.animated {
        width: calc(30% - 5px)
    }



    footer .energiewrapper-directorscut #solarenergie .percentage.animated {
        width: calc(3% - 5px)
    }

    footer .energiewrapper-directorscut #gas {
        border-bottom: 0;
        border-left: 5px solid #fd0
    }

    footer .energiewrapper-directorscut #other {
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    footer .energiewrapper-directorscut #gas .percentage.animated {
        width: calc(7% - 5px)
    }

    footer .energiewrapper-directorscut #andere {
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    footer .energiewrapper-directorscut #energiewetter {
        padding: 20px 0 25px
    }
}

@media screen and (max-width: 479px) {


    .btn-like-container + .weiterlesen {
        flex: 0 0 100%;
        margin:15px 0 0 !important;
    }

    .btn-like-container + .weiterlesen span{
        margin-left: 0px !important;
    }

    .energiewrapper-directorscut .timetable {
        float: none;
        display: block;
        margin: 10px 0 0
    }

    .energiewrapper-directorscut div.bottom {
        height: 75px;
        width: 100%;
        bottom: 80px;
        left: 0;
        left: 5px
    }

    .energiewrapper-directorscut div.inner-bottom {
        width: 130px;
        width: 120px;
        padding-top: 5px
    }
}

@media screen and (max-width: 420px) {
    .timetable {
        margin-top: 5px !important;
        margin-left: 0 !important
    }

    .energiewrapper-directorscut #energiewetter-header {
        flex-wrap: wrap
    }

    .energiewrapper-directorscut div.bottom {
        bottom: 75px
    }
}

@media screen and (max-width: 399px) {
    .energiewrapper-directorscut div.bottom {
        display: inline-block;
        position: absolute;
        bottom: 60px;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 65px;
        left: 4px
    }

    .energiewrapper-directorscut .bottom {
        height: 60px;
        width: 120px
    }

    .energiewrapper-directorscut .inner-bottom > span:first-of-type {
        font: 700 10px RWESansPS;
        margin-top: 0
    }

    .energiewrapper-directorscut .inner-bottom > span {
        color: #1d4477;
        font-size: 11px;
        display: inline-block;
        text-align: center;
        width: 100%
    }

    .energiewrapper-directorscut .inner-bottom strong {
        font-size: 14px
    }

    .energiewrapper-directorscut div.inner-bottom {
        width: 100px;
        padding-top: 3px
    }

    .energiewrapper-directorscut .bottom > span {
        font-size: 10px
    }
}

@media screen and (max-width: 380px) {
    text.svgtext {
        display: block;
        transform: translateY(-10px);
        font-size: 17px
    }

    .energiewrapper-directorscut div.bottom {
        bottom: 80px;
        left: 4px
    }
}

@media screen and (max-width: 360px) {
    text.svgtext {
        display: block;
        transform: translateY(-10px);
        font-size: 14px
    }

    .energiewrapper-directorscut div.bottom {
        bottom: 70px;
        left: 4px
    }

    .energiewrapper-directorscut .bottom > span {
        margin-bottom: 10px
    }
}

@media screen and (max-width: 340px) {
    .energiewrapper-directorscut div.bottom {
        bottom: 60px;
        left: 4px
    }

    .energiewrapper-directorscut .bottom > span {
        margin-bottom: 8px
    }
}

@media screen and (max-width: 320px) {
    .energiewrapper-directorscut div.bottom {
        bottom: 50px
    }

    .energiewrapper-directorscut .energy-legend li {
        display: inline-block
    }
}

@media screen and (min-width: 1280px) {
    footer .energiewrapper-directorscut #energiewetter-header h2 {
        font-size: 32px
    }
}

.energiewrapper-directorscut .charttest {
    height: 450px;
    width: 100%;
    padding: 30px 0
}

#frontpage.wrapper > footer, .wrapper > footer {
    background: #1d4477;
    background-image: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
}

footer #eviews > img {
    width: 250px;
    margin-bottom: 15px;
    margin-top: -5px;
    height:45px;
}

.footerrelaunch .flex-wrapper {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 60px 0;
    min-height: 350px
}

.footerrelaunch .flex-wrapper ul li a.weiterlesen {
    color: #3ed8c3;
    font-size: 20px;
    font-weight: 400;
    margin-top: 0;
    transform: none;
}

.footerrelaunch .flex-wrapper ul li a.weiterlesen:hover {
    color: #ffffff;
}

.footerrelaunch .flex-wrapper > div:not(#eviews) ul li:nth-of-type(2n) {
    margin: 10px 0
}



.footerrelaunch .flex-wrapper ul li a > span {
    color: #fff;
    font-size: 12px;
    padding-right: 1px
}

.footerrelaunch .flex-wrapper .weiterlesen {
    color: #3ed8c3;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 500
}

.footerrelaunch .flex-wrapper > div {
    flex: 0 0 25% !important;
    color: #fff;
    font-size: 16px;
    /*display: inline-flex;*/
    flex-wrap: wrap;
    align-items: flex-start;
}


.footerrelaunch div#eviews + div {
    padding-left: 50px
}

.footerrelaunch div#eviews ~ div {
    padding-top: 65px;
    padding-bottom: 65px
}

.footerrelaunch div#eviews ~ div:last-of-type {
    padding-right: 55px
}

.footerrelaunch div#eviews + div + div {
    flex: 0 0 calc(25% - 50px) !important;
    padding-left: 40px
}

.enformer-newsletter {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 15px
}

.enformer-newsletter ~ .rwebutton-full {
    margin-top: 15px;
}

.enformer-newsletter > span {
    font-size: 30px;
    font-weight: 700;
    display: inline-block;
    margin-left: 15px
}

.ss .socialbutton:last-of-type {
    margin-right:0px;
}

.ss {
    font-size:0px;
}

.socialbutton {
    width: 40px;
    height: 39px;
    border: 2px solid #3ed8c3;
    border-radius: 5px;
    padding: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition:0.3s;
    margin:0px 10px 5px 0;

}

.socialbutton a{
    color:#ffffff;
    line-height: 1em;
    font-size: 27px;
    height: 1em;
}
.socialbutton:hover a{
    color:#ffffff;
}
.socialbutton:hover {
    background:#3ed8c3;
    cursor:pointer;
}

.icon-wrapper {
    width: 60px;
    height: 60px;
    background: #3ed8c3;;
    display: flex;
    align-items: center;
    border-radius: 5px;
    justify-content: center
}

.icon-wrapper > span {
    font-size: 26px;
    height: 1em;
    line-height: 1
}

.newsletterbox-responsive-outer {
    padding-bottom: 0
}

.newsletterbox-responsive-outer .icon-wrapper ,.contactbox-responsive-outer .icon-wrapper {
    flex: 0 0 50px;
    width: 50px;
    color: #fff;
    height: 50px
}


.realfooter {
    background-image: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
}

.energyfooter + .realfooter .content-wrapper.footerrelaunch a.scrolltop {
    display: none
}

.energyfooter {
    background: #e8e8e4
}

.contactbox.newsletter {
    margin:50px 0;
    background: #3ed8c3;
    background: #3ed8c3;
    color: #fff;
    padding: 30px;
    min-height: auto;
    min-height: unset;
    position: relative
}

.contactbox .icon-wrapper {
    position: absolute;
    top: -40px;
    width: 78px;
    height: 78px;
    font-size: 50px;
}

.contactbox .icon-wrapper > span {
    font-size:45px;
    color:#ffffff;
}

.contactbox.newsletter img {
    right: 0;
    top: -15px
}

.contactbox.newsletter h3 {
    color: #fff;
    font-size: 30px
}

.contactbox.newsletter p {
    color: #fff
}

.rwebutton {
    align-items: center;
    width: auto;
    height: auto;
    line-height: 1em;
    font-weight: 500 !important;
    text-decoration: none;
    transition: all .3s;
    color: #00a19f;
    border-radius: 5px;
    text-align: center;
    padding: .75rem 1.5rem;
    justify-content: center;
    display: inline-blocK;
}

.rwebutton-darker {
    width: auto;
    height: auto;
    font: 500 16px/1.5em RWESansPS;
    line-height: 1em;
    background: #e8e8e4;
    text-decoration: none;
    transition: all .3s;
    background-color: #3ed8c3;
    color: #fff;
    border: #3ed8c3;
    border-radius: 5px;
    vertical-align: middle;
    font-size: 18px;
    display: inline-flex;
    align-items: center;
    padding: .75rem 1.5rem;
    justify-content:center;
}

.rwebutton-darker:hover {
   /* color: #fff;
    background: #3ed8c3;*/
    background-color: #3ea2c3;
    coloR: #ffffff;
}
.rwebutton-darker:hover  > span{
    transform:translateX(5px);

}

.rwebutton-full {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding: .75rem 1.5rem;
    transition: background-color .3s ease-in-out;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: RWESansPS;
    font-size: 1rem;
    line-height: 1;
    border: none;
    background-color: #3ed8c3;
    color: #fff;
    border: #3ed8c3;
    font-weight: 700;
}

.rwebutton-full:hover {
    background-color: #3ea2c3;
    coloR: #ffffff;
}

.buttonwhite {
    background-color: #ffffff;
    border: 2px solid #3ed8c3;
}

.rwebutton.buttonfullwidth, .buttonfullwidth {
    display: flex;
}

#prev a,#next a {
    color: inherit;
    border-bottom: 2px solid #3ed8c3;
}

#prev:hover {
    transform: rotate(-90deg) translateX(50%) scale(1.2);
}

#next:hover {
    transform: rotate(90deg) translateX(-50%) scale(1.2);
}

#prev,#next {
    position: fixed;
    font-size: 14px;
    font-weight: 700;
    transform: rotate(-90deg) translateX(50%);
    top: 50%;
    left: 20px;
    color: rgb(26, 76, 122);
    backface-visibility: hidden;
    background: rgb(255, 255, 255);
    border-radius: 5px;
    padding: 10px;
    transition: all 0.3s ease 0s;
}

#next {
    transform: rotate(90deg) translateX(-50%);
    left: auto;
    right: 20px;
}

.contactbox.newsletter .entirebox:hover ~ .rwebutton {
    background-color: #00a19f;
    border-color: #00a19f;
    color: #ffffff;
}

.rwebutton:hover {
    background-color: #00a19f !important;
    border-color: #00a19f;
    color: #ffffff !important;
}

div.form {
    font-weight: normal !important;
    font-family: RWESansPS;
    font-weight: normal !important
}

div.form .form_border {
    border: none !important;
    padding: 0 0 !important;
    width: 100%
}

div.form .form_border > div > div {
    display: flex;
    align-items: center;
    margin-bottom: 20px
}

#privacypolicy > label {
    width: 100%;
    color: #383838;
    font-size: 13px;
    margin-left: 12px;
    display: flex
}

#privacypolicy > label > input {
    margin-right: 15px
}

div.form .form_border input[type=radio] {
    min-height: unset;
    min-height: 16px
}

input#captcha {
    flex: 1 1 200px;
    margin: 0 15px
}

#captcha_form > span {
    display: flex;
    align-items: center
}

input.wpcf7-form-control.wpcf7-submit.form_button_submit {
    margin: 0
}

div.form_border ul li > input, div.form_border ul li > select, div.form_border ul li > textarea {
    font: 16px RWESansPS !important;
    min-height: 40px;
    padding-left: 15px;
    font-size: 16px !important;
    /* color: #333;*/
    background: #fff;
    width: 100%;
    font-weight:500 !important;
}

div.form_border ul li {
    margin-bottom: 20px;
    display: flex;
    flex-wrap:wrap;
    align-items: center
}

div.form_border .privacy label {
    width: 100%;
    display: flex
}

div.form_border .privacy label > input {
    margin-right: 15px
}

div.form_border .privacy label > span {
    color: #383838;
    font-size: 13px
}

form li:before {
    content: none !important
}

@media screen and (max-width: 1279px) {

    .articlecounter span {
        font-size:14px;
    }

    .footerrelaunch .flex-wrapper {
        flex-wrap: wrap
    }

    .footerrelaunch .flex-wrapper > div {
        flex: 0 0 100% !important;
        padding: 0 55px 0 !important
    }

    .footerrelaunch div#eviews ~ div:nth-of-type(3), .footerrelaunch div#eviews ~ div:nth-of-type(4) {
        flex: 0 0 50% !important
    }

    .footerrelaunch div#eviews {
        border: none
    }

    .footerrelaunch div#eviews + div {
        border-bottom: 2px solid #fff;
        margin-bottom: 25px;
        padding-bottom: 25px !important
    }
}

@media screen and (max-width: 767px) {
    .newsletterbox-responsive-wrapper {
        top: 300px
    }

    div.form_border ul li {
        flex-wrap: wrap
    }

    div.form_border label {
        margin-right: 0
    }

    div.form_border li > span {
        flex: 0 0 50%;
        align-items: center;
        justify-content: space-between;
        text-align: center
    }

    .contactbox {
        padding: 35px 30px 30px
    }
}

@media screen and (max-width: 639px) {




    .footerrelaunch div#eviews ~ div:nth-of-type(3) {
        display: none
    }

    .footerrelaunch div#eviews ~ div:nth-of-type(4) {
        flex: 0 0 100% !important
    }
}


*, ::after, ::before {
    box-sizing: border-box
}

article, aside, dialog, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block
}

[tabindex="-1"]:focus {
    outline: 0
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem
}

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 1rem
}

dfn {
    font-style: italic
}

b, strong {
    font-weight: bolder
}

small {
    font-size: 85%
}

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

sub {
    bottom: -.25em
}

sup {
    top: -.5em
}

a:hover {
    text-decoration: underline;
    color: #3ed8c3;
    text-decoration: none
}

a:not([href]):not([tabindex]) {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus, a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none
}

a:not([href]):not([tabindex]):focus {
    outline: 0
}

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

button {
    border-radius: 0
}

button:focus {
    outline: 5px
}

button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit
}

button, input {
    overflow: visible
}

button, select {
    text-transform: none
}

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

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

input[type=date], input[type=datetime-local], input[type=month], input[type=time] {
    -webkit-appearance: listbox
}

textarea {
    overflow: auto;
    resize: vertical
}

progress {
    vertical-align: baseline
}

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

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

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

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

summary {
    display: list-item;
    cursor: pointer
}

template {
    display: none
}

[hidden] {
    display: none !important
}

.display-1 {
    font-size: 6rem;
    font-weight: 300;
    line-height: 1.2
}

.display-2 {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-3 {
    font-size: 4.5rem;
    font-weight: 300;
    line-height: 1.2
}

.display-4 {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2
}

.list-inline-item {
    display: inline-block
}

.list-inline-item:not(:last-child) {
    margin-right: .5rem
}

.blockquote {
    margin-bottom: 1rem;
    font-size: 1.25rem
}

.blockquote-footer {
    display: block;
    font-size: 80%;
    color: #6c757d
}

.blockquote-footer::before {
    content: "\2014 \A0"
}

.img-fluid {
    max-width: 100%;
    height: auto
}

.figure {
    display: inline-block
}

.figure-img {
    margin-bottom: .5rem;
    line-height: 1
}

.figure-caption {
    font-size: 90%;
    color: #6c757d
}

a > code {
    color: inherit
}

@media (min-width: 576px) {
    .container {
        max-width: 540px
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 720px
    }
}

@media (min-width: 992px) {
    .container {
        max-width: 960px
    }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1140px
    }
}

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

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

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

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%
}

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

.col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%
}

.col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%
}

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

.col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%
}

.col-5 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%
}

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

.col-7 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%
}

.col-8 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%
}

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

.col-10 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%
}

.col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%
}

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

.order-first {
    -webkit-box-ordinal-group: 0;
    -ms-flex-order: -1;
    order: -1
}

.order-last {
    -webkit-box-ordinal-group: 14;
    -ms-flex-order: 13;
    order: 13
}

.order-0 {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0
}

.order-1 {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1
}

.order-2 {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2
}

.order-3 {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3
}

.order-4 {
    -webkit-box-ordinal-group: 5;
    -ms-flex-order: 4;
    order: 4
}

.order-5 {
    -webkit-box-ordinal-group: 6;
    -ms-flex-order: 5;
    order: 5
}

.order-6 {
    -webkit-box-ordinal-group: 7;
    -ms-flex-order: 6;
    order: 6
}

.order-7 {
    -webkit-box-ordinal-group: 8;
    -ms-flex-order: 7;
    order: 7
}

.order-8 {
    -webkit-box-ordinal-group: 9;
    -ms-flex-order: 8;
    order: 8
}

.order-9 {
    -webkit-box-ordinal-group: 10;
    -ms-flex-order: 9;
    order: 9
}

.order-10 {
    -webkit-box-ordinal-group: 11;
    -ms-flex-order: 10;
    order: 10
}

.order-11 {
    -webkit-box-ordinal-group: 12;
    -ms-flex-order: 11;
    order: 11
}

.order-12 {
    -webkit-box-ordinal-group: 13;
    -ms-flex-order: 12;
    order: 12
}

.offset-1 {
    margin-left: 8.333333%
}

.offset-2 {
    margin-left: 16.666667%
}

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

.offset-4 {
    margin-left: 33.333333%
}

.offset-5 {
    margin-left: 41.666667%
}

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

.offset-7 {
    margin-left: 58.333333%
}

.offset-8 {
    margin-left: 66.666667%
}

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

.offset-10 {
    margin-left: 83.333333%
}

.offset-11 {
    margin-left: 91.666667%
}

@media (min-width: 576px) {
    .col-sm {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-sm-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-sm-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-sm-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-sm-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-sm-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-sm-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-sm-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-sm-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-sm-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-sm-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-sm-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-sm-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-sm-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-sm-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-sm-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-sm-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-sm-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-sm-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-sm-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-sm-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-sm-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-sm-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-sm-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-sm-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-sm-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-sm-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-sm-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-sm-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-sm-0 {
        margin-left: 0
    }

    .offset-sm-1 {
        margin-left: 8.333333%
    }

    .offset-sm-2 {
        margin-left: 16.666667%
    }

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

    .offset-sm-4 {
        margin-left: 33.333333%
    }

    .offset-sm-5 {
        margin-left: 41.666667%
    }

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

    .offset-sm-7 {
        margin-left: 58.333333%
    }

    .offset-sm-8 {
        margin-left: 66.666667%
    }

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

    .offset-sm-10 {
        margin-left: 83.333333%
    }

    .offset-sm-11 {
        margin-left: 91.666667%
    }
}

@media (min-width: 768px) {
    .col-md {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-md-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-md-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-md-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-md-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-md-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-md-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-md-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-md-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-md-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-md-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-md-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-md-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-md-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-md-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-md-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-md-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-md-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-md-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-md-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-md-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-md-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-md-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-md-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-md-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-md-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-md-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-md-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-md-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-md-0 {
        margin-left: 0
    }

    .offset-md-1 {
        margin-left: 8.333333%
    }

    .offset-md-2 {
        margin-left: 16.666667%
    }

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

    .offset-md-4 {
        margin-left: 33.333333%
    }

    .offset-md-5 {
        margin-left: 41.666667%
    }

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

    .offset-md-7 {
        margin-left: 58.333333%
    }

    .offset-md-8 {
        margin-left: 66.666667%
    }

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

    .offset-md-10 {
        margin-left: 83.333333%
    }

    .offset-md-11 {
        margin-left: 91.666667%
    }
}

@media (min-width: 992px) {
    .col-lg {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-lg-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-lg-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-lg-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-lg-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-lg-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-lg-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-lg-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-lg-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-lg-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-lg-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-lg-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-lg-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-lg-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-lg-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-lg-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-lg-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-lg-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-lg-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-lg-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-lg-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-lg-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-lg-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-lg-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-lg-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-lg-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-lg-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-lg-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-lg-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-lg-0 {
        margin-left: 0
    }

    .offset-lg-1 {
        margin-left: 8.333333%
    }

    .offset-lg-2 {
        margin-left: 16.666667%
    }

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

    .offset-lg-4 {
        margin-left: 33.333333%
    }

    .offset-lg-5 {
        margin-left: 41.666667%
    }

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

    .offset-lg-7 {
        margin-left: 58.333333%
    }

    .offset-lg-8 {
        margin-left: 66.666667%
    }

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

    .offset-lg-10 {
        margin-left: 83.333333%
    }

    .offset-lg-11 {
        margin-left: 91.666667%
    }
}

@media (min-width: 1200px) {
    .col-xl {
        -ms-flex-preferred-size: 0;
        flex-basis: 0;
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        max-width: 100%
    }

    .col-xl-auto {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        width: auto;
        max-width: none
    }

    .col-xl-1 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 8.333333%;
        flex: 0 0 8.333333%;
        max-width: 8.333333%
    }

    .col-xl-2 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 16.666667%;
        flex: 0 0 16.666667%;
        max-width: 16.666667%
    }

    .col-xl-3 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%
    }

    .col-xl-4 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 33.333333%;
        flex: 0 0 33.333333%;
        max-width: 33.333333%
    }

    .col-xl-5 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 41.666667%;
        flex: 0 0 41.666667%;
        max-width: 41.666667%
    }

    .col-xl-6 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 50%
    }

    .col-xl-7 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 58.333333%;
        flex: 0 0 58.333333%;
        max-width: 58.333333%
    }

    .col-xl-8 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
        flex: 0 0 66.666667%;
        max-width: 66.666667%
    }

    .col-xl-9 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%
    }

    .col-xl-10 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 83.333333%;
        flex: 0 0 83.333333%;
        max-width: 83.333333%
    }

    .col-xl-11 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 91.666667%;
        flex: 0 0 91.666667%;
        max-width: 91.666667%
    }

    .col-xl-12 {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
        flex: 0 0 100%;
        max-width: 100%
    }

    .order-xl-first {
        -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
        order: -1
    }

    .order-xl-last {
        -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
        order: 13
    }

    .order-xl-0 {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .order-xl-1 {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .order-xl-2 {
        -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
        order: 2
    }

    .order-xl-3 {
        -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
        order: 3
    }

    .order-xl-4 {
        -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
        order: 4
    }

    .order-xl-5 {
        -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
        order: 5
    }

    .order-xl-6 {
        -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
        order: 6
    }

    .order-xl-7 {
        -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
        order: 7
    }

    .order-xl-8 {
        -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
        order: 8
    }

    .order-xl-9 {
        -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
        order: 9
    }

    .order-xl-10 {
        -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
        order: 10
    }

    .order-xl-11 {
        -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
        order: 11
    }

    .order-xl-12 {
        -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
        order: 12
    }

    .offset-xl-0 {
        margin-left: 0
    }

    .offset-xl-1 {
        margin-left: 8.333333%
    }

    .offset-xl-2 {
        margin-left: 16.666667%
    }

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

    .offset-xl-4 {
        margin-left: 33.333333%
    }

    .offset-xl-5 {
        margin-left: 41.666667%
    }

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

    .offset-xl-7 {
        margin-left: 58.333333%
    }

    .offset-xl-8 {
        margin-left: 66.666667%
    }

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

    .offset-xl-10 {
        margin-left: 83.333333%
    }

    .offset-xl-11 {
        margin-left: 91.666667%
    }
}

.table td, .table th {
    padding: .75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6
}

.table-sm td, .table-sm th {
    padding: .3rem
}

.table-bordered td, .table-bordered th {
    border: 1px solid #dee2e6
}

.table-bordered thead td, .table-bordered thead th {
    border-bottom-width: 2px
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, .05)
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, .075)
}

.table-primary, .table-primary > td, .table-primary > th {
    background-color: #b8daff
}

.table-hover .table-primary:hover {
    background-color: #9fcdff
}

.table-hover .table-primary:hover > td, .table-hover .table-primary:hover > th {
    background-color: #9fcdff
}

.table-secondary, .table-secondary > td, .table-secondary > th {
    background-color: #d6d8db
}

.table-hover .table-secondary:hover {
    background-color: #c8cbcf
}

.table-hover .table-secondary:hover > td, .table-hover .table-secondary:hover > th {
    background-color: #c8cbcf
}

.table-success, .table-success > td, .table-success > th {
    background-color: #c3e6cb
}

.table-hover .table-success:hover {
    background-color: #b1dfbb
}

.table-hover .table-success:hover > td, .table-hover .table-success:hover > th {
    background-color: #b1dfbb
}

.table-info, .table-info > td, .table-info > th {
    background-color: #bee5eb
}

.table-hover .table-info:hover {
    background-color: #abdde5
}

.table-hover .table-info:hover > td, .table-hover .table-info:hover > th {
    background-color: #abdde5
}

.table-warning, .table-warning > td, .table-warning > th {
    background-color: #ffeeba
}

.table-hover .table-warning:hover {
    background-color: #ffe8a1
}

.table-hover .table-warning:hover > td, .table-hover .table-warning:hover > th {
    background-color: #ffe8a1
}

.table-danger, .table-danger > td, .table-danger > th {
    background-color: #f5c6cb
}

.table-hover .table-danger:hover {
    background-color: #f1b0b7
}

.table-hover .table-danger:hover > td, .table-hover .table-danger:hover > th {
    background-color: #f1b0b7
}

.table-light, .table-light > td, .table-light > th {
    background-color: #fdfdfe
}

.table-hover .table-light:hover {
    background-color: #ececf6
}

.table-hover .table-light:hover > td, .table-hover .table-light:hover > th {
    background-color: #ececf6
}

.table-dark, .table-dark > td, .table-dark > th {
    background-color: #c6c8ca
}

.table-hover .table-dark:hover {
    background-color: #b9bbbe
}

.table-hover .table-dark:hover > td, .table-hover .table-dark:hover > th {
    background-color: #b9bbbe
}

.table-active, .table-active > td, .table-active > th {
    background-color: rgba(0, 0, 0, .075)
}

.table-hover .table-active:hover {
    background-color: rgba(0, 0, 0, .075)
}

.table-hover .table-active:hover > td, .table-hover .table-active:hover > th {
    background-color: rgba(0, 0, 0, .075)
}

.table .thead-dark th {
    color: #fff;
    background-color: #212529;
    border-color: #32383e
}

.table .thead-light th {
    color: #495057;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.table-dark {
    color: #fff;
    background-color: #212529
}

.table-dark td, .table-dark th, .table-dark thead th {
    border-color: #32383e
}

.table-dark.table-bordered {
    border: 0
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(255, 255, 255, .05)
}

.table-dark.table-hover tbody tr:hover {
    background-color: rgba(255, 255, 255, .075)
}

@media (max-width: 565px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .table-responsive-sm > .table-bordered {
        border: 0
    }
}

@media (max-width: 768px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .table-responsive-md > .table-bordered {
        border: 0
    }
}

@media (max-width: 992px) {
    .table-responsive-lg {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .table-responsive-lg > .table-bordered {
        border: 0
    }
}

@media (max-width: 1200px) {
    .table-responsive-xl {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar
    }

    .table-responsive-xl > .table-bordered {
        border: 0
    }
}

.table-responsive > .table-bordered {
    border: 0
}

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

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


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

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

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

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

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

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

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

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

.form-control-plaintext.form-control-lg, .form-control-plaintext.form-control-sm, .input-group-lg > .form-control-plaintext.form-control, .input-group-lg > .input-group-append > .form-control-plaintext.btn, .input-group-lg > .input-group-append > .form-control-plaintext.input-group-text, .input-group-lg > .input-group-prepend > .form-control-plaintext.btn, .input-group-lg > .input-group-prepend > .form-control-plaintext.input-group-text, .input-group-sm > .form-control-plaintext.form-control, .input-group-sm > .input-group-append > .form-control-plaintext.btn, .input-group-sm > .input-group-append > .form-control-plaintext.input-group-text, .input-group-sm > .input-group-prepend > .form-control-plaintext.btn, .input-group-sm > .input-group-prepend > .form-control-plaintext.input-group-text {
    padding-right: 0;
    padding-left: 0
}

.form-control-sm, .input-group-sm > .form-control, .input-group-sm > .input-group-append > .btn, .input-group-sm > .input-group-append > .input-group-text, .input-group-sm > .input-group-prepend > .btn, .input-group-sm > .input-group-prepend > .input-group-text {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.input-group-sm > .input-group-append > select.btn:not([size]):not([multiple]), .input-group-sm > .input-group-append > select.input-group-text:not([size]):not([multiple]), .input-group-sm > .input-group-prepend > select.btn:not([size]):not([multiple]), .input-group-sm > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), .input-group-sm > select.form-control:not([size]):not([multiple]), select.form-control-sm:not([size]):not([multiple]) {
    height: calc(1.8125rem + 2px)
}

.form-control-lg, .input-group-lg > .form-control, .input-group-lg > .input-group-append > .btn, .input-group-lg > .input-group-append > .input-group-text, .input-group-lg > .input-group-prepend > .btn, .input-group-lg > .input-group-prepend > .input-group-text {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

.input-group-lg > .input-group-append > select.btn:not([size]):not([multiple]), .input-group-lg > .input-group-append > select.input-group-text:not([size]):not([multiple]), .input-group-lg > .input-group-prepend > select.btn:not([size]):not([multiple]), .input-group-lg > .input-group-prepend > select.input-group-text:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), select.form-control-lg:not([size]):not([multiple]) {
    height: calc(2.875rem + 2px)
}

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

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

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

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

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

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

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

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

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

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

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

.custom-select.is-valid, .form-control.is-valid, .was-validated .custom-select:valid, .was-validated .form-control:valid {
    border-color: #28a745
}

.custom-select.is-valid:focus, .form-control.is-valid:focus, .was-validated .custom-select:valid:focus, .was-validated .form-control:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.custom-select.is-valid ~ .valid-feedback, .custom-select.is-valid ~ .valid-tooltip, .form-control.is-valid ~ .valid-feedback, .form-control.is-valid ~ .valid-tooltip, .was-validated .custom-select:valid ~ .valid-feedback, .was-validated .custom-select:valid ~ .valid-tooltip, .was-validated .form-control:valid ~ .valid-feedback, .was-validated .form-control:valid ~ .valid-tooltip {
    display: block
}

.form-check-input.is-valid ~ .form-check-label, .was-validated .form-check-input:valid ~ .form-check-label {
    color: #28a745
}

.form-check-input.is-valid ~ .valid-feedback, .form-check-input.is-valid ~ .valid-tooltip, .was-validated .form-check-input:valid ~ .valid-feedback, .was-validated .form-check-input:valid ~ .valid-tooltip {
    display: block
}

.custom-control-input.is-valid ~ .custom-control-label, .was-validated .custom-control-input:valid ~ .custom-control-label {
    color: #28a745
}

.custom-control-input.is-valid ~ .custom-control-label::before, .was-validated .custom-control-input:valid ~ .custom-control-label::before {
    background-color: #71dd8a
}

.custom-control-input.is-valid ~ .valid-feedback, .custom-control-input.is-valid ~ .valid-tooltip, .was-validated .custom-control-input:valid ~ .valid-feedback, .was-validated .custom-control-input:valid ~ .valid-tooltip {
    display: block
}

.custom-control-input.is-valid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:valid:checked ~ .custom-control-label::before {
    background-color: #34ce57
}

.custom-control-input.is-valid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:valid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.custom-file-input.is-valid ~ .custom-file-label, .was-validated .custom-file-input:valid ~ .custom-file-label {
    border-color: #28a745
}

.custom-file-input.is-valid ~ .custom-file-label::before, .was-validated .custom-file-input:valid ~ .custom-file-label::before {
    border-color: inherit
}

.custom-file-input.is-valid ~ .valid-feedback, .custom-file-input.is-valid ~ .valid-tooltip, .was-validated .custom-file-input:valid ~ .valid-feedback, .was-validated .custom-file-input:valid ~ .valid-tooltip {
    display: block
}

.custom-file-input.is-valid:focus ~ .custom-file-label, .was-validated .custom-file-input:valid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

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

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

.custom-select.is-invalid, .form-control.is-invalid, .was-validated .custom-select:invalid, .was-validated .form-control:invalid {
    border-color: #dc3545
}

.custom-select.is-invalid:focus, .form-control.is-invalid:focus, .was-validated .custom-select:invalid:focus, .was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.custom-select.is-invalid ~ .invalid-feedback, .custom-select.is-invalid ~ .invalid-tooltip, .form-control.is-invalid ~ .invalid-feedback, .form-control.is-invalid ~ .invalid-tooltip, .was-validated .custom-select:invalid ~ .invalid-feedback, .was-validated .custom-select:invalid ~ .invalid-tooltip, .was-validated .form-control:invalid ~ .invalid-feedback, .was-validated .form-control:invalid ~ .invalid-tooltip {
    display: block
}

.form-check-input.is-invalid ~ .form-check-label, .was-validated .form-check-input:invalid ~ .form-check-label {
    color: #dc3545
}

.form-check-input.is-invalid ~ .invalid-feedback, .form-check-input.is-invalid ~ .invalid-tooltip, .was-validated .form-check-input:invalid ~ .invalid-feedback, .was-validated .form-check-input:invalid ~ .invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid ~ .custom-control-label, .was-validated .custom-control-input:invalid ~ .custom-control-label {
    color: #dc3545
}

.custom-control-input.is-invalid ~ .custom-control-label::before, .was-validated .custom-control-input:invalid ~ .custom-control-label::before {
    background-color: #efa2a9
}

.custom-control-input.is-invalid ~ .invalid-feedback, .custom-control-input.is-invalid ~ .invalid-tooltip, .was-validated .custom-control-input:invalid ~ .invalid-feedback, .was-validated .custom-control-input:invalid ~ .invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid:checked ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before {
    background-color: #e4606d
}

.custom-control-input.is-invalid:focus ~ .custom-control-label::before, .was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.custom-file-input.is-invalid ~ .custom-file-label, .was-validated .custom-file-input:invalid ~ .custom-file-label {
    border-color: #dc3545
}

.custom-file-input.is-invalid ~ .custom-file-label::before, .was-validated .custom-file-input:invalid ~ .custom-file-label::before {
    border-color: inherit
}

.custom-file-input.is-invalid ~ .invalid-feedback, .custom-file-input.is-invalid ~ .invalid-tooltip, .was-validated .custom-file-input:invalid ~ .invalid-feedback, .was-validated .custom-file-input:invalid ~ .invalid-tooltip {
    display: block
}

.custom-file-input.is-invalid:focus ~ .custom-file-label, .was-validated .custom-file-input:invalid:focus ~ .custom-file-label {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.form-inline {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

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

@media (min-width: 576px) {
    .form-inline label {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0
    }

    .form-inline .form-group {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }

    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }

    .form-inline .form-control-plaintext {
        display: inline-block
    }

    .form-inline .input-group {
        width: auto
    }

    .form-inline .form-check {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0
    }

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

    .form-inline .custom-control {
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .form-inline .custom-control-label {
        margin-bottom: 0
    }
}

.btn:focus, .btn:hover {
    text-decoration: none
}

.btn.focus, .btn:focus {
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.btn.disabled, .btn:disabled {
    opacity: .65
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer
}

.btn:not(:disabled):not(.disabled).active, .btn:not(:disabled):not(.disabled):active {
    background-image: none
}

a.btn.disabled, fieldset:disabled a.btn {
    pointer-events: none
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-primary:not(:disabled):not(.disabled).active, .btn-primary:not(:disabled):not(.disabled):active, .show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf
}

.btn-primary:not(:disabled):not(.disabled).active:focus, .btn-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-secondary {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:hover {
    color: #fff;
    background-color: #5a6268;
    border-color: #545b62
}

.btn-secondary.focus, .btn-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-secondary.disabled, .btn-secondary:disabled {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-secondary:not(:disabled):not(.disabled).active, .btn-secondary:not(:disabled):not(.disabled):active, .show > .btn-secondary.dropdown-toggle {
    color: #fff;
    background-color: #545b62;
    border-color: #4e555b
}

.btn-secondary:not(:disabled):not(.disabled).active:focus, .btn-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-success:not(:disabled):not(.disabled).active, .btn-success:not(:disabled):not(.disabled):active, .show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430
}

.btn-success:not(:disabled):not(.disabled).active:focus, .btn-success:not(:disabled):not(.disabled):active:focus, .show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.btn-info.disabled, .btn-info:disabled {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-info:not(:disabled):not(.disabled).active, .btn-info:not(:disabled):not(.disabled):active, .show > .btn-info.dropdown-toggle {
    color: #fff;
    background-color: #117a8b;
    border-color: #10707f
}

.btn-info:not(:disabled):not(.disabled).active:focus, .btn-info:not(:disabled):not(.disabled):active:focus, .show > .btn-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-warning.disabled, .btn-warning:disabled {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-warning:not(:disabled):not(.disabled).active, .btn-warning:not(:disabled):not(.disabled):active, .show > .btn-warning.dropdown-toggle {
    color: #212529;
    background-color: #d39e00;
    border-color: #c69500
}

.btn-warning:not(:disabled):not(.disabled).active:focus, .btn-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.btn-danger.disabled, .btn-danger:disabled {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-danger:not(:disabled):not(.disabled).active, .btn-danger:not(:disabled):not(.disabled):active, .show > .btn-danger.dropdown-toggle {
    color: #fff;
    background-color: #bd2130;
    border-color: #b21f2d
}

.btn-danger:not(:disabled):not(.disabled).active:focus, .btn-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.btn-light {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:hover {
    color: #212529;
    background-color: #e2e6ea;
    border-color: #dae0e5
}

.btn-light.focus, .btn-light:focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-light.disabled, .btn-light:disabled {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-light:not(:disabled):not(.disabled).active, .btn-light:not(:disabled):not(.disabled):active, .show > .btn-light.dropdown-toggle {
    color: #212529;
    background-color: #dae0e5;
    border-color: #d3d9df
}

.btn-light:not(:disabled):not(.disabled).active:focus, .btn-light:not(:disabled):not(.disabled):active:focus, .show > .btn-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-dark {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:hover {
    color: #fff;
    background-color: #23272b;
    border-color: #1d2124
}

.btn-dark.focus, .btn-dark:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-dark.disabled, .btn-dark:disabled {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-dark:not(:disabled):not(.disabled).active, .btn-dark:not(:disabled):not(.disabled):active, .show > .btn-dark.dropdown-toggle {
    color: #fff;
    background-color: #1d2124;
    border-color: #171a1d
}

.btn-dark:not(:disabled):not(.disabled).active:focus, .btn-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-outline-primary {
    color: #007bff;
    background: transparent none;
    border-color: #007bff
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary.focus, .btn-outline-primary:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
    color: #007bff;
    background-color: transparent
}

.btn-outline-primary:not(:disabled):not(.disabled).active, .btn-outline-primary:not(:disabled):not(.disabled):active, .show > .btn-outline-primary.dropdown-toggle {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.btn-outline-primary:not(:disabled):not(.disabled).active:focus, .btn-outline-primary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .5)
}

.btn-outline-secondary {
    color: #6c757d;
    background: transparent none;
    border-color: #6c757d
}

.btn-outline-secondary:hover {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary.focus, .btn-outline-secondary:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
    color: #6c757d;
    background-color: transparent
}

.btn-outline-secondary:not(:disabled):not(.disabled).active, .btn-outline-secondary:not(:disabled):not(.disabled):active, .show > .btn-outline-secondary.dropdown-toggle {
    color: #fff;
    background-color: #6c757d;
    border-color: #6c757d
}

.btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-secondary.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(108, 117, 125, .5)
}

.btn-outline-success {
    color: #28a745;
    background: transparent none;
    border-color: #28a745
}

.btn-outline-success:hover {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-outline-success.focus, .btn-outline-success:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
    color: #28a745;
    background-color: transparent
}

.btn-outline-success:not(:disabled):not(.disabled).active, .btn-outline-success:not(:disabled):not(.disabled):active, .show > .btn-outline-success.dropdown-toggle {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745
}

.btn-outline-success:not(:disabled):not(.disabled).active:focus, .btn-outline-success:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .5)
}

.dropdown-toggle {
    display: flex !important;
    align-items: center !important;
}

.btn-outline-info {
    color: #17a2b8;
    background: transparent none;
    border-color: #17a2b8
}

.btn-outline-info:hover {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info.focus, .btn-outline-info:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
    color: #17a2b8;
    background-color: transparent
}

.btn-outline-info:not(:disabled):not(.disabled).active, .btn-outline-info:not(:disabled):not(.disabled):active, .show > .btn-outline-info.dropdown-toggle {
    color: #fff;
    background-color: #17a2b8;
    border-color: #17a2b8
}

.btn-outline-info:not(:disabled):not(.disabled).active:focus, .btn-outline-info:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-info.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(23, 162, 184, .5)
}

.btn-outline-warning {
    color: #ffc107;
    background: transparent none;
    border-color: #ffc107
}

.btn-outline-warning:hover {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning.focus, .btn-outline-warning:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
    color: #ffc107;
    background-color: transparent
}

.btn-outline-warning:not(:disabled):not(.disabled).active, .btn-outline-warning:not(:disabled):not(.disabled):active, .show > .btn-outline-warning.dropdown-toggle {
    color: #212529;
    background-color: #ffc107;
    border-color: #ffc107
}

.btn-outline-warning:not(:disabled):not(.disabled).active:focus, .btn-outline-warning:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-warning.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(255, 193, 7, .5)
}

.btn-outline-danger {
    color: #dc3545;
    background: transparent none;
    border-color: #dc3545
}

.btn-outline-danger:hover {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger.focus, .btn-outline-danger:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
    color: #dc3545;
    background-color: transparent
}

.btn-outline-danger:not(:disabled):not(.disabled).active, .btn-outline-danger:not(:disabled):not(.disabled):active, .show > .btn-outline-danger.dropdown-toggle {
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545
}

.btn-outline-danger:not(:disabled):not(.disabled).active:focus, .btn-outline-danger:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-danger.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .5)
}

.btn-outline-light {
    color: #f8f9fa;
    background: transparent none;
    border-color: #f8f9fa
}

.btn-outline-light:hover {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light.focus, .btn-outline-light:focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
    color: #f8f9fa;
    background-color: transparent
}

.btn-outline-light:not(:disabled):not(.disabled).active, .btn-outline-light:not(:disabled):not(.disabled):active, .show > .btn-outline-light.dropdown-toggle {
    color: #212529;
    background-color: #f8f9fa;
    border-color: #f8f9fa
}

.btn-outline-light:not(:disabled):not(.disabled).active:focus, .btn-outline-light:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-light.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(248, 249, 250, .5)
}

.btn-outline-dark {
    color: #343a40;
    background: transparent none;
    border-color: #343a40
}

.btn-outline-dark:hover {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark.focus, .btn-outline-dark:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
    color: #343a40;
    background-color: transparent
}

.btn-outline-dark:not(:disabled):not(.disabled).active, .btn-outline-dark:not(:disabled):not(.disabled):active, .show > .btn-outline-dark.dropdown-toggle {
    color: #fff;
    background-color: #343a40;
    border-color: #343a40
}

.btn-outline-dark:not(:disabled):not(.disabled).active:focus, .btn-outline-dark:not(:disabled):not(.disabled):active:focus, .show > .btn-outline-dark.dropdown-toggle:focus {
    box-shadow: 0 0 0 .2rem rgba(52, 58, 64, .5)
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent
}

.btn-link.focus, .btn-link:focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none
}

.btn-link.disabled, .btn-link:disabled {
    color: #6c757d
}

.fade.show {
    opacity: 1
}

.collapse.show {
    display: block
}

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

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

.dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 3em solid;
    border-right: 3em solid transparent;
    border-bottom: 0;
    border-left: 3em solid transparent;
    content: none !important
}

.dropdown-toggle:empty::after {
    margin-left: 0
}

.dropup .dropdown-menu {
    margin-top: 0;
    margin-bottom: .125rem
}

.dropup .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 0;
    border-right: 3em solid transparent;
    border-bottom: 3em solid;
    border-left: 3em solid transparent
}

.dropup .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropright .dropdown-menu {
    margin-top: 0;
    margin-left: .125rem
}

.dropright .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 3em solid transparent;
    border-bottom: 3em solid transparent;
    border-left: 3em solid;
    vertical-align: 0
}

.dropright .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropleft .dropdown-menu {
    margin-top: 0;
    margin-right: .125rem
}

.dropleft .dropdown-toggle::after {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .255em;
    vertical-align: .255em;
    content: "";
    display: none
}

.dropleft .dropdown-toggle::before {
    display: inline-block;
    width: 0;
    height: 0;
    margin-right: .255em;
    vertical-align: .255em;
    content: "";
    border-top: 3em solid transparent;
    border-right: 3em solid;
    border-bottom: 3em solid transparent;
    vertical-align: 0
}

.dropleft .dropdown-toggle:empty::after {
    margin-left: 0
}

.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid #e9ecef
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0
}

.dropdown-item:focus, .dropdown-item:hover {
    color: #16181b;
    text-decoration: none;
    background-color: #f8f9fa
}

.dropdown-item.active, .dropdown-item:active {
    color: #fff;
    text-decoration: none;
    background-color: #007bff
}

.dropdown-item.disabled, .dropdown-item:disabled {
    color: #6c757d;
    background-color: transparent
}

.dropdown-menu.show {
    display: block
}

.btn-group-vertical > .btn:hover, .btn-group > .btn:hover {
    z-index: 1
}

.btn-group-vertical > .btn.active, .btn-group-vertical > .btn:active, .btn-group-vertical > .btn:focus, .btn-group > .btn.active, .btn-group > .btn:active, .btn-group > .btn:focus {
    z-index: 1
}

.btn-group .btn + .btn, .btn-group .btn + .btn-group, .btn-group .btn-group + .btn, .btn-group .btn-group + .btn-group, .btn-group-vertical .btn + .btn, .btn-group-vertical .btn + .btn-group, .btn-group-vertical .btn-group + .btn, .btn-group-vertical .btn-group + .btn-group {
    margin-left: -1px
}

.btn-toolbar .input-group {
    width: auto
}

.btn-group > .btn-group:not(:last-child) > .btn, .btn-group > .btn:not(:last-child):not(.dropdown-toggle) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.btn-group > .btn-group:not(:first-child) > .btn, .btn-group > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.dropdown-toggle-split {
    padding-right: .5625rem;
    padding-left: .5625rem
}

.dropdown-toggle-split::after {
    margin-left: 0
}

.btn-group-sm > .btn + .dropdown-toggle-split, .btn-sm + .dropdown-toggle-split {
    padding-right: .375rem;
    padding-left: .375rem
}

.btn-group-lg > .btn + .dropdown-toggle-split, .btn-lg + .dropdown-toggle-split {
    padding-right: .75rem;
    padding-left: .75rem
}

.btn-group-vertical {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center
}

.btn-group-vertical .btn, .btn-group-vertical .btn-group {
    width: 100%
}

.btn-group-vertical > .btn-group:not(:last-child) > .btn, .btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle) {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0
}

.btn-group-vertical > .btn-group:not(:first-child) > .btn, .btn-group-vertical > .btn:not(:first-child) {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.btn-group-toggle > .btn, .btn-group-toggle > .btn-group > .btn {
    margin-bottom: 0
}

.btn-group-toggle > .btn input[type=checkbox], .btn-group-toggle > .btn input[type=radio], .btn-group-toggle > .btn-group > .btn input[type=checkbox], .btn-group-toggle > .btn-group > .btn input[type=radio] {
    position: absolute;
    clip: rect(0, 0, 0, 0);
    pointer-events: none
}

.input-group > .custom-file, .input-group > .custom-select, .input-group > .form-control {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    width: 1%;
    margin-bottom: 0
}

.input-group > .custom-file:focus, .input-group > .custom-select:focus, .input-group > .form-control:focus {
    z-index: 3
}

.input-group > .custom-file + .custom-file, .input-group > .custom-file + .custom-select, .input-group > .custom-file + .form-control, .input-group > .custom-select + .custom-file, .input-group > .custom-select + .custom-select, .input-group > .custom-select + .form-control, .input-group > .form-control + .custom-file, .input-group > .form-control + .custom-select, .input-group > .form-control + .form-control {
    margin-left: -1px
}

.input-group > .custom-select:not(:last-child), .input-group > .form-control:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group > .custom-select:not(:first-child), .input-group > .form-control:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group > .custom-file {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.input-group > .custom-file:not(:last-child) .custom-file-label, .input-group > .custom-file:not(:last-child) .custom-file-label::before {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group > .custom-file:not(:first-child) .custom-file-label, .input-group > .custom-file:not(:first-child) .custom-file-label::before {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.input-group-append, .input-group-prepend {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex
}

.input-group-append .btn, .input-group-prepend .btn {
    position: relative;
    z-index: 2
}

.input-group-append .btn + .btn, .input-group-append .btn + .input-group-text, .input-group-append .input-group-text + .btn, .input-group-append .input-group-text + .input-group-text, .input-group-prepend .btn + .btn, .input-group-prepend .btn + .input-group-text, .input-group-prepend .input-group-text + .btn, .input-group-prepend .input-group-text + .input-group-text {
    margin-left: -1px
}

.input-group-prepend {
    margin-right: -1px
}

.input-group-append {
    margin-left: -1px
}

.input-group-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: .375rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.input-group-text input[type=checkbox], .input-group-text input[type=radio] {
    margin-top: 0
}

.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle), .input-group > .input-group-append:last-child > .input-group-text:not(:last-child), .input-group > .input-group-append:not(:last-child) > .btn, .input-group > .input-group-append:not(:last-child) > .input-group-text, .input-group > .input-group-prepend > .btn, .input-group > .input-group-prepend > .input-group-text {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0
}

.input-group > .input-group-append > .btn, .input-group > .input-group-append > .input-group-text, .input-group > .input-group-prepend:first-child > .btn:not(:first-child), .input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child), .input-group > .input-group-prepend:not(:first-child) > .btn, .input-group > .input-group-prepend:not(:first-child) > .input-group-text {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0
}

.custom-control {
    position: relative;
    display: block;
    min-height: 1.5rem;
    padding-left: 1.5rem
}

.custom-control-inline {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 1rem
}

.custom-control-input {
    position: absolute;
    z-index: -1;
    opacity: 0
}

.custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    background-color: #007bff
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-control-input:active ~ .custom-control-label::before {
    color: #fff;
    background-color: #b3d7ff
}

.custom-control-input:disabled ~ .custom-control-label {
    color: #6c757d
}

.custom-control-input:disabled ~ .custom-control-label::before {
    background-color: #e9ecef
}

.custom-control-label {
    margin-bottom: 0
}

.custom-control-label::before {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    pointer-events: none;
    content: "";
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #dee2e6
}

.custom-control-label::after {
    position: absolute;
    top: .25rem;
    left: 0;
    display: block;
    width: 1rem;
    height: 1rem;
    content: "";
    background: no-repeat center center;
    background-size: 50% 50%
}

.custom-checkbox .custom-control-label::before {
    border-radius: .25rem
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26 2.974 7.25 8 2.193z'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
    background-color: #007bff
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 4'%3E%3Cpath stroke='%23fff' d='M0 2h4'/%3E%3C/svg%3E")
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-radio .custom-control-label::before {
    border-radius: 50%
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #007bff
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3E%3Ccircle r='3' fill='%23fff'/%3E%3C/svg%3E")
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
    background-color: rgba(0, 123, 255, .5)
}

.custom-select {
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem 1.75rem .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    vertical-align: middle;
    background: #fff url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3E%3Cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3E%3C/svg%3E") no-repeat right .75rem center;
    background-size: 8px 10px;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none
}

.custom-select:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .075), 0 0 5px rgba(128, 189, 255, .5)
}

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

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
    height: auto;
    padding-right: .75rem;
    background-image: none
}

.custom-select:disabled {
    color: #6c757d;
    background-color: #e9ecef
}

.custom-select::-ms-expand {
    opacity: 0
}

.custom-select-sm {
    height: calc(1.8125rem + 2px);
    padding-top: .375rem;
    padding-bottom: .375rem;
    font-size: 75%
}

.custom-select-lg {
    height: calc(2.875rem + 2px);
    padding-top: .375rem;
    padding-bottom: .375rem;
    font-size: 125%
}

.custom-file {
    position: relative;
    display: inline-block;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin-bottom: 0
}

.custom-file-input {
    position: relative;
    z-index: 2;
    width: 100%;
    height: calc(2.25rem + 2px);
    margin: 0;
    opacity: 0
}

.custom-file-input:focus ~ .custom-file-control {
    border-color: #80bdff;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.custom-file-input:focus ~ .custom-file-control::before {
    border-color: #80bdff
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
    content: "Browse"
}

.custom-file-label {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: .25rem
}

.custom-file-label::after {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    display: block;
    height: calc(calc(2.25rem + 2px) - 1px * 2);
    padding: .375rem .75rem;
    line-height: 1.5;
    color: #495057;
    content: "Browse";
    background-color: #e9ecef;
    border-left: 1px solid #ced4da;
    border-radius: 0 .25rem .25rem 0
}

.nav-link {
    display: block;
    padding: .5rem 1rem
}

.nav-link:focus, .nav-link:hover {
    text-decoration: none
}

.nav-link.disabled {
    color: #6c757d
}

.nav-tabs .nav-item {
    margin-bottom: -1px
}

.nav-tabs .nav-link {
    border: 1px solid transparent;
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.nav-tabs .nav-link:focus, .nav-tabs .nav-link:hover {
    border-color: #e9ecef #e9ecef #dee2e6
}

.nav-tabs .nav-link.disabled {
    color: #6c757d;
    background-color: transparent;
    border-color: transparent
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #dee2e6 #dee2e6 #fff
}

.nav-pills .nav-link {
    border-radius: .25rem
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
    color: #fff;
    background-color: #007bff
}

.nav-fill .nav-item {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    text-align: center
}


.dropdown-menu.open {
    outline: 1px solid #e4e9f2;
}

.nav-justified .nav-item {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    text-align: center
}

.navbar > .container, .navbar > .container-fluid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0
}

.navbar-nav .dropdown-menu {
    position: static;
    float: none
}

.navbar-toggler {
    padding: .25rem .75rem;
    font-size: 1.25rem;
    line-height: 1;
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: .25rem
}

.navbar-toggler:focus, .navbar-toggler:hover {
    text-decoration: none
}

.navbar-toggler:not(:disabled):not(.disabled) {
    cursor: pointer
}

.navbar-toggler-icon {
    display: inline-block;
    width: 1.5em;
    height: 1.5em;
    vertical-align: middle;
    content: "";
    background: no-repeat center center;
    background-size: 100% 100%
}

@media (max-width: 575.98px) {
    .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width: 576px) {
    .navbar-expand-sm {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-sm .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-sm .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto
    }

    .navbar-expand-sm .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-sm > .container, .navbar-expand-sm > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-sm .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-sm .navbar-toggler {
        display: none
    }

    .navbar-expand-sm .dropup .dropdown-menu {
        top: auto;
        bottom: 100%
    }
}

@media (max-width: 767.98px) {
    .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width: 768px) {
    .navbar-expand-md {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-md .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-md .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-md .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto
    }

    .navbar-expand-md .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-md > .container, .navbar-expand-md > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-md .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-md .navbar-toggler {
        display: none
    }

    .navbar-expand-md .dropup .dropdown-menu {
        top: auto;
        bottom: 100%
    }
}

@media (max-width: 991.98px) {
    .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-lg .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto
    }

    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-lg > .container, .navbar-expand-lg > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-lg .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }

    .navbar-expand-lg .dropup .dropdown-menu {
        top: auto;
        bottom: 100%
    }
}

@media (max-width: 1199.98px) {
    .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
        padding-right: 0;
        padding-left: 0
    }
}

@media (min-width: 1200px) {
    .navbar-expand-xl {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
        flex-flow: row nowrap;
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .navbar-expand-xl .navbar-nav {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu {
        position: absolute
    }

    .navbar-expand-xl .navbar-nav .dropdown-menu-right {
        right: 0;
        left: auto
    }

    .navbar-expand-xl .navbar-nav .nav-link {
        padding-right: .5rem;
        padding-left: .5rem
    }

    .navbar-expand-xl > .container, .navbar-expand-xl > .container-fluid {
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap
    }

    .navbar-expand-xl .navbar-collapse {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important;
        -ms-flex-preferred-size: auto;
        flex-basis: auto
    }

    .navbar-expand-xl .navbar-toggler {
        display: none
    }

    .navbar-expand-xl .dropup .dropdown-menu {
        top: auto;
        bottom: 100%
    }
}

.navbar-expand {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start
}

.navbar-expand > .container, .navbar-expand > .container-fluid {
    padding-right: 0;
    padding-left: 0;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap
}

.navbar-expand .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row
}

.navbar-expand .navbar-nav .dropdown-menu {
    position: absolute
}

.navbar-expand .navbar-nav .dropdown-menu-right {
    right: 0;
    left: auto
}

.navbar-expand .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem
}

.navbar-expand .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
    flex-basis: auto
}

.navbar-expand .navbar-toggler {
    display: none
}

.navbar-expand .dropup .dropdown-menu {
    top: auto;
    bottom: 100%
}

.navbar-light .navbar-brand {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-brand:focus, .navbar-light .navbar-brand:hover {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-nav .nav-link {
    color: rgba(0, 0, 0, .5)
}

.navbar-light .navbar-nav .nav-link:focus, .navbar-light .navbar-nav .nav-link:hover {
    color: rgba(0, 0, 0, .7)
}

.navbar-light .navbar-nav .nav-link.disabled {
    color: rgba(0, 0, 0, .3)
}

.navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-toggler {
    color: rgba(0, 0, 0, .5);
    border-color: rgba(0, 0, 0, .1)
}

.navbar-light .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0,0,0,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-light .navbar-text {
    color: rgba(0, 0, 0, .5)
}

.navbar-light .navbar-text a {
    color: rgba(0, 0, 0, .9)
}

.navbar-light .navbar-text a:focus, .navbar-light .navbar-text a:hover {
    color: rgba(0, 0, 0, .9)
}

.navbar-dark .navbar-brand {
    color: #fff
}

.navbar-dark .navbar-brand:focus, .navbar-dark .navbar-brand:hover {
    color: #fff
}

.navbar-dark .navbar-nav .nav-link {
    color: rgba(255, 255, 255, .5)
}

.navbar-dark .navbar-nav .nav-link:focus, .navbar-dark .navbar-nav .nav-link:hover {
    color: rgba(255, 255, 255, .75)
}

.navbar-dark .navbar-nav .nav-link.disabled {
    color: rgba(255, 255, 255, .25)
}

.navbar-dark .navbar-nav .active > .nav-link, .navbar-dark .navbar-nav .nav-link.active, .navbar-dark .navbar-nav .nav-link.show, .navbar-dark .navbar-nav .show > .nav-link {
    color: #fff
}

.navbar-dark .navbar-toggler {
    color: rgba(255, 255, 255, .5);
    border-color: rgba(255, 255, 255, .1)
}

.navbar-dark .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E")
}

.navbar-dark .navbar-text {
    color: rgba(255, 255, 255, .5)
}

.navbar-dark .navbar-text a {
    color: #fff
}

.navbar-dark .navbar-text a:focus, .navbar-dark .navbar-text a:hover {
    color: #fff
}

.card {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, .125);
    border-radius: .25rem
}

.card > hr {
    margin-right: 0;
    margin-left: 0
}

.card > .list-group:first-child .list-group-item:first-child {
    border-top-left-radius: .25rem;
    border-top-right-radius: .25rem
}

.card > .list-group:last-child .list-group-item:last-child {
    border-bottom-right-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.card-body {
    -webkit-box-flex: 1;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    padding: 1.25rem
}

.card-title {
    margin-bottom: .75rem
}

.card-subtitle {
    margin-top: -.375rem;
    margin-bottom: 0
}

.card-text:last-child {
    margin-bottom: 0
}

.card-link:hover {
    text-decoration: none
}

.card-link + .card-link {
    margin-left: 1.25rem
}

.card-header {
    padding: .75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, .03);
    border-bottom: 1px solid rgba(0, 0, 0, .125)
}


.card-header + .list-group .list-group-item:first-child {
    border-top: 0
}

.card-footer {
    padding: .75rem 1.25rem;
    background-color: rgba(0, 0, 0, .03);
    border-top: 1px solid rgba(0, 0, 0, .125)
}


.card-header-tabs {
    margin-right: -.625rem;
    margin-bottom: -.75rem;
    margin-left: -.625rem;
    border-bottom: 0
}

.card-header-pills {
    margin-right: -.625rem;
    margin-left: -.625rem
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem
}

.card-img {
    width: 100%;
    border-radius: calc(.25rem - 1px)
}

.card-img-top {
    width: 100%;
    border-top-left-radius: calc(.25rem - 1px);
    border-top-right-radius: calc(.25rem - 1px)
}

.card-img-bottom {
    width: 100%;
    border-bottom-right-radius: calc(.25rem - 1px);
    border-bottom-left-radius: calc(.25rem - 1px)
}

.card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.card-deck .card {
    margin-bottom: 15px
}

@media (min-width: 576px) {
    .card-deck {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px
    }

    .card-deck .card {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-right: 15px;
        margin-bottom: 0;
        margin-left: 15px
    }
}

.card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.card-group > .card {
    margin-bottom: 15px
}

@media (min-width: 576px) {
    .card-group {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap
    }

    .card-group > .card {
        -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
        flex: 1 0 0%;
        margin-bottom: 0
    }

    .card-group > .card + .card {
        margin-left: 0;
        border-left: 0
    }

    .card-group > .card:first-child {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0
    }

    .card-group > .card:first-child .card-header, .card-group > .card:first-child .card-img-top {
        border-top-right-radius: 0
    }

    .card-group > .card:first-child .card-footer, .card-group > .card:first-child .card-img-bottom {
        border-bottom-right-radius: 0
    }

    .card-group > .card:last-child {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0
    }

    .card-group > .card:last-child .card-header, .card-group > .card:last-child .card-img-top {
        border-top-left-radius: 0
    }

    .card-group > .card:last-child .card-footer, .card-group > .card:last-child .card-img-bottom {
        border-bottom-left-radius: 0
    }

    .card-group > .card:only-child {
        border-radius: .25rem
    }

    .card-group > .card:only-child .card-header, .card-group > .card:only-child .card-img-top {
        border-top-left-radius: .25rem;
        border-top-right-radius: .25rem
    }

    .card-group > .card:only-child .card-footer, .card-group > .card:only-child .card-img-bottom {
        border-bottom-right-radius: .25rem;
        border-bottom-left-radius: .25rem
    }

    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) {
        border-radius: 0
    }

    .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-footer, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-header, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-bottom, .card-group > .card:not(:first-child):not(:last-child):not(:only-child) .card-img-top {
        border-radius: 0
    }
}

.card-columns .card {
    margin-bottom: .75rem
}

@media (min-width: 576px) {
    .card-columns {
        -webkit-column-count: 3;
        -moz-column-count: 3;
        column-count: 3;
        -webkit-column-gap: 1.25rem;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem
    }

    .card-columns .card {
        display: inline-block;
        width: 100%
    }
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    padding-right: .5rem;
    padding-left: .5rem;
    color: #6c757d;
    content: "/"
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline;
    text-decoration: none
}

.breadcrumb-item.active {
    color: #6c757d
}

.page-link {
    position: relative;
    display: block;
    padding: .5rem .75rem;
    margin-left: -1px;
    line-height: 1.25;
    color: #007bff;
    background-color: #fff;
    border: 1px solid #dee2e6
}

.page-link:hover {
    color: #0056b3;
    text-decoration: none;
    background-color: #e9ecef;
    border-color: #dee2e6
}

.page-link:focus {
    z-index: 2;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.page-link:not(:disabled):not(.disabled) {
    cursor: pointer
}

.page-item:first-child .page-link {
    margin-left: 0;
    border-top-left-radius: .25rem;
    border-bottom-left-radius: .25rem
}

.page-item:last-child .page-link {
    border-top-right-radius: .25rem;
    border-bottom-right-radius: .25rem
}

.page-item.active .page-link {
    z-index: 1;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.page-item.disabled .page-link {
    color: #6c757d;
    pointer-events: none;
    cursor: auto;
    background-color: #fff;
    border-color: #dee2e6
}

.pagination-lg .page-link {
    padding: .75rem 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5
}

.pagination-lg .page-item:first-child .page-link {
    border-top-left-radius: .3rem;
    border-bottom-left-radius: .3rem
}

.pagination-lg .page-item:last-child .page-link {
    border-top-right-radius: .3rem;
    border-bottom-right-radius: .3rem
}

.pagination-sm .page-link {
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5
}

.pagination-sm .page-item:first-child .page-link {
    border-top-left-radius: .2rem;
    border-bottom-left-radius: .2rem
}

.pagination-sm .page-item:last-child .page-link {
    border-top-right-radius: .2rem;
    border-bottom-right-radius: .2rem
}

.badge-pill {
    padding-right: .6em;
    padding-left: .6em;
    border-radius: 10rem
}

.badge-primary {
    color: #fff;
    background-color: #007bff
}

.badge-primary[href]:focus, .badge-primary[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #0062cc
}

.badge-secondary {
    color: #fff;
    background-color: #6c757d
}

.badge-secondary[href]:focus, .badge-secondary[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #545b62
}

.badge-success {
    color: #fff;
    background-color: #28a745
}

.badge-success[href]:focus, .badge-success[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1e7e34
}

.badge-info {
    color: #fff;
    background-color: #17a2b8
}

.badge-info[href]:focus, .badge-info[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #117a8b
}

.badge-warning {
    color: #212529;
    background-color: #ffc107
}

.badge-warning[href]:focus, .badge-warning[href]:hover {
    color: #212529;
    text-decoration: none;
    background-color: #d39e00
}

.badge-danger {
    color: #fff;
    background-color: #dc3545
}

.badge-danger[href]:focus, .badge-danger[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #bd2130
}

.badge-light {
    color: #212529;
    background-color: #f8f9fa
}

.badge-light[href]:focus, .badge-light[href]:hover {
    color: #212529;
    text-decoration: none;
    background-color: #dae0e5
}

.badge-dark {
    color: #fff;
    background-color: #343a40
}

.badge-dark[href]:focus, .badge-dark[href]:hover {
    color: #fff;
    text-decoration: none;
    background-color: #1d2124
}

@media (min-width: 576px) {
    .jumbotron {
        padding: 4rem 2rem
    }
}

.jumbotron-fluid {
    padding-right: 0;
    padding-left: 0;
    border-radius: 0
}

.alert-heading {
    color: inherit
}

.alert-link {
    font-weight: 700
}

.alert-dismissible {
    padding-right: 4rem
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: .75rem 1.25rem;
    color: inherit
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff
}

.alert-primary hr {
    border-top-color: #9fcdff
}

.alert-primary .alert-link {
    color: #002752
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db
}

.alert-secondary hr {
    border-top-color: #c8cbcf
}

.alert-secondary .alert-link {
    color: #202326
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe
}

.alert-light hr {
    border-top-color: #ececf6
}

.alert-light .alert-link {
    color: #686868
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca
}

.alert-dark hr {
    border-top-color: #b9bbbe
}

.alert-dark .alert-link {
    color: #040505
}

@-webkit-keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}

@keyframes progress-bar-stripes {
    from {
        background-position: 1rem 0
    }
    to {
        background-position: 0 0
    }
}

.progress-bar-striped {
    background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
    background-size: 1rem 1rem
}

.progress-bar-animated {
    -webkit-animation: progress-bar-stripes 1s linear infinite;
    animation: progress-bar-stripes 1s linear infinite
}

.list-group-item-action {
    width: 100%;
    color: #495057;
    text-align: inherit
}

.list-group-item-action:focus, .list-group-item-action:hover {
    color: #495057;
    text-decoration: none;
    background-color: #f8f9fa
}

.list-group-item-action:active {
    color: #212529;
    background-color: #e9ecef
}

.list-group-item:focus, .list-group-item:hover {
    z-index: 1;
    text-decoration: none
}

.list-group-item.disabled, .list-group-item:disabled {
    color: #6c757d;
    background-color: #fff
}

.list-group-item.active {
    z-index: 2;
    color: #fff;
    background-color: #007bff;
    border-color: #007bff
}

.list-group-flush .list-group-item {
    border-right: 0;
    border-left: 0;
    border-radius: 0
}

.list-group-flush:first-child .list-group-item:first-child {
    border-top: 0
}

.list-group-flush:last-child .list-group-item:last-child {
    border-bottom: 0
}

.list-group-item-primary {
    color: #004085;
    background-color: #b8daff
}

.list-group-item-primary.list-group-item-action:focus, .list-group-item-primary.list-group-item-action:hover {
    color: #004085;
    background-color: #9fcdff
}

.list-group-item-primary.list-group-item-action.active {
    color: #fff;
    background-color: #004085;
    border-color: #004085
}

.list-group-item-secondary {
    color: #383d41;
    background-color: #d6d8db
}

.list-group-item-secondary.list-group-item-action:focus, .list-group-item-secondary.list-group-item-action:hover {
    color: #383d41;
    background-color: #c8cbcf
}

.list-group-item-secondary.list-group-item-action.active {
    color: #fff;
    background-color: #383d41;
    border-color: #383d41
}

.list-group-item-success.list-group-item-action:focus, .list-group-item-success.list-group-item-action:hover {
    color: #155724;
    background-color: #b1dfbb
}

.list-group-item-success.list-group-item-action.active {
    color: #fff;
    background-color: #155724;
    border-color: #155724
}

.list-group-item-info.list-group-item-action:focus, .list-group-item-info.list-group-item-action:hover {
    color: #0c5460;
    background-color: #abdde5
}

.list-group-item-info.list-group-item-action.active {
    color: #fff;
    background-color: #0c5460;
    border-color: #0c5460
}

.list-group-item-warning.list-group-item-action:focus, .list-group-item-warning.list-group-item-action:hover {
    color: #856404;
    background-color: #ffe8a1
}

.list-group-item-warning.list-group-item-action.active {
    color: #fff;
    background-color: #856404;
    border-color: #856404
}

.list-group-item-danger.list-group-item-action:focus, .list-group-item-danger.list-group-item-action:hover {
    color: #721c24;
    background-color: #f1b0b7
}

.list-group-item-danger.list-group-item-action.active {
    color: #fff;
    background-color: #721c24;
    border-color: #721c24
}

.list-group-item-light {
    color: #818182;
    background-color: #fdfdfe
}

.list-group-item-light.list-group-item-action:focus, .list-group-item-light.list-group-item-action:hover {
    color: #818182;
    background-color: #ececf6
}

.list-group-item-light.list-group-item-action.active {
    color: #fff;
    background-color: #818182;
    border-color: #818182
}

.list-group-item-dark {
    color: #1b1e21;
    background-color: #c6c8ca
}

.list-group-item-dark.list-group-item-action:focus, .list-group-item-dark.list-group-item-action:hover {
    color: #1b1e21;
    background-color: #b9bbbe
}

.list-group-item-dark.list-group-item-action.active {
    color: #fff;
    background-color: #1b1e21;
    border-color: #1b1e21
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0)
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (.5rem * 2))
}

.modal-backdrop.show {
    opacity: .5
}

.modal-footer > :not(:first-child) {
    margin-left: .25rem
}

.modal-footer > :not(:last-child) {
    margin-right: .25rem
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2))
    }

    .modal-sm {
        max-width: 300px
    }
}

@media (min-width: 992px) {
    .modal-lg {
        max-width: 800px
    }
}

.tooltip.show {
    opacity: .9
}

.tooltip .arrow {
    position: absolute;
    display: block;
    width: .8rem;
    height: .4rem
}

.tooltip .arrow::before {
    position: absolute;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-tooltip-auto[x-placement^=top], .bs-tooltip-top {
    padding: .4rem 0
}

.bs-tooltip-auto[x-placement^=top] .arrow, .bs-tooltip-top .arrow {
    bottom: 0
}

.bs-tooltip-auto[x-placement^=top] .arrow::before, .bs-tooltip-top .arrow::before {
    top: 0;
    border-width: .4rem .4rem 0;
    border-top-color: #000
}

.bs-tooltip-auto[x-placement^=right], .bs-tooltip-right {
    padding: 0 .4rem
}

.bs-tooltip-auto[x-placement^=right] .arrow, .bs-tooltip-right .arrow {
    left: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[x-placement^=right] .arrow::before, .bs-tooltip-right .arrow::before {
    right: 0;
    border-width: .4rem .4rem .4rem 0;
    border-right-color: #000
}

.bs-tooltip-auto[x-placement^=bottom], .bs-tooltip-bottom {
    padding: .4rem 0
}

.bs-tooltip-auto[x-placement^=bottom] .arrow, .bs-tooltip-bottom .arrow {
    top: 0
}

.bs-tooltip-auto[x-placement^=bottom] .arrow::before, .bs-tooltip-bottom .arrow::before {
    bottom: 0;
    border-width: 0 .4rem .4rem;
    border-bottom-color: #000
}

.bs-tooltip-auto[x-placement^=left], .bs-tooltip-left {
    padding: 0 .4rem
}

.bs-tooltip-auto[x-placement^=left] .arrow, .bs-tooltip-left .arrow {
    right: 0;
    width: .4rem;
    height: .8rem
}

.bs-tooltip-auto[x-placement^=left] .arrow::before, .bs-tooltip-left .arrow::before {
    left: 0;
    border-width: .4rem 0 .4rem .4rem;
    border-left-color: #000
}

.popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: .5rem;
    margin: 0 .3rem
}

.popover .arrow::after, .popover .arrow::before {
    position: absolute;
    display: block;
    content: "";
    border-color: transparent;
    border-style: solid
}

.bs-popover-auto[x-placement^=top], .bs-popover-top {
    margin-bottom: .5rem
}

.bs-popover-auto[x-placement^=top] .arrow, .bs-popover-top .arrow {
    bottom: calc((.5rem + 1px) * -1)
}

.bs-popover-auto[x-placement^=top] .arrow::after, .bs-popover-auto[x-placement^=top] .arrow::before, .bs-popover-top .arrow::after, .bs-popover-top .arrow::before {
    border-width: .5rem .5rem 0
}

.bs-popover-auto[x-placement^=top] .arrow::before, .bs-popover-top .arrow::before {
    bottom: 0;
    border-top-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=top] .arrow::after, .bs-popover-top .arrow::after {
    bottom: 1px;
    border-top-color: #fff
}

.bs-popover-auto[x-placement^=right], .bs-popover-right {
    margin-left: .5rem
}

.bs-popover-auto[x-placement^=right] .arrow, .bs-popover-right .arrow {
    left: calc((.5rem + 1px) * -1);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-auto[x-placement^=right] .arrow::after, .bs-popover-auto[x-placement^=right] .arrow::before, .bs-popover-right .arrow::after, .bs-popover-right .arrow::before {
    border-width: .5rem .5rem .5rem 0
}

.bs-popover-auto[x-placement^=right] .arrow::before, .bs-popover-right .arrow::before {
    left: 0;
    border-right-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=right] .arrow::after, .bs-popover-right .arrow::after {
    left: 1px;
    border-right-color: #fff
}

.bs-popover-auto[x-placement^=bottom], .bs-popover-bottom {
    margin-top: .5rem
}

.bs-popover-auto[x-placement^=bottom] .arrow, .bs-popover-bottom .arrow {
    top: calc((.5rem + 1px) * -1)
}

.bs-popover-auto[x-placement^=bottom] .arrow::after, .bs-popover-auto[x-placement^=bottom] .arrow::before, .bs-popover-bottom .arrow::after, .bs-popover-bottom .arrow::before {
    border-width: 0 .5rem .5rem .5rem
}

.bs-popover-auto[x-placement^=bottom] .arrow::before, .bs-popover-bottom .arrow::before {
    top: 0;
    border-bottom-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=bottom] .arrow::after, .bs-popover-bottom .arrow::after {
    top: 1px;
    border-bottom-color: #fff
}

.bs-popover-auto[x-placement^=bottom] .popover-header::before, .bs-popover-bottom .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7
}

.bs-popover-auto[x-placement^=left], .bs-popover-left {
    margin-right: .5rem
}

.bs-popover-auto[x-placement^=left] .arrow, .bs-popover-left .arrow {
    right: calc((.5rem + 1px) * -1);
    width: .5rem;
    height: 1rem;
    margin: .3rem 0
}

.bs-popover-auto[x-placement^=left] .arrow::after, .bs-popover-auto[x-placement^=left] .arrow::before, .bs-popover-left .arrow::after, .bs-popover-left .arrow::before {
    border-width: .5rem 0 .5rem .5rem
}

.bs-popover-auto[x-placement^=left] .arrow::before, .bs-popover-left .arrow::before {
    right: 0;
    border-left-color: rgba(0, 0, 0, .25)
}

.bs-popover-auto[x-placement^=left] .arrow::after, .bs-popover-left .arrow::after {
    right: 1px;
    border-left-color: #fff
}

.popover-header {
    padding: .5rem .75rem;
    margin-bottom: 0;
    font-size: 1rem;
    color: inherit;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-top-left-radius: calc(.3rem - 1px);
    border-top-right-radius: calc(.3rem - 1px)
}

.popover-header:empty {
    display: none
}

.popover-body {
    padding: .5rem .75rem;
    color: #212529
}

.carousel-item {
    position: relative;
    display: none;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    transition: -webkit-transform .6s ease;
    transition: transform .6s ease;
    transition: transform .6s ease, -webkit-transform .6s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px
}

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

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

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

@supports ((-webkit-transform-style:preserve-3d) or (transform-style:preserve-3d)) {
    .carousel-item-next.carousel-item-left, .carousel-item-prev.carousel-item-right {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }

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

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

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

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

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

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

.carousel-control-prev {
    left: 0
}

.carousel-control-next {
    right: 0
}

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

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

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

.carousel-indicators li::before {
    position: absolute;
    top: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""
}

.carousel-indicators li::after {
    position: absolute;
    bottom: -10px;
    left: 0;
    display: inline-block;
    width: 100%;
    height: 10px;
    content: ""
}

.align-baseline {
    vertical-align: baseline !important
}

.align-top {
    vertical-align: top !important
}

.align-middle {
    vertical-align: middle !important
}

.align-bottom {
    vertical-align: bottom !important
}

.align-text-bottom {
    vertical-align: text-bottom !important
}

.align-text-top {
    vertical-align: text-top !important
}

a.bg-primary:focus, a.bg-primary:hover, button.bg-primary:focus, button.bg-primary:hover {
    background-color: #0062cc !important
}

.bg-secondary {
    background-color: #6c757d !important
}

a.bg-secondary:focus, a.bg-secondary:hover, button.bg-secondary:focus, button.bg-secondary:hover {
    background-color: #545b62 !important
}

a.bg-success:focus, a.bg-success:hover, button.bg-success:focus, button.bg-success:hover {
    background-color: #1e7e34 !important
}

a.bg-info:focus, a.bg-info:hover, button.bg-info:focus, button.bg-info:hover {
    background-color: #117a8b !important
}

a.bg-warning:focus, a.bg-warning:hover, button.bg-warning:focus, button.bg-warning:hover {
    background-color: #d39e00 !important
}

a.bg-danger:focus, a.bg-danger:hover, button.bg-danger:focus, button.bg-danger:hover {
    background-color: #bd2130 !important
}

.bg-light {
    background-color: #f8f9fa !important
}

a.bg-light:focus, a.bg-light:hover, button.bg-light:focus, button.bg-light:hover {
    background-color: #dae0e5 !important
}

.bg-dark {
    background-color: #343a40 !important
}

a.bg-dark:focus, a.bg-dark:hover, button.bg-dark:focus, button.bg-dark:hover {
    background-color: #1d2124 !important
}

.bg-white {
    background-color: #fff !important
}

.bg-transparent {
    background-color: transparent !important
}

.border {
    border: 1px solid #dee2e6 !important
}

.border-top {
    border-top: 1px solid #dee2e6
}

.border-right {
    border-right: 1px solid #dee2e6
}

.border-bottom {
    border-bottom: 1px solid #dee2e6
}

.border-left {
    border-left: 1px solid #dee2e6
}

.border-0 {
    border: 0 !important
}

.border-top-0 {
    border-top: 0
}

.border-right-0 {
    border-right: 0
}

.border-bottom-0 {
    border-bottom: 0
}

.border-left-0 {
    border-left: 0
}

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

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

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

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

.border-warning {
    border-color: #ffc107 !important
}

.border-danger {
    border-color: #dc3545 !important
}

.border-light {
    border-color: #f8f9fa !important
}

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

.border-white {
    border-color: #fff !important
}

.rounded {
    border-radius: .25rem !important
}

.rounded-top {
    border-top-left-radius: .25rem !important;
    border-top-right-radius: .25rem !important
}

.rounded-right {
    border-top-right-radius: .25rem !important;
    border-bottom-right-radius: .25rem !important
}

.rounded-bottom {
    border-bottom-right-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-left {
    border-top-left-radius: .25rem !important;
    border-bottom-left-radius: .25rem !important
}

.rounded-circle {
    border-radius: 50% !important
}

.rounded-0 {
    border-radius: 0 !important
}

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

.d-none {
    display: none !important
}

.d-inline {
    display: inline !important
}

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

.d-block {
    display: block !important
}

.d-table {
    display: table !important
}

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

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

.d-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important
}

.d-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important
}

@media (min-width: 576px) {
    .d-sm-none {
        display: none !important
    }

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

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

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

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

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

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

    .d-sm-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-sm-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width: 768px) {
    .d-md-none {
        display: none !important
    }

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

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

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

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

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

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

    .d-md-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-md-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width: 992px) {
    .d-lg-none {
        display: none !important
    }

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

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

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

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

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

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

    .d-lg-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-lg-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

@media (min-width: 1200px) {
    .d-xl-none {
        display: none !important
    }

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

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

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

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

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

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

    .d-xl-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-xl-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

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

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

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

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

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

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

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

    .d-print-flex {
        display: -webkit-box !important;
        display: -ms-flexbox !important;
        display: flex !important
    }

    .d-print-inline-flex {
        display: -webkit-inline-box !important;
        display: -ms-inline-flexbox !important;
        display: inline-flex !important
    }
}

.embed-responsive::before {
    display: block;
    content: ""
}

.embed-responsive-21by9::before {
    padding-top: 42.857143%
}

.embed-responsive-16by9::before {
    padding-top: 56.25%
}

.embed-responsive-4by3::before {
    padding-top: 75%
}

.embed-responsive-1by1::before {
    padding-top: 100%
}

.flex-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: row !important;
    flex-direction: row !important
}

.flex-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
    -ms-flex-direction: column !important;
    flex-direction: column !important
}

.flex-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: row-reverse !important;
    flex-direction: row-reverse !important
}

.flex-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
    -ms-flex-direction: column-reverse !important;
    flex-direction: column-reverse !important
}

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

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

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

.justify-content-start {
    -webkit-box-pack: start !important;
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

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

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

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

.align-items-center {
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important
}

.align-items-baseline {
    -webkit-box-align: baseline !important;
    -ms-flex-align: baseline !important;
    align-items: baseline !important
}

.align-items-stretch {
    -webkit-box-align: stretch !important;
    -ms-flex-align: stretch !important;
    align-items: stretch !important
}

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

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

.align-content-center {
    -ms-flex-line-pack: center !important;
    align-content: center !important
}

.align-content-between {
    -ms-flex-line-pack: justify !important;
    align-content: space-between !important
}

.align-content-around {
    -ms-flex-line-pack: distribute !important;
    align-content: space-around !important
}

.align-content-stretch {
    -ms-flex-line-pack: stretch !important;
    align-content: stretch !important
}

.align-self-auto {
    -ms-flex-item-align: auto !important;
    align-self: auto !important
}

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

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

.align-self-center {
    -ms-flex-item-align: center !important;
    align-self: center !important
}

.align-self-baseline {
    -ms-flex-item-align: baseline !important;
    align-self: baseline !important
}

.align-self-stretch {
    -ms-flex-item-align: stretch !important;
    align-self: stretch !important
}

@media (min-width: 576px) {
    .flex-sm-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-sm-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-sm-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-sm-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

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

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

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

    .justify-content-sm-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-sm-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-sm-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-sm-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-sm-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-sm-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-sm-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-sm-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-sm-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-sm-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-sm-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-sm-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-sm-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-sm-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-sm-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-sm-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-sm-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

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

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

    .align-self-sm-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-sm-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-sm-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width: 768px) {
    .flex-md-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-md-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-md-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-md-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

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

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

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

    .justify-content-md-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-md-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-md-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-md-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-md-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-md-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-md-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-md-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-md-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-md-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-md-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-md-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-md-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-md-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-md-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-md-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-md-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

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

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

    .align-self-md-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-md-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-md-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width: 992px) {
    .flex-lg-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-lg-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-lg-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-lg-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

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

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

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

    .justify-content-lg-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-lg-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-lg-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-lg-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-lg-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-lg-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-lg-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-lg-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-lg-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-lg-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-lg-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-lg-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-lg-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-lg-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-lg-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-lg-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-lg-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

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

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

    .align-self-lg-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-lg-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-lg-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

@media (min-width: 1200px) {
    .flex-xl-row {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
        flex-direction: row !important
    }

    .flex-xl-column {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
        flex-direction: column !important
    }

    .flex-xl-row-reverse {
        -webkit-box-orient: horizontal !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
        flex-direction: row-reverse !important
    }

    .flex-xl-column-reverse {
        -webkit-box-orient: vertical !important;
        -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
        flex-direction: column-reverse !important
    }

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

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

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

    .justify-content-xl-start {
        -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
        justify-content: flex-start !important
    }

    .justify-content-xl-end {
        -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
        justify-content: flex-end !important
    }

    .justify-content-xl-center {
        -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
        justify-content: center !important
    }

    .justify-content-xl-between {
        -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
        justify-content: space-between !important
    }

    .justify-content-xl-around {
        -ms-flex-pack: distribute !important;
        justify-content: space-around !important
    }

    .align-items-xl-start {
        -webkit-box-align: start !important;
        -ms-flex-align: start !important;
        align-items: flex-start !important
    }

    .align-items-xl-end {
        -webkit-box-align: end !important;
        -ms-flex-align: end !important;
        align-items: flex-end !important
    }

    .align-items-xl-center {
        -webkit-box-align: center !important;
        -ms-flex-align: center !important;
        align-items: center !important
    }

    .align-items-xl-baseline {
        -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
        align-items: baseline !important
    }

    .align-items-xl-stretch {
        -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
        align-items: stretch !important
    }

    .align-content-xl-start {
        -ms-flex-line-pack: start !important;
        align-content: flex-start !important
    }

    .align-content-xl-end {
        -ms-flex-line-pack: end !important;
        align-content: flex-end !important
    }

    .align-content-xl-center {
        -ms-flex-line-pack: center !important;
        align-content: center !important
    }

    .align-content-xl-between {
        -ms-flex-line-pack: justify !important;
        align-content: space-between !important
    }

    .align-content-xl-around {
        -ms-flex-line-pack: distribute !important;
        align-content: space-around !important
    }

    .align-content-xl-stretch {
        -ms-flex-line-pack: stretch !important;
        align-content: stretch !important
    }

    .align-self-xl-auto {
        -ms-flex-item-align: auto !important;
        align-self: auto !important
    }

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

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

    .align-self-xl-center {
        -ms-flex-item-align: center !important;
        align-self: center !important
    }

    .align-self-xl-baseline {
        -ms-flex-item-align: baseline !important;
        align-self: baseline !important
    }

    .align-self-xl-stretch {
        -ms-flex-item-align: stretch !important;
        align-self: stretch !important
    }
}

.float-left {
    float: left !important
}

.float-right {
    float: right !important
}

.float-none {
    float: none !important
}

@media (min-width: 576px) {
    .float-sm-left {
        float: left !important
    }

    .float-sm-right {
        float: right !important
    }

    .float-sm-none {
        float: none !important
    }
}

@media (min-width: 768px) {
    .float-md-left {
        float: left !important
    }

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

    .float-md-none {
        float: none !important
    }
}

@media (min-width: 992px) {
    .float-lg-left {
        float: left !important
    }

    .float-lg-right {
        float: right !important
    }

    .float-lg-none {
        float: none !important
    }
}

@media (min-width: 1200px) {
    .float-xl-left {
        float: left !important
    }

    .float-xl-right {
        float: right !important
    }

    .float-xl-none {
        float: none !important
    }
}

.position-static {
    position: static !important
}

.position-relative {
    position: relative !important
}

.position-absolute {
    position: absolute !important
}

.position-fixed {
    position: fixed !important
}

.position-sticky {
    position: -webkit-sticky !important;
    position: sticky !important
}

.fixed-top {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1030
}

.fixed-bottom {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1030
}

@supports ((position:-webkit-sticky) or (position:sticky)) {
    .sticky-top {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        z-index: 1020
    }
}

.w-25 {
    width: 25% !important
}

.w-50 {
    width: 50% !important
}

.w-75 {
    width: 75% !important
}

.w-100 {
    width: 100% !important
}

.h-25 {
    height: 25% !important
}

.h-50 {
    height: 50% !important
}

.h-75 {
    height: 75% !important
}

.h-100 {
    height: 100% !important
}

.mw-100 {
    max-width: 100% !important
}

.mh-100 {
    max-height: 100% !important
}

.m-0 {
    margin: 0 0 !important
}

.mt-0, .my-0 {
    margin-top: 0 !important
}

.mr-0, .mx-0 {
    margin-right: 0 !important
}

.mb-0, .my-0 {
    margin-bottom: 0 !important
}

.ml-0, .mx-0 {
    margin-left: 0 !important
}

.m-1 {
    margin: .25rem .25rem !important
}

.mt-1, .my-1 {
    margin-top: .25rem !important
}

.mr-1, .mx-1 {
    margin-right: .25rem !important
}

.mb-1, .my-1 {
    margin-bottom: .25rem !important
}

.ml-1, .mx-1 {
    margin-left: .25rem !important
}

.m-2 {
    margin: .5rem .5rem !important
}

.mt-2, .my-2 {
    margin-top: .5rem !important
}

.mr-2, .mx-2 {
    margin-right: .5rem !important
}

.mb-2, .my-2 {
    margin-bottom: .5rem !important
}

.ml-2, .mx-2 {
    margin-left: .5rem !important
}

.m-3 {
    margin: 1rem 1rem !important
}

.mt-3, .my-3 {
    margin-top: 1rem !important
}

.mr-3, .mx-3 {
    margin-right: 1rem !important
}

.mb-3, .my-3 {
    margin-bottom: 1rem !important
}

.ml-3, .mx-3 {
    margin-left: 1rem !important
}

.m-4 {
    margin: 1.5rem 1.5rem !important
}

.mt-4, .my-4 {
    margin-top: 1.5rem !important
}

.mr-4, .mx-4 {
    margin-right: 1.5rem !important
}

.mb-4, .my-4 {
    margin-bottom: 1.5rem !important
}

.ml-4, .mx-4 {
    margin-left: 1.5rem !important
}

.m-5 {
    margin: 3rem 3rem !important
}

.mt-5, .my-5 {
    margin-top: 3rem !important
}

.mr-5, .mx-5 {
    margin-right: 3rem !important
}

.mb-5, .my-5 {
    margin-bottom: 3rem !important
}

.ml-5, .mx-5 {
    margin-left: 3rem !important
}

.p-0 {
    padding: 0 0 !important
}

.pt-0, .py-0 {
    padding-top: 0 !important
}

.pr-0, .px-0 {
    padding-right: 0 !important
}

.pb-0, .py-0 {
    padding-bottom: 0 !important
}

.pl-0, .px-0 {
    padding-left: 0 !important
}

.p-1 {
    padding: .25rem .25rem !important
}

.pt-1, .py-1 {
    padding-top: .25rem !important
}

.pr-1, .px-1 {
    padding-right: .25rem !important
}

.pb-1, .py-1 {
    padding-bottom: .25rem !important
}

.pl-1, .px-1 {
    padding-left: .25rem !important
}

.p-2 {
    padding: .5rem .5rem !important
}

.pt-2, .py-2 {
    padding-top: .5rem !important
}

.pr-2, .px-2 {
    padding-right: .5rem !important
}

.pb-2, .py-2 {
    padding-bottom: .5rem !important
}

.pl-2, .px-2 {
    padding-left: .5rem !important
}

.p-3 {
    padding: 1rem 1rem !important
}

.pt-3, .py-3 {
    padding-top: 1rem !important
}

.pr-3, .px-3 {
    padding-right: 1rem !important
}

.pb-3, .py-3 {
    padding-bottom: 1rem !important
}

.pl-3, .px-3 {
    padding-left: 1rem !important
}

.p-4 {
    padding: 1.5rem 1.5rem !important
}

.pt-4, .py-4 {
    padding-top: 1.5rem !important
}

.pr-4, .px-4 {
    padding-right: 1.5rem !important
}

.pb-4, .py-4 {
    padding-bottom: 1.5rem !important
}

.pl-4, .px-4 {
    padding-left: 1.5rem !important
}

.p-5 {
    padding: 3rem 3rem !important
}

.pt-5, .py-5 {
    padding-top: 3rem !important
}

.pr-5, .px-5 {
    padding-right: 3rem !important
}

.pb-5, .py-5 {
    padding-bottom: 3rem !important
}

.pl-5, .px-5 {
    padding-left: 3rem !important
}

.m-auto {
    margin: auto auto !important
}

.mt-auto, .my-auto {
    margin-top: auto !important
}

.mr-auto, .mx-auto {
    margin-right: auto !important
}

.mb-auto, .my-auto {
    margin-bottom: auto !important
}

.ml-auto, .mx-auto {
    margin-left: auto !important
}

@media (min-width: 576px) {
    .m-sm-0 {
        margin: 0 0 !important
    }

    .mt-sm-0, .my-sm-0 {
        margin-top: 0 !important
    }

    .mr-sm-0, .mx-sm-0 {
        margin-right: 0 !important
    }

    .mb-sm-0, .my-sm-0 {
        margin-bottom: 0 !important
    }

    .ml-sm-0, .mx-sm-0 {
        margin-left: 0 !important
    }

    .m-sm-1 {
        margin: .25rem .25rem !important
    }

    .mt-sm-1, .my-sm-1 {
        margin-top: .25rem !important
    }

    .mr-sm-1, .mx-sm-1 {
        margin-right: .25rem !important
    }

    .mb-sm-1, .my-sm-1 {
        margin-bottom: .25rem !important
    }

    .ml-sm-1, .mx-sm-1 {
        margin-left: .25rem !important
    }

    .m-sm-2 {
        margin: .5rem .5rem !important
    }

    .mt-sm-2, .my-sm-2 {
        margin-top: .5rem !important
    }

    .mr-sm-2, .mx-sm-2 {
        margin-right: .5rem !important
    }

    .mb-sm-2, .my-sm-2 {
        margin-bottom: .5rem !important
    }

    .ml-sm-2, .mx-sm-2 {
        margin-left: .5rem !important
    }

    .m-sm-3 {
        margin: 1rem 1rem !important
    }

    .mt-sm-3, .my-sm-3 {
        margin-top: 1rem !important
    }

    .mr-sm-3, .mx-sm-3 {
        margin-right: 1rem !important
    }

    .mb-sm-3, .my-sm-3 {
        margin-bottom: 1rem !important
    }

    .ml-sm-3, .mx-sm-3 {
        margin-left: 1rem !important
    }

    .m-sm-4 {
        margin: 1.5rem 1.5rem !important
    }

    .mt-sm-4, .my-sm-4 {
        margin-top: 1.5rem !important
    }

    .mr-sm-4, .mx-sm-4 {
        margin-right: 1.5rem !important
    }

    .mb-sm-4, .my-sm-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-sm-4, .mx-sm-4 {
        margin-left: 1.5rem !important
    }

    .m-sm-5 {
        margin: 3rem 3rem !important
    }

    .mt-sm-5, .my-sm-5 {
        margin-top: 3rem !important
    }

    .mr-sm-5, .mx-sm-5 {
        margin-right: 3rem !important
    }

    .mb-sm-5, .my-sm-5 {
        margin-bottom: 3rem !important
    }

    .ml-sm-5, .mx-sm-5 {
        margin-left: 3rem !important
    }

    .p-sm-0 {
        padding: 0 0 !important
    }

    .pt-sm-0, .py-sm-0 {
        padding-top: 0 !important
    }

    .pr-sm-0, .px-sm-0 {
        padding-right: 0 !important
    }

    .pb-sm-0, .py-sm-0 {
        padding-bottom: 0 !important
    }

    .pl-sm-0, .px-sm-0 {
        padding-left: 0 !important
    }

    .p-sm-1 {
        padding: .25rem .25rem !important
    }

    .pt-sm-1, .py-sm-1 {
        padding-top: .25rem !important
    }

    .pr-sm-1, .px-sm-1 {
        padding-right: .25rem !important
    }

    .pb-sm-1, .py-sm-1 {
        padding-bottom: .25rem !important
    }

    .pl-sm-1, .px-sm-1 {
        padding-left: .25rem !important
    }

    .p-sm-2 {
        padding: .5rem .5rem !important
    }

    .pt-sm-2, .py-sm-2 {
        padding-top: .5rem !important
    }

    .pr-sm-2, .px-sm-2 {
        padding-right: .5rem !important
    }

    .pb-sm-2, .py-sm-2 {
        padding-bottom: .5rem !important
    }

    .pl-sm-2, .px-sm-2 {
        padding-left: .5rem !important
    }

    .p-sm-3 {
        padding: 1rem 1rem !important
    }

    .pt-sm-3, .py-sm-3 {
        padding-top: 1rem !important
    }

    .pr-sm-3, .px-sm-3 {
        padding-right: 1rem !important
    }

    .pb-sm-3, .py-sm-3 {
        padding-bottom: 1rem !important
    }

    .pl-sm-3, .px-sm-3 {
        padding-left: 1rem !important
    }

    .p-sm-4 {
        padding: 1.5rem 1.5rem !important
    }

    .pt-sm-4, .py-sm-4 {
        padding-top: 1.5rem !important
    }

    .pr-sm-4, .px-sm-4 {
        padding-right: 1.5rem !important
    }

    .pb-sm-4, .py-sm-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-sm-4, .px-sm-4 {
        padding-left: 1.5rem !important
    }

    .p-sm-5 {
        padding: 3rem 3rem !important
    }

    .pt-sm-5, .py-sm-5 {
        padding-top: 3rem !important
    }

    .pr-sm-5, .px-sm-5 {
        padding-right: 3rem !important
    }

    .pb-sm-5, .py-sm-5 {
        padding-bottom: 3rem !important
    }

    .pl-sm-5, .px-sm-5 {
        padding-left: 3rem !important
    }

    .m-sm-auto {
        margin: auto auto !important
    }

    .mt-sm-auto, .my-sm-auto {
        margin-top: auto !important
    }

    .mr-sm-auto, .mx-sm-auto {
        margin-right: auto !important
    }

    .mb-sm-auto, .my-sm-auto {
        margin-bottom: auto !important
    }

    .ml-sm-auto, .mx-sm-auto {
        margin-left: auto !important
    }
}

@media (min-width: 768px) {
    .m-md-0 {
        margin: 0 0 !important
    }

    .mt-md-0, .my-md-0 {
        margin-top: 0 !important
    }

    .mr-md-0, .mx-md-0 {
        margin-right: 0 !important
    }

    .mb-md-0, .my-md-0 {
        margin-bottom: 0 !important
    }

    .ml-md-0, .mx-md-0 {
        margin-left: 0 !important
    }

    .m-md-1 {
        margin: .25rem .25rem !important
    }

    .mt-md-1, .my-md-1 {
        margin-top: .25rem !important
    }

    .mr-md-1, .mx-md-1 {
        margin-right: .25rem !important
    }

    .mb-md-1, .my-md-1 {
        margin-bottom: .25rem !important
    }

    .ml-md-1, .mx-md-1 {
        margin-left: .25rem !important
    }

    .m-md-2 {
        margin: .5rem .5rem !important
    }

    .mt-md-2, .my-md-2 {
        margin-top: .5rem !important
    }

    .mr-md-2, .mx-md-2 {
        margin-right: .5rem !important
    }

    .mb-md-2, .my-md-2 {
        margin-bottom: .5rem !important
    }

    .ml-md-2, .mx-md-2 {
        margin-left: .5rem !important
    }

    .m-md-3 {
        margin: 1rem 1rem !important
    }

    .mt-md-3, .my-md-3 {
        margin-top: 1rem !important
    }

    .mr-md-3, .mx-md-3 {
        margin-right: 1rem !important
    }

    .mb-md-3, .my-md-3 {
        margin-bottom: 1rem !important
    }

    .ml-md-3, .mx-md-3 {
        margin-left: 1rem !important
    }

    .m-md-4 {
        margin: 1.5rem 1.5rem !important
    }

    .mt-md-4, .my-md-4 {
        margin-top: 1.5rem !important
    }

    .mr-md-4, .mx-md-4 {
        margin-right: 1.5rem !important
    }

    .mb-md-4, .my-md-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-md-4, .mx-md-4 {
        margin-left: 1.5rem !important
    }

    .m-md-5 {
        margin: 3rem 3rem !important
    }

    .mt-md-5, .my-md-5 {
        margin-top: 3rem !important
    }

    .mr-md-5, .mx-md-5 {
        margin-right: 3rem !important
    }

    .mb-md-5, .my-md-5 {
        margin-bottom: 3rem !important
    }

    .ml-md-5, .mx-md-5 {
        margin-left: 3rem !important
    }

    .p-md-0 {
        padding: 0 0 !important
    }

    .pt-md-0, .py-md-0 {
        padding-top: 0 !important
    }

    .pr-md-0, .px-md-0 {
        padding-right: 0 !important
    }

    .pb-md-0, .py-md-0 {
        padding-bottom: 0 !important
    }

    .pl-md-0, .px-md-0 {
        padding-left: 0 !important
    }

    .p-md-1 {
        padding: .25rem .25rem !important
    }

    .pt-md-1, .py-md-1 {
        padding-top: .25rem !important
    }

    .pr-md-1, .px-md-1 {
        padding-right: .25rem !important
    }

    .pb-md-1, .py-md-1 {
        padding-bottom: .25rem !important
    }

    .pl-md-1, .px-md-1 {
        padding-left: .25rem !important
    }

    .p-md-2 {
        padding: .5rem .5rem !important
    }

    .pt-md-2, .py-md-2 {
        padding-top: .5rem !important
    }

    .pr-md-2, .px-md-2 {
        padding-right: .5rem !important
    }

    .pb-md-2, .py-md-2 {
        padding-bottom: .5rem !important
    }

    .pl-md-2, .px-md-2 {
        padding-left: .5rem !important
    }

    .p-md-3 {
        padding: 1rem 1rem !important
    }

    .pt-md-3, .py-md-3 {
        padding-top: 1rem !important
    }

    .pr-md-3, .px-md-3 {
        padding-right: 1rem !important
    }

    .pb-md-3, .py-md-3 {
        padding-bottom: 1rem !important
    }

    .pl-md-3, .px-md-3 {
        padding-left: 1rem !important
    }

    .p-md-4 {
        padding: 1.5rem 1.5rem !important
    }

    .pt-md-4, .py-md-4 {
        padding-top: 1.5rem !important
    }

    .pr-md-4, .px-md-4 {
        padding-right: 1.5rem !important
    }

    .pb-md-4, .py-md-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-md-4, .px-md-4 {
        padding-left: 1.5rem !important
    }

    .p-md-5 {
        padding: 3rem 3rem !important
    }

    .pt-md-5, .py-md-5 {
        padding-top: 3rem !important
    }

    .pr-md-5, .px-md-5 {
        padding-right: 3rem !important
    }

    .pb-md-5, .py-md-5 {
        padding-bottom: 3rem !important
    }

    .pl-md-5, .px-md-5 {
        padding-left: 3rem !important
    }

    .m-md-auto {
        margin: auto auto !important
    }

    .mt-md-auto, .my-md-auto {
        margin-top: auto !important
    }

    .mr-md-auto, .mx-md-auto {
        margin-right: auto !important
    }

    .mb-md-auto, .my-md-auto {
        margin-bottom: auto !important
    }

    .ml-md-auto, .mx-md-auto {
        margin-left: auto !important
    }
}

@media (min-width: 992px) {
    .m-lg-0 {
        margin: 0 0 !important
    }

    .mt-lg-0, .my-lg-0 {
        margin-top: 0 !important
    }

    .mr-lg-0, .mx-lg-0 {
        margin-right: 0 !important
    }

    .mb-lg-0, .my-lg-0 {
        margin-bottom: 0 !important
    }

    .ml-lg-0, .mx-lg-0 {
        margin-left: 0 !important
    }

    .m-lg-1 {
        margin: .25rem .25rem !important
    }

    .mt-lg-1, .my-lg-1 {
        margin-top: .25rem !important
    }

    .mr-lg-1, .mx-lg-1 {
        margin-right: .25rem !important
    }

    .mb-lg-1, .my-lg-1 {
        margin-bottom: .25rem !important
    }

    .ml-lg-1, .mx-lg-1 {
        margin-left: .25rem !important
    }

    .m-lg-2 {
        margin: .5rem .5rem !important
    }

    .mt-lg-2, .my-lg-2 {
        margin-top: .5rem !important
    }

    .mr-lg-2, .mx-lg-2 {
        margin-right: .5rem !important
    }

    .mb-lg-2, .my-lg-2 {
        margin-bottom: .5rem !important
    }

    .ml-lg-2, .mx-lg-2 {
        margin-left: .5rem !important
    }

    .m-lg-3 {
        margin: 1rem 1rem !important
    }

    .mt-lg-3, .my-lg-3 {
        margin-top: 1rem !important
    }

    .mr-lg-3, .mx-lg-3 {
        margin-right: 1rem !important
    }

    .mb-lg-3, .my-lg-3 {
        margin-bottom: 1rem !important
    }

    .ml-lg-3, .mx-lg-3 {
        margin-left: 1rem !important
    }

    .m-lg-4 {
        margin: 1.5rem 1.5rem !important
    }

    .mt-lg-4, .my-lg-4 {
        margin-top: 1.5rem !important
    }

    .mr-lg-4, .mx-lg-4 {
        margin-right: 1.5rem !important
    }

    .mb-lg-4, .my-lg-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-lg-4, .mx-lg-4 {
        margin-left: 1.5rem !important
    }

    .m-lg-5 {
        margin: 3rem 3rem !important
    }

    .mt-lg-5, .my-lg-5 {
        margin-top: 3rem !important
    }

    .mr-lg-5, .mx-lg-5 {
        margin-right: 3rem !important
    }

    .mb-lg-5, .my-lg-5 {
        margin-bottom: 3rem !important
    }

    .ml-lg-5, .mx-lg-5 {
        margin-left: 3rem !important
    }

    .p-lg-0 {
        padding: 0 0 !important
    }

    .pt-lg-0, .py-lg-0 {
        padding-top: 0 !important
    }

    .pr-lg-0, .px-lg-0 {
        padding-right: 0 !important
    }

    .pb-lg-0, .py-lg-0 {
        padding-bottom: 0 !important
    }

    .pl-lg-0, .px-lg-0 {
        padding-left: 0 !important
    }

    .p-lg-1 {
        padding: .25rem .25rem !important
    }

    .pt-lg-1, .py-lg-1 {
        padding-top: .25rem !important
    }

    .pr-lg-1, .px-lg-1 {
        padding-right: .25rem !important
    }

    .pb-lg-1, .py-lg-1 {
        padding-bottom: .25rem !important
    }

    .pl-lg-1, .px-lg-1 {
        padding-left: .25rem !important
    }

    .p-lg-2 {
        padding: .5rem .5rem !important
    }

    .pt-lg-2, .py-lg-2 {
        padding-top: .5rem !important
    }

    .pr-lg-2, .px-lg-2 {
        padding-right: .5rem !important
    }

    .pb-lg-2, .py-lg-2 {
        padding-bottom: .5rem !important
    }

    .pl-lg-2, .px-lg-2 {
        padding-left: .5rem !important
    }

    .p-lg-3 {
        padding: 1rem 1rem !important
    }

    .pt-lg-3, .py-lg-3 {
        padding-top: 1rem !important
    }

    .pr-lg-3, .px-lg-3 {
        padding-right: 1rem !important
    }

    .pb-lg-3, .py-lg-3 {
        padding-bottom: 1rem !important
    }

    .pl-lg-3, .px-lg-3 {
        padding-left: 1rem !important
    }

    .p-lg-4 {
        padding: 1.5rem 1.5rem !important
    }

    .pt-lg-4, .py-lg-4 {
        padding-top: 1.5rem !important
    }

    .pr-lg-4, .px-lg-4 {
        padding-right: 1.5rem !important
    }

    .pb-lg-4, .py-lg-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-lg-4, .px-lg-4 {
        padding-left: 1.5rem !important
    }

    .p-lg-5 {
        padding: 3rem 3rem !important
    }

    .pt-lg-5, .py-lg-5 {
        padding-top: 3rem !important
    }

    .pr-lg-5, .px-lg-5 {
        padding-right: 3rem !important
    }

    .pb-lg-5, .py-lg-5 {
        padding-bottom: 3rem !important
    }

    .pl-lg-5, .px-lg-5 {
        padding-left: 3rem !important
    }

    .m-lg-auto {
        margin: auto auto !important
    }

    .mt-lg-auto, .my-lg-auto {
        margin-top: auto !important
    }

    .mr-lg-auto, .mx-lg-auto {
        margin-right: auto !important
    }

    .mb-lg-auto, .my-lg-auto {
        margin-bottom: auto !important
    }

    .ml-lg-auto, .mx-lg-auto {
        margin-left: auto !important
    }
}

@media (min-width: 1200px) {
    .m-xl-0 {
        margin: 0 0 !important
    }

    .mt-xl-0, .my-xl-0 {
        margin-top: 0 !important
    }

    .mr-xl-0, .mx-xl-0 {
        margin-right: 0 !important
    }

    .mb-xl-0, .my-xl-0 {
        margin-bottom: 0 !important
    }

    .ml-xl-0, .mx-xl-0 {
        margin-left: 0 !important
    }

    .m-xl-1 {
        margin: .25rem .25rem !important
    }

    .mt-xl-1, .my-xl-1 {
        margin-top: .25rem !important
    }

    .mr-xl-1, .mx-xl-1 {
        margin-right: .25rem !important
    }

    .mb-xl-1, .my-xl-1 {
        margin-bottom: .25rem !important
    }

    .ml-xl-1, .mx-xl-1 {
        margin-left: .25rem !important
    }

    .m-xl-2 {
        margin: .5rem .5rem !important
    }

    .mt-xl-2, .my-xl-2 {
        margin-top: .5rem !important
    }

    .mr-xl-2, .mx-xl-2 {
        margin-right: .5rem !important
    }

    .mb-xl-2, .my-xl-2 {
        margin-bottom: .5rem !important
    }

    .ml-xl-2, .mx-xl-2 {
        margin-left: .5rem !important
    }

    .m-xl-3 {
        margin: 1rem 1rem !important
    }

    .mt-xl-3, .my-xl-3 {
        margin-top: 1rem !important
    }

    .mr-xl-3, .mx-xl-3 {
        margin-right: 1rem !important
    }

    .mb-xl-3, .my-xl-3 {
        margin-bottom: 1rem !important
    }

    .ml-xl-3, .mx-xl-3 {
        margin-left: 1rem !important
    }

    .m-xl-4 {
        margin: 1.5rem 1.5rem !important
    }

    .mt-xl-4, .my-xl-4 {
        margin-top: 1.5rem !important
    }

    .mr-xl-4, .mx-xl-4 {
        margin-right: 1.5rem !important
    }

    .mb-xl-4, .my-xl-4 {
        margin-bottom: 1.5rem !important
    }

    .ml-xl-4, .mx-xl-4 {
        margin-left: 1.5rem !important
    }

    .m-xl-5 {
        margin: 3rem 3rem !important
    }

    .mt-xl-5, .my-xl-5 {
        margin-top: 3rem !important
    }

    .mr-xl-5, .mx-xl-5 {
        margin-right: 3rem !important
    }

    .mb-xl-5, .my-xl-5 {
        margin-bottom: 3rem !important
    }

    .ml-xl-5, .mx-xl-5 {
        margin-left: 3rem !important
    }

    .p-xl-0 {
        padding: 0 0 !important
    }

    .pt-xl-0, .py-xl-0 {
        padding-top: 0 !important
    }

    .pr-xl-0, .px-xl-0 {
        padding-right: 0 !important
    }

    .pb-xl-0, .py-xl-0 {
        padding-bottom: 0 !important
    }

    .pl-xl-0, .px-xl-0 {
        padding-left: 0 !important
    }

    .p-xl-1 {
        padding: .25rem .25rem !important
    }

    .pt-xl-1, .py-xl-1 {
        padding-top: .25rem !important
    }

    .pr-xl-1, .px-xl-1 {
        padding-right: .25rem !important
    }

    .pb-xl-1, .py-xl-1 {
        padding-bottom: .25rem !important
    }

    .pl-xl-1, .px-xl-1 {
        padding-left: .25rem !important
    }

    .p-xl-2 {
        padding: .5rem .5rem !important
    }

    .pt-xl-2, .py-xl-2 {
        padding-top: .5rem !important
    }

    .pr-xl-2, .px-xl-2 {
        padding-right: .5rem !important
    }

    .pb-xl-2, .py-xl-2 {
        padding-bottom: .5rem !important
    }

    .pl-xl-2, .px-xl-2 {
        padding-left: .5rem !important
    }

    .p-xl-3 {
        padding: 1rem 1rem !important
    }

    .pt-xl-3, .py-xl-3 {
        padding-top: 1rem !important
    }

    .pr-xl-3, .px-xl-3 {
        padding-right: 1rem !important
    }

    .pb-xl-3, .py-xl-3 {
        padding-bottom: 1rem !important
    }

    .pl-xl-3, .px-xl-3 {
        padding-left: 1rem !important
    }

    .p-xl-4 {
        padding: 1.5rem 1.5rem !important
    }

    .pt-xl-4, .py-xl-4 {
        padding-top: 1.5rem !important
    }

    .pr-xl-4, .px-xl-4 {
        padding-right: 1.5rem !important
    }

    .pb-xl-4, .py-xl-4 {
        padding-bottom: 1.5rem !important
    }

    .pl-xl-4, .px-xl-4 {
        padding-left: 1.5rem !important
    }

    .p-xl-5 {
        padding: 3rem 3rem !important
    }

    .pt-xl-5, .py-xl-5 {
        padding-top: 3rem !important
    }

    .pr-xl-5, .px-xl-5 {
        padding-right: 3rem !important
    }

    .pb-xl-5, .py-xl-5 {
        padding-bottom: 3rem !important
    }

    .pl-xl-5, .px-xl-5 {
        padding-left: 3rem !important
    }

    .m-xl-auto {
        margin: auto auto !important
    }

    .mt-xl-auto, .my-xl-auto {
        margin-top: auto !important
    }

    .mr-xl-auto, .mx-xl-auto {
        margin-right: auto !important
    }

    .mb-xl-auto, .my-xl-auto {
        margin-bottom: auto !important
    }

    .ml-xl-auto, .mx-xl-auto {
        margin-left: auto !important
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.visible {
    visibility: visible !important
}

@media print {
    *, ::after, ::before {
        text-shadow: none !important;
        box-shadow: none !important
    }

    a:not(.btn) {
        text-decoration: underline
    }

    abbr[title]::after {
        content: " (" attr(title) ")"
    }

    pre {
        white-space: pre-wrap !important
    }

    blockquote, pre {
        border: 1px solid #999;
        page-break-inside: avoid
    }

    thead {
        display: table-header-group
    }

    img, tr {
        page-break-inside: avoid
    }

    h2, h3, p {
        orphans: 3;
        widows: 3
    }

    h2, h3 {
        page-break-after: avoid
    }

    @page {
        size: a3
    }

    body {
        min-width: 992px !important
    }

    .container {
        min-width: 992px !important
    }

    .navbar {
        display: none
    }

    .badge {
        border: 1px solid #000
    }

    .table {
        border-collapse: collapse !important
    }

    .table td, .table th {
        background-color: #fff !important
    }

    .table-bordered td, .table-bordered th {
        border: 1px solid #ddd !important
    }
}

.calendar-header, .no-event-label {
    font-weight: 700;
    text-align: center
}

.calendar-event-inner, .monthview-dateCell.monthview-primary-with-event {
    background-color: #d5f0fa;
    color: #1d4477
}

.event-detail, .monthview-dateCell {
    cursor: pointer
}

#events .calendar {
    font-size: 18px;
    color: #1d4477
}

.module-accordion .nav-right {
    padding-right: 1px
}

.table-bordered > thead > tr > th {
    border: none;
    color: #1d4477;
    font-weight: 700;
    border-bottom: 2px solid #1d4477
}

.event-detail-wrapper {
    transition: 1s linear all;
    -webkit-transition: 1s linear all;
    position: relative;
    padding: 20px;
    transition: all .7s;
    color: #1d4477;
    background: #ffffff
}

.event-detail-wrapper .event-time > span.sameDay {
    display: none
}

thead {
    border-bottom: 1px solid #1d4477
}

.nav-left {
    text-align: left;
    padding-left: 1px;
    padding-top: 1px
}

.nav-right {
    text-align: right;
    padding-right: 0;
    padding-top: 1px
}

.scrollable {
    width: 100%
}

.table-fixed {
    table-layout: fixed
}

.no-event-label {
    color: #a9a9a9
}

.event-detail-container {
    border-top: 10px solid #1d4477;
    position: relative
}

.event-detail-wrapper:first-of-type:before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -7px;
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #1d4477;
    clear: both
}

.event-detail {
    white-space: nowrap;
    text-overflow: ellipsis
}

.calendar-header {
    padding-top: 7px;
    color: #1d4477
}

.calendar-hour-column, .calendar-week-column {
    width: 50px
}

.calendar-navbar {
    margin-bottom: 5px
}

.calendar-event-wrap {
    position: relative;
    height: 100%
}

.calendar-event {
    position: absolute;
    padding: 2px;
    cursor: pointer
}

.calendar-event-inner {
    overflow: hidden;
    height: 100%;
    width: 100%;
    padding: 2px;
    line-height: 15px
}

.calendar-cell {
    padding: 0 0 !important;
    height: 37px
}

.monthview-selected {
    background-color: #3ed7c3 !important;
    color: #fff !important
}

.monthview-dateCell.text-past.monthview-thismonth:hover > div {
    background: #e8e8e4;
    color: #a5a5a5
}

.monthview-dateCell.text-past.monthview-thismonth:hover {
    cursor: default !important
}

.monthview-dateCell.text-past, .monthview-dateCell.text-past.monthview-thismonth {
    background: #e8e8e4
}

.monthview-datetable td:not(.monthview-thismonth) {
    background: #e8e8e4 !important
}

.monthview-datetable td:not(.monthview-thismonth):hover {
    cursor: default !important
}

.monthview-datetable td:not(.monthview-thismonth) div {
    background: #e8e8e4 !important;
    color: #a5a5a5 !important;
    cursor: default !important
}

.monthview-dateCell.text-past:hover {
    background: #e8e8e4;
    color: #a5a5a5;
    cursor: default !important
}

.monthview-dateCell.text-past:hover div {
    background: #e8e8e4 !important;
    color: #a5a5a5 !important;
    cursor: default !important
}

.monthview-remainingmonth div {
    font-weight: 700
}

.monthview-dateCell.monthview-current {
    background: #fff;
    position: relative
}

.monthview-today {
    position: relative
}

.monthview-today div:after {
    border: 3px solid #1d4477;
    display: block;
    width: calc(100% - 4px);
    height: calc(100% - 4px);
    content: '';
    top: 2px;
    left: 2px;
    position: absolute
}

.calendar .monthview-dateCell {
    border-tOp: none;
    border-right: 0
}

.calendar {
    background: #fff !important;
    padding: 0;
    overflow: hidden
}

.calendarheadline {
    font: 700 22px RWESansPS;
    color: #fff;
    display: inline-block;
    margin-bottom: 20px
}

.calendar-navbar .btn {
    border: 0;
    background: #0c5089;
    color: #fff;
    font-size: 18px;
    line-height: 1rem;
    padding: 10px;
    border-radius: 0;
    transition: all .5s
}

.calendar-navbar .btn:hover {
    background: #3ed7c3 !important
}

.monthview-eventdetail-timecolumn {
    width: 110px;
    overflow: hidden
}

.monthview-secondary-with-event {
    background-color: #d5f0fa
}

.dayview-allday-label, .weekview-allday-label {
    float: left;
    height: 100%;
    line-height: 50px;
    text-align: center;
    width: 50px;
    border: 1px solid #ddd;
    border-right-width: 0
}

.dayview-allday-content-wrapper, .weekview-allday-content-wrapper {
    margin-left: 50px;
    overflow-x: hidden;
    overflow-y: auto;
    height: 100%
}

.monthview-datetable, .weekview-header {
    margin-bottom: 0;
    padding: 0 10px 15px
}

td.monthview-today {
    background: #fff !important;
    color: #1d4477 !important
}

td.monthview-today.monthview-selected {
    background-color:#3ed7c3 !important;
    color: #fff !important
}

td.monthview-dateCell:hover, td.monthview-dateCell:hover .text-muted, td.monthview-dateCell:hover .text-past {
    background: #3ed7c3 !important;
    color: #fff !important;
}

b.ng-binding {
    font-weight: 700;
}

td.monthview-dateCell:hover .text-past {
    cursor: default !important
}

.weekview-header th {
    overflow: hidden;
    white-space: nowrap
}

.monthview-datetable.table-bordered > tbody > tr > td.monthview-dateCell:nth-of-type(2) {
    border-left: 0
}

.monthview-datetable.table-bordered > tbody > tr > td.monthview-dateCell:last-of-type {
    border-right: 0
}

.dayview-allday-table, .weekview-allday-table {
    height: 52px
}

.dayview-allday-content-table, .weekview-allday-content-table {
    min-height: 100%;
    margin-bottom: 0
}

.gutter-column {
    padding-left: 0 !important;
    padding-right: 0 !important
}

.event-title {
    font-size: 20px
}

.event-time {
    display: inline-block;
    background-color: #3ed8c3;
    margin-right: 10px;
    padding: 0 5px;
    width: auto;
    position: relative;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.event-time, .event-time > span {
    font: 700 12px/20px RWESansPS;
    color: #fff;
}

#events .dropdown-toggle {
    height:55px;
}

.event-category, .event-location {
    font-size: 13px;
    margin: 5px 0 8px
}

.entirebox {
    left: 0;
    z-index: 998;
    top: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}

.event-detail-wrapper:hover {
    background: #d5f0fa;
    color: #1d4477
}

.event-detail-wrapper:after {
    content: '';
    width: calc(100% - 40px);
    margin: auto;
    display: block;
    height: 1px;
    background: #fff;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0
}

.event-detail-wrapper:last-of-type:after {
    content: none
}

.event-detail-container, .showEventDetail {
    background: #1d4477
}

.event-detail-wrapper:last-of-type {
    border-bottom: 0
}

.text-past {
    color: #a5a5a5
}

button.hidden {
    display: none
}

@media (max-width: 750px) {
    .calendar-hour-column, .calendar-week-column, .dayview-allday-label, .weekview-allday-label {
        width: 32px
    }

    .table > tbody > tr > td.calendar-hour-column, .table > thead > tr > th.weekview-header-label {
        padding-left: 0;
        padding-right: 0;
        font-size: 12px;
        line-height: 12px;
        vertical-align: middle
    }

    .dayview-allday-label, .weekview-allday-label {
        padding-top: 4px;
        line-height: inherit
    }

    .dayview-allday-content-wrapper, .weekview-allday-content-wrapper {
        margin-left: 32px
    }

    .calendar-event-inner {
        font-size: 12px
    }
}

@media screen and (max-width: 639px) {
    .nav-left, .nav-right {
        padding: 1px
    }
}

@media screen and (max-width: 420px) {
    .table > tbody > tr > td, .table > tbody > tr > th, .table > tfoot > tr > td, .table > tfoot > tr > th, .table > thead > tr > td, .table > thead > tr > th {
        font-size: 12px
    }
}

abbr, address, article, aside, audio, b, blockquote, body, body div, caption, cite, code, dd, del, details, dfn, dl, dt, em, fieldset, figure, footer, form, h1, h2, h3, h4, h5, h6, header, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, p, pre, q, samp, section, small, span, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, ul, var, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font-weight: 400;
    vertical-align: baseline;
    background: 0 0
}

article, aside, details, figure, footer, header, main, nav, section, summary {
    display: block
}

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

embed, img, object {
    max-width: 100%
}

ul {
    list-style: none
}

blockquote, q {
    quotes: none
}

blockquote:after, blockquote:before, q:after, q:before {
    content: '';
    content: none
}

del {
    text-decoration: line-through
}

abbr[title], dfn[title] {
    border-bottom: 1px dotted #000;
    cursor: help
}

td {
    font-weight: 400;
    vertical-align: top
}

input, select {
    vertical-align: middle
}

input[type=radio] {
    vertical-align: text-bottom
}

input[type=checkbox] {
    vertical-align: bottom;
    height: auto;
    width: auto
}

.ie7 input[type=checkbox] {
    vertical-align: baseline
}

.ie6 input {
    vertical-align: text-bottom
}

input, select, textarea {
    font: 99% sans-serif
}

strong {
    font-weight: 700 !important;
}

td, td img {
    vertical-align: top
}

.clickable, button, input[type=button], input[type=file], input[type=submit], label {
    cursor: pointer
}

button, input[type=button] {
    width: auto;
    overflow: visible
}

.ie7 img {
    -ms-interpolation-mode: bicubic
}

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

.owl-carousel, .owl-carousel .owl-item {
    -webkit-tap-highlight-color: transparent;
    position: relative
}

.owl-carousel {
    display: none;
    width: 100%;
    z-index: 1;
    /*overflow:hidden;*/
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    -moz-backface-visibility: hidden
}

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

#event-slider-information + .owl-carousel > .owl-stage-outer {
    overflow:hidden;
}

.owl-carousel .owl-item, .owl-carousel .owl-wrapper {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0)
}

.owl-carousel .owl-item {
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-touch-callout: none
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%
}

.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;
    -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(owl.video.play.png) no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform .1s ease
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    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: no-repeat center center;
    background-size: contain;
    transition: opacity .4s ease
}

.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%
}

.owl-theme .owl-dots, .owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
    margin-top: 10px
}

.owl-theme .owl-nav [class*=owl-] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #f5f3f6;;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    background: #f5f3f6;;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px;
    margin: 0 2px;
    width: 13px;
    height: 13px;
    display: inline-block;
    transform: translateY(1px)
}

.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: #3ed8c3
}

body.sidr-animating:after,body.sidr-open.sidr-animating:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, rgba(0, 161, 159, .75), rgba(29, 68, 119, .75));
    z-index: 9;
    opacity:0;
    transition:0.3s;
}

body.sidr-open:after{
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(225deg, rgba(0, 161, 159, .75), rgba(29, 68, 119, .75));
    z-index: 999;
    transition:0.3s;
    opacity:1;
}

.sidr {
    overflow-y: auto;
    top: 0;
    height: 100%;
    z-index: 999999;
    overflow-x: hidden;
    display: block;
    position: fixed;
    top: 0;
    height: 100%;
    z-index: 999999;
    width: 375px;
    overflow-x: hidden;
    overflow-y: auto;
    font: 500 22px RWESansPS;
    /*background: #0d758c;*/
    background: #ffffff;
    color: #fff;
    box-shadow: none;
    padding: 30px 35px;
}

.sidr .sidr-inner {
    padding: 0 0 15px
}

.sidr .sidr-inner > p {
    margin-left: 15px;
    margin-right: 15px
}

.sidr.right {
    left: auto;
    right: -260px;
    right: -375px
}

.sidr.left {
    left: -260px;
    right: auto
}

.sidr h1, .sidr h2, .sidr h3, .sidr h4, .sidr h5, .sidr h6 {
    background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjAuMCIgeDI9IjAuNSIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzRkNGQ0ZCIvPjxzdG9wIG9mZnNldD0iMTAwJSIgc3RvcC1jb2xvcj0iIzFhMWExYSIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==);
    background-size: 100%;
    background-image: -webkit-gradient(linear, 50% 0, 50% 100%, color-stop(0, #4d4d4d), color-stop(100%, #1a1a1a));
    background-image: -moz-linear-gradient(#4d4d4d, #1a1a1a);
    background-image: -webkit-linear-gradient(#4d4d4d, #1a1a1a);
    background-image: linear-gradient(#4d4d4d, #1a1a1a);
    font-size: 11px;
    font-weight: 400;
    padding: 0 15px;
    margin: 0 0 5px;
    color: #fff;
    line-height: 24px;
    box-shadow: 0 5px 5px 3px rgba(0, 0, 0, .2)
}

.sidr p {
    font-size: 13px;
    margin: 0 0 12px
}

.sidr p a {
    color: rgba(255, 255, 255, .9)
}

.sidr > p {
    margin-left: 15px;
    margin-right: 15px
}

.sidr ul {
    display: block;
    margin: 0 0 15px;
    padding: 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #4d4d4d;
    border: none
}

.sidr ul li {
    display: block;
    margin: 0;
    line-height: 48px;
    border-top: 1px solid #4d4d4d;
    border-bottom: 1px solid #1a1a1a;
    border: none
}

.sidr ul li.active, .sidr ul li.sidr-class-active, .sidr ul li:hover {
    border-top: 0;
    line-height: 49px;
    line-height: 60px
}

.sidr ul li.active > a, .sidr ul li.active > span, .sidr ul li.sidr-class-active > a, .sidr ul li.sidr-class-active > span, .sidr ul li:hover > a, .sidr ul li:hover > span {
    box-shadow: none
}

.sidr ul li a, .sidr ul li span {
    display: block;
    text-decoration: none;
    padding: 0 15px;
    display: block;
    text-decoration: none;
    color: #fff;
    color: #1d4477;
    transition: opacity .8s
}

.sidr ul li ul {
    border-bottom: 0;
    margin: 0
}

.sidr ul li ul li {
    line-height: 30px;
    font-size: 13px;
    padding: 2px 0
}

.sidr ul li ul li:last-child {
    border-bottom: 0
}

.sidr ul li ul li.active, .sidr ul li ul li.sidr-class-active, .sidr ul li ul li:hover {
    border-top: 0;
    line-height: 41px;
    line-height: 30px
}

.sidr ul li ul li.active > a, .sidr ul li ul li.active > span, .sidr ul li ul li.sidr-class-active > a, .sidr ul li ul li.sidr-class-active > span, .sidr ul li ul li:hover > a, .sidr ul li ul li:hover > span {
    box-shadow: none
}

.sidr ul li ul li a, .sidr ul li ul li span {
    padding-left: 30px;
    font: 18px RWESansPS;
    color: #fff;
    color: #1d4477;
}

.sidr form {
    margin: 0 15px
}

.sidr label {
    font-size: 13px
}

.sidr input[type=date], .sidr input[type=datetime], .sidr input[type=email], .sidr input[type=number], .sidr input[type=password], .sidr input[type=search], .sidr input[type=tel], .sidr input[type=text], .sidr input[type=time], .sidr input[type=url], .sidr select, .sidr textarea {
    width: 100%;
    font-size: 13px;
    padding: 5px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 0 10px;
    border-radius: 2px;
    border: 0;
    background: rgba(0, 0, 0, .1);
    color: rgba(255, 255, 255, .6);
    display: block;
    clear: both
}

.sidr input[type=checkbox] {
    width: auto;
    display: inline;
    clear: none
}

.sidr input[type=button], .sidr input[type=submit] {
    color: #333;
    background: #fff
}

.sidr input[type=button]:hover, .sidr input[type=submit]:hover {
    background: rgba(255, 255, 255, .9)
}


@-webkit-keyframes bounce {
    20%, 53%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

@keyframes bounce {
    20%, 53%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    40%, 43% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -30px, 0);
        transform: translate3d(0, -30px, 0)
    }
    70% {
        -webkit-animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        animation-timing-function: cubic-bezier(.755, .05, .855, .06);
        -webkit-transform: translate3d(0, -15px, 0);
        transform: translate3d(0, -15px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -4px, 0);
        transform: translate3d(0, -4px, 0)
    }
}

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

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

@-webkit-keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes pulse {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    50% {
        -webkit-transform: scale3d(1.05, 1.05, 1.05);
        transform: scale3d(1.05, 1.05, 1.05)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    30% {
        -webkit-transform: scale3d(1.25, .75, 1);
        transform: scale3d(1.25, .75, 1)
    }
    40% {
        -webkit-transform: scale3d(.75, 1.25, 1);
        transform: scale3d(.75, 1.25, 1)
    }
    50% {
        -webkit-transform: scale3d(1.15, .85, 1);
        transform: scale3d(1.15, .85, 1)
    }
    65% {
        -webkit-transform: scale3d(.95, 1.05, 1);
        transform: scale3d(.95, 1.05, 1)
    }
    75% {
        -webkit-transform: scale3d(1.05, .95, 1);
        transform: scale3d(1.05, .95, 1)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

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

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

@-webkit-keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@keyframes headShake {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    6.5% {
        -webkit-transform: translateX(-6px) rotateY(-9deg);
        transform: translateX(-6px) rotateY(-9deg)
    }
    18.5% {
        -webkit-transform: translateX(5px) rotateY(7deg);
        transform: translateX(5px) rotateY(7deg)
    }
    31.5% {
        -webkit-transform: translateX(-3px) rotateY(-5deg);
        transform: translateX(-3px) rotateY(-5deg)
    }
    43.5% {
        -webkit-transform: translateX(2px) rotateY(3deg);
        transform: translateX(2px) rotateY(3deg)
    }
    50% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
}

@-webkit-keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@keyframes swing {
    20% {
        -webkit-transform: rotate3d(0, 0, 1, 15deg);
        transform: rotate3d(0, 0, 1, 15deg)
    }
    40% {
        -webkit-transform: rotate3d(0, 0, 1, -10deg);
        transform: rotate3d(0, 0, 1, -10deg)
    }
    60% {
        -webkit-transform: rotate3d(0, 0, 1, 5deg);
        transform: rotate3d(0, 0, 1, 5deg)
    }
    80% {
        -webkit-transform: rotate3d(0, 0, 1, -5deg);
        transform: rotate3d(0, 0, 1, -5deg)
    }
    to {
        -webkit-transform: rotate3d(0, 0, 1, 0deg);
        transform: rotate3d(0, 0, 1, 0deg)
    }
}

@-webkit-keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes tada {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
    10%, 20% {
        -webkit-transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg)
    }
    30%, 50%, 70%, 90% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg)
    }
    40%, 60%, 80% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg)
    }
    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes wobble {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    15% {
        -webkit-transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg)
    }
    30% {
        -webkit-transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg)
    }
    45% {
        -webkit-transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg)
    }
    60% {
        -webkit-transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg)
    }
    75% {
        -webkit-transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes jello {
    11.1%, from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@keyframes jello {
    11.1%, from, to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    22.2% {
        -webkit-transform: skewX(-12.5deg) skewY(-12.5deg);
        transform: skewX(-12.5deg) skewY(-12.5deg)
    }
    33.3% {
        -webkit-transform: skewX(6.25deg) skewY(6.25deg);
        transform: skewX(6.25deg) skewY(6.25deg)
    }
    44.4% {
        -webkit-transform: skewX(-3.125deg) skewY(-3.125deg);
        transform: skewX(-3.125deg) skewY(-3.125deg)
    }
    55.5% {
        -webkit-transform: skewX(1.5625deg) skewY(1.5625deg);
        transform: skewX(1.5625deg) skewY(1.5625deg)
    }
    66.6% {
        -webkit-transform: skewX(-.78125deg) skewY(-.78125deg);
        transform: skewX(-.78125deg) skewY(-.78125deg)
    }
    77.7% {
        -webkit-transform: skewX(.390625deg) skewY(.390625deg);
        transform: skewX(.390625deg) skewY(.390625deg)
    }
    88.8% {
        -webkit-transform: skewX(-.1953125deg) skewY(-.1953125deg);
        transform: skewX(-.1953125deg) skewY(-.1953125deg)
    }
}

@-webkit-keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes heartBeat {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    14% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    28% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
    42% {
        -webkit-transform: scale(1.3);
        transform: scale(1.3)
    }
    70% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes bounceIn {
    20%, 40%, 60%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@keyframes bounceIn {
    20%, 40%, 60%, 80%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    40% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03)
    }
    80% {
        -webkit-transform: scale3d(.97, .97, .97);
        transform: scale3d(.97, .97, .97)
    }
    to {
        opacity: 1;
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1)
    }
}

@-webkit-keyframes bounceInDown {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInDown {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0, -3000px, 0);
        transform: translate3d(0, -3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, 25px, 0);
        transform: translate3d(0, 25px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, 5px, 0);
        transform: translate3d(0, 5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes bounceInLeft {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInLeft {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    0% {
        opacity: 0;
        -webkit-transform: translate3d(-3000px, 0, 0);
        transform: translate3d(-3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(25px, 0, 0);
        transform: translate3d(25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(-10px, 0, 0);
        transform: translate3d(-10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(5px, 0, 0);
        transform: translate3d(5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes bounceInRight {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInRight {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(3000px, 0, 0);
        transform: translate3d(3000px, 0, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(-25px, 0, 0);
        transform: translate3d(-25px, 0, 0)
    }
    75% {
        -webkit-transform: translate3d(10px, 0, 0);
        transform: translate3d(10px, 0, 0)
    }
    90% {
        -webkit-transform: translate3d(-5px, 0, 0);
        transform: translate3d(-5px, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes bounceInUp {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes bounceInUp {
    60%, 75%, 90%, from, to {
        -webkit-animation-timing-function: cubic-bezier(.215, .61, .355, 1);
        animation-timing-function: cubic-bezier(.215, .61, .355, 1)
    }
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 3000px, 0);
        transform: translate3d(0, 3000px, 0)
    }
    60% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    75% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    90% {
        -webkit-transform: translate3d(0, -5px, 0);
        transform: translate3d(0, -5px, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@keyframes bounceOut {
    20% {
        -webkit-transform: scale3d(.9, .9, .9);
        transform: scale3d(.9, .9, .9)
    }
    50%, 55% {
        opacity: 1;
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1)
    }
    to {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
}

@-webkit-keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes bounceOutDown {
    20% {
        -webkit-transform: translate3d(0, 10px, 0);
        transform: translate3d(0, 10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, -20px, 0);
        transform: translate3d(0, -20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@-webkit-keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes bounceOutLeft {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(20px, 0, 0);
        transform: translate3d(20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@-webkit-keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes bounceOutRight {
    20% {
        opacity: 1;
        -webkit-transform: translate3d(-20px, 0, 0);
        transform: translate3d(-20px, 0, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@-webkit-keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes bounceOutUp {
    20% {
        -webkit-transform: translate3d(0, -10px, 0);
        transform: translate3d(0, -10px, 0)
    }
    40%, 45% {
        opacity: 1;
        -webkit-transform: translate3d(0, 20px, 0);
        transform: translate3d(0, 20px, 0)
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@-webkit-keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInDownBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInLeftBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInRightBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes fadeInUpBig {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes fadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@-webkit-keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@keyframes fadeOutDown {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 100%, 0);
        transform: translate3d(0, 100%, 0)
    }
}

@-webkit-keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, 2000px, 0);
        transform: translate3d(0, 2000px, 0)
    }
}

@-webkit-keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@keyframes fadeOutLeft {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0)
    }
}

@-webkit-keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(-2000px, 0, 0);
        transform: translate3d(-2000px, 0, 0)
    }
}

@-webkit-keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@keyframes fadeOutRight {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0);
        transform: translate3d(100%, 0, 0)
    }
}

@-webkit-keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(2000px, 0, 0);
        transform: translate3d(2000px, 0, 0)
    }
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0)
    }
}

@-webkit-keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -2000px, 0);
        transform: translate3d(0, -2000px, 0)
    }
}

@-webkit-keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@keyframes flip {
    from {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    40% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        -webkit-animation-timing-function: ease-out;
        animation-timing-function: ease-out
    }
    50% {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    80% {
        -webkit-transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(.95, .95, .95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    to {
        -webkit-transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
}

@-webkit-keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInX {
    from {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@keyframes flipInY {
    from {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in;
        opacity: 0
    }
    40% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        -webkit-animation-timing-function: ease-in;
        animation-timing-function: ease-in
    }
    60% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1
    }
    80% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg)
    }
    to {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
}

@-webkit-keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutX {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0
    }
}

@-webkit-keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@keyframes flipOutY {
    from {
        -webkit-transform: perspective(400px);
        transform: perspective(400px)
    }
    30% {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1
    }
    to {
        -webkit-transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0
    }
}

@-webkit-keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes lightSpeedIn {
    from {
        -webkit-transform: translate3d(100%, 0, 0) skewX(-30deg);
        transform: translate3d(100%, 0, 0) skewX(-30deg);
        opacity: 0
    }
    60% {
        -webkit-transform: skewX(20deg);
        transform: skewX(20deg);
        opacity: 1
    }
    80% {
        -webkit-transform: skewX(-5deg);
        transform: skewX(-5deg)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

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

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

@-webkit-keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateIn {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, -200deg);
        transform: rotate3d(0, 0, 1, -200deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes rotateInUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -90deg);
        transform: rotate3d(0, 0, 1, -90deg);
        opacity: 0
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@keyframes rotateOut {
    from {
        -webkit-transform-origin: center;
        transform-origin: center;
        opacity: 1
    }
    to {
        -webkit-transform-origin: center;
        transform-origin: center;
        -webkit-transform: rotate3d(0, 0, 1, 200deg);
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0
    }
}

@-webkit-keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, 45deg);
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0
    }
}

@-webkit-keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutDownRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@-webkit-keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@keyframes rotateOutUpLeft {
    from {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: left bottom;
        transform-origin: left bottom;
        -webkit-transform: rotate3d(0, 0, 1, -45deg);
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0
    }
}

@-webkit-keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

@keyframes rotateOutUpRight {
    from {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        opacity: 1
    }
    to {
        -webkit-transform-origin: right bottom;
        transform-origin: right bottom;
        -webkit-transform: rotate3d(0, 0, 1, 90deg);
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0
    }
}

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

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

@-webkit-keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        -webkit-transform: scale(.1) rotate(30deg);
        transform: scale(.1) rotate(30deg);
        -webkit-transform-origin: center bottom;
        transform-origin: center bottom
    }
    50% {
        -webkit-transform: rotate(-10deg);
        transform: rotate(-10deg)
    }
    70% {
        -webkit-transform: rotate(3deg);
        transform: rotate(3deg)
    }
    to {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@keyframes rollIn {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
        transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg)
    }
    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
}

@-webkit-keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

@keyframes rollOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0;
        -webkit-transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg)
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        animation: unset !important;
        -webkit-transition: none !important;
        transition: none !important
    }
}

#cboxOverlay, #cboxWrapper, #colorbox {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0)
}

#cboxWrapper {
    max-width: none
}

#cboxOverlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: .9
}

#cboxBottomLeft, #cboxMiddleLeft {
    clear: left
}

#cboxContent {
    position: relative;
    margin-top: 20px;
    background: #000;
    margin-bottom: 20px
}

#cboxLoadedContent {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    border: 5px solid #000;
    background: #fff
}

#cboxTitle {
    margin: 0;
    position: absolute;
    top: -20px;
    left: 0;
    bottom: -20px;
    background: #e8e8e4;
    padding: 10px 20px;
    right: 5px;
    left: 5px;
    bottom: -20px;
    top: auto;
    font-size: 14px
}

#cboxLoadingGraphic, #cboxLoadingOverlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

#cboxClose, #cboxNext, #cboxPrevious, #cboxSlideshow {
    cursor: pointer;
    border: 0;
    padding: 0;
    margin: 0;
    overflow: visible;
    width: auto;
    background: 0 0
}

.cboxPhoto {
    float: left;
    margin: auto;
    border: 0;
    display: block;
    max-width: none;
    -ms-interpolation-mode: bicubic
}

.cboxIframe {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    padding: 0;
    margin: 0;
    background: #fff
}

#cboxContent, #cboxLoadedContent, #colorbox {
    box-sizing: content-box;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box
}

#colorbox {
    outline: 0
}

#cboxError {
    padding: 50px;
    border: 1px solid #ccc
}

#cboxCurrent {
    position: absolute;
    top: -20px;
    right: 0;
    color: #ccc
}

#cboxLoadingGraphic {
    background: url(images/loading.gif) no-repeat center center
}

#cboxClose:active, #cboxNext:active, #cboxPrevious:active, #cboxSlideshow:active {
    outline: 0
}

#cboxSlideshow {
    position: absolute;
    top: -20px;
    right: 90px;
    color: #fff
}

#cboxPrevious {
    position: absolute;
    top: 50%;
    left: 5px;
    margin-top: -32px;
    background: url(images/controls.png) no-repeat top left;
    width: 28px;
    height: 65px;
    text-indent: -9999px
}

#cboxPrevious:hover {
    background-position: bottom left
}

#cboxNext {
    position: absolute;
    top: 50%;
    right: 5px;
    margin-top: -32px;
    background: url(images/controls.png) no-repeat top right;
    width: 28px;
    height: 65px;
    text-indent: -9999px
}

#cboxNext:hover {
    background-position: bottom right
}

#cboxClose {
    position: absolute;
    top: 5px;
    right: 5px;
    display: block;
    background: url(images/controls.png) no-repeat top center;
    width: 38px;
    height: 19px;
    text-indent: -9999px
}

#cboxClose:hover {
    background-position: bottom center
}

.circliful .outer {
    fill: transparent;
    stroke: #333;
    stroke-width: 19.8;
    stroke-dasharray: 534;
    transition: stroke-dashoffset 1s;
    -webkit-animation-play-state: running;
    -moz-transform: rotate(-89deg) translateX(-190px)
}

.circliful .inner {
    fill: transparent;
    stroke: #ffa500;
    stroke-width: 20;
    stroke-dasharray: 534;
    transition: stroke-dashoffset 1s;
    -webkit-animation-play-state: running;
    -moz-transform: rotate(-89deg) translateX(-190px);
    stroke-dashoffset: 0
}

.circliful {
    overflow: visible !important
}

.svg-container {
    width: 100%;
    margin: 0 auto;
    overflow: visible;
    position: relative
}

svg .icon {
    font-family: FontAwesome
}

.legend-line {
    white-space: nowrap
}

.color-box {
    width: 15px;
    height: 15px;
    border-radius: 2px;
    display: inline-block;
    float: left;
    padding-top: 3px;
    margin: 2px 5px 0 0
}

body, input, select, textarea {
    color: #333
}

::-moz-selection {
    background: #3ed8c3;
    color: #fff;
    text-shadow: none
}

::selection {
    background: #3ed8c3;
    color: #fff;
    text-shadow: none
}

:focus {
    outline: 0
}

form input:hover, form select:hover, form textarea#msg:hover {
    /* outline: 1px solid #3ed8c3*/
    outline:none;
}

#eventfilterform > div {
    flex-wrap:nowrap;
}

#searchoverlay form input:hover,#searchoverlay form input:focus,#searchoverlay  form select:hover,#searchoverlay  form textarea#msg:hover {
    outline:none;
}



form select {
    background-color: #fff !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 19px;
    text-indent: .01px
}

ins {
    background-color: #3ed8c3;
    color: #000;
    text-decoration: none
}

mark {
    background-color: #3ed8c3;
    color: #000;
    font-style: italic;
    font-weight: 700
}

input:-moz-placeholder {
    color: #a9a9a9
}

.modal-body p {
    margin: 5px 0 20px
}

textarea:-moz-placeholder {
    color: #a9a9a9
}


h1 {
    font: 700 21px RWESansPS;
    color: #fff
}

h2 {
    font: 700 24px RWESansPS;
    color: #fff
}

span.subheading {
    font: 400 21px RWESansPS;
    color: #fff
}

body.sidr-animating #mainnavigationwrapper, body.sidr-open #mainnavigationwrapper {
    transform: translateX(-150px)
}

#mainnavigationwrapper {
    transition: transform .3s;
    transform: translateX(0);
    font-size: 20px;
    font-weight: 500 !important;
}

body.sidr-animating.sidr-open #mainnavigationwrapper {
    transform: translateX(0)
}

.sidr > ul:not(.inlineul) > li {
    /*border-bottom: 1px solid #003559;*/
    line-height: 60px;
    border: none;
    min-height: 60px;
    border-bottom: 1px solid rgba(29, 68, 119, .25);
    font-size: 20px !important;
    font-weight: 500;
}

.sidr ul li.menu-item-has-children a {
    display: inline-block;
    line-height: 20px
}

.sidr ul li.menu-item-has-children a + span {
    float: right
}

.sidr ul li.menu-item-has-children .sub-menu {
    display: none
}

.togglesubmenu {
    float: right;
    cursor: pointer
}

.contentheader.lazy {
    background: #e8e8e4 !important
}

header > div.contentheader {
    overflow: hidden;
    width: 100%;
    height: 675px;
    background: url(../img/imgheader.jpg) no-repeat center top;
    background-size: cover
}

#beitragsseite header > div.contentheader, #landingpage header > div.contentheader {
    height: auto !important
}

div:not(#frontpage) .contentheader {
    background-image: none !important
}

.sidr ul.sub-menu {
    padding-bottom: 15px
}

.sidr ul li a:hover, .sidr ul li span:hover, .current_page_item a, .current_page_parent > a {
    color: #3ed8c3 !important;
}

.sidr ul.inlineul {
    display: inline-block
}

.sidr ul.inlineul > li {
    display: inline;
    line-height: 60px
}

.sidr ul.inlineul > li > a {
    display: inline-block;
    font: 400 14px RWESansPS;
    opacity: .6
}

.wrapper {
    max-width: 1920px;
    width: 100%;
    margin: auto;
    display: block;
    position: relative
}

header > div.navheader {
    width: 100%;
    height: 90px;
    background: #1d4477;
    font: 200 16px RWESansPS;
    position: fixed;
    transition: all .3s;
    z-index: 9999;
    top: 0;
    max-width: 1920px;
    background-image: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
}

header > div:not(.navheader-shrink) .overlayopener {
    font-size: 20px;
    font-weight: 500
}

header > div .overlayopener > a {
    transition: all .3s
}

header > div.navheader-shrink {
    width: 100%;
    height: 90px;
    font-size: 16px;
    font-weight: 500;
    position: fixed;
    z-index: 9999;
    top: 0
}

header > div.navheader-shrink > .content-wrapper * {
    font-size: 16px;

}

header > div.navheader a.themafinden {
    width: auto;
    margin-right: 40px
}

a.themafinden > span:before {
    color: #3ed8c3;
}

header > div:not(.navheader-shrink) #opensearch > span {
    display: inline-block;
    transform: translateY(0);
    margin-right: 5px;
    font-size: 20px
}

header > div.navheader + * {
    padding-top: 90px !important;
    /* background: #1d4477*/
}

header > div.navheader.navheader-shrink {
    height: 60px;
    transition: all .3s
}

#opensearch > span {
    display: inline-block;
    transform: translateY(0);
    margin-left: 5px;
    font-size: 16px;
    transition: all .3s
}

a#opensearch.active:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 6px;
    background: #3ed8c3;
    bottom: -39px;
    left: 0;
    right: 0;
    z-index: 99
}

header > div:not(.navheader-shrink) a#opensearch.active:after, header > div:not(.navheader-shrink) a.themafinden.active:after {
    bottom: -31px
}

header > div.navheader > .content-wrapper * {
    color: #fff
}

header > div.navheader > .content-wrapper > img {
    width: 250px;
    transition: all .3s
}

header > div.navheader > .content-wrapper > svg {
    width: 250px;
    transition: all .3s;
    display: block;
    transform: translateY(-7px)
}

header > div.navheader-shrink > .content-wrapper > img {
    width: 200px;
    transition: all .3s
}

header > div.navheader-shrink > .content-wrapper > svg {
    width: 200px;
    transition: all .3s;
    transform: translateY(-3px);
    opacity: 1 !important
}

#frontpage header > div.navheader > .content-wrapper > img {
    display: none
}

#frontpage header > div.navheader > .content-wrapper > svg {
    opacity: 0
}

header > div.navheader > .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%
}

header > div.navheader .language, header > div.navheader .themafinden {
    display: inline-block
}

a.themafinden {
    display: inline-block;
    width: 135px;
    text-align: center;
    text-decoration: none;
    position: relative
}

a.themafinden > span {
    display: inline-block;
    font-size: 12px;
    margin-right: 5px;
    transition: all .3s
}

.navheader-shrink a.themafinden > span {
    transform: translateY(3px)
}

a.themafinden:hover {
    text-decoration: none
}

a.themafinden.active:after {
    content: '';
    width: 100%;
    position: absolute;
    height: 6px;
    background: #3ed8c3;
    bottom: -39px;
    left: 0;
    right: 0;
    z-index: 99
}

.navheader-shrink a#opensearch.active:after, .navheader-shrink a.themafinden.active:after {
    bottom: -25px
}

header .contentheader img {
    margin: 110px 0 30px;
    width: 490px
}

header .contentheader svg {
    margin: 110px 0 50px;
    width: 484px
}

header > div.navheader > .content-wrapper > a {
    width: 250px;
    transition: all .3s;
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    transform: translateY(-50%)
}

header > div.navheader > .content-wrapper > a > svg {
    height: 45px;
    transition: all 1s
}

header > div.navheader-shrink > .content-wrapper > a {
    width: 200px;
    transition: all .3s;
    opacity: 1 !important
}

header > div.navheader-shrink > .content-wrapper > a > svg {
    height: 35px
}

#frontpage header > div.navheader > .content-wrapper > a {
    opacity: 0;
    visibility: hidden
}

#frontpage header > div.navheader-shrink > .content-wrapper > a {
    opacity: 1;
    visibility: visible
}

header h1 {
    margin-left: 0;
    line-height: 1.4;
    text-shadow: 5px 5px 20px rgba(35, 46, 53, 1)
}

#frontpage > section {
    margin-top: -310px
}

#frontpage .contentheader {
    display: block
}

.content-wrapper {
    max-width: 1340px;
    width: 100%;
    margin: auto;
    position: relative
}

.wrapper > header + .content-wrapper {
    margin: -310px auto 0
}

.wrapper > header + .overlays + .content-wrapper {
    margin: -120px auto 0
}

.recentnews {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin: 0 -15px 20px
}

.recentnews > h2 {
    flex: 0 0 100%;
    flex-basis: 100%;
    margin: 0 0 30px;
    padding-left: 15px
}

@-webkit-keyframes showup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px) scale(.8)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1)
    }
}

@-moz-keyframes showup {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px) scale(.8)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0) scale(1)
    }
}

@keyframes showup {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(.8)
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes showup_responsive {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(.8)
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(30px) scale(1)
    }
}

.recentnews > article.animated {
    animation-name: showup;
    animation-duration: 2s
}

.recentnews > article.animated:nth-of-type(1n) {
    animation-delay: .3s
}

.recentnews > article.animated:nth-of-type(2n) {
    animation-delay: .6s
}

.recentnews > article.animated:nth-of-type(3n) {
    animation-delay: .3s
}

.recentnews > article.animated:nth-of-type(4n) {
    animation-delay: .6s
}

.recentnews > article.animated:nth-of-type(5n) {
    animation-delay: .9s
}

#solarenergie .percentage {
    background:#7fa2a8;
}

#braunkohle .percentage {
    background: #adafb1
}

#braunkohle .percentage {
    background: #adafb1
}

#gas .percentage {
    background:#fc0
}

#kernenergie .percentage {
    background:#ef7d00
}

#wasserkraft .percentage  {
    background:#00b1eb
}

#onshore .percentage {
    background: #a1daf8;
}
#biomasse .percentage {
    background: #005e65;
}
#steinkohle .percentage {
    background: #56585a;
}
#andere .percentage {
    background: #d9dadb;
}
#offshore .percentage {
    background: #d4edfc;
}

.recentnews > article {
    flex: 0 0 auto;
    width: calc(100% / 3 - 1px);
    padding: 0 15px;
    margin-bottom: 30px;
   /* opacity: 0;*/
    /*transform: translateY(-30px) scale(.8);*/
    transition: all 2s
}

.recentnews > article:first-of-type {
    flex: 0 0 auto;
    width: calc(100% * 2 / 3)
}

.recentnews > article:first-of-type > figure {
    background-size: cover;
    background: no-repeat center
}

.recentnews > article:first-of-type > figure img {
    height: 100%;
    /*visibility: hidden*/
}

.recentnews > article figure {
    height: 100%;
    position: relative;
    background: #e8e8e4;
    font-size: 22px;
}

.recentnews > article:first-of-type figcaption {
    left: 35px;
    background: #e8e8e4;
    position: absolute !important;
    right: 35px;
    bottom: 35px;
    width: calc(50% - 35px);
    left: auto
}

.recentnews > article figure img {
    width: 100%;
    display: block;
    object-fit: cover
}

.recentnews > article figcaption {
    min-height: 200px;
    background: #e8e8e4;
    padding: 25px 30px 50px;
    position: static !important;
    min-height: 220px
}

.recentnews > article figcaption h2 > a {
    color: #1d4477;
    font: 700 26px RWESansPS;
    overflow: hidden;
    display: inline-block
}

.recentnews > article figcaption h2 > a:hover {
    text-decoration: none
}

.recentnews > article figcaption h2:hover ~ a, article figcaption span.teaser-subhead:hover ~ a {
    transform: translateX(5px)
}

.recentnews > article figcaption span.date, .recentnews > article figcaption span.likes {
    color: #1d4477;
    font: 13px RWESansPS;
    display: inline-block;
    width: 49%;
    margin-bottom: 5px;
    display: none
}

.recentnews > article figcaption span.likes {
    display: block;
    width: 100%;
    text-align: right;
    font-weight: 500;
    font-size: 16px;
}

.recentnews > article figcaption span.likes:before {
    font-size: 12px
}

.recentnews > article figcaption > a {
    color: #3ed8c3;
    color: #00a19f;
    font-size: 16px;
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    transform: translateX(0);
    transition: transform .3s ease;
    position: absolute;
    bottom: 20px;
    font-weight: 500;
}

.recentnews > article figcaption > a:hover {
    transform: translateX(5px)
}

.recentnews > article figcaption a > span {
    vertical-align: middle;
    font-size: 16px;
    display: inline-block;
    line-height: 1em;
    margin-left: 5px;
}

.recentnews .icon-arrow-2-right:before {
    vertical-align: text-top
}


.recentnews .showall, .topicfocus .showall {
    display: inline-flex;
    align-items: center;
    width: 100%;
    height: auto;
    line-height: 1em;
    margin-bottom: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
    background-color: transparent;
    color: #00a19f;
    border: #3ed8c3;
    border-radius: 5px;
    border: 2px solid #3ed8c3;
    padding: .75rem 1.5rem;
    justify-content: center;
}

.topicfocus .rwebutton-full {
    float: right;
}

#searchoverlay button:hover .icon-search:before {
    color: #ffffff;
}



input[type=checkbox],input[type=radio]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    border-radius: 0;
    font-size: 1em;
    display:block;
    width:40px;
    height:40px;
    border-radius:50%;
    background:#ffffff;
    border:5px solid #ffffff;
    background:#ffffff !important;
    flex:0 0 40px !important;
    outline:#e4e9f2;
    min-height:1px !important;
    margin:0 15px 0 0;
}
input[type=checkbox]:checked,input[type=radio]:checked {
    background:#3ed8c3 !important
}

form li > span:not(.takemeout) {
    display: flex;
    align-items: center;
    width: 100%;
    margin:5px 0;
}
form li > span label{
    color: #8f9bb3!important;
}

/*span.wpcf7-list-item {
    display:inline-flex;
}

label.optIn .moveme {
    background: #fff;
    width: 14px;
    height: 14px;
    display: inline-block;
    border: 1px solid #eaeaea;
    position: absolute;
    top: 3px;
    left: 0;
    transition: all .2s linear;
}
span.wpcf7-list-item  input[type="checkbox"], input[type="radio"] {
    display: none;
}*/

.icon-search:before,#opensearch .icon-rwe-101:before {
    vertical-align: text-top;
    display: inline-block;
    transform: translateY(1px);
    color: #3ed8c3;
    transition:0.3s;
}

#selectionpicker .dropdown-toggle, .dropdown-toggle {
    border: 1px solid #e4e9f2;
    padding-left: 25px;
    height: 40px;
    color: #000;
    font: 200 16px RWESansPS;
    border-radius: 0;
    background:#f9f9f9;
}

.clear {
    margin: 0 0 !important;
    display: block;
    margin: 0 !important;
    padding: 0 0 !important
}

.topicfocus:after {
    content: '';
    clear: both;
    display: block
}

.recentnews .showall:hover, .topicfocus .showall:hover {
    background: #1c9475;
    text-decoration: none
}

#themafinden .right-col .overview {
    display: none
}

.icon-view.views {
    color: #3ed8c3;
    font-size: 12px
}

.views:before {
    vertical-align: middle;
    padding-right: 5px
}

.showall span {
    font-size: 13px;
    display: inline-block
}

.showall span.icon-arrow-2-right:before {
    vertical-align: text-top
}

.topicfocus h2 {
    font: 700 24px RWESansPS;
    color: #1d4477;
    margin-bottom: 30px
}

.topicfocus-slider {
    text-align: center;
    width: 100%
}

.topicfocus-slider .owl-nav {
    display: inline-block;
    width: 132px;
    position: relative;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    bottom: 25px
}

form small {
    color: #383838;
    font-size: 13px
}

form div.captcha label {
    color: #383838;
    font-size: 13px
}

form div br {
    display: none
}

.topicfocus-slider .owl-nav .owl-prev {
    margin: 0 0 !important;
    padding-right: 10px !important;
    align-items: center;
    transform: translateY(1px);

    position: absolute;
    left: -15px;
    margin: 0 !important;
    padding-right: 10px !important;
    align-items: center;
    transform: translateY(1px)
}

.topicfocus-slider article figcaption > a {
    margin-top: 30px;
}

.topicfocus-slider .owl-nav .owl-next {
    margin: 0 0 !important;
    padding-left: 10px !important;
    align-items: center;
    transform: translateY(1px);

    position: absolute;
    right: -15px;
    margin: 0 !important;
    padding-left: 10px !important;
    align-items: center;
    transform: translateY(1px);
}

.shariff .orientation-horizontal li {
    margin-right:10px;
}

.loading img {
    width: auto;
    height: 45px;
    display: inline-block;
    vertical-align: middle
}

.topicfocus {
    margin-bottom: 30px
}

.topicfocus-slider .owl-dots {
    display: inline-block;
    width: auto;
    /*border-left: 2px dotted #dcdcdc;
    padding: 0 10px !important;
    border-right: 2px dotted #dcdcdc;*/
    vertical-align: middle;
}

.topicfocus-slider .owl-stage-outer {
    text-align: left;
    margin-bottom: 37px
}

.topicfocus-slider article {
    width: auto;
    position: relative;
    height: auto;
    background-size: cover;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer
}

.topicfocus-slider article:not(.last):hover figure {
    background: #1d4477
}

.topicfocus-slider article:not(.last):hover h1.withshadow {
    text-shadow: none
}

.topicfocus-slider article:not(.last):hover h3.withshadow {
    text-shadow: none
}

.topicfocus-slider article img {
    -webkit-transition: opacity .35s, -webkit-transform .35s !important;
    transition: opacity .35s, transform .35s !important
}

.topicfocus-slider article:not(.last):hover img {
    opacity: .5 !important;
    -webkit-transform: scale3d(1.05, 1.05, 1);
    transform: scale3d(1.05, 1.05, 1)
}

.topicfocus-slider article:not(.last):hover figcaption p {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.topicfocus-slider article figcaption {
    position: absolute;
    top: 65px;
    left: 65px;
    right: 45px
}

.topicfocus-slider article.last figcaption {
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto;
    text-align: center
}

.topicfocus-slider article.last figcaption img {
    width: auto !important;
    max-width: 100%;
    margin: auto
}

article.last figcaption a.showall {
    position: relative;
    left: auto;
    top: auto;
    bottom: auto;
    right: auto;
    margin: 15px auto 0;
    width: 160px;
    height: 45px;
    line-height: 45px;
    background: #fff;
    display: inline-block;
    color: #1d4477;
    text-decoration: none;
    transition: all .3s
}

article.last:hover figcaption a.showall {
    background: #1c9475;
    color: #fff
}

.topicfocus-slider article.last figcaption p {
    transform: none;
    opacity: 1
}

.topicfocus-slider article figcaption h1 {
    color: #fff;
    font: 700 50px RWESansPS
}

.topicfocus-slider article figcaption h1.withshadow {
    text-shadow: 2px 2px 20px rgba(35, 46, 53, .7)
}

.topicfocus-slider article figcaption h3 {
    color: #fff;
    font: 700 50px RWESansPS
}

.topicfocus-slider article figcaption h3.withshadow {
    text-shadow: 2px 2px 20px rgba(35, 46, 53, .7)
}

.topicfocus-slider article figcaption p {
    color: #fff;
    font: 400 18px RWESansPS;
    margin-top: 30px;
    opacity: 0;
    -webkit-transition: opacity .35s, -webkit-transform .35s;
    transition: opacity .35s, transform .35s;
    -webkit-transform: translate3d(100%, 0, 0);
    transform: translate3d(100%, 0, 0)
}

.topicfocus-slider article > a {
    position: absolute;
    right: 45px;
    bottom: 45px;
}

#schwerpunkt-wrapper article span.anzahl, .topicfocus-slider article span.anzahl {
    color: #ccc;
    font-size: 16px;
    transition: color .3s ease
}

#schwerpunkt-wrapper img {
    display: block
}

#schwerpunkt-wrapper article > a:hover span.anzahl, .topicfocus-slider article > a:hover span.anzahl {
    color: #fff;
    transition: color .3s ease
}

.topicfocus-slider article > a:hover {
    background: #3ed8c3;
    color: #fff
}

.topicfocus-slider .owl-prev:before {
    content: "\e08c";
    font-family: rwe-blog !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.topicfocus-slider .owl-next:before {
    content: "\e08b";
    font-family: rwe-blog !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.topicfocus-slider.owl-theme .owl-nav [class*=owl-] {
    color: #d4d4d4;
    font-size: 20px;
    padding: 0;
    background: 0 0;
    display: inline-block;
    cursor: pointer;
    border-radius: 0;
    margin: 7.5px;
    transition: all .3s ease
}

[data-balloon]:after {
    font-family: "RWESansPS!important";
    color: #000;
    font-family: "RWESansPS!important";
    padding: 10px
}

.slide-container {
    position: relative
}

.contentheader .popup-container {
    left: auto;
    right: 75px;
    opacity: 0;
    transition: .8s
}

.popup-container.onhover {
    opacity: 0;
    transition: .8s
}

.contentheader:hover .popup-container, .image-slider:hover .popup-container.onhover {
    opacity: 1
}

.contentheader .popup {
    left: auto;
    right: 55px
}

.contentheader .popup:after {
    right: -7px;
    left: auto;
    border-right: 0;
    border-left: 7px solid #fff
}

.popup-container {
    position: absolute;
    left: 70px;
    top: 50px;
    background: #3ed8c3;
    width: 40px;
    height: 40px;
    line-height: 45px;
    text-align: center;
    transition: all .8s;
    border-radius: 5px;
    cursor: pointer;
}
.post-count-container, .count {
    font-weight: 500;
}

.popup-container span.icon-info {
    vertical-align: sub;
    font-size: 25px;
    color: #fff;
    position: relative;
    transition: all .3s
}

.popup-container:hover span.icon-info {

    coloR: #fff;
}

.popup-container:hover {
    background-color: #3ea2c3;
}

.slide-container [data-balloon]:before {
    margin-left: 14px
}

.slide-container [data-balloon]:after {
    font-size: 14px !important;
    width: 270px;
    line-height: 19px;
    white-space: normal;
    margin-left: 20px;
    padding: 20px;
    margin-top: 20px;
    text-align: left
}

.wpcf7-captchac {
    margin-right: 80px
}

.slide-container [data-balloon][data-balloon-pos=right]:after {
    top: 100%
}

[data-balloon][data-balloon-pos=right]:after {
    max-width: 270px
}

.topicfocus-slider.owl-theme .owl-nav [class*=owl-]:hover {
    color: #30b0e1;
    color: #3fd8c3;
}

.owl-item.active + .owl-item.cloned {
    visibility: visible
}

.owl-item.cloned.active {
    visibility: visible !important
}

#sidr.sidr {
    transition: all .3s !important
}

.topicfocus-slider .owl-stage {
    margin-left: 281.5px
}

.shariff-button a > span[class^='fab fa-'] {
    font-size: 25px !important
}

.owl-item:not(.active) {
    opacity: .7
}

.image-slider .owl-item:not(.active) {
    opacity: 0
}

a.mostread-responsive {
    display: none
}

.mostread-flex {
    display: flex;
    justify-content: space-between;
    margin-bottom: 180px
}

.mostread-flex > article {
    min-height: 295px;
    background: #e8e8e4;
    position: relative;
    width: calc(100% / 5 - 5px);
    margin-right: 10px;
    overflow: hidden;
    /*height: 100%;*/
    height:auto;
    transition: all .5s;
    /*opacity: 0;
    transform: translateY(30px) scale(.8);*/
    display:flex;
    flex-direction:column;
}

.module-mostread .mostread-flex > article {
    width: calc(100% / 3 - 5px)
}

.mostread-flex > article.animated {
    animation-name: showup;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0
}

.mostread-flex > article.animated:nth-of-type(1n) {
    animation-delay: .3s
}

.mostread-flex > article.animated:nth-of-type(2n) {
    animation-delay: .6s
}

.mostread-flex > article.animated:nth-of-type(3n) {
    animation-delay: .9s
}

.mostread-flex > article.animated:nth-of-type(4n) {
    animation-delay: 1.2s
}

.mostread-flex > article.animated:nth-of-type(5n) {
    animation-delay: 1.5s
}

.mostread-flex > article > header {
    line-height: 0;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    font-weight: 700;
    color: #fff;
    padding: 0 20px;
    margin-top: 15px;
}

.mostread-flex > article:last-of-type {
    margin-right: 0
}

.mostread-flex > article img {
    display: block;
    overflow: hidden;
    width: 100%;
    margin-top:auto;
}

.mostread-flex > article header + a {
    padding: 0 20px;
    margin: 25px 0 15px;
    display: block;
    min-height: 80px
}

.mostread-flex > article p {
    font: 700 18px/22px RWESansPS;
    color: #1d4477
}

.mostread-flex span.teaser-subhead {
    display: block;
    margin: 10px 0;
    font: 400 18px/24px RWESansPS
}


.mostread-flex > article header span.date {
    display: inline-block;
    font: 700 12px/20px RWESansPS;
    color: #fff;
    background-color: #3ed8c3;
    height: 20px;
    width: auto;
    padding: 0 5px;
    margin-right: 10px;
    position: relative;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

.mostread-flex > article:hover {
    background: #d4d4d4;
    transition: all .5s
}

.mostread-flex > article > span {
    display: inline-flex;
    text-decoration: none;
    width: auto;
    font-size: 16px;
    margin-left: 20px;
    margin-top: 10px;
    align-items: center;
    color: #00a19f;
    font-weight: 500;
    margin-bottom:20px;
}

.mostread-flex > article > span > span[class^=icon] {
    order: 2;
    margin-left: 5px;
    line-height: 1em;
    height: 17px;
}


.mostread-flex > article > span > span {
    vertical-align: text-bottom;
    font-weight: 500;
}

.mostread h2 {
    color: #1d4477;
    margin-bottom: 30px
}

.image-slider .owl-dots {
    position: absolute;
    bottom: -30px;
    left: 0;
    right: 0
}

.slider-wrapper {
    position: relative
}

.optIn a {
    color: #3ed8c3
}

.image-slider .owl-nav {
    background: #202024;
    width: 350px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 40px;
    align-items: center;
    border-radius: 5px;
}

.viewssection .image-slider .owl-nav {
    top: auto;
    bottom: 0
}

.image-slider.quote-slider .owl-nav {
    display: none
}

.quote-slider p.quotation {
    margin: 0;
    background-image: url(../img/quotation_grey2.png)
}

.shariff li a {
    color: #fff;
    position: relative;
    display: block;
    text-decoration: none;
    border: 2px solid #3ed8c3;
    border-radius: 5px;
    padding: 5px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    background: none !Important;
    color: #1d4477;
}

.shariff li:hover a {
    background:#3ed8c3 !important;
    color: #ffffff;
}

.shariff .orientation-horizontal li {
    width:auto;
    overflow: visible;
    margin-bottom:0px;
}

.shariff li .fab, .shariff li .far, .shariff li .fas {
    width: auto !important;
    line-height: 1em !important;
}

.image-slider .owl-nav > .owl-next, .image-slider .owl-nav > .owl-openimage, .image-slider .owl-nav > .owl-prev {
    background: 0 0;
    color: #fff;
    text-decoration: none;
    margin: 0;
    padding: 0;
    width: 30px;
    line-height: 40px;
    transition: all .3s;
    border-radius: 0;
}


.fa, .fab, .fal, .far, .fas{
    font-family: "rwe-blog" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.fa-facebook-f:before {
    content: "\e09f";
}

.fa-twitter:before {
    content: "\e09e";
}

.fa-linkedin-in:before {
    content: "\e092";
}

.fa-xing:before {
    content: "\e09a";
}

.fa-envelope:before {
    content: "\e0aa";
}

.image-slider .owl-nav [class*=owl-]:hover {
    background: #3ed8c3;
}

.image-slider .owl-prev:before {
    content: "\e08c";
    font-family: rwe-blog !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
}

.image-slider .owl-next:before {
    content: "\e08b";
    font-family: rwe-blog !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle;
}

.image-slider .owl-openimage:before {
    content: "\e0a1";
    font-family: rwe-blog !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: middle
}

.slider-wrapper > .slider-header {
    position: absolute;
    top: -32px;
    left: 65px;
    z-index: 99
}

.slider-header > span {
    font: 700 24px RWESansPS;
    color: #1d4477;
    vertical-align: top
}

.footer-flex {
    display: flex;
    padding: 70px 0
}

footer #eviews > svg {
    margin-bottom: 15px;
    margin-top: -5px
}

footer #eviews > img + p strong, footer #eviews > svg + p strong {
    margin-bottom: 25px;
    line-height: 20px
}

footer #eviews p {
    color: #fff;
    font: 400 16px/1em RWESansPS
}

footer #eviews strong {
    font-family: RWESansPS;
    font-weight: 500;
    margin-bottom: 10px
}

footer #eviews strong:first-of-type {
    display: block
}

.footer-info {
    height: 60px;
    background: #1d4477;
    width: 100%;

    padding: 0 40px
}

.footer-info > .content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.footer-info nav ul li {
    display: inline;
    margin-right: 15px
}

.footer-info nav ul li a {
    text-decoration: none;
    font: 400 16px RWESansPS;
    transition: opacity .8s;
    color: #fff;
    opacity: .6
}

.footer-info nav ul li a:hover {
    opacity: 1
}

.footer-info nav ul li a > span {
    color: #fff;
    font-size: 24px;
    vertical-align: sub;
    transform: translateY(2px);
    display: inline-block
}

.scrolltop {
    height: 55px;
    width: 55px;
    display: inline-block;
    line-height: 55px;
    text-align: center;
    position: absolute;
    right: 0;
    top: -27.5px;
    color: #fff;
    cursor: pointer;
    z-index: 99;
    transition: all .3s;
    background-color: #3ed8c3;
    border-radius: 5px;
}

.scrolltop:hover {
    text-decoration: none;
    text-decoration: none;
    background-color: #3ea2c3;
    coloR: #ffffff;
}

a.scrolltop:hover span {
    color: #fff
}

.scrolltop span {
    vertical-align: middle;
}

.video-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: -1;
}

.video-wrapper:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    top: 0;
    left: 0;
    z-index: 999;
}

.language {
    margin-right: 20px
}

.language ul li span {
    display: inline-block;
    transform: translateY(1px);
    font-size: 12px;
    margin-left: 10px
}

a#simple-menu {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    position: relative
}

a#simple-menu > span {
    display: inline-block;
    transform: translateY(3px);
    margin-left: 5px;
    font-size: 20px;
    color: #3ed8c3;
}

#contentseite header > div.contentheader {
    background: url(../img/content_start.jpg) no-repeat center top;
    height: 590px;
    background-size: cover
}

#contentseite section {
    width: 100%;
    max-width: calc(100% - 230px);
    background: #fff;
    margin: auto;
    padding: 0 115px
}

#contentseite h1 + span.subheading {
    margin-bottom: 40px
}

.text-module h1 + span.subheading {
    display: inline-block;
    margin-top: -40px;
    margin-bottom: 40px
}

.text-module {
    margin: 50px 0
}

.text-module p + ul {
    margin-top: 10px
}

.text-module ul {
    margin: 20px
}

.text-module ul li ul {
    margin: auto
}

.text-module a {
    color: #00b1eb;
}

.text-module a:hover {
    color: #3ed8c3
}

.text-module a[target=_blank]:after {
    font: normal normal 12px/1 rwe-blog !important;
    font-family: "rwe-blog!important";
    speak: none;
    -webkit-font-smoothing: antialiased;
    content: "\e0ac";
    margin-left: 5px;
    margin-right: 2px
}

.recommendations.recommendationsalternative {
    margin-top: 80px;
}

.recommendations.recommendationsalternative .date + div {
    flex: 1 1 auto
}

.recommendations.recommendationsalternative > article {
    width: 100%;
    justify-content: flex-start;
    display: flex !important;
    align-items: flex-start;
    border-bottom: 1px solid #f5f3f6;
    margin-bottom: 10px;
    padding-bottom: 15px;
    position: relative
}

.recommendations.recommendationsalternative > article:last-of-type {
    border-bottom:none;
}

.recommendations.recommendationsalternative span.teaser-subhead {
    margin: 5px 0 0;
    font-size: 18px;
    line-height: 1.5em;
}

.recommendations.recommendationsalternative a.entirebox:hover ~ a {
    transform: translateX(5px) translateY(2px)
}

.likenow:hover, .printnow:hover a {
    color: #ffffff;
}
.likenow:hover,.printnow:hover {
    background:#3ed8c3;
}

.recommendations.recommendationsalternative > article > a.entirebox {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    flex: auto
}

.recommendations.recommendationsalternative > article:hover span.date {
    transition: background .3s;
    background: #00a19f;
}

.recommendations.recommendationsalternative h2 {
    flex: 1 1 auto;
    font-weight:500;
}

.recommendations.recommendationsalternative > span {
    flex: 1 1 auto;
    color: #1d4477;
    font: 700 24px/26px RWESansPS;
    margin-bottom: 40px
}

.recommendations.recommendationsalternative h2 > a {
    font: 500 22px RWESansPS;
    height: auto;
    min-height: unset;
    overflow: visible
}

.recommendations.recommendationsalternative > article > a {
    color: #00a19f;
    font-size: 16px;
    display: inline-flex;
    text-decoration: none;
    transform: translateY(2px);
    transition: transform .3s ease;
    height: auto;
    min-height: unset;
    margin: 0 15px;
    flex: 0 0 auto;
    align-self: flex-end;
    align-items: center;
    font-weight: 500;
}

.recommendations.recommendationsalternative > article > a span {
    vertical-align: middle;
    font-size: 13px;
    display: inline-block;
    line-height: 1em;
    height: 1em;
    margin-left: 5px;
}

.recommendations.recommendationsalternative > article > a:hover {
    transform: translateX(5px) translateY(2px)
}

.recommendations.recommendationsalternative > article > span.date {
    display: inline-block;
    font: 500 12px/20px RWESansPS;
    color: #fff;
    background: #3ed8c3;
    height: 20px;
    width: auto;
    padding: 0 5px;
    margin-right: 10px;
    flex: 0 0 75px;
    margin-top: 6px;
    border-radius: 5px;
}

.recommendations.recommendationsalternative + div > span:first-of-type {
    color: #1d4477;
    font: 700 16px RWESansPS;
    display: inline-block;
    margin-right: 10px
}

.recommendations.recommendationsalternative + div {
    margin-top: 10px
}

.recommendationsalternative > h2 > br {
    display: none
}

h1 + div.intro p, span.subheading + div.intro p, span.subheading + p {
    margin-top: 40px
}

.text-module h1 {
    font: 700 50px RWESansPS;
    color: #1d4477;
    margin: 0 0 40px
}

.text-module, .text-module p {
    color: #1d4477;
    font: 400 18px RWESansPS;
    /*line-height: 1.363636em;*/
    line-height: 1.5em;
}

.module-faq .text-module {
    margin: 0pX
}

.text-module p + p {
    margin-top: 10px
}

.text-module h2 {
    font: 700 22px RWESansPS;
    color: #1d4477;
    margin: 20px 0 15px;
}

.text-module h2 + p {
    margin-top: -10px
}

.text-module h3 {
    font: 400 20px RWESansPS;
    color: #3ed8c3;
    margin: 30px 0 15px
}

.text-module h3 + p {
    margin-top: -5px
}

.text-module h4 {
    font: 400 22px RWESansPS;
    color: #1d4477;
    margin: 25px 0 10px
}

.text-module h4 + p {
    margin-top: 0
}

.text-module h5 {
    font: 400 18px RWESansPS;
    color: #17b298;
    margin: 25px 0 10px
}

.text-module h5 + p {
    margin-top: -10px
}

#contentseite span.subheading {
    font: 700 50px RWESansPS;
    color: #1d4477
}

#contentseite div.intro p {
    color: #1d4477;
    font: 700 22px RWESansPS
}

#contentseite p {
    color: #1d4477;
    font: 400 18px RWESansPS
}

#contentseite ul li {
    color: #1d4477;
    font: 400 18px RWESansPS
}

#contentseite p a {
    color: #3ed8c3
}

#contentseite p a:hover {
    text-decoration: none;
    color: #3ed8c3
}

#socialmediasharing {
    display: flex;
    padding: 10px 0;
    /*border-bottom: 1px solid #ccc;*/
    color: #1d4477;
    font: 700 16px RWESansPS;
    align-items: center
}

#socialmediasharing .socialmediarework.shariff {
    margin-left: auto;
    margin-right: 40px;
    margin-left:15px;
}

.shariff .orientation-horizontal.button-style-standard.shariff-col-3 li {
    margin-right: 0;
    margin-left: 0
}

.shariff .orientation-horizontal.button-style-standard.shariff-col-3 li.shariff-button:nth-of-type(2n) {
    margin: 0 6px
}

.shariff .orientation-horizontal {
    flex-wrap: nowrap
}

.shariff-button.info {
    display: none
}

#socialmediasharing > div {
    margin-right: 15px;
    display: flex
}

#socialmediasharing > span {
    display: flex;
    align-items: center;
    flex:0 0 auto;
    font-size:16px;
}

#socialmediasharing .socialmedia span {
    font-size: 22px
}

.footer-info nav ul > li.firstsocial {
    margin-left: 20px
}

.footer-info nav ul li.social {
    margin-right: 5px
}

#socialmediasharing > span:before {
    display: inline-block;
    margin-right: 10px;
    color: #1d4477
}

#socialmediasharing + .recentnews.morelinks {
    border-top: none
}

#socialmediasharing + .recommendations {
    border-top: none
}



.module-contactinformation {
    background: #e8e8e4;
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 165px;
    padding: 0 40px;
    align-items: center;
    margin: 50px 0
}

.module-contactinformation > div {
    flex: 0 0 auto;
    width: 360px;
    display: flex;
    align-items: flex-start
}

.module-contactinformation > div img {
    margin-right: 30px;
    display: inline-block
}

.module-contactinformation > div > div {
    display: inline-block
}

.module-contactinformation > div:last-of-type a {
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
    background: #fff;
    text-decoration: none;
    padding-left: 25px;
    font-family: RWESansPS;
    font-weight: bold;
    transition: all .3s
}

.module-contactinformation > div:last-of-type a:hover {
    color: #fff;
    background: #3ed8c3
}

.module-contactinformation > div:last-of-type a span {
    font-size: 12px;
    margin: 4px 7px 0 0
}

.module-contactinformation .ansprechpartnername {
    margin-bottom: 5px;
    display: inline-block;
    font: 700 20px RWESansPS
}

.module-contactinformation .ansprechpartner-position {
    display: inline-block
}

.module-contactinformation, .module-contactinformation a {
    color: #1d4477;
    font-size: 16px
}

.module-contactinformation > div:first-of-type a {
    color: #1d4477;
    font-family: RWESansPS;
    font-weight: normal;
    text-decoration: none;
    display: inline-block
}

.module-link {
    margin: 50px 0
}

.module-link > div {
    min-height: 150px;
    background: #e8e8e4;
    width: 100%;
    display: flex;
    align-items: stretch;
    justify-content: space-between
}

.module-link > div > div:first-of-type {
    padding: 20px 0 15px
}

.bildunterschrift {
    background: #e8e8e4;
    border-top: 1px solid #dededede;
    padding: 10px 20px;
    font-size: 14px
}

.bildunterschrift > div {
    display: flex;
    align-items: flex-start
}

.bildunterschrift > div > p {
    flex: 1 1 auto
}

.bildunterschrift > div > p > a {
    display: inline-block
}

.bildunterschrift > div > a {
    flex: 0 0 200px;
    margin-left: 45px;
    color: #3ed8c3;
    text-decoration: none;
    display: flex;
    transform: translateX(0);
    transition: transform .3s ease
}

.bildunterschrift > div > a > span {
    position: relative;
    width: 15px;
    display: inline-block;
    font-size: 12px
}

.bildunterschrift > div > a > span.icon-arrow-2-right:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.bildunterschrift > div > a:hover {
    transform: translateX(5px)
}

.lesetipp {
    content: "Lesetipp";
    background: #3ed8c3;
    position: absolute;
    color: #fff;
    font: 400 13px RWESansPS;
    height: auto !important;
    width: auto !important;
    display: inline-block;
    white-space: pre-wrap;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    font-weight: 500;
    color: #fff;
    padding: 3px 10px;

    font-size: 16px;
    top: .5rem;
    /*right: .5rem;*/
    right:30px;
}

.module-link > div div > span {
    display: block;
    color: #1d4477;
    font: 500 22px/28px RWESansPS
}

.cc-link {
    color: #3ed8c3 !important;
    text-decoration: none !important
}

.cc-window.cc-banner {
    padding: 1em 1.8em;
    width: 100%;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-align: center;
    align-items: center;
    font: 400 15px RWESansPS
}

.cc-banner.cc-bottom{
    padding: 10px 0 0 !important;
    padding: 10px 0 !important;
    background: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
}

.cc-window.cc-floating {
    background: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
}

.cc-link:hover {
    color: #17b298 !important
}

.cc-btn.cc-dismiss {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border-radius: 5px;
    text-decoration: none;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding: .75rem 1.5rem;
    transition: background-color .3s ease-in-out;
    max-width: 100%;
    text-overflow: ellipsis;
    overflow: hidden;
    font-family: RWESansPS;
    font-size: 1rem;
    line-height: 1;
    border: none;
    background-color: #3ed8c3;
    color: #fff;
    border: #3ed8c3;
    font-weight: 700;
}

.owl-carousel + .content-wrapper {
    height: 70px;
}

.cc-btn.cc-dismiss:hover {
    color: #fff;
    background: #3ed8c3;
}

.cc-banner .cc-btn:last-child {
    min-width: 140px;
    min-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    border: none
}

.cc-btn span.icon-arrow-2-right:before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%)
}

.image-slider.quote-slider .owl-dots {
    bottom: auto;
    position: relative;
    text-align: left;
    right: auto;
    margin: 30px 0 30px 30px
}

.image-slider.quote-slider {
    margin-bottom: 30px !important
}

.owl-theme.owl-dots .owl-dot span {
    background: #dcdcdc;
    border: 1px solid #dcdcdc
}

.cc-btn span.icon-arrow-2-right {
    margin-left: 5px;
    position: relative;
    width: 15px
}

.cc-banner .cc-message {
    -ms-flex: 1;
    flex: 1;
    line-height: 1em
}

.cc-btn {
    display: block;
    padding: .4em .8em;
    font-size: .9em;
    font-weight: 700;
    border-width: 2px;
    border-style: solid;
    text-align: center;
    white-space: nowrap;
    transition: all .3s
}

.cc-btn:hover {
    color: #fff !important;
    color: #fff !important
}

.module-link > div a {
    color: #00a19f;
    text-decoration: none;
    font-size: 16px;
    margin-top: 15px;
    display: inline-flex;
    align-items: center;
    transition: transform .3s ease;
    font-weight: 500;
}

.module-link > div a:hover {
    transform: translateX(5px)
}

.module-link > div a > span {
    height: 1em;
    margin-left: 5px;
    line-height: 1em;
}

.module-link:not(.externintern) > div > div:first-of-type {
    padding-left: 40px;
    padding-right: 90px;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center
}

.module-link:not(.externintern) > div > div:last-of-type {
    background: no-repeat center right;
    width: 100%;
    background-size: contain
}

.cc-window .content-wrapper {
    display: flex;
    align-items: center
}

.cc-window.cc-floating {
    padding: 2em;
    max-width: 24em;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: unset !important
}

.cc-bottom {
    bottom: 1em;
    bottom: 0 !important
}

.module-linktest figure {
    background: #e8e8e4;
    height: auto;
    padding-left: 40px;
    display: flex;
    align-items: stretch
}

.clearnone {
    display: none
}

.module-linktest figcaption {
    padding: 15px 7% 15px 0;
    flex: 1 1 75%
}

.module-linktest img {
    flex: 1 1 auto
}

.module-linktest figcaption > div > span {
    color: #1d4477;
    font: 700 24px RWESansPS;
    display: block
}

.module-linktest a {
    color: #3ed8c3;
    text-decoration: none;
    font-size: 18px;
    margin-top: 15px;
    display: inline-block;
    transition: transform .3s ease;
    display: inline-block
}

#video1::-webkit-media-controls-fullscreen-button {
    display: none !important
}

.module-linktest a > span {
    font-size: 12px
}

.module-link.externintern > div {
    justify-content: space-between;
    height: auto;
    align-items: center;
    min-height: 0;
    padding: 0 25px 0 40px;
    margin: 15px 0
}

.module-link.externintern > div > div:last-of-type > span {
    color: #1d4477;
    font-size: 18px
}

.module-accordion-wrapper {
    margin: 50px 0
}

.module-html h2 {
    font: 700 22px RWESansPS;
    color: #1d4477;
    margin: 35px 0 0
}

.module-html {
    margin: 50px 0
}

.module-html > div {
    position: relative;
    padding-bottom: 52.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden
}

.module-html iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 25px);
    margin-top: 25px;
}

.module-accordion-wrapper > h2 {
    font: 700 22px RWESansPS;
    color: #1d4477;
    margin: 35px 0 20px
}

.module-accordion > span.collapsible:hover {
    cursor:pointer;
}

.module-accordion > span.collapsible {
    color: #1d4477;
    font: 20px RWESansPS;
    display: inline-block;
    font-weight:500;
    width: 100%;
    min-height: 60px;
    display: flex;
    margin: 0;
    border: none;
    align-items: center;
    background: #e8e8e4;
    position: relative;
    transition: all .3s;
    border-radius:5px;
    padding: 0 40px 0 0
}

.module-quellen, .module-quellen p {
    font-size: 12px !important;
    color: #ccc !important;
    margin: 50px 0 !important
}

.likenow, .printnow {
    border: 2px solid #3ed8c3;
    padding: 8px;
    border-radius: 5px;
    font-weight:500;
    flex:0 0 auto;
    transition:0.3s;
}

.spanline {
    font-size:inherit;
    font-weight:inherit;
    font-family:inherit;
}

.module-accordion > span.collapsible:not(.quellenangabe):not(.contactform) {
    padding: 0 40px 0 25px
}

.module-accordion > span.collapsible:hover {
    background: #3ed8c3;
    color: #fff
}

.module-accordion > span.collapsible.contactform:hover {
    background: #3ed8c3;
    color: #fff
}

.module-accordion > span.collapsible:hover:after {
    color: #fff
}

.module-accordion > span.ui-state-active {
    background: #3ed8c3;
    color: #fff
}

.module-accordion > span.ui-state-active.contactform {
    background: #3ed8c3;
    color: #fff
}

.module-accordion > span.collapsible.contactform {
    height: auto
}

.module-accordion > span.collapsible.contactform:after {
    font: normal normal 14px/1 rwe-blog !important;
    position: absolute;
    right: 25px;
    font-family: "rwe-blog!important";
    speak: none;
    -webkit-font-smoothing: antialiased;
    content: "\65";
    margin-top: 0;
    color: #1d4477;
    top: 50%;
    transform: translateY(-50%)
}

.module-accordion > span.collapsible.contactform:hover:after {
    color: #fff
}

.module-accordion > span.collapsible:not(.ui-state-active) {
    margin-bottom: 15px
}

.module-accordion > span.collapsible + div {
    background: #e8e8e4;
    border: none;
    margin: 0 0 15px;
    padding-right: 50px
}

.module-accordion > span.collapsible:after {
    font: normal normal 14px/1 rwe-blog !important;
    position: absolute;
    right: 25px;
    font-family: "rwe-blog!important";
    speak: none;
    -webkit-font-smoothing: antialiased;
    content: "\e08d";
    color: #1d4477;
    top: 50%;
    transform: translateY(-50%)
}

.module-accordion > span.collapsible.ui-state-active:after {
    content: "\e08e";
    color: #fff
}

.module-accordion span.quellenangabe {
    padding: 0
}

.module-accordion > span.collapsible.quellenangabe:hover, .module-accordion > span.ui-state-active.quellenangabe {
    background: #1baf92;
    color: #fff
}

.quellenangabe + div li {
    color: #000;
    margin: 5px 0
}

.text-module li:before {
    content: '';
    background: url(../img/bulletpoints.png) no-repeat center left;
    position: absolute;
    left: 0;
    height: 6px;
    width: 6px;
    top: 9px
}

.text-module li {
    position: relative;
    padding-left: 25px;
    font-family: RWESansPS;
    font-weight: normal
}

.module-video {
    margin: 50px 0
}

#uebersicht .module-accordion {
    display: none
}

.module-accordion .collapsible > span:not(.spanline) {
    margin-right: 25px;
    positioN: relative;
    text-align: center;
    width: 90px;
    font-size: 40px;
    background: #3ed8c3;
    height: auto;
    flex: 0 0 90px;
    display: inline-block;
    align-self: stretch;
    color: #fff
}

.module-accordion .collapsible > span:before, .module-downloads > span:first-of-type:before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    right: 0;
    margin: auto
}

form label {
    flex: 0 0 auto;
    width: 100%;
    margin-right: 30px;
    font: 500 16px RWESansPS;
    color: #3ed8c3;
    margin-bottom: 0.45rem;
}

label[for=msg] {
    align-self: flex-start
}

form div > span > textarea {
    padding: 15px
}

form input, form select, form textarea {
    font: 16px RWESansPS !important;
    min-height: 40px;
    padding-left: 15px;
    font-size: 16px !important;
    color: #8f9bb3;
    width: 100%;
    background: #f9f9f9 !important;
    font-weight:500 !important;
    border: 1px solid #e4e9f2;
    height:55px;

}

form input:hover, form select:hover, form textarea:hover {
    background: #edf1f7 !important;
}

form input:focus, form select:focus, form textarea:active,form input:active, form select:active, form textarea:active {
    background: #ffffff !important;
}

form div > span {
    width: 100%;
    display: block;
    flex: 1 1 100%
}

form div > input, form div > select, form div > textarea {
    font: 16px RWESansPS !important;
    min-height: 40px;
    padding-left: 15px;
    font-size: 16px !important;
    color: #333;
    background: #fff
}

form div > textarea {
    padding: 15px;
    min-height: 150px
}

form > div

form .optIn {
    display: flex;
    width: 100%;
    align-items: flex-start;
    margin: 10px 0
}

form .optIn input {
    flex: 0 0 30px;
    position: relative
}

form strong {
    font-size: 13px
}

.wpcf7-submit:before {
    font: normal normal 14px/1 rwe-blog !important;
    content: "\67";
    font-family: "rwe-blog!important";
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99
}

div.wpcf7 .ajax-loader {
    visibility: hidden;
    display: inline-block;
    background: url(https://www.en-former.com/dev/wp-content/themes/rweblog/assets/img/loadingspinner.gif) no-repeat center center;
    width: 35px;
    height: 35px;
    border: none;
    padding: 0;
    margin: 0 0 0 4px;
    vertical-align: middle;
    flex: 0 0 35px;
    background-size: contain
}

.confirmation > div:hover > input[type=submit], .wpcf7-submit:hover {
    background: #3ed8c3
}

.captcha-118 {
    flex: 1 1 200px
}

.confirmation > div > input[type=submit], .wpcf7-submit {
    flex: 1 1 315px;
}

.owl-carousel button {
    border: none;
    background: 0 0
}

.owl-carousel .owl-dot {
    padding: 0
}

.wpcf7-submit {
    margin-left: 30px
}

.checkbox .optIn input[type=checkbox] {
    position: relative
}

form .optIn div {
    color: #383838;
    font-weight:500;
    font-size: 16px;

}

.confirmation {
    margin: 20px 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap
}

.confirmation > div:first-of-type {
    width: 300px;
    height: 70px;
    background: #fff
}

.articlecounter {
    position: relative;
    display: flex;
    height: 40px;
    align-items: center;
    line-height: 40px;
    font-size: 16px;
    width: auto;
    flex:0 0 auto;
}

.articlecounter span:first-of-type {
    position: relative;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: #1d4477;
    background: #3ed8c3;
    color: #fff;
    padding: 0 15px;
    height: 100%;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
    font-weight: 700;
}

.articlecounter span:last-of-type {
    color: #1d4477;
    padding: 0 20px;
    background: #e8e8e4;
    height: 100%;
    width: 100%;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    font-weight: 700;
}

.confirmation > div > input[type=submit] {
    width: 315px;
    height: 60px;
    background: #3ed8c3;
    color: #fff;
    flex: 0 0 auto;
    border: none;
    text-align: left;
    padding-left: 50px;
    font: 400 18px RWESansPS;
    position: relative;
    transition: all .3s
}

.confirmation > div:hover > input[type=submit] {
    background: #3ed8c3
}

.confirmation > div:last-of-type {
    position: relative
}

.confirmation > div:last-of-type:before {
    font: normal normal 14px/1 rwe-blog !important;
    content: "\67";
    font-family: "rwe-blog!important";
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #fff;
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 99
}

.popup-container:hover .popup {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s
}

.popup {
    text-align: left;
    font-weight: normal !important;
    height: auto;
    left: 35px;
    background: #fff;
    text-align: left;
    transition: all .8s;
    opacity: 0;
    font-size: 14px !important;
    width: 270px;
    line-height: 19px !important;
    white-space: normal !important;
    margin-left: 20px !important;
    padding: 20px 20px !important;
    text-align: left;
    top: 0;
    background: #fff !important;
    position: absolute;
    visibility: hidden;
    transition-delay: .5s;
}

.popup .icon-arrow-2-right:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}

.modal-body .icon-arrow-2-right:before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%)
}


.ss + .ss {
    margin-top: 20px;
}

.modal-body > a > span {
    position: relative;
    width: 15px;
    display: inline-block;
    font-size: 12px
}

.modal-body > a {
    color: #3ed8c3;
    display: inline-block;
    text-decoration: none;
    display: flex;
    transform: translateX(0);
    transition: transform .3s ease
}

.modal-body > a:hover {
    color: #3ed8c3;
    text-decoration: none
}

.popup p {
    color: #1d4477 !important;
    font-weight: normal !important;
    font-size: 14px !important
}

.popup a {
    margin: 10px 0 0;
    text-decoration: none;
    display: flex;
    transform: translateX(0);
    transition: transform .3s ease;
    align-items:center;
    color: #3ed8c3;
    font-weight: 500;
}

.popup strong {
    color: #1d4477 !important
}

.popup:after {
    content: '';
    position: absolute;
    left: -7px;
    top: 5px;
    width: 0;
    height: 0;
    border-bottom: 7px solid transparent;
    border-top: 7px solid transparent;
    border-right: 7px solid #fff;
    clear: both
}

.popup a:hover {
    transform: translateX(5px)
}

.popup a > span {
    position: relative;
    font-size: 12px;
    align-items: center;

    height: 1em;
    margin-left: 5px;
}

::-moz-placeholder {
    font-size: 16px;
    color: #333
}

:-moz-placeholder {
    font-size: 16px;
    color: #333
}

:-ms-input-placeholder {
    font-size: 16px;
    color: #333
}

::-webkit-input-placeholder {
    font-size: 16px;
    color: #333
}

.language .current {
    display: none
}

.image-slider.content-slider .owl-nav {
    background: #1d4477;
    display: inline-block;
    width: 132px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto
}

.image-slider.content-slider .owl-dots {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    width: auto
}

.module-mosaik {
    margin: 50px 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    overflow: hidden
}

.module-mosaik img {
    flex: 1 1 auto
}

.module-mosaik.zweidrittel img:first-of-type {
    margin-right: 30px
}

.module-mosaik.eindrittel img:first-of-type {
    margin-right: 30px
}

.shariff .mail .fa-envelope {
    font-size: 25px !important;
}

.module-contactform {
    background: #e8e8e4;
    padding: 75px 45px 35px;
    width: 100%;
    position: relative;
    margin: 95px auto 50px;
    box-sizing: border-box
}

.module-contactform > span {
    display: inline-block;
    height: 90px;
    width: 90px;
    text-align: center;
    background: #3ed8c3;
    color: #fff;
    font-size: 40px;
    vertical-align: top;
    padding-top: 7px;
    line-height: 90px;
    position: absolute;
    left: 40px;
    border-radius:5px;
    top: -45px
}

.module-contactform form > span {
    font: 700 20px RWESansPS;
    color: #1d4477;
    margin-bottom: 35px;
    display: inline-block
}

.module-contactform span.formheadline {
    font: 700 20px/1 RWESansPS;
    color: #1d4477;
    margin-bottom: 35px;
    display: inline-block;
    background: 0 0;
    position: relative;
    top: 0;
    left: 0;
    height: auto;
    width: auto
}

.recommendations {
    padding-top:0px;
    border-top: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between
}

.recommendations h2 {
    flex: 0 0 100%;
    flex-basis: 100%
}

.recommendations > h2 {
    color: #1d4477;
    font-size: 24px;
    margin-bottom: 20px
}

.recommendations h2 > a {
    color: #1d4477;
    font: 700 26px RWESansPS;
    display: inline-block
}

.recommendations.recommendationsalternative h2:hover ~ a {
    transform: translateX(5px) translateY(2px)
}

.recommendations h2:hover ~ a {
    transform: translateX(5px) translateY(0)
}

.recommendations > div {
    flex: 0 0 100%;
    margin: 0 auto 20px
}

.recommendations > article {
    flex: 0 0 auto;
    width: calc(100% / 3 - 20.01px);
    margin-bottom: 30px
}

.recommendations > article figure {
    height: 100%;
    position: relative;
    background: #e8e8e4
}

.recommendations > article > figure img {
    width: 100%;
    display: block
}

.recommendations > article figcaption {
    background: #e8e8e4;
    padding: 25px 30px
}

.recommendations > article figcaption span.date, .recommendations > article figcaption span.likes {
    color: #1d4477;
    font: 500 14px RWESansPS;
    display: inline-block;
    width: 49%;
    margin-bottom: 15px
}

.recommendations > article figcaption span.likes {
    text-align: right
}

.recommendations > article figcaption h2 {
    color: #1d4477;
    font: 700 24px RWESansPS
}

.recommendations > article figcaption > a {
    color: #00a19f;
    font-weight: 500;
    font-size: 18px;
    display: inline-block;
    margin-top: 12px;
    text-decoration: none;
    transform: translateX(0);
    transition: transform .3s ease;
    flex: 0 0 100%


}

.recommendations > article figcaption > a:hover {
    transform: translateX(5px)
}

.recommendations > article figcaption a > span {
    font-size: 13px
}

#landingpage .recommendations > article:nth-of-type(3n-1) {
    margin: 0 30px 30px
}

#landingpage .recommendations {
    justify-content: flex-start;
    padding-top: 50px
}

#beitragsseite .category-headline {
    background: #fff;
    position: absolute;
    width: 100%;
    left: 0;
    padding: 50px 75px
}

#beitragsseite .category-headline h1 {
    color: #fff;
    margin: 0
}

#beitragsseite .category-headline h1 + span {
    font: 700 22px RWESansPS;
    color: #fff;
    margin-top: 15px;
    display: inline-block;
    padding-right: 75px
}

select#search-direction {
    display: none
}

#beitragsseite header > div.contentheader {
    background: url(../img/content_start.jpg) no-repeat center center;
    height: 590px
}

#beitragsseite.wrapper > header + .content-wrapper {
    margin: -190px auto 0
}

.wrapper.nobackground > header + .overlays + .content-wrapper {
    margin: auto
}

#beitragsseite.nobackground header > div.contentheader, #contentseite.nobackground header > div.contentheader, .nobackground header > div.contentheader {
    height: 40px !important;
    background: #e8e8e4 !important;
    margin-bottom: 0 !important
}

#contentseite.nobackground header > div.contentheader {
    display: none
}

.nobackground header > div.contentheader {
    background-image: none !important
}

.wrapper.nobackground .articleinfo .dateviews:first-of-type {
    margin-left: 0;
    padding-left: 0
}

.nobackground .content-headline, .nobackground h1 {
    margin-top: 30px
}

.articleinfo + h1 {
    margin-top: 50px
}

.nobackground .colwrapper .right-col {
    width: calc(27% - 15px)
}

.wrapper.nobackground > header + .content-wrapper {
    margin: -1px auto 0
}

#beitragsseite.wrapper.nobackground a.backtooverview {
    position: absolute;
    top: -40px;
    left: 0;
    border-right: 5px solid #fff
}

#contentseite.wrapper.nobackground a.backtooverview {
    position: absolute;
    top: -95px;
    left: 0;
    border-right: 5px solid #fff
}

.wrapper.nobackground .articleinfo {
    justify-content: flex-start;
    margin-top: 55px
}

#contentseite.wrapper.nobackground .articleinfo {
    justify-content: flex-start;
    margin-top: 95px
}

#breadcrumb .breadcrumb-headline {
    color: #00a19f;
    font-size: 14px;
    transition: all .3s;
    line-height: 1rem;
    box-shadow: none;
    text-shadow: none;
    margin: 0 4px;
    display: inline
}

.content-headline {
    color: #1d4477;
    font: 700 50px/1.1 RWESansPS;
    display: block
}

#breadcrumb > span {
    margin-right: 3px;
    display: inline-block
}

.nobackground #breadcrumb > a {
    margin: 0 4px
}

header > div#breadcrumb {
    height: 50px;
    max-width: 1340px;
    margin: auto;
    display: flex;
    align-items: center;
    color: #1d4477;
    font-size: 14px;
    background: 0 0;
    padding: 10px 0
}

header > div#breadcrumb > p {
    color: #1d4477;
    font-size: 14px;
    line-height: 1rem
}

header > div#breadcrumb a {
    color: #1d4477;
    font-size: 14px;
    transition: all .3s;
    font-weight: 500;
    line-height: 1rem;
    display: inline-flex;
    align-items: center;
}

header > div#breadcrumb a:after {
    content: "\e08b";
    margin-left: 5px;
    font-family: "rwe-blog" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    font-size: 14px;
    -webkit-font-smoothing: antialiased;
}

header > div#breadcrumb a:last-of-type:after {
    content: "\e08b";
    margin-left: 5px;
    font-family: "rwe-blog" !important;
    font-style: normal !important;
    font-weight: normal !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    font-size: 13px;
    -webkit-font-smoothing: antialiased;
}

header > div#breadcrumb a.nopost:after {
    content: none;
    margin-left: 5px
}

header > div#breadcrumb a.nopost {
    font-family: RWESansPS;
    font-weight: bold;
    margin-left:5px;
}

#breadcrumb a:hover {
    color: #00a19f;
}

#breadcrumb a:hover:after {
    color: #1d4477
}

header > div#breadcrumb a:hover {
    text-decoration: none
}

.inline-wrapper {
    display: none
}

#beitragsseite.wrapperr > header + .overlays + .content-wrapper {
    margin: -190px auto 0
}

.colwrapper:after {
    content: '';
    display: table;
    clear: both
}

#beitragsseite .recentnews.morelinks {
    padding-top: 50px;
    border-top: 1px solid #ccc;
    margin-top: 50px
}

#beitragsseite .recentnews h2 {
    color: #1d4477
}

#beitragsseite .recentnews.morelinks > article {
    width: calc(100% / 3 - 1px)
}

#beitragsseite .recentnews.morelinks > article:first-of-type {
    width: calc(100% / 3 - 1px)
}

#beitragsseite .recentnews.morelinks > article:first-of-type figcaption {
    width: auto;
    position: relative;
    right: auto;
    bottom: auto
}

#beitragsseite .recentnews.morelinks > article:first-of-type > figure img {
    height: auto
}

.colwrapper .left-col {
    float: left;
    width: calc(73% - 15px);
    background: #fff;
    margin-right: 15px;
    padding: 0 75px;
    position: relative;
    color: #1d4477;
    font-family: RWESansPS;
    font-weight: normal;
    padding-top: 15px
}

.colwrapper .right-col {
    width: calc(27% - 15px - 75px);
    background: 0 0;
    background: 0 0;
    margin-right: auto;
    float: left;
    margin-left:15px;
}

.btn-like-container.liked .type-not-liked {
    display: none !important
}

.btn-like-container > span {
    display: flex;
    align-items: center;
    font-weight:500;
}

sub {
    font-weight: inherit;
    font-size: 0.75em !important;
    font-family: inherit;
}


.text-module * {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
}

.timelikes + .btn-like-container > span {
    display: inline-block;
    font-weight: 500;
}

.timelikes + .btn-like-container > span .counter {
    font-weight: 500;
}

.btn-like-container > span:before {
    margin-right: 8px
}

.btn-like-container.unliked .type-liked {
    display: none !important
}

.dropdown-menu.open .btn-confirm {
    display: block;
    background-color: #00a8ef;
    color: #fff;
    text-align: center;
    padding: 5px;
    margin: 10px 20px
}

.themenschwerpunkte .bootstrap-select > .dropdown-toggle.bs-placeholder, .themenschwerpunkte .bootstrap-select > .dropdown-toggle.bs-placeholder:active, .themenschwerpunkte .bootstrap-select > .dropdown-toggle.bs-placeholder:focus, .themenschwerpunkte .bootstrap-select > .dropdown-toggle.bs-placeholder:hover {
    color: #000
}

.selections-container {
    margin:10px 0;
}

a.backtooverview {
    position: absolute;
    top: 0px;
    transform: translateY(-50%);
}
a.backtooverview > span {
    margin-right: 10px;
    height: 1em;
    font-size: 18px;
}

.contactbox {
    width: 100%;
    min-height: 315px;
    background: #e8e8e4;
    position: relative;
    padding: 75px 30px 30px
}

.contactbox img {
    position: absolute;
    top: -40px
}

.contactbox h3 {
    font: 700 20px RWESansPS;
    color: #1d4477;
    margin-bottom: 15px
}

.contactbox p {
    color: #1d4477;
    font-size: 16px;
    margin-bottom: 20px
}

.contactbox .contactme {
    display: flex;
    align-items: center;
    width: 100%;
    height: auto;
    line-height: 1em;
    margin-bottom: 10px;
    font-weight: 500;
    text-decoration: none;
    transition: all .3s;
    background-color: transparent;
    color: #00a19f;
    border: #3ed8c3;
    border-radius: 5px;
    border: 2px solid #3ed8c3;
    padding: .75rem 1.5rem;

    justify-content: center;
}

.contactbox .contactme:last-of-type {
    margin-bottom:0px;
}

.contactbox .contactme:hover {
    color: #fff;
    border-color: #00a19f;
    background-color: #00a19f;
}

.contactbox .contactme > span {
    font-size: 12px;
    margin-right: 5px;
    line-height: 1em;
}

#beitragsseite .content-headline, #beitragsseite h1 {
    margin-top: 50px
}

#beitragsseite h1, #content2col h1, #contentseite h1, #veranstaltungen-detail h1, .content-headline {
    color: #1d4477;
    font: 700 50px RWESansPS
}

#beitragsseite .subheading, #content2col subheading, #contentseite .subheading {
    color: #1d4477;
    font: 700 50px/52px RWESansPS;
    margin-top: 50px
}

.contentinformation {
    margin: 15px 0 30px;
}

.categories {
    color: #3ed8c3;
    font: 700 16px RWESansPS;
    text-decoration: none
}

.categories a:hover {
    color: #3ed8c3;
}

.categories a {
    color: #3ed8c3;
    transition: all .3s;
    font-weight: 500;
    font-size:16px;
}

.categories a > span, .categories > span {
    vertical-align: middle;
    font-size: 14px;
    margin-right: 5px
}

.categories a:last-of-type:after {
    content: ''
}

.categories a:after {
    content: ','
}

.categories:last-of-type:after {
    content: none
}

.contentinformation > div {
    border: none;
    padding: 15px 0 15px 25px;
    border-bottom: 1px solid #ccc
}

.contentinformation > div:last-of-type {
    display: flex;
    justify-content: space-between;
    font: 700 16px RWESansPS;
    color: #1d4477;
    align-items: center;
    padding-right: 15px;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc
}

.contentinformation > div:last-of-type a {
    color: #1d4477;
    text-decoration: none;
    font-size: 16px
}

.timelikes {
    color: #1d4477;
    margin-left: 0;
    font-weight: 500;
}

.timelikes:first-of-type + .btn-like-container {
    margin-left: 15px;
    font-weight: 500;
}

.timelikes:before {
    color: #3ed8c3;
    font-size: 20px;
    margin-right: 5px;
    vertical-align: sub
}

.left-col > p {
    line-height: 28px;
    margin-bottom: 25px

}

div.intro p {
    font: 400 22px RWESansPS;
    margin-bottom: 30px;
    line-height: 1.363636em
}

p.quotation {
    font: 400 22px/1.5em RWESansPS;
    position: relative;
    background: url(../img/quotation.png) no-repeat top left;
    padding: 25px 0 0 30px;
    max-width: 100%;
    margin: 50px 0
}

p.quotation > span {
    color: #3ed8c3;
    display: block;
    margin-top: 15px;
    font: 700 16px/20px RWESansPS
}

.image-slider.fullwidth {
    width: calc(100% + 375px)
}

p > a {
    color: #3ed8c3;
    text-decoration: none
}

.image-slider:hover .owl-nav.disabled {
    display: flex;
    justify-content: center
}

.image-slider:hover .owl-nav.disabled .owl-next, .image-slider:hover .owl-nav.disabled .owl-prev {
    display: none
}

.module-downloads {
    height: auto;
    min-height: 60px;
    width: 100%;
    background: #e8e8e4;
    display: flex;
    text-decoration: none;
    color: #1d4477;
    font: 700 20px/normal RWESansPS;
    overflow: hidden;
    padding-right: 25px;
    margin: 50px auto;
    transition: all .3s;
    align-items: center;
    display: flex;
    padding-right: 25px;
    align-items: center
}

#colorbox .module-contactform {
    margin: 0;
    padding-top: 20px
}

.module-downloads:hover {
    text-decoration: none
}

.module-downloads > span:first-of-type {
    margin-right: 25px;
    positioN: relative;
    text-align: center;
    width: 90px;
    font-size: 40px;
    background: #3ed8c3;
    height: auto;
    flex: 0 0 90px;
    display: inline-block;
    align-self: stretch;
    color: #fff
}

.module-downloads > span:last-of-type {
    float: right;
    color: #1d4477;
    padding-top: 5px;
    font-size: 14px;
    margin-left: auto
}

.articleinfo {
    display: flex;
    justify-content: flex-end;
    min-height: 38px
}

.dateviews {
    margin-top: 20px;
    font: 500 16px RWESansPS;
    color: #1d4477;
    margin-left: 15px;
    display: flex;
    align-items: center;
    padding-left: 30px
}

.dateviews:before {
    margin-right: 5px
}

.test {
    width: calc(100% - 115px)
}

.contactbox-responsive-wrapper, .newsletterbox-responsive-wrapper {
    display: none
}

.addborder {
    border: 1px solid #dfdfdf
}

#sliderall {
    top: auto;
    bottom: auto;
    display: block;
    width: 100%;
    height: 550px;
    background: #1baf92;
    position: relative;
    left: auto;
    right: auto
}

span.wpcf7-not-valid-tip {
    color: red;
    font-size: 12px;
    font-weight: 400
}

#error404 section {
    background: url(../img/404_bg.jpg) no-repeat center right;
    background-size: cover;
    width: 100%;
    height: 100vh;
    padding-top: 100px
}

#error404 section h1 {
    color: #fff;
    font: 700 50px RWESansPS
}

#error404 section p {
    font: 400 16px RWESansPS;
    color: #fff;
    margin: 35px 0 25px
}

#error404 section a {
    width: 230px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3ed8c3;
    background: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: all .3s
}

#error404 section a:hover {
    color: #fff;
    background: #1baf92
}

#error404 section a > span {
    margin-left: 10px;
    font-size: 16px;
    margin-top: 2px
}

#error404 footer {
    margin-top: 0
}

#error404 footer > .content-wrapper:first-of-type {
    display: none
}

#landingpage h1 {
    color: #1d4477;
    font: 700 50px RWESansPS;
    margin: 35px auto
}

#landingpage h1 + div.intro p {
    margin-top: 35px;
    padding-bottom: 55px;
    padding-right: 25%;
    border-bottom: 1px solid #ccc
}

#landingpage.wrapper > header + .overlays + .content-wrapper {
    margin: -200px auto 0
}

.landingpagelabel {
    width: auto;
    height: auto;
    font: 400 17px/60px RWESansPS;
    background: #e8e8e4;
    color: #1d4477;
    display: inline-block;
    text-decoration: none;
    position: absolute;
    top: 0px;
    transform: translateY(-50%);
    transition: all .3s;
    background-color: #3ed8c3;
    color: #fff;
    border: #3ed8c3;
    transition: background-color .2s ease;
    border-radius: 5px;
    padding: 0 30px;
    vertical-align: middle;
    font-size: 18px;
    line-height: 60px
}

#landingpage a.backtooverview {
    position: relative;
    margin-top: 10px;
    width: 100%;
    top: 0;
    padding-left: 30px;
    justify-content:center;
}

#searchcontrols {
    display: flex;
    flex-wrap:nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
    margin-top: 45px
}

#searchcontrols > * {
    flex: 1 1 auto;
    margin: 0;
    height: 40px !important;
    color: #000;
    font: 200 16px RWESansPS
}
#searchcontrols > .awesomplete > input {
    flex: 1 1 auto;
    margin: 0;
    height: 40px !important;
    color: #000;
    font: 200 16px RWESansPS
}

#searchcontrols > input {
    background: url(../img/suche.png) no-repeat center right+25px;
    width: 100%;
    margin-left: 0;
    border: 1px solid #ccc;
    padding-left: 15px
}
#searchcontrols > .awesomplete > input {
    background: url(../img/suche.png) no-repeat center right+25px !important;
    width: 100%;
    margin-left: 0;
    border: 1px solid #ccc;
    padding-left: 15px
}

#searchcontrols > div {
    margin-right: 0
}

#searchcontrols > select, #sortby {
    padding-left: 25px;
    border: 1px solid #ccc;
    padding-left: 15px;
    font: 400 16px RWESansPS;
    color: #000;
    margin-left: auto;
    background: url(../img/selectdropdown.png) no-repeat right+25px center !important;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    width: 19px;
    text-indent: .01px;
    text-overflow: ""
}

.pagination .icon-arrow-2-right:before {
    vertical-align: unset;
    display: inline-block;
    transform: none
}

#searchcontrols > div, #searchcontrols > select {
    flex: 1 0 auto;
    flex: 0 0 220px;
    background: #fff
}

select + #paginationwrapper {
    margin: auto
}

.control-wrapper div + #paginationwrapper {
    margin-left:auto;
    margin-right: 0px;
}

#searchcontrols > select option {
    background: #fff
}

.searchresults-wrapper > article {
    border-bottom: 1px solid #ccc;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    flex-wrap: nowrap;
    padding: 0 0 15px;
    margin: 15px 0
}

.BorlabsCookie ._brlbs-content-blocker ._brlbs-caption label input {
    vertical-align: middle;
    width: auto;
    height: auto;
    display: block;
    margin: 0px;
    fleX: 1 1 auto !important;
    /* float: left; */
    display: inline-block;
    appearance: auto;
}

.searchresults-wrapper > article > div {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    display: block;
    flex: 1 1 auto;
    flex-wrap: wrap
}

.searchresults-wrapper > article > div > h2 {
    max-width: 50%;
    max-width: 75%;
    font-size: 20px;
    flex: 1 1 100%;
    max-width: 100%;
    padding-right: 50%
}

.searchresults-wrapper > article > div > h2 a {
    text-decoration: none;
    font: 700 26px RWESansPS;
    color: #1d4477
}

.searchresults-wrapper > article > header {
    margin-bottom: 15px
}

.density {
    font-size: 16px;
    color: #1d4477
}

.weiterlesen {
    color: #01a19f;
    font-weight: 500;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transform: translateX(0);
    transition: transform .3s ease
}

#eviews .weiterlesen {
    font-size: 16px;
    margin-top: 20px;
    flex: 0 0 auto
}

#eviews .weiterlesen span {
    font-size: 10px
}

.weiterlesen:hover {
    transform: translateX(5px);
    text-decoration: none;
    color: #01a19f;
}

.bootstrap-select.btn-group .dropdown-toggle .caret {
    background:none !important
}

span.bs-caret:after {
    content: "";
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
    border: none;
    border-style: solid;
    border-color: transparent;
    font-family: rwe-blog !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    border: none;
    -webkit-font-smoothing: antialiased;
    content: "\65";
    content: "\e08d";
    font-size: 24px;
    color: #3ed8c3;
}

.weiterlesen > span {
    font-size: 16px;
    line-height: 1em;
    display: inline-block;
    margin-left: 5px;
    height: 1em;
}

h1 + #paginationwrapper {
    transform: translateY(5px);
    float: right
}

#paginationwrapper select {
    background: #fff url(../img/selectdropdown.png) no-repeat right;
    flex: 0 1 auto;
    padding-left: 25px;
    background: #fff;
    width: 100%;
    flex: 0 1 auto;
    border-bottom: 1px solid #ccc;
    padding-left: 15px;
    background: #fff;
    width: 125px;
    padding-left: 25px;
    height: 40px;
    color: #000;
    font-family: RWESansPS;
    font-weight: 200;
    background: url(../img/selectdropdown.png) no-repeat right+25px center !important;
    background: url(../img/selectdropdown.png) no-repeat right+25px center !important;
    -moz-appearance: none
}

#paginationwrapper select option {
    background: #fff
}

#paginationwrapper .prev {
    border-right: 0
}

#paginationwrapper .next {
    border-left: 0
}

#paginationwrapper .next, #paginationwrapper .prev {
    width: 40px;
    fleX: 0 0 auto;
    text-align: center;
    line-height: 44px;
    color: #ccc;
    text-decoration: none;
    border: 1px solid #ccc;
    font-size: 16px
}

#paginationwrapper .next:hover, #paginationwrapper .prev:hover {
    color: #000
}

#search h1 {
    font: 700 50px RWESansPS;
    color: #1d4477
}

#search section {
    padding-top: 45px
}

#searchoverlay {
    -webkit-transform: translateY(50px) translateX(50px);
    transform: translateY(50px) translateX(50px);
    -webkit-transition: opacity .5s, -webkit-transform .5s, visibility 0s .5s;
    transition: opacity .5s, transform .5s, visibility 0s .5s;
    width: 100%;
    height: auto;
    max-width: 1920px;
    min-height: 100vh;
    background: #1d4477;
    background-image: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
    z-index: 999;
    position: fixed;
    top: 0;
    overflow: auto;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    padding: 95px 0 190px;
}

#searchoverlay.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, transform .5s
}

#searchoverlay h2 {
    font-weight: bold !important;
    font-size: 50px;
    color: #fff !important;
    margin: auto auto !important;
    line-height: 60px !important
}

#searchoverlay form {
    display: flex;
    align-items: center;
    margin: 45px 0 80px;
    flex-wrap: wrap
}

#searchoverlay button {
    justify-content: flex-start;
    font: 700 16px RWESansPS;
    padding: 0 25px;
    width: auto;
    height: 60px;
    border: none;
    align-items: center;
    justify-content: center;
    color: #3ed8c3;
    background: #fff;
    text-decoration: none;
    display: flex;
    flex:0 0 auto;
    transition: .8s;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
}

#searchoverlay button:hover {
    color: #fff;
    background: #3ed8c3
}

.shariff li, .shariff li a {
    height:auto !important;
}




#searchoverlay button > span {
    font-size: 36px;
    line-height: 1em;
}

#searchoverlay input {
    font: 700 16px RWESansPS !important;
    flex: 1 1 auto;
    height: 60px;
    display: inline-block;
    align-items: center;
    justify-content: center;
    color: #1c4678;
    background: #ffffffff;
    text-decoration: none;
    /*    border: 1px solid #ccc;*/
    border:none;
    padding: 0 15px;
    width: 100%;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

#searchoverlay input:focus {
    outline: 2px solid #3ed8c3
}

.resetform {
    height: 40px;
    margin-top: 15px;
    color: #fff;
    opacity: .6;
    text-decoration: none;
    margin-left: auto;
    transition: .8s
}

.resetform:hover {
    text-decoration: none;
    opacity: 1;
    color: #fff
}

.resetform > span {
    font-size: 8px;
    margin: 0 5px 0 10px
}

#searchoverlay input::placeholder {
    color: #1d4477;
    opacity: 1
}

#searchoverlay input:-ms-input-placeholder {
    color: #1d4477
}

#searchoverlay input::-ms-input-placeholder {
    color: #1d4477
}

#opensearch {
    display: inline-block;
    width: auto;
    text-align: center;
    text-decoration: none;
    position: relative
}

.wrapper-dropdown-5 {
    position: relative;
    width: 45px;
    margin: 0 auto;
    background: 0 0;
    padding-left: 5px;
    cursor: pointer;
    font-weight: 500;
    outline: 0;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out
}

.wrapper-dropdown-5:after {
    content: "";
    width: auto;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -5px;
    border: none;
    border-style: solid;
    border-color: transparent;
    font-family: rwe-blog !important;
    font-style: normal !important;
    font-weight: 400 !important;
    font-variant: normal !important;
    text-transform: none !important;
    speak: none;
    line-height: 1;
    border: none;
    -webkit-font-smoothing: antialiased;
    content: "\65";
    content: "\e08d";
    font-size: 12px;
    color: #3ed8c3;
}

.wrapper-dropdown-5 .dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    border-radius: 0 0 5px 5px;
    border-top: 0;
    border-bottom: 0;
    list-style: none;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    max-height: 0;
    overflow: hidden;
    border: none
}

.wrapper-dropdown-5 .dropdown li a {
    display: block;
    text-decoration: none;
    color: #1d4477;
    padding: 5px 0 5px 5px
}

.wrapper-dropdown-5 .dropdown li:last-of-type a {
    border: none
}

.wrapper-dropdown-5 .dropdown li i {
    margin-right: 5px;
    color: inherit;
    vertical-align: middle
}

.wrapper-dropdown-5 .dropdown li:hover a {
    color: #57a9d9
}

.wrapper-dropdown-5.active:after {
    border-color: #82d1ff transparent
}

.wrapper-dropdown-5.active .dropdown {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
    max-height: 400px
}

.closeoverlay {
    color: #fff;
    position: absolute;
    right: 290px;
    z-index: 99;
    font-size: 16px;
    cursor: pointer;
    transition: .8s;
    top: 125px
}

.closeoverlay:hover {
    color: #3ed8c3
}

.closeoverlay > span {
    font-size: 14px;
    display: inline-block;
    transform: translateY(2px);
    margin-left: 5px
}

#themafinden {
    visibility: hidden;
    -webkit-transform: translateY(50px) translateX(50px);
    transform: translateY(50px) translateX(50px);
    -webkit-transition: opacity .5s, -webkit-transform .5s, visibility 0s .5s;
    transition: opacity .5s, transform .5s, visibility 0s .5s;
    width: 100%;
    height: auto;
    min-height: 100vh;
    background: #1d4477;
    background-image: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
    z-index: 999;
    top: 0;
    max-width: 1920px;
    position: fixed;
    top: 0;
    overflow: auto;
    height: 100%;
    opacity: 0;
    padding: 95px 0 190px;
}

#themafinden.open {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    -webkit-transition: opacity .5s, -webkit-transform .5s;
    transition: opacity .5s, transform .5s
}

#themafinden > .content-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start
}

#themafinden .left-col {
    flex: 0 0 auto;
    width: 345px;
    margin-right: 115px
}

#themafinden .right-col {
    flex: 0 0 auto;
    width: 800px
}

#themafinden h2 {
    font-weight: bold !important;
    font-weight: bold !important;
    font-size: 50px;
    margin: auto auto !important;
    color: #fff !important
}

.mostsearched {
    padding: 30px 0;
    border-top: 2px solid #fff
}

.ui-accordion-content > div:not(#selectionpicker):first-of-type {
    margin-top: 20px !important
}

.ui-accordion-content > div:last-of-type {
    margin-bottom: 20px !important
}

#searchoverlay .mostsearched h3 {
    color: #3ed8c3;
    font: 500 18px RWESansPS;
    margin-bottom: 25px
}

.module-accordion #selectionpicker .resetform {
    color: #fff
}

.module-faq {
    margin: 50px 0
}
th {
    font-weight:500;
}

.module-contactinformation .icon-rwe-84 {
    display: inline-block;
    height: 75px;
    width: 75px;
    text-align: center;
    background: #3ed8c3;
    color: #fff;
    font-size: 40px;
    vertical-align: top;
    padding-top: 7px;
    line-height: 75px;
    border-radius: 5px;
    margin-right: 30px;
}

.module-faq .question, .module-faq .question p {
    color: #3ed8c3 !important;
    font-weight: bold !important;
    font-size: 18px !important
}

.module-faq .question {
    padding-left: 20px;
    border-left: 2px solid #3ed8c3;
    margin-bottom: 10px
}

.module-faq .answer > p {
    font-family: RWESansPS;
    font-weight: normal;
    color: #1d4477
}

.module-faq .answer > strong {
    font-family: RWESansPS;
    font-weight: bold;
    float: left;
    margin-right: 20px;
    color: #1d4477
}

.module-faq .answer img {
    float: left;
    margin-right: 20px
}

.module-faq .answer + .question {
    margin-top: 50px
}

.module-accordion .image-slider {
    width: 100%;
    margin: 25px 0
}

.mostsearched .label {
    padding: 20px;
    color: #fff;
    background: #3ed8c3;
    border-radius: 5px;
    font: 500 16px RWESansPS;
    margin: 7.5px;
    cursor: pointer;
    transition: all .3s
}

.mostsearched .label:hover {
    color: #fff;
    background: #3ea2c3
}

.mostsearched > div {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -7.5px
}

#uebersicht section {
    padding-top: 45px
}

#uebersicht-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
    margin: 45px 0
}

#uebersicht-wrapper .left-col {
    flex: 0 0 auto;
    max-width: 880px;
    width: 100%
}

#uebersicht-wrapper .right-col {
    flex: 0 0 auto;
    max-width: 430px;
    width: 100%
}

#uebersicht-wrapper .uebersicht-article figure {
    display: flex;
    border-top: 1px solid #ccc;
    justify-content: space-between;
    font-size: 22px;
}

#uebersicht-wrapper .uebersicht-article figure .lesetipp {
    font-size: 16px;
}

#uebersicht-wrapper .uebersicht-article figure > * {
    max-width: calc(50% - 15px);
    flex: 0 0 auto
}

#uebersicht-wrapper .uebersicht-article figure > img {
    width: 100%;
    height: 100%
}

.uebersicht-article {
    margin-bottom: 30px;
    min-height: 320px;
    position: relative
}

.teaser-subhead a {
    color: #1d4477
}

.teaser-subhead:hover a {
    color: #1d4477
}

.uebersicht-article > figure figcaption {
    margin-right: 30px;
    padding-top: 20px
}

.uebersicht-article > figure figcaption span.date, .uebersicht-article > figure figcaption span.likes {
    color: #1d4477;
    font: 500 13px RWESansPS;
    display: inline-block
}

.uebersicht-article > figure figcaption span.date + span.likes {
    margin-left: 15px
}

span.likes:before {
    font-size: 10px
}

.uebersicht-article .categories {
    display: block;
    font-size: 13px;
    margin-top: 5px
}

#uebersicht h1 {
    font: 700 50px RWESansPS;
    color: #1d4477;
    display: inline-block;
    margin-top: 0
}

.uebersicht-article > figure figcaption h2 {
    color: #1d4477;
    font: 700 24px RWESansPS;
    margin: 15px 0 0
}

.uebersicht-article > figure figcaption h2 > a {
    color: #1d4477;
    font: 700 26px RWESansPS;
    margin: 35px 0;
    text-decoration: none
}

.uebersicht-article > figure figcaption h2:hover + a.weiterlesen {
    transform: translateX(5px);
    text-decoration: none;
    color: #3ed8c3
}

.uebersicht-article .weiterlesen {
    position: absolute;
    bottom: 0
}

#themafinden #selectionpicker {
    padding: 0 30px;
    margin-top: 25px;
    background:none;
}

#themafinden p {
    color: #fff;
    font-size: 16px;
    line-height: 23px;
    margin-top: 25px
}


.lds-ellipsis {
    display: inline-block;
    position: relative;
    width: 64px;
    height: 11px;
}

.lds-ellipsis div {
    position: absolute;
    top: 0px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
    animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
    left: 6px;
    animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
    left: 6px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
    left: 26px;
    animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
    left: 45px;
    animation: lds-ellipsis3 0.6s infinite;
}

.beauty {
    min-width: 250px;
}

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}
@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(0);
    }
}
@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(19px, 0);
    }
}

#themafinden .overview {
    width:100%;
    font: 500 18px/1.5em RWESansPS;
}

#themafinden .overview:hover {
    background: #1c9475
}

#themafinden .overview > span {
    font-size: 13px
}

#selectionpicker {
    background: #1d4477;
    width: 100%;
    padding: 30px;
    background-image: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
}

#selectionpicker > div {
    margin: 20px 0 5px
}

#selectionpicker > span {
    font: 700 22px RWESansPS;
    color: #fff;
    display: block
}

#selectionpicker .selectionwrapper {
    margin-bottom: 45px
}

#selectionpicker label {
    width: 100%;
    font: 500 16px RWESansPS;
    color: #3ed8c3;
    margin-bottom:5px
}

#selectionpicker .resultcount {
    height: 60px;
}

#selectionpicker .resultcount:hover {
    background: #1c9475
}

.resultcount > span:first-of-type {
    font-size: 13px;
    margin-right: 5px
}

#selectionpicker .resetform {
    margin-top: 25px;
    margin-left: 0;
    padding: 0;
    display: inline-block;
    transition: all .3s
}

#selectionpicker .resetform:hover {
    text-decoration: none;
    opacity: 1;
    color: #fff
}

#selectionpicker .resetform > span {
    margin-left: 0
}

.multiple-select {
    font: normal 14px RWESansPS !important;
    height: 40px;
    margin-top: 10px;
    font-size: 14px !important;
    padding: 0 15px;
    cursor: pointer
}

.control-wrapper {
    display: flex;
    float: right;
    align-items: center
}

h1 + .control-wrapper {
    transform: translateY(5px);
    position: relative;
    z-index: 9;
}

.control-wrapper > * {
    margin: 0 15px
}

.control-wrapper > div:first-of-type {
    margin-left: 0;
    cursor: pointer
}

.control-wrapper > div:first-of-type:hover {
    background: #e8e8e4;
    cursor: pointer
}

.control-wrapper > div:last-of-type {
    margin-right: 0
}

#sortby {
    cursor: pointer;
    flex: 0 0 240px;
    width: 240px;
    border: 1px solid #ccc;
    padding-left: 25px;
    height: 40px;
    color: #000;
    font: 400 16px RWESansPS;
    background: #fff;
    left:0px;
}

.contentheader {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
    align-items: center;
    position: relative
}

#schwerpunkte h1 {
    font: 700 50px RWESansPS;
    color: #1d4477;
    display: inline-block;
    margin-top: 0
}

#schwerpunkte section {
    padding-top: 45px
}

#schwerpunkt-wrapper {
    display: flex;
    flex-wrap: wrap;
    margin: 45px 0
}

#schwerpunkt-wrapper figure {
    display: flex;
    align-items: stretch
}

#schwerpunkt-wrapper article {
    position: relative;
    width: 100%;
    border-top: 1px solid #ccc;
    display: flex;
    align-items: stretch;
    min-height: 258px;
    opacity: 0
}

#schwerpunkt-wrapper > article {
    animation-name: showup;
    animation-duration: 2s;
    animation-fill-mode: forwards
}

#schwerpunkt-wrapper > article:nth-of-type(1n) {
    animation-delay: .3s
}

#schwerpunkt-wrapper > article:nth-of-type(2n) {
    animation-delay: .6s
}

#schwerpunkt-wrapper > article:nth-of-type(3n) {
    animation-delay: .9s
}

#schwerpunkt-wrapper > article:nth-of-type(4n) {
    animation-delay: 1.2s
}

#schwerpunkt-wrapper > article:nth-of-type(5n) {
    animation-delay: 1.5s
}

#schwerpunkt-wrapper > article:nth-of-type(6n) {
    animation-delay: 1.8s
}

#schwerpunkt-wrapper > article:nth-of-type(7n) {
    animation-delay: 2.1s
}

#schwerpunkt-wrapper > article:nth-of-type(8n) {
    animation-delay: 2.4s
}

#schwerpunkt-wrapper > article:nth-of-type(9n) {
    animation-delay: 2.7s
}

#schwerpunkt-wrapper > article:nth-of-type(10n) {
    animation-delay: 3s
}

#schwerpunkt-wrapper article figcaption {
    padding: 40px 0 40px 85px;
    width: 100%
}

#schwerpunkt-wrapper article:last-of-type {
    border-bottom: 1px solid #ccc
}

#schwerpunkt-wrapper article figcaption h2 {
    color: #1d4477;
    font: 700 35px RWESansPS
}

#schwerpunkt-wrapper article figcaption p {
    color: #1d4477;
    font: 400 18px RWESansPS;
    margin-top: 15px;
    max-width: 400px
}

#schwerpunkt-wrapper article .info-wrapper {
    position: absolute;
    right: 0;
    bottom: 45px
}

#schwerpunkt-wrapper article .info-wrapper > a {
    width: 100%;
    margin-top: 10px
}

.module-mosaikrework {
    display: table;
    font-size: 0;
    margin: 50px 0
}

.module-mosaikrework > div {
    display: table-cell;
    padding: 0;
    font-size: 0
}

.module-mosaikrework > div:first-of-type {
    border-right: 15px solid #fff
}

.module-mosaikrework > div:last-of-type {
    border-left: 15px solid #fff
}


#schwerpunkt-wrapper article > div:first-of-type {
    background: no-repeat center center;
    background-size: cover;
    flex: 0 0 427px
}

#schwerpunkt-wrapper article > div:last-of-type {
    padding: 40px 0 40px 85px;
    width: 100%
}

#schwerpunkt-wrapper article > div:last-of-type h2 {
    color: #1d4477;
    font: 700 35px RWESansPS;
    max-width: 445px
}

#schwerpunkt-wrapper article > div:last-of-type p {
    color: #1d4477;
    font: 400 18px RWESansPS;
    margin-top: 15px;
    max-width: 400px;
    line-height:1.5em
}

#searchcontrols > input {
    background-image: url(../img/suche.png) !important;
    background-repeat: no-repeat !important;
    background-position: center right+25px !important;
}

#copyright {
    display: flex;
    align-items: center;
    line-height: 1em
}

#copyright p {
    display: inline-block;
    padding-right: 40px;
    position: relative;
    text-decoration: none;
    font: 400 16px RWESansPS;
    color: #fff;
    opacity: .6
}

#copyright p:after {
    content: '';
    height: 38px;
    width: 1px;
    background: #fff;
    opacity: .6;
    position: absolute;
    right: 20px;
    bottom: -10px
}

#energiewetter {
    padding-left: 110px;
    width: calc(100% - 340px)
}

#energiewetter > span {
    font: 700 50px/35px RWESansPS;
    color: #fff;
    margin: 0 auto 20px;
    display: block
}

#energiewetter > strong {
    font: 500 18px RWESansPS;
    color: #fff
}

.energiebox:last-of-type {
    margin-right: 0
}

.energiewrapper {
    display: flex;
    width: 100%
}

.energiebox .percentage:before {
    content: attr(data-percentage);
    display: block;
    color: #fff;
    font: 400 14px RWESansPS;
    position: absolute;
    top: -20px;
    left: 0
}

.energiebox .percentage {
    position: absolute;
    background: #1c9475;
    width: 100%;
    height: calc(0px);
    bottom: 5px;
    left: 0;
    transition: height 2s
}

#braunkohle .percentage {
    background: #8d491d;
    height: calc(0px)
}

#braunkohle .percentage.animated {
    height: calc(70% * 1.5 - 5px);
    background: #adafb1 !important
}

#steinkohle .percentage {
    background: #605c5c;
    height: calc(0px)
}

#steinkohle .percentage.animated {
    background: #605c5c;
    height: calc(20% * 1.5 - 5px)
}

#gasenergie .percentage {
    background: #eac411;
    height: calc(0px)
}

#gasenergie .percentage.animated {
    background: #eac411;
    height: calc(7% * 1.5 - 5px)
}

#gasenergie {
    border-bottom: 5px solid #eac411
}

#braunkohle:after {
    content: attr(data-name)
}

#steinkohle:after {
    content: attr(data-name)
}

#windenergie:after {
    content: attr(data-name)
}

#kernenergie:after {
    content: attr(data-name)
}

#solarenergie:after {
    content: attr(data-name)
}

#gasenergie:after {
    content: attr(data-name)
}

#other:after {
    content: attr(data-name)
}

text.svgtext {
    font-weight:500 !important;
}

.timetable {
    color: #fff;
    font: 500 16px RWESansPS;
    text-align: right;
    margin-top: -25px;
    margin-bottom: 65px
}

.timetabel span {
    font:inherit;
}

#error404 #breadcrumb {
    display: none
}

.timetable a {
    color: #fff;
    margin: 0 5px;
    transform: translateY(2px);
    display: inline-block
}

#player {
    width: 100%;
    position: relative
}

#controls {
    width: 100%;
    background: #1d4477;
    height: 50px;
    line-height: 35px;
    padding-left: 35px;
    padding-right: 35px;
    display: flex;
    align-items: center;
    justify-content: space-between
}

#controls > div:last-of-type > * {
    margin-right: 15px;
    display: inline-block
}

#controls #current, #controls #duration {
    display: none
}

#videotitle {
    position: absolute;
    bottom: 50px;
    width: 100%;
    background: #07416b;
    height: 80px;
    display: flex;
    align-items: center;
    padding-left: 35px
}

#videotitle span {
    font: 700 24px RWESansPS;
    color: #fff
}

#player video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: fill
}

#player button:focus {
    outline: 0
}

#player button {
    text-indent: -9999px;
    width: 21px;
    border: none;
    cursor: pointer;
    background: url(../img/play.png) no-repeat center center
}

#player .pause {
    background: url(../img/pause.png) no-repeat center center;
    width: 21px
}

#player .play {
    background: url(../img/play.png) no-repeat center center
}

#player #volume-bar {
    width: 50px;
    vertical-align: middle;
    padding: 0
}

#player .mute {
    text-indent: -9999px;
    width: 22px;
    border: none;
    cursor: pointer;
    background: url(../img/volume-on.png) no-repeat center center
}

div#cboxTitle:empty {
    display: none !important
}

#player .unmute {
    text-indent: -9999px;
    width: 22px;
    border: none;
    cursor: pointer;
    background: url(../img/volume-disabled.png) no-repeat center center
}

#player .replay {
    background-position: -133px 0
}

#player .fullscreen {
    text-indent: -9999px;
    width: 18px;
    border: none;
    cursor: pointer;
    background: url(../img/scale-up.png) no-repeat center center
}

#player progress {
    color: #fff;
    font-size: 12px;
    width: 220px;
    border: none;
    margin-right: 10px;
    background: #434343;
    border-radius: 9px;
    vertical-align: middle
}

#player progress::-moz-progress-bar {
    color: #fff;
    background: #434343
}

#player progress[value]::-webkit-progress-bar {
    background-color: #434343;
    border-radius: 2px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, .25) inset
}

#player progress[value]::-webkit-progress-value {
    background-color: #fff
}

#player input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    margin: 6.8px 0
}

#player input[type=range]:focus {
    outline: 0
}

#player input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 4.4px;
    cursor: pointer;
    background: #fff;
    border-radius: 1px
}

#player input[type=range]::-webkit-slider-thumb {
    height: 18px;
    width: 9px;
    border-radius: 3px;
    background: #fff;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -7.9px
}

#player input[type=range]:focus::-webkit-slider-runnable-track {
    background: #fff
}

#player input[type=range]::-moz-range-track {
    width: 100%;
    height: 4.4px;
    cursor: pointer;
    background: #fff;
    border-radius: 1px
}

#player input[type=range]::-moz-range-thumb {
    height: 18px;
    width: 9px;
    border-radius: 3px;
    background: #fff;
    cursor: pointer
}

#player input[type=range]::-ms-track {
    width: 100%;
    height: 4.4px;
    cursor: pointer;
    background: 0 0;
    border-color: transparent;
    color: transparent
}

#player input[type=range]::-ms-fill-lower {
    background: #fff;
    border-radius: 2px
}

#player input[type=range]::-ms-fill-upper {
    background: #fff;
    border-radius: 2px
}

#player input[type=range]::-ms-thumb {
    height: 18px;
    width: 9px;
    background: #fff;
    cursor: pointer
}

#player input[type=range]:focus::-ms-fill-lower {
    background: #fff
}

#player input[type=range]:focus::-ms-fill-upper {
    background: #fff
}

.js div#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 99999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #1d4477;
    background-image: linear-gradient(45deg, #1d4477, #0f728b 78%, #00a19f);
}

#loading-center-absolute {
    position: absolute;
    left: 50%;
    top: 50%;
    height: 150px;
    width: 150px;
    margin-top: -75px;
    margin-left: -75px;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg)
}

.object {
    width: 20px;
    height: 20px;
    background-color: #1baf92;
    position: absolute;
    left: 65px;
    top: 65px;
    -moz-border-radius: 50% 50% 50% 50%;
    -webkit-border-radius: 50% 50% 50% 50%;
    border-radius: 50%
}

.object:nth-child(2n+0) {
    margin-right: 0
}

#object_one {
    -webkit-animation: object_one 2s infinite;
    animation: object_one 2s infinite;
    -webkit-animation-delay: .2s;
    animation-delay: .2s
}

#object_two {
    -webkit-animation: object_two 2s infinite;
    animation: object_two 2s infinite;
    -webkit-animation-delay: .3s;
    animation-delay: .3s
}

#object_three {
    -webkit-animation: object_three 2s infinite;
    animation: object_three 2s infinite;
    -webkit-animation-delay: .4s;
    animation-delay: .4s
}

#object_four {
    -webkit-animation: object_four 2s infinite;
    animation: object_four 2s infinite;
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

#object_five {
    -webkit-animation: object_five 2s infinite;
    animation: object_five 2s infinite;
    -webkit-animation-delay: .6s;
    animation-delay: .6s
}

#object_six {
    -webkit-animation: object_six 2s infinite;
    animation: object_six 2s infinite;
    -webkit-animation-delay: .7s;
    animation-delay: .7s
}

#object_seven {
    -webkit-animation: object_seven 2s infinite;
    animation: object_seven 2s infinite;
    -webkit-animation-delay: .8s;
    animation-delay: .8s
}

#object_eight {
    -webkit-animation: object_eight 2s infinite;
    animation: object_eight 2s infinite;
    -webkit-animation-delay: .9s;
    animation-delay: .9s
}

#object_big {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50px;
    top: 50px;
    -webkit-animation: object_big 2s infinite;
    animation: object_big 2s infinite;
    -webkit-animation-delay: .5s;
    animation-delay: .5s
}

@-webkit-keyframes object_big {
    50% {
        -webkit-transform: scale(.5)
    }
}

@keyframes object_big {
    50% {
        transform: scale(.5);
        -webkit-transform: scale(.5)
    }
}

@-webkit-keyframes object_one {
    50% {
        -webkit-transform: translate(-65px, -65px)
    }
}

@keyframes object_one {
    50% {
        transform: translate(-65px, -65px);
        -webkit-transform: translate(-65px, -65px)
    }
}

@-webkit-keyframes object_two {
    50% {
        -webkit-transform: translate(0, -65px)
    }
}

@keyframes object_two {
    50% {
        transform: translate(0, -65px);
        -webkit-transform: translate(0, -65px)
    }
}

@-webkit-keyframes object_three {
    50% {
        -webkit-transform: translate(65px, -65px)
    }
}

@keyframes object_three {
    50% {
        transform: translate(65px, -65px);
        -webkit-transform: translate(65px, -65px)
    }
}

@-webkit-keyframes object_four {
    50% {
        -webkit-transform: translate(65px, 0)
    }
}

@keyframes object_four {
    50% {
        transform: translate(65px, 0);
        -webkit-transform: translate(65px, 0)
    }
}

@-webkit-keyframes object_five {
    50% {
        -webkit-transform: translate(65px, 65px)
    }
}

@keyframes object_five {
    50% {
        transform: translate(65px, 65px);
        -webkit-transform: translate(65px, 65px)
    }
}

@-webkit-keyframes object_six {
    50% {
        -webkit-transform: translate(0, 65px)
    }
}

@keyframes object_six {
    50% {
        transform: translate(0, 65px);
        -webkit-transform: translate(0, 65px)
    }
}

@-webkit-keyframes object_seven {
    50% {
        -webkit-transform: translate(-65px, 65px)
    }
}

@keyframes object_seven {
    50% {
        transform: translate(-65px, 65px);
        -webkit-transform: translate(-65px, 65px)
    }
}

@-webkit-keyframes object_eight {
    50% {
        -webkit-transform: translate(-65px, 0)
    }
}

@keyframes object_eight {
    50% {
        transform: translate(-65px, 0);
        -webkit-transform: translate(-65px, 0)
    }
}

.colwrappernoflex:after {
    content: '';
    display: table;
    clear: both
}

.colwrappernoflex .left-col {
    float: left;
    width: calc(65% - 15px);
    background: #fff;
    padding: 0 95px;
    position: relative;
    color: #1d4477;
    font-family: RWESansPS;
    font-weight: normal
}

.colwrappernoflex .right-col {
    float: left;
    width: calc(35% - 15px - 115px);
    background: 0 0;
    background: 0 0;
    margin-right: auto
}

.pagination span + span {
    margin-left: -10px;
    background: 0 0 !important
}

#landingpage .articlecounter {
    float: left
}

#landingpage #paginationwrapper {
    float: right
}

.pagination nav {
    display: inline-block
}

.pagination ul {
    font-size: 0;
    text-align: right
}

.pagination ul li {
    display: inline-block;
    font-size: 16px;
    vertical-align: middle
}

.pagination ul li a {
    display: inline-block;
    color: #353333;
    padding: 9px 10px;
    background: 0
}

.pagination ul li.pagination-separator > a {
    background: #1d4678;
    color: #fff;
    width: 100%;
    text-align: center
}

.pagination ul li.pagination-separator:first-of-type > a.page-first-link, .pagination ul li.pagination-separator:last-of-type > a.page-last-link {
    background: #3ed8c3;
    background: #019d9e;
}

.pagination ul li.pagination-separator > a span {
    transform: translateY(3px);
    display: inline-block
}

.pagination ul li.pagination-separator:hover a, .pagination ul li.pagination-separator:hover a span, .pagnation ul li.pagination-separator:hover {
    background: #3ed8c3 !important;
    color: #fff
}

.pagination ul li.active a, .pagination ul li:hover a, .pagination ul li:hover a span {
    color: #000;
    background: #e8e8e4 !important;
    text-decoration: none
}

.pagination ul li.pagination-separator:hover a span {
    background: 0 0 !important
}

.pagination ul li.pagination-separator:hover a span + span {
    background: 0 0 !important
}

/*.pagination ul li:nth-of-type(2n) {
    border-right: 1px dotted #dfe1e3;
    border-left: 1px dotted #dfe1e3
}*/

li.pagination-separator {
    border: none !important;
    min-width: 42px;
    background: #0c5089 !important;
    max-height: 40px;
    overflow: hidden;
}

.pagination ul li:last-of-type {
    border-right: none
}

.pagination ul li.disabled {
    opacity: .5;
    cursor: not-allowed
}

.pagination ul li.disabled a {
    cursor: not-allowed
}

span.selection-item {
    display: inline-block;
    padding: 5px 30px 5px 10px;
    color: #fff;
    background: #2dafe6;
    font-size: 14px;
    border-radius: 5px;
    cursor: pointer;
    margin: 2.5px;
    position: relative;
    font-size: .8rem;
    line-height: 1.8;
    padding: .3rem .7rem;
    margin: 0.2em 0.375em 0.2em 0;
    background: #f9f9f9;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    cursor: pointer;
    color: #1d4477;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    font-weight: 500;
    border: 1px solid #e4e9f2;
    font-size: 14px;
    font-weight: 500;
}

span.selection-item:after {
    font: normal normal 9px/1 rwe-blog !important;
    font-family: "rwe-blog!important";
    speak: none;
    -webkit-font-smoothing: antialiased;
    content: "\43";
    margin-left: 10px;
    content: "\e0a7";
    color: #3ed8c3;
}

.pagination-responsive {
    display: none
}

span.teaser-subhead {
    display: block;
    font: 400 18px/24px RWESansPS;
    margin: 10px 0 10px;
}

.articleinfo + div.categories-wrapper {
    margin-top: 50px
}

.contentinformation + .text-module {
    margin-top: 30px
}

#beitragsseite .categories-wrapper + h1 {
    margin-top: 15px
}

.module-subheadline {
    color: #1d4477;
    font: 400 27px RWESansPS;
    margin: 15px 0 30px
}

.categories-wrapper .lesetipp {
    background: #16b398;
    content: none;
    margin-right: 20px;
    margin-bottom: 10px;
    right: auto;
    left: auto;
    top: auto;
    display: inline-block;
    background: #3ed8c3;
    position: relative;
    color: #fff;
    padding: 5px 8px;
    font-size: 16px;
    content: none;
    margin-right: 20px;
    right: auto;
    left: auto;
    top: auto;
    display: inline-block
}

@media screen and (max-width: 1919px) {
    header > div.contentheader {
        background-position: left top
    }

    .image-slider.fullwidth {
        width: calc(100% + 440px)
    }

    body.sidr-animating #mainnavigationwrapper, body.sidr-open #mainnavigationwrapper {
        transform: translateX(-250px)
    }

    .closeoverlay {
        right: 60px
    }

    #uebersicht-wrapper .left-col {
        max-width: calc(100% - 430px - 30px);
        margin-right: 30px
    }

    #uebersicht-wrapper .uebersicht-article figure {
        justify-content: space-between
    }

    #contentseite section {
        max-width: 1100px;
        padding: 0 115px
    }

    .content-wrapper {
        margin: auto;
        width: 100%
    }

    header .contentheader img {
        margin: 70px 0 30px
    }

    header .contentheader svg {
        margin: 70px 0 30px;
        width: 484px
    }

    header h1 {
        margin-left: 0
    }

    .topicfocus-slider article {
        width: auto;
        height: auto
    }

    .topicfocus-slider article figure img {
        max-width: none;
        height: auto
    }

    .topicfocus-slider .owl-stage {
        margin-left: 161.5px
    }

    /*.mostread-flex > article {
        min-height: 295px;
        background: #e8e8e4;
        position: relative;
        width: calc(100% / 4 - 2.5px);
        margin-right: 5px;
        height: 100%
    }*/

    .mostread-flex > article:last-of-type {
        margin-right: 0
    }

    .slider-wrapper > img {
        height: 50px;
        top: -25px
    }

    .colwrapper .left-col {
        padding-right: 80px
    }

    #beitragsseite .image-slider.fullwidth {
        width: calc(100% + 430px)
    }

    #beitragsseite header > div.contentheader {
        height: 445px
    }

    .test {
        width: calc(100% - 100px)
    }
}

@media screen and (max-width: 1680px) {
    .topicfocus-slider article figcaption {
        left: 30px
    }

    .topicfocus-slider article figcaption h1 {
        font-size: 45px
    }

    .topicfocus-slider article figcaption h3 {
        font-size: 45px
    }
}

@media screen and (max-width: 1679px) {
    #schwerpunkt-wrapper article > div:last-of-type h2 {
        max-width: 445px
    }

    header > div#breadcrumb {
        max-width: calc(100% - 120px)
    }

    #beitragsseite h1, #content2col span.subheading, #contentseite h1, #contentseite span.subheading, #veranstaltungen-detail h1, .content-headline {
        font-size: 45px
    }

    header .contentheader img {
        margin: 70px 0 50px
    }

    header .contentheader svg {
        margin: 70px 0 50px
    }

    header h1 {
        margin-left: 0
    }

    .content-wrapper {
        max-width: calc(100% - 120px)
    }

    .topicfocus-slider .owl-stage {
        margin-left: 60px
    }

    .image-slider.fullwidth {
        width: calc(100% + 345px)
    }

    .contactbox p {
        padding-right: 0
    }

    #beitragsseite .image-slider.fullwidth {
        width: calc(100% + 345px)
    }

    .contactbox .contactme {
        padding-left: 15px;
        font-size: 16px
    }

    .overlayopener {
        min-width: unset
    }

    .colwrapper .left-col {
        padding: 0 75px
    }

    #beitragsseite .category-headline {
        padding: 50px 75px
    }

    #beitragsseite .subheading, #beitragsseite h1, #veranstaltungen-detail h1, .content-headline {
        font-size: 45px
    }

    .sidr ul li a, .sidr ul li span {
        font-size: 18px
    }

    .sidr ul li ul li a, .sidr ul li ul li span {
        font-size: 14px
    }

    .sidr ul li ul li, .sidr ul li ul li.active, .sidr ul li ul li.sidr-class-active, .sidr ul li ul li:hover {
        line-height: 30px
    }

   /* .mostread-flex > article:nth-of-type(5) {
        display: none
    }*/

    body.sidr-animating #mainnavigationwrapper, body.sidr-open #mainnavigationwrapper {
        transform: translateX(0)
    }

    #sidr.sidr {
        top: 90px
    }
}



@media screen and (max-width: 1365px) {

#prev,#next {
    display:none
}

    .topicfocus-slider .owl-nav .owl-prev {
        left: -35px
    }

    .topicfocus-slider .owl-nav .owl-next {
        right: -35px
    }

    #schwerpunkt-wrapper article > div:last-of-type h2 {
        max-width: unset
    }

    #schwerpunkt-wrapper figure {
        display: flex;
        max-height: 200px;
        align-items: center
    }

    #schwerpunkt-wrapper article figcaption {
        padding: 0 0 0 100px;
        width: 100%
    }

    header > div.contentheader {
        background-position: center top
    }

    #schwerpunkt-wrapper article .info-wrapper {
        position: relative;
        right: auto;
        bottom: auto;
        display: flex;
        align-items: center;
        margin-top: 15px
    }

    #schwerpunkt-wrapper article .info-wrapper > a {
        margin-top: 0;
        height: 40px;
        line-height: 40px
    }

    .image-slider.fullwidth {
        width: calc(100% + 325px)
    }

    .contactbox .contactme {
        padding-left: 10px;
        font-size: 15px
    }

    #themafinden .left-col p {
        margin-bottom: 0
    }

    #themafinden .left-col {
        margin-right: 0
    }

    #themafinden .left-col .overview {
        display: none
    }

    #themafinden .right-col .overview {
        display: block;
        margin-top: 50px;
        position: relative
    }

    #themafinden .right-col .overview:before {
        content: '';
        width: 100%;
        display: block;
        border-top: 2px solid #fff;
        margin-top: 50px;
        position: absolute;
        left: 0;
        top: -80px;
        pointer-events: none
    }

    .searchresults-wrapper > article > div > h2 a {
        font-size: 1.25rem
    }

    #schwerpunkt-wrapper article figcaption, .topicfocus-slider article figcaption {
        max-width: 75%
    }

    .contentheader {
        flex-wrap: wrap;
        justify-content: flex-end
    }

    #uebersicht h1 {
        margin-right: auto;
        margin-bottom: 15px
    }

    #uebersicht .control-wrapper {
        order: 3
    }

    #searchoverlay form {
        flex-wrap: wrap;
        justify-content: flex-end
    }

    #searchoverlay input {
        width: 75%
    }

    #searchoverlay button {
        width: 25%
    }

    .resetform {
        margin-top: 10px
    }

    #themafinden > .content-wrapper {
        flex-wrap: wrap
    }

    #themafinden .left-col, #themafinden .right-col {
        width: 100%
    }

    .overlays #selectionpicker {
        padding: 30px 0
    }

    #themafinden #selectionpicker {
        padding: 0
    }

    #uebersicht-wrapper {
        flex-wrap: wrap
    }

    .module-accordion #selectionpicker {
        padding: 40px
    }

    #uebersicht .module-accordion > span.collapsible + div {
        padding: 0;
        background: #1d4477
    }

    .searchresults-wrapper > article > div > h2 {
        max-width: 75%
    }
}

@media screen and (max-width: 1279px) {

    .ss {
        margin-top:40px;
    }

    .ss > span {
        margin-bottom:5px;
    }

    .footerrelaunch .flex-wrapper > div:not(#eviews) ul li.shariff-button:nth-of-type(2n) {
        margin-top:0px;
        margin-bottom:0px;
        margin-right: 10px;
    }

    .shariff .orientation-horizontal li {
        margin-right: 10px;
    }

    .socialmobile {
        display:block;
        marign-top:25px;
    }

    .socialdesktop {
        display:none;
    }

    .recentnews > article:first-of-type > figure {
        background-image: none !important
    }

    .recentnews > article:first-of-type > figure img {
        height: 100%;
        visibility: visible
    }

    #uebersicht .module-accordion > span.collapsible + div {
        overflow: visible
    }

    #themafinden p {
        margin-top: 10px
    }

    .topicfocus-slider article:not(.last) figcaption p {
        display: none !important
    }

    .recommendations.recommendationsalternative > article {
        align-items: flex-start
    }

    #beitragsseite.nobackground header div.contentheader {
        max-width: calc(100% - 115px);
        width: 100%;
        margin-left: auto;
        margin-right: 0;
        display: none
    }

    #beitragsseite.wrapper.nobackground a.backtooverview {
        position: relative;
        top: auto;
        left: auto
    }

    #contentseite.wrapper.nobackground a.backtooverview {
        left: -60px
    }

    #landingpage .recommendations > article, #landingpage .recommendations > article:nth-of-type(3n-1) {
        margin: 0 0 30px
    }

    #landingpage .recommendations {
        justify-content: space-between
    }

    #landingpage .recommendations > article:nth-of-type(3) {
        display: block
    }

    #searchcontrols {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 80px;
        margin-top: 45px;
        flex-wrap: wrap
    }

    #searchcontrols > input {
        margin: 0 0 20px
    }

    #searchcontrols > div, #searchcontrols > select {
        flex: 0 0 200px;
        background: #fff;
        margin: 0 20px 0 0;
        flex: 1 1 auto !important
    }

    select + #paginationwrapper {
        flex: 0 0 auto !important;
        margin: 0
    }

    header > div.navheader a.themafinden {
        margin-right: 25px
    }

    header > div:not(.navheader-shrink) .overlayopener {
        font-size: 20px
    }

    #schwerpunkt-wrapper article > div:last-of-type h2 {
        font-size: 26px
    }

    #schwerpunkt-wrapper article > div:last-of-type {
        padding: 40px 0 40px 35px
    }

    #uebersicht-wrapper .left-col, #uebersicht-wrapper .right-col {
        width: 100%;
        max-width: 100%
    }

    #uebersicht-wrapper .right-col {
        display: none
    }

    #uebersicht .module-accordion {
        display: block;
        margin: 50px 0 10px;
        width: 100%;
        order: 2
    }

    #uebersicht-wrapper .left-col {
        order: 2
    }

    .articlecounter {
        width: auto;
        flex: 0 0 235px
    }

    #schwerpunkt-wrapper article .info-wrapper {
        flex-wrap: nowrap
    }

    #schwerpunkt-wrapper article .info-wrapper > a {
        margin-top: 0;
        flex: 1 1 auto
    }

    #schwerpunkt-wrapper article figcaption {
        padding: 0 0 0 60px
    }

    #landingpage h1 {
        margin: 35px auto
    }

    #landingpage header > div.contentheader {
        height: 330px
    }

    #landingpage.wrapper > header + .overlays + .content-wrapper {
        margin: -50px auto 0;
        max-width: none;
        width: 100%
    }

    .image-slider.fullwidth {
        width: calc(100%)
    }

    #contentseite section {
        padding: 0
    }

    #beitragsseite .category-headline {
        width: calc(100%);
        left: 0;
        padding: 50px 60px
    }

    .topicfocus-slider article:hover img {
        opacity: 1 !important;
        transform: none
    }

    .topicfocus-slider article:hover figcaption p {
        transform: none
    }

    .topicfocus-slider article figcaption p {
        opacity: 1;
        transition: none;
        transform: none
    }

    .owl-carousel article:hover figure {
        background: 0 0
    }

    .colwrapper .right-col {
        display: none;
        float: none;
        width: auto;
        flex: 0 0 195px;
        margin-right: 60px
    }

    .contactbox-responsive-wrapper, .newsletterbox-responsive-wrapper {
        position: fixed;
        right: 0;
        top: 300px;
        display: flex;
        transform: translateX(260px);
        transition: all .5s ease;
        z-index: 100
    }

    .contactbox-responsive-wrapper.slide, .newsletterbox-responsive-wrapper.slide {
        transform: translateX(0);
        transition: all .5s ease
    }

    .contactbox-responsive-outer, .newsletterbox-responsive-outer {
        height: auto;
        background: #3ed8c3;
        display: flex;
        z-index: 1;
        cursor: pointer;
        height: 230px;
        flex-direction: column;
        width: 50px;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        transition: all 1.5s
    }

    .contactbox-responsive-outer > span:first-of-type, .newsletterbox-responsive-outer > span:first-of-type {
        font: 700 16px/20px RWESansPS;
        color: #fff;
        display: inline-block;
        transform: rotate(90deg) translate(0, 0);
        width: 100px
    }

    .contactbox-responsive-outer > span:last-of-type, .newsletterbox-responsive-outer > span:last-of-type {
        font-size: 20px;
        color: #fff;
        vertical-align: super
    }

    .contactbox-responsive-inner, .newsletterbox-responsive-inner {
        width: 260px;
        height: auto;
        background: #e8e8e4;
        margin-top: 40px
    }

    .contactbox p, .contactbox-responsive-inner .contactbox .contactme, .newsletterbox-responsive-inner .contactbox .contactme {
        display: block;
        font-size: 14px
    }

    .contactbox-responsive-inner .contactbox, .newsletterbox-responsive-inner .contactbox {
        height: auto;
        width: auto
    }

    .contactbox-responsive-inner .contactbox p, .newsletterbox-responsive-inner .contactbox p {
        padding-right: 0
    }

    .contactbox-responsive-wrapper.slide > .contactbox-responsive-outer, .newsletterbox-responsive-wrapper.slide > .newsletterbox-responsive-outer {
        transition: all .5s;
        background: 0 0;
        width: 78px
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer > .icon-wrapper, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer > .icon-wrapper {
        transform: translateX(0);
        transition: all .5s
    }

    .contactbox-responsive-wrapper.slide > .contactbox-responsive-outer > .icon-wrapper, .newsletterbox-responsive-wrapper.slide > .newsletterbox-responsive-outer > .icon-wrapper {
        transform: translateX(108px);
        transition: all .5s
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer > span, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer > span {
        opacity: 1;
        transition: all .5s
    }

    .contactbox-responsive-wrapper.slide > .contactbox-responsive-outer > span, .newsletterbox-responsive-wrapper.slide > .newsletterbox-responsive-outer > span {
        opacity: 0;
        transition: all .5s
    }

    .content-wrapper.footer-info {
        max-width: 100%;
        padding: 0 60px
    }

    #contentseite header > div.contentheader {
        max-width: 100%;
        height: 320px
    }

    #contentseite.wrapper > header + .overlays + .content-wrapper {
        margin: auto
    }

    .content-wrapper {
        max-width: calc(100% - 230px);
        margin: auto;
        width: 100%
    }

    .recommendations > article {
        flex: 0 0 auto;
        width: calc(100% / 2 - 15px);
        margin-bottom: 30px
    }

    .recommendations > article:nth-of-type(3) {
        display: none
    }

    header > div.contentheader {
        height: 590px
    }

    header .contentheader img {
        margin: 70px 0 50px
    }

    header .contentheader svg {
        margin: 70px 0 50px
    }

    header h1 {
        margin-left: 0
    }

    .recentnews > article:first-of-type {
        flex: 0 0 auto;
        width: calc(100%)
    }

    .recentnews > article:first-of-type figure {
        background: 0 0
    }

    #socialmediasharing {
        flex-wrap: wrap
    }

    .recentnews > article {
        flex: 0 0 auto;
        width: calc(100% / 2)
    }

    .topicfocus-slider .owl-stage {
        margin-left: 115px
    }

    .mostread-flex > article {
        width: calc(100% * 1 / 3 - 2.5px)
    }

    .mostread-flex > article:nth-of-type(3) ~ article {
        display: none
    }

    .footer-flex {
        flex-direction: column;
        flex-wrap: wrap
    }

    footer #eviews {
        border-right: 0;
        border-bottom: 2px solid #fff;
        padding-right: 0;
        flex: 1 1 auto;
        padding-bottom: 30px;
        display: flex;
        align-items: flex-start
    }

    footer #eviews > img {
        width: 250px;
        height: auto;
        margin-right: 55px
    }

    footer #eviews > svg {
        width: 175px;
        height: auto;
        margin-right: 55px;
        flex: 0 0 auto
    }

    #energiewetter {
        padding: 30px 0 0;
        width: calc(100%)
    }

    header > div#breadcrumb {
        margin-left: 60px;
        padding: 0
    }

    #beitragsseite header > div.contentheader {
        background-size: cover;
        width: 100%;
        max-width: none
    }

    #beitragsseite.wrapper > header + .content-wrapper {
        margin: -130px auto 0;
        max-width: none;
        width: 100%
    }

    #beitragsseite.wrapper > header + .overlays + .content-wrapper {
        margin: 0 auto;
        max-width: none;
        width: 100%
    }

    #beitragsseite.wrapper.nobackground > header + .overlays + .content-wrapper {
        margin: 0 auto;
        max-width: none;
        width: 100%
    }

    .colwrapper .left-col {
        padding-left: 60px;
        float: none;
        margin: auto;
        padding-right: 60px;
        max-width: 100%;
        width: 100%
    }

    .recentnews.morelinks > article figcaption span.date, .recentnews.morelinks > article figcaption span.likes {
        width: 48%
    }

    p.quotation {
        max-width: none
    }

    .test {
        width: calc(100% - 60px)
    }

    #beitragsseite .subheading, #beitragsseite h1, #contentseite h1, #contentseite span.subheading, #veranstaltungen-detail h1, .content-headline {
        font-size: 45px
    }

    .contactbox {
        height: auto;
        min-height: unset;
        padding: 75px 30px 30px;
        width: 195px
    }

    .contactbox h3 {
        padding-right: 0
    }

    #beitragsseite .image-slider.fullwidth {
        margin-left: 60px;
        width: calc(100% - 120px)
    }

    #beitragsseite .recentnews.morelinks > article, #beitragsseite .recentnews.morelinks > article:first-of-type {
        width: calc(100% / 2)
    }

    #beitragsseite .recentnews.morelinks > article:nth-of-type(3) {
        display: none
    }
}

@media screen and (max-width: 1099px) {
    #contentseite.wrapper.nobackground a.backtooverview {
        left: 0;
        top: 0;
        position: relative
    }

    .topicfocus-slider.owl-carousel .owl-item {
        max-width: none;
        width: auto
    }

    #contentseite.wrapper.nobackground .articleinfo {
        margin-top: 55px
    }

    #schwerpunkt-wrapper article {
        width: 100%
    }

    #schwerpunkt-wrapper article:nth-of-type(2n) {
        margin-left: 0
    }

    .content-wrapper {
        max-width: calc(100% - 120px);
        margin: auto;
        width: 100%
    }

    header > div.contentheader {
        height: 672px
    }

    header .contentheader img {
        margin: 70px 0 50px
    }

    header .contentheader svg {
        margin: 70px 0 50px
    }

    header h1 {
        margin-left: 0
    }

    .wrapper > header + .content-wrapper {
        margin: -220px auto 0
    }

    .wrapper > header + .overlays + .content-wrapper {
        margin: -220px auto 0
    }

    .topicfocus-slider .owl-stage {
        margin-left: 60px
    }
}

@media screen and (max-width: 1023px) {
    .recommendations.recommendationsalternative span.teaser-subhead {
        margin-bottom: 15px
    }

    .recommendations.recommendationsalternative > article > a {
        align-self: auto;
        margin: 0;
        flex: 0 0 auto
    }

    .uebersicht-article span.teaser-subhead {
        font-size: 18px;
        line-height: 22px
    }

    .uebersicht-article span.teaser-subhead a {
        font-size: 18px;
        line-height: 22px
    }

    header > div.navheader > .content-wrapper > a > svg {
        height: 35px
    }

    header > div.navheader-shrink > .content-wrapper > a > svg {
        height: 30px
    }

    .recommendations > article figcaption > a {
        position: absolute;
        bottom: 20px
    }

    .recommendations h2 > a, .recommendations > article figcaption h2 {
        max-height: unset;
        height: auto
    }

    .recommendations > article figcaption {
        padding: 25px 30px 65px
    }

    .recommendations.recommendationsalternative > article {
        flex-direction: column;
        align-items: flex-start
    }

    .recommendations.recommendationsalternative h2 > a {
        margin: 15px 0 0
    }

    .recommendations.recommendationsalternative > article > span.date {
        margin-top: 0;
        flex: 0 0 auto
    }
}

@media screen and (max-width: 991px) {

    .recentnews > article:first-of-type figcaption {
        bottom:0px;
    }

    #uebersicht .control-wrapper {
        float:none;
    }

    .recentnews > article figcaption span.teaser-subhead a {
        font-size: 20px
    }

    .recentnews > article figcaption span.teaser-subhead {
        font-size: 20px;
        line-height: 20px
    }

    .recentnews > article:not(:first-of-type) figcaption a:last-of-type {
        font-size: 18px
    }

    .recentnews > article figcaption span.date, .recentnews > article figcaption span.likes {
        margin-bottom: 0
    }

    .uebersicht-article > figure figcaption h2 > a {
        font-size: 22px
    }

    .recentnews > article:not(:first-of-type) figcaption a {
        font-size: 22px;
        position: relative;
        bottom: 0
    }

    a.themafinden > span {
        transform: translateY(1px)
    }

    a#simple-menu > span {
        transform: translateY(3px)
    }

    #schwerpunkt-wrapper article > div:last-of-type p {
        max-width: unset
    }

    header > div.navheader > .content-wrapper > a {
        top: auto;
        transform: none;
        align-self: center;
        order: 1;
        width: 150px;
        margin: 0 auto 0 0;
        text-align: left;
        display: inline-block;
        position: relative
    }

    #socialmediasharing .socialmediarework {
        flex-basis: 100%;
        margin-top: 25px
    }

    .image-slider .owl-nav {
        height: 40px;
        top: 0
    }

    .ui-accordion-content .image-slider .owl-nav {
        bottom: 0
    }

    #beitragsseite header > div.contentheader {
        height: 330px
    }

    #schwerpunkt-wrapper article > div:last-of-type {
        padding: 40px 35px
    }

    .module-link:not(.externintern) > div > div:last-of-type {
        background-size: cover
    }

    #schwerpunkt-wrapper figure {
        justify-content: center;
        flex-wrap: wrap;
        max-height: unset
    }

    #schwerpunkt-wrapper article figcaption {
        max-width: 75%;
        padding: 15px 0 0
    }

    #schwerpunkt-wrapper article {
        width: 100%;
        margin: 0 0 20px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px;
        flex-wrap: wrap;
        align-items: stretch
    }

    #schwerpunkt-wrapper article > div:first-of-type {
        background: no-repeat center center;
        background-size: cover;
        flex: 0 0 100%;
        width: 100%;
        min-height: 265px
    }

    header .contentheader img {
        margin: 70px 0 25px;
        height: 60px;
        width: auto
    }

    #schwerpunkt-wrapper img {
        width: 100%
    }

    #landingpage h1 {
        margin: 0 auto 35px
    }

    .landingpagelabel + .clear + .articleinfo {
        display: none
    }

    #landingpage h1 + .text-module {
        margin-top: 35px
    }

    #landingpage h1 + div.intro p {
        padding-bottom: 55px;
        padding-right: 0
    }

    #landingpage.wrapper > header + .overlays + .content-wrapper {
        margin: 0 auto;
        max-width: none;
        width: 100%
    }

    .landingpagelabel {
        top: -114px;
        left: -60px
    }

    #beitragsseite .category-headline {
        width: calc(100% + 120px);
        left: -60px
    }

    h1 + #paginationwrapper, h1 + .control-wrapper {
        margin-top: 30px
    }

    .navheader-shrink a#opensearch.active:after, .navheader-shrink a.themafinden.active:after {
        bottom: -5px
    }

    .searchresults-wrapper > article {
        padding: 0 0 30px 20px
    }

    .module-contactinformation > div {
        width: 50%
    }

    .module-contactinformation > div:last-of-type {
        margin-left: 35px;
        width: calc(50% - 35px)
    }

    header > div.navheader .overlayopener {
        font-size: 16px;
        display: flex;
        justify-content: flex-end;
        align-items: center
    }

    header > div.navheader a.themafinden {
        margin-right: 30px;
        width: 135px
    }

    header > div.navheader-shrink a.themafinden {
        width: 135px
    }

    div.navheader #opensearch {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center
    }

    #mainnavigationwrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 3;
        height: 90px
    }

    header > div:not(.navheader-shrink) a#opensearch.active:after, header > div:not(.navheader-shrink) a.themafinden.active:after {
        bottom: -5px
    }

    #opensearch > span {
        transition: none;
        font-size: 16px;
        transform: none;
        margin-left: 0
    }

    #frontpage header > div.navheader > .content-wrapper > svg {
        display: block;
        opacity: 0
    }

    #frontpage header > div.navheader-shrink > .content-wrapper > svg {
        opacity: 1
    }

    #searchcontrols {
        margin-bottom: 0;
        flex-wrap: wrap
    }

    #searchcontrols > input {
        margin-right: 0;
        margin-bottom: 20px
    }

    #searchcontrols > select {
        font-family: RWESansPS;
        font-weight: normal;
        background: url(http://localhost/rwe-template/assets/img/selectdropdown.png) no-repeat right+20px center;
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        width: 19px;
        text-indent: .01px;
        text-overflow: ""
    }

    header > div.navheader > .content-wrapper > img {
        display: none;
        align-self: center;
        order: 1;
        width: 150px;
        margin-right: auto;
        text-align: left;
        display: inline-block
    }

    header > div.navheader > .content-wrapper > svg {
        display: none;
        align-self: center;
        order: 1;
        width: 150px;
        margin-right: auto;
        text-align: left;
        display: inline-block
    }

    .module-link > div {
        align-items: center
    }

    .module-link:not(.externintern) > div {
        align-items: stretch
    }

    .module-link:not(.externintern) > div > div {
        width: 100%
    }

    .recentnews > article {
        flex: 0 0 auto;
        width: calc(100% / 1)
    }

    .module-link > div div > span {
        font-size: 20px
    }

    .recommendations > h2 {
        font-size: 20px
    }

    .module-link > div > div:last-of-type img {
        height: 100%;
        width: 100%;
        display: block
    }

    .confirmation {
        flex-wrap: wrap
    }

    .confirmation > div:last-of-type {
        width: 100%;
        margin-top: 20px
    }

    .confirmation > div > input[type=submit] {
        width: 100%
    }

    .overlayopener {
        line-height: 90px;
        order: 2
    }

    .navheader-shrink .overlayopener {
        line-height: 60px
    }

    #frontpage header > div.navheader > .content-wrapper > a {
        opacity: 0
    }

    #frontpage header > div.navheader-shrink > .content-wrapper > a {
        opacity: 1
    }

    #opensearch {
        font-size: 0;
        border-left: 1px solid #01365a;
        border-right: 1px solid #01365a;
        width: 90px;
        height: 90px
    }

    header > div.navheader .language {
        margin: 15px;
        font-size: 14px
    }

    header > div.navheader > .content-wrapper {
        align-items: center
    }

    #themafinden > .content-wrapper {
        flex-wrap: wrap
    }

    #themafinden .left-col, #themafinden .right-col {
        width: 100%
    }

    a#opensearch.active:after, a.themafinden.active:after {
        bottom: -6px
    }

    a#simple-menu {
        padding-left: 30px;
        display: flex;
        height: 100%;
        border-left: 1px solid #01365a;
        align-items: center
    }

    .navheader-shrink #mainnavigationwrapper {
        height: 60px
    }

    body.sidr-animating #mainnavigationwrapper, body.sidr-open #mainnavigationwrapper {
        transform: none
    }

    #selectionpicker {
        padding: 0
    }

    header > div.contentheader {
        height: 550px
    }

    .recentnews > article:first-of-type ~ article figure {
        display: flex;
        width: 100%;
        align-items: flex-start
    }

    .recentnews > article:first-of-type ~ article figure > figcaption {
        align-self: stretch
    }

    .recentnews > article:first-of-type ~ article figure > * {
        width: 50%;
        height: 100%
    }

    .recentnews > article:first-of-type > figure img {
        height: auto
    }

    .recentnews > article:first-of-type figcaption {
        width: 100%;
        position: relative;
        left: 0
    }

    .recentnews > article:first-of-type figcaption h2 > a {
        height: auto;
        max-height: unset
    }

    .recentnews > article figcaption {
        padding: 20px;
        position: relative
    }

    .mostread-flex > article:nth-of-type(2) ~ article {
        display: none
    }

    .module-mostread .mostread-flex > article:nth-of-type(2) ~ article {
        display: block;
        animation-name: showup;
        animation-duration: 2s;
        animation-fill-mode: forwards
    }

    .mostread-flex > article:nth-of-type(2) {
        margin-right: 0
    }

    .mostread-flex > article {
        width: calc(100% * 1 / 2 - 2.5px)
    }

    .content-wrapper.viewssection {
        width: 100%;
        max-width: 100%
    }

    .slider-wrapper > img {
        left: 60px
    }

    .content-wrapper.footer-info {
        width: 100%;
        max-width: 100%;
        padding: 0 60px
    }

    .colwrapper .left-col {
        width: calc(100% - 120px);
        padding: 0;
        margin: auto;
        float: none
    }

    #beitragsseite.wrapper > header + .content-wrapper {
        margin: 0 auto
    }

    #beitragsseite.wrapper > header + .overlays + .content-wrapper {
        margin: 0 auto
    }

    #beitragsseite .image-slider.fullwidth {
        margin: auto;
        width: calc(100% - 120px)
    }

    a.backtooverview {
        top: -60px;
        left: -60px
    }

    .articleinfo {
        justify-content: flex-start
    }

    .dateviews:first-of-type {
        margin-left: 0
    }

    .dateviews {
        padding-left: 0
    }

    #beitragsseite .content-headline, #beitragsseite h1 {
        margin-top: 40px
    }

    .test {
        width: 100%
    }

    .recentnews.morelinks > article:first-of-type ~ article figure {
        display: block
    }

    header .contentheader svg {
        width: 200px
    }

    .recentnews > article:nth-of-type(5) {

    }

    #socialmediasharing {
        justify-content: flex-start
    }

    .recentnews > article:not(:first-of-type) figcaption > a {
        bottom: 10px;
        position: absolute
    }
}

@media screen and (max-width: 767px) {
    .module-mostread .mostread .mostread-flex, .mostread h2 {
        display: flex !important
    }

    .module-subheadline {
        font-size: 20px
    }

    .bildunterschrift > div {
        flex-wrap: wrap
    }

    .bildunterschrift > div > a {
        margin: 10px 0 0;
        flex: 1 1 auto
    }

    .wpcf7-submit {
        flex: 0 0 100%;
        margin: 15px 0 0
    }

    .recommendations > article figcaption > a {
        position: relative;
        bottom: auto
    }

    .recentnews > article:not(:first-of-type) figcaption > a {
        position: relative;
        margin: 0;
        bottom: auto
    }

    .recentnews > article:first-of-type ~ article figure > figcaption {
        min-height: unset;
        height: auto
    }

    .recentnews > article:not(:first-of-type) figcaption h2 {
        margin: 15px 0
    }

    #frontpage .contentheader {
        background-position: center left
    }

    .module-faq .answer img {
        width: 16px
    }

    #socialmediasharing > div.likenow + div.printnow {
        margin-left: 0
    }

    .recommendations h2 > a {
        height: auto;
        max-height: unset;
        min-height: 50px;
        font-size: 20px
    }

    .recommendations > article figcaption h2 {
        height: auto;
        max-height: unset
    }

    .recentnews > article figcaption h2 > a {
        height: auto;
        max-height: unset
    }

    #searchoverlay h2, #themafinden h2 {
        font-size: 30px
    }

    a#simple-menu {
        padding-left: 0;
        border-left: 0;
        margin-left: 0
    }

    #mainnavigationwrapper {
        height: 60px;
        line-height: 1em;
        font-size: 0;
        line-height: 60px
    }

    .language li {
        line-height: 1rem
    }

    .searchresults-wrapper > article > div {
        flex-direction: column;
        flex-wrap: wrap
    }

    header > div.navheader > .content-wrapper > a > svg {
        max-height: 20.5px
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer > img, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer > img {
        width: 50px
    }

    .btn-like-container > span {
        margin-right: 30px
    }

    .shariff .orientation-horizontal li .share_text {
        display: inline
    }

    .contentheader .popup-container {
        opacity: 1;
        display: block;
        top: 15px;
        right: 10px
    }

    .contentheader .popup-container .popup {
        width: 200px
    }

    .text-module p > a:after, .text-module > a:after {
        font-size: 10px
    }

    #contentseite.wrapper.nobackground .articleinfo, .wrapper.nobackground .articleinfo {
        margin-top: 0
    }

    #landingpage .recommendations > article:nth-of-type(2) {
        display: block
    }

    .recentnews > article:first-of-type.animated {
        animation-name: showup_responsive;
        animation-duration: 2s;
        animation-fill-mode: forwards
    }

    .module-mosaikrework > div:first-of-type {
        border-right: 7.5px solid #fff
    }

    .module-mosaikrework > div:last-of-type {
        border-left: 7.5px solid #fff
    }

    .module-contactinformation .ansprechpartnername {
        font-size: 18px
    }

    .text-module li:before {
        top: 6px
    }

    .timetable {
        margin-top: 30px;
        margin-bottom: 20px;
        text-align: left
    }

    .energiewrapper {
        flex-direction: column
    }

    .energiebox {
        flex: auto;
        margin-bottom: 15px;
        padding-bottom: 15px
    }

    .energiebox .percentage:before {
        top: -2px;
        bottom: auto;
        right: -40px;
        left: auto;
        width: 30px
    }

    .energiebox:after {
        bottom: 0;
        left: 5px
    }

    .energiebox, .energiebox .percentage {
        height: 40px !important
    }

    .energiebox .percentage {
        top: 0;
        left: 5px;
        height: 15px !important;
        width: 0;
        transition: width 2s
    }

    #braunkohle {
        border-bottom: 0;
        border-left: 5px solid #8d491d
    }

    #braunkohle .percentage.animated {
        width: calc(70% - 5px)
    }

    #steinkohle {
        border-bottom: 0;
        border-left: 5px solid #605c5c
    }

    #steinkohle .percentage.animated {
        width: calc(20% - 5px)
    }

    #kernenergie {
        border-bottom: 0;
        border-left: 5px solid #bf162b
    }

    #kernenergie .percentage.animated {
        width: calc(0% - 5px)
    }

    #windenergie {
        border-bottom: 0;
        border-left: 5px solid #219bde
    }

    #windenergie .percentage.animated {
        width: calc(30% - 5px)
    }

    #solarenergie {
        border-bottom: 0;
        border-left: 5px solid #dc661c
    }

    #solarenergie .percentage.animated {
        width: calc(3% - 5px)
    }

    #gasenergie {
        border-bottom: 0;
        border-left: 5px solid #eac411
    }

    #other {
        border-bottom: 0;
        border-left: 5px solid #1c9475
    }

    #gasenergie .percentage.animated {
        width: calc(7% - 5px)
    }

    .topicfocus-slider + .content-wrapper > .topicfocus {
        margin-top: 0
    }

    header > div#breadcrumb {
        flex-wrap: wrap;
        max-width: calc(100% - 60px);
        margin-left: auto;
        padding: 10px 0;
        height: auto
    }


    #schwerpunkt-wrapper {
        margin: 45px 0 0
    }

    .pagination {
        display: none
    }

    .pagination-responsive {
        display: flex
    }

    .pagination-responsive > a {
        display: inline-block;
        width: 40px;
        color: #fff;
        height: 40px;
        background: #0c5089;
        vertical-align: top;
        text-align: center;
        flex: 0 0 40px
    }

    #paginationwrapper .pagination-responsive select {
        flex: 1 1 100%
    }

    .pagination-responsive > a:hover {
        background: #1baf92
    }

    .pagination-responsive > a span {
        display: inline-block;
        top: 0;
        transform: translateY(12px)
    }

    .module-link > div div > span {
        line-height: 22px;
        font-size: 18px
    }

    .module-link:not(.externintern) > div > div:first-of-type {
        padding: 20px 35px 15px
    }

    .image-slider .owl-nav {
        top: 0;
        width: 100%;
        padding: 10px 30px
    }

    .viewssection .image-slider .owl-nav {
        top: auto;
        bottom: -40px
    }

    .image-slider .owl-dots {
        bottom: -70px;
        right: 0
    }

    .topicfocus-slider article figcaption p {
        display: none;
        font-size: 14px;
        margin-top: 15px
    }

    #schwerpunkt-wrapper article figcaption p {
        font-size: 16px
    }

    #schwerpunkt-wrapper article figcaption h2 {
        font-size: 28px
    }

    #schwerpunkt-wrapper article figcaption {
        width: 100%;
        max-width: 100%;
        top: 25px;
        left: 25px
    }

    .topicfocus {
        margin-bottom: 15px;
        margin-top: 30px;
        margin-top: 45px
    }

    .topicfocus h2 {
        margin: 0;
        font-size: 18px
    }

    .landingpagelabel {
        left: -30px;
        padding: 10px 15px;
        top: -75px
    }

    #landingpage h1 {
        font-size: 24px
    }

    #landingpage header > div.contentheader {
        height: 180px
    }

    #beitragsseite .category-headline h1 + span {
        font: 700 16px RWESansPS;
        color: #fff;
        margin-top: 15px;
        display: inline-block;
        padding-right: 75px
    }

    #beitragsseite .category-headline {
        width: calc(100% + 60px);
        left: -30px;
        padding: 25px 30px
    }

    ul li.social {
        float: right
    }

    .footer-info nav ul li.social:nth-of-type(2n) {
        margin-left: 10px
    }

    h1 + #paginationwrapper, h1 + .control-wrapper {
        margin-top: 40px
    }

    #schwerpunkte h1, #search h1, #uebersicht h1 {
        font-size: 30px
    }

    #schwerpunkt-wrapper article > a {
        right: 25px;
        bottom: 25px
    }

    #schwerpunkt-wrapper article figcaption h1 {
        font-size: 22px
    }

    .mostsearched .label {
        padding: 10px;
        font-size: 14px
    }

    .searchresults-wrapper > article > header {
        margin-bottom: 15px
    }

    .searchresults-wrapper > article {
        padding: 0 15px 30px
    }

    .searchresults-wrapper > article > div > h2 {
        max-width: 100%
    }

    .searchresults-wrapper .weiterlesen {
        margin-top: 15px
    }

    .module-link > div {
        padding-left: 20px
    }

    .module-accordion > span.collapsible.quellenangabe {
        padding-left: 0
    }

    .module-contactform {
        padding: 75px 20px 35px
    }

    .module-link.externintern > div {
        padding-left: 20px
    }

    form > div {
        flex-wrap: wrap
    }

    form label {
        width: 100%
    }

    form div > input, form div > select, form div > textarea {
        width: 100%
    }

    .module-accordion > span.collapsible + div {
        padding: 20px
    }

    .module-mosaik.zweidrittel img:first-of-type {
        width: calc(100% * 2 / 3 - 7.5px);
        margin-right: 15px
    }

    .module-mosaik.zweidrittel img:last-of-type {
        width: calc(100% * 1 / 3 - 7.5px)
    }

    .module-mosaik.eindrittel img:first-of-type {
        width: calc(100% * 1 / 3 - 7.5px);
        margin-right: 15px
    }

    .module-mosaik.eindrittel img:last-of-type {
        width: calc(100% * 2 / 3 - 7.5px)
    }

    #videotitle {
        padding: 0 20px;
        bottom: 49px;
        height: 60px
    }

    .module-contactinformation {
        flex-wrap: wrap;
        height: auto;
        padding: 20px
    }

    .module-contactinformation > div {
        width: 100%
    }

    .module-contactinformation > div:last-of-type {
        width: 100%;
        margin: 15px auto 0
    }

    .module-accordion > span.collapsible {
        font-size: 18px
    }

    .module-link > div a {
        font-size: 16px
    }

    .recommendations > h2 {
        font-size: 18px
    }

    #videotitle span {
        font-size: 16px
    }

    #contentseite .text-module ul li, #contentseite p, .text-module p, .text-module ul li {
        font-size: 14px
    }

    .module-faq .answer > strong, .module-faq .question, .module-faq .question p {
        font-size: 14px !important
    }

    #contentseite div.intro p {
        font-size: 16px
    }

    .recommendations > article {
        flex: 0 0 auto;
        width: calc(100%);
        margin-bottom: 30px
    }

    .recommendations > article:nth-of-type(2) {
        display: none
    }

    .recommendations > article figcaption {
        padding: 20px 15px;
        display: flex;
        flex-wrap: wrap
    }

    .recommendations > article figcaption span.date, .recommendations > article figcaption span.likes {
        width: 50%
    }

    .recommendations span.contentheadline {
        overflow: visible;
        height: auto;
        max-height: unset;
        font-size: 18px
    }

    .contactbox-responsive-wrapper, .newsletterbox-responsive-wrapper {
        top: 230px;
        height: 0
    }

    .overlayopener {
        min-width: unset;
        line-height: 1em;
        margin-right: 10px;
        line-height: 60px
    }

    header > div.navheader > .content-wrapper > svg {
        transform: translateY(-3px)
    }

    #socialmediasharing {
        padding: 10px 0
    }

    #socialmediasharing > div {
        margin: 5px 0
    }

    .contentinformation > div:last-of-type a {
        font-size: 14px
    }

    .contentinformation .categories {
        font-size: 14px
    }

    #sidr.sidr {
        width: 100%;
        transform: translateY(0) !important;
        right: -100vw;
        top: 60px
    }

    #frontpage > section {
        margin-top: -79px
    }

    .recentnews > article {
        width: 100%;
        flex: 0 0 auto;
        margin: auto auto 25px;
        padding: 0
    }

    .recentnews > article:nth-of-type(4) {
        display: none
    }

    header > div.navheader + * {
        padding-top: 60px !important
    }

    header > div.navheader > .content-wrapper {
        justify-content: flex-start
    }

    header > div.navheader a.themafinden {
        font-size: 0;
        width: auto;
        display: flex;
        align-items: center;
        margin-right: 15px
    }

    header > div.navheader a.themafinden > span {
        font-size: 14px;
        transform: translateY(2px)
    }

    .navheader-shrink a.themafinden > span {
        transform: translateY(1px)
    }

    #opensearch > span {
        font-size: 16px;
        transform: none;
        margin-left: 0
    }

    header > div:not(.navheader-shrink) #opensearch > span {
        margin-left: 0;
        font-size: 16px
    }

    header > div.navheader a.themafinden > span:before {
        content: "\6c" !important
    }

    header > div.navheader a.themafinden:after {
        content: none
    }

    div.navheader #opensearch {
        width: auto;
        border: none
    }

    #opensearch {
        height: 60px
    }

    header > div.navheader {
        height: 60px
    }

    header .contentheader img {
        margin: 30px 0 20px 0px;
        width: 250px
    }

    header .contentheader svg {
        margin: 30px 0 20px;
        width: 250px
    }

    header h1, span.subheading {
        font-size: 16px
    }

    header h1 {
        margin-left: 0
    }

    header > div.contentheader {
        height: 230px;
        background-size: cover;
        background-position: center center
    }

    .wrapper > header + .content-wrapper {
        margin: auto;
        width: 100%;
        max-width: 100%
    }

    .wrapper > header + .overlays + .content-wrapper {
        margin: auto;
        width: 100%;
        max-width: 100%
    }

    #contentseite.wrapper > header + .overlays + .content-wrapper {
        width: calc(100% - 60px)
    }

    #contentseite .subheading, #contentseite h1, #contentseite h1 + span.subheading {
        font-size: 24px;
        line-height: 26px
    }

    #contentseite h1 + span.subheading {
        display: block;
        margin-top: 0;
        margin-bottom: 20px;
        line-height: 26px
    }

    #contentseite section {
        padding: 0
    }

    .recentnews {
        margin: 0;
        background: #fff
    }

    .text-module h2 {
        font-size: 22px
    }

    .text-module h3 {
        font-size: 20px
    }

    .text-module h4 {
        font-size: 18px
    }

    .text-module h5 {
        font-size: 16px
    }

    .recentnews > h2 {
        flex: none;
        padding-left: 15px;
        display: inline-block;
        width: calc(100% - 60px);
        margin: auto auto 30px;
        background: #fff;
        color: #1d4477;
        font-size: 16px;
        padding-top: 10px;
        width: 100%
    }

    .recentnews > article:first-of-type figcaption {
        position: relative !important;
        bottom: auto;
        right: auto;
        width: calc(100% - 60px);
        margin: -40px auto 0;
        background: #e8e8e4
    }

    .recentnews > article figcaption a {
        position: relative;
        bottom: auto
    }

    .recentnews > article figcaption span.date, .recentnews > article figcaption span.likes {
        font-size: 12px
    }

    .recentnews > article:first-of-type ~ article figure {
        display: block
    }

    .recentnews > article:first-of-type ~ article figure > * {
        width: 100%
    }

    .recentnews > article:first-of-type {
        flex: 0 0 auto;
        width: calc(100% + 60px);
        transform: translateX(30px) !important
    }

    .recentnews .showall, .topicfocus .showall {
        width: calc(100% - 60px);
        margin: 0 auto auto;
        width: 100%;
        padding-left: 20px
    }

    .topicfocus-slider article figcaption {
        width: 100%;
        word-break: break-all;
        max-width: 90%;
        left: 25px;
        top: 25px
    }

    .topicfocus .showall {
        display: none
    }

    .recentnews > article figcaption a > span {
        font-size: 14px
    }

    .content-wrapper {
        max-width: calc(100% - 60px);
        width: 100%
    }

    .topicfocus-slider .owl-stage {
        margin-left: 30px;
        margin-left: 0 !important
    }

    footer #eviews {
        flex-wrap: wrap
    }

    .footer-flex {
        padding-top: 40px
    }

    footer #eviews > img {
        margin-bottom: 25px
    }

    footer #eviews > svg {
        margin-bottom: 25px
    }

    .scrolltop {
        height: 40px;
        width: 40px;
        line-height: 40px;
        position: absolute;
        right: 0;
        top: -20px
    }

    .content-wrapper.footer-info {
        flex-wrap: wrap;
        height: 100%;
        padding: 15px 30px
    }

    .footer-info nav ul li a {
        font-size: 14px
    }

    .footer-info nav ul li {
        margin-right: 3px
    }

    .footer-info nav ul li:last-of-type {
        margin-right: 0
    }

    .footer-info nav ul li a > span {
        font-size: 20px
    }

    .footernavigation {
        padding-bottom: 15px;
        border-bottom: 1px solid #fff;
        width: 100%
    }

    #copyright {
        padding-top: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%
    }

    #copyright p {
        font-size: 14px;
        margin: 0;
        padding: 0
    }

    #copyright p:after {
        content: none
    }

    .slider-wrapper > .slider-header {
        width: auto;
        top: -15px;
        left: 30px
    }

    .slider-wrapper > .slider-header img {
        width: 125px
    }

    .slider-header > span {
        font-size: 16px
    }

    .footernavigation ul {
        width: 100%
    }

    .topicfocus-slider {
        margin-bottom: 30px
    }

    .topicfocus-slider article figcaption h1 {
        font-size: 30px
    }

    .topicfocus-slider article figcaption h3 {
        font-size: 30px
    }

    .topicfocus-slider article > a {
        right: 25px;
        bottom: 25px;

    }

    .colwrapper .left-col {
        width: calc(100% - 60px)
    }

    #beitragsseite header > div.contentheader {
        height: 230px;
        background-position: center center
    }

    a.backtooverview {
        display: none
    }

    #beitragsseite .subheading, #beitragsseite h1, #veranstaltungen-detail h1, .content-headline {
        font-size: 24px;
        line-height: 26px
    }

    .contentinformation > div {
        padding: 15px 0
    }

    .contentinformation > div:last-of-type {
        flex-wrap: wrap;
        font-size: 14px
    }

    .timelikes:first-of-type {
        margin-left: 0
    }

    .timelikes:before {
        font-size: 16px
    }

    .left-col div.intro p {
        font-size: 16px;
        line-height: 22px
    }

    .left-col > p {
        font-size: 14px;
        line-height: 20px
    }

    p.quotation {
        font-size: 18px !important
    }

    #beitragsseite .image-slider.fullwidth {
        width: calc(100%)
    }

    #beitragsseite .recentnews.morelinks > article:first-of-type {
        width: calc(100%);
        background: #ebedee
    }

    #beitragsseite .recentnews.morelinks > article:first-of-type figcaption {
        background: #ebedee
    }

    #beitragsseite .recentnews.morelinks > article:not(:first-of-type) {
        display: none
    }

    .module-downloads {
        font-size: 18px;
        display: flex;
        justify-content: flex-start;
        line-height: normal;
        padding-right: 25px;
        align-items: center
    }

    .module-downloads > span:first-of-type {
        font-size: 40px;
        margin-right: 35px;
        flex: 0 0 auto;
        line-height: 90px
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer {
        height: 50px
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer > span, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer > span {
        display: none
    }

    .mostread {
        margin-bottom: 80px
    }

    a.mostread-responsive {
        width: 100%;
        display: inline-block
    }


    a.mostread-responsive > span {
        vertical-align: middle
    }

    .mostread .mostread-flex, .mostread h2 {
        display: none !important
    }

   #frontpage .topicfocus-slider article {
        width: calc(100% - 60px) !important;
        margin: auto
    }

    .topicfocus-slider article img {
        width: 100% !important
    }

    .topicfocus-slider .owl-stage-outer {
        margin-bottom: 25px
    }

    a#opensearch.active:after {
        content: none
    }

    header > div.navheader #opensearch > span {
        font-size: 14px
    }

    .sidr ul li a, .sidr ul li span {
        font-size: 16px
    }

    .sidr ul li ul li a, .sidr ul li ul li span {
        font-size: 14px
    }

    header .contentheader img, header .contentheader svg {
        margin: 30px 0 -5px 0px;
    }
}

@media screen and (max-width: 639px) {
    .module-mostread .mostread .mostread-flex {
        flex-wrap: wrap
    }

    input[type=checkbox],input[type=radio]{
        -webkit-appearance: none;
        -moz-appearance: none;
        appearance: none;
        border: none;
        border-radius: 0;
        font-size: 1em;
        display:block;
        width:30px;
        height:30px !important;
        border-radius:50%;
        background:#ffffff;
        border:5px solid #ffffff;
        background:#ffffff !important;
        flex:0 0 30px !important;
        outline:#e4e9f2;
        margin:0 15px 0 0;
    }

    .module-mostread .mostread .mostread-flex > article {
        width: 100%;
        margin-bottom: 20px
    }

    .articleinfo + div.categories-wrapper {
        margin-top: 25px;
        display: flex;
        flex-wrap: wrap
    }

    .categories-wrapper .lesetipp {
        display: block;
        order: 2;
        width: 100% !important;
        margin-top: 10px
    }

    .shariff .orientation-horizontal.button-style-standard.shariff-col-5 li:nth-of-type(2n), .shariff .orientation-horizontal.button-style-standard.shariff-col-6 li:nth-of-type(2n) {
        margin-right: 0
    }

    .shariff .orientation-horizontal.button-style-standard.shariff-col-5 li, .shariff .orientation-horizontal.button-style-standard.shariff-col-6 li {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 49%
    }

    .shariff .orientation-horizontal {
        flex-wrap: wrap
    }

    #socialmediasharing .socialmediarework.shariff {
        margin-right: 0
    }

    .popup-container {
        left: auto;
        right: 10px;
        top: 15px;
        cursor: pointer
    }

    .popup-container.onhover {
        opacity: 1
    }

    .popup-container:hover .popup {
        display: none
    }

    #uebersicht-wrapper {
        margin: auto
    }

    .recommendationsalternative > h2 > br {
        display: inline-block
    }

    .uebersicht-article .weiterlesen {
        position: relative
    }

    .articlecounter + #paginationwrapper {
        margin-top: 20px
    }

    #videotitle {
        display: none
    }

    #schwerpunkt-wrapper article > div:last-of-type {
        padding: 20px 15px
    }

    #uebersicht .module-accordion {
        margin: 50px 0 0
    }

    #paginationwrapper, #paginationwrapper select, .pagination-responsive {
        width: 100%;
        flex: 0 0 100%
    }

    .module-downloads > span:first-of-type {
        display: inline-block;
        height: auto;
        width: 50px;
        text-align: center;
        background: #3ed8c3;
        color: #fff;
        font-size: 32px;
        vertical-align: top;
        padding-top: 7px;
        margin-right: 25px;
        line-height: normal;
        position: relative;
        align-self: stretch
    }

    .module-downloads span.icon-doc-empty:before {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 50%;
        transform: translateY(-50%)
    }

    .module-downloads {
        height: auto;
        min-height: 60px
    }

    .module-accordion span.quellenangabe {
        min-height: 60px
    }

    #schwerpunkt-wrapper article .info-wrapper {
        flex-wrap: wrap
    }

    .articlecounter {
        width: auto;
        flex: 0 0 235px
    }

    .pagination ul li {
        font-size: 12px
    }

    .pagination ul li a {
        padding: 5px 7px
    }

    .uebersicht-article {
        min-height: unset
    }

    .uebersicht-article > figure figcaption h2 {
        margin: 15px 0
    }

    #uebersicht-wrapper .uebersicht-article figure {
        flex-wrap: wrap;
        border-bottom: 1px solid #ccc;
        border-top: 0;
        padding-bottom: 30px
    }

    #uebersicht-wrapper .uebersicht-article figure > * {
        max-width: 100%
    }

    #uebersicht-wrapper .uebersicht-article figure > img {
        order: 1;
        margin-bottom: 20px
    }

    #uebersicht-wrapper .uebersicht-article figure > figcaption {
        order: 2;
        padding-top: 0
    }

    #uebersicht .control-wrapper {
        flex-wrap: wrap;
        width: 100%
    }

    #uebersicht .control-wrapper > * {
        width: 100%;
        margin: 10px 0
    }

    #uebersicht .control-wrapper > div:first-of-type > * {
        width: 100%
    }

    #searchoverlay button {
        width: 20%;
        font-size: 0;
        text-align: center
    }

    #searchoverlay button > span {
        margin-left: 0;
        font-size: 14px;
        margin-top: 0
    }

    .closeoverlay {
        font-size: 0;
        right: 30px;
        top: 95px
    }

    #searchoverlay form {
        justify-content: flex-start;
        margin: 20px 0 45px
    }

    #searchoverlay input {
        width: 80%
    }

    #searchcontrols > div, #searchcontrols > select {
        flex: 1 1 auto;
        background: #fff;
        margin: 5px 0
    }

    .module-accordion > span.collapsible.contactform {
        line-height: 1em
    }

    .module-accordion .collapsible > span:not(.spanline) {
        margin-right: 25px;
        positioN: relative;
        text-align: center;
        width: 50px;
        background: #3ed8c3;
        height: auto;
        flex: 0 0 50px;
        display: inline-block;
        align-self: stretch;
        color: #fff;
        font-size: 32px
    }

    .module-link:not(.externintern) > div {
        margin-left: 0;
        padding-left: 0;
        flex-wrap: wrap
    }

    .module-link:not(.externintern) > div > div {
        width: 100%;
        margin: 0
    }

    .module-link:not(.externintern) > div > div:last-of-type {
        order: 1;
        min-height: 230px
    }

    .module-link:not(.externintern) > div > div:first-of-type {
        order: 2;
        padding-left: 20px
    }

    header > div.navheader .themafinden {
        display: none
    }
}

@media screen and (max-width: 479px) {
    .clearnone {
        display: block
    }

    .cc-window .content-wrapper {
        flex-wrap: wrap
    }

    .cc-compliance {
        width: 100%;
        margin-top: 10px
    }

    .module-accordion #selectionpicker {
        padding: 25px
    }

    .topicfocus-slider article figcaption h1 {
        font-size: 26px;
        margin-right: 15px
    }

    .topicfocus-slider article figcaption h3 {
        font-size: 26px;
        margin-right: 15px
    }

    #searchcontrols > #paginationwrapper, #searchcontrols > select {
        margin: 5px 0;
        flex: 1 1 100%
    }

    #searchcontrols > #paginationwrapper {
        margin-bottom: -20px
    }
}

@media screen and (max-width: 420px) {
    footer #eviews > img, footer #eviews > svg, header .contentheader img, header .contentheader svg {
        width: 250px;
        width: 190px
    }

    header h1, span.subheading {
        font-size: 14px
    }

    #energiewetter > span {
        font-size: 40px
    }
}

@media screen and (max-width: 399px) {
    .module-contactinformation .ansprechpartnername {
        margin-top: 10px
    }

    .module-accordion > span.collapsible, .module-contactform form > span, .module-contactform span.formheadline, .module-contactinformation .ansprechpartnername, .module-downloads, .module-link > div div > span {
        font-size: 16px
    }

    .module-contactinformation > div {
        flex-wrap: wrap
    }
}

.printstyle {
    display: none
}

.printnow a {
    color: #1d4477;
    font: 700 16px RWESansPS
}

.printnow a span {
    display: flex;
    align-items: center;
    font-weight:500;
}

.medium {
    font-weight:500;
}

#socialmediasharing hr {
    width: 100%;
    flex: 1 1 auto;
    border-top: 3px solid #f5f3f6;
    margin-right:15px;
}

.printnow {
    margin-right:15px !important;
}

.printnow a span:before {
    margin-right: 8px
}

@media print {
    .ui-accordion-content {
        display: block !important
    }

    .module-accordion > span.ui-state-default {
        background: #dfdfdf !important;
        display: none !important
    }

    .owl-stage {
        transform: translate3d(0, 0, 0) !important;
        width: 100% !important
    }

    .owl-item {
        display: block !important;
        opacity: 1 !important
    }

    .owl-item.cloned {
        display: none !important
    }

    .owl-stage-outer {
        height: auto !important;
        overflow: visible !important
    }

    .popup {
        visibility: visible !important;
        opacity: 1 !important
    }

    #contentseite section {
        padding: 0 0 !important
    }

    .printstyle {
        display: block;
        text-align: center;
        padding: 15px
    }

    .printstyle svg {
        width: 250px;
        color: #000 !important
    }

    svg g path {
        fill: #000 !important
    }

    .contentinformation > div:last-of-type {
        display: none
    }

    .dateviews.icon-view {
        display: none
    }

    .content-wrapper img {
        width: 50%;
        width: 50% !important;
        margin: 10px 0
    }

    .recommendations + div {
        display: none
    }

    .recommendations.recommendationsalternative + div {
        display: none
    }
}

.placeholder {
    overflow: hidden
}

.img-small {
    transition: .5s filter linear;
    -webkit-transition: .5s -webkit-filter linear;
    -moz-transition: .5s -moz-filter linear;
    -ms-transition: .5s -ms-filter linear;
    -o-transition: .5s -o-filter linear
}

.img-small:not(.loaded) {
    filter: blur(50px);
    transform: scale(1)
}

@media screen and (max-width: 1279px) {
    footer .energiewrapper-directorscut .energiewrapper {
        background: 0 0
    }

    .energiewrapper-directorscut .energiebox, .energiewrapper-directorscut .energiebox .percentage {
        height: 40px !important
    }

    .energiewrapper-directorscut .energiebox .percentage {
        top: 0;
        left: 5px;
        height: 15px !important;
        width: 0;
        transition: width 2s
    }

    .energiewrapper-directorscut div.inner-bottom {
        padding-top: 10px;
        width: 173px
    }

    .energiewrapper-directorscut .stretchwrapper {
        max-height: unset;
        height: auto
    }

    .energiewrapper-directorscut .energie {
        height: auto
    }

    .energiewrapper-directorscut .timetable {
        text-align: left
    }

    .energiewrapper-directorscut .energiewrapper {
        flex-direction: column;
        position: relative;
        bottom: auto;
        top: auto;
        left: auto;
        right: auto;
        background: 0 0
    }

    .energiewrapper-directorscut .energiebox {
        flex: auto;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    .energiewrapper-directorscut .energiebox .percentage:before {
        top: -2px;
        bottom: auto;
        right: -40px;
        left: auto;
        width: 30px
    }

    .energiewrapper-directorscut .energiebox:after {
        bottom: 0;
        left: 5px
    }



    .energiewrapper-directorscut #braunkohle .percentage.animated {
        width: calc(70% - 5px)
    }

    .energiewrapper-directorscut #steinkohle {
        border-bottom: 0;
        border-left: 5px solid #56585a
    }

    .energiewrapper-directorscut #steinkohle .percentage.animated {
        width: calc(20% - 5px)
    }

    .energiewrapper-directorscut #kernenergie {
        border-bottom: 0;
        border-left: 5px solid #ef7d00
    }

    .energiewrapper-directorscut #kernenergie .percentage.animated {
        width: calc(0% - 5px)
    }


    .energiewrapper-directorscut #wasserkraft .percentage.animated {
        width: calc(0% - 5px)
    }

    .energiewrapper-directorscut #windenergie {
        border-bottom: 0;
        border-left: 5px solid #8dceed
    }

    .energiewrapper-directorscut #windenergie .percentage.animated {
        width: calc(30% - 5px)
    }



    .energiewrapper-directorscut #solarenergie .percentage.animated {
        width: calc(3% - 5px)
    }



    .energiewrapper-directorscut #other {
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    .energiewrapper-directorscut #gas .percentage.animated {
        width: calc(7% - 5px)
    }

    .energiewrapper-directorscut #andere {
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    .energiewrapper-directorscut #energiewetter {
        padding: 20px 0 25px
    }

    .energiewrapper-directorscut .test-circle {
        max-width: 400px;
        height: 390px
    }

    .energiewrapper-directorscut div.bottom {
        width: 100%;
        height: 95px;
        bottom: 100px
    }

    .energiewrapper-directorscut .bottom > span {
        margin-bottom: 20px
    }

    footer .energiewrapper-directorscut {
        margin: 30px 0 0;
        padding: 0
    }

    footer .energiewrapper-directorscut #energiewetter {
        margin: 0
    }
}

@media screen and (max-width: 1023px) {
    #frontpage .energiewrapper-directorscut .stretchwrapper {
        overflow: visible
    }

    .energiewrapper-directorscut #energiewetter-header {
        display: flex;
        align-items: center;
        padding-bottom: 10px
    }

    .timetable {
        margin-top: 5px !important;
        margin-left: auto !important
    }

    footer .energiewrapper-directorscut .test-circle {
        max-width: 300px;
        height: 100%
    }

    .energiewrapper-directorscut .energiebox .percentage:before, footer .energiewrapper-directorscut .energiebox:after {
        font-size: 12px
    }

    .energiewrapper-directorscut .bottom > span {
        margin-bottom: 8px
    }

    .energiewrapper-directorscut div.bottom {
        height: 75px;
        width: 100%;
        bottom: 80px;
        left: 4px
    }

    .energiewrapper-directorscut div.inner-bottom {
        width: 130px;
        padding-top: 5px
    }

    .energiewrapper-directorscut .test-circle {
        max-width: 300px;
        height: auto !important
    }

    .energiewrapper-directorscut .stretchwrapper {
        border-bottom: 0;
        flex-wrap: wrap
    }

    .energiewrapper-directorscut #energiewetter-header h2 {
        display: inline-block
    }

    .energiewrapper-directorscut .energie {
        margin-top: 20px
    }

    .energiewrapper-directorscut #energiewetter {
        width: 100%;
        order: 1;
        padding: 20px 0 25px
    }

    .energiewrapper-directorscut #recent-energymix {
        width: 100%;
        order: 2
    }

    #frontpage .energiewrapper-directorscut #energiewetter {
        width: 100%;
        order: 1;
        padding: 20px 0 25px
    }

    #frontpage .energiewrapper-directorscut #recent-energymix {
        width: 100%;
        order: 2
    }
}

@media screen and (max-width: 767px) {
    .energiewrapper-directorscut .energiebox .percentage:before, footer .energiewrapper-directorscut .energiebox:after {
        font-size: 14px
    }

    .energiewrapper-directorscut .energie {
        margin-top: 20px
    }

    .energiewrapper-directorscut #energiewetter {
        padding-bottom: 20px
    }

    .energiewrapper-directorscut .timetable {
        text-align: left;
        float: none;
        display: block;
        margin: 30px 0 -25px
    }

    #frontpage .energiewrapper-directorscut .stretchwrapper {
        margin-top: 20px
    }

    footer .energiewrapper-directorscut .stretchwrapper {
        max-height: unset;
        height: auto
    }

    footer .energiewrapper-directorscut .energie {
        height: auto
    }

    #frontpage .energiewrapper-directorscut .timetable {
        text-align: left;
        float: none;
        display: block;
        margin: 30px 0 0
    }

    #frontpage .energiewrapper-directorscut #energiewetter, footer .energiewrapper-directorscut #energiewetter {
        padding: 0
    }

    .content-wrapper .content-wrapper {
        max-width: unset
    }

    footer .energiewrapper-directorscut .energiewrapper {
        flex-direction: column;
        position: relative;
        bottom: auto;
        top: auto;
        left: auto;
        right: auto;
        background: 0 0
    }

    footer .energiewrapper-directorscut .energiebox {
        flex: auto;
        margin-bottom: 15px;
        padding-bottom: 15px;
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    footer .energiewrapper-directorscut .energiebox .percentage:before {
        top: -2px;
        bottom: auto;
        right: -40px;
        left: auto;
        width: 30px
    }

    footer .energiewrapper-directorscut .energiebox:after {
        bottom: 0;
        left: 5px
    }

    footer .energiewrapper-directorscut .energiebox, footer .energiewrapper-directorscut .energiebox .percentage {
        height: 40px !important
    }

    footer .energiewrapper-directorscut .energiebox .percentage {
        top: 0;
        left: 5px;
        height: 15px !important;
        width: 0;
        transition: width 2s;
        background: #d9dadb
    }



    footer .energiewrapper-directorscut #braunkohle .percentage.animated {
        width: calc(70% - 5px)
    }

    footer .energiewrapper-directorscut #steinkohle {
        border-bottom: 0;
        border-left: 5px solid #56585a
    }

    footer .energiewrapper-directorscut #steinkohle .percentage.animated {
        width: calc(20% - 5px)
    }

    footer .energiewrapper-directorscut #kernenergie {
        border-bottom: 0;
        border-left: 5px solid #f49e00
    }

    footer .energiewrapper-directorscut #kernenergie .percentage.animated {
        width: calc(0% - 5px)
    }



    footer .energiewrapper-directorscut #wasserkraft .percentage.animated {
        width: calc(0% - 5px)
    }

    footer .energiewrapper-directorscut #windenergie {
        border-bottom: 0;
        border-left: 5px solid #8dceed
    }

    footer .energiewrapper-directorscut #windenergie .percentage.animated {
        width: calc(30% - 5px)
    }


    footer .energiewrapper-directorscut #solarenergie .percentage.animated {
        width: calc(3% - 5px)
    }

    footer .energiewrapper-directorscut #gas {
        border-bottom: 0;
        border-left: 5px solid #fd0
    }

    footer .energiewrapper-directorscut #other {
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    footer .energiewrapper-directorscut #gas .percentage.animated {
        width: calc(7% - 5px)
    }

    footer .energiewrapper-directorscut #andere {
        border-bottom: 0;
        border-left: 5px solid #d9dadb
    }

    footer .energiewrapper-directorscut #energiewetter {
        padding: 20px 0 25px
    }
}

@media screen and (max-width: 479px) {
    .energiewrapper-directorscut .timetable {
        float: none;
        display: block;
        margin: 10px 0 0
    }

    .energiewrapper-directorscut div.bottom {
        height: 75px;
        width: 100%;
        bottom: 80px;
        left: 0;
        left: 5px
    }

    .energiewrapper-directorscut div.inner-bottom {
        width: 130px;
        width: 120px;
        padding-top: 5px
    }
}

@media screen and (max-width: 420px) {
    .timetable {
        margin-top: 5px !important;
        margin-left: 0 !important
    }

    .energiewrapper-directorscut #energiewetter-header {
        flex-wrap: wrap
    }

    .energiewrapper-directorscut div.bottom {
        bottom: 75px
    }
}

@media screen and (max-width: 399px) {
    .energiewrapper-directorscut div.bottom {
        display: inline-block;
        position: absolute;
        bottom: 60px;
        left: 0;
        right: 0;
        margin: auto;
        bottom: 65px;
        left: 4px
    }

    .energiewrapper-directorscut .bottom {
        height: 60px;
        width: 120px
    }

    .energiewrapper-directorscut .inner-bottom > span:first-of-type {
        font: 700 10px RWESansPS;
        margin-top: 0
    }

    .energiewrapper-directorscut .inner-bottom > span {
        color: #1d4477;
        font-size: 11px;
        display: inline-block;
        text-align: center;
        width: 100%
    }

    .energiewrapper-directorscut .inner-bottom strong {
        font-size: 14px
    }

    .energiewrapper-directorscut div.inner-bottom {
        width: 100px;
        padding-top: 3px
    }

    .energiewrapper-directorscut .bottom > span {
        font-size: 10px
    }
}

@media screen and (max-width: 380px) {
    text.svgtext {
        display: block;
        transform: translateY(-10px);
        font-size: 17px
    }

    .energiewrapper-directorscut div.bottom {
        bottom: 80px;
        left: 4px
    }
}

@media screen and (max-width: 360px) {
    text.svgtext {
        display: block;
        transform: translateY(-10px);
        font-size: 14px
    }

    .energiewrapper-directorscut div.bottom {
        bottom: 70px;
        left: 4px
    }

    .energiewrapper-directorscut .bottom > span {
        margin-bottom: 10px
    }
}

@media screen and (max-width: 340px) {
    .energiewrapper-directorscut div.bottom {
        bottom: 60px;
        left: 4px
    }

    .energiewrapper-directorscut .bottom > span {
        margin-bottom: 8px
    }
}

@media screen and (max-width: 320px) {
    .energiewrapper-directorscut div.bottom {
        bottom: 50px
    }

    .energiewrapper-directorscut .energy-legend li {
        display: inline-block
    }
}

@media screen and (min-width: 1280px) {
    footer .energiewrapper-directorscut #energiewetter-header h2 {
        font-size: 32px
    }
}

@media screen and (max-width: 1279px) {
    .footerrelaunch .flex-wrapper {
        flex-wrap: wrap
    }

    .footerrelaunch .flex-wrapper > div {
        flex: 0 0 100% !important;
        padding: 0 !important
    }

    .footerrelaunch div#eviews ~ div:nth-of-type(3), .footerrelaunch div#eviews ~ div:nth-of-type(4) {
        flex: 0 0 50% !important
    }

    .footerrelaunch div#eviews {
        border: none
    }

    .footerrelaunch div#eviews + div {
        border-bottom: 2px solid #fff;
        margin-bottom: 25px;
        padding-bottom: 25px !important
    }
}

@media screen and (max-width: 767px) {
    .newsletterbox-responsive-wrapper {
        top: 300px
    }

    div.form_border ul li {
        flex-wrap: wrap
    }

    div.form_border label {
        margin-right: 0
    }

    div.form_border li > span {
        flex: 0 0 50%;
        align-items: center;
        justify-content: space-between;
        text-align: left;
    }

    .contactbox {
        padding: 35px 30px 30px
    }
}

@media screen and (max-width: 639px) {
    .footerrelaunch div#eviews ~ div:nth-of-type(3) {
        display: none
    }

    .footerrelaunch div#eviews ~ div:nth-of-type(4) {
        flex: 0 0 100% !important
    }
}

.cc-window {
    opacity: 1;
    transition: opacity 1s ease
}

.cc-window.cc-invisible {
    opacity: 0
}

.cc-animate.cc-revoke {
    transition: transform 1s ease
}

.cc-animate.cc-revoke.cc-top {
    transform: translateY(-2em)
}

.cc-animate.cc-revoke.cc-bottom {
    transform: translateY(2em)
}

.cc-animate.cc-revoke.cc-active.cc-bottom, .cc-animate.cc-revoke.cc-active.cc-top, .cc-revoke:hover {
    transform: translateY(0)
}

.cc-grower {
    max-height: 0;
    overflow: hidden;
    transition: max-height 1s
}

.cc-link {
    color: #3ed8c3 !important;
    transition:0.3s;
    display:inline-block;
}
.cc-link:hover {
    transform:translateX(5px)
}

.cc-link, .cc-revoke:hover {
    text-decoration: underline
}

.cc-revoke, .cc-window {
    position: fixed;
    overflow: hidden;
    box-sizing: border-box;
    font: 16px/1.5em Helvetica, Calibri, Arial, sans-serif;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    z-index: 9999
}

.cc-window.cc-static {
    position: static
}

.cc-revoke {
    padding: .5em
}

.cc-header {
    font-size: 18px;
    font-weight: 700
}

.cc-btn, .cc-close, .cc-link, .cc-revoke {
    cursor: pointer
}

.cc-link:active, .cc-link:visited {
    color: initial
}

.cc-highlight .cc-btn:first-child {
    background-color: transparent;
    border-color: transparent
}

.cc-highlight .cc-btn:first-child:focus, .cc-highlight .cc-btn:first-child:hover {
    background-color: transparent;
    text-decoration: underline
}

.cc-close {
    display: block;
    position: absolute;
    top: .5em;
    right: .5em;
    font-size: 1.6em;
    opacity: .9;
    line-height: .75
}

.cc-close:focus, .cc-close:hover {
    opacity: 1
}

.cc-revoke.cc-top {
    top: 0;
    left: 3em;
    border-bottom-left-radius: .5em;
    border-bottom-right-radius: .5em
}

.cc-revoke.cc-bottom {
    bottom: 0;
    left: 3em;
    border-top-left-radius: .5em;
    border-top-right-radius: .5em
}

.cc-revoke.cc-left {
    left: 3em;
    right: unset
}

.cc-revoke.cc-right {
    right: 3em;
    left: unset
}

.cc-top {
    top: 1em
}

.cc-left {
    left: 1em
}

.cc-right {
    right: 1em
}

.cc-floating > .cc-link {
    margin-bottom: 1em
}

.cc-floating .cc-message {
    display: block;
    margin-bottom: 1em
}

.cc-window.cc-floating .cc-compliance {
    -ms-flex: 1;
    flex: 1
}

.cc-banner.cc-top {
    left: 0;
    right: 0;
    top: 0
}


.cc-compliance {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-line-pack: justify;
    align-content: space-between
}

.cc-compliance > .cc-btn {
    -ms-flex: 1;
    flex: 1
}

.cc-btn + .cc-btn {
    margin-left: .5em
}

@media print {
    .cc-revoke, .cc-window {
        display: none
    }
}

@media screen and (max-width: 900px) {
    .cc-btn {
        white-space: normal
    }
}

@media screen and (max-width: 414px) and (orientation: portrait), screen and (max-width: 736px) and (orientation: landscape) {
    .cc-window.cc-top {
        top: 0
    }

    .cc-window.cc-bottom {
        bottom: 0
    }

    .cc-window.cc-banner, .cc-window.cc-left, .cc-window.cc-right {
        left: 0;
        right: 0
    }

    .cc-window.cc-banner {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: unset;
        align-items: unset
    }

    .cc-window.cc-banner .cc-compliance {
        -ms-flex: 1;
        flex: 1
    }

    .cc-window.cc-floating {
        max-width: none
    }

    .cc-window .cc-message {
        margin-bottom: 1em
    }
}

.cc-floating.cc-theme-classic {
    padding: 1.2em;
    border-radius: 5px
}

.cc-floating.cc-type-info.cc-theme-classic .cc-compliance {
    text-align: center;
    display: inline;
    -ms-flex: none;
    flex: none
}

.cc-theme-classic .cc-btn {
    border-radius: 5px
}

.cc-theme-classic .cc-btn:last-child {
    min-width: 140px
}

.cc-floating.cc-type-info.cc-theme-classic .cc-btn {
    display: inline-block
}

.cc-theme-edgeless.cc-window {
    padding: 0
}

.cc-floating.cc-theme-edgeless .cc-message {
    margin: 2em 2em 1.5em
}

.cc-banner.cc-theme-edgeless .cc-btn {
    margin: 0;
    padding: .8em 1.8em;
    height: 100%
}

.cc-banner.cc-theme-edgeless .cc-message {
    margin-left: 1em
}

.cc-floating.cc-theme-edgeless .cc-btn + .cc-btn {
    margin-left: 0
}

@media print {
    #breadcrumb, #socialmediasharing, .colwrapper .right-col, .overlays, .owl-dots, .owl-nav, .recommendations, .wrapper > header, a.backtooverview, footer {
        display: none !important
    }

    .colwrapper .left-col {
        width: 100%
    }

    .wrapper > header + .overlays + .content-wrapper {
        margin: 0 auto
    }

    .wrapper.nobackground .articleinfo {
        justify-content: flex-end
    }

    *, .module-faq .question, .module-faq .question p {
        color: #000 !important
    }
}

.event-article {
    position: relative;
    background: #e8e8e4;
    padding: 30px 20px 20px 35px;
    margin-bottom: 20px;
    min-height: 170px;
    transition: all .5s
}

.modal-header:after, .modal-header:before {
    content: none !important
}

.event-article:hover {
    background: #ddd
}

.event-article .author-recommendation {
    content: "Lesetipp";
    background: #3ed8c3;
    position: absolute;
    color: #fff;
    font: 400 13px RWESansPS;
    height: auto !important;
    width: auto !important;
    display: inline-block;
    white-space: pre-wrap;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    font-weight: 500;
    color: #fff;
    padding: 3px 10px;
    font-size: 16px;
    top: .5rem;
    right: .5rem;
}

.author-recommendation .icon {
    float: right;
    line-height: 1em;
    display: inline-block;
    transform: translateY(2px)
}

.event-article .date {
    display: inline-block;
    font: 700 12px/20px RWESansPS;
    color: #fff;
    background-color: #3ed8c3;
    width: auto;
    padding: 0 5px;
    margin-right: 10px;
    position: relative;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

time {
    font-size: inherit;
    font-weight: inherit
}

.event-article .category {
    color: #3ed8c3
}

.event-article .category, .event-article .location {
    font: 500 16px RWESansPS;
}

.event-article .location {
    display: table;
    font-weight: 500;
    margin: 2.5px 0;
    font: 700 12px/1.5em RWESansPS;
}

.result .event-article .location {
    font: 700 16px/1.5em RWESansPS
}

.event-article img {
    width: 120px;
    height: 110px;
    margin-right: 20px
}

.event-information {
    float: left;
    max-width: 60%
}

.event-imagelink {
    position: absolute;
    right: 20px;
    bottom: 20px
}

.event-article h2 {
    color: #1d4477;
    font-size: 26px;
    margin: 10px 0
}

#paginationwrapper ~ .result .event-article:nth-of-type(7) ~ .event-article {
    display: none
}

#paginationwrapper[style*="display:none;"] ~ .result .event-article:nth-of-type(7) ~ .event-article {
    display: block
}

.event-details {
    position: relative;
    background: #e8e8e4;
    padding: 45px 40px 45px 45px;
    white-space: normal
}

.event-details .category {
    font: 500 16px RWESansPS;
    color: #3ed8c3;
    display: table;
    margin-top: 10px
}

.event-details .date {
    display: inline-block;
    font: 700 16px/1.5em RWESansPS;
    color: #fff;
    background-color: #3ed8c3;
    width: auto;
    padding: 0 5px;
    margin-right: 10px;
    position: relative;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
}

#veranstaltungen-detail .contactbox {
    margin-top: 80px
}

.event-details .author-recommendation {
    background: #3ed8c3;
    position: absolute;
    color: #fff;
    font: 400 13px RWESansPS;
    height: auto !important;
    width: auto !important;
    display: inline-block;
    white-space: pre-wrap;
    border-top-left-radius: 7px;
    border-top-right-radius: 7px;
    border-bottom-right-radius: 7px;
    border-bottom-left-radius: 7px;
    font-weight: 500;
    color: #fff;
    padding: 3px 10px;
    font-size: 16px;
    top: .5rem;
    right:40px;
}

.rwebutton-darker > span {
    margin:0 5px;
    height:1em;
    display:inline-block;
    transition:0.3s;
}

.event-details .date + .location:after {
    content: '';
    display: block;
    width: 100%
}

.event-details .date + .location {
    font-size: 16px
}

.event-details .location {
    display: table;
    font: 700 13px RWESansPS;
    display: inline-block
}

span#ajaximage {
    position: relative;
    width: 100%;
    height: auto;
    margin-top: 135px;
    display: block;
    z-index: 999
}

.event-details h2 {
    font-size: 30px;
    color: #1d4477;
    margin-top: 15px;
    margin-bottom: 30px
}

#events h1 {
    font: 700 50px RWESansPS;
    color: #1d4477;
    display: inline-block;
    margin-top: 0;
    margin-bottom: 30px
}

#events h1 + #paginationwrapper {
    margin-top: 0
}

#events > section {
    padding-top: 45px
}

#events .eventsearch {
    margin-bottom: 0
}

.eventsearch > input {
    width: 100%;
    font-weight:500 !important;
    margin-left: 0;
    border: 1px solid #ccc;
    padding-left: 15px;
    background: url(../img/suche.png) no-repeat center right+25px
}

.resetform button {
    width: 100%;
    margin-left: 0;
    border: 1px solid #ccc;
    padding-left: 15px;
    background-size: 30px;
    background-color: #fff;
    color: #000;
    height: 100%;
    font-size: 16px
}

.resetform button span {
    color: #1d4477;
    margin-left: 15px;
    line-height: 1rem;
    vertical-align: middle;
    display: inline-block;
    height: 16px
}

#events .entirebox:hover ~ .event-imagelink .weiterlesen {
    transform: translateX(5px);
    text-decoration: none;
    color: #3ed8c3
}

.event-slider-wrapper .entirebox:hover ~ span:first-of-type {
    background: #1baf92;
    background: #3ea2c3;
}

input:-webkit-autofill, select:-webkit-autofill, textarea:-webkit-autofill {
    background: #fff none !important;
    color: #000 !important
}

#veranstaltungen-detail a.rwebutton-darker {
    margin: 20px 0;
}



#veranstaltungen-detail .colwrapper .left-col {
    padding-left: 0
}

@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0);
        -moz-transform: rotate(0);
        -webkit-transform: rotate(0);
        -o-transform: rotate(0);
        transform: rotate(0)
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

.rotating {
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite
}

#events .resetform {
    opacity: 1;
    display: none;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none
}

#events .control-wrapper {
    margin-bottom: 25px;
    display: block;
    width: 100%;
    float: none
}

.module-table {
    color: #1d4477;
    font: 400 18px RWESansPS;
    margin: 50px 0
}

#events .control-wrapper > .flex-row {
    justify-content: space-between;
    display: flex;
    margin: 0 0 20px
}

#events .control-wrapper select {
    width: 100%
}

#events .flex-row > div {
    flex: 0 1 50%;
    margin: 0 15px;
    max-width: 50%
}

#events .flex-row > div.searchform + .resetform {
    flex: 0 1 50%;
    margin: 0 15px;
    max-width: 48%
}

#events .flex-row > div.resetform {
    flex: 1;
    max-width: 100%
}

form.eventfilter {
    margin: 0
}

#events .control-wrapper form > div:first-of-type:hover {
    background: inherit
}

#events .control-wrapper .category:hover {
    background: #e8e8e4;
    cursor: pointer
}

#events .control-wrapper button {
    width: 100%;
    transition: all .5s
}

#events .control-wrapper button > span {
    transition: all .5s
}

#events .control-wrapper .resetform button:hover {
    background: #3ed8c3;
    color: #fff
}

#events .control-wrapper .resetform button:hover span {
    color: #fff
}

#events .flex-row > div:first-of-type {
    margin-left: 0
}

#events .flex-row > div:last-of-type {
    margin-right: 0
}

.module-eventimage {
    margin: 30px 0 50px;
    display: flex;
    align-items: flex-start
}

.module-eventimage .text-module {
    margin: 0
}

#events .text-module {
    margin: 0 0 30px
}

.module-eventimage img {
    margin-right: 30px;
    width: 125px;
    height: auto
}

.event-details .module-downloads {
    background: #fff;
    color: #1d4477;
    min-height: 90px
}

.module-eventlocationmap {
    margin: 50px 0;
    display: flex;
    background: #fff;
    min-height: 100%;
    align-items: stretch;
    height: 100%;
    justify-content: space-between
}

#events #paginationwrapper {
    float: right
}

#events #paginationwrapper:after {
    clear: both;
    content: '';
    width: 100%;
    height: 1px;
    display: block;
    margin-bottom: 20px
}

.module-eventlocationmap .locationdescription {
    padding: 35px 30px
}

.module-eventlocationmap span.headline {
    color: #1d4477;
    font: 700 20px RWESansPS;
    margin-bottom: 15px;
    display: inline-block
}

.module-eventlocationmap p {
    color: #1d4477;
    margin-bottom: 35px
}

.module-eventlocationmap .openstreetframe {
    flex: 0 0 50%
}

.openstreetframe {
    width: 100%;
    height: 100%;
    border: none;
    min-height: 345px
}

#events input[type=submit] {
    width: 100%;
    text-align: center;
    background: #3ed8c3;
    color: #fff;
    border: none;
    transition: .8s
}

.autocomplete-suggestion b {
    font-weight: 400;
    color: #555
}

.autocomplete-suggestion {
    color: #3ed8c3;
    font: 700 16px RWESansPS;
    padding: 10px 15px
}

.searchresults-wrapper .label {
    display: inline-block;
    padding: 12px;
    color: #fff;
    background: #1d4477;
    border-radius: 3px;
    font: 400 16px RWESansPS;
    margin: 7.5px;
    cursor: pointer;
    transition: all .3s
}

.event-article .date + .location {
    display: inline-block
}

#events input[type=submit]:hover {
    background: #1c9475
}

.startroute > span {
    vertical-align: middle;
    display: inline-block;
    transform: translateY(2px);
    margin-right: 5px
}

#veranstaltungen-detail .content-headline, #veranstaltungen-detail h1 {
    margin-bottom: 30px
}

.event-details .module:last-of-type {
    margin-bottom: 0
}

#events .control-wrapper > div:first-of-type:hover {
    background: inherit;
    cursor: inherit
}

.queryinformation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    font-family: RWESansPS;
    font-weight: bold
}

.queryinformation .postcount,.queryinformation .currentDate {
    color: #1d4477;
    font-size: 16px;
    font-weight:500;
}


#startAjax {
    width: 100%;
    text-align: center;
    background: #3ed8c3;
    color: #fff;
    border: none;
    transition: .8s
}

#ajaximage img {
    width: 150px;
    height: 150px;
    display: block;
    margin: auto
}

.chart-module {
    margin: 50px 0
}

.chart-module.pie {
    background: #e8e8e4;
    padding: 25px
}

.chartcontainer {
    padding-top: 15px
}

.chart-module > div {
    left: 0;
    position: relative
}

#events .module-accordion > span.collapsible + div {
    padding: 0;
    background: #1d4477;
    margin-top: 0
}

#events .module-accordion .well {
    border: none
}

#events .module-accordion {
    display: none
}

#events .left-col .responsiverework {
    display: none
}

.wrapper > section:last-of-type {
    min-height: 70vh
}

.articleinfo + div.categories-wrapper > .categories {
    display: inline-block
}

.articleinfo:empty{
    display:none;
}

#beitragsseite .categories-wrapper + .content-headline, #beitragsseite .categories-wrapper + h1 {
    margin-top: 25px
}

/*.recentnews .lesetipp {
    right: 35px
}*/


#event-slider-information {
    background: #1d4477;
    background: linear-gradient(225deg, #00a19f, rgba(29, 68, 119, .75));
    padding: 40px 15px 40px 35px;
    position: relative;
    max-width: calc(33% - 15px)
}

#event-slider-information h2 {
    margin-bottom: 20px;
    font: 700 24px RWESansPS
}

.event-article-wrapper .event-imagelink {
    bottom: 10px
}

.event-slider-wrapper .owl-theme .owl-dots .owl-dot {
    display: block;
    margin: 5px 0
}

.event-slider-wrapper .owl-theme .owl-dots .owl-dot span {
    display: block
}

.event-slider-wrapper {
    display: flex;
    margin-top: 30px !important;
    margin-bottom: 30px !important;
    align-items: stretch;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc
}

.event-slider-wrapper + .content-wrapper .topicfocus a.showall {
    float: right;
    position: relative;
    top: 0
}

.event-slider-wrapper > div {
    flex: 0 1 33%
}

.event-slider-wrapper .event-slider {
    flex: 1 1 auto;
    width: calc(100% - 66%)
}

.event-slider .event-information {
    width: 100%;
    max-width: none;
    max-width: unset;
    float: none
}

.event-slider .event-article {
    margin: 0;
    background: #fff;
    transition: background .5s;
    padding: 35px 35px 50px
}

.event-article-wrapper .event-article:only-child {
    margin-left: 0 !important
}

.event-slider .event-article:hover {
    background: #e8e8e4
}

.event-article-wrapper {
    display: flex;
    justify-content: flex-end;
    height: 100%
}

.event-article-wrapper .event-article {
    width: 100%
}

.event-slider .owl-item, .event-slider .owl-stage, .event-slider .owl-stage-outer {
    height: 100%
}

#event-slider-information .owl-theme {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%)
}

#event-slider-information .owl-theme .owl-dots .owl-dot {
    cursor: pointer;
    background: 0 0;
    border: none
}

#event-slider-information .owl-theme .owl-dots .owl-dot span {
    border: 1px solid #fff;
    background: 0 0
}

#event-slider-information .owl-theme .owl-dots .owl-dot.active span {
    background: #fff
}

.module-eckdaten-outerwrapper {
    background: #e8e8e4;
    position: relative
}

.module-eckdaten-innerwrapper {
    padding: 35px 20px
}

.eckdaten-row {
    display: block;
    width: 100%;
    padding: 25px 0
}

.biginformation {
    font-size: 65px;
    line-height: 1em;
    margin-right: 20px;
    display: inline-block
}

.biginformation img {
    margin-right: 15px
}

.flex-wrapper {
    display: flex;
    align-items: center
}

.biginformation > span {
    line-height: 45px
}

.smallinformation {
    font-size: 20px;
    vertical-align: baseline;
    display: block
}

.eckdatenlabel {
    background: #3ed8c3;
    background: #3ed8c3;
    position: absolute;
    color: #fff;
    padding: 2.5px 7px;
    font-size: 16px;
    content: none;
    right: auto;
    left: 20px;
    top: -10px;
    display: inline-block;
    border-radius: 5px;
}

.eckdaten-row:first-of-type {
    padding-top: 0;
    border-top: none
}

.eckdaten-row:nth-of-type(2n) {
    border-bottom: 1px solid #fff;
    border-top: 1px solid #fff
}

.eckdaten-row:last-of-type {
    border-top: 1px solid #fff;
    padding-bottom: 0;
    border-bottom: 0
}

.eckdaten-row:first-of-type {
    padding-top: 0;
    border-top: none !important;
}

.module-eckdaten {
    width: 100%
}

@media screen and (max-width: 1279px) {
    .event-article-wrapper {
        flex-wrap: wrap
    }

    .event-slider .event-article-wrapper .event-article:last-of-type {
        border-top: 1px solid #ccc
    }

    .event-slider .event-article-wrapper .event-article {
        margin: 0 0 !important
    }

    #events .module-accordion {
        display: block
    }

    #event-slider-information .owl-theme {
        position: relative;
        transform: none;
        top: auto;
        right: 10px;
        margin-top: 20px
    }

    #event-slider-information .owl-theme .owl-dots .owl-dot {
        display: inline-block
    }
}

@media screen and (max-width: 991px) {
    .event-slider .event-article {
        padding: 15px;
        border: 15px solid #1d4477
    }

    .event-slider .event-article-wrapper .event-article:last-of-type {
        border-top: 0
    }

    .recentnews .lesetipp {
        right: 60%;
        transform: translateX(100%) translateX(15px);
    }

    #event-slider-information {
        flex: 1 1 100%;
        max-width: none;
        max-width: unset;
        margin: 0;
        padding: 15px;
        position: static
    }

    .lesetipp {
        font-size: 14px;
    }

    .event-slider-wrapper {
        flex-wrap: wrap;
        padding-bottom: 50px;
        background: #1d4477
    }

    #event-slider-information .articlecounter + .owl-theme {
        position: absolute;
        bottom: 13px;
        z-index: 999;
        left: 0;
        right: 0
    }

    .module-eventlocationmap {
        flex-wrap: wrap
    }

    .module-eventlocationmap .openstreetframe {
        flex: 1 1 100%;
        min-height: 350px
    }

    #veranstaltungen-detail .colwrapper .left-col {
        width: 100%;
        max-width: none;
        max-width: unset
    }

    .event-information {
        max-width: 50%
    }

    .event-article h2 {
        font-size: 22px
    }
}

@media screen and (max-width: 767px) {
    .recentnews .lesetipp {
        right: 15px;
        transform: none !important
    }

    .recentnews > article:first-of-type ~ article figure > figcaption {
        width: 100% !important
    }

    .biginformation {
        font-size: 50px
    }

    .smallinformation {
        font-size: 18px
    }

    .recentnews > article:first-of-type ~ article figure > .lesetipp {
        width: auto !important
    }

    .articleinfo + div.categories-wrapper {
        margin-top: 15px
    }

    .module-subheadline {
        font-size: 20px
    }

    #events h1 {
        font-size: 30px
    }

    #events .flex-row > div {
        margin: 5px 0;
        flex: 1 1 100%;
        max-width: 100%
    }

    .eventsearch > input {
        background-position: center right+10px;
        padding-left: 25px
    }

    #veranstaltungen-detail .colwrapper {
        width: calc(100% - 60px);
        margin: auto
    }

    .event-details {
        font-size: 14px
    }

    .module-eventlocationmap span.headline {
        font-size: 16px;
        margin-bottom: 15px
    }
}

@media screen and (max-width: 639px) {

    .eckdatenlabel {
        font-size:12px;
    }

    .event-article .category {
        color: #3ed8c3;
        display: block;
        margin: 10px 0 0;
        font-size: 13px;
        font: 500 14px RWESansPS !important;
    }

    .event-article .author-recommendation {
        font-size:12px;
    }

    .event-article {
        padding: 45px 20px 20px 35px;
    }

    #events .left-col > #paginationwrapper:first-of-type {
        display: none
    }

    #events .left-col .responsiverework {
        display: block !important
    }

    #events h1 {
        margin-bottom: 30px
    }

    .event-details {
        padding: 45px 15px 15px
    }

    .event-article {
        display: flex;
        flex-wrap: wrap
    }

    .event-information {
        width: 100%;
        float: none;
        max-width: none;
        max-width: unset;
        margin-bottom: 20px
    }

    .event-imagelink {
        position: static;
        bottom: auto;
        right: auto
    }
}

@media screen and (max-width: 479px) {
    .event-article .author-recommendation, .event-details .author-recommendation {
        width: 190px
    }

    .module-eventimage {
        flex-wrap: wrap
    }

    .module-eventimage img {
        width: 100%;
        margin: 0 0 10px
    }
}

@media screen and (max-width: 1279px) {
    .chartcontainer {
        height: auto !important
    }

    #veranstaltungen-detail .contactbox {
        margin-top: 0
    }

    #veranstaltungen-detail h1 {
        font-size: 45px
    }
}

@media screen and (max-width: 767px) {
    #veranstaltungen-detail a.backtooverview {
        float: none;
        display: inline-block;
        width: auto;
        top: auto;
        right: auto;
        left: auto;
        bottom: auto;
        position: static;
        margin: 10px 0;
        padding: 0 20px;
        color: #fff;
        background: #20b093;
        height: 40px;
        line-height: 40px
    }

    .event-details h2 {
        font-size: 22px
    }

    #veranstaltungen-detail .content-headline, #veranstaltungen-detail h1 {
        font-size: 24px
    }
}

@media screen and (min-width: 1280px) {
    #event-slider-information .articlecounter {
        position: static;
        bottom: 30px;
        display: inline-flex;
    }
}

.highcharts-title {
    font: 700 22px RWESansPS;
    color: #1d4477;
    fill: #1d4477;
    margin: 0 0 !important;
    line-height: 1.5em !important;
}

.highcharts-subtitle {
    font-size: 14px !important;
    display: inline-block;
    line-height: 1.5em;
    margin-top: 5px
}

.highcharts-data-label {
    font-weight: 400 !important;
    font-family: RWESansPS;
    font-weight: normal
}

#landingpage .articleinfo .dateviews {
    display: none
}

#landingpage .articleinfo .dateviews.icon-view {
    display: flex
}

#landingpage .categories-wrapper {
    display: none
}



@-webkit-keyframes showup {
    0% {
        opacity: 0;
        -webkit-transform: translateY(30px) scale(.8)
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0) scale(1)
    }
}

@-moz-keyframes showup {
    0% {
        opacity: 0;
        -moz-transform: translateY(30px) scale(.8)
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0) scale(1)
    }
}

@keyframes showup {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(.8)
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes showup_responsive {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(.8)
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(30px) scale(1)
    }
}

#search select#search-direction {
    display: block
}

#searchtrigger {
    width: 70px;
    height: 40px;
    position: absolute;
    top: 0;
    border: none;
    right: 15px;
    background: transparent url(../img/suche.png) no-repeat center center;
    padding: 0
}

#search-direction + #paginationwrapper {
    margin-left: 20px
}

@-webkit-keyframes object_big {
    50% {
        -webkit-transform: scale(.5)
    }
}

@keyframes object_big {
    50% {
        transform: scale(.5);
        -webkit-transform: scale(.5)
    }
}

@-webkit-keyframes object_one {
    50% {
        -webkit-transform: translate(-65px, -65px)
    }
}

@keyframes object_one {
    50% {
        transform: translate(-65px, -65px);
        -webkit-transform: translate(-65px, -65px)
    }
}

@-webkit-keyframes object_two {
    50% {
        -webkit-transform: translate(0, -65px)
    }
}

@keyframes object_two {
    50% {
        transform: translate(0, -65px);
        -webkit-transform: translate(0, -65px)
    }
}

@-webkit-keyframes object_three {
    50% {
        -webkit-transform: translate(65px, -65px)
    }
}

@keyframes object_three {
    50% {
        transform: translate(65px, -65px);
        -webkit-transform: translate(65px, -65px)
    }
}

@-webkit-keyframes object_four {
    50% {
        -webkit-transform: translate(65px, 0)
    }
}

@keyframes object_four {
    50% {
        transform: translate(65px, 0);
        -webkit-transform: translate(65px, 0)
    }
}

@-webkit-keyframes object_five {
    50% {
        -webkit-transform: translate(65px, 65px)
    }
}

@keyframes object_five {
    50% {
        transform: translate(65px, 65px);
        -webkit-transform: translate(65px, 65px)
    }
}

@-webkit-keyframes object_six {
    50% {
        -webkit-transform: translate(0, 65px)
    }
}

@keyframes object_six {
    50% {
        transform: translate(0, 65px);
        -webkit-transform: translate(0, 65px)
    }
}

@-webkit-keyframes object_seven {
    50% {
        -webkit-transform: translate(-65px, 65px)
    }
}

@keyframes object_seven {
    50% {
        transform: translate(-65px, 65px);
        -webkit-transform: translate(-65px, 65px)
    }
}

@-webkit-keyframes object_eight {
    50% {
        -webkit-transform: translate(-65px, 0)
    }
}

@keyframes object_eight {
    50% {
        transform: translate(-65px, 0);
        -webkit-transform: translate(-65px, 0)
    }
}

@media screen and (max-width: 1919px) {
    header > div.contentheader {
        background-position: left top
    }

    .image-slider.fullwidth {
        width: calc(100% + 440px)
    }

    body.sidr-animating #mainnavigationwrapper, body.sidr-open #mainnavigationwrapper {
        transform: translateX(-250px)
    }

    .closeoverlay {
        right: 60px
    }

    #uebersicht-wrapper .left-col {
        max-width: calc(100% - 430px - 30px);
        margin-right: 30px
    }

    #uebersicht-wrapper .uebersicht-article figure {
        justify-content: space-between
    }

    #contentseite section {
        max-width: 1100px;
        padding: 0 115px
    }

    .content-wrapper {
        margin: auto;
        width: 100%
    }

    header .contentheader img {
        margin: 70px 0 30px
    }

    header .contentheader svg {
        margin: 70px 0 30px;
        width: 484px
    }

    header h1 {
        margin-left: 0
    }

    .topicfocus-slider article {
        width: auto;
        height: auto
    }

    .topicfocus-slider article figure img {
        max-width: none;
        height: auto
    }

    .topicfocus-slider .owl-stage {
        margin-left: 161.5px
    }

 /*   .mostread-flex > article {
        min-height: 295px;
        background: #e8e8e4;
        position: relative;
        width: calc(100% / 4 - 2.5px);
        margin-right: 5px;
        height: 100%
    }*/

    .mostread-flex > article:last-of-type {
        margin-right: 0
    }

    .slider-wrapper > img {
        height: 50px;
        top: -25px
    }

    .colwrapper .left-col {
        padding-right: 80px
    }

    #beitragsseite .image-slider.fullwidth {
        width: calc(100% + 430px)
    }

    #beitragsseite header > div.contentheader {
        height: 445px
    }

    .test {
        width: calc(100% - 100px)
    }
}

@media screen and (max-width: 1680px) {
    .topicfocus-slider article figcaption {
        left: 30px
    }

    .topicfocus-slider article figcaption h1 {
        font-size: 45px
    }

    .topicfocus-slider article figcaption h3 {
        font-size: 45px
    }
}

@media screen and (max-width: 1679px) {
    #schwerpunkt-wrapper article > div:last-of-type h2 {
        max-width: 445px
    }

    header > div#breadcrumb {
        max-width: calc(100% - 120px)
    }

    #beitragsseite h1, #content2col span.subheading, #contentseite h1, #contentseite span.subheading, #veranstaltungen-detail h1, .content-headline {
        font-size: 45px
    }

    header .contentheader img {
        margin: 70px 0 50px
    }

    header .contentheader svg {
        margin: 70px 0 50px
    }

    header h1 {
        margin-left: 0
    }

    .content-wrapper {
        max-width: calc(100% - 120px)
    }

    .topicfocus-slider .owl-stage {
        margin-left: 60px
    }

    .image-slider.fullwidth {
        width: calc(100% + 345px)
    }

    .contactbox p {
        padding-right: 0
    }

    #beitragsseite .image-slider.fullwidth {
        width: calc(100% + 345px)
    }

    .contactbox .contactme {
        padding-left: 15px;
        font-size: 16px
    }

    .overlayopener {
        min-width: unset
    }

    .colwrapper .left-col {
        padding: 0 75px
    }

    #beitragsseite .category-headline {
        padding: 50px 75px
    }

    #beitragsseite .subheading, #beitragsseite h1, #veranstaltungen-detail h1, .content-headline {
        font-size: 45px
    }

    .sidr ul li a, .sidr ul li span {
        font-size: 18px
    }

    .sidr ul li ul li a, .sidr ul li ul li span {
        font-size: 14px
    }

    .sidr ul li ul li, .sidr ul li ul li.active, .sidr ul li ul li.sidr-class-active, .sidr ul li ul li:hover {
        line-height: 30px
    }

    /*.mostread-flex > article:nth-of-type(5) {
        display: none
    }*/

    body.sidr-animating #mainnavigationwrapper, body.sidr-open #mainnavigationwrapper {
        transform: translateX(0)
    }

    #sidr.sidr {
        top: 90px
    }

    #prev  {
        left:0px;
    }
    #next {
        right:0px;
    }
}

@media screen and (max-width: 1365px) {
    .topicfocus-slider .owl-nav .owl-prev {
        left: -35px
    }

    .topicfocus-slider .owl-nav .owl-next {
        right: -35px
    }

    #schwerpunkt-wrapper article > div:last-of-type h2 {
        max-width: unset
    }

    #schwerpunkt-wrapper figure {
        display: flex;
        max-height: 200px;
        align-items: center
    }

    #schwerpunkt-wrapper article figcaption {
        padding: 0 0 0 100px;
        width: 100%
    }

    header > div.contentheader {
        background-position: center top
    }

    #schwerpunkt-wrapper article .info-wrapper {
        position: relative;
        right: auto;
        bottom: auto;
        display: flex;
        align-items: center;
        margin-top: 15px
    }

    #schwerpunkt-wrapper article .info-wrapper > a {
        margin-top: 0;
        height: 40px;
        line-height: 1.5em;
    }

    .image-slider.fullwidth {
        width: calc(100% + 325px)
    }

    .contactbox .contactme {
        padding-left: 10px;
        font-size: 15px
    }

    #themafinden .left-col p {
        margin-bottom: 0
    }

    #themafinden .left-col {
        margin-right: 0
    }

    #themafinden .left-col .overview {
        display: none
    }

    #themafinden .right-col .overview {
        display: block;
        margin-top: 50px;
        position: relative
    }

    #themafinden .right-col .overview:before {
        content: '';
        width: 100%;
        display: block;
        border-top: 2px solid #fff;
        margin-top: 50px;
        position: absolute;
        left: 0;
        top: -80px;
        pointer-events: none
    }

    .searchresults-wrapper > article > div > h2 a {
        font-size: 1.25rem
    }

    #schwerpunkt-wrapper article figcaption, .topicfocus-slider article figcaption {
        max-width: 75%
    }

    .contentheader {
        flex-wrap: wrap;
        justify-content: flex-end
    }

    #uebersicht h1 {
        margin-right: auto;
        margin-bottom: 15px
    }

    #uebersicht .control-wrapper {
        order: 3;
        width: 100%;
        margin-bottom: 20px;
    }

    #searchoverlay form {
        flex-wrap: wrap;
        justify-content: flex-end
    }

    #searchoverlay input {
        width: 100%
    }

    #searchoverlay button {
        width: 25%
    }

    .resetform {
        margin-top: 10px
    }

    #themafinden > .content-wrapper {
        flex-wrap: wrap
    }

    #themafinden .left-col, #themafinden .right-col {
        width: 100%
    }

    .overlays #selectionpicker {
        padding: 30px 0
    }

    #themafinden #selectionpicker {
        padding: 0
    }

    #uebersicht-wrapper {
        flex-wrap: wrap
    }

    .module-accordion #selectionpicker {
        padding: 40px
    }

    #uebersicht .module-accordion > span.collapsible + div {
        padding: 0;
        background: #1d4477
    }

    .searchresults-wrapper > article > div > h2 {
        max-width: 75%
    }
}

@media screen and (max-width: 1279px) {
    #searchtrigger {
        right: 0
    }

    #searchcontrols .awesomplete input {
        width: 100% !important
    }

    #searchcontrols .awesomplete {
        flex: 0 0 100% !important;
        width: 100% !important;
        margin: 10px 0 0 !important
    }

    .recentnews > article:first-of-type > figure {
        background-image: none !important
    }

    .recentnews > article:first-of-type > figure img {
        height: 100%;
        visibility: visible
    }

    #uebersicht .module-accordion > span.collapsible + div {
        overflow: visible
    }

    #themafinden p {
        margin-top: 10px
    }

    .topicfocus-slider article:not(.last) figcaption p {
        display: none !important
    }

    .recommendations.recommendationsalternative > article {
        align-items: flex-start
    }

    #beitragsseite.nobackground header div.contentheader {
        max-width: calc(100% - 115px);
        width: 100%;
        margin-left: auto;
        margin-right: 0;
        display: none
    }

    #beitragsseite.wrapper.nobackground a.backtooverview {
        position: relative;
        top: auto;
        left: auto
    }

    #contentseite.wrapper.nobackground a.backtooverview {
        left: -60px
    }

    #landingpage .recommendations > article, #landingpage .recommendations > article:nth-of-type(3n-1) {
        margin: 0 0 30px
    }

    #landingpage .recommendations {
        justify-content: space-between
    }

    #landingpage .recommendations > article:nth-of-type(3) {
        display: block
    }

    #searchcontrols {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        margin-bottom: 80px;
        margin-top: 45px;
        flex-wrap: wrap
    }

    #searchcontrols > input {
        margin: 0 0 20px
    }

    #searchcontrols > div, #searchcontrols > select {
        flex: 0 0 200px;
        background: #fff;
        margin: 0;
        flex: 1 1 auto !important
    }

    #search-direction + #paginationwrapper {
        margin-left: 20px
    }

    select + #paginationwrapper {
        flex: 0 0 auto !important;
        margin: 0
    }

    header > div.navheader a.themafinden {
        margin-right: 25px
    }

    header > div:not(.navheader-shrink) .overlayopener {
        font-size: 20px
    }

    #schwerpunkt-wrapper article > div:last-of-type h2 {
        font-size: 26px
    }

    #schwerpunkt-wrapper article > div:last-of-type {
        padding: 40px 0 40px 35px
    }

    #uebersicht-wrapper .left-col, #uebersicht-wrapper .right-col {
        width: 100%;
        max-width: 100%
    }

    #uebersicht-wrapper .right-col {
        display: none
    }

    #uebersicht .module-accordion {
        display: block;
        margin: 50px 0 10px;
        width: 100%;
        order: 2
    }

    #uebersicht-wrapper .left-col {
        order: 2
    }

    .articlecounter {
        width: auto;
        flex: 0 0 235px
    }

    #schwerpunkt-wrapper article .info-wrapper {
        flex-wrap: nowrap
    }

    #schwerpunkt-wrapper article .info-wrapper > a {
        margin-top: 0;
        flex: 1 1 auto
    }

    #schwerpunkt-wrapper article figcaption {
        padding: 0 0 0 60px
    }

    #landingpage h1 {
        margin: 35px auto
    }

    #landingpage header > div.contentheader {
        height: 330px
    }

    #landingpage.wrapper > header + .overlays + .content-wrapper {
        margin: -50px auto 0;
        max-width: none;
        width: 100%
    }

    .image-slider.fullwidth {
        width: calc(100%)
    }

    #contentseite section {
        padding: 0
    }

    #beitragsseite .category-headline {
        width: calc(100%);
        left: 0;
        padding: 50px 60px
    }

    .topicfocus-slider article:hover img {
        opacity: 1 !important;
        transform: none
    }

    .topicfocus-slider article:hover figcaption p {
        transform: none
    }

    .topicfocus-slider article figcaption p {
        opacity: 1;
        transition: none;
        transform: none
    }

    .owl-carousel article:hover figure {
        background: 0 0
    }

    .colwrapper .right-col {
        display: none;
        float: none;
        width: auto;
        flex: 0 0 195px;
        margin-right: 60px
    }

    .contactbox-responsive-wrapper, .newsletterbox-responsive-wrapper {
        position: fixed;
        right: 0;
        top: 300px;
        display: flex;
        transform: translateX(260px);
        transition: all .5s ease;
        z-index: 100
    }

    .contactbox-responsive-wrapper {
        top: 230px
    }

    .contactbox-responsive-wrapper.slide, .newsletterbox-responsive-wrapper.slide {
        transform: translateX(0);
        transition: all .5s ease
    }

    .contactbox-responsive-outer, .newsletterbox-responsive-outer {
        height: auto;
        background: #3ed8c3;
        display: flex;
        z-index: 1;
        cursor: pointer;
        height: 50px;
        flex-direction: column;
        width: 50px;
        align-items: center;
        justify-content: space-between;
        padding-bottom: 20px;
        transition: all 1.5s;
        border-radius:5px;
    }

    .contactbox-responsive-outer > span:first-of-type, .newsletterbox-responsive-outer > span:first-of-type {
        font: 700 16px/20px RWESansPS;
        color: #fff;
        display: inline-block;
        transform: rotate(90deg) translate(0, 0);
        width: 100px
    }

    .contactbox-responsive-outer > span:last-of-type, .newsletterbox-responsive-outer > span:last-of-type {
        font-size: 20px;
        color: #fff;
        vertical-align: super
    }

    .contactbox-responsive-inner, .newsletterbox-responsive-inner {
        width: 260px;
        height: auto;
        background: #e8e8e4;
        margin-top: 40px
    }

    .contactbox p, .contactbox-responsive-inner .contactbox .contactme, .newsletterbox-responsive-inner .contactbox .contactme {
        display: block;
        font-size: 14px
    }

    .contactbox-responsive-inner .contactbox, .newsletterbox-responsive-inner .contactbox {
        height: auto;
        width: auto
    }

    .contactbox-responsive-inner .contactbox p, .newsletterbox-responsive-inner .contactbox p {
        padding-right: 0
    }

    .contactbox-responsive-wrapper.slide > .contactbox-responsive-outer, .newsletterbox-responsive-wrapper.slide > .newsletterbox-responsive-outer {
        transition: all .5s;
        background: 0 0;
        width: 78px
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer > .icon-wrapper, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer > .icon-wrapper {
        transform: translateX(0);
        transition: all .5s
    }

    .contactbox-responsive-wrapper.slide > .contactbox-responsive-outer > .icon-wrapper, .newsletterbox-responsive-wrapper.slide > .newsletterbox-responsive-outer > .icon-wrapper {
        transform: translateX(108px);
        transition: all .5s;
        flex: 0 0 78px;
        width: 78px
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer > span, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer > span {
        opacity: 1;
        transition: all .5s;
        display: none
    }

    .contactbox-responsive-wrapper.slide > .contactbox-responsive-outer > span, .newsletterbox-responsive-wrapper.slide > .newsletterbox-responsive-outer > span {
        opacity: 0;
        transition: all .5s
    }

    .content-wrapper.footer-info {
        max-width: 100%;
        padding: 0 60px
    }

    #contentseite header > div.contentheader {
        max-width: 100%;
        height: 320px
    }

    #contentseite.wrapper > header + .overlays + .content-wrapper {
        margin: auto
    }

    .content-wrapper {
        max-width: calc(100% - 230px);
        margin: auto;
        width: 100%
    }

    .recommendations > article {
        flex: 0 0 auto;
        width: calc(100% / 2 - 15px);
        margin-bottom: 30px
    }

    .recommendations > article:nth-of-type(3) {
        display: none
    }

    header > div.contentheader {
        height: 590px
    }

    header .contentheader img {
        margin: 70px 0 50px
    }

    header .contentheader svg {
        margin: 70px 0 50px
    }

    header h1 {
        margin-left: 0
    }

    .recentnews > article:first-of-type {
        flex: 0 0 auto;
        width: calc(100%)
    }

    .recentnews > article:first-of-type figure {
        background: 0 0
    }

    #socialmediasharing {
        flex-wrap: wrap
    }

    .recentnews > article {
        flex: 0 0 auto;
        width: calc(100% / 2)
    }

    .topicfocus-slider .owl-stage {
        margin-left: 115px
    }

    .mostread-flex > article {
        width: calc(100% * 1 / 3 - 2.5px)
    }

    .mostread-flex > article:nth-of-type(3) ~ article {
        display: none
    }

    .footer-flex {
        flex-direction: column;
        flex-wrap: wrap
    }

    footer #eviews {
        border-right: 0;
        border-bottom: 2px solid #fff;
        padding-right: 0;
        flex: 1 1 auto;
        padding-bottom: 30px;
        display: flex;
        align-items: flex-start
    }

    footer #eviews > img {
        width: 250px;
        height: auto;
        margin-right: 55px
    }

    footer #eviews > svg {
        width: 175px;
        height: auto;
        margin-right: 55px;
        flex: 0 0 auto
    }

    #energiewetter {
        padding: 30px 0 0;
        width: calc(100%)
    }

    header > div#breadcrumb {
        margin-left: 60px;
        padding: 0
    }

    #beitragsseite header > div.contentheader {
        background-size: cover;
        width: 100%;
        max-width: none
    }

    #beitragsseite.wrapper > header + .content-wrapper {
        margin: -130px auto 0;
        max-width: none;
        width: 100%
    }

    #beitragsseite.wrapper > header + .overlays + .content-wrapper {
        margin: 0 auto;
        max-width: none;
        width: 100%
    }

    #beitragsseite.wrapper.nobackground > header + .overlays + .content-wrapper {
        margin: 0 auto;
        max-width: none;
        width: 100%
    }

    .colwrapper .left-col {
        padding-left: 60px;
        float: none;
        margin: auto;
        padding-right: 60px;
        max-width: 100%;
        width: 100%
    }

    .recentnews.morelinks > article figcaption span.date, .recentnews.morelinks > article figcaption span.likes {
        width: 48%
    }

    p.quotation {
        max-width: none
    }

    .test {
        width: calc(100% - 60px)
    }

    #beitragsseite .subheading, #beitragsseite h1, #contentseite h1, #contentseite span.subheading, #veranstaltungen-detail h1, .content-headline {
        font-size: 45px
    }

    .contactbox {
        height: auto;
        min-height: unset;
        padding: 75px 30px 30px;
        width: 195px
    }

    .contactbox h3 {
        padding-right: 0
    }

    #beitragsseite .image-slider.fullwidth {
        margin-left: 60px;
        width: calc(100% - 120px)
    }

    #beitragsseite .recentnews.morelinks > article, #beitragsseite .recentnews.morelinks > article:first-of-type {
        width: calc(100% / 2)
    }

    #beitragsseite .recentnews.morelinks > article:nth-of-type(3) {
        display: none
    }
}

@media screen and (max-width: 1099px) {
    #contentseite.wrapper.nobackground a.backtooverview {
        left: 0;
        top: 0;
        position: relative
    }

    .topicfocus-slider.owl-carousel .owl-item {
        max-width: none;
        width: auto
    }

    #contentseite.wrapper.nobackground .articleinfo {
        margin-top: 55px
    }

    #schwerpunkt-wrapper article {
        width: 100%
    }

    #schwerpunkt-wrapper article:nth-of-type(2n) {
        margin-left: 0
    }

    .content-wrapper {
        max-width: calc(100% - 120px);
        margin: auto;
        width: 100%
    }

    header > div.contentheader {
        height: 672px
    }

    header .contentheader img {
        margin: 70px 0 50px
    }

    header .contentheader svg {
        margin: 70px 0 50px
    }

    header h1 {
        margin-left: 0
    }

    .wrapper > header + .content-wrapper {
        margin: -220px auto 0
    }

    .wrapper > header + .overlays + .content-wrapper {
        margin: -220px auto 0
    }

    .topicfocus-slider .owl-stage {
        margin-left: 60px
    }
}

@media screen and (max-width: 1023px) {
    .recommendations.recommendationsalternative span.teaser-subhead {
        margin-bottom: 15px
    }

    .recommendations.recommendationsalternative > article > a {
        align-self: auto;
        margin: 0;
        flex: 0 0 auto
    }

    .uebersicht-article span.teaser-subhead {
        font-size: 18px;
        line-height: 22px
    }

    .uebersicht-article span.teaser-subhead a {
        font-size: 18px;
        line-height: 22px
    }

    header > div.navheader > .content-wrapper > a > svg {
        height: 35px
    }

    header > div.navheader-shrink > .content-wrapper > a > svg {
        height: 30px
    }

    .recommendations > article figcaption > a {
        position: absolute;
        bottom: 20px
    }

    .recommendations h2 > a, .recommendations > article figcaption h2 {
        max-height: unset;
        height: auto
    }

    .recommendations > article figcaption {
        padding: 25px 30px 65px
    }

    .recommendations.recommendationsalternative > article {
        flex-direction: column;
        align-items: flex-start
    }

    .recommendations.recommendationsalternative h2 > a {
        margin: 15px 0 0
    }

    .recommendations.recommendationsalternative > article > span.date {
        margin-top: 0;
        flex: 0 0 auto
    }
}

@media screen and (max-width: 991px) {
    .recentnews > article figcaption span.teaser-subhead a {
        font-size: 20px
    }

    .recentnews > article figcaption span.teaser-subhead {
        font-size: 20px;
        line-height: 20px
    }

    .recentnews > article:not(:first-of-type) figcaption a:last-of-type,.recentnews > article:first-of-type figcaption h2 > a,.recentnews > article figcaption span.teaser-subhead a {
        font-size: inherit;
    }


    .recentnews > article figcaption h2 {
        font-size:20px !important;
    }

    .recentnews > article figcaption span.teaser-subhead {
        font-size:18px;
    }



    .recentnews > article:not(:first-of-type) figcaption > a:last-of-type {
        font-size:18px;
    }

    .recentnews > article figcaption span.date, .recentnews > article figcaption span.likes {
        margin-bottom: 5px
    }


    .recentnews > article:not(:first-of-type) figcaption a {
        font-size: 22px;
        position: relative;
        bottom: 0
    }

    a.themafinden > span {
        transform: translateY(1px)
    }

    .recentnews > article figcaption span.likes {

        font-size: 12px;
    }

    a#simple-menu > span {
        transform: translateY(3px)
    }

    #schwerpunkt-wrapper article > div:last-of-type p {
        max-width: unset
    }

    header > div.navheader > .content-wrapper > a {
        top: auto;
        transform: none;
        align-self: center;
        order: 1;
        width: 150px;
        margin: 0 auto 0 0;
        text-align: left;
        display: inline-block;
        position: relative
    }

    #socialmediasharing .socialmediarework {
        flex-basis: 100%;
        margin-top: 10px
    }

    #socialmediasharing .socialmediarework.shariff {

        margin-left: 0px;
    }


    .image-slider .owl-nav {
        height: 40px;
        top: 0
    }

    .ui-accordion-content .image-slider .owl-nav {
        bottom: 0
    }

    #beitragsseite header > div.contentheader {
        height: 330px
    }

    #schwerpunkt-wrapper article > div:last-of-type {
        padding: 40px 35px
    }

    .module-link:not(.externintern) > div > div:last-of-type {
        background-size: cover
    }

    #schwerpunkt-wrapper figure {
        justify-content: center;
        flex-wrap: wrap;
        max-height: unset
    }

    #schwerpunkt-wrapper article figcaption {
        max-width: 75%;
        padding: 15px 0 0
    }

    #schwerpunkt-wrapper article {
        width: 100%;
        margin: 0 0 20px;
        border-bottom: 1px solid #ccc;
        padding-bottom: 20px;
        flex-wrap: wrap;
        align-items: stretch
    }

    #schwerpunkt-wrapper article > div:first-of-type {
        background: no-repeat center center;
        background-size: cover;
        flex: 0 0 100%;
        width: 100%;
        min-height: 265px
    }

    header .contentheader img {
        margin: 70px 0 25px;
        height: 60px;
        width: auto
    }

    #schwerpunkt-wrapper img {
        width: 100%
    }

    #landingpage h1 {
        margin: 0 auto 35px
    }

    .landingpagelabel + .clear + .articleinfo {
        display: none
    }

    #landingpage h1 + .text-module {
        margin-top: 35px
    }

    #landingpage h1 + div.intro p {
        padding-bottom: 55px;
        padding-right: 0
    }

    #landingpage.wrapper > header + .overlays + .content-wrapper {
        margin: 0 auto;
        max-width: none;
        width: 100%
    }

    .landingpagelabel {
        top: 0px;
        left: -60px;
        transform: translateY(-50px) translateY(-50%);
    }

    #beitragsseite .category-headline {
        width: calc(100% + 120px);
        left: -60px
    }

    h1 + #paginationwrapper, h1 + .control-wrapper {
        margin-top: 30px
    }

    .navheader-shrink a#opensearch.active:after, .navheader-shrink a.themafinden.active:after {
        bottom: -5px
    }

    .searchresults-wrapper > article {
        padding: 0 0 30px 20px
    }

    .module-contactinformation > div {
        width: 50%
    }

    .module-contactinformation > div:last-of-type {
        margin-left: 35px;
        width: calc(50% - 35px)
    }

    header > div.navheader .overlayopener {
        font-size: 16px;
        display: flex;
        justify-content: flex-end;
        align-items: center
    }

    header > div.navheader a.themafinden {
        margin-right: 30px;
        width: 135px
    }

    header > div.navheader-shrink a.themafinden {
        width: 135px
    }

    div.navheader #opensearch {
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center
    }

    #mainnavigationwrapper {
        display: flex;
        justify-content: center;
        align-items: center;
        order: 3;
        height: 90px
    }

    header > div:not(.navheader-shrink) a#opensearch.active:after, header > div:not(.navheader-shrink) a.themafinden.active:after {
        bottom: -5px
    }

    #opensearch > span {
        transition: none;
        font-size: 16px;
        transform: none;
        margin-left: 0
    }

    #frontpage header > div.navheader > .content-wrapper > svg {
        display: block;
        opacity: 0
    }

    #frontpage header > div.navheader-shrink > .content-wrapper > svg {
        opacity: 1
    }

    #searchcontrols {
        margin-bottom: 0;
        flex-wrap: wrap
    }

    #searchcontrols > input {
        margin-right: 0;
        margin-bottom: 20px
    }

    #searchcontrols > select {
        font-family: RWESansPS;
        font-weight: normal;
        background: url(http://localhost/rwe-template/assets/img/selectdropdown.png) no-repeat right+20px center;
        appearance: none;
        -moz-appearance: none;
        -webkit-appearance: none;
        width: 19px;
        text-indent: .01px;
        text-overflow: ""
    }

    header > div.navheader > .content-wrapper > img {
        display: none;
        align-self: center;
        order: 1;
        width: 150px;
        margin-right: auto;
        text-align: left;
        display: inline-block
    }

    header > div.navheader > .content-wrapper > svg {
        display: none;
        align-self: center;
        order: 1;
        width: 150px;
        margin-right: auto;
        text-align: left;
        display: inline-block
    }

    .module-link > div {
        align-items: center
    }

    .module-link:not(.externintern) > div {
        align-items: stretch
    }

    .module-link:not(.externintern) > div > div {
        width: 100%
    }

    .recentnews > article {
        flex: 0 0 auto;
        width: calc(100% / 1)
    }

    .module-link > div div > span {
        font-size: 20px
    }

    .recommendations > h2 {
        font-size: 20px
    }

    .module-link > div > div:last-of-type img {
        height: 100%;
        width: 100%;
        display: block
    }

    .confirmation {
        flex-wrap: wrap
    }

    .confirmation > div:last-of-type {
        width: 100%;
        margin-top: 20px
    }

    .confirmation > div > input[type=submit] {
        width: 100%
    }

    .overlayopener {
        line-height: 90px;
        order: 2
    }

    .navheader-shrink .overlayopener {
        line-height: 60px
    }

    #frontpage header > div.navheader > .content-wrapper > a {
        opacity: 0
    }

    #frontpage header > div.navheader-shrink > .content-wrapper > a {
        opacity: 1
    }

    #opensearch {
        font-size: 0;
        border-left: 1px solid #01365a;
        border-right: 1px solid #01365a;
        width: 75px;
        height: 90px
    }

    header > div.navheader .language {
        margin: 5px 20px 5px 5px;
        font-size: 14px
    }

    header > div.navheader > .content-wrapper {
        align-items: center
    }

    #themafinden > .content-wrapper {
        flex-wrap: wrap
    }

    #themafinden .left-col, #themafinden .right-col {
        width: 100%
    }

    a#opensearch.active:after, a.themafinden.active:after {
        bottom: -6px
    }

    a#simple-menu {
        padding-left: 30px;
        display: flex;
        height: 100%;
        border-left: 1px solid #01365a;
        align-items: center
    }

    .navheader-shrink #mainnavigationwrapper {
        height: 60px
    }

    body.sidr-animating #mainnavigationwrapper, body.sidr-open #mainnavigationwrapper {
        transform: none
    }

    #selectionpicker {
        padding: 0
    }

    header > div.contentheader {
        height: 550px
    }

    .recentnews > article:first-of-type ~ article figure {
        display: flex;
        width: 100%;
        align-items: flex-start
    }

    .recentnews > article:first-of-type ~ article figure > figcaption {
        align-self: stretch;
        width: 60% !important
    }

    .recentnews > article:first-of-type ~ article figure > * {
        width: 40%;
        height: 100%
    }

    .recentnews > article:first-of-type > figure img {
        height: auto
    }

    .recentnews > article:first-of-type figcaption {
        width: 100%;
        position: relative !important;
        left: 0
    }

    .recentnews > article:first-of-type figcaption h2 > a {
        height: auto;
        max-height: unset
    }

    .recentnews > article figcaption {
        padding: 15px;
        position: relative
    }

    .mostread-flex > article:nth-of-type(2) ~ article {
        display: none
    }

    .module-mostread .mostread-flex > article:nth-of-type(2) ~ article {
        display: block;
        animation-name: showup;
        animation-duration: 2s;
        animation-fill-mode: forwards
    }

    .mostread-flex > article:nth-of-type(2) {
        margin-right: 0
    }

    .mostread-flex > article {
        width: calc(100% * 1 / 2 - 15px)
    }

    .content-wrapper.viewssection {
        width: 100%;
        max-width: 100%
    }

    .slider-wrapper > img {
        left: 60px
    }

    .content-wrapper.footer-info {
        width: 100%;
        max-width: 100%;
        padding: 0 60px
    }

    .colwrapper .left-col {
        width: calc(100% - 120px);
        padding: 0;
        margin: auto;
        float: none
    }

    #beitragsseite.wrapper > header + .content-wrapper {
        margin: 0 auto
    }

    #beitragsseite.wrapper > header + .overlays + .content-wrapper {
        margin: 0 auto
    }

    #beitragsseite .image-slider.fullwidth {
        margin: auto;
        width: calc(100% - 120px)
    }

    a.backtooverview {
        top: -60px;
        left: -60px
    }

    .articleinfo {
        justify-content: flex-start
    }

    .dateviews:first-of-type {
        margin-left: 0
    }

    .dateviews {
        padding-left: 0
    }

    #beitragsseite .content-headline, #beitragsseite h1 {
        margin-top: 40px
    }

    .test {
        width: 100%
    }

    .recentnews.morelinks > article:first-of-type ~ article figure {
        display: block
    }

    header .contentheader svg {
        width: 200px
    }

    #socialmediasharing {
        justify-content: flex-start
    }

    .recentnews > article:not(:first-of-type) figcaption > a {
        bottom: 10px;
        position: absolute
    }
}

@media screen and (max-width: 767px) {

    .newsletterbox-responsive-outer .icon-wrapper, .contactbox-responsive-outer .icon-wrapper {
        flex: 0 0 35px;
        width: 35px;
        color: #fff;
        height: 35px;
    }


    .module-mostread .mostread .mostread-flex, .mostread h2 {
        display: flex !important
    }

    .footer-info {
        padding: 20px 0px !important;
        height:auto;
    }

    .module-subheadline {
        font-size: 20px
    }

    .bildunterschrift > div {
        flex-wrap: wrap
    }

    .bildunterschrift > div > a {
        margin: 10px 0 0;
        flex: 1 1 auto
    }

    .wpcf7-submit {
        flex: 0 0 100%;
        margin: 15px 0 0
    }

    .recommendations > article figcaption > a {
        position: relative;
        bottom: auto
    }

    .recentnews > article:not(:first-of-type) figcaption > a {
        position: relative;
        margin: 0;
        bottom: auto
    }

    .recentnews > article:first-of-type ~ article figure > figcaption {
        min-height: unset;
        height: auto;
        width: 100% !important
    }

    .recentnews > article figcaption h2 {
        margin: 15px 0
    }

    #frontpage .contentheader {
        background-position: center left
    }

    .module-faq .answer img {
        width: 16px
    }

    #socialmediasharing > div.likenow + div.printnow {
        margin-left: 0
    }

    .recommendations h2 > a {
        height: auto;
        max-height: unset;
        min-height: 50px;
        font-size: 20px;
    }

    .recommendations > article figcaption h2 {
        height: auto;
        max-height: unset
    }

    .recentnews > article figcaption h2 > a {
        height: auto;
        max-height: unset
    }

    #searchoverlay h2, #themafinden h2 {
        font-size: 30px;
        line-height:1em !important;
    }

    a#simple-menu {
        padding-left: 0;
        border-left: 0;
        margin-left: 0
    }

    #mainnavigationwrapper {
        height: 60px;
        line-height: 1em;
        font-size: 0;
        line-height: 60px
    }

    .language li {
        line-height: 1rem
    }

    .searchresults-wrapper > article > div {
        flex-direction: column;
        flex-wrap: wrap
    }

    header > div.navheader > .content-wrapper > a > svg {
        max-height: 20.5px
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer > img, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer > img {
        width: 50px
    }

    .btn-like-container > span {
        margin-right: 30px
    }

    .shariff .orientation-horizontal li .share_text {
        display: inline
    }

    .contentheader .popup-container {
        opacity: 1;
        display: block;
        top: 15px;
        right: 10px
    }

    .contentheader .popup-container .popup {
        width: 200px
    }

    .text-module p > a:after, .text-module > a:after {
        font-size: 10px
    }

    #contentseite.wrapper.nobackground .articleinfo, .wrapper.nobackground .articleinfo {
        margin-top: 0
    }

    #landingpage .recommendations > article:nth-of-type(2) {
        display: block
    }

    .recentnews > article:first-of-type.animated {
        animation-name: showup_responsive;
        animation-duration: 2s;
        animation-fill-mode: forwards
    }

    .module-mosaikrework > div:first-of-type {
        border-right: 7.5px solid #fff
    }

    .module-mosaikrework > div:last-of-type {
        border-left: 7.5px solid #fff
    }

    .module-contactinformation .ansprechpartnername {
        font-size: 18px
    }

    .text-module li:before {
        top: 6px
    }

    .timetable {
        margin-top: 30px;
        margin-bottom: 20px;
        text-align: left
    }

    .energiewrapper {
        flex-direction: column
    }

    .energiebox {
        flex: auto;
        margin-bottom: 15px;
        padding-bottom: 15px
    }

    .energiebox .percentage:before {
        top: -2px;
        bottom: auto;
        right: -40px;
        left: auto;
        width: 30px
    }

    .energiebox:after {
        bottom: 0;
        left: 5px
    }

    .energiebox, .energiebox .percentage {
        height: 40px !important
    }

    .energiebox .percentage {
        top: 0;
        left: 5px;
        height: 15px !important;
        width: 0;
        transition: width 2s
    }

    #braunkohle {
        border-bottom: 0;
        border-left: 5px solid #8d491d
    }

    #braunkohle .percentage.animated {
        width: calc(70% - 5px)
    }

    #steinkohle {
        border-bottom: 0;
        border-left: 5px solid #605c5c
    }

    #steinkohle .percentage.animated {
        width: calc(20% - 5px)
    }

    #kernenergie {
        border-bottom: 0;
        border-left: 5px solid #bf162b
    }

    #kernenergie .percentage.animated {
        width: calc(0% - 5px)
    }

    #windenergie {
        border-bottom: 0;
        border-left: 5px solid #219bde
    }

    #windenergie .percentage.animated {
        width: calc(30% - 5px)
    }

    #solarenergie {
        border-bottom: 0;
        border-left: 5px solid #dc661c
    }

    #solarenergie .percentage.animated {
        width: calc(3% - 5px)
    }

    #gasenergie {
        border-bottom: 0;
        border-left: 5px solid #eac411
    }

    #other {
        border-bottom: 0;
        border-left: 5px solid #1c9475
    }

    #gasenergie .percentage.animated {
        width: calc(7% - 5px)
    }

    .topicfocus-slider + .content-wrapper > .topicfocus {
        margin-top: 0
    }

    header > div#breadcrumb {
        flex-wrap: wrap;
        max-width: calc(100% - 60px);
        margin-left: auto;
        padding: 10px 0;
        height: auto
    }

   /* #beitragsseite.nobackground #breadcrumb > a {
        order: 2;
        width: 100%;
        margin-top: 20px
    }*/

    #schwerpunkt-wrapper {
        margin: 45px 0 0
    }

    .pagination {
        display: none
    }

    .pagination-responsive {
        display: flex;
        min-width: 200px;
    }

    .pagination-responsive > a {
        display: inline-block;
        width: 40px;
        color: #fff;
        height: 40px;
        background: #0c5089;
        vertical-align: top;
        text-align: center;
        flex: 0 0 40px
    }

    #paginationwrapper .pagination-responsive select {
        flex: 1 1 100%
    }

    .pagination-responsive > a:hover {
        background: #1baf92
    }

    .pagination-responsive > a span {
        display: inline-block;
        top: 0;
        transform: translateY(12px)
    }

    .module-link > div div > span {
        line-height: 22px;
        font-size: 16px
    }


    .recommendations.recommendationsalternative span.teaser-subhead {
        line-height: 1.3em;
    }

    .module-link:not(.externintern) > div > div:first-of-type {
        padding: 20px 35px 15px 0px;
    }

    .image-slider .owl-nav {
        top: 0;
        width: 100%;
        padding: 10px 30px
    }

    .viewssection .image-slider .owl-nav {
        top: auto;
        bottom: -40px
    }

    .image-slider .owl-dots {
        bottom: -40px;
        right: 0
    }

    .viewssection .image-slider .owl-dots {
        bottom:-75px;
    }

    .topicfocus-slider article figcaption p {
        display: none;
        font-size: 14px;
        margin-top: 15px
    }

    #schwerpunkt-wrapper article figcaption p {
        font-size: 16px
    }

    #schwerpunkt-wrapper article figcaption h2 {
        font-size: 28px
    }

    #schwerpunkt-wrapper article figcaption {
        width: 100%;
        max-width: 100%;
        top: 25px;
        left: 25px
    }

    .topicfocus {
        margin-bottom: 15px;
        margin-top: 30px;
        margin-top: 45px
    }

    .topicfocus h2 {
        margin: 0;
        font-size: 18px
    }



    .landingpagelabel {
        line-height:1.5em;
        left:-30px;
    }

    #landingpage h1 {
        font-size: 24px
    }

    #landingpage header > div.contentheader {
        height: 180px
    }

    #beitragsseite .category-headline h1 + span {
        font: 700 16px RWESansPS;
        color: #fff;
        margin-top: 15px;
        display: inline-block;
        padding-right: 75px
    }

    #beitragsseite .category-headline {
        width: calc(100% + 60px);
        left: -30px;
        padding: 25px 30px
    }

    ul li.social {
        float: right
    }

    .footer-info nav ul li.social:nth-of-type(2n) {
        margin-left: 10px
    }

    h1 + #paginationwrapper, h1 + .control-wrapper {
        margin-top: 40px
    }

    #schwerpunkte h1, #search h1, #uebersicht h1 {
        font-size: 30px
    }

    #schwerpunkt-wrapper article > a {
        right: 25px;
        bottom: 25px
    }

    #schwerpunkt-wrapper article figcaption h1 {
        font-size: 22px
    }

    .mostsearched .label {
        padding: 10px;
        font-size: 14px
    }

    .searchresults-wrapper > article > header {
        margin-bottom: 15px
    }

    .searchresults-wrapper > article {
        padding: 0 15px 30px
    }

    .searchresults-wrapper > article > div > h2 {
        max-width: 100%
    }

    .searchresults-wrapper .weiterlesen {
        margin-top: 15px
    }

    .module-link > div {
        padding-left: 20px
    }

    .module-accordion > span.collapsible.quellenangabe {
        padding-left: 0
    }

    .module-contactform {
        padding: 75px 20px 35px
    }

    .module-link.externintern > div {
        padding-left: 20px
    }

    form > div {
        flex-wrap: wrap
    }

    form label {
        width: 100%
    }

    form div > input, form div > select, form div > textarea {
        width: 100%
    }

    .module-accordion > span.collapsible + div {
        padding: 20px
    }

    .module-mosaik.zweidrittel img:first-of-type {
        width: calc(100% * 2 / 3 - 7.5px);
        margin-right: 15px
    }

    .module-mosaik.zweidrittel img:last-of-type {
        width: calc(100% * 1 / 3 - 7.5px)
    }

    .module-mosaik.eindrittel img:first-of-type {
        width: calc(100% * 1 / 3 - 7.5px);
        margin-right: 15px
    }

    .module-mosaik.eindrittel img:last-of-type {
        width: calc(100% * 2 / 3 - 7.5px)
    }

    #videotitle {
        padding: 0 20px;
        bottom: 49px;
        height: 60px
    }

    .module-contactinformation {
        flex-wrap: wrap;
        height: auto;
        padding: 20px
    }

    .module-contactinformation > div {
        width: 100%
    }

    .module-contactinformation > div:last-of-type {
        width: 100%;
        margin: 15px auto 0
    }

    .module-accordion > span.collapsible {
        font-size: 16px
    }

    .module-link > div a {
        font-size: 16px
    }

    .recommendations > h2 {
        font-size: 18px
    }

    #videotitle span {
        font-size: 16px
    }

    #contentseite .text-module ul li, #contentseite p, .text-module p, .text-module ul li {
        font-size: 14px
    }

    .module-faq .answer > strong, .module-faq .question, .module-faq .question p {
        font-size: 14px !important
    }

    #contentseite div.intro p {
        font-size: 16px
    }

    .recommendations > article {
        flex: 0 0 auto;
        width: calc(100%);
        margin-bottom: 30px
    }

    .recommendations > article:nth-of-type(2) {
        display: none
    }

    .recommendations > article figcaption {
        padding: 20px 15px;
        display: flex;
        flex-wrap: wrap
    }

    .recommendations > article figcaption span.date, .recommendations > article figcaption span.likes {
        width: 50%
    }

    .recommendations span.contentheadline {
        overflow: visible;
        height: auto;
        max-height: unset;
        font-size: 18px
    }

    .contactbox-responsive-wrapper, .newsletterbox-responsive-wrapper {
        top: 230px;
        height: 0
    }

    .newsletterbox-responsive-wrapper {
        top: 275px
    }

    .overlayopener {
        min-width: unset;
        line-height: 1em;
        margin-right: 10px;
        line-height: 60px
    }

    header > div.navheader > .content-wrapper > svg {
        transform: translateY(-3px)
    }

    #socialmediasharing {
        padding: 10px 0
    }

    #socialmediasharing > div {
        margin: 5px 0;
        margin-right:5px;
    }

    .contentinformation > div:last-of-type a {
        font-size: 14px
    }

    .contentinformation .categories {
        font-size: 14px
    }

    #sidr.sidr {
        width: 100%;
        transform: translateY(0) !important;
        right: -100vw;
        top: 60px
    }

    #frontpage > section {
        margin-top: -79px
    }

    .recentnews > article {
        width: 100%;
        flex: 0 0 auto;
        margin: auto auto 25px;
        padding: 0
    }

    header > div.navheader + * {
        padding-top: 60px !important
    }

    header > div.navheader > .content-wrapper {
        justify-content: flex-start
    }

    header > div.navheader a.themafinden {
        font-size: 0;
        width: auto;
        display: flex;
        align-items: center;
        margin-right: 15px
    }

    header > div.navheader a.themafinden > span {
        font-size: 14px;
        transform: translateY(2px)
    }


    header > div.navheader-shrink > .content-wrapper * {
        font-size:14px;
    }

    .navheader-shrink #mainnavigationwrapper a#simple-menu {
        font-size:0px !Important;
    }

    .navheader-shrink a.themafinden > span {
        transform: translateY(1px)
    }

    #opensearch > span {
        font-size: 16px;
        transform: none;
        margin-left: 0
    }

    header > div:not(.navheader-shrink) #opensearch > span {
        margin-left: 0;
        font-size: 16px
    }

    header > div.navheader a.themafinden > span:before {
        content: "\6c" !important
    }

    header > div.navheader a.themafinden:after {
        content: none
    }

    div.navheader #opensearch {
        width: auto;
        border: none
    }

    #opensearch {
        height: 60px
    }

    header > div.navheader {
        height: 60px
    }

    header .contentheader img {
        margin: 30px 0 20px;
        width: 250px
    }

    header .contentheader svg {
        margin: 30px 0 20px;
        width: 250px
    }

    header h1, span.subheading {
        font-size: 16px
    }

    header h1 {
        margin-left: 0
    }

    header > div.contentheader {
        height: 230px;
        background-size: cover;
        background-position: center center
    }

    .wrapper > header + .content-wrapper {
        margin: auto;
        width: 100%;
        max-width: 100%
    }

    .wrapper > header + .overlays + .content-wrapper {
        margin: auto;
        width: 100%;
        max-width: 100%
    }

    #contentseite.wrapper > header + .overlays + .content-wrapper {
        width: calc(100% - 60px)
    }

    #contentseite .subheading, #contentseite h1, #contentseite h1 + span.subheading {
        font-size: 24px;
        line-height: 26px
    }

    #contentseite h1 + span.subheading {
        display: block;
        margin-top: 0;
        margin-bottom: 20px;
        line-height: 26px
    }

    #contentseite section {
        padding: 0
    }

    .recentnews {
        margin: 0;
        background: #fff
    }

    .text-module h2 {
        font-size: 22px
    }

    .text-module h3 {
        font-size: 20px
    }

    .text-module h4 {
        font-size: 18px
    }

    .text-module h5 {
        font-size: 16px
    }

    .recentnews > h2 {
        flex: none;
        padding-left: 15px;
        display: inline-block;
        width: calc(100% - 60px);
        margin: auto auto 30px;
        background: #fff;
        color: #1d4477;
        font-size: 16px;
        padding-top: 10px;
        width: 100%
    }

    .recentnews > article:first-of-type figcaption {
        position: relative !important;
        bottom: auto;
        right: auto;
        width: calc(100% - 60px);
        margin: -40px auto 0;
        background: #e8e8e4
    }

    .recentnews > article figcaption a {
        position: relative;
        bottom: auto
    }

    .recentnews > article figcaption span.date, .recentnews > article figcaption span.likes {
        font-size: 12px
    }

    .recentnews > article:first-of-type ~ article figure {
        display: block
    }

    .recentnews > article:first-of-type ~ article figure > * {
        width: 100% !important
    }

    .recentnews > article:first-of-type {
        flex: 0 0 auto;
        width: calc(100% + 60px);
        transform: translateX(30px) !important
    }

    .recentnews .showall, .topicfocus .showall {
        width: calc(100% - 60px);
        margin: 0 auto auto;
        width: 100%;
        padding-left: 20px
    }

    .topicfocus-slider article figcaption {
        width: 100%;
        word-break: break-all;
        max-width: 90%;
        left: 25px;
        top: 25px
    }

    .topicfocus .showall {
        display: none
    }

    .recentnews > article figcaption a > span {
        font-size: 14px
    }

    .content-wrapper {
        max-width: calc(100% - 60px);
        width: 100%
    }

    .topicfocus-slider .owl-stage {
        margin-left: 30px;
        margin-left: 0 !important
    }

    footer #eviews {
        flex-wrap: wrap
    }

    .footer-flex {
        padding-top: 40px
    }

    footer #eviews > img {
        margin-bottom: 25px
    }

    footer #eviews > svg {
        margin-bottom: 25px
    }

    .scrolltop {
        height: 40px;
        width: 40px;
        line-height: 40px;
        position: absolute;
        right: 0;
        top: -20px
    }

    .content-wrapper.footer-info {
        flex-wrap: wrap;
        height: 100%;
        padding: 15px 30px
    }

    .footer-info nav ul li a {
        font-size: 14px
    }

    .footer-info nav ul li {
        margin-right: 3px
    }

    .footer-info nav ul li:last-of-type {
        margin-right: 0
    }

    .footer-info nav ul li a > span {
        font-size: 20px
    }

    .footernavigation {
        padding-bottom: 15px;
        border-bottom: 1px solid #fff;
        width: 100%
    }

    #copyright {
        padding-top: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%
    }

    #copyright p {
        font-size: 14px;
        margin: 0;
        padding: 0
    }

    #copyright p:after {
        content: none
    }

    .slider-wrapper > .slider-header {
        width: auto;
        top: -15px;
        left: 30px
    }

    .slider-wrapper > .slider-header img {
        width: 125px
    }

    .slider-header > span {
        font-size: 16px
    }

    .footernavigation ul {
        width: 100%
    }

    .topicfocus-slider {
        margin-bottom: 30px
    }

    .topicfocus-slider article figcaption h1 {
        font-size: 30px
    }

    .topicfocus-slider article figcaption h3 {
        font-size: 30px
    }

    .topicfocus-slider article > a {
        right: 25px;
        bottom: 25px;
    }

    .colwrapper .left-col {
        width: calc(100% - 60px)
    }

    #beitragsseite header > div.contentheader {
        height: 230px;
        background-position: center center
    }

    a.backtooverview {
        display: none
    }

    #beitragsseite .subheading, #beitragsseite h1, #veranstaltungen-detail h1, .content-headline {
        font-size: 24px;
        line-height: 26px
    }

    .contentinformation > div {
        padding: 15px 0
    }

    .contentinformation > div:last-of-type {
        flex-wrap: wrap;
        font-size: 14px
    }

    .timelikes:first-of-type {
        margin-left: 0
    }

    .timelikes:before {
        font-size: 16px
    }

    .left-col div.intro p {
        font-size: 16px;
        line-height: 22px
    }

    .left-col > p {
        font-size: 14px;
        line-height: 20px
    }

    p.quotation {
        font-size: 18px !important
    }

    #beitragsseite .image-slider.fullwidth {
        width: calc(100%)
    }

    #beitragsseite .recentnews.morelinks > article:first-of-type {
        width: calc(100%);
        background: #ebedee
    }

    #beitragsseite .recentnews.morelinks > article:first-of-type figcaption {
        background: #ebedee
    }

    #beitragsseite .recentnews.morelinks > article:not(:first-of-type) {
        display: none
    }

    .module-downloads {
        font-size: 18px;
        display: flex;
        justify-content: flex-start;
        line-height: normal;
        padding-right: 25px;
        align-items: center
    }

    .module-downloads > span:first-of-type {
        font-size: 40px;
        margin-right: 35px;
        flex: 0 0 auto;
        line-height: 90px
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer {
        height: 35px
    }

    .contactbox-responsive-wrapper .icon-wrapper > span  , .newsletterbox-responsive-wrapper .icon-wrapper > span {
        font-size:20px;
    }

    .contactbox-responsive-outer, .newsletterbox-responsive-outer {
        width:35px;
    }


    .contactbox-responsive-wrapper.slide > .contactbox-responsive-outer > .icon-wrapper > span, .newsletterbox-responsive-wrapper.slide > .newsletterbox-responsive-outer > .icon-wrapper > span {
        font-size:26px;
    }

    .contactbox-responsive-wrapper > .contactbox-responsive-outer > span, .newsletterbox-responsive-wrapper > .newsletterbox-responsive-outer > span {
        display: none
    }

    .mostread {
        margin-bottom: 80px
    }





    a.mostread-responsive > span {
        vertical-align: middle
    }

    .mostread .mostread-flex, .mostread h2 {
        display: none !important
    }

    #frontpage .topicfocus-slider article {
        width: calc(100% - 60px) !important;
        margin: auto
    }

    .topicfocus-slider article img {
        width: 100% !important
    }

    .topicfocus-slider .owl-stage-outer {
        margin-bottom: 25px
    }

    a#opensearch.active:after {
        content: none
    }

    #eventfilterform > div {
        flex-wrap:wrap;
    }

    #events .flex-row > div.category {
        order:2;
    }

    header > div.navheader #opensearch > span {
        font-size: 14px;
        margin-right:5px;
    }

    .owl-carousel + .content-wrapper {
        display:none;
    }

    .sidr ul li a, .sidr ul li span {
        font-size: 16px
    }

    .sidr ul li ul li a, .sidr ul li ul li span {
        font-size: 14px
    }

    header .contentheader img, header .contentheader svg {
        margin: 30px 0 -5px 0;
    }
}

@media screen and (max-width: 639px) {
    .module-mostread .mostread .mostread-flex {
        flex-wrap: wrap
    }

    .module-mostread .mostread .mostread-flex > article {
        width: 100%;
        margin-bottom: 20px
    }

    .articleinfo + div.categories-wrapper {
        margin-top: 25px;
        display: flex;
        flex-wrap: wrap
    }

    .categories-wrapper .lesetipp {
        display: block;
        order: 2;
        width: 100% !important;
        margin-top: 10px
    }

    .shariff .orientation-horizontal.button-style-standard.shariff-col-5 li:nth-of-type(2n), .shariff .orientation-horizontal.button-style-standard.shariff-col-6 li:nth-of-type(2n) {
        margin-right: 0
    }

    .shariff .orientation-horizontal.button-style-standard.shariff-col-5 li, .shariff .orientation-horizontal.button-style-standard.shariff-col-6 li {
        -webkit-box-flex: 0;
        -ms-flex: none;
        flex: none;
        width: 49%
    }

    .shariff .orientation-horizontal {
        flex-wrap: wrap
    }

    #socialmediasharing .socialmediarework.shariff {
        margin-right: 0
    }

    .popup-container {
        left: auto;
        right: 10px;
        top: 15px;
        cursor: pointer
    }

    .popup-container.onhover {
        opacity: 1
    }

    .popup-container:hover .popup {
        display: none
    }

    #uebersicht-wrapper {
        margin: auto
    }

    .recommendationsalternative > h2 > br {
        display: inline-block
    }

    .uebersicht-article .weiterlesen {
        position: relative
    }

    .articlecounter + #paginationwrapper {
        margin-top: 20px
    }

    #videotitle {
        display: none
    }

    #schwerpunkt-wrapper article > div:last-of-type {
        padding: 20px 15px
    }

    #uebersicht .module-accordion {
        margin: 50px 0 0
    }

    #paginationwrapper, #paginationwrapper select, .pagination-responsive {
        width: 100%;
        flex: 0 0 100%
    }

    .module-downloads > span:first-of-type {
        display: inline-block;
        height: auto;
        width: 50px;
        text-align: center;
        background: #3ed8c3;
        color: #fff;
        font-size: 32px;
        vertical-align: top;
        padding-top: 7px;
        margin-right: 25px;
        line-height: normal;
        position: relative;
        align-self: stretch
    }

    .module-downloads span.icon-doc-empty:before {
        position: absolute;
        left: 0;
        right: 0;
        margin: auto;
        top: 50%;
        transform: translateY(-50%)
    }

    .module-downloads {
        height: auto;
        min-height: 60px
    }

    .module-accordion span.quellenangabe {
        min-height: 60px
    }

    #schwerpunkt-wrapper article .info-wrapper {
        flex-wrap: wrap
    }

    .articlecounter {
        width: auto;
        flex: 0 0 235px
    }

    #schwerpunkt-wrapper .articlecounter {
        width: auto;
        flex: 0 0 100%;
        margin:10px 0;
    }

    .pagination ul li {
        font-size: 12px
    }

    .pagination ul li a {
        padding: 5px 7px
    }

    .uebersicht-article {
        min-height: unset
    }

    .uebersicht-article > figure figcaption h2 {
        margin: 15px 0
    }

    #uebersicht-wrapper .uebersicht-article figure {
        flex-wrap: wrap;
        border-bottom: 1px solid #ccc;
        border-top: 0;
        padding-bottom: 30px
    }

    #uebersicht-wrapper .uebersicht-article figure > * {
        max-width: 100%
    }

    #uebersicht-wrapper .uebersicht-article figure > img {
        order: 1;
        margin-bottom: 20px
    }

    #uebersicht-wrapper .uebersicht-article figure > figcaption {
        order: 2;
        padding-top: 0
    }

    #uebersicht .control-wrapper {
        flex-wrap: wrap;
        width: 100%
    }

    #uebersicht .control-wrapper > * {
        width: 100%;
        margin: 10px 0
    }

    #uebersicht .control-wrapper > div:first-of-type > * {
        width: 100%
    }

    #searchoverlay button {
        width: 20%;
        font-size: 0;
        text-align: center
    }

    #searchoverlay button > span {
        margin-left: 0;
        font-size: 24px;
        margin-top: 0
    }

    .closeoverlay {
        font-size: 0;
        right: 30px;
        top: 95px
    }

    #searchoverlay form {
        justify-content: flex-start;
        margin: 20px 0 45px
    }

    #searchoverlay input {
        width: 100%
    }

    #searchcontrols > div, #searchcontrols > select {
        flex: 1 1 auto;
        background: #fff;
        margin: 5px 0
    }

    .module-accordion > span.collapsible.contactform {
        line-height: 1em
    }

    .module-accordion .collapsible > span:not(.spanline) {
        margin-right: 25px;
        positioN: relative;
        text-align: center;
        width: 50px;
        background: #3ed8c3;
        height: auto;
        flex: 0 0 50px;
        display: inline-block;
        align-self: stretch;
        color: #fff;
        font-size: 32px
    }

    .module-link:not(.externintern) > div {
        margin-left: 0;
        padding-left: 0;
        flex-wrap: wrap
    }

    .module-link:not(.externintern) > div > div {
        width: 100%;
        margin: 0
    }

    .module-link:not(.externintern) > div > div:last-of-type {
        order: 1;
        min-height: 230px
    }

    .module-link:not(.externintern) > div > div:first-of-type {
        order: 2;
        padding-left: 20px
    }

    header > div.navheader .themafinden {
        display: none
    }
}

@media screen and (max-width: 479px) {
    .clearnone {
        display: block
    }

    .cc-window .content-wrapper {
        flex-wrap: wrap
    }

    .cc-compliance {
        width: 100%;
        margin-top: 10px
    }

    .module-accordion #selectionpicker {
        padding: 25px
    }

    .topicfocus-slider article figcaption h1 {
        font-size: 26px;
        margin-right: 15px
    }

    .topicfocus-slider article figcaption h3 {
        font-size: 26px;
        margin-right: 15px
    }

    #searchcontrols > #paginationwrapper, #searchcontrols > select {
        margin: 5px 0;
        flex: 1 1 100%
    }

    #searchcontrols > #paginationwrapper {
        margin-bottom: -20px
    }
}

@media screen and (max-width: 420px) {
    footer #eviews > img, footer #eviews > svg, header .contentheader img, header .contentheader svg {
        width: 250px;
        width: 190px
    }

    header h1, span.subheading {
        font-size: 14px
    }

    #energiewetter > span {
        font-size: 40px
    }
}

@media screen and (max-width: 399px) {
    .module-contactinformation .ansprechpartnername {
        margin-top: 10px
    }

    .module-accordion > span.collapsible, .module-contactform form > span, .module-contactform span.formheadline, .module-contactinformation .ansprechpartnername, .module-downloads, .module-link > div div > span {
        font-size: 16px
    }

    .module-contactinformation > div {
        flex-wrap: wrap
    }
}

@media print {
    .ui-accordion-content {
        display: block !important
    }

    .module-accordion > span.ui-state-default {
        background: #dfdfdf !important;
        display: none !important
    }

    .owl-stage {
        transform: translate3d(0, 0, 0) !important;
        width: 100% !important
    }

    .owl-item {
        display: block !important;
        opacity: 1 !important
    }

    .owl-item.cloned {
        display: none !important
    }

    .owl-stage-outer {
        height: auto !important;
        overflow: visible !important
    }

    .popup {
        visibility: visible !important;
        opacity: 1 !important
    }

    #contentseite section {
        padding: 0 0 !important
    }

    .printstyle {
        display: block;
        text-align: center;
        padding: 15px
    }

    .printstyle svg {
        width: 250px;
        color: #000 !important
    }

    svg g path {
        fill: #000 !important
    }

    .contentinformation > div:last-of-type {
        display: none
    }

    .dateviews.icon-view {
        display: none
    }

    .content-wrapper img {
        width: 50%;
        width: 50% !important;
        margin: 10px 0
    }

    .recommendations + div {
        display: none
    }

    .recommendations.recommendationsalternative + div {
        display: none
    }
}

.awesomplete input {
    flex: 1 1 auto;
    width: calc(100% - 15px);
    border: 1px solid #ccc;
    padding-left: 15px;
    background: no-repeat center right+25px
}

.searchresults-wrapper span.maintopic + article {
    margin-top: 40px
}

.searchresults-wrapper a.entirebox {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
    flex: auto
}

.searchresults-wrapper > article:hover span.date {
    transition: background .3s;
    background: #00a19f;
}

.searchresults-wrapper a.entirebox:hover ~ a {
    transform: translateX(5px) translateY(2px);
}

.searchresults-wrapper > article > a {
    color: #00a19f;
    font-size: 16px;
    display: inline-flex;
    text-decoration: none;
    transform: translateY(2px);
    transition: transform .3s ease;
    height: auto;
    min-height: unset;
    margin: 0 15px;
    flex: 0 0 auto;
    align-self: flex-end;
    align-items: center;
    font-weight: 500;
}

.searchresults-wrapper .categories {
    color: #3ed8c3;
    font: 700 16px RWESansPS;
    text-decoration: none;
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
    flex: 0 0 100%
}

.searchresults-wrapper .teaser-subhead {
    max-width: 75%;
    font-size: 16px
}

.ui-accordion .ui-accordion-content {
    padding: 1em 2.2em;
    border-top: 0;
    overflow: auto;
}

.ui-widget-content {
    border: 1px solid #ddd;
    background: #fff;
    color: #333;
}

.ui-corner-all, .ui-corner-bottom, .ui-corner-br, .ui-corner-right {
    border-bottom-right-radius: 3px;
}

.searchresults-wrapper span.date {
    display: inline-block;
    font: 500 12px/1.5em RWESansPS;
    color: #fff;
    background: #3ed8c3;
    width: auto;
    padding: 2px 5px;
    margin-right: 10px;
    flex: 0 0 75px;
    margin-top: 3px;
    border-radius: 5px;
    align-self: flex-start;
}

.maintopic-opener {
    font-size: 16px;
    color: #1d4678;
    flex: 0 0 auto;
    font-weight: 500;
    margin-right: 10px
}

a.maintopic {
    padding: 10px;
    color: #fff;
    background: #3ed8c3;
    border-radius: 5px;
    font: 500 16px RWESansPS;
    margin: 3px 1.5px;
    cursor: pointer;
    transition: all .3s;
    display:inline-flex;
}

span.maintopic:hover {
    background: #1baf92
}

span.maintopic > * {
    display: inline-block;
    color: #fff !important;
    font-size: 16px
}

.maintopic a {
    color: inherit
}

@media screen and (max-width: 991px) {
    .searchresults-wrapper .teaser-subhead, .searchresults-wrapper > article > div > h2 {
        max-width: 100%
    }

    .maintopic-opener {
        font-size: 16px;
        color: #555;
        margin: 30px 0 10px;
        display: block
    }
}

@media screen and (max-width: 480px) {

    #searchoverlay input {
        font-size:12px;
       border-radius:7px;
    }

    #searchoverlay button {
        width: auto;
        font-size: 0;
        position: absolute;
        right: 0px;
    }

    #searchoverlay input::placeholder {
        font-size:12px;
    }

    #searchoverlay input:-ms-input-placeholder {
        font-size:12px;
    }

    #searchoverlay input::-ms-input-placeholder {
        font-size:12px;
    }

    span.maintopic {
        padding: 10px 5px;
        margin: 5px 2.5px
    }

    span.maintopic > * {
        font-size: 14px
    }
}

form #searchcontrols {
    margin-bottom: 40px
}

.searchresults-wrapper > article > a > span {
    vertical-align: middle;
    font-size: 13px;
    display: inline-block;
    line-height: 1em;
    height: 1em;
    margin-left: 5px;
}

.maintopic-wrapper {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px
}

#searchcontrols .awesomplete {
    margin-left: 0;
    flex: 1 1 auto
}

.maintopic-item-wrapper {
    margin-top: -13.5px
}

.searchcounter {
    display: block;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
    font-size: 16px;
    color: #555
}

@media screen and (max-width: 1023px) {
    .searchresults-wrapper > article > div > h2 {
        padding-right: 25%
    }

    .maintopic-wrapper {
        flex-wrap: wrap
    }

    .maintopic-item-wrapper {
        margin: 0 -5px
    }

    .searchresults-wrapper > article {
        flex-wrap: wrap
    }

    .searchresults-wrapper .categories {
        font-size: 14px;
        flex: 1 1 auto
    }

    .searchresults-wrapper > article > div {
        margin-top: 10px;
        fleX: 1 1 100%
    }

    span.teaser-subhead {
        margin: 10px 0
    }
}

@media screen and (max-width: 480px) {
    form #searchcontrols {
        margin: 15px 0 0
    }

    .searchresults-wrapper > article > div > h2 {
        padding-right: 0
    }
}

#searchcontrols #paginationwrapper {
    flex: 0 0 auto
}

.awesomplete li mark {
    color: #3ed8c3 !important;
    font-style: normal !important
}


.awesomplete>ul {
    position: absolute;
    left: 0;
    z-index: 999;
    margin: 0;
    border-radius: 5px;
    padding: 0;
    list-style: none;
    min-width: 235px;
    background: #fff;
    border-left: #e0e0e0 1px solid;
    border-bottom: #e0e0e0 1px solid;
    border-right: #e0e0e0 1px solid;
    bottom: -5px;
    transform: translateY(100%);
}

.awesomplete mark {
    background: 0 0;
    font-weight: 700
}

.awesomplete li:hover {
    cursor: pointer;
    background: #f8f8f8
}

.awesomplete li {
    color: #333 !important;
    font-size: 16px !important;
    padding: 10px 15px 15px !important;
    display: block;
    text-align: left;
    padding: .5rem 2rem
}

#searchoverlay .awesomplete {
    /*    width: calc(100% - 230px);*/
    flex: 1 1 auto;
    height: 60px;
    margin: 0
}

@media screen and (max-width: 991px) {
    #searchoverlay .awesomplete {
        flex: 1 1 auto
    }

    #searchoverlay button > span {
        margin-left: 0
    }

    #searchoverlay button {
        width: auto;
        font-size: 0
    }
}

#onshore .percentage.animated {
    background: #a1daf8 !important
}

#onshore {
    border-bottom: 5px solid #a1daf8
}

#offshore .percentage.animated {
    background: #d4edfc
}

#offshore {
    border-bottom: 5px solid #d4edfc
}

#biomasse .percentage.animated {
    background: #005e65 !important
}

#biomasse {
    border-bottom: 5px solid #005e65
}

#wasserkraft .percentage.animated {
    background: #00b1eb !important
}

#wasserkraft {
    border-bottom: 5px solid #00b1eb
}

@media screen and (max-width: 1279px) {
    #energiewetter .energiebox {
        border-bottom: none
    }

    .energiebox:after {
        bottom: auto;
        top: auto;
        transform: none;
        left: 5px
    }

    #solarenergie {
        border-bottom: none;
        border-left: 5px solid #7fa2a8
    }

    #onshore {
        border-bottom: none;
        border-left: 5px solid #a1daf8
    }

    #offshore {
        border-bottom: none;
        border-left: 5px solid #d4edfc
    }

    #biomasse {
        border-bottom: none;
        border-left: 5px solid #005e65
    }

    #braunkohle {
        border-bottom: none;
        border-left: 5px solid #adafb1
    }



    #gas {
        border-bottom: none;
        border-left: 5px solid #ffcc00;
    }

    #wasserkraft {
        border-bottom: none;
        border-left: 5px solid #00b1eb
    }
}

video {
    object-fit: cover
}


@font-face {
    font-family: 'RWESansPS';
    font-style: normal;
    font-weight: 400;
    src: url("../fonts/RWESansPS-Regular.otf") format("opentype");
    src: url('../fonts/RWESansWeb-Regular.woff') format('woff')
}

@font-face {
    font-family: 'RWESansPS';
    font-style: italic;
    font-weight: 400;
    src: url("../fonts/RWESansPS-Italic.otf") format("opentype");
    src: url('../fonts/RWESansWeb-Italic.woff') format('woff')
}

@font-face {
    font-family: 'RWESansPS';
    font-style: normal;
    font-weight: 200;
    src: url("../fonts/RWESansPS-Light.otf") format("opentype");
    src: url('../fonts/RWESansWeb-Light.woff') format('woff')
}

@font-face {
    font-family: 'RWESansPS';
    font-style: italic;
    font-weight: 200;
    src: url("../fonts/RWESansPS-LightItalic.otf") format("opentype");
    src: url('../fonts/RWESansWeb-LightItalic.woff') format('woff')
}

@font-face {
    font-family: 'RWESansPS';
    font-style: normal;
    font-weight: bold;
    src: url("../fonts/RWESansPS-Bold.otf") format("opentype");
    src: url('../fonts/RWESansWeb-Bold.woff') format('woff')
}

@font-face {
    font-family: 'RWESansPS';
    font-style: italic;
    font-weight: bold;
    src: url("../fonts/RWESansPS-BoldItalic.otf") format("opentype");
    src: url('../fonts/RWESansWeb-BoldItalic.woff') format('woff')
}

@font-face {
    font-family: 'RWESansPS';
    font-style: normal;
    font-weight: 500;
    src: url("../fonts/RWESansPS-Medium.otf") format("opentype");
    src: url('../fonts/RWESansWeb-Medium.woff') format('woff')
}

@font-face {
    font-family: 'RWESansPS';
    font-style: italic;
    font-weight: 500;
    src: url("../fonts/RWESansPS-MediumItalic.otf") format("opentype");
    src: url('../fonts/RWESansWeb-MediumItalic.woff') format('woff')
}