/**************************\
  Basic Modal Styles
\**************************/

.modal {
    font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, helvetica neue, helvetica, ubuntu, roboto, noto, segoe ui, arial, sans-serif;
}

.modal__overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.modal__container {
    background-color: #fff;
    padding: 30px;
    padding-top: 20px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
}

.modal__header {
    display: flex;
    justify-content: end;
    align-items: center;
}

.upload-modal .modal__header{
    height: 58px;
}

.modal__title {
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.25;
    color: #00449e;
    box-sizing: border-box;
}

.modal__close {
    background: transparent;
    border: 0;
    position: unset!important;
    top: unset!important;
    right: unset!important;
    cursor: pointer;
    font-weight: 600;
    font-size: 20px;
}

.modal__header .modal__close:before {
    content: "\2715";
}

.modal__content {
    margin-top: 2rem;
    margin-bottom: 2rem;
    line-height: 1.5;
    color: rgba(0, 0, 0, .8);
}

.modal__btn {
    font-size: .875rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    background-color: #e6e6e6;
    color: rgba(0, 0, 0, .8);
    border-radius: .25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out, -webkit-transform .25s ease-out;
}

.modal__btn:focus, .modal__btn:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}

.modal__btn-primary {
    background-color: #00449e;
    color: #fff;
}


/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes mmfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes mmslideIn {
    from {
        transform: translateY(15%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes mmslideOut {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10%);
    }
}

.micromodal-slide {
    display: none;
}

.micromodal-slide.is-open {
    display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
    animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
    animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
    animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
    animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
    will-change: transform;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (prefers-reduced-motion) {
    .animated {
        -webkit-animation: unset !important;
        -webkit-transition: none !important;
        animation: unset !important;
        transition: none !important
    }
}


hr {
    border: solid 1px black !important;
}

.contain-left-side-bar-new ul {
    width: 100%;
    padding: 20px 16px;
    list-style-type: none;
}

li.active img {
    filter: invert(0%) sepia(93%) saturate(7%) hue-rotate(359deg) brightness(102%) contrast(100%) !important;
    transition: all 0.25s ease-out;
}

.acc_detail_btn{
    background: #2F3141!important;
    border-radius: 8px;
}

.acc_detail_btn:hover{
    background: #4B4E67!important;
}


.whitetext {
    color: white!important;
}

img.leftbar_img {
    transition: all 0.25s ease-out;
}

.active span {
    color: white!important;
    transition: all 0.25s ease-out;
}

.contain-left-side-bar-new ul li.active {
    position: relative;
    background-color: #2F3141 !important;
    color: white !important;
    transition: all 0.25s ease-out;
}

.signout_left_btn{
    color: unset!important;
    text-decoration: none !important;
}

.signout_left_btn:hover, .signout_left_btn:focus{
    color: unset!important;
    text-decoration: none !important;
}

#amount {
    text-align: center;
    outline: none;
    border-style: none;
    background: #2F3141;
    width: 100%;
}

.contain-left-side-bar-new ul li {
    color: #e1e6e8;
    vertical-align: middle;
    padding-top: 16px;
    padding-bottom: 16px;
    cursor: pointer;
}

.contain-left-side-bar-new ul li {
    font-size: 16px !important;
    font-weight: normal !important;
}

.contain-left-side-bar-new ul li img {
    width: 24px;
    margin-right: 10px;
}

.ballance-wallet{
    background: #2F3141;
    border-radius: 8px;
    padding: 16px;
}

.deposite-button, .marketplace-button {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    transition: background 200ms linear, border 200ms linear;
    align-items: center;
}

.deposite-button:hover{
    background-color: #48988F!important;
}
.marketplace-button:hover{
    background-color: #0073A6!important;
}

.dataTables_info {
    display: none;
}

#transaction_filter,
#withdraw_filter {
    display: none;
}

::-webkit-scrollbar {
    width: 15px;
}

::-webkit-scrollbar-thumb {
    background: #a0a2a5;
    border-radius: 10px;
}

::placeholder {
    color: #bfc6c9!important;
    opacity: 1;
    font-size: 18px;
}

.dataTables_scrollBody {
    max-height: 600px !important;
    width: 100% !important;
    font-size: 18px !important;
    font-weight: normal !important;
    border-radius: 0px 0px 16px 16px;
}

.dataTables_scrollHeadInner {
    display: flex;
    background: white;
    border-radius: 16px 16px 0px 0px;
    border-color: #ffffff;
    border-style: solid;
    border-width: 2px;
    font-size: 18px !important;
    font-weight: normal !important;
    height: 50px;
    color: #000000;
    width: 99.5% !important;
}

th {
    text-align: center !important;
    font-weight: normal !important;
}

.odd,
.even {
    /* font-size: 16px !important; */
    height: 72px;
    background-color: #fff !important;
    border-bottom: solid;
    border-color: #F7F7F7;
    border-width: 1px;
    color: #585656 !important;
    font-size: 14px !important;
    font-weight: 400;
}

.range-filter {
    border-radius: 8px;
    font-size: 14px !important;
    font-weight: normal !important;
    padding: 16px 32px;
    border: white;
    max-width: 200px;
}

.range-filter.range-options{
    background-image: url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='iso-8859-1'%3F%3E%3C!-- Generator: Adobe Illustrator 19.0.0, SVG Export Plug-In . SVG Version: 6.00 Build 0) --%3E%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 512 512' style='enable-background:new 0 0 512 512;' xml:space='preserve'%3E%3Cg%3E%3Cg%3E%3Cpath d='M505.752,123.582c-8.331-8.331-21.839-8.331-30.17,0L256,343.163L36.418,123.582c-8.331-8.331-21.839-8.331-30.17,0 s-8.331,21.839,0,30.17l234.667,234.667c8.331,8.331,21.839,8.331,30.17,0l234.667-234.667 C514.083,145.42,514.083,131.913,505.752,123.582z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3Cg%3E%3C/g%3E%3C/svg%3E%0A");
    background-size: 9px;
    background-repeat: no-repeat;
    background-position-y: center;
    background-position-x: calc(100% - 16px);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
}

.range-filter.range-options:lang(ar){
    background-position-x: calc(16px);
}

.range-filter:focus-visible{
    outline-color: #4B4E67!important;;
}

.calendar_button {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 16px;
    margin-left: 8px;
    cursor: pointer;
}

