@charset "UTF-8";

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

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

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

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

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
    animation-duration: 0.75s;
}

@keyframes bounce {
    from,
    20%,
    53%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        transform: translate3d(0, 0, 0);
    }

    40%,
    43% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -30px, 0);
    }

    70% {
        animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
        transform: translate3d(0, -15px, 0);
    }

    90% {
        transform: translate3d(0, -4px, 0);
    }
}

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

@keyframes flash {
    from,
    50%,
    to {
        opacity: 1;
    }

    25%,
    75% {
        opacity: 0;
    }
}

.flash {
    animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes pulse {
    from {
        transform: scale3d(1, 1, 1);
    }

    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    animation-name: pulse;
}

@keyframes rubberBand {
    from {
        transform: scale3d(1, 1, 1);
        background-color: #12b636;
        color: #fff;
        border-radius: 5px;
    }

    30% {
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        transform: scale3d(1, 1, 1);
        background-color: #fff;
        color: #2c3e50;
        border-radius: 0;
    }
}

.rubberBand {
    animation-name: rubberBand;
}

@keyframes shake {
    from,
    to {
        transform: translate3d(0, 0, 0);
    }

    10%,
    30%,
    50%,
    70%,
    90% {
        transform: translate3d(-10px, 0, 0);
    }

    20%,
    40%,
    60%,
    80% {
        transform: translate3d(10px, 0, 0);
    }
}

.shake {
    animation-name: shake;
}

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

    6.5% {
        transform: translateX(-6px) rotateY(-9deg);
    }

    18.5% {
        transform: translateX(5px) rotateY(7deg);
    }

    31.5% {
        transform: translateX(-3px) rotateY(-5deg);
    }

    43.5% {
        transform: translateX(2px) rotateY(3deg);
    }

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

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

@keyframes swing {
    20% {
        transform: rotate3d(0, 0, 1, 15deg);
    }

    40% {
        transform: rotate3d(0, 0, 1, -10deg);
    }

    60% {
        transform: rotate3d(0, 0, 1, 5deg);
    }

    80% {
        transform: rotate3d(0, 0, 1, -5deg);
    }

    to {
        transform: rotate3d(0, 0, 1, 0deg);
    }
}

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

@keyframes tada {
    from {
        transform: scale3d(1, 1, 1);
    }

    10%,
    20% {
        transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }

    30%,
    50%,
    70%,
    90% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }

    40%,
    60%,
    80% {
        transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }

    to {
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes wobble {
    from {
        transform: none;
    }

    15% {
        transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
    }

    30% {
        transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
    }

    45% {
        transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
    }

    60% {
        transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
    }

    75% {
        transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
    }

    to {
        transform: none;
    }
}

.wobble {
    animation-name: wobble;
}

@keyframes jello {
    from,
    11.1%,
    to {
        transform: none;
    }

    22.2% {
        transform: skewX(-12.5deg) skewY(-12.5deg);
    }

    33.3% {
        transform: skewX(6.25deg) skewY(6.25deg);
    }

    44.4% {
        transform: skewX(-3.125deg) skewY(-3.125deg);
    }

    55.5% {
        transform: skewX(1.5625deg) skewY(1.5625deg);
    }

    66.6% {
        transform: skewX(-0.78125deg) skewY(-0.78125deg);
    }

    77.7% {
        transform: skewX(0.390625deg) skewY(0.390625deg);
    }

    88.8% {
        transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
    }
}

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

@keyframes bounceIn {
    from,
    20%,
    40%,
    60%,
    80%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    20% {
        transform: scale3d(1.1, 1.1, 1.1);
    }

    40% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    60% {
        opacity: 1;
        transform: scale3d(1.03, 1.03, 1.03);
    }

    80% {
        transform: scale3d(0.97, 0.97, 0.97);
    }

    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

.bounceIn {
    animation-name: bounceIn;
}

@keyframes bounceInDown {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(0, -3000px, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, 25px, 0);
    }

    75% {
        transform: translate3d(0, -10px, 0);
    }

    90% {
        transform: translate3d(0, 5px, 0);
    }

    to {
        transform: none;
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    0% {
        opacity: 0;
        transform: translate3d(-3000px, 0, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(25px, 0, 0);
    }

    75% {
        transform: translate3d(-10px, 0, 0);
    }

    90% {
        transform: translate3d(5px, 0, 0);
    }

    to {
        transform: none;
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        transform: translate3d(3000px, 0, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(-25px, 0, 0);
    }

    75% {
        transform: translate3d(10px, 0, 0);
    }

    90% {
        transform: translate3d(-5px, 0, 0);
    }

    to {
        transform: none;
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {
    from,
    60%,
    75%,
    90%,
    to {
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    from {
        opacity: 0;
        transform: translate3d(0, 3000px, 0);
    }

    60% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }

    75% {
        transform: translate3d(0, 10px, 0);
    }

    90% {
        transform: translate3d(0, -5px, 0);
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.bounceInUp {
    animation-name: bounceInUp;
}

@keyframes bounceOut {
    20% {
        transform: scale3d(0.9, 0.9, 0.9);
    }

    50%,
    55% {
        opacity: 1;
        transform: scale3d(1.1, 1.1, 1.1);
    }

    to {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }
}

.bounceOut {
    animation-name: bounceOut;
}

@keyframes bounceOutDown {
    20% {
        transform: translate3d(0, 10px, 0);
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, -20px, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}

.bounceOutDown {
    animation-name: bounceOutDown;
}

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

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}

.bounceOutLeft {
    animation-name: bounceOutLeft;
}

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

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}

.bounceOutRight {
    animation-name: bounceOutRight;
}

@keyframes bounceOutUp {
    20% {
        transform: translate3d(0, -10px, 0);
    }

    40%,
    45% {
        opacity: 1;
        transform: translate3d(0, 20px, 0);
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}

.bounceOutUp {
    animation-name: bounceOutUp;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDown {
    animation-name: fadeInDown;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInDownBig {
    animation-name: fadeInDownBig;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeft {
    animation-name: fadeInLeft;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRight {
    animation-name: fadeInRight;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInRightBig {
    animation-name: fadeInRightBig;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUp {
    animation-name: fadeInUp;
}

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

    to {
        opacity: 1;
        transform: none;
    }
}

.fadeInUpBig {
    animation-name: fadeInUpBig;
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

.fadeOutDown {
    animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 2000px, 0);
    }
}

.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

.fadeOutLeft {
    animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-2000px, 0, 0);
    }
}

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(2000px, 0, 0);
    }
}

.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -2000px, 0);
    }
}

.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@keyframes flip {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
        animation-timing-function: ease-out;
    }

    40% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
        animation-timing-function: ease-out;
    }

    50% {
        transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
        animation-timing-function: ease-in;
    }

    80% {
        transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
        animation-timing-function: ease-in;
    }

    to {
        transform: perspective(400px);
        animation-timing-function: ease-in;
    }
}

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

@keyframes flipInX {
    from {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

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

@keyframes flipInY {
    from {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        animation-timing-function: ease-in;
        opacity: 0;
    }

    40% {
        transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
        animation-timing-function: ease-in;
    }

    60% {
        transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
        opacity: 1;
    }

    80% {
        transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
    }

    to {
        transform: perspective(400px);
    }
}

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

@keyframes flipOutX {
    from {
        transform: perspective(400px);
    }

    30% {
        transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
        opacity: 1;
    }

    to {
        transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
        opacity: 0;
    }
}

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

@keyframes flipOutY {
    from {
        transform: perspective(400px);
    }

    30% {
        transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
        opacity: 1;
    }

    to {
        transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
        opacity: 0;
    }
}

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

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

    60% {
        transform: skewX(20deg);
        opacity: 1;
    }

    80% {
        transform: skewX(-5deg);
        opacity: 1;
    }

    to {
        transform: none;
        opacity: 1;
    }
}

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

@keyframes lightSpeedOut {
    from {
        opacity: 1;
    }

    to {
        transform: translate3d(100%, 0, 0) skewX(30deg);
        opacity: 0;
    }
}

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

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

    to {
        transform-origin: center;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    animation-name: rotateIn;
}

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

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

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

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInDownRight {
    animation-name: rotateInDownRight;
}

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

    to {
        transform-origin: left bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

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

    to {
        transform-origin: right bottom;
        transform: none;
        opacity: 1;
    }
}

.rotateInUpRight {
    animation-name: rotateInUpRight;
}

@keyframes rotateOut {
    from {
        transform-origin: center;
        opacity: 1;
    }

    to {
        transform-origin: center;
        transform: rotate3d(0, 0, 1, 200deg);
        opacity: 0;
    }
}

.rotateOut {
    animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
    from {
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, 45deg);
        opacity: 0;
    }
}

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
    from {
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
    from {
        transform-origin: left bottom;
        opacity: 1;
    }

    to {
        transform-origin: left bottom;
        transform: rotate3d(0, 0, 1, -45deg);
        opacity: 0;
    }
}

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
    from {
        transform-origin: right bottom;
        opacity: 1;
    }

    to {
        transform-origin: right bottom;
        transform: rotate3d(0, 0, 1, 90deg);
        opacity: 0;
    }
}

.rotateOutUpRight {
    animation-name: rotateOutUpRight;
}

@keyframes hinge {
    0% {
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    20%,
    60% {
        transform: rotate3d(0, 0, 1, 80deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
    }

    40%,
    80% {
        transform: rotate3d(0, 0, 1, 60deg);
        transform-origin: top left;
        animation-timing-function: ease-in-out;
        opacity: 1;
    }

    to {
        transform: translate3d(0, 700px, 0);
        opacity: 0;
    }
}

.hinge {
    animation-name: hinge;
}

@keyframes jackInTheBox {
    from {
        opacity: 0;
        transform: scale(0.1) rotate(30deg);
        transform-origin: center bottom;
    }

    50% {
        transform: rotate(-10deg);
    }

    70% {
        transform: rotate(3deg);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.jackInTheBox {
    animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

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

    to {
        opacity: 1;
        transform: none;
    }
}

.rollIn {
    animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */

@keyframes rollOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
    }
}

.rollOut {
    animation-name: rollOut;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

@keyframes zoomInDown {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInDown {
    animation-name: zoomInDown;
}

@keyframes zoomInLeft {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInLeft {
    animation-name: zoomInLeft;
}

@keyframes zoomInRight {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInRight {
    animation-name: zoomInRight;
}

@keyframes zoomInUp {
    from {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    60% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomInUp {
    animation-name: zoomInUp;
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

.zoomOut {
    animation-name: zoomOut;
}

@keyframes zoomOutDown {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutDown {
    animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
    }

    to {
        opacity: 0;
        transform: scale(0.1) translate3d(-2000px, 0, 0);
        transform-origin: left center;
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
    }

    to {
        opacity: 0;
        transform: scale(0.1) translate3d(2000px, 0, 0);
        transform-origin: right center;
    }
}

.zoomOutRight {
    animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
    40% {
        opacity: 1;
        transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    to {
        opacity: 0;
        transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
    }
}

.zoomOutUp {
    animation-name: zoomOutUp;
}

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

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInDown {
    animation-name: slideInDown;
}

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

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    animation-name: slideInLeft;
}

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

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInRight {
    animation-name: slideInRight;
}

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

    to {
        transform: translate3d(0, 0, 0);
    }
}

.slideInUp {
    animation-name: slideInUp;
}

@keyframes slideOutDown {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, 100%, 0);
    }
}

.slideOutDown {
    animation-name: slideOutDown;
}

@keyframes slideOutLeft {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    animation-name: slideOutLeft;
}

@keyframes slideOutRight {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(100%, 0, 0);
    }
}

.slideOutRight {
    animation-name: slideOutRight;
}

@keyframes slideOutUp {
    from {
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        transform: translate3d(0, -100%, 0);
    }
}

.slideOutUp {
    animation-name: slideOutUp;
}

.btn-primary {
    background-color: #5a3ff5;
    border-color: #5a3ff5;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary.active {
    background-color: #5a3ff5 !important;
    border-color: #5a3ff5;
}

.btn-secondary {
    background-color: #fff;
    border-color: #020034;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary:active,
.btn-secondary.active {
    background-color: #efeff0 !important;
    border-color: #020034;
}

#unauthorised_view {
    height: 100%;
}

.tooltip {
    height: 50px;
}

@-moz-keyframes spin {
    from {
        -moz-transform: rotate(0deg);
    }
    to {
        -moz-transform: rotate(360deg);
    }
}
@-webkit-keyframes spin {
    from {
        -webkit-transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
    }
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
@keyframes moveMe {
    0% {
        transform: scale(0.1);
        opacity: 0;
    }
    60% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
    }
}

.logo-spinner {
    width: 115px;
    height: 120px;
    background-repeat: no-repeat;
    background-image: url(/b16c5f0155156ef03966.png);
    margin: 100px auto;
    position: relative;
    animation: flip 1.2s infinite alternate;
}

@-webkit-keyframes sk-rotateplane {
    0% {
        -webkit-transform: perspective(120px);
    }
    50% {
        -webkit-transform: perspective(120px) rotateY(180deg);
    }
    100% {
        -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
    }
}

@keyframes sk-rotateplane {
    0% {
        transform: perspective(120px) rotateX(0deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    }
    50% {
        transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
        -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    }
    100% {
        transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
        -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    }
}

@-webkit-keyframes flash {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

@keyframes flash {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.1;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeOutColor {
    from {
        opacity: 1;
        background-color: #ccc;
    }

    to {
        opacity: 0;
        background-color: #f5f5f5;
    }
}

@keyframes fadeOutColor {
    from {
        opacity: 0;
        background-color: #ccc;
    }

    to {
        opacity: 1;
        background-color: #f5f5f5;
    }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Youtube embed
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

@media only screen and (max-width: 475px) {
    .youtube-video {
        width: 265px;
        height: 148px;
    }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Message
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.message-text {
    /* color: white; */
    font-size: 1em;
}

.well {
    padding: 8px;
    border: none;
}

.top-buffer {
    margin-top: 20px;
}

.redtext {
    color: red;
}

#app {
    height: 100%;
}

#login_container {
    height: 100%;
    overflow: auto;
    background: #f5f5f5;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Buttons
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.center-div {
    margin: auto;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Text
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.ellipsis,
.ellipsis p {
    text-overflow: ellipsis;
    overflow: hidden;
}

.rn-animation-icon {
    background-size: contain;
    height: 40px;
    width: 40px;
    display: inline-block;
    /* margin-bottom: -3px; */
    margin-right: 5%;
    animation: spin 1.2s infinite alternate;
}

.center-div {
    margin-left: auto;
    margin-right: auto;
    display: block;
}

@charset "UTF-8";

@keyframes example {
	from {background-color: #e74c3c;}
	to {background-color: yellow;}
}

.validation-message {
	animation-name: shake;
	animation-duration: 1s;
}

.validation-message::-webkit-input-placeholder {
	color: white;
}
/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Homepage
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.logoroundedback {
    border-radius: 8px;
    background: transparent;
    padding: 1px;
    width: 130px;
    height: 35px;
    margin-left: auto;
    margin-right: auto;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Login
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

 .panel-login {
	border-color: #ccc;
	border-width: 1px 1px 4px 1px;
}

.panel-title button {
	width: 100%;
}

.panel-login > .panel-heading hr {
	margin-top: 10px;
    margin-bottom: 0px;
    clear: both;
    border: 0;
    height: 1px;
	background-image: -webkit-linear-gradient(left,rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.15),rgba(0, 0, 0, 0));
}

.terms {
    text-decoration: underline;
    color: #888;
}

#pdf-btn {
	margin-top: 5%;
}

.version-text {
    color: #455D7A;
    font-size: 10pt;
}

.panel-body .message-container {
	padding-left: 15px;
	padding-right: 15px;
}

.panel-login .panel-heading p {
	font-size: 1em;
	font-weight: 500;
}

.panel-login {
	box-shadow: 0 16px 14px 0 rgba(12, 0, 51, 0.1);
}
/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Requests
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

 #logged_in_layout {
    height: 100%;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Requests
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.title-error{
    color: #e74c3c;
}

  /* Basic styles for the modal */
  .confirm-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
    overflow: scroll;
  }

  .confirm-box {
    background: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    max-width: 400px;
    width: 100%;
    margin: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: box-shadow 0.3s ease;    
  }

  .confirm-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: space-around;
  }

  .confirm-buttons button {
    min-width: 100px;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    font-weight: 500;
    font-size: 0.9375rem;
    line-height: 1.33;
    color: rgb(255, 255, 255);
    text-transform: none;
    position: relative;
    box-shadow: none;
    padding: 10px 22px;
  }

  .confirm-buttons button.btn-cancel {
    color: rgb(2, 0, 52);
    padding: 8px 11px;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1), border-color 250ms cubic-bezier(0.4, 0, 0.2, 1), color 250ms cubic-bezier(0.4, 0, 0.2, 1);
    background-color: transparent;
    outline: 0px;
    border: 0px;
    margin: 0px;
}

  .confirm-buttons button.btn-cancel:focus, 
  .confirm-buttons button.btn-cancel:hover, 
  .confirm-buttons button.btn-cancel:active {
    background-color: lightgray !important;
    color: rgb(2, 0, 52) !important;
}

.btn {
    border-radius: 10px;
    font-size: 15px;
}

.btn-outline {
    background-color: rgb(255, 255, 255);
    color: rgb(2, 0, 52);
    border-color: rgba(2, 0, 52, 0.5);
}

.btn-outline:hover {   
    background-color: rgb(247, 246, 255);    
}


.form-control {
    border-radius: 7px;;
}


.btn-group-lg>.btn, .btn-lg {
    padding: 10px 22px;
    font-size: 15px;
    line-height: 1.3333333;
    border-radius: 10px;
}

.well-lg {
    border-radius: 10px;
    box-shadow: none;
    -webkit-box-shadow: none;
}


.alert {
    border-radius: 10px;
    font-size: 15px;
}

.font-weight-500 {
    font-weight: 500;
}

#g2-write-a-review-button {
 background-color: #5a3ff5 !important;
 border-color: #5a3ff5 !important;
 border-radius: 10px !important;
 color: #fff !important;
 position: relative !important;
 width: -webkit-fill-available !important;
 display: block !important;
font-size: 15px !important;
 padding: 10px 22px !important;
 font-weight: normal !important;
 min-height: 22px !important;
}

/* Slightly lighter red colour than normal bootstrap colour */
.alert-danger {
    background-color: #f5e5e5;
}

input.alert-danger {
    color: #555 !important;
}

.alert-danger::placeholder {
    color: #a94442 !important;
    opacity: 0.6;
}


/* MultiSelect */
.multiselect-options .option {
    padding: 6px 7px;
    border: 1px solid #ccc;
    border-radius: 20px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s;
    font-size: 14px;
}
.multiselect-options .selected {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
}

/* Continuum Slider */
.form-group input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
    margin-top: 6px;
    padding: 0 !important;
    box-shadow: none !important;
    webkit-box-shadow: none !important;
    border: none !important;
}

.form-group input[type=range]:hover {
    opacity: 1;
}

.form-group input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
}

.form-group input[type=range]::-moz-range-thumb {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #007bff;
    cursor: pointer;
}

/*Form Wizard*/
.bs-wizard {
    margin-top: 0px;
}
.bs-wizard {
    border-bottom: solid 0px #e0e0e0;
    padding: 0 0 0 0;
}
.bs-wizard > .bs-wizard-step {
    padding: 0;
    position: relative;
}
.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
    color: #595959;
    font-size: 16px;
    margin-bottom: 5px;
}
.bs-wizard > .bs-wizard-step .bs-wizard-info {
    color: #999;
    font-size: 14px;
}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
    position: absolute;
    width: 30px;
    height: 30px;
    display: block;
    background: #5a3ff5;
    top: 45px;
    left: 50%;
    margin-top: -15px;
    margin-left: -15px;
    border-radius: 50%;
}
.bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
    content: ' ';
    width: 14px;
    height: 14px;
    background: #233142;
    border-radius: 50px;
    position: absolute;
    top: 8px;
    left: 8px;
}
.bs-wizard > .bs-wizard-step > .progress {
    position: relative;
    border-radius: 0px;
    height: 8px;
    box-shadow: none;
    margin: 20px 0;
    background-color: #d4d4d6;
}
.bs-wizard > .bs-wizard-step > .progress > .progress-bar {
    width: 0px;
    box-shadow: none;
    background: #5a3ff5;
}
.bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {
    width: 100%;
}
.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
    width: 50%;
}
.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
    width: 0%;
}
.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
    width: 100%;
}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
    background-color: #d4d4d6;
}
.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
    opacity: 0;
}
.bs-wizard > .bs-wizard-step:first-child > .progress {
    left: 50%;
    width: 50%;
}
.bs-wizard > .bs-wizard-step:last-child > .progress {
    width: 50%;
}
.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
    pointer-events: none;
}
/*END Form Wizard*/

