@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2015 Daniel Eden
*/

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

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

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

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

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

@keyframes bounce {

    0%,
    20%,
    53%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
        transform: translate3d(0, 0, 0);
    }

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

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

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

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

@keyframes flash {

    0%,
    50%,
    100% {
        opacity: 1;
    }

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

.flash {
    animation-name: flash;
}

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

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

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

    100% {
        transform: scale3d(1, 1, 1);
    }
}

.pulse {
    animation-name: pulse;
}

@keyframes rubberBand {
    0% {
        transform: scale3d(1, 1, 1);
    }

    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(.95, 1.05, 1);
    }

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

    100% {
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    animation-name: rubberBand;
}

@keyframes shake {

    0%,
    100% {
        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 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);
    }

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

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

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

    10%,
    20% {
        transform: scale3d(.9, .9, .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);
    }

    100% {
        transform: scale3d(1, 1, 1);
    }
}

.tada {
    animation-name: tada;
}

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

@keyframes wobble {
    0% {
        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);
    }

    100% {
        transform: none;
    }
}

.wobble {
    animation-name: wobble;
}

@keyframes jello {
    11.1% {
        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)
    }

    100% {
        transform: none
    }
}



.jello {
    animation-name: jello;

    transform-origin: center
}

@keyframes bounceIn {

    0%,
    20%,
    40%,
    60%,
    80%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

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

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

    40% {
        transform: scale3d(.9, .9, .9);
    }

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

    80% {
        transform: scale3d(.97, .97, .97);
    }

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

.bounceIn {
    animation-name: bounceIn;
}

@keyframes bounceInDown {

    0%,
    60%,
    75%,
    90%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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);
    }

    100% {
        transform: none;
    }
}

.bounceInDown {
    animation-name: bounceInDown;
}

@keyframes bounceInLeft {

    0%,
    60%,
    75%,
    90%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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);
    }

    100% {
        transform: none;
    }
}

.bounceInLeft {
    animation-name: bounceInLeft;
}

@keyframes bounceInRight {

    0%,
    60%,
    75%,
    90%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    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);
    }

    100% {
        transform: none;
    }
}

.bounceInRight {
    animation-name: bounceInRight;
}

@keyframes bounceInUp {

    0%,
    60%,
    75%,
    90%,
    100% {
        animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
    }

    0% {
        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);
    }

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

.bounceInUp {
    animation-name: bounceInUp;
}

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

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

    100% {
        opacity: 0;
        transform: scale3d(.3, .3, .3);
    }
}

.bounceOut {
    animation-name: bounceOut;
}

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

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

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

.bounceOutDown {
    animation-name: bounceOutDown;
}

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

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

.bounceOutLeft {
    animation-name: bounceOutLeft;
}

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

    100% {
        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);
    }

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

.bounceOutUp {
    animation-name: bounceOutUp;
}

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

    100% {
        opacity: 1;
    }
}

.fadeIn {
    animation-name: fadeIn;
}

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

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

.fadeInDown {
    animation-name: fadeInDown;
}

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

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

.fadeInDownBig {
    animation-name: fadeInDownBig;
}

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

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

.fadeInLeft {
    animation-name: fadeInLeft;
}

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

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

.fadeInLeftBig {
    animation-name: fadeInLeftBig;
}

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

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

.fadeInRight {
    animation-name: fadeInRight;
}

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

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

.fadeInRightBig {
    animation-name: fadeInRightBig;
}

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

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

.fadeInUp {
    animation-name: fadeInUp;
}

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

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


.animate-fadeInUp {
    animation: fadeInUp 0.5s ease-out forwards;
}

.fadeInUpBig {
    animation-name: fadeInUpBig;
}

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

    100% {
        opacity: 0;
    }
}

.fadeOut {
    animation-name: fadeOut;
}

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

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

.fadeOutDown {
    animation-name: fadeOutDown;
}

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

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

.fadeOutDownBig {
    animation-name: fadeOutDownBig;
}

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

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

.fadeOutLeft {
    animation-name: fadeOutLeft;
}

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

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

.fadeOutLeftBig {
    animation-name: fadeOutLeftBig;
}

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

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

.fadeOutRight {
    animation-name: fadeOutRight;
}

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

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

.fadeOutRightBig {
    animation-name: fadeOutRightBig;
}

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

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

.fadeOutUp {
    animation-name: fadeOutUp;
}

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

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

.fadeOutUpBig {
    animation-name: fadeOutUpBig;
}

@keyframes flip {
    0% {
        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(.95, .95, .95);
        animation-timing-function: ease-in;
    }

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

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

@keyframes flipInX {
    0% {
        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);
    }

    100% {
        transform: perspective(400px);
    }
}

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

@keyframes flipInY {
    0% {
        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);
    }

    100% {
        transform: perspective(400px);
    }
}

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

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

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

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

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

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

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

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

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

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

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

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

    100% {
        transform: none;
        opacity: 1;
    }
}

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

@keyframes lightSpeedOut {
    0% {
        opacity: 1;
    }

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

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

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

    100% {
        transform-origin: center;
        transform: none;
        opacity: 1;
    }
}

.rotateIn {
    animation-name: rotateIn;
}

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

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

.rotateInDownLeft {
    animation-name: rotateInDownLeft;
}

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

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

.rotateInDownRight {
    animation-name: rotateInDownRight;
}

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

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

.rotateInUpLeft {
    animation-name: rotateInUpLeft;
}

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

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

.rotateInUpRight {
    animation-name: rotateInUpRight;
}

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

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

.rotateOut {
    animation-name: rotateOut;
}

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

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

.rotateOutDownLeft {
    animation-name: rotateOutDownLeft;
}

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

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

.rotateOutDownRight {
    animation-name: rotateOutDownRight;
}

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

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

.rotateOutUpLeft {
    animation-name: rotateOutUpLeft;
}

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

    100% {
        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;
    }

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

.hinge {
    animation-name: hinge;
}

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

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

    100% {
        opacity: 1;
        transform: none;
    }
}

.rollIn {
    animation-name: rollIn;
}

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

@keyframes rollOut {
    0% {
        opacity: 1;
    }

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

.rollOut {
    animation-name: rollOut;
}

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

    50% {
        opacity: 1;
    }
}