.personal_information_input {
    background-color: #F7F7F7;
    border-radius: 8px;
    border-color: #ffffff;
    border-style: solid;
    border-width: 2px;
    font-size: 18px !important;
    font-weight: normal !important;
    height: 50px;
    width: 32%;
    padding: 10px;
    color: black;
}
.personal_information_select {
    width: 48%;
}

label{
    font-weight: 500!important;
}

.personal_information_button {
    background-color: #278de1;
    font-size: 18px !important;
    font-weight: normal !important;
    height: 50px;
    color: #023b79;
    width: 48%;
    margin-right: 5%;
    margin-top: 45px;
    border: 2px solid #278de1;
}

.personal_information_button:hover {
    background-color: #3a95e0;
    border: 2px solid #3a95e0;
}

.Personal_Information_Form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.change-detail-annotation{
    padding: 16px 24px;
    margin-top: 16px;
    background: #FEEDD9;
    border-radius: 8px;
    color: #F06500;
    border: 1px solid #F8C7A4;
}

.Nonactive {
    display: none !important;
}

.blue_block {
    background-color: #298ce1;
    height: 4px;
}

.gray_block {
    background-color: #373d46;
    height: 2px;
}

.Change_password_button {
    background-color: #3A3C50;
    font-size: 14px !important;
    font-weight: normal !important;
    padding: 16px 24px;
    width: 100%;
    margin-top: 24px;
    border: 0!important;
}

#submitPassword{
    background-color: #3A3C50 !important;
    border-radius: 8px!important;
    color: white!important;
    transition: background 200ms linear, border 200ms linear;
}

#submitPassword:hover{
    background-color: #4B4E67!important;
}

input{
    transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

input:focus-visible{
    outline-color: #3E827A3D;
    background: white;
}

#dynamic-panel .submitPassword{
    background-color: #3A3C50 !important;
    border-radius: 8px!important;
    color: white!important;
    border: 0!important;
    margin-bottom: 16px;
    padding: 15px;
    transition: background 200ms linear, color 200ms linear, border 200ms linear;
}

#dynamic-panel .submitPassword:hover{
    background: #4B4E67!important;
}

#Change_password_background:hover, #Personal_Information_background:hover, #Manage_Account_Security_background:hover, #Withdraw_Request_background:hover, #Withdraw_History_background:hover {
    background: #2F314114;
    border-radius: 8px;
}

#Change_password_background, #Manage_Account_Security_background, #Withdraw_History_background {
    margin-left: 8px;
}

#Change_password_background, #Personal_Information_background, #Manage_Account_Security_background, #Withdraw_Request_background, #Withdraw_History_background{
    transition: background 200ms linear, border 200ms linear;
}

.verificationBtn:hover{
    background-color: #48988F!important;
}

.verificationBtn{
    transition: background 200ms linear, border 200ms linear;
}

.Change_password_button:hover {
    background-color: #3a95e0;
    border: 2px solid #3a95e0;
}

.custom_checkbox {
    display: none;
}

.custom_checkbox_label {
    cursor: default;
    vertical-align: middle;
}

.custom_checkbox_label:before {
    content: " ";
    display: inline-block;
    font: 14px/22px FontAwesome;
    margin-right: 15px;
    position: relative;
    text-align: center;
    text-indent: 0px;
    width: 24px;
    height: 24px;
    background: #fff;
    background-color:#F7F7F7;
    border-radius: 5px;
    border-color: #F7F7F7;
    border-style: solid;
    border-width: 2px;
    vertical-align: middle;
    transition: background 200ms linear, border 200ms linear;
}

.custom_checkbox:checked + .custom_checkbox_label:before {
    content: "\f00c";
    color: white;
    background-color: #3E827A;
    border-color: #3E827A;
}

.withdraw_text {
    font-size: 14px;
}

.Withdraw_Funds_button {
    background: #313131!important;
    border-radius: 8px;
    font-size: 16px !important;
    font-weight: normal !important;
    height: 50px;
    color: #5B5B5B!important;
    width: 100%;
    margin-top: 24px;
    border: 0px;
}

.personal_information_withdrawal{
    background: #2F3141;
    border-radius: 8px;
}

.Withdraw_Funds_button.active {
    background: #3E827A!important;
    color: white!important;
    border: 0px;
}
.Verify_Funds_button.active {
    background: #e10f35 !important;
    color: white!important;
    border: 0px;
}
.custom-file-upload {
    border: 1px solid #ccc;
    display: inline-block;
    padding: 10px 12px 6px;
    cursor: pointer;
    font-weight: bold;
    background: #ffffff;
    width: 100%;
    text-align: center;
    min-width: 200px;
}

.custom-file-upload input {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
}

input[type="file"] {
    display: block;
}

button#identity_submit,
button#resident_submit {
    text-transform: capitalize !important;
}

#identity_submit,
#CreditCardFile_submit,
#resident_submit,
#verification_submit {
    background: #66abde;
    color: #ffffff;
    padding-top: 12px;
    padding-bottom: 10px;
    min-width: 200px;
    border-radius: 0px;
    background-image: url(/images/my-profile_v2/downloadIcon.png) !important;
    background-size: 28px !important;
    background-repeat: no-repeat !important;
    background-position-y: 5px !important;
    background-position-x: 25px !important;
}

.submitTitle {
    padding-bottom: 100px;
    color: #333 !important;
}

.title-panel {
    font-size: 19px !important;
    color: #404378 !important;
    text-align: center !important;
    padding-bottom: 27px !important;
    font-weight: 400 !important;
}

.my-profile-panel-new label {
    color: black !important;
    min-width: 87%;
    font-weight: bold;
}

.my-profile-panel-new button.btn {
    line-height: 1.45;
    border-radius: 0 !important;
}

small {
    color: #333;;
}

table.table.panelTable-new tr td ul.trade-list {
    padding: 0;
    width: 100%;
    list-style-type: none;
    margin: 0;
    text-align: center;
}

table.table.panelTable-new tr td ul.trade-list li {
    display: inline-block;
    width: 30%;
    text-align: center;
    font-size: 14px;
}

.table > tbody > tr > td {
    border-top: 0 !important;
}