.email-header {
    margin: 10px 0 10px;
    font-size: 13pt;
    text-align: center;
}

.nomarginlr {
    margin-left: 0px;
    margin-right: 0px;
    margin-bottom: 15px;
}

.nomarginlr .col-xs-2 {
    width: 16.6666% !important;
}

.nomarginlr .col-xs-3 {
    width: 25% !important;
}

.nomarginlr .col-xs-4 {
    width: 33.3333% !important;
}

.nomarginlr .col-xs-5 {
    width: 41.6666% !important;
}

.nomarginlr .col-xs-6 {
    width: 50% !important;
}

.y-scroll {
    overflow-y: scroll;
}

.centerblock {
    margin: auto;
    display: block;
    background-image: none;
}

.formwell {
    background-color: #ffffff;
    padding: 15px;
    /* box-shadow: 0 16px 14px 0 rgba(12, 0, 51, 0.1); */
    /* border-color: #ccc; */
    border-width: 1px 1px 3px 1px;
}

#emailform_container {
    height: 100%;
    overflow: auto;
    background: #f5f5f5;
}

.top-wizard-progress-bar-container {
    margin-top: 7px;
    margin-bottom: 15px;
    width: 100%;
    display: flex;
    gap: 8px;
    padding-left: 50px;
    padding-right: 50px;
}