.zoomIn {
    animation-name: zoomIn;
}

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

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

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

.zoomInStable {
    animation-name: zoomInStable;
}

@keyframes zoomInDown {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -1000px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

.zoomInDown {
    animation-name: zoomInDown;
}

@keyframes zoomInLeft {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(-1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

.zoomInLeft {
    animation-name: zoomInLeft;
}

@keyframes zoomInRight {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(1000px, 0, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

.zoomInRight {
    animation-name: zoomInRight;
}

@keyframes zoomInUp {
    0% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 1000px, 0);
        animation-timing-function: cubic-bezier(0.550, 0.055, 0.675, 0.190);
    }

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

.zoomInUp {
    animation-name: zoomInUp;
}

@keyframes zoomOut {
    0% {
        opacity: 1;
    }

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

    100% {
        opacity: 0;
    }
}

.zoomOut {
    animation-name: zoomOut;
}

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

    100% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, 2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutDown {
    animation-name: zoomOutDown;
}

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

    100% {
        opacity: 0;
        transform: scale(.1) translate3d(-2000px, 0, 0);
        transform-origin: left center;
    }
}

.zoomOutLeft {
    animation-name: zoomOutLeft;
}

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

    100% {
        opacity: 0;
        transform: scale(.1) translate3d(2000px, 0, 0);
        transform-origin: right center;
    }
}

.zoomOutRight {
    animation-name: zoomOutRight;
}

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

    100% {
        opacity: 0;
        transform: scale3d(.1, .1, .1) translate3d(0, -2000px, 0);
        transform-origin: center bottom;
        animation-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    }
}

.zoomOutUp {
    animation-name: zoomOutUp;
}

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

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

.slideInDown {
    animation-name: slideInDown;
}

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

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

.slideInLeft {
    animation-name: slideInLeft;
}

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

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

.slideInRight {
    animation-name: slideInRight;
}

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

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

.slideInUp {
    animation-name: slideInUp;
}

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

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

.slideOutDown {
    animation-name: slideOutDown;
}

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

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

.slideOutLeft {
    animation-name: slideOutLeft;
}

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

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

.slideOutRight {
    animation-name: slideOutRight;
}

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

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

.slideOutUp {
    animation-name: slideOutUp;
}

@keyframes anime {
    from {
        opacity: 0;
        transform: scaleY(0);
        -webkit-transform: scaleY(0);
        -moz-transform: scaleY(0);
        -ms-transform: scaleY(0);
        -o-transform: scaleY(0);
    }

    to {
        opacity: 1;
        transform: scaleY(1);
        -webkit-transform: scaleY(1);
        -ms-transform: scaleY(1);
        -o-transform: scaleY(1);
        -moz-transform: scaleY(1);
    }
}
/* 
Ace Responsive Menu Plugin
Version: 1.0
Author: Samson Onna
E-mail: samson3d@gmail.com
----------------------------------------*/
/* Ace Responsive Menu
----------------------------------------*/
a {
    color: #0d638f;
    text-shadow: none;
}
.ace-responsive-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: transparent;
    width: auto;
}
.ace-responsive-menu li {
    list-style: none;
}
.ace-responsive-menu > li {
    border: 0px;
    display: inline-block;
    margin: 0;
    padding: 0;
    text-align: left;
}
.ace-responsive-menu > li > a.active span {
    color: #ffffff;
}
.ace-responsive-menu > li > a {
    border: 0px;
    display: block;
    margin: 0;
    padding: 18px 20px 18px 5px ;
        padding-top: 18px !important ;
    padding-bottom: 18px !important;

    position: relative;
    text-decoration: none;
    text-transform: capitalize;
}
.menu-without-paddingy > li > a{
    padding-top: 7px !important ;
    padding-bottom: 7px !important;
}

.ace-responsive-menu li a i {
    padding-right: 5px;
}
.ace-responsive-menu > li > a i {
    font-size: 16px;
    text-shadow: none;
}
.ace-responsive-menu li.menu-active > a {
    color: #fff;
}
.ace-responsive-menu li .menu-active {
    position: relative;
}
.ace-responsive-menu > li > a > .arrow:before {
    content: "\f107";
    display: inline-block;
    font-family: "Font Awesome 6 Pro";
    font-size: 16px;
    font-weight: 300;
    height: auto;
    /* margin-left: 8px; */
    text-shadow: none;
    width: 10px;
    vertical-align: middle;
}
.ace-responsive-menu li ul.sub-menu li > a > .arrow:before {
    content: "\f105" !important;
}
.ace-responsive-menu > li > ul.sub-menu {
    display: none;
    list-style: none;
    clear: both;
    margin: 0;
    position: absolute;
}

.ace-responsive-menu > li:hover > ul.sub-menu {
    display: block;
}

.ace-responsive-menu li ul.sub-menu {
    background: #333;
}
.ace-responsive-menu li ul.sub-menu > li {
    width: 185px;
}
.ace-responsive-menu li ul.sub-menu li a {
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 35px;
}
.ace-responsive-menu li ul.sub-menu li a i {
    padding-right: 10px;
}
.ace-responsive-menu > li > ul.sub-menu > li {
    position: relative;
}
.ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu {
    position: absolute;
    left: 260px;
    top: 0px;
    display: none;
    list-style: none;
}

.ace-responsive-menu > li > ul.sub-menu > li:hover ul.sub-menu {
    display: block;
}

.ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
    position: absolute;
    left: 185px;
    top: 0px;
    display: none;
    list-style: none;
}
.ace-responsive-menu > li > ul.sub-menu li > a > .arrow:before {
    float: right;
    display: inline;
    font-size: 16px;
    font-family: "Font Awesome 6 Pro";
    height: auto;
    content: "\f104";
    font-weight: 600;
    text-shadow: none;
}
.menu-toggle {
    display: none;
    float: left;
    width: 100%;
    background: #333;
}
.menu-toggle:focus {
    outline: none;
}
.menu-toggle h3 {
    float: left;
    color: #fff;
    padding: 0px 10px;
    font-weight: 600;
    font-size: 16px;
}
.menu-toggle .icon-bar {
    display: block !important;
    width: 18px;
    height: 2px;
    background-color: #0f0f0f !important;
    border-radius: 1px;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.25);
    margin: 3px;
}
.menu-toggle .icon-bar:hover {
    background-color: #0f0f0f !important;
}
.menu-toggle #menu-btn {
    float: right;
    background: #202020;
    border: 1px solid #0c0c0c;
    padding: 8px;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px;
}
.menu-toggle #menu-btn:focus {
    outline: none;
}
.hide-menu {
    display: none;
}
ul[data-menu-style="accordion"] {
    width: 250px;
}
ul[data-menu-style="accordion"] > li {
    display: block;
    margin: 0;
    padding: 0;
    border: 0px;
    float: none !important;
}
ul[data-menu-style="accordion"] li ul.sub-menu > li {
    width: 100%;
}
ul[data-menu-style="accordion"] > li > a > .arrow:before {
    float: right;
    content: "\f105";
}
ul[data-menu-style="accordion"] li.menu-active > a > .arrow:before {
    content: "\f107" !important;
}
ul[data-menu-style="accordion"] > li > ul.sub-menu {
    position: static;
}
ul[data-menu-style="accordion"] > li > a i {
    padding-right: 10px;
    color: #ff5737;
}
ul[data-menu-style="accordion"] > li > ul.sub-menu > li ul.sub-menu {
    position: static;
}
ul[data-menu-style="accordion"]
    > li
    > ul.sub-menu
    > li
    ul.sub-menu
    > li
    ul.sub-menu {
    position: static;
}
ul[data-menu-style="accordion"] > li {
    border-bottom: 1px solid #242424;
}
ul[data-menu-style="accordion"] li a:hover {
    background: #272727 !important;
}
ul[data-menu-style="accordion"] ul.sub-menu li.menu-active > a > .arrow:before {
    content: "\f107" !important;
}
ul[data-menu-style="vertical"] {
    width: 200px;
}
ul[data-menu-style="vertical"] > li {
    float: none;
}
ul[data-menu-style="vertical"] li ul.sub-menu > li {
    width: 100%;
}
ul[data-menu-style="vertical"] > li > a > .arrow:before {
    float: right;
    content: "\f105";
}
ul[data-menu-style="vertical"] > li.menu-active {
    position: relative;
}
ul[data-menu-style="vertical"] > li > ul.sub-menu {
    position: absolute;
    left: 200px;
    top: 0px;
    width: 200px;
}
ul[data-menu-style="vertical"] > li > a i {
    padding-right: 10px;
    color: #ff5737;
}
ul[data-menu-style="vertical"] > li > ul.sub-menu > li ul.sub-menu {
    position: absolute;
    width: 200px;
    left: 200px;
}
ul[data-menu-style="vertical"]
    > li
    > ul.sub-menu
    > li
    ul.sub-menu
    > li
    ul.sub-menu {
    position: absolute;
    width: 200px;
    left: 200px;
}
ul[data-menu-style="vertical"] > li {
    border-bottom: 1px solid #242424;
}
ul[data-menu-style="vertical"] li a:hover {
    background: #272727 !important;
}

@media screen and (max-width: 768px) {
    .demo {
        width: 96%;
        padding: 2%;
    }
    ul[data-menu-style="vertical"],
    ul[data-menu-style="accordion"],
    ul[data-menu-style="vertical"] li ul.sub-menu {
        width: 100% !important;
    }
    .ace-responsive-menu {
        float: left;
        width: 100%;
    }
    .ace-responsive-menu > li {
        border-bottom: 1px solid #242424;
        float: none;
    }
    .ace-responsive-menu li a:hover {
        background: #272727 !important;
    }
    .ace-responsive-menu > li > a i {
        padding-right: 10px;
    }
    .ace-responsive-menu > li > a > .arrow:before {
        float: right;
        content: "\f105";
    }
    li.menu-active > a > .arrow:before {
        content: "\f107" !important;
    }
    .ace-responsive-menu li ul.sub-menu > li {
        width: 100%;
    }
    .ace-responsive-menu li ul.sub-menu li ul.sub-menu li a {
        padding-left: 30px;
    }
    .ace-responsive-menu li ul.sub-menu li ul.sub-menu li ul.sub-menu li a {
        padding-left: 50px;
    }
    .ace-responsive-menu > li > ul.sub-menu {
        position: static;
    }
    .ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu {
        position: static;
    }
    .ace-responsive-menu > li > ul.sub-menu > li ul.sub-menu > li ul.sub-menu {
        position: static;
    }
    .ace-responsive-menu li ul.sub-menu li.menu-active > a > .arrow:before {
        content: "\f107" !important;
    }
}
.options {
    width: 200px;
    float: left;
    margin-top: 30px;
}
.options h3 {
    font-size: 20px;
}
.options a {
    padding: 12px 0;
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
    display: block;
    background: #535353;
    color: #fff;
    text-decoration: none;
}
a.backLink {
    float: right;
    margin-bottom: 10px;
}

@media(min-width: 993px) {
.main-menu {
	display: block;
}
.mobile-menu {
	display: none;
}
}
@media(max-width: 992px) {
	.our-dashbord.dashbord {
		margin-top: 0;
	}
	.main-menu {
		display: none !important;
	}
	.mobile-menu {
		display: block;
	}
	.header, .footer {
		padding: 0 20px !important;
	}
}
.header {
	display: block;
	position: relative;
	z-index: 1;
}
.header, .content, .footer {
	text-align: center;
}
.header, .footer {
	background: transparent;
	font-size: 15px;
	
	font-weight: bold;
	color: #222222;
	box-sizing: border-box;
	width: 100%;
	height: 80px;
	line-height: 80px;
	padding: 0 50px;
}
.header.fixed {
	position: fixed;
	top: 0;
	left: 0;
}
.footer.fixed {
	position: fixed;
	bottom: 0;
	left: 0;
}
.header a:hover {
	cursor: pointer;
}
/*!
 * mmenu.js
 * mmenujs.com
 *
 * Copyright (c) Fred Heusschen
 * frebsite.nl
 *
 * License: CC-BY-NC-4.0
 * http://creativecommons.org/licenses/by-nc/4.0/
 */