@media only screen and (max-device-width: 800px) {
    .range-filter {
        font-size: 3vw !important;
    }

    .dataTables_scrollHeadInner {
        font-size: 3vw !important;
    }

    .odd, .even {
        font-size: 3vw !important;
    }

    .mobile_none {
        display: none;
    }

    .vw3mobile {
        font-size: 4vw !important;
    }

    .menu_mobile_column {
        flex-direction: column !important;
    }

    .personal_information_input,.personal_information_select {
        width: 100%;
    }

    .minus {
        width: 15% !important;
    }

    .plus {
        width: 15% !important;
    }

    .margin-25 {
        margin-top: 25% !important;
    }

    .col-lg-1, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-md-1, .col-md-10, .col-md-11, .col-md-12, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-sm-1, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-xs-1, .col-xs-10, .col-xs-11, .col-xs-12, .col-xs-2, .col-xs-3, .col-xs-4, .col-xs-5, .col-xs-6, .col-xs-7, .col-xs-8, .col-xs-9 {
        padding-right: 5px !important;
        padding-left: 5px !important;
    }

    #newaccautbtn{
        width: 100%;
        margin-top: 8px !important
    }

    .menu_mobile_column div a{
        width: 100%;
    }
}

input.Transfer-button, input.Change-password-button, input.Deposit-button, input.Withdr-button {
    padding: 6px 12px!important; /*12px 24px!important;*/
    line-height: 20px!important;
    letter-spacing: -0.32px!important;
    border: 1px solid #E3E3E3;
    border-radius: 8px;
    margin: 8px 0px;
    background: transparent;
    color: black;
}

input.Transfer-button:hover,input.Withdr-button:hover,input.Deposit-button:hover, input.Change-password-button:hover {
    background: #F7F7F7!important;
    color: black!important;
    border: 1px solid #E3E3E3!important;
}

#meta-table_filter {
    display: none;
}

.newaccautbtn {
    font-size: 18px !important;
    font-weight: normal !important;
    width: fit-content;
    background-color: #3a95e0;
    color: #023b79;
    border: 2px solid #3a95e0;
    margin-top: 15px;
    height: 50px;
}

#trades-table{
    text-transform: uppercase;
}

#trades-table_filter, #nft-table_filter {
    display: none;
}


#trades-table_wrapper, #transaction_wrapper, #nft-table_wrapper {
    overflow-x: scroll;
}

#trades-table_wrapper .dataTables_scroll {
    width: 1800px;
}

#ui-datepicker-div {
    background-color: #F4F3F3;
    border-radius: 5px;
    border-color: #ffffff;
    border-style: solid;
    border-width: 2px;
}

.ui-datepicker {
    width: 13.5em;
    padding: 0.2em 0.2em 0;
}

.ui-datepicker .ui-datepicker-header {
    position: relative;
    padding: 0.2em 0;
}

.ui-datepicker .ui-datepicker-title {
    margin: 0 2.3em;
    line-height: 1.8em;
    text-align: center;
}

.ui-datepicker th {
    padding: 0.7em 0.3em;
    text-align: center;
    font-weight: bold;
    border: 0;
}

.ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default, .ui-button, html .ui-button.ui-state-disabled:hover, html .ui-button.ui-state-disabled:active {
    border: 1px solid #c5c5c5;
    background: #f6f6f6;
    font-weight: normal;
    color: #454545;
    text-align: center;
}

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #003eff;
    background: #007fff;
    font-weight: normal;
    color: #ffffff;
}

.ui-datepicker td {
    border: 0;
    padding: 1px;
}

.ui-datepicker table {
    width: 100%;
    font-size: .9em;
    border-collapse: collapse;
    margin: 0 0 0.4em;
}

.ui-datepicker td span, .ui-datepicker td a {
    display: block;
    padding: 0.2em;
    text-align: right;
    text-decoration: none;
}

.ui-datepicker .ui-datepicker-prev {
    left: 2px;
}

.ui-datepicker .ui-datepicker-prev, .ui-datepicker .ui-datepicker-next {
    position: absolute;
    top: 2px;
    width: 1.8em;
    height: 1.8em;
}

.ui-datepicker .ui-datepicker-prev span, .ui-datepicker .ui-datepicker-next span {
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    top: 50%;
    margin-top: -8px;
}

.ui-widget-header .ui-icon {
    background-image: url(/images/my-profile_v2/ui-icons.png);
}

.ui-datepicker .ui-datepicker-next {
    right: 2px;
}

.ui-datepicker .ui-icon {
    display: block;
    text-indent: -99999px;
    overflow: hidden;
    background-repeat: no-repeat;
    left: 0.5em;
    top: 0.3em;
}

.ui-icon-circle-triangle-w {
    background-position: -80px -192px;
}

.ui-icon-circle-triangle-e {
    background-position: -48px -192px;
}

.ui-icon {
    width: 16px;
    height: 16px;
}

.dataTables_wrapper.no-footer .dataTables_scrollBody {
    border-bottom: none;
}

.dataTable thead tr th {
    border-bottom: none;
}

.odd td {
    border-bottom: solid #F7F7F7 1px;
}

table.dataTable.display tbody tr.odd > .sorting_1, table.dataTable.order-column.stripe tbody tr.odd > .sorting_1 {
    background-color: rgba(0, 0, 0, 0);
}

table.dataTable.display tbody tr.even > .sorting_1, table.dataTable.order-column.stripe tbody tr.even > .sorting_1 {
    background-color: rgba(0, 0, 0, 0);
}

.table.dataTable tbody tr {
    background-color: rgba(0, 0, 0, 0);
}

.personal-list li {
    padding-left: 16px;
}

.td_center td {
    text-align: center;
    vertical-align: middle;
}

.personal-list li {
    text-align: left !important;
}

.personal-list li:lang(ar) {
    text-align: right;
}

.contain-left-side-bar-new ul li.active {
    border-radius: 8px !important;
}

#trades-table_wrapper, #transaction_wrapper, #withdraw_wrapper, #meta-table_wrapper, #nft-table_wrapper {
    margin-top: 16px;
}

.row .sorting {
    border-left: none !important;
}

#dynamic-panel .animated .dataTables_wrapper .dataTables_scroll div.dataTables_scrollBody {
    padding-bottom: 0px !important;
    border-bottom: 0px solid #fff !important;
    border-top: 1px #F7F7F7 solid;
}

.content {
    margin-top: 0px !important;
}

.hr-new {
    margin-top: 20px;
    margin-bottom: 20px;
}

::-webkit-scrollbar {
    width: auto;
}

::-webkit-scrollbar-track {
    background: inherit;
}

::-webkit-scrollbar-thumb {
    background-color: auto;
    border-radius: auto;
    border: none;
}

.profile-form .Withdraw_Funds_button {
    background-color: #383e47 !important;
    font-size: 18px !important;
    font-weight: normal !important;
    height: 50px;
    color: white;
    margin-left: 15%;
    width: 85%;
    margin-right: 5%;
    margin-top: 45px;
    border: 2px solid #383e47;
    border-radius: 0px !important;
}