.top-wizard-progress-bar {
    width: 33%;
    height: 7px;
    background-color: rgb(228, 228, 230);
    border-radius: 100px;
}

.top-wizard-progress-bar.active, .top-wizard-progress-bar.complete {
    width: 100%;
    height: 7px;
    border-radius: 100px;
    background: linear-gradient(43.65deg, rgb(95, 62, 255) 16.05%, rgb(101, 65, 255) 31.93%, rgb(120, 73, 255) 54.17%, rgb(152, 88, 255) 80.64%, rgb(195, 108, 255) 110.29%, rgb(215, 117, 255) 121.93%);
}
.user-headings,
.user-headings label,
.team-headings,
.team-headings label {
    padding-left: 1px;
}

.user-headings,
.team-headings {
    margin-bottom: 2%;
}

label {
    margin-left: 0;
}

.usr-enabled-label {
    text-align: center;
}

.editBtns {
    display: flex;
}

.editBtns .btn {
    padding: 8px 15px;
    background-color: #c0c0c0;
}

#editCancelBtn {
    margin-left: 4%;
}

.editable-user-row,
.add-user-row,
.editable-team-row,
.add-team-row {
    margin-bottom: 0;
    padding: 0;
    max-height: 45px;
}

.editable-user-row .form-group,
.add-user-row .form-group,
.editable-team-row .form-group,
.add-team-row .form-group {
    margin-bottom: 5px;
    margin-top: 5px;
}

