<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300&amp;family=Roboto:wght@300;400;500;700;900&amp;display=swap");
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

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

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

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

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.rubberBand {
  animation-name: rubberBand;
}

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

@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}

@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.swing {
  transform-origin: top center;
  animation-name: swing;
}

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: none;
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: none;
  }
}
.wobble {
  animation-name: wobble;
}

@keyframes jello {
  from, 11.1%, to {
    transform: none;
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.jello {
  animation-name: jello;
  transform-origin: center;
}

@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  75% {
    transform: translate3d(0, -10px, 0);
  }
  90% {
    transform: translate3d(0, 5px, 0);
  }
  to {
    transform: none;
  }
}
.bounceInDown {
  animation-name: bounceInDown;
}

@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0);
  }
  75% {
    transform: translate3d(-10px, 0, 0);
  }
  90% {
    transform: translate3d(5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInLeft {
  animation-name: bounceInLeft;
}

@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0);
  }
  75% {
    transform: translate3d(10px, 0, 0);
  }
  90% {
    transform: translate3d(-5px, 0, 0);
  }
  to {
    transform: none;
  }
}
.bounceInRight {
  animation-name: bounceInRight;
}

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

@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.bounceOut {
  animation-name: bounceOut;
}

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

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

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

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

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

@keyframes fadeInLeftSmall {
  from {
    opacity: 0;
    transform: translate3d(-100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftSmall {
  animation-name: fadeInLeftSmall;
}

.fadeInLeft {
  animation-name: fadeInLeft;
}

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

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

@keyframes fadeInRightSmall {
  from {
    opacity: 0;
    transform: translate3d(100px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightSmall {
  animation-name: fadeInRightSmall;
}

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

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

@keyframes fadeInUpSmall {
  from {
    opacity: 0;
    transform: translate3d(0, 100px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpSmall {
  animation-name: fadeInUpSmall;
}

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

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

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

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

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

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

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

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

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

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

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

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

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

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

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

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

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

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

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

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

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

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

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

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

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

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

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

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

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

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

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

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

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

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

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

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

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

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

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

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

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

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

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

@keyframes move2 {
  0% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
  50% {
    -webkit-transform: rotate(-1deg) translate(-2px, -2px);
    transform: rotate(-1deg) translate(-2px, -2px);
  }
  100% {
    -webkit-transform: rotate(1deg) translate(2px, 2px);
    transform: rotate(1deg) translate(2px, 2px);
  }
}
@keyframes move3 {
  0% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
  50% {
    -webkit-transform: translate(30px);
    transform: translate(30px);
  }
  100% {
    -webkit-transform: translate(0);
    transform: translate(0);
  }
}
@keyframes move4 {
  0% {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
  50% {
    -webkit-transform: translateX(30px);
    transform: translate(30px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes dashboardtitle {
  0% {
    -webkit-transform: translateX(0);
    transform: translate(0);
  }
  50% {
    -webkit-transform: translateX(50px);
    transform: translate(50px);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes move5 {
  0% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes myanimation {
  0% {
    width: 0;
  }
}
@keyframes myanimation {
  0% {
    width: 0;
  }
}
@keyframes ripple {
  70% {
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes rotated {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.simple-section {
  padding: 1rem 0;
  position: relative;
}

.section-title {
  font-size: 2.27rem;
  font-weight: 600;
  color: #121606;
  text-align: center;
  position: relative;
  margin-bottom: 3rem;
  font-family: "Roboto Condensed", sans-serif;
}
.section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: #061956;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -12px;
  margin: auto;
  border-radius: 1rem;
}
.section-title.title-sm {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.section-title.title-left {
  text-align: left;
}
.section-title.title-left::after {
  margin-left: 0;
}
.section-title.title-white {
  color: #FFF;
}
.section-title.title-white::after {
  background-color: #FFF;
}
.section-title.title-white::before {
  background-image: url("../images/stonex-icon-white.svg");
}

.text-red {
  color: #FF7761;
}

.text-green {
  color: #00B5BD;
}

.blink {
  animation: blinker 1s infinite;
}

@keyframes blinker {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  to {
    opacity: 1;
  }
}
.profile-wrap .card-title {
  background-color: #F8F8F8;
  padding: 1rem;
  margin-bottom: 1rem;
}

.dashboard-title {
  font-size: 1.8rem;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 500;
  color: #121606;
  position: relative;
  margin-bottom: 2rem;
}
.dashboard-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  bottom: -12px;
  border-radius: 1rem;
}

.section-sub-title {
  font-size: 1.175rem;
  text-align: center;
  margin: 0;
  font-weight: 300;
  color: rgba(0, 0, 0, 0.5);
}
.section-sub-title.title-left {
  text-align: left;
}

.bg-curves {
  background-image: url("../images/backgrounds/CurveLine.svg");
  background-size: cover;
}
.bg-curves.curves-lite {
  background-image: url("../images/backgrounds/CurveLineLite.svg");
}

.section-shapes .shape {
  position: absolute;
}
.section-shapes .shape.shape-1 {
  left: 2%;
}
.section-shapes .shape.shape-2 {
  right: 2%;
}
.section-shapes .shape.shape-3 {
  right: 0;
  bottom: 0;
}

.list-bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  list-style-type: none;
}
.list-bullets li {
  color: rgba(0, 0, 0, 0.5);
  font-size: 1.125rem;
  position: relative;
  padding-left: 1.4rem;
}
.list-bullets li::before {
  font-family: remixicon !important;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  color: #061956;
  font-size: 0.7rem;
  top: 0.4rem;
}
.list-bullets.link-white li {
  color: #FFF;
}
.list-bullets.link-white li::before {
  color: #FFF;
}

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

@media screen and (max-width: 767px) {
  .section-title {
    font-size: 2rem;
  }

  .dash-head .breadcrumb {
    justify-content: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 1rem;
  }

  .body-wrap {
    padding-top: 5rem;
  }
}
.alert {
  border-radius: 0.4rem;
}

body {
  font-family: "Roboto", sans-serif;
}

a {
  color: #061956;
  text-decoration: none;
}
a:hover, a:focus, a:active {
  color: #F28D20;
}

.button {
  display: inline-block;
  vertical-align: middle;
  padding: 0.6rem 1.3rem;
  border: none;
  text-align: center;
  transition: all 0.4s ease-in-out;
  border: 1px solid transparent;
  font-size: 1rem;
  font-weight: 600;
}
.button.hover-on-dark:hover {
  color: #FFF;
  border-color: #FFF;
}

.button-long {
  min-width: 130px;
}

.button-dark {
  background-color: #191824;
  color: #FFF;
}
.button-dark:hover {
  background-color: transparent;
  border-color: #191824;
  color: #191824;
}

.button-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.6rem 0.6rem 0.6rem 1.3rem;
  white-space: nowrap;
}
.button-icon span {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}
.button-icon.icon-right span {
  margin-left: 0.8rem;
}
.button-icon.icon-left {
  flex-direction: row-reverse;
  justify-content: center;
  padding: 0.6rem 1rem 0.6rem 1rem;
}
.button-icon.icon-left span, .button-icon.icon-left i {
  margin-left: 0;
  margin-right: 0.4rem;
}
.button-icon.button-dark span {
  background-color: #fbfbfb;
  color: #191824;
}

.button-white {
  background-color: #FFF;
  box-shadow: 0 3px 20px #0000000b;
  color: #000;
}

.button-light {
  background-color: #E8E8E8;
  color: #65676B;
}
.button-light:hover {
  background-color: transparent;
  border-color: #65676B;
  color: #65676B;
}

.btn:focus {
  outline: none;
  box-shadow: none;
}

.button-primary {
  background-color: #061956;
  color: #FFF;
  font-weight: bold;
  border: 1px solid transparent;
}
.button-primary:hover {
  background-color: transparent;
  border-color: #061956;
  color: #061956;
  opacity: 1;
}

.button-secondary {
  background-color: #F28D20;
  color: #FFF;
  font-weight: bold;
}
.button-secondary:hover {
  background-color: transparent;
  border-color: #F28D20;
  color: #F28D20;
  opacity: 1;
}

.button-outline-secondary {
  border-color: #F28D20;
  color: #F28D20;
}
.button-outline-secondary:hover {
  color: #FFF;
  background-color: #F28D20;
}

.button-outline-primary {
  border-color: #061956;
  color: #061956;
  background-color: transparent;
}
.button-outline-primary:hover {
  color: #FFF;
  background-color: #061956;
}

.button-fb {
  background-color: #3C5A9A;
  color: #FFF;
  font-weight: bold;
}
.button-fb:hover {
  background-color: transparent;
  border-color: #3C5A9A;
  color: #3C5A9A;
  opacity: 1;
}

.button-success {
  background-color: #00B5BD;
  color: #FFF;
}
.button-success:hover {
  color: #FFF;
  opacity: 0.8;
}

.button-danger {
  background-color: #FF7761;
  color: #FFF;
}
.button-danger:hover {
  color: #FFF;
  opacity: 0.8;
}

.button-round {
  border-radius: 0.4rem;
}

.button-block {
  width: 100%;
  display: block;
}

.button-outline-gray {
  background-color: #F5F5F5;
  border: 1px solid #707070;
  color: #292724;
  font-weight: bold;
}
.button-outline-gray:hover {
  color: #292724;
  background-color: #FFF;
}

.button-large-icon {
  display: flex;
  flex-direction: column;
  line-height: 3rem;
}
.button-large-icon .icon {
  font-size: 3rem;
}
.button-large-icon .label {
  font-size: 1.5rem;
}

.input-icon {
  position: relative;
}
.input-icon .form-control {
  min-height: 52px;
  border-radius: 50px;
  padding-left: 4rem;
  color: #061956;
}
.input-icon .form-control:focus {
  outline: 1px solid #061956;
  box-shadow: none;
}
.input-icon span {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(215, 36, 29, 0.2);
  position: absolute;
  left: 10px;
  top: 8px;
  border-radius: 50%;
  color: #191824;
  font-size: 1.6rem;
}

.form-control:focus,
.form-select:focus {
  outline: 1px solid #061956;
  box-shadow: none;
}
.form-control:focus ~ label,
.form-select:focus ~ label {
  color: #061956;
}

.form-group label {
  margin-bottom: 0.3rem;
  color: rgba(0, 0, 0, 0.6);
}
.form-group .form-control {
  border-radius: 2px;
  min-height: 48px;
}
.form-group .form-control:placeholder {
  color: rgba(0, 0, 0, 0.4);
}

.radio-logos {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.radio-logos li {
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 2rem 0 0 0;
  border-radius: 0.4rem;
  position: relative;
  background-color: #FFF;
  flex-basis: 14%;
  margin: 1%;
}
.radio-logos li:hover {
  background-color: rgba(0, 0, 0, 0.04);
}
.radio-logos li input {
  opacity: 0;
  position: absolute;
  left: 0;
}
.radio-logos li input + label {
  display: block;
  cursor: pointer;
  text-align: center;
}
.radio-logos li input + label::before {
  font-family: remixicon !important;
  font-weight: 400;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  margin: auto;
  font-size: 1.3rem;
}
.radio-logos li input + label img {
  max-width: 60px;
  margin-bottom: 0.5rem;
}
.radio-logos li input:checked + label::before {
  content: "";
  color: #061956;
}
.radio-logos li input:checked + label .count {
  background-color: #F28D20;
  color: #FFF;
}

.breadcrumb {
  margin: 0.4rem 0 0 0;
  padding: 0;
}
.breadcrumb li {
  font-size: 0.8rem;
}
.breadcrumb li a {
  color: #121606;
}
.breadcrumb li.active {
  color: rgba(0, 0, 0, 0.5);
}

.breadcrumb-item + .breadcrumb-item::before {
  color: rgba(0, 0, 0, 0.5);
}

.card {
  border-radius: 0.4rem;
}
.card .card-title-dash {
  color: rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 1rem;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 1rem;
}
.card.card-welcome {
  padding: 0.5rem 1.5rem;
}
.card.card-welcome p {
  margin: 0;
}
.card.card-welcome h4 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 2rem;
}
.card.card-welcome h4 span {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
}
.card.card-welcome .logged-in {
  color: rgba(0, 0, 0, 0.4);
}
.card.card-welcome .logged-in span {
  color: #061956;
  font-weight: 500;
}

.card-title {
  margin-bottom: 0.9rem;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(0, 0, 0, 0.6);
  position: relative;
}
.card-title .card-action {
  position: absolute;
  right: 0;
  top: 0;
}
.card-title .card-action .button {
  padding: 0.1rem 0.8rem;
  font-size: 0.8rem;
}

.equal-cards .card {
  min-height: 120px;
}

.card-title-2 {
  position: relative;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.2rem;
  display: flex;
  padding-left: 2rem;
}
.card-title-2 i {
  margin-right: 0.4em;
  color: #F28D20;
  position: absolute;
  left: 0;
  top: -3px;
  font-size: 1.5rem;
}

.icon-box-light {
  padding: 1.2rem 0.5rem;
  border-radius: 0.4rem;
  background-color: #FFF;
  display: flex;
  align-items: center;
}
.icon-box-light.border {
  border: 1px solid rgba(0, 0, 0, 0.3);
}
.icon-box-light .icon {
  width: 70px;
}
.icon-box-light .icon span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  border-radius: 0.4rem;
  background-color: #fbfbfb;
  color: #FFF;
  margin: auto;
}
.icon-box-light .content {
  padding-left: 10px;
}
.icon-box-light .content p {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.5);
}
.icon-box-light .content h2 {
  margin: 0;
  font-size: 1.5rem;
}
.icon-box-light.bg-yellow .icon span {
  background-color: rgba(244, 183, 30, 0.2);
  color: #F4B71E;
}
.icon-box-light.bg-theme .icon span {
  background-color: rgba(6, 25, 86, 0.2);
  color: #061956;
}
.icon-box-light.bg-second .icon span {
  background-color: rgba(242, 141, 32, 0.2);
  color: #F28D20;
}
.icon-box-light.bg-green .icon span {
  background-color: rgba(0, 181, 189, 0.2);
  color: #00B5BD;
}
.icon-box-light.bg-red .icon span {
  background-color: rgba(255, 119, 97, 0.2);
  color: #FF7761;
}

.about-us {
  background-color: rgba(0, 0, 0, 0.06);
}

.fact-box {
  text-align: center;
}
.fact-box span {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(242, 141, 32, 0.2);
  color: #F28D20;
  font-size: 1.8rem;
  border-radius: 50%;
  margin: auto;
}
.fact-box h2 {
  margin-top: 1rem;
}

.theme-tabs {
  border: none;
}
.theme-tabs .nav-item .nav-link {
  background-color: #e8eaf2;
  color: #2b2b2b;
  font-size: 1.1em;
  font-weight: 500;
  padding: 1em 2em;
  border: none;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}
.theme-tabs .nav-item .nav-link.active, .theme-tabs .nav-item .nav-link:hover, .theme-tabs .nav-item .nav-link:focus {
  background-color: #061956;
  color: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
}

#myTabContent {
  margin-top: -4px;
  z-index: 1;
  position: relative;
}

.tab-content-inner {
  background-color: #FFF;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  border-radius: 6px;
  padding: 3em 2em;
}

.tab-style-2 {
  justify-content: center;
}
.tab-style-2 .nav-item .nav-link {
  text-align: center;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 600;
  border-top: none;
  border-right: none;
  border-bottom: 3px solid #eceeef;
  border-left: none;
  padding: 15px 60px 10px 60px;
  font-size: 1.2rem;
}
.tab-style-2 .nav-item .nav-link span {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  color: #121606;
  font-size: 1rem;
  font-weight: 400;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-weight: bold;
  background-color: #fbfbfb;
}
.tab-style-2 .nav-item .nav-link.active, .tab-style-2 .nav-item .nav-link:hover {
  border-bottom-color: #061956;
  color: #061956;
}
.tab-style-2 .nav-item .nav-link.active span, .tab-style-2 .nav-item .nav-link:hover span {
  background-color: #061956;
  color: #FFF;
}

.tab-style-3 .nav-item .nav-link {
  text-align: center;
  color: #061956;
  font-weight: normal;
  border-top: none;
  border-right: none;
  border-bottom: 5px solid transparent;
  border-left: none;
  padding: 5px 40px;
}
.tab-style-3 .nav-item .nav-link span {
  display: block;
  color: #121606;
  border-bottom: 3px solid #FFF;
}
.tab-style-3 .nav-item .nav-link.active, .tab-style-3 .nav-item .nav-link:hover {
  background-color: #061956;
  color: #FFF;
}
.tab-style-3 .nav-item .nav-link.active span, .tab-style-3 .nav-item .nav-link:hover span {
  color: #FFF;
}

.imageBoxwrap {
  width: 300px;
}
.imageBoxwrap.size-stamp {
  width: 865px;
}
.imageBoxwrap.size-stamp .imageBox {
  width: 865px;
  height: 1200px;
}
.imageBoxwrap.size-stamp .imageBox .thumbBox {
  width: 794px;
  height: 1124px;
  top: 11%;
  left: 16%;
}

.imageBox {
  width: 300px;
  height: 300px;
  overflow: hidden;
  position: relative;
}

.tools {
  margin-top: 20px;
}

.tools span {
  display: inline-block;
  padding: 5px 20px;
  background-color: #f40;
  color: #fff;
  cursor: pointer;
  margin-bottom: 5px;
  margin-right: 5px;
}

.clearfix {
  *zoom: 1;
}

#crop {
  max-width: 300px;
}

.jactions {
  margin: 0;
  padding: 0;
  list-style-type: none;
  position: absolute;
  width: 300px;
  z-index: 12;
  bottom: 80px;
  display: flex;
  justify-content: center;
}
.jactions li {
  margin: 4px 5px;
}
.jactions li a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFF;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  border: 1px solid #F28D20;
}

.cropPoint {
  position: absolute;
  height: 8px;
  width: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

.upload-wapper {
  position: relative;
  float: left;
  height: 26px;
  line-height: 26px;
  width: 132px;
  background-color: #f40;
  color: #fff;
  text-align: center;
  overflow: hidden;
  cursor: pointer;
}

#visbleCanvas {
  position: absolute;
  top: 0;
  left: 0;
}

.thumbBox {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  margin-top: -100px;
  margin-left: -100px;
  box-sizing: border-box;
  border: 1px solid #666666;
  box-shadow: 0 0 0 1000px rgba(0, 0, 0, 0.5);
  background: none repeat scroll 0% 0% transparent;
}

.cropped-stamp {
  text-align: right;
}
.cropped-stamp img {
  width: 200px;
}

.user {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  background-color: #f1f5f9;
}
.user .photo img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 8px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.1);
}
.user .info {
  padding-left: 0.5rem;
}
.user .info h3 {
  margin: 0.5rem 0 0 0;
  text-transform: capitalize;
  font-size: 1rem;
}
.user .info h3 .badge {
  padding: 3px 10px;
  font-size: 1rem;
}
.user .info p {
  margin: 0;
  font-size: 0.7rem;
}
.user .info ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.user .info ul li {
  margin-top: 0.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.user .info ul li a {
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
}
.user .info ul li a i {
  margin-right: 4px;
  margin-top: 1px;
  font-size: 1rem;
}
.user .info ul li a.verified i {
  color: #00B5BD;
}
.user .info ul li a.not-verified i {
  color: #FF7761;
}

.animate-menu-push {
  left: 0;
  position: relative;
  transition: all 0.3s ease;
}
.animate-menu-push.animate-menu-push-right {
  left: 200px;
}
.animate-menu-push.animate-menu-push-left {
  left: -200px;
}

.animate-menu {
  position: fixed;
  top: 0;
  width: 200px;
  height: 100%;
  transition: all 0.3s ease;
}

.animate-menu-left {
  left: -200px;
}
.animate-menu-left.animate-menu-open {
  left: 0;
}

.animate-menu-right {
  right: -200px;
}
.animate-menu-right.animate-menu-open {
  right: 0;
}

.sidebar-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #333;
  border-top-right-radius: 20px;
  height: 100%;
}
.sidebar-menu &gt; li {
  position: relative;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sidebar-menu &gt; li &gt; a {
  padding: 12px 5px 12px 15px;
  display: flex;
  border-left: 5px solid transparent;
  color: #FFF;
  font-size: 1rem;
}
.sidebar-menu &gt; li &gt; a &gt; i {
  width: 28px;
}
.sidebar-menu &gt; li:hover &gt; a, .sidebar-menu &gt; li.active &gt; a {
  color: #F28D20;
  background: rgba(45, 99, 137, 0.05);
  border-left-color: #F28D20;
}
.sidebar-menu &gt; li .label,
.sidebar-menu &gt; li .badge {
  margin-top: 3px;
  margin-right: 5px;
}
.sidebar-menu li.sidebar-header {
  padding: 10px 25px 10px 15px;
  font-size: 12px;
  color: #666666;
  background: #292929;
}
.sidebar-menu li &gt; a &gt; .ri-arrow-left-s-line {
  position: absolute;
  right: 0;
  top: 12px;
  transition: all 0.1s ease-in-out;
}
.sidebar-menu li.active &gt; a &gt; .ri-arrow-left-s-line {
  transform: rotate(-90deg);
  top: 0px;
}
.sidebar-menu li.active &gt; .sidebar-submenu {
  display: block;
}
.sidebar-menu a {
  color: #FFF;
  text-decoration: none;
}
.sidebar-menu .sidebar-submenu {
  display: none;
  list-style: none;
  padding-left: 0;
  margin: 0;
  background: rgba(45, 99, 137, 0.05);
}
.sidebar-menu .sidebar-submenu .sidebar-submenu {
  padding-left: 20px;
}
.sidebar-menu .sidebar-submenu &gt; li &gt; a {
  padding: 4px 6px 4px 26px;
  display: flex;
  font-size: 0.9rem;
  font-weight: normal;
  border-left: 5px solid rgba(242, 141, 32, 0.5);
  color: rgba(255, 255, 255, 0.7);
}
.sidebar-menu .sidebar-submenu &gt; li &gt; a &gt; .i, .sidebar-menu .sidebar-submenu &gt; li &gt; a img {
  max-width: 20px;
  margin-right: 12px;
}
.sidebar-menu .sidebar-submenu &gt; li &gt; a &gt; .fa-angle-left,
.sidebar-menu .sidebar-submenu &gt; li &gt; a &gt; .fa-angle-down {
  width: auto;
}
.sidebar-menu .sidebar-submenu &gt; li.active &gt; a, .sidebar-menu .sidebar-submenu &gt; li &gt; a:hover {
  color: #F28D20;
}

.sidebar-menu-rtl {
  list-style: none;
  margin: 0;
  padding: 0;
  background-color: #333;
  border-top-right-radius: 20px;
  height: 100%;
}
.sidebar-menu-rtl &gt; li {
  position: relative;
  margin: 0;
  padding: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.sidebar-menu-rtl &gt; li &gt; a {
  padding: 12px 15px 12px 5px;
  display: flex;
  border-left: 5px solid transparent;
  color: #FFF;
  font-size: 1rem;
}
.sidebar-menu-rtl &gt; li &gt; a &gt; i {
  width: 28px;
}
.sidebar-menu-rtl &gt; li:hover &gt; a, .sidebar-menu-rtl &gt; li.active &gt; a {
  color: #F28D20;
  background: rgba(45, 99, 137, 0.05);
  border-left-color: #F28D20;
}
.sidebar-menu-rtl &gt; li .label,
.sidebar-menu-rtl &gt; li .badge {
  margin-top: 3px;
  margin-right: 5px;
}
.sidebar-menu-rtl li.sidebar-header {
  padding: 10px 15px 10px 25px;
  font-size: 12px;
  color: #666666;
  background: #292929;
}
.sidebar-menu-rtl li &gt; a &gt; .ri-arrow-left-s-line {
  position: absolute;
  right: 0;
  top: 12px;
  transition: all 0.1s ease-in-out;
}
.sidebar-menu-rtl li.active &gt; a &gt; .ri-arrow-left-s-line {
  transform: rotate(-90deg);
  top: 0px;
}
.sidebar-menu-rtl li.active &gt; .sidebar-submenu {
  display: block;
}
.sidebar-menu-rtl a {
  color: #FFF;
  text-decoration: none;
}
.sidebar-menu-rtl .sidebar-submenu {
  display: none;
  list-style: none;
  padding-right: 5px;
  margin: 0;
  background: rgba(45, 99, 137, 0.05);
}
.sidebar-menu-rtl .sidebar-submenu .sidebar-submenu {
  padding-right: 20px;
}
.sidebar-menu-rtl .sidebar-submenu &gt; li &gt; a {
  padding: 5px 15px 5px 5px;
  display: flex;
  font-size: 0.9rem;
  font-weight: normal;
  border-left: 5px solid rgba(242, 141, 32, 0.5);
  color: rgba(255, 255, 255, 0.7);
}
.sidebar-menu-rtl .sidebar-submenu &gt; li &gt; a &gt; .i, .sidebar-menu-rtl .sidebar-submenu &gt; li &gt; a img {
  max-width: 20px;
  margin-right: 12px;
}
.sidebar-menu-rtl .sidebar-submenu &gt; li &gt; a &gt; .fa-angle-left,
.sidebar-menu-rtl .sidebar-submenu &gt; li &gt; a &gt; .fa-angle-down {
  width: auto;
}
.sidebar-menu-rtl .sidebar-submenu &gt; li.active &gt; a, .sidebar-menu-rtl .sidebar-submenu &gt; li &gt; a:hover {
  color: #F28D20;
}

.widget {
  background-color: #FFF;
  border: 1px solid #E0DFDC;
  border-radius: 0.4rem;
  padding: 20px;
  margin-bottom: 20px;
}
.widget .widget-title {
  font-size: 16px;
  font-weight: bold;
  color: #121606;
  position: relative;
}
.widget .widget-title .action {
  position: absolute;
  right: 0;
  top: 0;
}
.widget .widget-body {
  padding-top: 20px;
}

.wizard {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
  position: relative;
  justify-content: center;
}
.wizard li {
  position: relative;
  margin: 0 1rem;
  z-index: 1;
}
.wizard li::after {
  content: "";
  display: block;
  width: 114px;
  height: 3px;
  background-color: #fbfbfb;
  position: absolute;
  top: 50%;
  border-radius: 30px;
  right: -73px;
  z-index: -1;
  margin-top: -13px;
}
.wizard li:last-child::after {
  display: none;
}
.wizard li a {
  text-align: center;
  display: inline-block;
  color: #2A2D34;
}
.wizard li a .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fbfbfb;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: auto;
  color: #121606;
  font-size: 1.2rem;
  border: 5px solid #FFF;
}
.wizard li a .label {
  display: block;
  margin-top: 0.3rem;
  font-size: 13px;
}
.wizard li.active a .icon {
  background-color: #061956;
  color: #FFF;
}
.wizard li.active::after {
  background-color: #061956;
}
.wizard li.completed a .icon {
  background-color: #00B5BD;
  color: #FFF;
}
.wizard li.completed::after {
  background-color: #00B5BD;
}

@media screen and (max-width: 767px) {
  .wizard {
    overflow-y: scroll;
  }
  .wizard li::after {
    top: 39%;
  }
  .wizard li a .label {
    line-height: 14px;
  }
}
.table thead tr th {
  font-size: 0.9rem;
}

.va-middle td,
.va-middle th {
  vertical-align: middle;
}

.table-add-sale .col-input {
  max-width: 70px;
}

.scrollview {
  overflow-x: hidden;
  overflow-y: scroll;
}

/* Fix table head */
.tableFixHead th {
  position: sticky;
  top: 0;
  background-color: #FFF;
  z-index: 1;
}

.table-card {
  border-spacing: 0 10px;
  border-collapse: separate;
}
.table-card thead tr {
  background-color: rgba(0, 0, 0, 0.08);
}
.table-card thead tr th {
  padding: 0.75rem 1.25rem;
  font-weight: bold;
  white-space: nowrap;
}
.table-card tbody tr td {
  box-shadow: 20px 3px 20px #0000000b;
  padding: 0.75rem 1.25rem;
  border-bottom-width: 0px;
  background-color: white;
}
.table-card td {
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .tbl-responsive {
    border: 0;
  }
  .tbl-responsive.table-striped tr td {
    --bs-table-accent-bg: #FFF;
  }
  .tbl-responsive thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .tbl-responsive tr {
    border-bottom: 3px solid #ddd;
    display: block;
    margin-bottom: 1rem;
    box-shadow: rgba(26, 108, 225, 0.1) 0px 0px 25px;
    background-color: #FFF;
    padding: 18px;
    border-radius: 5px;
  }
  .tbl-responsive td {
    border-bottom: 1px solid #ddd;
    display: block;
    text-align: right;
    padding: 0.3rem 0.1rem;
  }
  .tbl-responsive td::before {
    content: attr(data-label);
    float: left;
  }
  .tbl-responsive td:last-child {
    border-bottom: 0;
  }
}
.form-floating .chosen-container-single .chosen-single {
  height: 58px !important;
  background: none !important;
  background-color: #FFF !important;
  box-shadow: none !important;
  padding: 24px 0 0 13px;
}

.header {
  background-color: #061956;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 2;
}
.header.sticky {
  position: fixed;
  padding: 0;
  z-index: 3;
  background-color: #121606;
}
.header.sticky .navbar-brand img {
  max-width: 150px;
}
.header .navbar-toggler {
  color: #FFF !important;
  font-size: 46px;
  padding: 0;
  border: none;
}
.header .navbar-brand img {
  max-width: 95px;
}
.header .navbar-primary {
  padding: 0;
}
.header .navbar-primary .header-pump-code {
  margin-left: 174px;
  color: #FFF;
  font-weight: bold;
}
.header .navbar-primary .header-pump-code span {
  color: rgba(255, 255, 255, 0.5);
  font-weight: normal;
}
.header .nav-right {
  padding: 10px 0;
}
.header .nav-right .nav-item .nav-link {
  color: #FFF;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding-right: 2.5rem;
}
.header .nav-right .nav-item .nav-link.active, .header .nav-right .nav-item .nav-link:hover, .header .nav-right .nav-item .nav-link:focus {
  color: #F28D20;
}
.header .nav-right .nav-item .button-sm {
  font-size: 0.9rem;
  font-weight: normal;
  padding: 0;
  padding: 0.5rem 1rem;
}

#toggleSideNav {
  display: none;
}

@media screen and (max-width: 767px) {
  .header .nav-right {
    display: none;
  }
  .header .navbar-primary .header-pump-code {
    margin-left: 0;
    color: #FFF;
    font-weight: normal;
    font-size: 0.7rem;
  }
  .header .navbar-primary .header-pump-code span {
    display: none;
  }
  .header .navbar-primary .container-fluid {
    flex-wrap: nowrap;
  }
  .header .navbar-primary .container-fluid #toggleSideNav {
    display: block;
    color: #F28D20;
    font-size: 1.8rem;
  }
  .header .navbar-primary .container-fluid #toggleSideNav .close-icon {
    display: none;
  }
  .header .navbar-primary .container-fluid #toggleSideNav.close .menu-icon {
    display: none;
  }
  .header .navbar-primary .container-fluid #toggleSideNav.close .close-icon {
    display: block;
  }
}
.site-header.sticky {
  background-color: #121606;
}
.site-header.sticky .navbar-brand img {
  max-width: 150px;
}
.site-header .navbar-toggler {
  color: #FFF !important;
  font-size: 46px;
  padding: 0;
  border: none;
}
.site-header .navbar-brand img {
  max-width: 120px;
}
.site-header .navbar-primary {
  padding: 0;
}
.site-header .nav-left {
  padding: 10px 0;
}
.site-header .nav-left .nav-item .nav-link {
  color: #121606;
  text-transform: uppercase;
  font-size: 0.9rem;
  padding-right: 2.5rem;
}
.site-header .nav-left .nav-item .nav-link.active, .site-header .nav-left .nav-item .nav-link:hover, .site-header .nav-left .nav-item .nav-link:focus {
  color: #F28D20;
}
.site-header .nav-left .nav-item .button-sm {
  font-size: 0.9rem;
  font-weight: normal;
  padding: 0;
  padding: 0.5rem 1rem;
}

@media screen and (max-width: 991px) {
  .site-header {
    padding: 0 10px;
  }
  .site-header .navbar-brand img {
    max-width: 150px;
  }
}
@media screen and (max-width: 767px) {
  .site-header .navbar-nav {
    padding: 2rem 0;
  }
}
.page-head {
  background: linear-gradient(90deg, #3C40C6 0%, #FF6D4C 100%);
  padding-bottom: 1rem;
  margin-bottom: 3rem;
}
.page-head .breadcrumb {
  justify-content: center;
}

footer {
  background-color: #F8F8F8;
  position: relative;
  padding-top: 3rem;
}
footer .footer-widget h4 {
  font-weight: 600;
  color: #121606;
  font-size: 1rem;
  margin-bottom: 1rem;
}
footer .footer-widget p {
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.8rem;
}
footer .footer-widget ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer .footer-widget ul li {
  margin-bottom: 0.5rem;
}
footer .footer-widget ul li a {
  color: rgba(0, 0, 0, 0.7);
  font-size: 0.9rem;
}
footer .footer-widget ul li a:hover {
  color: #061956;
}
footer .copyright {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 1rem 0;
  margin-top: 1rem;
}
footer .copyright .row {
  align-items: center;
}
footer .copyright .footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
footer .copyright .footer-social li {
  margin-left: 1rem;
  font-size: 1.5rem;
}
footer .copyright .footer-social li a {
  color: rgba(0, 0, 0, 0.5);
}

.cta-wrap {
  position: relative;
  margin-top: 4rem;
}

.call-to-action {
  background: linear-gradient(92.22deg, #751C1C 2.32%, #A6201D 52.53%, #D7241D 98.14%);
  border-radius: 0.4rem;
  padding: 3.75rem;
}
.call-to-action h5 {
  color: #FFF;
  font-size: 1.2rem;
  font-weight: 300;
}
.call-to-action h1 {
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #fbfbfb;
  -webkit-text-fill-color: rgba(0, 0, 0, 0);
  font-weight: bold;
}
.call-to-action p {
  color: #FFF;
  font-size: 1.1rem;
}
.call-to-action .cta-button {
  text-align: right;
}

.footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.footer-social li a {
  display: block;
  margin-left: 1rem;
}
.footer-social li a i {
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .call-to-action {
    padding: 2.75rem;
    text-align: center;
  }
  .call-to-action .cta-button {
    text-align: center;
  }
}
.wrapper {
  display: flex;
  width: 100%;
  background-color: #f1f5f9;
  min-height: 100vh;
}
.wrapper .left-side {
  overflow-x: scroll;
  height: 100%;
  min-height: 100vh;
  width: 250px;
  position: fixed;
  left: 0;
  top: 50px;
  z-index: 1;
}
.wrapper .left-side .sidebar {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.wrapper .right-side {
  padding-left: 250px;
  padding-top: 60px;
  width: 100%;
}
.wrapper .right-side .content-header {
  display: flex;
  justify-content: space-between;
  background: #fbfbfb;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
  align-items: center;
  padding: 0.8rem 2rem;
  border-bottom-left-radius: 20px;
}
.wrapper .right-side .content-header .right {
  display: flex;
  justify-content: flex-end;
}
.wrapper .right-side .content-header .right .button {
  margin-left: 0.5rem;
}
.wrapper .right-side .content-header h1 {
  font-size: 1.5rem;
  margin: 0;
  color: #061956;
  font-weight: bold;
}
.wrapper .right-side &gt; .content {
  padding: 2rem;
  position: relative;
}

@media screen and (max-width: 767px) {
  .wrapper {
    display: block;
  }
  .wrapper .left-side {
    transform: translateX(-100%);
    transition: all 0.5s ease;
  }
  .wrapper .left-side.active {
    transform: translateX(0);
  }
  .wrapper .right-side {
    padding-left: 0;
  }
  .wrapper .right-side &gt; .content {
    padding: 1rem;
  }
  .wrapper .right-side .content-header {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.5rem 1rem;
  }
  .wrapper .right-side .content-header h1 {
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
}
.auth-wrap {
  height: 100vh;
  background-color: #061956;
  position: relative;
  padding-top: 50px;
}
.auth-wrap .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
}
.auth-wrap .shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.auth-head {
  text-align: center;
}
.auth-head .logo {
  margin-bottom: 20px;
}
.auth-head .logo img {
  max-width: 120px;
}
.auth-head p {
  margin: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.auth-head h1 {
  margin: 0;
  color: #FFF;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
}

.auth-card {
  border: 1px solid #dee2e6;
  position: relative;
  padding: 2rem;
  background-color: #f4f4f4;
  width: 400px;
  margin: auto;
  border-radius: 0.4rem;
  margin-top: 2rem;
  position: relative;
  z-index: 1;
}
.auth-card h2 {
  font-weight: normal;
  text-align: center;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.auth-right p {
  color: rgba(0, 0, 0, 0.4);
}

@media screen and (max-width: 767px) {
  .auth-card {
    width: 90%;
  }
}
.welcome-wrap {
  height: 100vh;
  background-color: #061956;
  position: relative;
  padding-top: 20px;
}
.welcome-wrap .shape-1 {
  position: absolute;
  top: 0;
  right: 0;
}
.welcome-wrap .shape-2 {
  position: absolute;
  bottom: 0;
  left: 0;
}

.welcome-head {
  text-align: center;
}
.welcome-head .logo {
  margin-bottom: 20px;
}
.welcome-head .logo img {
  max-width: 120px;
}
.welcome-head p {
  margin: 0;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
}
.welcome-head h1 {
  margin: 0;
  color: #FFF;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 1.8rem;
}

.welcome-card {
  border: 1px solid #dee2e6;
  position: relative;
  background-color: #f4f4f4;
  width: 1200px;
  margin: 1rem auto 0 auto;
  border-radius: 0.4rem;
}
.welcome-card .title {
  font-weight: normal;
  color: black;
  margin-bottom: 1rem;
  font-size: 1.4rem;
  padding: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.welcome-card .welcome-content {
  padding: 1rem 3rem;
}
.welcome-card .welcome-content h1 {
  font-size: 2rem;
  display: flex;
  align-items: center;
}
.welcome-card .welcome-content p {
  color: rgba(0, 0, 0, 0.6);
}
.welcome-card .welcome-content .ready {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  align-items: center;
}
.welcome-card .welcome-content .ready h3 {
  font-size: 1.5rem;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}
.welcome-card .welcome-content .ready h3 span {
  color: black;
}
.welcome-card .welcome-content .ready div a {
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  color: rgba(0, 0, 0, 0.5);
}
.welcome-card .welcome-content .ready div a i {
  margin-left: 0.5rem;
}

.auth-right p {
  color: rgba(0, 0, 0, 0.4);
}

.table-va-m tr td,
.table-va-m tr th {
  vertical-align: middle;
}

.l-info {
  margin: 8px 0 4px 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.l-info li {
  margin-right: 2rem;
  display: flex;
  align-content: center;
}
.l-info li i {
  margin-right: 6px;
}
.l-info li span {
  display: inline-block;
  padding: 0px 8px;
  border-radius: 4px;
  margin-left: 5px;
  background-color: rgba(0, 0, 0, 0.08);
  color: #E64209;
}

.c-icon-box {
  display: flex;
}
.c-icon-box .icon {
  flex-basis: 20%;
  padding-right: 1rem;
}

.contact-box {
  display: flex;
  background-color: rgba(0, 0, 0, 0.03);
  padding: 1.5rem;
  border-radius: 0.4rem;
  min-height: 150px;
}
.contact-box .icon {
  padding-right: 1rem;
}
.contact-box .icon span {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #061956;
  color: #FFF;
  font-size: 2.4rem;
  border-radius: 50%;
}

.map iframe {
  border-radius: 0.5rem;
}

.counter_bg {
  background-image: url("../images/landing/counter_bg.jpg");
  background-attachment: fixed;
  background-size: cover;
  min-height: 400px;
  display: flex;
  align-items: center;
}
.counter_bg .count-box h3 {
  color: #F28D20;
  font-weight: 600;
  font-size: 2rem;
}
.counter_bg .count-box p {
  color: rgba(255, 255, 255, 0.8);
}

.hero {
  position: relative;
  padding-top: 6rem;
  display: flex;
  align-items: center;
}
.hero .hero-content h1 {
  font-weight: bold;
  margin-bottom: 2rem;
}

.pump-logos {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pump-logos li img {
  max-width: 170px;
  display: inline-block;
  margin: 10px;
}

.feature-section img {
  max-width: 500px;
}
.feature-section h2 {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}
.feature-section p {
  color: rgba(0, 0, 0, 0.6);
}

.reports {
  margin: 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.reports li {
  background-color: #FFF;
  border-radius: 0.4rem;
  padding: 2rem;
  text-align: center;
  flex-basis: 17%;
  margin: 1%;
  justify-content: center;
  box-shadow: 0px 11px 32px #0080f914;
}
.reports li img {
  width: 30px;
  opacity: 0.5;
}
.reports li i {
  font-size: 3rem;
}
.reports li p {
  font-weight: bolder;
  font-size: 1.4rem;
  max-width: 110px;
  margin: 0 auto 1.5rem auto;
  line-height: 1.8rem;
}
.reports li .button-sm {
  padding: 0.5rem;
  font-size: 0.8rem;
}

.features_2 {
  padding: 3rem 0;
}
.features_2 .feature_box_2 {
  background-color: #FFF;
  box-shadow: 0px 11px 32px #0080f914;
  border-radius: 25px;
  padding: 2rem;
  text-align: center;
}
.features_2 .feature_box_2 .icon {
  margin-bottom: 1rem;
}
.features_2 .feature_box_2 .icon span {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: auto;
  background-color: rgba(242, 141, 32, 0.2);
  color: #F28D20;
  font-size: 2rem;
}
.features_2 .feature_box_2 h3 {
  font-size: 1.2rem;
}
.features_2 .feature_box_2 p {
  color: rgba(0, 0, 0, 0.6);
  font-size: 0.9rem;
}

.cta {
  background-color: #061956;
  padding: 5rem 0;
}
.cta .cta-content {
  text-align: center;
  color: #FFF;
}
.cta .cta-content h3 {
  font-size: 2.5rem;
  margin-bottom: 1.4rem;
}
.cta .cta-content p {
  font-size: 1.2rem;
  font-weight: 300;
}
.cta .cta-content .cta-buttons {
  margin-top: 2rem;
}
.cta .cta-content .cta-buttons .button {
  margin: 0.5rem;
}

.pump-reading-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  padding-bottom: 0.5rem;
  padding-top: 0.5rem;
}
.pump-reading-item:hover {
  background-color: #fbfbfb;
}
.pump-reading-item:hover .pump-name .number {
  background-color: #061956;
  color: #FFF;
}
.pump-reading-item .pump-name {
  display: flex;
  align-items: center;
  flex-basis: 15%;
}
.pump-reading-item .pump-name .number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.2rem;
  background-color: rgba(6, 25, 86, 0.2);
  color: #061956;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.6rem;
  font-weight: bold;
  flex-shrink: 0;
}
.pump-reading-item .pump-name.petrol .number {
  background-color: #549B8C;
  color: #FFF;
}
.pump-reading-item .pump-name.diesel .number {
  background-color: #BD9B16;
  color: #FFF;
}
.pump-reading-item .readings {
  margin: 0 1rem;
  display: flex;
  flex-basis: 65%;
}
.pump-reading-item .readings &gt; div {
  width: 33%;
}
.pump-reading-item .readings .total p {
  margin: 0;
}
.pump-reading-item .readings .total h4 {
  margin: 0;
}
.pump-reading-item .readings label {
  font-size: 0.8rem;
  padding-right: 0;
  white-space: nowrap;
}
.pump-reading-item .readings .last-reading .form-floating .form-control {
  margin-left: -1px;
  border-radius: 0.4rem 0 0 0.4rem;
}
.pump-reading-item .readings .last-reading .form-floating .form-control:focus {
  position: relative;
  z-index: 1;
}
.pump-reading-item .readings .last-reading .form-floating .form-control:focus ~ label {
  z-index: 1;
}
.pump-reading-item .readings .current-reading {
  margin-left: -2px;
}
.pump-reading-item .readings .current-reading .form-floating .form-control {
  border-radius: 0;
}
.pump-reading-item .readings .returned {
  margin-left: -1px;
}
.pump-reading-item .readings .returned .form-floating .form-control {
  border-radius: 0 0.4rem 0.4rem 0;
}
.pump-reading-item .qty {
  flex-basis: 20%;
}
.pump-reading-item .qty p {
  margin: 0;
  color: rgba(0, 0, 0, 0.5);
}
.pump-reading-item .qty h4 {
  margin: 0;
  font-size: 1.3rem;
}

.card-sales-list {
  min-height: 481px;
}

.table-sales-list {
  font-size: 0.9rem;
}

.products-total {
  display: flex;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 0.4rem;
}
.products-total .pt-row {
  display: flex;
  width: 100%;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px;
  margin: 10px;
  flex: 1;
  background-color: #FFF;
  border-radius: 0.4rem;
}
.products-total .pt-row .value {
  font-weight: bold;
}
.products-total .pt-row:last-child {
  border-bottom: none;
}

.pump-icon {
  position: relative;
}
.pump-icon p {
  margin: 0;
  position: absolute;
}
.pump-icon img {
  max-width: 60px;
}

@media screen and (max-width: 767px) {
  .pump-reading-item {
    flex-direction: column;
    margin-bottom: 1rem;
  }
  .pump-reading-item .pump-name {
    margin-bottom: 1rem;
  }
  .pump-reading-item .readings {
    margin: 0;
  }
}
.v-account-info {
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.42rem 0.75rem;
  display: flex;
  justify-content: space-between;
}
.v-account-info .item {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  font-size: 0.9rem;
}
.v-account-info .item .label {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 300;
}
.v-account-info .item .value {
  font-weight: 600;
}

.card-dashboard-info {
  position: relative;
}
.card-dashboard-info &gt; img {
  max-width: 100px;
  position: absolute;
  right: 10px;
  top: 20px;
}
.card-dashboard-info ul {
  margin: 2rem 0 0 0;
  padding: 0;
  list-style-type: none;
}
.card-dashboard-info ul li {
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding-bottom: 1rem;
}
.card-dashboard-info ul li p {
  margin: 0 0 0.2rem 0;
  color: rgba(0, 0, 0, 0.5);
  font-size: 0.9rem;
}
.card-dashboard-info ul li h4 {
  margin: 0;
  font-size: 1.5rem;
}
.card-dashboard-info ul li:last-child {
  border-bottom: 0;
}

.main-stats {
  margin: 1rem 0 0 0;
  padding: 0;
  list-style-type: none;
  display: flex;
}
.main-stats li {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
  padding: 1rem 0;
}
.main-stats li p {
  color: rgba(0, 0, 0, 0.5);
  margin: 0;
}
.main-stats li:last-child {
  border-right: 0;
}

.stock-list {
  margin: 1rem 0 0 0;
  padding: 0;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.stock-list.items-4 li {
  flex-basis: 22%;
}
.stock-list li {
  padding: 1rem;
  flex-basis: 48%;
  background-color: rgba(0, 0, 0, 0.04);
  border-radius: 10px;
  margin-bottom: 1rem;
}
.stock-list li p {
  color: rgba(0, 0, 0, 0.5);
  margin: 0.5rem 0 0 0;
  line-height: 1.3rem;
}
.stock-list li h4 {
  margin: 0;
  font-size: 1.2rem;
}
.stock-list li:last-child {
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .main-stats {
    flex-direction: column;
  }
  .main-stats li {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .main-stats li:last-child {
    border-bottom: none;
  }
}
.report-header {
  padding-bottom: 10px;
  border-bottom: 1px solid;
  margin-bottom: 20px;
}
.report-header table tr td {
  border-collapse: collapse;
  padding: 3pt 0;
}
.report-header table tr td .logo {
  display: flex;
  align-items: center;
}
.report-header table tr td .logo img {
  width: 50px;
  flex-shrink: 0;
  height: auto;
}
.report-header table tr td .logo .company {
  padding-left: 14px;
}
.report-header table tr td .logo .company h3 {
  font-family: "Roboto Condensed", sans-serif;
  margin: 0;
  font-size: 18pt;
  font-weight: bold;
}
.report-header table tr td .logo .company p {
  margin: 0;
  font-size: 9pt;
}
.report-header table tr td .header-right {
  text-align: right;
}
.report-header table tr td .header-right tr td {
  font-size: 10pt;
}
.report-header table tr td .header-right tr td:last-child {
  width: 30px;
}
.report-header table tr td .header-right tr td i {
  font-size: 12pt;
}

.table-summary .col1 {
  width: 60%;
  vertical-align: top;
}
.table-summary .col2 {
  padding-left: 10pt;
  width: 40%;
  vertical-align: top;
}
.table-summary .report-table tr:last-child td {
  border-bottom: none;
}
.table-summary .report-table td {
  padding: 3pt 6pt;
  font-size: 9pt;
}

.report-stock-wrap {
  display: flex;
  flex-wrap: wrap;
}
.report-stock-wrap .report-stock-item {
  padding: 6px 0;
  width: 50%;
  border-bottom: 1px solid;
  font-size: 10pt;
}
.report-stock-wrap .report-stock-item h2 {
  font-size: 10pt;
  font-weight: bold;
  margin: 0 0 2pt 0;
  text-transform: uppercase;
}
.report-stock-wrap .report-stock-item:nth-child(even) {
  border-left: 1px solid;
  padding-left: 20px;
}
.report-stock-wrap .report-stock-item:last-child {
  border-bottom: none;
}
.report-stock-wrap .report-stock-item:nth-last-child(2) {
  border-bottom: none;
}

.report-date-wise-summary th, .report-date-wise-summary td {
  font-size: 8pt !important;
  padding: 5pt !important;
}

.print-body {
  background-color: #212121;
  font-size: 12pt;
}

.page {
  width: 21cm;
  min-height: 29.7cm;
  padding: 0 0.5cm;
  margin: 1cm auto;
  border: 1px #D3D3D3 solid;
  border-radius: 5px;
  background: white;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}

.report-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14pt;
  font-weight: bold;
}
.report-title.bbottom {
  border-bottom: 1px solid;
  padding-bottom: 10px;
}

.report-section-title {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12pt;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.2);
  text-align: center;
}

.subpage {
  padding: 0.5cm 0.5cm 0 0.5cm;
  min-height: 256mm;
}
.subpage &gt; h1 {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 15pt;
  font-weight: bold;
}
.subpage table {
  width: 100%;
  border-collapse: collapse;
}

@page {
  size: A4;
  margin: 0;
}
.report-table thead {
  background-color: rgba(0, 0, 0, 0.2);
}
.report-table tfoot {
  background-color: rgba(0, 0, 0, 0.1);
}
.report-table tfoot td {
  border-bottom: none;
}
.report-table th {
  font-size: 10pt;
  padding: 5pt 10pt;
  text-align: left;
}
.report-table td {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  font-size: 10pt;
  padding: 5pt 10pt;
}
.report-table .current-balance {
  width: 80px;
  text-align: right;
}
.report-table .actype {
  width: 135px;
}

@media print {
  body {
    background-color: #FFF;
  }

  .page {
    margin: 0;
    border: initial;
    border-radius: initial;
    width: initial;
    min-height: initial;
    box-shadow: initial;
    background: initial;
    page-break-after: always;
  }

  .report-table thead {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-print-color-adjust: exact !important;
  }
  .report-table tfoot {
    background-color: rgba(0, 0, 0, 0.2);
    -webkit-print-color-adjust: exact !important;
  }
}

/*# sourceMappingURL=style.css.map */
</pre></body></html>