.profile-form .Withdraw_Funds_button.active {
    background-color: #3a95e0 !important;
    color: #023b79 !important;
    border: 2px solid #3a95e0 !important;
}


#dynamic-panel #meta-table_filter label {
    font-size: 18px !important;
    font-weight: 500 !important;
    white-space: nowrap !important;
    color: #343434 !important;
}

#dynamic-panel .newaccautbtn{
    font-size: 18px !important;
    font-weight: normal !important;
    width: fit-content;
    background-color: #3a95e0!important;
    color: #023b79!important;
    border: 2px solid #3a95e0!important;
    border-radius: 0px !important;
    margin-top: 15px;
    height: 50px;
}

#dynamic-panel .submitPassword{
    margin-left: 0px!important;
    border-radius: 8px!important;
}

.dataTable .sorting_desc{
    background-color: #f3f3f3 !important;
    border-left: 0px solid !important;
    border-radius: 16px 16px 0px 0px;
}

.profile-form-new{
    padding: 48px;
    background: #1A1B25;
    border-radius: 16px;
}

#verification-center_background{
    margin-bottom: 16px;
}

.verification-row{
    background-color: white;
    padding: 16px;
    border-radius: 8px;
    margin-top: 8px;
    margin-left: 0px;
    display: flex;
    flex-direction: row;
    transition: all 0.25s ease-out;
    max-width: 100%;
}

.color-verification-id{
    transition: all 0.25s ease-out;
}

.verification-row-text{
    margin: 0px 16px;
    font-weight: 500;
    font-size: 16px;
    align-self: center;
    color: #1A1B25;
    width: 100%;
    transition: all 0.25s ease-out;
}

.verification-dowload-btn{
    padding: 0px 6px;
    background: #B0B0C0;
    border-radius: 43px;
    width: 24px;
    height: 24px;
    align-self: center;
    cursor: pointer;
    transition: all 0.25s ease-out;
    display: flex;
    align-items: center;
}
.my_account_container .upload-modal .modal__header{
    position: unset;
}
.my_account_container .dataTable .sorting_desc, .my_account_container .sorting{
    background-color: #ffffff !important;
}

/*.site-header{*/
/*    position: relative!important;*/
/*}*/

.WalletBalanceLeftBar p{
    color: #ffffff;
}

.WalletBalanceLeftBar p:lang(ar){
    text-align: right;
}

.upload-btn{
    margin-right: 20px;
}

.upload-btn:lang(ar){
    margin-left: 20px;
}

.verification-dowload-btn img{
    /*margin-top: -5px;*/
    width: 12px;
    height: 14px;
    transition: all 0.25s ease-out;
}

.verification-row:hover{
    background-color: #3E827A;
}

.verification-row:hover .color-verification-id{
    filter: invert(100%) brightness(107%) contrast(106%);
}

.verification-row:hover .verification-row-text{
    color:white;
}

.verification-row:hover .verification-dowload-btn{
    background: rgba(255, 255, 255, 0.24);
}

.dowload-icons{
    display:flex;
    flex-direction: row;
}

@media only screen and (max-device-width: 768px) {
    .upload-btn{
        margin-bottom: 20px;
        margin-right: unset;
    }
    .dowload-icons{
        flex-direction: column;
    }
}

.false-modal{
    padding: 32px;
    background: #f2dede;
    border-radius: 16px;
    position: relative;
    border-color: #ebccd1;
    color: #a94442;
}

.modal-text{
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
}

.upload-modal{
    padding: 32px;
    background: white;
    border-radius: 16px;
    position: relative;
    display: flex;
    flex-direction: column;
    padding-top: 2px;
}

.modal-title{
    color: #202026;
    font-weight: 600;
    font-size: 24px;
    line-height: 32px;
    text-align: center;
}

.modal-subtitle{
    font-weight: 500;
    font-size: 12px;
    line-height: 16px;
    text-align: center;
    letter-spacing: -0.24px;
    color: #818C99;
    margin-top: 8px;
}

.modal-drag{
    padding: 48px;
    border: 2px dashed rgba(62, 130, 122, 0.24);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
}

.modal-img-big{
    margin-bottom: 24px;
    width: 64px;
    height: 64px;
    filter: invert(47%) sepia(17%) saturate(1092%) hue-rotate(124deg) brightness(90%) contrast(86%);
}

.upload-modal .modal__close{
    color: #e5e5e5;
}
.upload-modal .col-lg-4{
    width:100%!important;
}

.sorting{
    color: #000000!important;
}

.Withdraw_Funds_button{
    padding: 7px 7px!important;
}
.my_account_container .upload-btn img{
    transform: rotate(360deg);
}

.my_account_container{
    margin: 45px 0;
}

@media (min-width: 768px){
    .row-ar:lang(ar){
        display: flex;
    }
}

.upload-modal .faux_select .custom-file-upload{
    width:100% !important;
}

@media only screen and (max-device-width: 800px) {
    input.Transfer-button, input.Change-password-buttoni, input.Deposit-button, input.Withdr-button{
        padding: 8px 20px!important;
        margin: 4px 0px;
    }
}

#meta-transfer-submit, button.footer_close_modal.btn-danger, #meta-new-password-submit, #meta-new-user-submit{
    padding: 12px 24px!important;
    line-height: 20px!important;
    letter-spacing: -0.32px!important;
    border: 1px solid #E3E3E3;
    border-radius: 8px;
    margin: 8px 0px;
    background: transparent;
    color: black;
}

#meta-transfer-submit:hover, #meta-new-password-submit:hover, .btn-danger.active, .btn-danger:active, .open>.dropdown-toggle.btn-danger, .btn-danger.focus, .btn-danger:focus, button.footer_close_modal.btn-danger:hover, #meta-new-user-submit:hover{
    background: #F7F7F7!important;
    color: black!important;
    border: 1px solid #E3E3E3!important;
}

footer.modal__footer {
    text-align-last: center;
}

select#accountMetaType {
    margin-top: 8px;
}

.Change_password_Form .Change_password_button{
    padding:16px 24px!important
}

.withdrawal-form .input-group{
    width:100%;
}

.dataTable .sorting_desc, .dataTable .sorting_asc, .dataTable .sorting{
    color: #585656 !important;
    font-weight: 600 !important;
    font-size: 14px !important
}
.dataTable, .dataTables_scrollBody{
    color: #585656 !important;
    font-size: 14px !important;
    font-weight: 400;
}