.editable-item {
    padding-left: 0 !important;
    padding-right: 5px !important;
}

#add_user_name,
#add_team_name {
    margin-top: 0;
    padding-left: 0;
}

#add_user_btn,
#add_team_btn {
    margin-top: 5px;
}

.checkboxThree {
    width: 85px;
    height: 40px;
    background: #333;
    border-radius: 50px;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.checkboxThree:before {
    content: 'On';
    position: absolute;
    top: 12px;
    left: 10px;
    height: 2px;
    color: #26ca28;
    font-size: 14px;
}

.checkboxThree:after {
    content: 'Off';
    position: absolute;
    top: 12px;
    left: 50px;
    height: 2px;
    color: white;
    font-size: 14px;
}

.checkboxThree label {
    display: block;
    width: 31px;
    height: 24px;
    border-radius: 50px;
    transition: all 0.5s ease;
    cursor: pointer;
    position: absolute;
    top: 9px;
    z-index: 1;
    left: 6px;
    background: #ddd;
}

.checkboxThree input[type='checkbox']:checked + label {
    left: 45px;
    background: #26ca28;
}

.roundedTwo input[type='checkbox'] {
    font-size: 12pt;
}

.editable-user-row .form-control,
.add-user-row .form-control {
    font-size: 12.5px;
    height: 40px;
    padding: 0px 7px;
}

.static-user-row > div,
.static-team-row > div {
    padding-left: 0;
}

#users-row .row .user-list-item:hover,
#teams-row .row .team-list-item:hover {
    background-color: #f2f2f2;
}

