.dtq-animated-text-head {
    padding: 0 !important;
    margin: 0 !important;
}

.dtq-module .dtq-animated-text-head {
    font-size: 22px;
}
.dtq-animated-text-head {
    line-height: 1;
    padding-bottom: 0;
}

ul.dtq-animated-text-slide {
    transform: translateY(3px);
}

.dtq-animated-text .typed-cursor {
    opacity: 0;
    visibility: hidden;
    max-width: 1px;
    min-width: 1px;
}

.dtq-text-animation.dtq-animated-text-main {
    display: inline-block;
}

.dtq-animated-text-suffix span,
.dtq-animated-text-prefix span {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

.dtq-animated-text-slide li {
    display: none;
    list-style: none;
    line-height: 1;
}

.dtq-animated-text-slide li.text-in {
    display: block;
}

.dtq-text-animation {
    position: relative;
}

.dtq-text-animation:after {
    position: absolute;
    content: "";
    right: -8px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    animation: dtq-blink 0.7s infinite;
    display: none;
}

@keyframes dtq-blink {
    50% {
        opacity: 0;
    }
}

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

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

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

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

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

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

.flash {
    -webkit-animation-name: flash;
    -moz-animation-name: flash;
    -o-animation-name: flash;
    animation-name: flash;
}
@-webkit-keyframes shake {
    0%,
    100% {
        -webkit-transform: translateX(0);
    }
    10%,
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: translateX(-10px);
    }
    20%,
    40%,
    60%,
    80% {
        -webkit-transform: translateX(10px);
    }
}

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

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

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

.shake {
    -webkit-animation-name: shake;
    -moz-animation-name: shake;
    -o-animation-name: shake;
    animation-name: shake;
}
@-webkit-keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        -webkit-transform: translateY(0);
    }
    40% {
        -webkit-transform: translateY(-30px);
    }
    60% {
        -webkit-transform: translateY(-15px);
    }
}

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

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

.bounce {
    -webkit-animation-name: bounce;
    -moz-animation-name: bounce;
    -o-animation-name: bounce;
    animation-name: bounce;
}
@-webkit-keyframes tada {
    0% {
        -webkit-transform: scale(1);
    }
    10%,
    20% {
        -webkit-transform: scale(0.9) rotate(-3deg);
    }
    30%,
    50%,
    70%,
    90% {
        -webkit-transform: scale(1.1) rotate(3deg);
    }
    40%,
    60%,
    80% {
        -webkit-transform: scale(1.1) rotate(-3deg);
    }
    100% {
        -webkit-transform: scale(1) rotate(0);
    }
}

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

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

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

.tada {
    -webkit-animation-name: tada;
    -moz-animation-name: tada;
    -o-animation-name: tada;
    animation-name: tada;
}
@-webkit-keyframes swing {
    20%,
    40%,
    60%,
    80%,
    100% {
        -webkit-transform-origin: top center;
    }
    20% {
        -webkit-transform: rotate(15deg);
    }
    40% {
        -webkit-transform: rotate(-10deg);
    }
    60% {
        -webkit-transform: rotate(5deg);
    }
    80% {
        -webkit-transform: rotate(-5deg);
    }
    100% {
        -webkit-transform: rotate(0deg);
    }
}

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

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

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

.swing {
    -webkit-transform-origin: top center;
    -moz-transform-origin: top center;
    -o-transform-origin: top center;
    transform-origin: top center;
    -webkit-animation-name: swing;
    -moz-animation-name: swing;
    -o-animation-name: swing;
    animation-name: swing;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

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

.wobble {
    -webkit-animation-name: wobble;
    -moz-animation-name: wobble;
    -o-animation-name: wobble;
    animation-name: wobble;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

.flip {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flip;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flip;
    -o-backface-visibility: visible !important;
    -o-animation-name: flip;
    backface-visibility: visible !important;
    animation-name: flip;
}
@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateX(10deg);
    }

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

    40% {
        -moz-transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -moz-transform: perspective(400px) rotateX(10deg);
    }

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

    40% {
        -o-transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        -o-transform: perspective(400px) rotateX(10deg);
    }

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

    40% {
        transform: perspective(400px) rotateX(-10deg);
    }

    70% {
        transform: perspective(400px) rotateX(10deg);
    }

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

.flipInX {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipInX;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipInX;
    backface-visibility: visible !important;
    animation-name: flipInX;
}
@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

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

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

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

.flipOutX {
    -webkit-animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -moz-animation-name: flipOutX;
    -moz-backface-visibility: visible !important;
    -o-animation-name: flipOutX;
    -o-backface-visibility: visible !important;
    animation-name: flipOutX;
    backface-visibility: visible !important;
}
@-webkit-keyframes flipInY {
    0% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }

    40% {
        -webkit-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -webkit-transform: perspective(400px) rotateY(10deg);
    }

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

    40% {
        -moz-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -moz-transform: perspective(400px) rotateY(10deg);
    }

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

    40% {
        -o-transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        -o-transform: perspective(400px) rotateY(10deg);
    }

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

    40% {
        transform: perspective(400px) rotateY(-10deg);
    }

    70% {
        transform: perspective(400px) rotateY(10deg);
    }

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

.flipInY {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInY;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipInY;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipInY;
    backface-visibility: visible !important;
    animation-name: flipInY;
}
@-webkit-keyframes flipOutY {
    0% {
        -webkit-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -webkit-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@-moz-keyframes flipOutY {
    0% {
        -moz-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -moz-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@-o-keyframes flipOutY {
    0% {
        -o-transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        -o-transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}
@keyframes flipOutY {
    0% {
        transform: perspective(400px) rotateY(0deg);
        opacity: 1;
    }
    100% {
        transform: perspective(400px) rotateY(90deg);
        opacity: 0;
    }
}

.flipOutY {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipOutY;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipOutY;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipOutY;
    backface-visibility: visible !important;
    animation-name: flipOutY;
}
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

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

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

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

.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }

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

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

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

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

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

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}
@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }

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

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

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

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

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

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}
@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }

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

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

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

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

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

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

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}
@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }

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

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

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

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

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

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

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
}
@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }

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

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

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

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

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

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    -moz-animation-name: fadeInUpBig;
    -o-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}
@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }

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

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

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

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

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

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

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    -moz-animation-name: fadeInDownBig;
    -o-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}
@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

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

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

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

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    -moz-animation-name: fadeInLeftBig;
    -o-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}
@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

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

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

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

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

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

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

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    -moz-animation-name: fadeInRightBig;
    -o-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

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

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

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

.fadeOut {
    -webkit-animation-name: fadeOut;
    -moz-animation-name: fadeOut;
    -o-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOutUp {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

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

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

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

    100% {
        opacity: 0;
        transform: translateY(-20px);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    -moz-animation-name: fadeOutUp;
    -o-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}
@-webkit-keyframes fadeOutDown {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

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

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

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

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

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

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

    100% {
        opacity: 0;
        transform: translateY(20px);
    }
}

.fadeOutDown {
    -webkit-animation-name: fadeOutDown;
    -moz-animation-name: fadeOutDown;
    -o-animation-name: fadeOutDown;
    animation-name: fadeOutDown;
}
@-webkit-keyframes fadeOutLeft {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

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

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

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

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

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

@keyframes fadeOutLeft {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.fadeOutLeft {
    -webkit-animation-name: fadeOutLeft;
    -moz-animation-name: fadeOutLeft;
    -o-animation-name: fadeOutLeft;
    animation-name: fadeOutLeft;
}
@-webkit-keyframes fadeOutRight {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

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

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

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

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

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

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

    100% {
        opacity: 0;
        transform: translateX(20px);
    }
}

.fadeOutRight {
    -webkit-animation-name: fadeOutRight;
    -moz-animation-name: fadeOutRight;
    -o-animation-name: fadeOutRight;
    animation-name: fadeOutRight;
}
@-webkit-keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

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

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

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

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

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

@keyframes fadeOutUpBig {
    0% {
        opacity: 1;
        transform: translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.fadeOutUpBig {
    -webkit-animation-name: fadeOutUpBig;
    -moz-animation-name: fadeOutUpBig;
    -o-animation-name: fadeOutUpBig;
    animation-name: fadeOutUpBig;
}
@-webkit-keyframes fadeOutDownBig {
    0% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }

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

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

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

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

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

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

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.fadeOutDownBig {
    -webkit-animation-name: fadeOutDownBig;
    -moz-animation-name: fadeOutDownBig;
    -o-animation-name: fadeOutDownBig;
    animation-name: fadeOutDownBig;
}
@-webkit-keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

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

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

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

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

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

@keyframes fadeOutLeftBig {
    0% {
        opacity: 1;
        transform: translateX(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.fadeOutLeftBig {
    -webkit-animation-name: fadeOutLeftBig;
    -moz-animation-name: fadeOutLeftBig;
    -o-animation-name: fadeOutLeftBig;
    animation-name: fadeOutLeftBig;
}
@-webkit-keyframes fadeOutRightBig {
    0% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }

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

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

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

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.fadeOutRightBig {
    -webkit-animation-name: fadeOutRightBig;
    -moz-animation-name: fadeOutRightBig;
    -o-animation-name: fadeOutRightBig;
    animation-name: fadeOutRightBig;
}
@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.3);
    }

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

    70% {
        -webkit-transform: scale(0.9);
    }

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

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(0.3);
    }

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

    70% {
        -moz-transform: scale(0.9);
    }

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

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(0.3);
    }

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

    70% {
        -o-transform: scale(0.9);
    }

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

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }

    70% {
        transform: scale(0.9);
    }

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

.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}
@-webkit-keyframes bounceInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(-30px);
    }

    80% {
        -webkit-transform: translateY(10px);
    }

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

    60% {
        opacity: 1;
        -moz-transform: translateY(-30px);
    }

    80% {
        -moz-transform: translateY(10px);
    }

    100% {
        -moz-transform: translateY(0);
    }
}

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

    60% {
        opacity: 1;
        -o-transform: translateY(-30px);
    }

    80% {
        -o-transform: translateY(10px);
    }

    100% {
        -o-transform: translateY(0);
    }
}

@keyframes bounceInUp {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }

    60% {
        opacity: 1;
        transform: translateY(-30px);
    }

    80% {
        transform: translateY(10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounceInUp {
    -webkit-animation-name: bounceInUp;
    -moz-animation-name: bounceInUp;
    -o-animation-name: bounceInUp;
    animation-name: bounceInUp;
}
@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

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

    60% {
        opacity: 1;
        -moz-transform: translateY(30px);
    }

    80% {
        -moz-transform: translateY(-10px);
    }

    100% {
        -moz-transform: translateY(0);
    }
}

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

    60% {
        opacity: 1;
        -o-transform: translateY(30px);
    }

    80% {
        -o-transform: translateY(-10px);
    }

    100% {
        -o-transform: translateY(0);
    }
}

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

    60% {
        opacity: 1;
        transform: translateY(30px);
    }

    80% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0);
    }
}