.date-range-info-input{
    font-size: 14px;
    color: grey;
    /*width: 50%;*/
    display: flex;
    align-items: center;
    padding-right: 20px;
}

@media (max-width: 1199px){
    .date-range-info-input{
        display: none;
    }
}

.withdrawal-form select.input-lg {
    height: 46px !important;
}

.withdrawal-form .type-input-v2{
    border-radius: 8px;
    width: 100%;
    background: rgb(48 49 66);
    height: 46px;
    border: solid #303142 1px;
    color: #fcfdfd;
    padding-left: 10px;
}

@media (max-width: 600px) {
    #search_balance_input{
        display: none;
    }
}


.dataTables_empty{
    text-align: left!important;
    padding-left: 15px;
    vertical-align: middle;
    font-size: 13px;
    color: #aba6a6;
}
.dataTables_scroll{
    text-transform: uppercase;
}

/* STYLES FOR bitki,  */

/*header.site-header{*/
/*    position: relative!important;*/
/*}*/

/*#primary main#main{*/
/*    margin-top: 0px!important;*/
/*}*/
/*header.site-header #myHeader{*/
/*    position: relative!important;*/
/*}*/

/*ss3-force-full-width .n2-section-smartslider{*/
/*    display: none!important;*/
/*}*/

#trades-table_wrapper .dt-button, #transaction_wrapper .dt-button, #nft-table_wrapper .dt-button {
    background-color: transparent!important;
    color: #3e827a!important;
    font-size: 14px!important;
    padding: 12px 16px!important;
    text-align: center!important;
    white-space: nowrap!important;
    float: right!important;
    margin: 0 2px!important;
    border: none!important;
    border-radius: 6px!important;
    box-shadow:none!important;
}
#trades-table_wrapper button.dt-button:hover, #transaction_wrapper button.dt-button:hover, #nft-table_wrapper button.dt-button:hover {
    color: #fff!important;
    background: #3e827a!important;
}

.Withdraw_Request{
    flex-direction: row-reverse;
}

.Withdraw_Request:lang(ar) {
    flex-direction: row;
}

.Withdraw_Request .column{
    width:50%;
}

.Withdraw_Request .Withdraw_Request_column2{
    width: 45%;
    margin-left: 5%;
}
.Withdraw_Request .Withdraw_Request_column1{
    width: 50%;
}

@media (max-width: 550px) {
    .Withdraw_Request{
        flex-direction: column-reverse;
    }
    .Withdraw_Request .Withdraw_Request_column2, .Withdraw_Request .Withdraw_Request_column1{
        width:100%;
        margin-left: 0;
    }
}

.profile-column-main-v2{
    /* height: calc(100vh - 55px); */
}

@media (max-width: 991px) {
    .profile-column-main-v2{
        height: auto;
    }
}

.menu_mobile_column{
    max-width: 100%;
}

.trades-header-column{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}

@media (max-width: 500px) {
    .trades-header-column{
        flex-direction: column;
        align-content: center;
        flex-wrap: wrap;
    }
}

.password-error{
    margin-top:24px;
    color: red;
}
.my-trades #trades-table_wrapper .dataTables_scroll,
.Transaction_History #transaction_wrapper .dataTables_scroll
.my-nft #nft-table_wrapper .dataTables_scroll {
    margin-top: 40px;
}
#trades-table tr td,#transaction tr td {
    color: #585656 !important;
    font-size: 14px !important;
    font-weight: 400;
}
#trades-table .trades-table
,#transaction .trades-table{
    font-size: 13px !important;
    color: #aba6a6 !important;
    padding-left: 15px !important;
}
.verification-dowload-btn img {
    transform: rotate(180deg);
}
@media (max-width: 500px) {
    .my-trades .dt-buttons{
        top: 13rem !important;
        right: 8rem !important;
    }
    .my-trades #trades-table_wrapper .dataTables_scroll,
    .my-nft #nft-table_wrapper .dataTables_scroll,
    .Transaction_History #transaction_wrapper .dataTables_scroll {
        margin-top: 20px;
    }
}

#Transfer-button[data-status="cancel"], #Transfer-button[data-status="approved"]{
    display: none;
}

.daterangepicker{
    color:#000!important;
}


.settingsModal{
    width: 500px;
    /* height: 300px; */
    position: fixed;
    background-color: white;
    top: calc(50% - 200px);
    left: calc(50% - 250px);
    border: 1px solid rgba(0,0,0,.2);
    border-radius: 2px;
    padding: 15px;
    z-index: 100;
}
.header-settings-box{
    display:flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.close-modal-settings{
    font-size: 26px;
    line-height: 20px;
    color: #333;
}
.close-modal-settings:hover{
    cursor:pointer;
    color:black;
}
.modal-checkbox-label{
    margin-left:5px;
}

.settingsModal input[type=checkbox]:checked:after{
    content:none;
}

.my-trades .settings-button span{
    color: #303142!important;
}
.my-trades .settings-button:hover span{
    color: #fff!important;
}
.dataTables_scrollBody td {
    font-size: 12px !important;
}

input.Transfer-button, input.Change-password-button, input.Deposit-button, input.Withdr-button {
    padding: 5px 8px !important;

}


input.btn-danger.Change-password-button {
    padding: 5px 21px !important;
}

.exchange_list_mask:lang(ar){
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
}

.fa-chevron-down:lang(ar){
    margin: 0!important;
    padding-left: 0!important;
}

.right-ar:lang(ar){
    margin-left: unset!important;
    margin-right: auto!important;
}

@media (min-width: 768px){
    .flex-ar:lang(ar) {
        flex-direction: row-reverse!important;
    }
}

.d-none{
    display: none!important;
}

.tadawol-withdraw{
    flex-direction: column-reverse!important;
    gap: 24px;
}

.tadawol-withdraw .Withdraw_Request_column2{
    width: unset;
    margin-left: unset;
}

.tadawol-withdraw .Withdraw_Request_column1{
    width: unset;
    align-self: center;
}

#nft-table_filter .cards {
    background-color: transparent;
}

/*nft page*/

#nft-table tbody img {
    height: 60px;
    width: 60px;
}
#nft-table_wrapper .cards img.zoom {
    width: 145px !important;
    height: 145px !important;
    margin: 15px 15px 0 15px;
}
#nft-table_wrapper .cards tbody tr {
    float: left;
    margin: 10px;
    border: 1px solid #aaa;
    box-shadow: 3px 3px 6px rgb(0 0 0 / 25%);
    min-height: 235px;
    max-width: 177px;
    background-color: transparent;
}
#nft-table_wrapper .cards tbody td {
    display: block;
    overflow: hidden;
    text-align: center;
}