#users-row .row .user-list-item,
#teams-row .row .team-list-item {
    background-color: #fff;
    color: #2c3e50;
}

#users-row .row:not(:last-child) .user-list-item:not(:last-child),
#teams-row .row:not(:last-child) .team-list-item:not(:last-child) {
    border-bottom: 1px solid #ccc;
}

#users_list,
#teams_list {
    display: inline-block;
}

.getting-started {
    max-height: 50%;
}

.jumbotron h3 {
    font-size: 20px;
}
.jumbotron p {
    font-size: 18px;
}

.jumbotron {
    padding-left: 30px;
    padding-right: 30px;
}

@media only screen and (min-width: 768px) {
    .getting-started {
        max-height: 45%;
    }

    .jumbotron p {
        font-size: 18px;
    }

    .container .jumbotron,
    .container-fluid .jumbotron {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .getting-started {
        max-height: 50%;
    }
}

@media only screen and (max-width: 368px) {
    .getting-started {
        max-height: 45%;
    }
}

.static-text {
    padding: 3%;
    font-size: 15.5px;
    height: 40px;
    line-height: 32px;
    margin-bottom: 5px;
}

.static-text p {
    text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap;
    margin: 0;
}

.usr-enabled-input {
    display: flex;
}

.add-user-btns,
.add-team-btns {
    display: flex;
}

#close_user_btn,
#close_team_btn {
    margin-left: 4%;
    top: 0;
    margin-top: 5px;
    width: 45px;
}

#add_user_btns_div {
    margin-top: 0%;
}

.add-team-row {
    display: block;
}

.roundedTwo {
    margin: auto;
    margin-top: 12px;
}

.usr-enabled-input.col-sm-1 .roundedTwo {
    width: 48px;
    height: 28px;
    position: relative;
    margin: 30% 50%;
}

.usr-enabled-input .static-text {
    margin: auto;
}

#users_list,
#teams_list {
    overflow: auto;
    max-height: 80%;
    width: 100%;
}

#users-row,
#teams-row {
    height: 80%;
}

.admin-heading {
    font-weight: 500;
    font-size: 1.3em;
}

.admin-heading i:before {
    font-size: 0.8em;
}

@media only screen and (max-height: 650px) {
    #users-row,
    #teams-row {
        height: 70%;
    }
}

@media only screen and (max-height: 530px) {
    #users-row,
    #teams-row {
        height: 60%;
    }
}

@media only screen and (max-height: 450px) {
    #users-row,
    #teams-row {
        height: 50%;
    }
}

.editBtn {
    visibility: hidden;
}

@media only screen and (max-device-width: 1024px) {
    .editBtn {
        visibility: visible;
    }
}

@media only screen and (max-width: 767px) {
    #users_list,
    #teams_list {
        max-height: 90%;
    }

    .roundedTwo {
        width: 48px;
        height: 28px;
        position: relative;
        margin: 8% auto;
    }

    .usr-enabled-input.col-sm-1 .roundedTwo {
        width: 48px;
        height: 28px;
        position: relative;
        margin: 8% auto;
    }

    .static-text-value {
        margin-top: -9% !important;
    }

    .static-text {
        line-height: 42px;
    }

    .static-user-row {
        margin-bottom: 5%;
    }

    .editable-user-row .form-group,
    .add-user-row .form-group,
    .editable-team-row .form-group,
    .add-team-row .form-group {
        margin-bottom: unset;
        margin-top: unset;
    }

    .editable-user-row,
    .add-user-row,
    .editable-team-row,
    .add-team-row {
        max-height: unset;
    }

    .usr-mobile-enabled {
        margin-top: 3%;
    }

    .roundedTwo {
        margin: 0;
        margin-left: 12px;
        margin-top: -7px;
    }

    .editBtns,
    .add-user-btns,
    .add-team-btns {
        display: block;
    }

    #editCancelBtn {
        margin-left: 0;
        margin-top: 3%;
    }

    .editable-user-row {
        margin-top: 5%;
        margin-bottom: 3%;
    }

    .editable-team-row,
    .add-team-row {
        margin-bottom: 6%;
        margin-top: 2%;
    }

    .editable-user-row .col-xs-6 {
        padding-left: 0;
    }

    .user-list-buttons {
        margin-top: 7%;
    }

    .editable-text-label {
        margin-bottom: 0;
    }

    .editable-user-row .rolename .form-group,
    .add-user-row .rolename .form-group {
        width: 100%;
    }

    #close_user_btn,
    #close_team_btn {
        margin-left: 0;
    }

    #add_user_btns_div {
        margin-top: 3%;
    }

    .add-team-row {
        display: flex;
    }

    #close_team_btn {
        margin-top: 1px;
    }

    #add_team_btn {
        margin-top: 0;
    }

    .error-warning-icon {
        margin-top: 20px;
    }

    .editable-user-row .error-warning-icon {
        margin-top: 8px;
    }

    .editBtns,
    .add-team-btns {
        display: inline-block;
        margin-top: 5px;
    }

    .usr-enabled-input {
        display: block;
    }

    .mobile-admin-error {
        margin-top: 3%;
        padding-left: 0;
        padding-right: 0;
    }

    .add-user-row {
        margin-bottom: 5px;
        margin-top: 5px;
    }

    .jumbotron p {
        font-size: 15px;
    }
}