#menu:not(.mm-menu) {display: none;}
:root {
--mm-lineheight:22px
}
.mm-hidden {
	display: none!important
}
.mm-wrapper {
	overflow-x: hidden;
	position: relative
}
.mm-menu, .mm-menu *, .mm-menu :after, .mm-menu :before {
	transition-property: none;
	transition-duration: .4s;
	transition-timing-function: ease
}
:root {
--mm-blocker-visibility-delay:0.4s;
--mm-blocker-opacity-delay:0s
}
.mm-blocker {
	display: block;
	position: absolute;
	bottom: 100%;
	top: 0;
	right: 0;
	left: 0;
	z-index: 3;
	opacity: 0;
	background: var(--mm-color-background);
	transition: bottom 0s ease var(--mm-blocker-visibility-delay), width .4s ease, opacity .4s ease var(--mm-blocker-opacity-delay), transform .4s ease
}
.mm-blocker:focus-visible {
opacity:.75
}
.mm-btn {
	flex-grow: 0;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	width: 50px;
	padding: 0
}
.mm-btn--next, [dir=rtl] .mm-btn--prev {
--mm-btn-rotate:135deg
}
.mm-btn--prev, [dir=rtl] .mm-btn--next {
--mm-btn-rotate:-45deg
}
.mm-btn--next:after, .mm-btn--prev:before {
  border-bottom: none;
  border-right: none;
  box-sizing: content-box;
  color: #041E42;
  content: "\f105";
  display: block;
  font-family: "Font Awesome 6 Pro";
  font-size: 18px;
  margin: auto;
  position: absolute;
  right: 30px;
  top: 10px;
}
.mm-btn--prev:before{
	top: 15px;
	transform: rotate(180deg);
	inset-inline-start: 23px;
}
.mm-btn--next:after {
	inset-inline-end: 23px
}
.mm-btn--close:before {
	content: "×";
	font-size: 150%
}
.mm-btnreset {
	padding: 0;
	background: 0 0;
	border: none;
	cursor: pointer
}
.mm-divider {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	position: sticky;
	z-index: 2;
	top: 0;
	min-height: var(--mm-lineheight);
padding:calc((var(--mm-listitem-size) * .65 - var(--mm-lineheight)) * .5) 20px;
	font-size: 75%;
	text-transform: uppercase;
	background: var(--mm-color-background);
	background-image: linear-gradient(var(--mm-color-background-highlight), var(--mm-color-background-highlight));
	opacity: 1;
	transition-property: opacity
}
.mm-navbar:not(.mm-hidden)~.mm-listview .mm-divider {
	top: var(--mm-navbar-size)
}
:root {
--mm-listitem-size:50px
}
.mm-listitem {
	display: flex;
	flex-wrap: wrap;
	position: relative;
	padding: 0;
	margin: 0;
	color: var(--mm-color-text);
	border-color: var(--mm-color-border)
}
.mm-listitem:after {
	content: "";
	border-color: inherit;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	display: block;
	position: absolute;
	inset-inline-start: 20px;
	inset-inline-end: 0;
	bottom: 0
}
.mm-listitem__btn, .mm-listitem__text {
	padding: calc((var(--mm-listitem-size) - var(--mm-lineheight))/ 2) 0
}
.mm-listitem__text {
	flex-grow: 1;
	flex-basis: 10%;
	display: block;
	padding-left: 20px;
	padding-right: 20px;
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden
}
.mm-listitem__btn {
	display: block;
	position: relative;
	width: auto;
	padding-inline-end: 50px;
	border-color: inherit;
	background: rgba(3,2,1,0)
}
.mm-listitem__btn:not(.mm-listitem__text) {
	border-left-width: 1px;
	border-left-style: solid
}
.mm-listitem--selected>.mm-listitem__text {
	background: var(--mm-color-background-emphasis)
}
.mm-listitem--opened>.mm-listitem__btn, .mm-listitem--opened>.mm-panel {
	background: var(--mm-color-background-highlight)
}
.mm-listview {
	list-style: none;
	display: block;
	padding: 0;
	margin: 0
}
.mm-menu {
	display: flex;
	flex-direction: column;
	padding: 0;
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 0;
	overscroll-behavior: none;
	background: var(--mm-color-background);
	border-color: var(--mm-color-border);
	color: var(--mm-color-text);
	line-height: var(--mm-lineheight);
	-webkit-tap-highlight-color: var(--mm-color-background-emphasis);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale
}
.mm-menu ::-moz-placeholder {
color:var(--mm-color-text-dimmed)
}
.mm-menu ::placeholder {
color:var(--mm-color-text-dimmed)
}
.mm-menu, .mm-menu * {
	box-sizing: border-box
}
.mm-menu :focus, .mm-menu :focus-visible, .mm-menu:focus, .mm-menu:focus-visible {
outline:0
}
.mm-menu a, .mm-menu button, .mm-menu label {
	color: inherit
}
.mm-menu a:focus, .mm-menu button:focus, .mm-menu label:focus {
	outline: 0
}
.mm-menu a:focus-visible, .mm-menu button:focus-visible, .mm-menu label:focus-visible {
outline:2px solid var(--mm-color-focusring);
outline-offset:-5px
}
.mm-menu input:focus, .mm-menu input:focus-visible, .mm-menu select:focus, .mm-menu select:focus-visible, .mm-menu textarea:focus, .mm-menu textarea:focus-visible {
outline:2px solid var(--mm-color-focusring);
outline-offset:2px
}
.mm-menu a, .mm-menu a:active, .mm-menu a:hover, .mm-menu a:link, .mm-menu a:visited {
	text-decoration: none;
	color: inherit
}
.mm-menu:not(.mm-menu--opened) .mm-menu__blocker {
--mm-blocker-visibility-delay:0s;
--mm-blocker-opacity-delay:0.4s;
	bottom: 0;
	opacity: .5
}
:root {
--mm-navbar-size:50px
}
.mm-navbar {
	display: flex;
	position: sticky;
	top: 0;
	z-index: 2;
	min-height: var(--mm-navbar-size);
	padding-top: env(safe-area-inset-top);
	color: var(--mm-color-text-dimmed);
	text-align: center;
	opacity: 1;
	background: var(--mm-color-background);
	border-bottom: 1px solid var(--mm-color-border);
	transition-property: opacity
}
.mm-navbar>* {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	box-sizing: border-box
}
.mm-navbar__btn {
	flex-grow: 0
}
.mm-navbar__title {
	flex: 1 1 50%;
	display: flex;
	padding: 0 20px;
	overflow: hidden
}
.mm-navbar__title[href="#"] {
	pointer-events: none
}
.mm-navbar__title>span {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden
}
.mm-btn.mm-hidden+.mm-navbar__title:not(:last-child) {
	padding-inline-start: 60px;
	padding-inline-end: 10px
}
.mm-btn:not(.mm-hidden)+.mm-navbar__title:last-child {
	padding-inline-start: 10px;
	padding-inline-end: 60px
}
.mm-panel {
--mm-panel-child-offset:100%;
--mm-panel-parent-offset:-30%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	z-index: 1;
	-webkit-overflow-scrolling: touch;
	overflow: hidden;
	overflow-y: auto;
	overscroll-behavior: contain;
	color: var(--mm-color-text);
	transform: translate3d(var(--mm-panel-child-offset), 0, 0);
	transition-property: transform, inset-inline-start
}
[dir=rtl] .mm-panel {
--mm-panel-child-offset:-100%;
--mm-panel-parent-offset:30%
}
.mm-panel:after {
	content: "";
	display: block;
	height: var(--mm-listitem-size)
}
.mm-panel:focus {
	outline: 0
}
.mm-panel--opened {
	z-index: 2;
	transform: translate3d(0, 0, 0);
	transition-delay: 0s
}
.mm-panel--parent {
	transform: translate3d(var(--mm-panel-parent-offset), 0, 0);
	z-index: 0
}
.mm-panel--highest {
	z-index: 3
}
.mm-menu--opened .mm-panel--noanimation {
	transition: none!important;
	transition-duration: 0s!important
}
.mm-panel__content {
	padding: 20px
}
.mm-panel--parent .mm-panel__blocker {
--mm-blocker-visibility-delay:0s;
--mm-blocker-opacity-delay:0.4s;
	bottom: -10000000px;
	opacity: .5
}
.mm-panels {
	flex-grow: 1;
	position: relative;
	height: 100%;
	overflow: hidden;
	background: var(--mm-color-background);
	border-color: var(--mm-color-border);
	color: var(--mm-color-text)
}
.mm-panels:focus {
	outline: 0
}
:root {
--mm-toggle-size:34px
}
.mm-toggle {
	display: flex;
	align-self: center;
flex:calc(var(--mm-toggle-size) * 1.75) 0 0;
	height: var(--mm-toggle-size);
	margin-inline-end: 10px;
	-webkit-appearance: none!important;
	-moz-appearance: none!important;
	appearance: none!important;
	border: none!important;
	border-radius: var(--mm-toggle-size);
	border: var(--mm-color-border);
	background: var(--mm-color-border);
	cursor: pointer;
	transition-property: background-color
}
.mm-toggle:before {
	content: "";
	aspect-ratio: 1;
	margin: 2px;
	border-radius: 100%;
	background: var(--mm-color-background);
	transition-property: transform
}
.mm-toggle:checked {
	background: #4bd963
}
.mm-toggle:checked:before {
transform:translateX(calc(var(--mm-toggle-size) * .75))
}
[dir=rtl] .mm-toggle:checked:before {
transform:translateX(calc(var(--mm-toggle-size) * -.75))
}
.mm-listitem--vertical>.mm-panel {
	position: static;
	width: 100%;
	padding: 10px 0 10px 20px;
	transform: none!important;
	transition: none!important
}
.mm-listitem--vertical>.mm-panel:after {
	content: none;
	display: none
}
.mm-listitem--vertical:not(.mm-listitem--opened)>.mm-panel {
	display: none
}
.mm-listitem--vertical>.mm-listitem__btn {
	height: var(--mm-listitem-size);
	bottom: auto
}
.mm-listitem--vertical .mm-listitem:last-child:after {
	border-color: transparent
}
.mm-listitem--opened>.mm-listitem__btn:after {
	transform: rotate(225deg);
	right: 19px
}
:root {
--mm-size:80%;
--mm-min-size:240px;
--mm-max-size:440px
}
.mm-menu--offcanvas {
	position: fixed;
	z-index: 0
}
.mm-page {
	box-sizing: border-box;
	min-height: 100vh;
	background: inherit
}
:where(.mm-slideout) {
position:relative;
z-index:1;
width:100%;
transition-duration:.4s;
transition-timing-function:ease;
transition-property:width, transform
}
.mm-wrapper--opened, .mm-wrapper--opened body {
	overflow: hidden
}
.mm-wrapper__blocker {
	background: rgba(0,0,0,.4)
}
.mm-wrapper--opened .mm-wrapper__blocker {
--mm-blocker-visibility-delay:0s;
--mm-blocker-opacity-delay:0.4s;
	bottom: 0;
	opacity: .5
}
.mm-menu {
--mm-translate-horizontal:0;
--mm-translate-vertical:0
}
.mm-menu--position-left, .mm-menu--position-left-front {
	right: auto
}
.mm-menu--position-right, .mm-menu--position-right-front {
	left: auto
}
.mm-menu--position-left, .mm-menu--position-left-front, .mm-menu--position-right, .mm-menu--position-right-front {
	width: clamp(var(--mm-min-size), var(--mm-size), var(--mm-max-size))
}
.mm-menu--position-left-front {
--mm-translate-horizontal:-100%
}
.mm-menu--position-right-front {
--mm-translate-horizontal:100%
}
.mm-menu--position-top {
	bottom: auto
}
.mm-menu--position-bottom {
	top: auto
}
.mm-menu--position-bottom, .mm-menu--position-top {
	width: 100%;
	height: clamp(var(--mm-min-size), var(--mm-size), var(--mm-max-size))
}
.mm-menu--position-top {
--mm-translate-vertical:-100%
}
.mm-menu--position-bottom {
--mm-translate-vertical:100%
}
.mm-menu--position-bottom, .mm-menu--position-left-front, .mm-menu--position-right-front, .mm-menu--position-top {
	z-index: 2;
	transform: translate3d(var(--mm-translate-horizontal), var(--mm-translate-vertical), 0);
	transition-property: transform
}
.mm-menu--position-bottom.mm-menu--opened, .mm-menu--position-left-front.mm-menu--opened, .mm-menu--position-right-front.mm-menu--opened, .mm-menu--position-top.mm-menu--opened {
	transform: translate3d(0, 0, 0)
}
.mm-wrapper--position-left {
--mm-translate-horizontal:clamp( var(--mm-min-size), var(--mm-size), var(--mm-max-size) )
}
.mm-wrapper--position-right {
--mm-translate-horizontal:clamp( calc(-1 * var(--mm-max-size)), calc(-1 * var(--mm-size)), calc(-1 * var(--mm-min-size)) )
}
.mm-wrapper--position-left .mm-slideout, .mm-wrapper--position-right .mm-slideout {
	transform: translate3d(0, 0, 0)
}
.mm-wrapper--position-left.mm-wrapper--opened .mm-slideout, .mm-wrapper--position-right.mm-wrapper--opened .mm-slideout {
	transform: translate3d(var(--mm-translate-horizontal), 0, 0)
}
.mm-wrapper--position-bottom .mm-wrapper__blocker, .mm-wrapper--position-left-front .mm-wrapper__blocker, .mm-wrapper--position-right-front .mm-wrapper__blocker, .mm-wrapper--position-top .mm-wrapper__blocker {
	z-index: 1
}
.mm-menu--theme-light {
--mm-color-background:#f3f3f3;
--mm-color-border:rgb(0 0 0 / 0.15);
--mm-color-icon:rgb(0 0 0 / 0.4);
--mm-color-text:rgb(0 0 0 / 0.8);
--mm-color-text-dimmed:rgb(0 0 0 / 0.4);
--mm-color-background-highlight:rgb(0 0 0 / 0.05);
--mm-color-background-emphasis:rgb(255 255 255 / 0.75);
--mm-color-focusring:#06c
}
.mm-menu--theme-light-contrast {
--mm-color-background:#f3f3f3;
--mm-color-border:rgb(0 0 0 / 0.5);
--mm-color-icon:rgb(0 0 0 / 0.5);
--mm-color-text:#000;
--mm-color-text-dimmed:rgb(0 0 0 / 0.7);
--mm-color-background-highlight:rgb(0 0 0 / 0.05);
--mm-color-background-emphasis:rgb(255 255 255 / 0.9);
--mm-color-focusring:#06c
}
.mm-menu--theme-dark {
--mm-color-background:#333;
--mm-color-border:rgb(0, 0, 0, 0.4);
--mm-color-icon:rgb(255, 255, 255, 0.4);
--mm-color-text:rgb(255, 255, 255, 0.8);
--mm-color-text-dimmed:rgb(255, 255, 255, 0.4);
--mm-color-background-highlight:rgb(255, 255, 255, 0.08);
--mm-color-background-emphasis:rgb(0, 0, 0, 0.1);
--mm-color-focusring:#06c
}
.mm-menu--theme-dark-contrast {
--mm-color-background:#333;
--mm-color-border:rgb(255 255 255 / 0.5);
--mm-color-icon:rgb(255 255 255 / 0.5);
--mm-color-text:#fff;
--mm-color-text-dimmed:rgb(255 255 255 / 0.7);
--mm-color-background-highlight:rgb(255 255 255 / 0.1);
--mm-color-background-emphasis:rgb(0 0 0 / 0.3);
--mm-color-focusring:#06c
}
.mm-menu--theme-white {
--mm-color-background:#fff;
--mm-color-border:rgb(0 0 0 / 0.15);
--mm-color-icon:rgb(0 0 0 / 0.3);
--mm-color-text:rgb(0 0 0 / 0.8);
--mm-color-text-dimmed:rgb(0 0 0 / 0.3);
--mm-color-background-highlight:rgb(0 0 0 / 0.06);
--mm-color-background-emphasis:rgb(0 0 0 / 0.03);
--mm-color-focusring:#06c
}
.mm-menu--theme-white-contrast {
--mm-color-background:#fff;
--mm-color-border:rgb(0 0 0 / 0.5);
--mm-color-icon:rgb(0 0 0 / 0.5);
--mm-color-text:#000;
--mm-color-text-dimmed:rgb(0 0 0 / 0.7);
--mm-color-background-highlight:rgb(0 0 0 / 0.07);
--mm-color-background-emphasis:rgb(0 0 0 / 0.035);
--mm-color-focusring:#06c
}
.mm-menu--theme-black {
--mm-color-background:#000;
--mm-color-border:rgb(255 255 255 / 0.2);
--mm-color-icon:rgb(255 255 255 / 0.4);
--mm-color-text:rgb(255 255 255 / 0.7);
--mm-color-text-dimmed:rgb(255 255 255 / 0.4);
--mm-color-background-highlight:rgb(255 255 255 / 0.1);
--mm-color-background-emphasis:rgb(255 255 255 / 0.06);
--mm-color-focusring:#06c
}
.mm-menu--theme-black-contrast {
--mm-color-background:#000;
--mm-color-border:rgb(255 255 255 / 0.5);
--mm-color-icon:rgb(255 255 255 / 0.5);
--mm-color-text:#fff;
--mm-color-text-dimmed:rgb(255 255 255 / 0.6);
--mm-color-background-highlight:rgb(255 255 255 / 0.125);
--mm-color-background-emphasis:rgb(255 255 255 / 0.1);
--mm-color-focusring:#06c
}
.mm-counter {
	display: block;
	padding-inline-start: 20px;
	float: right;
	color: var(--mm-color-text-dimmed)
}
[dir=rtl] .mm-counter {
	float: left
}
:root {
--mm-iconbar-size:50px
}
.mm-menu--iconbar-left .mm-navbars, .mm-menu--iconbar-left .mm-panels {
	margin-left: var(--mm-iconbar-size)
}
.mm-menu--iconbar-right .mm-navbars, .mm-menu--iconbar-right .mm-panels {
	margin-right: var(--mm-iconbar-size)
}
.mm-iconbar {
	display: none;
	position: absolute;
	top: 0;
	bottom: 0;
	z-index: 2;
	width: var(--mm-iconbar-size);
	overflow: hidden;
	box-sizing: border-box;
	border: 0 solid;
	border-color: var(--mm-color-border);
	background: var(--mm-color-background);
	color: var(--mm-color-text-dimmed);
	text-align: center
}
.mm-menu--iconbar-left .mm-iconbar, .mm-menu--iconbar-right .mm-iconbar {
	display: flex;
	flex-direction: column;
	justify-content: space-between
}
.mm-menu--iconbar-left .mm-iconbar {
	border-right-width: 1px;
	left: 0
}
.mm-menu--iconbar-right .mm-iconbar {
	border-left-width: 1px;
	right: 0
}
.mm-iconbar__bottom, .mm-iconbar__top {
	width: 100%;
	-webkit-overflow-scrolling: touch;
	overflow: hidden;
	overflow-y: auto;
	overscroll-behavior: contain
}
.mm-iconbar__bottom>*, .mm-iconbar__top>* {
	box-sizing: border-box;
	display: block;
	padding: calc((var(--mm-iconbar-size) - var(--mm-lineheight))/ 2) 0
}
.mm-iconbar__bottom a, .mm-iconbar__bottom a:hover, .mm-iconbar__top a, .mm-iconbar__top a:hover {
	text-decoration: none
}
.mm-iconbar__tab--selected {
	background: var(--mm-color-background-emphasis)
}
:root {
--mm-iconpanel-size:50px
}
.mm-panel--iconpanel-0 {
inset-inline-start:calc(0 * var(--mm-iconpanel-size))
}
.mm-panel--iconpanel-1 {
inset-inline-start:calc(1 * var(--mm-iconpanel-size))
}
.mm-panel--iconpanel-2 {
inset-inline-start:calc(2 * var(--mm-iconpanel-size))
}
.mm-panel--iconpanel-3 {
inset-inline-start:calc(3 * var(--mm-iconpanel-size))
}
.mm-panel--iconpanel-4 {
inset-inline-start:calc(4 * var(--mm-iconpanel-size))
}
.mm-panel--iconpanel-first~.mm-panel {
	inset-inline-start: var(--mm-iconpanel-size)
}
.mm-menu--iconpanel .mm-panel--parent .mm-divider, .mm-menu--iconpanel .mm-panel--parent .mm-navbar {
	opacity: 0
}
.mm-menu--iconpanel .mm-panels>.mm-panel--parent {
	overflow-y: hidden;
	transform: unset
}
.mm-menu--iconpanel .mm-panels>.mm-panel:not(.mm-panel--iconpanel-first):not(.mm-panel--iconpanel-0) {
	border-inline-start-width: 1px;
	border-inline-start-style: solid
}
.mm-navbars {
	flex-shrink: 0
}
.mm-navbars .mm-navbar {
	position: relative;
	padding-top: 0;
	border-bottom: none
}
.mm-navbars--top {
	border-bottom: 1px solid var(--mm-color-border)
}
.mm-navbars--top .mm-navbar:first-child {
	padding-top: env(safe-area-inset-top)
}
.mm-navbars--bottom {
	border-top: 1px solid var(--mm-color-border)
}
.mm-navbars--bottom .mm-navbar:last-child {
	padding-bottom: env(safe-area-inset-bottom)
}
.mm-navbar__breadcrumbs {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
	flex: 1 1 50%;
	display: flex;
	justify-content: flex-start;
	padding: 0 20px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch
}
.mm-navbar__breadcrumbs>* {
	display: flex;
	align-items: center;
	justify-content: center;
	padding-inline-end: 6px
}
.mm-navbar__breadcrumbs>a {
	text-decoration: underline
}
.mm-navbar__breadcrumbs:not(:last-child) {
	padding-inline-end: 0
}
.mm-btn:not(.mm-hidden)+.mm-navbar__breadcrumbs {
	padding-inline-start: 0
}
.mm-navbar__tab {
	padding: 0 10px;
	border: 1px solid transparent
}
.mm-navbar__tab--selected {
	background: var(--mm-color-background)
}
.mm-navbar__tab--selected:not(:first-child) {
	border-inline-start-color: var(--mm-color-border)
}
.mm-navbar__tab--selected:not(:last-child) {
	border-inline-end-color: var(--mm-color-border)
}
.mm-navbars--top.mm-navbars--has-tabs {
	border-bottom: none
}
.mm-navbars--top.mm-navbars--has-tabs .mm-navbar {
	background: var(--mm-color-background-emphasis)
}
.mm-navbars--top.mm-navbars--has-tabs .mm-navbar--tabs~.mm-navbar {
	background: var(--mm-color-background)
}
.mm-navbars--top.mm-navbars--has-tabs .mm-navbar:not(.mm-navbar--tabs):last-child {
	border-bottom: 1px solid var(--mm-color-border)
}
.mm-navbars--top .mm-navbar__tab {
	border-bottom-color: var(--mm-color-border)
}
.mm-navbars--top .mm-navbar__tab--selected {
	border-top-color: var(--mm-color-border);
	border-bottom-color: transparent
}
.mm-navbars--bottom.mm-navbar--has-tabs {
	border-top: none
}
.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar {
	background: var(--mm-color-background)
}
.mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs, .mm-navbars--bottom.mm-navbar--has-tabs .mm-navbar--tabs~.mm-navbar {
	background: var(--mm-color-background-emphasis)
}
.mm-navbars--bottom .mm-navbar__tab {
	border-top-color: var(--mm-color-border)
}
.mm-navbars--bottom .mm-navbar__tab--selected {
	border-bottom-color: var(--mm-color-border);
	border-top-color: transparent
}
.mm-searchfield {
	display: flex;
	flex-grow: 1;
	height: var(--mm-navbar-size);
	padding: 0;
	overflow: hidden
}
.mm-searchfield__input {
	display: flex;
	flex: 1;
	align-items: center;
	position: relative;
	width: 100%;
	max-width: 100%;
	padding: 0 10px;
	box-sizing: border-box
}
.mm-searchfield__input input {
	display: block;
	width: 100%;
	max-width: 100%;
height:calc(var(--mm-navbar-size) * .7);
	min-height: auto;
	max-height: auto;
	margin: 0;
	padding: 0 10px;
	box-sizing: border-box;
	border: none;
	border-radius: 4px;
line-height:calc(var(--mm-navbar-size) * .7);
	font: inherit;
	font-size: inherit
}
.mm-searchfield__input input, .mm-searchfield__input input:focus, .mm-searchfield__input input:hover {
	background: var(--mm-color-background-highlight);
	color: var(--mm-color-text)
}
.mm-menu[class*=-contrast] .mm-searchfield__input input {
	border: 1px solid var(--mm-color-border)
}
.mm-searchfield__input input::-ms-clear {
display:none
}
.mm-searchfield__btn {
	display: none;
	position: absolute;
	inset-inline-end: 0;
	top: 0;
	bottom: 0
}
.mm-searchfield--searching .mm-searchfield__btn {
	display: block
}
.mm-searchfield__cancel {
	display: block;
	position: relative;
	margin-inline-end: -100px;
	padding-inline-start: 5px;
	padding-inline-end: 20px;
	visibility: hidden;
	line-height: var(--mm-navbar-size);
	text-decoration: none;
	transition-property: visibility, margin
}
.mm-searchfield--cancelable .mm-searchfield__cancel {
	visibility: visible;
	margin-inline-end: 0
}
.mm-panel--search {
	left: 0!important;
	right: 0!important;
	width: 100%!important;
	border: none!important
}
.mm-panel__splash {
	padding: 20px
}
.mm-panel--searching .mm-panel__splash {
	display: none
}
.mm-panel__noresults {
	display: none;
	padding: 40px 20px;
	color: var(--mm-color-text-dimmed);
	text-align: center;
	font-size: 150%;
	line-height: 1.4
}
.mm-panel--noresults .mm-panel__noresults {
	display: block
}
:root {
--mm-sectionindexer-size:20px
}
.mm-sectionindexer {
	background: inherit;
	text-align: center;
	font-size: 12px;
	box-sizing: border-box;
	width: var(--mm-sectionindexer-size);
	position: absolute;
	top: 0;
	bottom: 0;
inset-inline-end:calc(-1 * var(--mm-sectionindexer-size));
	z-index: 5;
	transition-property: inset-inline-end;
	display: flex;
	flex-direction: column;
	justify-content: space-evenly
}
.mm-sectionindexer a {
	color: var(--mm-color-text-dimmed);
	line-height: 1;
	text-decoration: none;
	display: block
}
.mm-sectionindexer~.mm-panel {
	padding-inline-end: 0
}
.mm-sectionindexer--active {
	right: 0
}
.mm-sectionindexer--active~.mm-panel {
	padding-inline-end: var(--mm-sectionindexer-size)
}
.mm-menu--selected-hover .mm-listitem__btn, .mm-menu--selected-hover .mm-listitem__text, .mm-menu--selected-parent .mm-listitem__btn, .mm-menu--selected-parent .mm-listitem__text {
	transition-property: background-color
}