.bounceInDown {
    -webkit-animation-name: bounceInDown;
    -moz-animation-name: bounceInDown;
    -o-animation-name: bounceInDown;
    animation-name: bounceInDown;
}
@-webkit-keyframes bounceInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(30px);
    }

    80% {
        -webkit-transform: translateX(-10px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

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

    60% {
        opacity: 1;
        -moz-transform: translateX(30px);
    }

    80% {
        -moz-transform: translateX(-10px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

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

    60% {
        opacity: 1;
        -o-transform: translateX(30px);
    }

    80% {
        -o-transform: translateX(-10px);
    }

    100% {
        -o-transform: translateX(0);
    }
}

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

    60% {
        opacity: 1;
        transform: translateX(30px);
    }

    80% {
        transform: translateX(-10px);
    }

    100% {
        transform: translateX(0);
    }
}

.bounceInLeft {
    -webkit-animation-name: bounceInLeft;
    -moz-animation-name: bounceInLeft;
    -o-animation-name: bounceInLeft;
    animation-name: bounceInLeft;
}
@-webkit-keyframes bounceInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-30px);
    }

    80% {
        -webkit-transform: translateX(10px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

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

    60% {
        opacity: 1;
        -moz-transform: translateX(-30px);
    }

    80% {
        -moz-transform: translateX(10px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

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

    60% {
        opacity: 1;
        -o-transform: translateX(-30px);
    }

    80% {
        -o-transform: translateX(10px);
    }

    100% {
        -o-transform: translateX(0);
    }
}

@keyframes bounceInRight {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }

    60% {
        opacity: 1;
        transform: translateX(-30px);
    }

    80% {
        transform: translateX(10px);
    }

    100% {
        transform: translateX(0);
    }
}

.bounceInRight {
    -webkit-animation-name: bounceInRight;
    -moz-animation-name: bounceInRight;
    -o-animation-name: bounceInRight;
    animation-name: bounceInRight;
}
@-webkit-keyframes bounceOut {
    0% {
        -webkit-transform: scale(1);
    }

    25% {
        -webkit-transform: scale(0.95);
    }

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

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

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

    25% {
        -moz-transform: scale(0.95);
    }

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

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

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

    25% {
        -o-transform: scale(0.95);
    }

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

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

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

    25% {
        transform: scale(0.95);
    }

    50% {
        opacity: 1;
        transform: scale(1.1);
    }

    100% {
        opacity: 0;
        transform: scale(0.3);
    }
}

.bounceOut {
    -webkit-animation-name: bounceOut;
    -moz-animation-name: bounceOut;
    -o-animation-name: bounceOut;
    animation-name: bounceOut;
}
@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(20px);
    }

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

@-moz-keyframes bounceOutUp {
    0% {
        -moz-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateY(20px);
    }

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

@-o-keyframes bounceOutUp {
    0% {
        -o-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateY(20px);
    }

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

@keyframes bounceOutUp {
    0% {
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        transform: translateY(-2000px);
    }
}

.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    -moz-animation-name: bounceOutUp;
    -o-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}
@-webkit-keyframes bounceOutDown {
    0% {
        -webkit-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateY(-20px);
    }

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

@-moz-keyframes bounceOutDown {
    0% {
        -moz-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateY(-20px);
    }

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

@-o-keyframes bounceOutDown {
    0% {
        -o-transform: translateY(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateY(-20px);
    }

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

@keyframes bounceOutDown {
    0% {
        transform: translateY(0);
    }

    20% {
        opacity: 1;
        transform: translateY(-20px);
    }

    100% {
        opacity: 0;
        transform: translateY(2000px);
    }
}

.bounceOutDown {
    -webkit-animation-name: bounceOutDown;
    -moz-animation-name: bounceOutDown;
    -o-animation-name: bounceOutDown;
    animation-name: bounceOutDown;
}
@-webkit-keyframes bounceOutLeft {
    0% {
        -webkit-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }

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

@-moz-keyframes bounceOutLeft {
    0% {
        -moz-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateX(20px);
    }

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

@-o-keyframes bounceOutLeft {
    0% {
        -o-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateX(20px);
    }

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

@keyframes bounceOutLeft {
    0% {
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        transform: translateX(20px);
    }

    100% {
        opacity: 0;
        transform: translateX(-2000px);
    }
}

.bounceOutLeft {
    -webkit-animation-name: bounceOutLeft;
    -moz-animation-name: bounceOutLeft;
    -o-animation-name: bounceOutLeft;
    animation-name: bounceOutLeft;
}
@-webkit-keyframes bounceOutRight {
    0% {
        -webkit-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }

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

@-moz-keyframes bounceOutRight {
    0% {
        -moz-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -moz-transform: translateX(-20px);
    }

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

@-o-keyframes bounceOutRight {
    0% {
        -o-transform: translateX(0);
    }

    20% {
        opacity: 1;
        -o-transform: translateX(-20px);
    }

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

@keyframes bounceOutRight {
    0% {
        transform: translateX(0);
    }

    20% {
        opacity: 1;
        transform: translateX(-20px);
    }

    100% {
        opacity: 0;
        transform: translateX(2000px);
    }
}

.bounceOutRight {
    -webkit-animation-name: bounceOutRight;
    -moz-animation-name: bounceOutRight;
    -o-animation-name: bounceOutRight;
    animation-name: bounceOutRight;
}
@-webkit-keyframes rotateIn {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(-200deg);
        opacity: 0;
    }

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

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

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

    100% {
        transform-origin: center center;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateIn {
    -webkit-animation-name: rotateIn;
    -moz-animation-name: rotateIn;
    -o-animation-name: rotateIn;
    animation-name: rotateIn;
}
@-webkit-keyframes rotateInUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpLeft {
    -webkit-animation-name: rotateInUpLeft;
    -moz-animation-name: rotateInUpLeft;
    -o-animation-name: rotateInUpLeft;
    animation-name: rotateInUpLeft;
}
@-webkit-keyframes rotateInDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -moz-transform-origin: left bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -o-transform-origin: left bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        transform-origin: left bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownLeft {
    -webkit-animation-name: rotateInDownLeft;
    -moz-animation-name: rotateInDownLeft;
    -o-animation-name: rotateInDownLeft;
    animation-name: rotateInDownLeft;
}
@-webkit-keyframes rotateInUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(-90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInUpRight {
    -webkit-animation-name: rotateInUpRight;
    -moz-animation-name: rotateInUpRight;
    -o-animation-name: rotateInUpRight;
    animation-name: rotateInUpRight;
}
@-webkit-keyframes rotateInDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -moz-transform-origin: right bottom;
        -moz-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        -o-transform-origin: right bottom;
        -o-transform: rotate(0);
        opacity: 1;
    }
}

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

    100% {
        transform-origin: right bottom;
        transform: rotate(0);
        opacity: 1;
    }
}

.rotateInDownRight {
    -webkit-animation-name: rotateInDownRight;
    -moz-animation-name: rotateInDownRight;
    -o-animation-name: rotateInDownRight;
    animation-name: rotateInDownRight;
}
@-webkit-keyframes rotateOut {
    0% {
        -webkit-transform-origin: center center;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

.rotateOut {
    -webkit-animation-name: rotateOut;
    -moz-animation-name: rotateOut;
    -o-animation-name: rotateOut;
    animation-name: rotateOut;
}
@-webkit-keyframes rotateOutUpLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

.rotateOutUpLeft {
    -webkit-animation-name: rotateOutUpLeft;
    -moz-animation-name: rotateOutUpLeft;
    -o-animation-name: rotateOutUpLeft;
    animation-name: rotateOutUpLeft;
}
@-webkit-keyframes rotateOutDownLeft {
    0% {
        -webkit-transform-origin: left bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

.rotateOutDownLeft {
    -webkit-animation-name: rotateOutDownLeft;
    -moz-animation-name: rotateOutDownLeft;
    -o-animation-name: rotateOutDownLeft;
    animation-name: rotateOutDownLeft;
}
@-webkit-keyframes rotateOutUpRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

.rotateOutUpRight {
    -webkit-animation-name: rotateOutUpRight;
    -moz-animation-name: rotateOutUpRight;
    -o-animation-name: rotateOutUpRight;
    animation-name: rotateOutUpRight;
}
@-webkit-keyframes rotateOutDownRight {
    0% {
        -webkit-transform-origin: right bottom;
        -webkit-transform: rotate(0);
        opacity: 1;
    }

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

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

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

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

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

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

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

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

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

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

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

.hinge {
    -webkit-animation-name: hinge;
    -moz-animation-name: hinge;
    -o-animation-name: hinge;
    animation-name: hinge;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

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

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

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

.rollIn {
    -webkit-animation-name: rollIn;
    -moz-animation-name: rollIn;
    -o-animation-name: rollIn;
    animation-name: rollIn;
}
/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

    100% {
        opacity: 0;
        -webkit-transform: translateX(100%) rotate(120deg);
    }
}

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

    100% {
        opacity: 0;
        -moz-transform: translateX(100%) rotate(120deg);
    }
}

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

    100% {
        opacity: 0;
        -o-transform: translateX(100%) rotate(120deg);
    }
}

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

    100% {
        opacity: 0;
        transform: translateX(100%) rotate(120deg);
    }
}

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

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

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

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

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

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

.lightSpeedIn {
    -webkit-animation-name: lightSpeedIn;
    -moz-animation-name: lightSpeedIn;
    -o-animation-name: lightSpeedIn;
    animation-name: lightSpeedIn;

    -webkit-animation-timing-function: ease-out;
    -moz-animation-timing-function: ease-out;
    -o-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

.animated.lightSpeedIn {
    -webkit-animation-duration: 0.5s;
    -moz-animation-duration: 0.5s;
    -o-animation-duration: 0.5s;
    animation-duration: 0.5s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

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

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

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

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

.lightSpeedOut {
    -webkit-animation-name: lightSpeedOut;
    -moz-animation-name: lightSpeedOut;
    -o-animation-name: lightSpeedOut;
    animation-name: lightSpeedOut;

    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.animated.lightSpeedOut {
    -webkit-animation-duration: 0.25s;
    -moz-animation-duration: 0.25s;
    -o-animation-duration: 0.25s;
    animation-duration: 0.25s;
}

/* originally authored by Angelo Rohit - https://github.com/angelorohit */

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

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

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

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

.wiggle {
    -webkit-animation-name: wiggle;
    -moz-animation-name: wiggle;
    -o-animation-name: wiggle;
    animation-name: wiggle;

    -webkit-animation-timing-function: ease-in;
    -moz-animation-timing-function: ease-in;
    -o-animation-timing-function: ease-in;
    animation-timing-function: ease-in;
}

.animated.wiggle {
    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    -o-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

.dtq-business-hour-day,
.dtq-business-hour-hour {
    line-height: 1;
}
.dtq-business-hour-child {
    border-style: solid;
}
.dtq-business-hour-title {
    border-style: solid;
}

.dtq-business-hour-title h2 {
    margin: 0;
    padding: 0;
    font-size: 26px;
}

.dtq-business-hour-day,
.dtq-business-hour-time {
    font-size: 14px;
}

.ba_business_hour
    .dtq-business-hour
    .dtq-business-hour-content
    .ba_business_hour_child:last-child {
    margin-bottom: 0 !important;
}

.ba_business_hour
    .dtq-business-hour
    .dtq-business-hour-content
    .ba_business_hour_child:last-child:after {
    display: none;
    opacity: 0;
}

.ba_business_hour_child {
    position: relative;
}

.ba_business_hour_child:after {
    width: 100%;
    left: 0;
}

.dtq-business-hour-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dtq-business-hour-separator {
    flex: 1 1;
}

.dtq-image-compare .twentytwenty-horizontal .twentytwenty-handle:before,
.dtq-image-compare .twentytwenty-horizontal .twentytwenty-handle:after,
.dtq-image-compare .twentytwenty-vertical .twentytwenty-handle:before,
.dtq-image-compare .twentytwenty-vertical .twentytwenty-handle:after {
    content: " ";
    display: block;
    position: absolute;
    z-index: 30;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.dtq-image-compare .twentytwenty-horizontal .twentytwenty-handle:before,
.dtq-image-compare .twentytwenty-horizontal .twentytwenty-handle:after {
    width: 3px;
    height: 9999px;
    left: 50%;
    margin-left: -1.5px;
}

.dtq-image-compare .twentytwenty-vertical .twentytwenty-handle:before,
.dtq-image-compare .twentytwenty-vertical .twentytwenty-handle:after {
    width: 9999px;
    height: 3px;
    top: 50%;
    margin-top: -1.5px;
}
.dtq-image-compare .twentytwenty-overlay div:before {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    border: 0 solid;
}
.dtq-image-compare .twentytwenty-before-label,
.dtq-image-compare .twentytwenty-after-label,
.dtq-image-compare .twentytwenty-overlay {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
}

.dtq-image-compare .twentytwenty-before-label,
.dtq-image-compare .twentytwenty-after-label,
.dtq-image-compare .twentytwenty-overlay {
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    transition-duration: 0.5s;
}

.dtq-image-compare .twentytwenty-before-label,
.dtq-image-compare .twentytwenty-after-label {
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    transition-property: opacity;
}

.dtq-image-compare .twentytwenty-before-label:before,
.dtq-image-compare .twentytwenty-after-label:before {
    color: white;
    font-size: 13px;
    letter-spacing: 0.1em;
}

.dtq-image-compare .twentytwenty-before-label:before,
.dtq-image-compare .twentytwenty-after-label:before {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    line-height: 38px;
    padding: 0 20px;
}

.dtq-image-compare .twentytwenty-horizontal .twentytwenty-before-label:before,
.dtq-image-compare .twentytwenty-horizontal .twentytwenty-after-label:before {
    top: 50%;
    transform: translateY(-50%);
}

.dtq-image-compare .twentytwenty-vertical .twentytwenty-before-label:before,
.dtq-image-compare .twentytwenty-vertical .twentytwenty-after-label:before {
    left: 50%;
    text-align: center;
    transform: translateX(-50%);
}

.dtq-image-compare .twentytwenty-left-arrow,
.dtq-image-compare .twentytwenty-right-arrow,
.dtq-image-compare .twentytwenty-up-arrow,
.dtq-image-compare .twentytwenty-down-arrow {
    width: 0;
    height: 0;
    border: 6px inset transparent;
    position: absolute;
}

.dtq-image-compare .twentytwenty-left-arrow,
.dtq-image-compare .twentytwenty-right-arrow {
    top: 50%;
    margin-top: -6px;
}

.dtq-image-compare .twentytwenty-up-arrow,
.dtq-image-compare .twentytwenty-down-arrow {
    left: 50%;
    margin-left: -6px;
}

.dtq-image-compare .twentytwenty-container {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    z-index: 0;
    overflow: hidden;
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.dtq-image-compare .twentytwenty-container img {
    max-width: 100%;
    position: absolute;
    top: 0;
    display: block;
}

.dtq-image-compare .twentytwenty-container.active .twentytwenty-overlay,
.dtq-image-compare .twentytwenty-container.active :hover.twentytwenty-overlay {
    background: rgba(0, 0, 0, 0);
}

.dtq-image-compare
    .twentytwenty-container.active
    .twentytwenty-overlay
    .twentytwenty-before-label,
.dtq-image-compare
    .twentytwenty-container.active
    .twentytwenty-overlay
    .twentytwenty-after-label,
.dtq-image-compare
    .twentytwenty-container.active
    :hover.twentytwenty-overlay
    .twentytwenty-before-label,
.dtq-image-compare
    .twentytwenty-container.active
    :hover.twentytwenty-overlay
    .twentytwenty-after-label {
    opacity: 0;
}

.dtq-image-compare .twentytwenty-container * {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.dtq-image-compare .twentytwenty-before-label:before {
    content: attr(data-content);
}

.dtq-image-compare .twentytwenty-after-label:before {
    content: attr(data-content);
}

.dtq-image-compare .twentytwenty-horizontal .twentytwenty-before-label:before {
    left: 10px;
}

.dtq-image-compare .twentytwenty-horizontal .twentytwenty-after-label:before {
    right: 10px;
}

.dtq-image-compare .twentytwenty-vertical .twentytwenty-before-label:before {
    top: 10px;
}

.dtq-image-compare .twentytwenty-vertical .twentytwenty-after-label:before {
    bottom: 10px;
}

.dtq-image-compare .twentytwenty-overlay {
    -webkit-transition-property: background;
    -moz-transition-property: background;
    transition-property: background;
    background: rgba(0, 0, 0, 0);
    z-index: 25;
}

.dtq-image-compare .twentytwenty-overlay:hover {
    background: rgba(0, 0, 0, 0.5);
}

.dtq-image-compare .twentytwenty-overlay:hover .twentytwenty-after-label {
    opacity: 1;
}

.dtq-image-compare .twentytwenty-overlay:hover .twentytwenty-before-label {
    opacity: 1;
}

.dtq-image-compare .twentytwenty-before {
    z-index: 20;
}

.dtq-image-compare .twentytwenty-after {
    z-index: 10;
}

.dtq-image-compare .twentytwenty-handle {
    height: 38px;
    width: 38px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -22px;
    margin-top: -22px;
    -webkit-border-radius: 1000px;
    -moz-border-radius: 1000px;
    border-radius: 1000px;
    -webkit-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 0px 0px 12px rgba(51, 51, 51, 0.5);
    z-index: 40;
    cursor: pointer;
}

.dtq-image-compare .twentytwenty-horizontal .twentytwenty-handle:before {
    bottom: 50%;
    margin-bottom: 22px;
}

.dtq-image-compare .twentytwenty-horizontal .twentytwenty-handle:after {
    top: 50%;
    margin-top: 22px;
}

.dtq-image-compare .twentytwenty-vertical .twentytwenty-handle:before {
    left: 50%;
    margin-left: 22px;
    -webkit-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: 3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.dtq-image-compare .twentytwenty-vertical .twentytwenty-handle:after {
    right: 50%;
    margin-right: 22px;
    -webkit-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    -moz-box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
    box-shadow: -3px 0 0 white, 0px 0px 12px rgba(51, 51, 51, 0.5);
}

.dtq-image-compare .twentytwenty-left-arrow {
    left: 50%;
    margin-left: -17px;
}

.dtq-image-compare .twentytwenty-right-arrow {
    right: 50%;
    margin-right: -17px;
}

.dtq-image-compare .twentytwenty-up-arrow {
    border-bottom: 6px solid white;
    top: 50%;
    margin-top: -17px;
}

.dtq-image-compare .twentytwenty-down-arrow {
    border-top: 6px solid white;
    bottom: 50%;
    margin-bottom: -17px;
}

.dtq-cf7-styler * {
    box-sizing: border-box;
}

.dtq-cf7-styler .wpcf7 form {
    position: relative;
}

.dtq-cf7-styler .wpcf7-form .wpcf7-submit {
    display: block !important;
}

.dtq-cf7-styler .wpcf7 form > div,
.dtq-cf7-styler .wpcf7 form > p {
    margin-bottom: 1rem;
    padding-bottom: 0;
}

.dtq-cf7-styler .wpcf7 .dtq-cf7-styler .wpcf7-control-wrap {
    width: 100%;
    display: block;
}

.dtq-cf7-styler .wpcf7 input:not([type="submit"]):focus,
.dtq-cf7-styler .wpcf7 select:focus,
.dtq-cf7-styler .wpcf7 textarea:focus {
    border-color: #eaeaea;
    outline: 0;
    box-shadow: none;
}

.dtq-cf7-styler
    .wpcf7
    input:not([type="submit"]):not([type="checkbox"]):not([type="radio"]),
.dtq-cf7-styler .wpcf7 select,
.dtq-cf7-styler .wpcf7 textarea {
    width: 100%;
    max-width: 100%;
}

.dtq-cf7-styler .wpcf7 input[type="file"] {
    color: #666;
    height: auto;
    border-width: 1px;
    border-style: solid;
    border-color: #eaeaea;
    background: #fafafa;
    box-shadow: none;
    transition: all 0.2s linear;
    border-radius: 2px;
    box-sizing: border-box;
}

.dtq-cf7-styler.dtq-cf7-styler-cr .wpcf7 input[type="checkbox"],
.dtq-cf7-styler.dtq-cf7-styler-cr .wpcf7 input[type="radio"] {
    display: inline-block;
    position: relative;
    visibility: hidden;
    clear: none;
    cursor: pointer;
    line-height: 0;
    height: 1.2em;
    margin: -3px 4px 0 0;
    outline: 0;
    padding: 0;
    border-radius: 0.2em;
    text-align: center;
    vertical-align: middle;
    width: 1.4em;
    min-width: 1.4em;
    transition: all 0.2s linear;
}

.dtq-cf7-styler input[type="range"] {
    background: 0 0 !important;
    border: none !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]:checked
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]:checked
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]
    + span:before {
    box-sizing: content-box;
}

.dtq-cf7-styler.dtq-cf7-styler-cr .wpcf7-acceptance input[type="checkbox"],
.dtq-cf7-styler.dtq-cf7-styler-cr .wpcf7-checkbox input[type="checkbox"],
.dtq-cf7-styler.dtq-cf7-styler-cr .wpcf7-radio input[type="radio"] {
    display: none;
}

.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]:not(:checked)
    + span:before {
    background-color: #ffffff;
}

.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]
    + span:before {
    border-width: 1px;
    border-style: solid;
    border-color: #d1d8de;
    width: 14px;
    height: 14px;
}

.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]:checked
    + span:before {
    box-shadow: inset 0px 0px 0px 4px #fff;
}

.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]
    + span:before {
    -webkit-border-radius: 100%;
    border-radius: 100%;
    background-color: #d1d8de;
}

.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-radio
    input[type="radio"]
    + span:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    text-align: center;
}

.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-acceptance
    input[type="checkbox"]:checked
    + span:before,
.dtq-cf7-styler.dtq-cf7-styler-cr
    .wpcf7-checkbox
    input[type="checkbox"]:checked
    + span:before {
    content: "\2714";
    line-height: 1.2;
}

.dtq-cf7-styler-button-center input.wpcf7-form-control.wpcf7-submit,
.dtq-cf7-styler-button-justify input.wpcf7-form-control.wpcf7-submit,
.dtq-cf7-styler-button-left input.wpcf7-form-control.wpcf7-submit,
.dtq-cf7-styler-button-right input.wpcf7-form-control.wpcf7-submit {
    display: -webkit-box;
    display: -ms-flexbox;
    -js-display: flex;
    display: -webkit-flex;
    display: -moz-box;
    display: flex;
    width: auto;
}

.dtq-cf7-styler .wpcf7 input[type="submit"] {
    font-size: 14px;
    letter-spacing: 0.6px;
    width: auto;
    font-size: 16px;
    padding: 10px 22px 10px 22px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border-style: solid;
    border-color: #2ea3f2;
    color: #fff;
    background-color: #2ea3f2;
    -webkit-appearance: button;
    cursor: pointer;
}

.dtq-cf7-styler .wpcf7 div.wpcf7-response-output {
    margin: 0;
}

.dtq-form-header {
    display: flex;
    align-items: center;
}

.dtq-form-header-icon,
.dtq-form-header-image {
    position: relative;
    display: flex;
    flex: auto 0 0;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-right: 20px;
    border-radius: 50% 50%;
}

.dtq-form-header-title {
    font-size: 32px;
    font-weight: 600;
}

.dtq-form-header-text {
    margin-top: 8px;
    opacity: 0.7;
    font-size: 15px;
}

.dtq-cf7-styler-button-center .wpcf7-form input[type="submit"],
.dtq-cf7-styler-button-center .wpcf7-form button.wpcf7-submit {
    margin-left: auto !important;
    margin-right: auto !important;
}

.dtq-cf7-styler-button-right .wpcf7-form input[type="submit"],
.dtq-cf7-styler-button-right .wpcf7-form button.wpcf7-submit {
    margin-left: auto !important;
}

.dtq-cf7-styler-button-left .wpcf7-form input[type="submit"],
.dtq-cf7-styler-button-left .wpcf7-form button.wpcf7-submit {
    margin-right: auto !important;
}

.dtq-cf7 .wpcf7 input[type="submit"][disabled] {
    cursor: not-allowed;
}

.dtq-divider {
    display: flex;
}

.dtq-divider__text {
    margin-bottom: 0;
    padding-bottom: 0;
}
.dtq-divider__text span {
    display: block;
}
.dtq-divider__element img,
.dtq-divider__element i {
    border-style: solid;
}

.dtq-divider__icon i {
    display: inline-block !important;
}

.dtq-divider__border {
    flex: 1;
}

.dtq-divider__text {
    font-size: 30px;
    line-height: 1em;
}

.dtq-dual-btn {
    display: flex;
    width: 100%;
}
.dtq-btn-wrap {
    position: relative;
    display: flex;
}
.dtq-btn__connector {
    display: flex;
    justify-content: center;
    align-items: center;
}
.dtq-btn__connector--icon,
.dtq-btn__connector--text {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateX(50%) translateY(-50%);
    z-index: 99;
}

.btn-el {
    display: inline-block;
}

/* Common */
.dtq-flipbox-card-container {
    width: 100%;
    height: 100%;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dtq-flipbox-card {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    /* -webkit-transform: rotateX(0deg);
	transform: rotateX(0deg);
	-webkit-transform: rotateY(0deg);
	transform: rotateY(0deg); */
}

.dtq-flipbox-front-card {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 99;
    width: 100%;
    height: 100%;
    -webkit-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.dtq-flipbox-card-inner {
    width: 100%;
}

.dtq-flipbox-card-content {
    width: 100%;
    padding: 30px;
}

.dtq-flipbox-back-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    align-items: center;
}

.dtq-flipbox--flip .dtq-flipbox-card-container {
    position: relative;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.dtq-flipbox--flip .dtq-flipbox-back-card,
.dtq-flipbox--flip .dtq-flipbox-front-card {
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-perspective: 1000px;
    perspective: 1000px;
}
.dtq-flipbox--flip .dtq-flipbox-front-card {
    position: relative;
    bottom: 0;
    z-index: 10;
}
.dtq-flipbox--flip .dtq-flipbox-back-card {
    position: absolute;
    z-index: -1;
    padding: 30px;
}
.dtq-flipbox--flip.dtq-flip-right .dtq-flipbox-front-card {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.dtq-flipbox--flip.dtq-flip-right .dtq-flipbox-back-card {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.dtq-flipbox--flip.dtq-flip-right:hover .dtq-flipbox-back-card {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.dtq-flipbox--flip.dtq-flip-right:hover .dtq-flipbox-front-card {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.dtq-flipbox--flip.dtq-flip-left .dtq-flipbox-front-card {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.dtq-flipbox--flip.dtq-flip-left .dtq-flipbox-back-card {
    -webkit-transform: rotateY(180deg);
    transform: rotateY(180deg);
}
.dtq-flipbox--flip.dtq-flip-left:hover .dtq-flipbox-back-card {
    -webkit-transform: rotateY(0);
    transform: rotateY(0);
}
.dtq-flipbox--flip.dtq-flip-left:hover .dtq-flipbox-front-card {
    -webkit-transform: rotateY(-180deg);
    transform: rotateY(-180deg);
}
.dtq-flipbox--flip.dtq-flip-up .dtq-flipbox-front-card {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}
.dtq-flipbox--flip.dtq-flip-up .dtq-flipbox-back-card {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}
.dtq-flipbox--flip.dtq-flip-up:hover .dtq-flipbox-back-card {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}
.dtq-flipbox--flip.dtq-flip-up:hover .dtq-flipbox-front-card {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.dtq-flipbox--flip.dtq-flip-down .dtq-flipbox-front-card {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}
.dtq-flipbox--flip.dtq-flip-down .dtq-flipbox-back-card {
    -webkit-transform: rotateX(180deg);
    transform: rotateX(180deg);
}
.dtq-flipbox--flip.dtq-flip-down:hover .dtq-flipbox-back-card {
    -webkit-transform: rotateX(0);
    transform: rotateX(0);
}
.dtq-flipbox--flip.dtq-flip-down:hover .dtq-flipbox-front-card {
    -webkit-transform: rotateX(-180deg);
    transform: rotateX(-180deg);
}
.dtq-flipbox--flip:hover .dtq-flipbox-front-card {
    z-index: -1;
}
.dtq-flipbox--flip:hover .dtq-flipbox-back-card {
    z-index: 1;
}

/* Design */
.dtq-flipbox-title-front,
.dtq-flipbox-title-back,
.dtq-flipbox-subtitle-back,
.dtq-flipbox-subtitle-front {
    margin-bottom: 0;
    padding-bottom: 0;
}

.dtq-flipbox-figure-back .dtq-flipbox-icon,
.dtq-flipbox-figure-front .dtq-flipbox-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
}

.dtq-flipbox-figure-back,
.dtq-flipbox-figure-front {
    border-style: solid;
    display: inline-block;
}

.dtq-flipbox-figure-back img,
.dtq-flipbox-figure-front img {
    width: 100%;
    object-fit: cover;
}

.dtq-flipbox-card {
    border-style: solid;
}

/* Flip 3d */
/* .dtq-flipbox-3d .dtq-flipbox-card-inner {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(0.1px);
    transform: translateZ(0.1px);
}

.dtq-flipbox-3d .dtq-flipbox-content {
    -webkit-transform: translateZ(90px) scale(0.91);
    transform: translateZ(90px) scale(0.91);
} */
.dtq-flipbox--flip.dtq-flipbox-3d .dtq-flipbox-front-card,
.dtq-flipbox--flip.dtq-flipbox-3d .dtq-flipbox-back-card {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.dtq-flipbox--flip.dtq-flipbox-3d .dtq-flipbox-card-inner {
    -webkit-transform: translateZ(50px) scale(0.9);
    transform: translateZ(50px) scale(0.9);
}

.dtq-flipbox--flip.dtq-flipbox-3d .dtq-flipbox-card-container {
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

/* Animation Push & Slide */
.dtq-flipbox--slide,
.dtq-flipbox--push {
    overflow: hidden;
    position: relative;
}

.dtq-flipbox--slide .dtq-flipbox-back-card {
    z-index: 9999;
}

.dtq-flipbox--slide.dtq-slide-up .dtq-flipbox-back-card,
.dtq-flipbox--push.dtq-push-up .dtq-flipbox-back-card {
    top: 100%;
}

.dtq-flipbox--slide.dtq-slide-up:hover .dtq-flipbox-back-card,
.dtq-flipbox--push.dtq-push-up:hover .dtq-flipbox-back-card {
    top: 0;
}

.dtq-flipbox--push.dtq-push-up:hover .dtq-flipbox-front-card {
    top: -100%;
}

.dtq-flipbox--slide.dtq-slide-down .dtq-flipbox-back-card,
.dtq-flipbox--push.dtq-push-down .dtq-flipbox-back-card {
    top: -100%;
}

.dtq-flipbox--slide.dtq-slide-down:hover .dtq-flipbox-back-card,
.dtq-flipbox--push.dtq-push-down:hover .dtq-flipbox-back-card {
    top: 0;
}

.dtq-flipbox--push.dtq-push-down:hover .dtq-flipbox-front-card {
    top: 100%;
}

.dtq-flipbox--slide.dtq-slide-left .dtq-flipbox-back-card,
.dtq-flipbox--push.dtq-push-left .dtq-flipbox-back-card {
    left: 100%;
}

.dtq-flipbox--slide.dtq-slide-left:hover .dtq-flipbox-back-card,
.dtq-flipbox--push.dtq-push-left:hover .dtq-flipbox-back-card {
    left: 0;
}

.dtq-flipbox--push.dtq-push-left:hover .dtq-flipbox-front-card {
    left: -100%;
}

.dtq-flipbox--slide.dtq-slide-right .dtq-flipbox-back-card,
.dtq-flipbox--push.dtq-push-right .dtq-flipbox-back-card {
    left: -100%;
}

.dtq-flipbox--slide.dtq-slide-right:hover .dtq-flipbox-back-card,
.dtq-flipbox--push.dtq-push-right:hover .dtq-flipbox-back-card {
    left: 0;
}

.dtq-flipbox--push.dtq-push-right:hover .dtq-flipbox-front-card {
    left: 100%;
}

/* Animation Fade*/
.dtq-flipbox--fade .dtq-flipbox-back-card {
    z-index: 999;
    opacity: 0;
}

.dtq-flipbox--fade:hover .dtq-flipbox-back-card {
    opacity: 1;
}

/* Animation Zoom In*/
.dtq-flipbox--zoom_in .dtq-flipbox-back-card {
    z-index: 999;
    opacity: 0;
    transform: scale(0.3);
}

.dtq-flipbox--zoom_in:hover .dtq-flipbox-back-card {
    opacity: 1;
    transform: scale(1);
}

/* Animation Zoom Out*/
.dtq-flipbox--zoom_out .dtq-flipbox-front-card {
    z-index: 999;
    transform: scale(1);
}

.dtq-flipbox--zoom_out:hover .dtq-flipbox-front-card {
    opacity: 0;
    transform: scale(0);
    pointer-events: none;
}

/* Animation Rotate 3D*/
.dtq-flipbox--rotate_3d .dtq-flipbox-inner {
    position: relative;
    -webkit-perspective: 400px;
    -moz-perspective: 400px;
    -ms-perspective: 400px;
    -o-perspective: 400px;
    perspective: 400px;
}
.dtq-flipbox--rotate_3d .dtq-flipbox-inner .dtq-flipbox-card-container {
    position: absolute;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transition-duration: 1s;
    -moz-transition-duration: 1s;
    -o-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: translateZ(-75px);
    -moz-transform: translateZ(-75px);
    -ms-transform: translateZ(-75px);
    -o-transform: translateZ(-75px);
    transform: translateZ(-75px);
}
.dtq-flipbox--rotate_3d .dtq-flipbox-inner .dtq-flipbox-card-container:hover {
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    -o-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
    -webkit-transform: translateZ(-75px) rotateY(180deg);
    -moz-transform: translateZ(-75px) rotateY(180deg);
    -ms-transform: translateZ(-75px) rotateY(180deg);
    -o-transform: translateZ(-75px) rotateY(180deg);
    transform: translateZ(-75px) rotateY(180deg);
}
.dtq-flipbox--rotate_3d .dtq-flipbox-inner .dtq-flipbox-front-card {
    z-index: 1;
    -webkit-transform: rotateY(0deg) translateZ(75px);
    -moz-transform: rotateY(0deg) translateZ(75px);
    -ms-transform: rotateY(0deg) translateZ(75px);
    -o-transform: rotateY(0deg) translateZ(75px);
    transform: rotateY(0deg) translateZ(75px);
}
.dtq-flipbox--rotate_3d .dtq-flipbox-inner .dtq-flipbox-back-card {
    z-index: 0;
    -webkit-transform: rotateY(180deg) translateZ(75px);
    -moz-transform: rotateY(180deg) translateZ(75px);
    -ms-transform: rotateY(180deg) translateZ(75px);
    -o-transform: rotateY(180deg) translateZ(75px);
    transform: rotateY(180deg) translateZ(75px);
}
.dtq-flipbox--rotate_3d .dtq-flipbox-inner .dtq-flank {
    width: 150px;
    height: 100%;
    left: 75px;
    -webkit-transform: rotateY(-90deg) translateZ(150px);
    -moz-transform: rotateY(-90deg) translateZ(150px);
    -ms-transform: rotateY(-90deg) translateZ(150px);
    -o-transform: rotateY(-90deg) translateZ(150px);
    transform: rotateY(-90deg) translateZ(150px);
    display: block;
    overflow: hidden;
    position: absolute;
}
.dtq-flipbox--rotate_3d.dtq-rotate_3d-v
    .dtq-flipbox-inner
    .dtq-flipbox-card-container:hover {
    -webkit-transform: translateZ(-75px) rotateX(180deg);
    -moz-transform: translateZ(-75px) rotateX(180deg);
    -ms-transform: translateZ(-75px) rotateX(180deg);
    -o-transform: translateZ(-75px) rotateX(180deg);
    transform: translateZ(-75px) rotateX(180deg);
}
.dtq-flipbox--rotate_3d.dtq-rotate_3d-v
    .dtq-flipbox-inner
    .dtq-flipbox-back-card {
    -webkit-transform: rotateX(180deg) translateZ(75px);
    -moz-transform: rotateX(180deg) translateZ(75px);
    -ms-transform: rotateX(180deg) translateZ(75px);
    -o-transform: rotateX(180deg) translateZ(75px);
    transform: rotateX(180deg) translateZ(75px);
}
.dtq-flipbox--rotate_3d.dtq-rotate_3d-v .dtq-flipbox-inner .dtq-flank {
    width: 100%;
    height: 150px;
    left: 0;
    top: 25px;
}

.dtq-flipbox-card-container,
.dtq-flipbox--rotate_3d .dtq-flipbox-inner .dtq-flipbox-card {
    height: 100%;
    width: 100%;
    position: absolute;
}

/* Animation Open Window*/
.dtq-flipbox--open_up .dtq-flipbox-card-container {
    perspective: 800px;
}
.dtq-flipbox--open_up .dtq-flipbox-front-card {
    transform-origin: top left;
}
.dtq-flipbox--open_up:hover .dtq-flipbox-front-card {
    transform: rotateX(77deg);
}

/* Animation Flip Diagonal */

.dtq-flipbox--diagonal.dtq-diagonal-right .dtq-flipbox-back-card {
    -webkit-transform: rotate3d(-1, 1, 0, 180deg);
    transform: rotate3d(-1, 1, 0, 180deg);
}
.dtq-flipbox--diagonal.dtq-diagonal-left .dtq-flipbox-back-card {
    -webkit-transform: rotate3d(1, 1, 0, 180deg);
    transform: rotate3d(1, -1, 0, 180deg);
}

.dtq-flipbox--diagonal.dtq-diagonal-right:hover .dtq-flipbox-card-container {
    -webkit-transform: rotate3d(-1, 1, 0, 180deg);
    transform: rotate3d(-1, 1, 0, 180deg);
}

.dtq-flipbox--diagonal.dtq-diagonal-left:hover .dtq-flipbox-card-container {
    -webkit-transform: rotate3d(1, -1, 0, 180deg);
    transform: rotate3d(1, -1, 0, 180deg);
}

/* Animation Flip Shake */
.dtq-flipbox--shake .dtq-flipbox-inner {
    perspective: 1500px;
}
.dtq-flipbox--shake .dtq-flipbox-card-container .dtq-flipbox-back-card {
    transform: rotateY(180deg);
}

.dtq-flipbox--shake:hover .dtq-flipbox-card-container {
    transform: rotateX(180deg) rotateZ(180deg);
}

.dtq-flipbox--shake .dtq-flipbox-card-container {
    /* will-change: transform; */
}

.dtq-iconbox {
	position: relative;
	display: block;
	color: initial;
}

.dtq-iconbox-inner {
	border-style: solid;
}
.dtq-iconbox__icon-wrap {
	display: flex;
}
.dtq-iconbox__icon {
	display: flex;
	align-items: center;
	justify-content: center;
	transition: 0.2s all ease;
	border-style: solid;
	justify-content: center;
	align-items: center;
	font-style: normal;
}

.dtq-iconbox__icon i {
	font-style: normal;
}

.dtq-iconbox__icon img {
	transform-origin: center;
	display: inline-block;
	transition: 0.2s all ease;
	vertical-align: middle;
	object-fit: contain;
	width: 100%;
	height: 100%;
}

.dtq-iconbox__badge {
	position: absolute;
	border-style: solid;
}

.dtq-iconbox__desc {
	font-size: 14px;
}

.dtq-carousel .slick-arrow {
	z-index: 999;
}

.dtq-image-carousel-item figure img {
    width: 100%;
}
.dtq-image-carousel-item figure {
    position: relative;
}

.dtq-image-carousel-item {
    position: relative;
    border-style: solid;
}

.dtq-image-carousel .content--absolute {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    z-index: 99;
    pointer-events: none !important;
}

.dtq-image-carousel-item .content .content-inner {
    border-style: solid;
}

.dtq-image-carousel-item .content--absolute * {
    position: relative;
}

.ba_image_carousel_child {
    overflow: hidden !important;
}

.dtq-image-carousel-item .dtq-image-subtitle {
    padding-bottom: 0;
    margin-bottom: 0;
}

.dtq-info-box .dtq-info-box-figure {
    overflow: hidden;
    position: relative;
}

.dtq-info-box .dtq-info-box-figure img {
    transition: 0.3s;
    width: 100%;
    vertical-align: middle;
}

.dtq-info-box .dtq-info-box-figure {
    display: inline-block;
    vertical-align: middle;
}

.dtq-info-box-icon {
    transition: 0.2s all ease !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

.dtq-info-box .dtq-info-box-figure,
.dtq-info-box .dtq-info-box-icon,
.dtq-info-box .dtq-content-video {
    border-style: solid;
}

.dtq-mce-content p,
.dtq-mce-content h1,
.dtq-mce-content h2,
.dtq-mce-content h3,
.dtq-mce-content h4,
.dtq-mce-content h5,
.dtq-mce-content h6 {
    color: inherit !important;
}

.fluid-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.dtq-content-video {
    border-style: solid;
}

.dtq-card {
    display: flex;
    overflow: initial !important;
    color: inherit;
    position: relative;
}

.dtq-card-content {
    flex: 1 1;
}

.dtq-module .dtq-card-title {
    font-size: 22px;
}

.dtq-card-icon {
    border-style: solid;
}

.dtq-card-figure {
    position: relative;
}

.use-icon-on .dtq-card-figure {
    display: inline-block;
}

.dtq-card-figure img {
    transition: 0.2s cubic-bezier(0.95, 0.05, 0.795, 0.035);
    border-style: solid;
}

.dtq-card-figure {
    position: relative;
}

.dtq-card img {
    vertical-align: middle;
}

.dtq-card-icon {
    display: inline-block;
}

.dtq-card-badge {
    font-size: 13px;
    border-style: solid;
    white-space: nowrap;
}

.dtq-card .dtq-card-title {
    margin-bottom: 0;
}

.dtq-card-desc p:empty {
    display: none;
}

.dtq-alert {
	display: flex;
}

.dtq-alert-content {
	flex: 1 1;
}

.dtq-alert-icon {
	border-style: solid;
}

.dtq-alert-icon i {
	font-style: normal !important;
}

.dtq-alert-dismiss {
	cursor: pointer;
}
.dtq-alert-title {
	line-height: 1.7em;
}
.dtq-alert-desc {
	font-size: 14px;
}

.dtq-alert .dtq-et-icon:before {
	display: none !important;
}


.ba_logo_carousel_child,
.dtq-logo-carousel-item {
    overflow: hidden;
}

.ba_logo_carousel_child > div {
    width: 100%;
    text-align: center;
}

.ba_logo_carousel_child div img {
    display: inline-block !important;
}

.dtq-logo-carousel-item img {
    vertical-align: middle;
    transition: 0.2s ease;
}

.zoom_in .dtq-logo-carousel-item:hover img {
    transform: scale(1.1);
}

.zoom_out .dtq-logo-carousel-item:hover img {
    transform: scale(0.9);
}

.fade .dtq-logo-carousel-item:hover img {
    opacity: 0.65;
}

.black_n_white .dtq-logo-carousel-item:hover img {
    filter: grayscale(100%);
}

.ba_logo_carousel_child {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.dtq-logo-grid {
    display: flex;
    list-style: none;
    padding: 0;
    flex-wrap: wrap;
}

.ba_logo_grid_child * {
    height: 100%;
}

.ba_logo_grid_child {
    transition: 0.2s ease;
}

.ba_logo_grid_child figure {
    margin: 0;
    text-align: center;
    height: 100%;
}
.dtq-logo-grid__item a {
    display: block;
    height: 100%;
}
.dtq-logo-grid__item img {
    vertical-align: middle;
    transition: 0.2s ease;
    object-fit: contain;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.zoom_in .dtq-logo-grid__item:hover img {
    transform: scale(1.2);
}
.zoom_out .dtq-logo-grid__item:hover img {
    transform: scale(0.8);
}
.fade .dtq-logo-grid__item:hover img {
    opacity: 0.65;
}
.black_n_white .dtq-logo-grid__item:hover img {
    filter: grayscale(100%);
}

.dtq-logo-grid .et_pb_module {
    margin-bottom: 0 !important;
}

.dtq-logo-grid__item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-style: solid;
}

/* React Tippy*/
.tippy-touch{cursor:pointer!important}.tippy-notransition{transition:none!important}.tippy-popper{max-width:400px;-webkit-perspective:800px;perspective:800px;z-index:9999;outline:0;transition-timing-function:cubic-bezier(.165,.84,.44,1);pointer-events:none}.tippy-popper.html-template{max-width:96%;max-width:calc(100% - 20px)}.tippy-popper[x-placement^=top] [x-arrow]{border-top:7px solid #333;border-right:7px solid transparent;border-left:7px solid transparent;bottom:-7px;margin:0 9px}.tippy-popper[x-placement^=top] [x-arrow].arrow-small{border-top:5px solid #333;border-right:5px solid transparent;border-left:5px solid transparent;bottom:-5px}.tippy-popper[x-placement^=top] [x-arrow].arrow-big{border-top:10px solid #333;border-right:10px solid transparent;border-left:10px solid transparent;bottom:-10px}.tippy-popper[x-placement^=top] [x-circle]{-webkit-transform-origin:0 33%;transform-origin:0 33%}.tippy-popper[x-placement^=top] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-55%);transform:scale(1) translate(-50%,-55%);opacity:1}.tippy-popper[x-placement^=top] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-50%);transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow]{border-top:7px solid #fff;border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-top:5px solid #fff;border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-top:10px solid #fff;border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow]{border-top:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-top:5px solid rgba(0,0,0,.7);border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=top] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-top:10px solid rgba(0,0,0,.7);border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=top] [data-animation=perspective]{-webkit-transform-origin:bottom;transform-origin:bottom}.tippy-popper[x-placement^=top] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateY(-10px) rotateX(0);transform:translateY(-10px) rotateX(0)}.tippy-popper[x-placement^=top] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateY(0) rotateX(90deg);transform:translateY(0) rotateX(90deg)}.tippy-popper[x-placement^=top] [data-animation=fade].enter{opacity:1;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=fade].leave{opacity:0;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=shift].enter{opacity:1;-webkit-transform:translateY(-10px);transform:translateY(-10px)}.tippy-popper[x-placement^=top] [data-animation=shift].leave{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}.tippy-popper[x-placement^=top] [data-animation=scale].enter{opacity:1;-webkit-transform:translateY(-10px) scale(1);transform:translateY(-10px) scale(1)}.tippy-popper[x-placement^=top] [data-animation=scale].leave{opacity:0;-webkit-transform:translateY(0) scale(0);transform:translateY(0) scale(0)}.tippy-popper[x-placement^=bottom] [x-arrow]{border-bottom:7px solid #333;border-right:7px solid transparent;border-left:7px solid transparent;top:-7px;margin:0 9px}.tippy-popper[x-placement^=bottom] [x-arrow].arrow-small{border-bottom:5px solid #333;border-right:5px solid transparent;border-left:5px solid transparent;top:-5px}.tippy-popper[x-placement^=bottom] [x-arrow].arrow-big{border-bottom:10px solid #333;border-right:10px solid transparent;border-left:10px solid transparent;top:-10px}.tippy-popper[x-placement^=bottom] [x-circle]{-webkit-transform-origin:0 -50%;transform-origin:0 -50%}.tippy-popper[x-placement^=bottom] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-45%);transform:scale(1) translate(-50%,-45%);opacity:1}.tippy-popper[x-placement^=bottom] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-5%);transform:scale(.15) translate(-50%,-5%);opacity:0}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow]{border-bottom:7px solid #fff;border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-bottom:5px solid #fff;border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-bottom:10px solid #fff;border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow]{border-bottom:7px solid rgba(0,0,0,.7);border-right:7px solid transparent;border-left:7px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-bottom:5px solid rgba(0,0,0,.7);border-right:5px solid transparent;border-left:5px solid transparent}.tippy-popper[x-placement^=bottom] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-bottom:10px solid rgba(0,0,0,.7);border-right:10px solid transparent;border-left:10px solid transparent}.tippy-popper[x-placement^=bottom] [data-animation=perspective]{-webkit-transform-origin:top;transform-origin:top}.tippy-popper[x-placement^=bottom] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateY(10px) rotateX(0);transform:translateY(10px) rotateX(0)}.tippy-popper[x-placement^=bottom] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateY(0) rotateX(-90deg);transform:translateY(0) rotateX(-90deg)}.tippy-popper[x-placement^=bottom] [data-animation=fade].enter{opacity:1;-webkit-transform:translateY(10px);transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=fade].leave{opacity:0;-webkit-transform:translateY(10px);transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=shift].enter{opacity:1;-webkit-transform:translateY(10px);transform:translateY(10px)}.tippy-popper[x-placement^=bottom] [data-animation=shift].leave{opacity:0;-webkit-transform:translateY(0);transform:translateY(0)}.tippy-popper[x-placement^=bottom] [data-animation=scale].enter{opacity:1;-webkit-transform:translateY(10px) scale(1);transform:translateY(10px) scale(1)}.tippy-popper[x-placement^=bottom] [data-animation=scale].leave{opacity:0;-webkit-transform:translateY(0) scale(0);transform:translateY(0) scale(0)}.tippy-popper[x-placement^=left] [x-arrow]{border-left:7px solid #333;border-top:7px solid transparent;border-bottom:7px solid transparent;right:-7px;margin:6px 0}.tippy-popper[x-placement^=left] [x-arrow].arrow-small{border-left:5px solid #333;border-top:5px solid transparent;border-bottom:5px solid transparent;right:-5px}.tippy-popper[x-placement^=left] [x-arrow].arrow-big{border-left:10px solid #333;border-top:10px solid transparent;border-bottom:10px solid transparent;right:-10px}.tippy-popper[x-placement^=left] [x-circle]{-webkit-transform-origin:50% 0;transform-origin:50% 0}.tippy-popper[x-placement^=left] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-50%);transform:scale(1) translate(-50%,-50%);opacity:1}.tippy-popper[x-placement^=left] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-50%);transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow]{border-left:7px solid #fff;border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-left:5px solid #fff;border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-left:10px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow]{border-left:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-left:5px solid rgba(0,0,0,.7);border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=left] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-left:10px solid rgba(0,0,0,.7);border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=left] [data-animation=perspective]{-webkit-transform-origin:right;transform-origin:right}.tippy-popper[x-placement^=left] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateX(-10px) rotateY(0);transform:translateX(-10px) rotateY(0)}.tippy-popper[x-placement^=left] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateX(0) rotateY(-90deg);transform:translateX(0) rotateY(-90deg)}.tippy-popper[x-placement^=left] [data-animation=fade].enter{opacity:1;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=fade].leave{opacity:0;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=shift].enter{opacity:1;-webkit-transform:translateX(-10px);transform:translateX(-10px)}.tippy-popper[x-placement^=left] [data-animation=shift].leave{opacity:0;-webkit-transform:translateX(0);transform:translateX(0)}.tippy-popper[x-placement^=left] [data-animation=scale].enter{opacity:1;-webkit-transform:translateX(-10px) scale(1);transform:translateX(-10px) scale(1)}.tippy-popper[x-placement^=left] [data-animation=scale].leave{opacity:0;-webkit-transform:translateX(0) scale(0);transform:translateX(0) scale(0)}.tippy-popper[x-placement^=right] [x-arrow]{border-right:7px solid #333;border-top:7px solid transparent;border-bottom:7px solid transparent;left:-7px;margin:6px 0}.tippy-popper[x-placement^=right] [x-arrow].arrow-small{border-right:5px solid #333;border-top:5px solid transparent;border-bottom:5px solid transparent;left:-5px}.tippy-popper[x-placement^=right] [x-arrow].arrow-big{border-right:10px solid #333;border-top:10px solid transparent;border-bottom:10px solid transparent;left:-10px}.tippy-popper[x-placement^=right] [x-circle]{-webkit-transform-origin:-50% 0;transform-origin:-50% 0}.tippy-popper[x-placement^=right] [x-circle].enter{-webkit-transform:scale(1) translate(-50%,-50%);transform:scale(1) translate(-50%,-50%);opacity:1}.tippy-popper[x-placement^=right] [x-circle].leave{-webkit-transform:scale(.15) translate(-50%,-50%);transform:scale(.15) translate(-50%,-50%);opacity:0}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-circle]{background-color:#fff}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow]{border-right:7px solid #fff;border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-small{border-right:5px solid #fff;border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.light-theme [x-arrow].arrow-big{border-right:10px solid #fff;border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-circle]{background-color:rgba(0,0,0,.7)}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow]{border-right:7px solid rgba(0,0,0,.7);border-top:7px solid transparent;border-bottom:7px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-small{border-right:5px solid rgba(0,0,0,.7);border-top:5px solid transparent;border-bottom:5px solid transparent}.tippy-popper[x-placement^=right] .tippy-tooltip.transparent-theme [x-arrow].arrow-big{border-right:10px solid rgba(0,0,0,.7);border-top:10px solid transparent;border-bottom:10px solid transparent}.tippy-popper[x-placement^=right] [data-animation=perspective]{-webkit-transform-origin:left;transform-origin:left}.tippy-popper[x-placement^=right] [data-animation=perspective].enter{opacity:1;-webkit-transform:translateX(10px) rotateY(0);transform:translateX(10px) rotateY(0)}.tippy-popper[x-placement^=right] [data-animation=perspective].leave{opacity:0;-webkit-transform:translateX(0) rotateY(90deg);transform:translateX(0) rotateY(90deg)}.tippy-popper[x-placement^=right] [data-animation=fade].enter{opacity:1;-webkit-transform:translateX(10px);transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=fade].leave{opacity:0;-webkit-transform:translateX(10px);transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=shift].enter{opacity:1;-webkit-transform:translateX(10px);transform:translateX(10px)}.tippy-popper[x-placement^=right] [data-animation=shift].leave{opacity:0;-webkit-transform:translateX(0);transform:translateX(0)}.tippy-popper[x-placement^=right] [data-animation=scale].enter{opacity:1;-webkit-transform:translateX(10px) scale(1);transform:translateX(10px) scale(1)}.tippy-popper[x-placement^=right] [data-animation=scale].leave{opacity:0;-webkit-transform:translateX(0) scale(0);transform:translateX(0) scale(0)}.tippy-popper .tippy-tooltip.transparent-theme{background-color:rgba(0,0,0,.7)}.tippy-popper .tippy-tooltip.transparent-theme[data-animatefill]{background-color:transparent}.tippy-popper .tippy-tooltip.light-theme{color:#26323d;box-shadow:0 4px 20px 4px rgba(0,20,60,.1),0 4px 80px -8px rgba(0,20,60,.2);background-color:#fff}.tippy-popper .tippy-tooltip.light-theme[data-animatefill]{background-color:transparent}.tippy-tooltip{position:relative;color:#fff;border-radius:4px;font-size:.95rem;padding:.4rem .8rem;text-align:center;will-change:transform;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;background-color:#333}.tippy-tooltip--small{padding:.25rem .5rem;font-size:.8rem}.tippy-tooltip--big{padding:.6rem 1.2rem;font-size:1.2rem}.tippy-tooltip[data-animatefill]{overflow:hidden;background-color:transparent}.tippy-tooltip[data-interactive]{pointer-events:auto}.tippy-tooltip[data-inertia]{transition-timing-function:cubic-bezier(.53,2,.36,.85)}.tippy-tooltip [x-arrow]{position:absolute;width:0;height:0}.tippy-tooltip [x-circle]{position:absolute;will-change:transform;background-color:#333;border-radius:50%;width:130%;width:calc(110% + 2rem);left:50%;top:50%;z-index:-1;overflow:hidden;transition:all ease}.tippy-tooltip [x-circle]:before{content:"";padding-top:90%;float:left}@media (max-width:450px){.tippy-popper{max-width:96%;max-width:calc(100% - 20px)}}


.tippy-box[data-theme=light]{
    color: #26323d;
    box-shadow: 0 4px 20px 4px rgba(0,20,60,.1), 0 4px 80px -8px rgba(0,20,60,.2);
    background-color: #fff;
}

.tippy-tooltip,
.tippy-box{
    font-size: 14px;
    padding: 5px 10px!important;
    line-height: 24px;
}
.tippy-content {
    position: relative;
    padding: 0;
    z-index: 1;
}
.tippy-box[data-theme=light] .tippy-arrow{
    color: #fff;
}

.dtq-news-tricker {
    position: relative;
    display: flex;
    align-items: center;
}

.dtq-news-title {
    color: #fff;
    font-size: 16px;
    border-style: solid;
}

.dtq-news-tricker .dtq-news-wrap {
    white-space: nowrap;
    display: inline-block;
    padding: 0 !important;
    list-style: none !important;
    margin-bottom: 0 !important;
}

.dtq-news-tricker .dtq-news-wrap li {
    white-space: nowrap;
    display: inline-block;
}
.dtq-news-container {
    overflow: hidden;
    flex: 1 1;
    min-height: 5px;
}
@keyframes news-move {
    0% {
        transform: translateX(var(--width));
    }
    100% {
        transform: translateX(-101%);
    }
}

.ba_number .et_pb_module_inner {
    position: initial;
}

.dtq-number-text {
    font-size: 26px;
}
.dtq-number-title h3 {
    line-height: 1.3em;
    font-size: 22px;
    margin: 0;
    padding: 0;
}

.dtq-post-list.type-grid ul {
	display: flex;
	flex-wrap: wrap;
}

.dtq-post-list ul {
	list-style: none !important;
}

.dtq-post-list .dtq-post-list-thum {
	border-style: solid;
	display: inline-block;
}

.dtq-post-list .dtq-post-list-child-inner {
	border-style: solid;
	display: flex;
	height: 100%;
}

.dtq-post-list .dtq-post-list-meta {
	display: flex;
	font-size: 14px;
}

.dtq-post-list .dtq-separetor {
	margin: 0 5px;
}

.dtq-post-list .dtq-post-list-title {
	padding-bottom: 0;
	margin-bottom: 0;
}

.dtq-post-list-title {
	font-size: 20px;
}

.dtq-post-list-excerpt {
	font-size: 14px;
}

.dtq-post-list-icon {
	display: flex;
	position: relative;
	top: 5px;
}

.dtq-post-list .dtq-post-list-thumb img {
	object-fit: cover;
	height: auto;
}

.dtq-review {
	display: flex;
}

.dtq-stars-wrap {
	font-size: 30px;
	position: relative;
	display: inline-block;
	line-height: 0.9;
}

.dtq-stars-wrap .dtq-star {
	display: inline-block;
	line-height: 0.9;
}

.dtq-stars-inact {
	white-space: nowrap;
}

.dtq-stars-act {
	position: absolute;
	left: 0;
	top: 0;
	width: var(--active-width);
	overflow: hidden;
	white-space: nowrap;
}

.dtq-ratings {
	display: flex;
	align-items: center;
}

.dtq-ratings-number {
	padding-top: 5px;
}

.dtq-rating-figure {
	border-style: solid;
	position: relative;
}

.dtq-rating-star-desc {
	font-size: 14px;
}

@media (max-width: 767px) {
	.dtq-review {
		display: block;
	}
}
.dtq-review-badge {
	font-size: 13px;
	border-style: solid;
	white-space: nowrap;
}

.dtq-scroll-image {
    cursor: pointer;
}

.scroll-figure-wrap {
    position: relative;
}

.dtq-scroll-image-overlay {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: 9;
    transition: 0.3s all ease-in-out;
}

.dtq-scroll-image-icon img {
    width: 50px;
}
.dtq-scroll-image-icon {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s all ease-in-out;
}
.dtq-scroll-image:hover .dtq-scroll-image-overlay,
.dtq-scroll-image:hover .dtq-scroll-image-icon {
    opacity: 0;
}

@keyframes dtq-scroll-X {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
    100% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }
}

@keyframes dtq-scroll-Y {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
    100% {
        -webkit-transform: translateY(8px);
        transform: translateY(8px);
    }
}

.ba_skill_bar .dtq-skill .ba_skill_bar_child:last-child {
    margin-bottom: 0 !important;
}

.dtq-skillbar__inner__text {
    font-size: 14px;
}

.dtq-skillbar {
    position: relative;
}

.dtq-skillbar__wrapper {
    background: #ddd;
    overflow: hidden;
}

.dtq-skillbar__inner {
    transition: 0.3s;
    white-space: nowrap;
    background-color: #5b2cff;
}

.dtq-skillbar__inner__text {
    display: flex;
    align-items: center;
    white-space: nowrap;
}

.dtq-skillbar__inner span {
    color: #ffffff;
}

.dtq-team {
    border-style: solid;
}

.dtq-team-content {
    border-style: solid;
    z-index: 99;
}

.dtq-team figure .figure-wrap {
    overflow: hidden;
    height: 100%;
}

.dtq-team figure {
    border-width: 0;
    position: relative;
}

.dtq-team figure img {
    width: 100%;
    max-width: 100%;
    vertical-align: middle;
    transition: 0.3s;
    border-style: solid;
}

.et-db #et-boc .dtq-team .dtq-team-social,
.dtq-team .dtq-team-social {
    list-style: none !important;
    padding-left: 0;
}

.dtq-team .dtq-team-social {
    display: flex;
    padding-bottom: 0;
    transition: 0.3s;
    margin-bottom: 0;
}

.dtq-team .dtq-team-social li a span,
.dtq-team .dtq-team-social li a svg {
    vertical-align: middle;
    line-height: 1;
}

.dtq-team .dtq-team-social li a {
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
    padding: 3px;
}

.dtq-team .content-left {
    text-align: left;
}

.dtq-team .content-right {
    text-align: right;
}

.dtq-team .content-center {
    text-align: center;
}

.dtq-team .item-center {
    justify-content: center;
}
.dtq-team-content-job-title,
.dtq-team-content-bio {
    font-size: 14px;
}
h3.dtq-team-content-name {
    font-size: 22px;
}
.dtq-team .item-right {
    justify-content: flex-end;
}

/* Hover style 1*/
.dtq-team.hover_1 {
    position: relative;
}

.dtq-team.hover_1 .dtq-team-content {
    position: absolute;
    bottom: 50px;
    left: 25px;
    width: calc(100% - 50px);
    opacity: 0;
}

.dtq-team.hover_1:hover .dtq-team-content {
    bottom: 25px;
    opacity: 1;
}

/* Hover style 2*/
.dtq-team.hover_2 {
    position: relative;
}

.dtq-team.hover_2 .dtq-team-content {
    position: absolute;
    top: 25px;
    left: 25px;
    width: calc(100% - 50px);
    height: calc(100% - 50px);
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dtq-team.hover_2:hover .dtq-team-content {
    opacity: 1;
}

/* Hover style 3*/
.dtq-team.hover_3 {
    position: relative;
}

.dtq-team.hover_3 .dtq-team-content {
    position: absolute;
    bottom: 0px;
    left: 0px;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
}

.dtq-team.hover_3:hover .dtq-team-content {
    opacity: 1;
    transform: translateY(0);
}

/* Hover style 4*/
.dtq-team.hover_4 {
    position: relative;
}

.dtq-team.hover_4 .dtq-team-content {
    position: absolute;
    top: 50%;
    left: 25px;
    width: calc(100% - 50px);
    opacity: 0;
    transform: translateY(-50%) scale(0.7);
}

.dtq-team.hover_4:hover .dtq-team-content {
    opacity: 1;
    transform: translateY(-50%) scale(1);
}

.dtq-testimonial-img {
    border-style: solid;
    overflow: hidden;
    border-width: 0;
    display: inline-block !important;
}

.dtq-img-right .dtq-testimonial-reviewer figure {
    order: 2;
}

.dtq-testimonial-title {
    font-size: 14px;
}

.dtq-testimonial {
    position: relative;
}

.dtq-testimonial.dtq-align-left * {
    text-align: left;
}

.dtq-testimonial.dtq-align-center * {
    text-align: center;
}

.dtq-testimonial.dtq-align-right * {
    text-align: right;
}

.dtq-img-left .dtq-testimonial-reviewer,
.dtq-img-right .dtq-testimonial-reviewer {
    display: flex;
    align-items: center;
}

.dtq-testimonial-review {
    font-size: 14px;
}

.dtq-align-right .dtq-testimonial-reviewer {
    justify-content: flex-end;
}

.dtq-align-center .dtq-testimonial-reviewer {
    justify-content: center;
}

.dtq-testimonial-icon i {
    display: inline-block;
    border-style: solid;
}

.dtq-testimonial-inner {
    position: relative;
    z-index: 1;
    border-style: solid;
    min-height: 110px;
}

.dtq-testimonial-inner .dtq-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    display: flex;
    align-items: center;
    left: 0;
    top: 0;
}

.dtq-testimonial .dtq-icon-absolute {
    position: absolute;
    z-index: 9999999;
}

/*Image left & right*/

.dtq-testimonial-content {
    width: 100%;
}
.dtq-testimonial-inner.img-pos-left,
.dtq-testimonial-inner.img-pos-right {
    display: flex;
}

@media (max-width: 767px) {
    .dtq-testimonial-inner.img-pos-left,
    .dtq-testimonial-inner.img-pos-right {
        display: block !important;
    }
}

.dtq-twitter-grid {
    display: grid;
}

.dtq-twitter-grid * {
    box-sizing: border-box !important;
}

.dtq-twitter-grid .dtq-twitter-grid-item {
    position: relative;
    z-index: 0;
    display: flex;
    border-style: solid;
    word-break: break-word;
}

.dtq-twitter-grid .dtq-twitter-grid-inner-wrapper {
    flex-direction: column;
}

.dtq-twitter-grid .dtq-twitter-grid-item .dtq-twitter-grid-item-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
}

.dtq-twitter-grid-item-inner {
    border-style: solid;
    position: relative;
}

.dtq-twitter-grid .dtq-twitter-grid-author,
.dtq-twitter-grid .dtq-twitter-grid-inner-wrapper,
.dtq-twitter-grid .dtq-twitter-grid-user {
    display: flex;
}

.dtq-twitter-grid.dtq-twitter-right .dtq-twitter-grid-icon span {
    right: auto;
    left: 5px;
    transform: rotateY(-180deg);
}

.dtq-twitter-grid .dtq-twitter-grid-icon span {
    position: absolute;
    top: 15px;
    right: 15px;
}

.dtq-twitter-grid .dtq-twitter-grid-author {
    margin-bottom: 15px;
}

.dtq-twitter-grid .dtq-twitter-grid-author {
    align-items: center;
    flex-direction: row;
    margin-bottom: 10px;
}

.dtq-twitter-grid.dtq-twitter-center .dtq-twitter-grid-author {
    align-items: center;
    flex-direction: column;
}

.dtq-twitter-grid.dtq-twitter-right .dtq-twitter-grid-author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.dtq-twitter-center .dtq-twitter-grid-user {
    text-align: center;
}

.dtq-twitter-grid .dtq-twitter-grid-user {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.dtq-twitter-grid.dtq-twitter-center .dtq-twitter-grid-avatar {
    vertical-align: middle;
}
.dtq-twitter-grid .dtq-twitter-grid-avatar {
    border-style: solid;
}

.dtq-twitter-grid .dtq-twitter-grid-content {
    position: relative;
    color: #222;
}

.dtq-twitter-grid .dtq-twitter-grid-content p {
    margin-bottom: 5px;
}

.dtq-twitter-grid.dtq-twitter-left .dtq-twitter-grid-content {
    text-align: left;
}

.dtq-twitter-grid.dtq-twitter-center .dtq-twitter-grid-content {
    text-align: center;
}

.dtq-twitter-grid.dtq-twitter-right .dtq-twitter-grid-content {
    text-align: right;
}

/* footer */
.dtq-twitter-grid .dtq-twitter-grid-footer {
    width: 100%;
}

.dtq-twitter-grid-footer * {
    vertical-align: middle;
}

.dtq-twitter-grid .dtq-tweet-favorite {
    margin-right: 12px;
}

.dtq-twitter-grid .dtq-tweet-favorite,
.dtq-twitter-grid .dtq-tweet-retweet {
    display: inline-block;
    color: #a7a7a7;
}

.dtq-twitter-right .dtq-twitter-grid-user {
    text-align: right;
}

.dtq-twitter-grid .dtq-twitter-grid-footer-wrapper {
    margin-top: auto !important;
}

.ba_twitter_feed_carousel > .et_pb_module_inner * {
    box-sizing: border-box;
}

.dtq-inner-twitter-feed-content {
    word-break: break-all;
}

.ba_twitter_feed_carousel .dtq-icon {
    font-size: 14px;
    font-family: "ETmodules" !important;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-item {
    position: relative;
    z-index: 0;
    display: flex;
    border-style: solid;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-content:before,
.dtq-twitter-feed-carousel .dtq-twitter-feed-item:before {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    content: "";
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-inner-wrapper {
    flex-direction: column;
}

.dtq-carousel.equal-height-on:not(.slick-vertical)
    .slick-track
    .dtq-twitter-feed-item,
.dtq-carousel.equal-height-on:not(.slick-vertical)
    .slick-track
    .dtq-twitter-feed-item-inner {
    height: 100%;
    width: 100% !important;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-item .dtq-twitter-feed-item-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: visible !important;
}

.dtq-twitter-feed-item-inner {
    border-style: solid;
    position: relative;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-content p a {
    white-space: nowrap;
}

.dtq-carousel.equal-height-on .slick-track .dtq-twitter-feed-footer-wrapper {
    margin-top: auto !important;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-author,
.dtq-twitter-feed-carousel .dtq-twitter-feed-inner-wrapper,
.dtq-twitter-feed-carousel .dtq-twitter-feed-user {
    display: flex;
}

.dtq-twitter-feed-carousel.dtq-twitter-right .dtq-twitter-feed-icon span {
    right: auto;
    left: 5px;
    transform: rotateY(-180deg);
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-icon span {
    position: absolute;
    top: 15px;
    right: 15px;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-author {
    margin-bottom: 15px;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-author {
    align-items: center;
    flex-direction: row;
    margin-bottom: 10px;
}

.dtq-twitter-feed-carousel.dtq-twitter-center .dtq-twitter-feed-author {
    align-items: center;
    flex-direction: column;
}

.dtq-twitter-feed-carousel.dtq-twitter-right .dtq-twitter-feed-author {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
}

.dtq-twitter-center .dtq-twitter-feed-user {
    text-align: center;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-user {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
}

.dtq-twitter-feed-carousel.dtq-twitter-center .dtq-twitter-feed-avatar {
    margin-bottom: 5px;
}
.dtq-twitter-feed-carousel .dtq-twitter-feed-avatar {
    border-style: solid;
    max-width: initial;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-content {
    position: relative;
    color: #222;
}

.dtq-twitter-feed-carousel .dtq-twitter-feed-content p {
    margin-bottom: 5px;
}

.dtq-twitter-feed-carousel.dtq-twitter-left .dtq-twitter-feed-content {
    text-align: left;
}

.dtq-twitter-feed-carousel.dtq-twitter-center .dtq-twitter-feed-content {
    text-align: center;
}

.dtq-twitter-feed-carousel.dtq-twitter-right .dtq-twitter-feed-content {
    text-align: right;
}

/* footer */
.dtq-twitter-feed-carousel .dtq-twitter-feed-footer {
    width: 100%;
}

.dtq-twitter-feed-carousel .dtq-tweet-favorite {
    margin-right: 12px;
}

.dtq-twitter-feed-carousel .dtq-tweet-favorite,
.dtq-twitter-feed-carousel .dtq-tweet-retweet {
    display: inline-block;
    color: #a7a7a7;
}

.dtq-twitter-right .dtq-twitter-feed-user {
    text-align: right;
}

.bck_video_popup {
    overflow: hidden;
}

.dtq-video-popup-inner {
    position: relative;
}

.dtq-video-popup a svg {
    transition: 0.2s ease-in-out;
}
.dtq-video-popup a {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.dtq-video-popup .dtq-video-popup-icon:after,
.dtq-video-popup a:after {
    position: absolute;
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    z-index: -1;
    -webkit-animation: dtq-video-animation 2s infinite;
    animation: dtq-video-animation 2s infinite;
}

@keyframes dtq-video-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0);
        transform: scale(0);
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 0;
    }
    100% {
        opacity: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.dtq-video-popup a {
    color: #ffffff;
}

.dtq-video-popup-trigger {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
    z-index: 99;
}

.dtq-video-popup-figure {
    position: relative;
    cursor: pointer;
    display: block;
}

.dtq-video-popup-figure:before {
    content: "";
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9;
}

.dtq-video-popup-figure img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.dtq-video-open .mfp-iframe-holder .mfp-close {
    width: 52px;
    top: -51px !important;
    opacity: 1 !important;
    font-size: 46px;
}

.dtq-video-open .mfp-iframe-holder .mfp-close:focus {
    outline: none;
    border: none;
}

.dtq-modal {
    max-width: 700px;
    margin: 30px auto;
    position: relative;
    padding: 0px;
    background: #fff;
    opacity: 0;
    transition: 0.1s !important;
}

.dtq-video-wrap {
    overflow: hidden;
}

.dtq-modal video {
    width: 100%;
    vertical-align: middle;
}

.dtq-video-open .mfp-wrap .dtq-modal .mfp-close:active {
    top: 0 !important;
}

.dtq-modal.open {
    opacity: 1;
}

.dtq-modal-open .mfp-close-btn-in .mfp-close {
    color: #fff;
    top: -42px;
    opacity: 1;
    font-size: 40px;
}

.dtq-video-popup-icon,
.dtq-video-popup-text {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.dtq-video-popup-text {
    font-size: 16px;
    line-height: 1em;
}