@media only screen and (max-width: 475px) {
    .user-list-buttons {
        margin-top: 9%;
    }

    .static-text {
        line-height: 32px;
    }

    .roundedTwo {
        margin: 0;
        margin-left: 12px;
        margin-top: -7px;
    }

    #add_user_btns_div {
        margin-top: 4%;
    }

    .usr-enabled-input {
        display: block;
    }

    .editBtns,
    .add-team-btns {
        display: inline-block;
        margin-top: -5px;
    }
}

.static-enabled,
.static-disabled {
    padding: 3px 10px;
    width: 75px;
    float: none;
    margin-top: 0;
    max-width: 68px;
}

.static-enabled {
    background-color: rgba(6, 173, 6, 0.75);
}

.static-disabled {
    background-color: rgba(251, 25, 0, 0.91);
}

#users_list,
#teams_list {
    list-style: none;
    padding: 0;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.static-email,
#userEmailInput {
    font-size: 0.7em;
    overflow-x: auto !important;
    text-overflow: clip !important;
}

.static-email::-webkit-scrollbar {
    background: transparent;
}

.saving-spinner .admin-spinner .la-ball-8bits {
    margin-top: 0;
}

.saving-spinner {
    display: inline-flex;
}

.saving-text {
    padding-left: 0;
}

.error-container-user {
    display: inline-block;
    height: 45px;
    margin-left: -2%;
}

.editable-user-row .form-control#userEmailInput {
    font-size: 10.5px;
    text-overflow: ellipsis;
    overflow-x: hidden;
    white-space: nowrap;
}

.team-list-item.rubberBand p {
    color: #eee;
}

.updateRowSuccess {
    -webkit-animation: background 2.5s cubic-bezier(1, 0, 0, 1);
    animation: background 2.5s cubic-bezier(1, 0, 0, 1);
}

@-webkit-keyframes background {
    from {
        background-color: #12b636;
        color: #fff;
        border-radius: 5px;
    }
    to {
        background-color: #fff;
        color: #2c3e50;
        border-radius: 0;
    }
}

@keyframes background {
    from {
        background-color: #12b636;
        color: #fff;
        border-radius: 5px;
    }
    to {
        background-color: #fff;
        color: #2c3e50;
        border-radius: 0;
    }
}

.user-list-row:hover > .user-list-buttons > .editBtn,
.team-list-row:hover > .team-list-buttons > .editBtn {
    visibility: visible;
}

.users-container,
.teams-container {
    margin-right: 0;
    height: 100%;
    margin-left: 5%;
}

.users-container,
.teams-container {
    position: fixed;
}

#admin_container {
    height: calc(100vh - 60px);
    display: flex;
    position: fixed;
    overflow: auto;
    width: 100%;
}

.error-warning-icon {
    height: 50px;
    position: relative;
}

.error-warning-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.7em;
    color: red;
}

.list-spinner .admin-spinner {
    margin-left: auto;
    margin-right: auto;
}

#add_user_spinner,
#add_team_spinner {
    margin-left: 15%;
}

#add_user_btn,
#add_team_btn {
    width: 45px;
}

.credits-view,
.subscriptions-view,
.plans-view,
.cancel-view,
.credits-topup-view {
    position: relative;
    padding: 15px 15px 15px;
    margin-right: 0;
    margin-left: 0;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    border-radius: 4px 4px 0 0;
    margin-bottom: 20px;
}

.credits-topup-view .thumbnail {
    padding: 10px;
}

.credits-view .title,
.credits-topup-view .title {
    font-size: 12px;
    font-weight: 700;
    color: #959595;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.plans-step {
    position: relative;
    padding: 45px 15px 15px;
    margin-right: 0;
    margin-left: 0;
    background-color: #ffffff;
    border-radius: 4px 4px 0 0;
    margin-bottom: 20px;
}

.plans-step:after {
    position: absolute;
    top: 15px;
    left: 15px;
    font-size: 12px;
    font-weight: lighter;
    color: #959595;
    text-transform: uppercase;
    letter-spacing: 1px;
    content: 'Step 1 - Choose your credits';
}

.plans-step#step1:after {
    content: 'Step 1 - Choose your credits';
}

.plans-step#step2:after {
    content: 'Step 2 - Choose your plan';
}

.plans-step#step3:after {
    content: 'Step 3 - Total Cost';
}

.price-list {
    padding-left: 0;
    padding-right: 0;
}

.discount {
    color: green;
}

#plan_title {
    margin: 0;
}

.price-list.costs {
    font-weight: 500;
}

.info-message {
    width: 95%;
    padding-top: 1%;
    padding-bottom: 1%;
}

#editAcceptBtn,
#editCancelBtn,
#add_team_btn,
#close_team_btn {
    height: 45px;
    width: 45px;
}

#editUserBtn {
    height: 45px;
    width: 45px;
}

#credits-topup-input {
    margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
    .users-container,
    .teams-container {
        height: 95%;
    }

    #editTeamBtn {
        height: 45px;
        width: 45px;
    }

    .team-list-row {
        margin-top: 1%;
        margin-bottom: 1%;
    }
}

.admin-footer {
    display: block;
    height: 20px;
    width: 100%;
    position: fixed;
    bottom: 0;
    background-color: #243242;
}