@media (hover:hover) {
.mm-menu--selected-hover .mm-listview:hover>.mm-listitem--selected:not(:hover)>.mm-listitem__text {
	background: 0 0
}
.mm-menu--selected-hover .mm-listitem__btn:hover, .mm-menu--selected-hover .mm-listitem__text:hover {
	background: var(--mm-color-background-emphasis)
}
}
.mm-menu--selected-parent .mm-listitem__btn, .mm-menu--selected-parent .mm-listitem__text {
	transition-delay: .2s
}

@media (hover:hover) {
.mm-menu--selected-parent .mm-listitem__btn:hover, .mm-menu--selected-parent .mm-listitem__text:hover {
	transition-delay: 0s
}
}
.mm-menu--selected-parent .mm-panel--parent .mm-listitem:not(.mm-listitem--selected-parent)>.mm-listitem__text {
	background: 0 0
}
.mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__btn, .mm-menu--selected-parent .mm-listitem--selected-parent>.mm-listitem__text {
	background: var(--mm-color-background-emphasis)
}
:root {
--mm-sidebar-collapsed-size:50px;
--mm-sidebar-expanded-size:var(--mm-max-size)
}
.mm-wrapper--sidebar-collapsed .mm-slideout {
	width: calc(100% - var(--mm-sidebar-collapsed-size));
	transform: translate3d(var(--mm-sidebar-collapsed-size), 0, 0)
}
[dir=rtl] .mm-wrapper--sidebar-collapsed .mm-slideout {
	transform: none
}
.mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-divider, .mm-wrapper--sidebar-collapsed:not(.mm-wrapper--opened) .mm-menu--sidebar-collapsed .mm-navbar {
	opacity: 0
}
.mm-wrapper--sidebar-expanded .mm-menu--sidebar-expanded {
	width: var(--mm-sidebar-expanded-size);
	border-right-width: 1px;
	border-right-style: solid
}
.mm-wrapper--sidebar-expanded.mm-wrapper--opened {
	overflow: auto
}
.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-wrapper__blocker {
	display: none
}
.mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout {
	width: calc(100% - var(--mm-sidebar-expanded-size));
	transform: translate3d(var(--mm-sidebar-expanded-size), 0, 0)
}
[dir=rtl] .mm-wrapper--sidebar-expanded.mm-wrapper--opened .mm-slideout {
	transform: none
}


/* Small devices (min-width: 576px) (max-width: 767.98px) // (landscape phones, less than 992px) */
@media only screen and (max-width:992px) {
.header.stylehome1.dashbord_pages:before {
	background-image: -ms-linear-gradient( 0deg, rgb(52,82,255) 0%, rgb(255,16,83) 100%);
}
.stylehome1.dashbord_mobile_logo.dashbord_pages .nav_logo_img {
	margin-left: 0 !important;
}
.stylehome1.home2, .stylehome1.home2:before {
	background-color: #141414 !important;
	border-bottom: none;
}
.stylehome1.home3 .header.stylehome1 {
	border-bottom: none !important;
}
}

/* Small devices (min-width: 576px) (max-width: 767.98px) // (landscape phones, less than 768px) */
@media only screen and (max-width: 767.98px) {
}
/*** ====  Csutom sidebar menu ==== ***/
#mega-menu ul.menu {
	position: relative;
	z-index: 9;
}
.home1_style #mega-menu ul.menu:after {
	top: -2px;
}
#mega-menu ul.menu:after {
	top: 0;
	z-index: -9;
}
/*Down Arrow Icon*/