#nft-table tr td{
    text-align: center;
    vertical-align: middle;
}
.zoom {
    transition: transform .2s; /* Animation */
    margin: 0 auto;
}

.zoom:hover {
    transform: scale(1.3); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.uploaded-block.file-pending{
    background-color: #777777;
}



.uploaded-block.file-approved{
    background-color: #3E827A;
}



.uploaded-block.file-reject{
    background-color: #823e3e;
}

.uploaded-block .file-reason{
    display: none;
    position: absolute;
    background: #ffffffeb;
    border: solid #e4e4e4 1px;
    height: 66px;
    width: 279px;
    padding: 0 15px;
    border-radius: 7px;
    color: black;
    margin-top: 0px;
    align-items: center;
    line-height: 1.2;
}

.uploaded-block:hover .file-reason {
    display: flex;
}
.personal_information_input::placeholder {
    color: #a19c9c !important;
}

.password-control {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 20px;
    height: 20px;
    cursor: pointer;
}
.btn-save{
    color:white;
    background-color: #66e15c;
}
.btn-save:hover {
    background-color: #71f802;
}

.btn-create{
    color:white;
    border-color: #5c9ce1;
}
.btn-cancel{
    color:white;
    background-color: #e15c5c;
}
.btn-cancel:hover {
    background-color: #d70d0d;
}
.accordion-container {
    max-width: 170px !important;
    overflow: hidden;
}

.btn.btn-expand {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.dataTables_wrapper .dataTable td .accordion-container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.dataTables_wrapper .dataTable td .accordion-container{
    max-width: 170px !important;
    overflow: hidden;
}
.accordion {
    max-width: 170px;
    text-transform: none!important; /* Ensures the text is not all uppercase */
    text-align: left!important;
}
.card-header{
    max-width: 157px!important;
}
/*.btn .btn-expand:focus {*/
/*    outline: none!important;*/
/*}*/
.btn:focus, .btn:active, .btn:hover {
    outline: none;
    border: none;
}
.card_prop{
    width: 288px;
    height: 391px;
    /*background: linear-gradient(180deg, rgba(3, 7, 55, 0) 0%, #030737 100%)!important;*/
    background-image: url(/images/my-profile_v2/prop-trading/rectangle.png);
    border-radius: 16px;
    --bs-card-border-width: 0!important;
    /*border-color:#000659!important;*/
}
.container-badge{
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 23px;
}
.prop_id{
    margin-left: 16px;
    color: white;
    font-size: 20px;
    font-family: Inter;
    font-weight: 400;
    line-height: 24px;
    word-wrap: break-word
}
.status-badge {
    margin-right: 16px;
    width: 76px;
    height: 25px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    background: #00AA00;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-start;
}

.status-badge-circle {
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 9999px;
}
.status-badge-in {
    margin-right: 16px;
    width: 76px;
    height: 25px;
    padding-left: 8px;
    padding-right: 8px;
    padding-top: 4px;
    padding-bottom: 4px;
    background: #f47310;
    border-radius: 24px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    justify-content: flex-start;
}


.status-badge-text {
    color: white;
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 16.8px;
    word-wrap: break-word;
}
.Key1,.Key2,.Key3{
    padding: 14px;
    background: rgba(255, 255, 255, 0.20);
    border-radius: 56px;
    overflow: hidden;
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically */
    width: 44px;             /* Adjust width as needed */
    height: 44px;            /* Adjust height as needed */
}
.Key3{

}
.w_wrapper{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 14px;
    background: #F7F8F9;
    border-radius: 56px;
    overflow: hidden;
}
.wrench_alt, .share{
    width: 16px;
    height: 16px;
    display: flex; /* Add flex display */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}
.vector{
    display: flex;
}
.vector:hover,.show_metrics{
    cursor: pointer;
}
.w_wrapper_chart{
    display: flex;
    flex: 1 1 0;
    align-self: stretch;
    padding: 14px;
    background: #F7F8F9;
    border-radius: 56px;
    overflow: hidden;
    justify-content: center;
    align-items: center;
    gap: 8px;
}
.key_3 {
    flex: 1 1 0;
    align-self: stretch;
    background: #F7F8F9;
    border-radius: 56px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.ChartArea1 {
    width: 16px;
    height: 16px;
    display: flex; /* Add flex display */
    justify-content: center; /* Center horizontally */
    align-items: center; /* Center vertically */
}

.show_metrics {
    width: 106px;
    color: #030737;
    font-size: 16px;
    font-family: Inter;
    font-weight: 500;
    line-height: 19.20px;
    word-wrap: break-word;
}
.bs-card-border-color {
    border: none !important;
}
.bs-card-border-color {
    border-color: transparent !important;
}
.flex-container-inline {
    justify-content: flex-start;
    align-items: center;
    gap: 4px;
    display: inline-flex;
}

.flex-container {
    justify-content: flex-start;
    align-items: flex-start;
    gap: 4px;
    display: flex;
}

.text-label, .date-label {
    color: #CCD2FE;
    font-size: 12px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 14.40px;
    word-wrap: break-word;
}
.program-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: flex;
}

.program-title {
    color: #CCD2FE;
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    line-height: 16.80px;
    word-wrap: break-word;
}

.program-value {
    color: white;
    font-size: 18px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 21.60px;
    word-wrap: break-word;
}
.b_flex-column-wrapper{
    width: 100%;
    height: 241px;
    padding: 16px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}
.w_flex-column-wrapper{
    width: 100%;
    height: 241px;
    padding: 16px;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 16px;
}
.b_flex-column-wrapper{
    background: #000659;
}
.w_flex-column-wrapper{
    background: white;
}
.flex-row-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.key-container {
    align-self: stretch;
    height: 44px;
    display: inline-flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.key {
    padding: 14px;
    background: rgba(255, 255, 255, 0.20);
    border-radius: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.key-icon {
    width: 16px;
    height: 16px;
    position: relative;
}
.flex-column-stretch {
    align-self: stretch;
    height: 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
}

.relative-container {
    width: 278px;
    height: 64px;
    position: relative;
}

.rectangle-primary {
    width: 278px;
    height: 64px;
    position: absolute;
    left: 0;
    top: 0;
    background: #01086A;
    border-radius: 8px;
}

.rectangle-secondary {
    width: 205px;
    height: 64px;
    position: absolute;
    left: 0;
    top: 0;
    background: #00098C;
    border-radius: 8px;
}

.balance-amount {
    left: 12px;
    top: 12px;
    position: absolute;
    color: white;
    font-size: 18px;
    font-family: Inter, sans-serif;
    font-weight: 400;
    line-height: 21.60px;
    word-wrap: break-word;
}

.balance-label {
    left: 12px;
    top: 36px;
    position: absolute;
    color: #CCD2FE;
    font-size: 14px;
    font-family: Inter, sans-serif;
    font-weight: 500;
    line-height: 16.80px;
    word-wrap: break-word;
}
.black_icon {
    align-self: stretch;
    height: 44px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: inline-flex;
}
.w_program_title {
    color: #9193A3;
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    line-height: 17px;
    word-wrap: break-word;
}
.w_program_value {
    color: #030737;
    font-size: 18px;
    font-family: Inter;
    font-weight: 400;
    line-height: 22px;
    word-wrap: break-word;
}
.w_flex-column-stretch {
    align-self: stretch;
    height: 64px;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: flex;
}
.w_relative-container {
    width: 278px;
    height: 64px;
    position: relative;
}
.w_rectangle_first {
    width: 278px;
    height: 64px;
    left: 0px;
    top: 0px;
    position: absolute;
    background: #EBEBEF;
    border-radius: 8px;
}
.w_rectangle_second {
    width: 205px;
    height: 64px;
    left: 0px;
    top: 0px;
    position: absolute;
    background: #00098C;
    border-radius: 8px;
}
.mask_group {
    width: 205px;
    height: 64px;
    left: 0px;
    top: 0px;
    position: absolute;
}
.w_rectangle_third {
    width: 205px;
    height: 64px;
    left: 0px;
    top: 0px;
    position: absolute;
    background: #001DFA;
    background: #001DFA;
    border-radius: 8px;
}
.white_icon {
    align-self: stretch;
    height: 44px;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 8px;
    display: inline-flex;
}
.w_balance_amount {
    left: 12px;
    top: 12px;
    position: absolute;
    color: white;
    font-size: 18px;
    font-family: Inter;
    font-weight: 400;
    line-height: 21.60px;
    word-wrap: break-word;
}
.w_balance {
    left: 12px;
    top: 36px;
    position: absolute;
    color: #CCD2FE;
    font-size: 14px;
    font-family: Inter;
    font-weight: 500;
    line-height: 16.80px;
    word-wrap: break-word;
}

@media (max-width: 767px) { /* Adjust the max-width based on your specific breakpoint */
    .mobile-center {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center; /* For inline or text content */
    }
    .card{
        margin-top: 16px;
        /*margin-bottom: 16px;*/
    }
}
.fileImageIcon{
    position: relative;
    margin-top: 15px;
    margin-left: 15px;
}
.share-icons:hover{
    cursor: pointer;
}
.wrapper_share,.wrapper_share_c {
    position: absolute;
    top: 390px;
    left: 0px;
    /*transition: transform 0.5s ease-in-out, opacity 0.5s;*/
    display: none;
}
.wrapper_share_l{
    position: absolute;
    top: 20px;
    left: -5px;
    transition: transform 0.5s ease-in-out, opacity 0.5s;
    display: none;
}

.container-certificate {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}
.wrapper_certificate {
     display: flex;
     justify-content: center;
     align-items: center;
     position: relative;
     width: 769px;
     height:457px;
     background-image: url(/images/my-profile_v2/certificate.png);
     background-size: cover;
     background-position: center;
 }
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600&display=swap');

.level_name, .user_name {
    font-family: 'Open Sans', sans-serif;
    text-transform: uppercase; /* Делает текст заглавными буквами */
    /* Дополнительные стили, если нужны */
}

.level_name, .user_name {
    font-family: 'Dancing Script', cursive;
    color: white;
    position: absolute;
    color: white;
}

.level_name {
    font-size: 24px;
    text-transform: uppercase;
    top: 10px;
}

.user_name {
    font-size: 33px;
    top: 200px;
    left: 263px;
}

.wrapper_certificate_game {
    position: relative;
    width: 455px;
    height:277px;
    /*padding-left: 16px;*/
    /*padding-right: 16px;*/
    background-image: url(/images/my-profile_v2/certificate.png);
    background-size: cover;
    background-position: center;
}
.row_game{
    max-width: 958px;
    margin-left: 16px;
    margin-right: 16px;
}
.level_name_game, .user_name_game {
    font-family: 'Dancing Script', cursive;
    color: white;
    position: absolute;
    color: white;
}
.level_name_game {
    font-size: 22px;
    text-transform: uppercase;
    top: -6px;
    left:199px;
}
.user_name_game {
    font-size: 36px;
    top: 110px;
    left:176px;
}
.certificate_popup {
    position: absolute;
    bottom: 10px;
    left: 10px;
    display: none;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.5);
}
.certificate_popup:hover{
    cursor: pointer;
}

.wrapper_certificate:hover .certificate_popup {
    display: block;
}
.wrapper_certificate_game:hover .certificate_popup {
    display: block;
}

.popup_icon {
    margin-right: 5px;
}
.icon_game{
    width: 50px;
    height: 50px;
}

.icon_game_s, .share-icons{
    width: 35px;
    height: 35px;
}

.share-icons:hover{
    cursor: pointer;
}
.wrapper_share {
    position: absolute;
    top: 450px;
    left: -10px;
    transition: transform 0.5s ease-in-out, opacity 0.5s;
    display: none;
}
.wrapper_share_l{
    position: absolute;
    top: 50px;
    left: -10px;
    transition: transform 0.5s ease-in-out, opacity 0.5s;
    display: none;
}

.share_certificate {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 6px;
    border-radius: 10px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    width: auto;
    transform: translateX(-100%);
    transition: transform 0.5s ease-in-out;
    position: absolute;
    bottom: 60px;
    left: 100px;
}

.close-popup {
    background-color: #ff4d4d;
    color: white;
    border: none;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    cursor: pointer;
    position: absolute;
    top: -15px;
    right: -15px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.shares-icons{
    width: 30px;
    height: 30px;
}

.choose_ava {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    padding: 5px 10px;
    background: whitesmoke;
    color: #092d87;
    border: 1px solid #092d87;
    border-radius: 4px;
    white-space: nowrap;
    z-index: 5000;
}
.custom-alert{
    background-color: white;
    border: 1px solid #ccc;
    color: #333;
}
#activeChallengeLink{
    cursor: pointer;
}
/* Overriding styles for images inside .share_certificate when .active is applied */
.active .share_certificate img {
    filter: none !important; /* Reset or apply the desired filter here */
    transition: none; /* Reset or apply the desired transition here */
}
.share-popup {
    position: absolute;
    display: block;
    z-index: 10000;
    opacity: 1
}




/*########################################################*/

button#identity_submit,
button#resident_submit {
                         text-transform: capitalize !important;
     }


.verificationBtn {
    background-color: #0fbf04 !important;
    border-color: #0fbf04 !important;
}

.deposite-button {
    background: linear-gradient(113.78deg, #ee2a2a 28.76%, #bb0b0d 127.6%);
    border-radius: 5px;
    margin-top: 20px;
}

.col-md-4.col-lg-3.col-sm-12 {
    background-color: transparent !important;
    min-height: unset !important;
}

#main {
    background: #ECF3FB;
}

#Transaction_History,
#Account_Details,
#verification_center,
#Withdraw,
#my-trades,
#exchange_container {
    padding: 32px 16px 16px !important;
    background: #FFFFFF;
    border-radius: 4px;
}

#Transaction_History_button {
    display: none;
}