.question-profile-homepage {
    width: 100%;
    overflow-y: hidden;
}

.question-profile-container {
    height: 100%;
}

#profiles_list {
    list-style: none;
    padding: 0;
    border: 1px solid #efecec;
    flex-grow: 1;
    overflow: auto;
}

#profiles_list p {
    margin-bottom: 4.5px;
}

#profiles_list > li {
    padding: 10px;
    border-top: 1px solid #efecec;
    cursor: pointer;
}

#profiles_list > li:first-child {
    border-top: none;
}

#profiles_list > li div {
    position: relative;
}

#profiles_list li:hover {
    background-color: #e7e8e8;
}

#profiles_list li.selected {
    background-color: #f5f5f5;
    border-left: 5px #5a3ff5 solid;
}

#profiles_list li.selected .subtitle {
    color: #9c9a9a;
}

.profile-heading .profile-name {
    margin-top: 10px;
}

.title-header {
    font-size: 0.9em;
    font-weight: 500;
    color: #3b73af;
}

.subtitle {
    font-size: 0.8em;
    font-weight: 400;
    color: #9c9a9a;
}

/* #profiles_questions {
    height: calc(100% - 60px);
    border: 1px solid #eee;
    padding-left: 0;
    margin-left: -16px;
    overflow-y: auto;
    background-color: #f5f5f5;
    border-left: none;
    padding-bottom: 20px;
} */

#profiles_questions.highlight-class {
    pointer-events: none;
}

/* #profiles {
    height: calc(100% - 60px);
    padding-bottom: 15px;
    display: flex;
    flex-direction: column;
} */

.message-info-well {
    margin-top: 15px;
    text-align: center;
}

.message-info-well .well {
    background-color: #fff;
}

.message-info-well p {
    margin: 10px 0;
}

@media (max-width: 767px) {
    .question-profile-homepage {
        overflow-y: auto;
    }

    #profiles_questions {
        margin-left: 15px;
        margin-right: 15px;
        width: -webkit-fill-available;
    }
}

#profiles_questions .profile-heading {
    margin-left: 0;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 10px;
}

#questions_list {
    list-style: none;
    padding-left: 15px;
}

.delete-profile {
    margin-left: 10px;
    cursor: pointer;
}

.delete-profile:hover {
    color: red;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Profiles - Create New Profile
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.add-profile-item {
    padding: 0 5px;
}

#add-profile-item-container.highlight-class {
    height: 250px;
    padding: 10px;
}

#add-profile-item-container.highlight-class .question-delete {
    pointer-events: none;
}

.profile-btn button {
    width: 100%;
}

#profile_loading {
    margin-bottom: 5px;
}

.saving {
    font-weight: 300;
}

.profile-saved {
    text-align: center;
}

.profile-saved i {
    color: #0cc30c;
    font-size: 2em;
    border-radius: 50%;
    border: 2px solid #0cc30c;
    padding: 10px;
}