.range-filter.range-options {
    background-color: #F2F8FF;
    border: 1px solid #6A717B;
    border-radius: 2px;
    padding: 7.5px 32px 7.5px 10px;
    max-height: 34px;
    font-size: 14px !important;
    background-position-y: calc(100% - 10px);
    background-position-x: calc(100% - 14px);
}

.calendar_button {
    padding: 7.5px 10px;
}

#dynamic-panel {
    background-color: transparent !important;
}

.my_account_container .dataTable .sorting_desc,
.my_account_container .sorting {
    background-color: #F2F8FF !important;
    color: #637085;
}

.dataTables_scrollHeadInner {
    overflow: hidden;
    border-radius: 2px;
    color: #637085;
}

.contain-left-side-bar-new ul {
    gap: 6px;
    display: flex;
    flex-direction: column;
    padding-top: unset;
}

.contain-left-side-bar-new ul li {
    background: #FFFFFF;
    border-radius: 4px !important;
}

.contain-left-side-bar-new ul li span {
    color: #12171F !important;
}

.contain-left-side-bar-new ul li.active {
    border-radius: 4px !important;
    background: linear-gradient(113.78deg, #ee2a2a 28.76%, #bb0b0d 127.6%);
    color: white !important;
}

.contain-left-side-bar-new ul li.active span {
    color: white !important;
}

.contain-left-side-bar-new ul li img {
    filter: brightness(0) saturate(100%) invert(54%) sepia(96%) saturate(5233%) hue-rotate(338deg) brightness(89%) contrast(110%);
}

.clientName {
    display: none;
}

.ballance-wallet {
    background: #12171F;
    border-radius: 4px;
}

.WalletBalanceLeftBar span {
    color: #0FFF9A;
}

.acc_detail_btn {
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    background-color: unset !important;
    border-bottom: 6px solid;
    border-color: #BB0C0C !important;
    border-radius: unset;
}

.acc_detail_btn a {
    color: #BB0C0C !important;
}

#Change_password_background:hover,
#Personal_Information_background:hover,
#Manage_Account_Security_background:hover,
#Withdraw_Request_background:hover,
#Withdraw_History_background:hover,
.acc_detail_btn:hover {
    background: transparent !important;
    border-radius: unset !important;
}

#Change_password_background,
#Personal_Information_background,
#Manage_Account_Security_background,
#Withdraw_Request_background,
#Withdraw_History_background,
#Exchange_background,
#Operations_history_background {
    width: 100%;
}