.profile-saved-message {
    text-align: center;
    margin-top: 15px;
    font-size: 0.9em;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Questions - Custom
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.answer-btns,
.answer-btns-container {
    padding-left: 5px;
    padding-right: 5px;
    padding-bottom: 10px;
}

.answer-btns button {
    width: 100%;
    padding: 10px 5px;
    font-size: 0.9em;
    text-transform: capitalize;
}

.answer-btns.active .type-dropdown {
    outline: none;
    background-color: #4867fb;
    border-color: #7289f9;
    box-shadow: 0 0 25px #7289f9;
    color: white;
}

.answer-btns.active .type-text {
    outline: none;
    background-color: #402c4c;
    border-color: #8f40c1;
    box-shadow: 0 0 25px #693588;
    color: white;
}

.answer-btns.active .type-multitext {
    outline: none;
    background-color: #ff2f2f;
    border-color: #f95959;
    box-shadow: 0 0 25px #f95959;
    color: white;
}

.answer-btns.active .type-number {
    outline: none;
    background-color: #f9961d;
    border-color: #fba843;
    box-shadow: 0 0 25px #fba843;
    color: white;
}

.answers-container {
    display: flex;
    margin-left: -8px;
    margin-right: -8px;
}

.add-answer-container {
    padding: 15px 15px 0 15px;
}

.add-answer-text {
    padding-left: 0;
}

.remove-answer {
    left: 3px;
    top: 2px;
    cursor: pointer;
}

.add-question-row {
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 15px;
    border-top: 1px solid #eee;
}

.add-question-btn {
    float: right;
    margin-top: 10px;
    background-color: #2d9eff;
    border-color: #2d9eff;
    color: white;
}

.saving-question {
    float: right;
    margin-top: 10px;
}

.add-question-btn:hover {
    background-color: #1c81d8;
    border-color: #1c81d8;
}

.required-container {
    display: flex;
    flex-direction: row-reverse;
    margin-top: 5px;

    input[type='checkbox'] {
        margin: 0;
    }
}

.required-container label {
    margin: auto;
    display: table;
    margin-left: 2px;
    font-size: 15px;
}

.requiredInput {
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
}

.saving-question .profile-saved i {
    padding: 5px;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Questions - Static
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.static-question-box .thumbnail,
.static-question-box .caption {
    padding-top: 0;
    padding-bottom: 0;
}

#new-question-item.highlight-class .add-question-row,
#new-question-item.highlight-class .glyphicon {
    pointer-events: none;
}

/* addQuestionBtn */

.static-question-box .thumbnail {
    margin-bottom: 12px;
    margin-top: 12px;
}

.static-question-box .drag-n-drop-icon {
    display: none;
}

.static-question-box:hover .drag-n-drop-icon {
    display: block;
}

.question-header {
    display: inline-block;
}

.answer-type {
    padding: 3px 15px;
    background-color: aquamarine;
    color: #2c3e50;
    border-radius: 15px;
    width: auto;
    margin: auto;
    float: right;
    margin: 5.5px 0;
    text-transform: capitalize;
}

.type-text {
    background-color: #402c4c;
    border-color: #8f40c1;
    color: white;
}

.type-multitext {
    background-color: #f95959;
    border-color: #f95959;
    color: white;
}

.type-dropdown {
    background-color: #7289f9;
    border-color: #7289f9;
    color: white;
}

.type-number {
    background-color: #fba843;
    border-color: #fba843;
    color: white;
}

.question-title {
    border-bottom: 1px solid #eee;
}

.question-col {
    border-right: 1px solid #eee;
}

.question-body .question-col,
.question-body .additional-info-col {
    padding: 10px;
    min-height: 60px;
}

.question-text {
    font-size: 1em;
    font-style: italic;
}

.additional-question-info {
    margin-top: 10px;
}

.answer-badge {
    display: inline-block;
    margin-right: 4px;
}

.question-delete {
    position: absolute;
    right: 8px;
    top: -5px;
    font-size: 1.3em;
    color: red;
    z-index: 8;
}

.question-delete:hover {
    cursor: pointer;
    zoom: 1.1;
}

.add-profile-item .question-delete {
    right: 2px;
    top: -8px;
    background-color: white;
}

.delete-question div {
    margin-bottom: 10px;
}

.cancel-question-btn {
    margin-right: 5px;
}
.delete-question-btn {
    margin-left: 5px;
}

@media (max-width: 400px) {
    .additional-info-col h5 {
        margin-left: -8px;
    }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Questions - Errors
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.add-question-row .message-container {
    padding-left: 0;
    padding-right: 0;
    margin-top: 10px;
}

.add-question-row .message-container .alert {
    margin-bottom: 0;
    margin-right: 25px;
    padding: 11px;
}

@media (max-width: 768px) {
    .add-question-row .message-container .alert {
        margin-right: 0;
    }
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Profile - Delete
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.delete-profile-container {
    left: 50%;
    top: 8%;
    transform: translate(-50%);
    z-index: 30;
    position: fixed;
    padding: 2em;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.delete-profile-panel {
    z-index: 50;
}

.delete-profile-panel .panel-body {
    text-align: center;
}

.cancel-profile-btn {
    margin-right: 5px;
}

.delete-profile-btn {
    margin-left: 5px;
}

.delete-profile-container .message-container .alert-success {
    margin-top: 5px;
}

/*----------------------------------------------------------------------------------------------------------------------------------------------------
  Profile - Mobile
 ----------------------------------------------------------------------------------------------------------------------------------------------------*/

.profile-select {
    margin-bottom: 5px;
}

@media (max-width: 767px) {
    /* #profiles {
        height: unset;
    } */

    .profile-btn,
    .profile-select,
    .profile-dropdown label,
    .add-profile-item {
        padding-left: 0;
        padding-right: 0;
    }

    .add-profile-item {
        border-top: 1px solid #ccc;
        padding-top: 5px;
    }

    .add-profile-item .question-delete {
        right: -7px;
        top: 0px;
    }
}

@media (max-width: 600px) {
    .delete-profile-panel {
        top: 45%;
    }
}

#btn_mobile_tabs #pdf-btn {
	float: right;
	margin-top: 0;
}

#btn_mobile_tabs {
	margin: 1% 0;
}
#vanillatoasts-container {
    position: fixed;
    width: 320px;
    font-weight: 400;
    pointer-events: none;
    z-index: 10000;
}
.toasts-top-right {
    top: 60px;
    right: 0;
}
.toasts-top-left {
    left: 0;
    top: 0;
}
.toasts-bottom-left {
    left: 0;
    bottom: 0;
}
.toasts-bottom-right {
    bottom: 0;
    right: 0;
}
.toasts-top-center {
    left: 0;
    top: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
.toasts-bottom-center {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
.vanillatoasts-toast {
    position: relative;
    padding: 16px 24px;
    margin: 20px;
    border-radius: 10px;
    cursor: pointer;
    animation-duration: 0.3s;
    animation-name: VanillaToasts;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    pointer-events: all;
    box-shadow: 0 0 8px 1px #0000001c;
    background-color: #fff;
    color: #000;
}

.vanillatoasts-toast:after {
    border-right: 5px solid #de2301;
    content: '';
    padding-top: 53px;
    left: -2px;
    top: 20%;
    position: absolute;
    border-radius: 10px;
}

.vanillatoasts-fadeOut {
    animation-name: VanillaToastsFadeOut;
    animation-duration: 0.3s;
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-fill-mode: forwards;
}

#vanillatoasts-container p,
#vanillatoasts-container h4 {
    margin: 4px 0 !important;
}

.vanillatoasts-title {
    font-size: 15px;
    margin-bottom: 10px;
}

.vanillatoasts-text {
    font-size: 14px;
    color: #777;
    white-space: pre-wrap;
}

.vanillatoasts-icon {
    position: absolute;
    top: 5px;
    left: -40px;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    background: #fff;
}

.vanillatoasts-toast a,
.vanillatoasts-toast a:hover {
    color: #549edb !important;
    text-decoration: none !important;
}

/** toast types */
.vanillatoasts-success:after {
    border-right-color: #75fba8;
}

.vanillatoasts-warning:after {
    border-right-color: #ff934a;
}

.vanillatoasts-error:after {
    border-right-color: #de2301;
}

.vanillatoasts-info:after {
    border-right-color: #c0d6ef;
}

@keyframes VanillaToasts {
    from {
        transform: translate3d(400px, 0, 0);
        opacity: 0;
    }
    to {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes VanillaToastsFadeOut {
    from {
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
    to {
        transform: translate3d(400px, 0, 0);
        opacity: 0;
    }
}

/* IMPORTANT DO NOT REMOVE 
- This is here for the purpose of ensuring the phone dropdown appears above other dropdowns
*/

.iti__country-list {
    z-index: 100;
}

.iti.iti--allow-dropdown {
    width: calc(100% - 58px);
}

/* IMPORTANT DO NOT REMOVE
- This is here to remove the box shadow / underline that appears in the bottom sheet component
*/

[data-rsbs-header] {
    box-shadow: none !important;
}


/*# sourceMappingURL=main.46a6fdf5cb1f8b009a5e.css.map*/