.verificationBtn {
    background: linear-gradient(113.78deg, #ee2a2a 28.76%, #bb0b0d 127.6%);
    border-radius: 5px;
}

.personal_information_input {
    border-bottom: 1px solid #C8D8E9;
    border-radius: unset;
    background-color: transparent;
}

.change-detail-annotation {
    background: #637085;
    border-radius: 4px;
    color: unset;
    border-color: unset;
}

#changeMyPasswordForm label {
    display: none;
}

.personal_information_input {
    margin-top: 12px;
}

#verification-center_background {
    display: none;
}

.verification-row {
    background: #F2F8FF;
    border-radius: 4px;
}

.verification-row br {
    display: none;
}

.verification-row:hover {
    background-color: #F2F8FF;
}

.verification-row:hover .verification-row-text {
    color: black;
}

.color-verification-id {
    display: none;
}

.verification-row:hover .verification-dowload-btn {
    background: #6A717B;
}

.verification-dowload-btn {
    background: #6A717B;
    border-radius: 4px;
    width: 40px;
    height: 40px;
    justify-content: center;
}

.verification-dowload-btn img {
    filter: invert(100%);
}

.verification-dowload-btn:hover {
    background: #EE3131 !important;
    filter: invert(0%) !important;
}

.upload-modal .modal__close {
    color: black;
}

.upload-modal .faux_select .custom-file-upload {
    background: #F2F8FF;
}

.modal-img-big {
    filter: unset;
}

.Withdraw_Request {
    flex-direction: column-reverse;
}

.Withdraw_Request .Withdraw_Request_column2 {
    width: 100%;
    margin-left: unset;
    color: #637085 !important;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #C8D8E9;
}

.Withdraw_Request .Withdraw_Request_column1 {
    margin-left: auto;
    margin-right: auto;
}

.profile-form-new {
    border-radius: 4px;
    background: #12171F;
    padding: 40px;
}

span#avaible_balance {
    color: #0FFF9A !important;
}

.personal_information_withdrawal {
    border-radius: 5px;
    background: #1C2A41;
}

#amount {
    background: #1C2A41;
}

.withdrawal-form .type-input-v2 {
    background: #1C2A41;
    border-color: #1C2A41;
}

textarea#bankDetails {
    background: #1C2A41 !important;
}

input#Withdraw_Funds_button {
    background: linear-gradient(113.78deg, #ee2a2a 28.76%, #bb0b0d 127.6%) !important;
    border-radius: 5px;
}

.exchange_swap_box hr {
    border-color: #474A62 !important;
}

.exchange_input {
    background: #1C2A41;
    border-radius: 5px;
}

.exchange_list_mask {
    background: #1C2A41;
}

.exchange_arrow_mask {
    background: #1C2A41;
    border-radius: 8px;
}

.profile #exchangeSubmit {
    background: linear-gradient(113.78deg, #ee2a2a 28.76%, #bb0b0d 127.6%) !important;
    border-radius: 5px !important;
}

#Withdraw_History_background {
    margin-right: 200px;
}

#Trades_History_button {
    display: none;
}
