/*============= Color Variables  ================*/
/*============= Font Weight Variables  ================*/
/*@include respond-above(sm) {
  .element {
    font-weight: bold;
  }
}*/
.loader {
  position: absolute;
  left: 45%;
  top: 35%;
  z-index: 1000;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #3498db;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;  
}

/*.camera-container{
  width: 350px;
  height: 350px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

#face_match_video, #face_match_canvas {
  width: 100%;
  height: 100%;
  object-fit: fill;
}*/

#face_match_canvas { 
  width: 100%;
  height: 100%;
 }

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.loadMoreCardDetails {
  color:blue;
  cursor:pointer;
  text-decoration:underline;
  text-align:right;
}
.loadMoreCardDetails:hover {
  color:black;
}
.showLessCardDetails {
  color:red;
  cursor:pointer;
  text-decoration:underline;
  text-align:right;
  display:none;
}
.showLessCardDetails:hover {
  color:black;
}

/* @include transition(all,2s,ease-out); */
.tran_all {
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: 0.75s;
}

@keyframes bounce {
  from, 20%, 53%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}
.bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}

@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.pulse {
  animation-name: pulse;
}

@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  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 fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeftBig {
  animation-name: fadeInLeftBig;
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRightBig {
  animation-name: fadeInRightBig;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUpBig {
  animation-name: fadeInUpBig;
}

@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.fadeOutDown {
  animation-name: fadeOutDown;
}

@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.fadeOutDownBig {
  animation-name: fadeOutDownBig;
}

@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.fadeOutLeft {
  animation-name: fadeOutLeft;
}

@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}

@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.fadeOutRight {
  animation-name: fadeOutRight;
}

@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.fadeOutRightBig {
  animation-name: fadeOutRightBig;
}

@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.fadeOutUpBig {
  animation-name: fadeOutUpBig;
}

@keyframes flip {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px);
    animation-timing-function: ease-in;
  }
}
.animated.flip {
  -webkit-backface-visibility: visible;
  backface-visibility: visible;
  animation-name: flip;
}

@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInX {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInX;
}

@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.flipInY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipInY;
}

@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.flipOutX {
  animation-name: flipOutX;
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
}

@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.flipOutY {
  -webkit-backface-visibility: visible !important;
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

@keyframes lightSpeedIn {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
    opacity: 1;
  }
  to {
    transform: none;
    opacity: 1;
  }
}
.lightSpeedIn {
  animation-name: lightSpeedIn;
  animation-timing-function: ease-out;
}

@keyframes lightSpeedOut {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.lightSpeedOut {
  animation-name: lightSpeedOut;
  animation-timing-function: ease-in;
}

@keyframes rotateIn {
  from {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform-origin: center;
    transform: none;
    opacity: 1;
  }
}
.rotateIn {
  animation-name: rotateIn;
}

@keyframes rotateInDownLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownLeft {
  animation-name: rotateInDownLeft;
}

@keyframes rotateInDownRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInDownRight {
  animation-name: rotateInDownRight;
}

@keyframes rotateInUpLeft {
  from {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform-origin: left bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpLeft {
  animation-name: rotateInUpLeft;
}

@keyframes rotateInUpRight {
  from {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform-origin: right bottom;
    transform: none;
    opacity: 1;
  }
}
.rotateInUpRight {
  animation-name: rotateInUpRight;
}

@keyframes rotateOut {
  from {
    transform-origin: center;
    opacity: 1;
  }
  to {
    transform-origin: center;
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.rotateOut {
  animation-name: rotateOut;
}

@keyframes rotateOutDownLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
}

@keyframes rotateOutDownRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutDownRight {
  animation-name: rotateOutDownRight;
}

@keyframes rotateOutUpLeft {
  from {
    transform-origin: left bottom;
    opacity: 1;
  }
  to {
    transform-origin: left bottom;
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
}

@keyframes rotateOutUpRight {
  from {
    transform-origin: right bottom;
    opacity: 1;
  }
  to {
    transform-origin: right bottom;
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.rotateOutUpRight {
  animation-name: rotateOutUpRight;
}

@keyframes hinge {
  0% {
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    transform-origin: top left;
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.hinge {
  animation-name: hinge;
}

@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.rollOut {
  animation-name: rollOut;
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.zoomIn {
  animation-name: zoomIn;
}

@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInDown {
  animation-name: zoomInDown;
}

@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInLeft {
  animation-name: zoomInLeft;
}

@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInRight {
  animation-name: zoomInRight;
}

@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomInUp {
  animation-name: zoomInUp;
}

@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutDown {
  animation-name: zoomOutDown;
}

@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
    transform-origin: left center;
  }
}
.zoomOutLeft {
  animation-name: zoomOutLeft;
}

@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
    transform-origin: right center;
  }
}
.zoomOutRight {
  animation-name: zoomOutRight;
}

@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    transform-origin: center bottom;
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.zoomOutUp {
  animation-name: zoomOutUp;
}

@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInDown {
  animation-name: slideInDown;
}

@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInLeft {
  animation-name: slideInLeft;
}

@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInRight {
  animation-name: slideInRight;
}

@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.slideInUp {
  animation-name: slideInUp;
}

@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.slideOutDown {
  animation-name: slideOutDown;
}

@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.slideOutLeft {
  animation-name: slideOutLeft;
}

@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.slideOutRight {
  animation-name: slideOutRight;
}

@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.slideOutUp {
  animation-name: slideOutUp;
}

/* fallback */
@font-face {
  font-family: "Material Icons";
  font-style: normal;
  font-weight: 400;
  src: url(../fonts/materialicons.woff2) format("woff2");
}
.material-icons {
  font-family: "Material Icons";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
}

@font-face {
  font-family: "latoblack";
  src: url("../fonts/lato-black-webfont.woff2") format("woff2"), url("../fonts/lato-black-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latoblack_italic";
  src: url("../fonts/lato-blackitalic-webfont.woff2") format("woff2"), url("../fonts/lato-blackitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latobold";
  src: url("../fonts/lato-bold-webfont.woff2") format("woff2"), url("../fonts/lato-bold-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latobold_italic";
  src: url("../fonts/lato-bolditalic-webfont.woff2") format("woff2"), url("../fonts/lato-bolditalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latoitalic";
  src: url("../fonts/lato-italic-webfont.woff2") format("woff2"), url("../fonts/lato-italic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latolight";
  src: url("../fonts/lato-light-webfont.woff2") format("woff2"), url("../fonts/lato-light-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latolight_italic";
  src: url("../fonts/lato-lightitalic-webfont.woff2") format("woff2"), url("../fonts/lato-lightitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latoregular";
  src: url("../fonts/lato-regular-webfont.woff2") format("woff2"), url("../fonts/lato-regular-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latohairline";
  src: url("../fonts/lato-thin-webfont.woff2") format("woff2"), url("../fonts/lato-thin-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "latohairline_italic";
  src: url("../fonts/lato-thinitalic-webfont.woff2") format("woff2"), url("../fonts/lato-thinitalic-webfont.woff") format("woff");
  font-weight: normal;
  font-style: normal;
}
.thm_white .btn.btn-default {
  background-color: #fff;
}

.thm_white .btn.link-default, .thm_white .btn.btn-default.btn-link {
  color: #fff;
}

.thm_black .btn.btn-default {
  background-color: #1b1b1b;
}

.thm_black .btn.link-default, .thm_black .btn.btn-default.btn-link {
  color: #1b1b1b;
}

.thm_dark_gray .btn.btn-default {
  background-color: #555;
}

.thm_dark_gray .btn.link-default, .thm_dark_gray .btn.btn-default.btn-link {
  color: #555;
}

.thm_gray .btn.btn-default {
  background-color: #a5acb3;
}

.thm_gray .btn.link-default, .thm_gray .btn.btn-default.btn-link {
  color: #a5acb3;
}

.thm_light_gray .btn.btn-default {
  background-color: #f2f2f2;
}

.thm_light_gray .btn.link-default, .thm_light_gray .btn.btn-default.btn-link {
  color: #f2f2f2;
}

.thm_red .btn.btn-default {
  background-color: #ff0000;
}

.thm_red .btn.link-default, .thm_red .btn.btn-default.btn-link {
  color: #ff0000;
}

.thm_green .btn.btn-default {
  background-color: #81c36b;
}

.thm_green .btn.link-default, .thm_green .btn.btn-default.btn-link {
  color: #81c36b;
}

.thm_light_green .btn.btn-default {
  background-color: #91dc5a;
}

.thm_light_green .btn.link-default, .thm_light_green .btn.btn-default.btn-link {
  color: #91dc5a;
}

.thm_blue .btn.btn-default {
  background-color: #216cea;
}

.thm_blue .btn.link-default, .thm_blue .btn.btn-default.btn-link {
  color: #216cea;
}

.thm_light_blue .btn.btn-default {
  background-color: #346cea91;
}

.thm_light_blue .btn.link-default, .thm_light_blue .btn.btn-default.btn-link {
  color: #346cea91;
}

.thm_orange .btn.btn-default {
  background-color: #ff6a2f;
}

.thm_orange .btn.link-default, .thm_orange .btn.btn-default.btn-link {
  color: #ff6a2f;
}

.thm_yellow .btn.btn-default {
  background-color: #fec933;
}

.thm_yellow .btn.link-default, .thm_yellow .btn.btn-default.btn-link {
  color: #fec933;
}

.thm_maroon .btn.btn-default {
  background-color: #800000;
}

.thm_maroon .btn.link-default, .thm_maroon .btn.btn-default.btn-link {
  color: #800000;
}

.thm_pink .btn.btn-default {
  background-color: #e388a6;
}

.thm_pink .btn.link-default, .thm_pink .btn.btn-default.btn-link {
  color: #e388a6;
}

.thm_cyan .btn.btn-default {
  background-color: #4db0ca;
}

.thm_cyan .btn.link-default, .thm_cyan .btn.btn-default.btn-link {
  color: #4db0ca;
}

.thm_blueviolet .btn.btn-default {
  background-color: #ad88e3;
}

.thm_blueviolet .btn.link-default, .thm_blueviolet .btn.btn-default.btn-link {
  color: #ad88e3;
}

.thm_golden .btn.btn-default {
  background-color: #f7c525;
}

.thm_golden .btn.link-default, .thm_golden .btn.btn-default.btn-link {
  color: #f7c525;
}

.card-white .card-header {
  background-color: #fff;
  color: #fff;
}

.card-black .card-header {
  background-color: #1b1b1b;
  color: #fff;
}

.card-dark_gray .card-header {
  background-color: #555;
  color: #fff;
}

.card-gray .card-header {
  background-color: #a5acb3;
  color: #fff;
}

.card-light_gray .card-header {
  background-color: #f2f2f2;
  color: #fff;
}

.card-red .card-header {
  background-color: #ff0000;
  color: #fff;
}

.card-green .card-header {
  background-color: #81c36b;
  color: #fff;
}

.card-light_green .card-header {
  background-color: #91dc5a;
  color: #fff;
}

.card-blue .card-header {
  background-color: #216cea;
  color: #fff;
}

.card-light_blue .card-header {
  background-color: #346cea91;
  color: #fff;
}

.card-orange .card-header {
  background-color: #ff6a2f;
  color: #fff;
}

.card-yellow .card-header {
  background-color: #fec933;
  color: #fff;
}

.card-maroon .card-header {
  background-color: #800000;
  color: #fff;
}

.card-pink .card-header {
  background-color: #e388a6;
  color: #fff;
}

.card-cyan .card-header {
  background-color: #4db0ca;
  color: #fff;
}

.card-blueviolet .card-header {
  background-color: #ad88e3;
  color: #fff;
}

.card-golden .card-header {
  background-color: #f7c525;
  color: #fff;
}

.white {
  color: #fff;
}

white {
  color: #fff;
}

.bg_white {
  background-color: #fff;
}

.bdr_white {
  border-color: #fff !important;
}

.border_white {
  border: 1px solid #fff;
}

.tag_white {
  background-color: #fff;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_white i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.black {
  color: #1b1b1b;
}

black {
  color: #1b1b1b;
}

.bg_black {
  background-color: #1b1b1b;
}

.bdr_black {
  border-color: #1b1b1b !important;
}

.border_black {
  border: 1px solid #1b1b1b;
}

.tag_black {
  background-color: #1b1b1b;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_black i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.dark_gray {
  color: #555;
}

dark_gray {
  color: #555;
}

.bg_dark_gray {
  background-color: #555;
}

.bdr_dark_gray {
  border-color: #555 !important;
}

.border_dark_gray {
  border: 1px solid #555;
}

.tag_dark_gray {
  background-color: #555;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_dark_gray i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.gray {
  color: #a5acb3;
}

gray {
  color: #a5acb3;
}

.bg_gray {
  background-color: #a5acb3;
}

.bdr_gray {
  border-color: #a5acb3 !important;
}

.border_gray {
  border: 1px solid #a5acb3;
}

.tag_gray {
  background-color: #a5acb3;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_gray i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.light_gray {
  color: #f2f2f2;
}

light_gray {
  color: #f2f2f2;
}

.bg_light_gray {
  background-color: #f2f2f2;
}

.bdr_light_gray {
  border-color: #f2f2f2 !important;
}

.border_light_gray {
  border: 1px solid #f2f2f2;
}

.tag_light_gray {
  background-color: #f2f2f2;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_light_gray i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.red {
  color: #ff0000;
}

red {
  color: #ff0000;
}

.bg_red {
  background-color: #ff0000;
}

.bdr_red {
  border-color: #ff0000 !important;
}

.border_red {
  border: 1px solid #ff0000;
}

.tag_red {
  background-color: #ff0000;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_red i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.green {
  color: #81c36b;
}

green {
  color: #81c36b;
}

.bg_green {
  background-color: #81c36b;
}

.bdr_green {
  border-color: #81c36b !important;
}

.border_green {
  border: 1px solid #81c36b;
}

.tag_green {
  background-color: #81c36b;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_green i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.light_green {
  color: #91dc5a;
}

light_green {
  color: #91dc5a;
}

.bg_light_green {
  background-color: #91dc5a;
}

.bdr_light_green {
  border-color: #91dc5a !important;
}

.border_light_green {
  border: 1px solid #91dc5a;
}

.tag_light_green {
  background-color: #91dc5a;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_light_green i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.blue {
  color: #216cea;
}

blue {
  color: #216cea;
}

.bg_blue {
  background-color: #216cea;
}

.bdr_blue {
  border-color: #216cea !important;
}

.border_blue {
  border: 1px solid #216cea;
}

.tag_blue {
  background-color: #216cea;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_blue i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.light_blue {
  color: #346cea91;
}

light_blue {
  color: #346cea91;
}

.bg_light_blue {
  background-color: #346cea91;
}

.bdr_light_blue {
  border-color: #346cea91 !important;
}

.border_light_blue {
  border: 1px solid #346cea91;
}

.tag_light_blue {
  background-color: #346cea91;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_light_blue i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.orange {
  color: #ff6a2f;
}

orange {
  color: #ff6a2f;
}

.bg_orange {
  background-color: #ff6a2f;
}

.bdr_orange {
  border-color: #ff6a2f !important;
}

.border_orange {
  border: 1px solid #ff6a2f;
}

.tag_orange {
  background-color: #ff6a2f;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_orange i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.yellow {
  color: #fec933;
}

yellow {
  color: #fec933;
}

.bg_yellow {
  background-color: #fec933;
}

.bdr_yellow {
  border-color: #fec933 !important;
}

.border_yellow {
  border: 1px solid #fec933;
}

.tag_yellow {
  background-color: #fec933;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_yellow i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.maroon {
  color: #800000;
}

maroon {
  color: #800000;
}

.bg_maroon {
  background-color: #800000;
}

.bdr_maroon {
  border-color: #800000 !important;
}

.border_maroon {
  border: 1px solid #800000;
}

.tag_maroon {
  background-color: #800000;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_maroon i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.pink {
  color: #e388a6;
}

pink {
  color: #e388a6;
}

.bg_pink {
  background-color: #e388a6;
}

.bdr_pink {
  border-color: #e388a6 !important;
}

.border_pink {
  border: 1px solid #e388a6;
}

.tag_pink {
  background-color: #e388a6;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_pink i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.cyan {
  color: #4db0ca;
}

cyan {
  color: #4db0ca;
}

.bg_cyan {
  background-color: #4db0ca;
}

.bdr_cyan {
  border-color: #4db0ca !important;
}

.border_cyan {
  border: 1px solid #4db0ca;
}

.tag_cyan {
  background-color: #4db0ca;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_cyan i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.blueviolet {
  color: #ad88e3;
}

blueviolet {
  color: #ad88e3;
}

.bg_blueviolet {
  background-color: #ad88e3;
}

.bdr_blueviolet {
  border-color: #ad88e3 !important;
}

.border_blueviolet {
  border: 1px solid #ad88e3;
}

.tag_blueviolet {
  background-color: #ad88e3;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_blueviolet i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.golden {
  color: #f7c525;
}

golden {
  color: #f7c525;
}

.bg_golden {
  background-color: #f7c525 !important;
}

.bdr_golden {
  border-color: #f7c525 !important;
}

.border_golden {
  border: 1px solid #f7c525;
}

.tag_golden {
  background-color: #f7c525;
  color: #fff;
  display: inline-block;
  padding: 2px 15px;
  margin: 5px;
  border-radius: 100px;
}
.tag_golden i {
  cursor: pointer;
  font-size: 1.3rem;
  margin-left: 5px;
  vertical-align: text-top;
}

.header {
  padding: 15px 0;
  background-color: #fff;
}

.btn {
  font-weight: 600;
  text-transform: capitalize;
  border-radius: 0.307rem;
}
.btn.btn-xs {
  padding: 0.2rem 0.5rem;
  font-size: 0.8rem;
}
.btn.btn-sm {
  padding: 0.25rem 0.8rem;
  font-size: 0.923rem;
}
.btn.btn-default.btn-link {
  padding: 0;
  background: none;
}
.btn.active:focus, .btn:active.focus, .btn:active:focus, .btn:focus, .btn:active {
  outline: none;
  outline-offset: none;
  box-shadow: none;
}
.btn.btn_icon {
  background: none;
  padding: 0;
  border: none;
  line-height: 0;
}
.btn.btn_icon.gray {
  color: #a5acb3;
}
.btn.btn_icon.gray:hover {
  color: #216cea;
}

.link {
  font-weight: 500;
  padding-top: 0;
  padding-bottom: 0;
}
.link.link-md {
  padding-right: 1rem;
}

.bdr_white {
  border-color: #fff;
}

.btn.btn_white.btn-link {
  color: #fff;
  background-color: transparent;
}
.btn.btn_white:not(.btn-link) {
  background-color: #fff;
  color: #fff;
}

.btn_bdr_white {
  border: 2px solid #fff;
  color: #fff;
}

.bdr_black {
  border-color: #1b1b1b;
}

.btn.btn_black.btn-link {
  color: #1b1b1b;
  background-color: transparent;
}
.btn.btn_black:not(.btn-link) {
  background-color: #1b1b1b;
  color: #fff;
}

.btn_bdr_black {
  border: 2px solid #1b1b1b;
  color: #1b1b1b;
}

.bdr_dark_gray {
  border-color: #555;
}

.btn.btn_dark_gray.btn-link {
  color: #555;
  background-color: transparent;
}
.btn.btn_dark_gray:not(.btn-link) {
  background-color: #555;
  color: #fff;
}

.btn_bdr_dark_gray {
  border: 2px solid #555;
  color: #555;
}

.bdr_gray {
  border-color: #a5acb3;
}

.btn.btn_gray.btn-link {
  color: #a5acb3;
  background-color: transparent;
}
.btn.btn_gray:not(.btn-link) {
  background-color: #a5acb3;
  color: #fff;
}

.btn_bdr_gray {
  border: 2px solid #a5acb3;
  color: #a5acb3;
}

.bdr_light_gray {
  border-color: #f2f2f2;
}

.btn.btn_light_gray.btn-link {
  color: #f2f2f2;
  background-color: transparent;
}
.btn.btn_light_gray:not(.btn-link) {
  background-color: #f2f2f2;
  color: #fff;
}

.btn_bdr_light_gray {
  border: 2px solid #f2f2f2;
  color: #f2f2f2;
}

.bdr_red {
  border-color: #ff0000;
}

.btn.btn_red.btn-link {
  color: #ff0000;
  background-color: transparent;
}
.btn.btn_red:not(.btn-link) {
  background-color: #ff0000;
  color: #fff;
}

.btn_bdr_red {
  border: 2px solid #ff0000;
  color: #ff0000;
}

.bdr_green {
  border-color: #81c36b;
}

.btn.btn_green.btn-link {
  color: #81c36b;
  background-color: transparent;
}
.btn.btn_green:not(.btn-link) {
  background-color: #81c36b;
  color: #fff;
}

.btn_bdr_green {
  border: 2px solid #81c36b;
  color: #81c36b;
}

.bdr_light_green {
  border-color: #91dc5a;
}

.btn.btn_light_green.btn-link {
  color: #91dc5a;
  background-color: transparent;
}
.btn.btn_light_green:not(.btn-link) {
  background-color: #91dc5a;
  color: #fff;
}

.btn_bdr_light_green {
  border: 2px solid #91dc5a;
  color: #91dc5a;
}

.bdr_blue {
  border-color: #216cea;
}

.btn.btn_blue.btn-link {
  color: #216cea;
  background-color: transparent;
}
.btn.btn_blue:not(.btn-link) {
  background-color: #216cea;
  color: #fff;
}

.btn_bdr_blue {
  border: 2px solid #216cea;
  color: #216cea;
}

.bdr_light_blue {
  border-color: #346cea91;
}

.btn.btn_light_blue.btn-link {
  color: #346cea91;
  background-color: transparent;
}
.btn.btn_light_blue:not(.btn-link) {
  background-color: #346cea91;
  color: #fff;
}

.btn_bdr_light_blue {
  border: 2px solid #346cea91;
  color: #346cea91;
}

.bdr_orange {
  border-color: #ff6a2f;
}

.btn.btn_orange.btn-link {
  color: #ff6a2f;
  background-color: transparent;
}
.btn.btn_orange:not(.btn-link) {
  background-color: #ff6a2f;
  color: #fff;
}

.btn_bdr_orange {
  border: 2px solid #ff6a2f;
  color: #ff6a2f;
}

.bdr_yellow {
  border-color: #fec933;
}

.btn.btn_yellow.btn-link {
  color: #fec933;
  background-color: transparent;
}
.btn.btn_yellow:not(.btn-link) {
  background-color: #fec933;
  color: #fff;
}

.btn_bdr_yellow {
  border: 2px solid #fec933;
  color: #fec933;
}

.bdr_maroon {
  border-color: #800000;
}

.btn.btn_maroon.btn-link {
  color: #800000;
  background-color: transparent;
}
.btn.btn_maroon:not(.btn-link) {
  background-color: #800000;
  color: #fff;
}

.btn_bdr_maroon {
  border: 2px solid #800000;
  color: #800000;
}

.bdr_pink {
  border-color: #e388a6;
}

.btn.btn_pink.btn-link {
  color: #e388a6;
  background-color: transparent;
}
.btn.btn_pink:not(.btn-link) {
  background-color: #e388a6;
  color: #fff;
}

.btn_bdr_pink {
  border: 2px solid #e388a6;
  color: #e388a6;
}

.bdr_cyan {
  border-color: #4db0ca;
}

.btn.btn_cyan.btn-link {
  color: #4db0ca;
  background-color: transparent;
}
.btn.btn_cyan:not(.btn-link) {
  background-color: #4db0ca;
  color: #fff;
}

.btn_bdr_cyan {
  border: 2px solid #4db0ca;
  color: #4db0ca;
}

.bdr_blueviolet {
  border-color: #ad88e3;
}

.btn.btn_blueviolet.btn-link {
  color: #ad88e3;
  background-color: transparent;
}
.btn.btn_blueviolet:not(.btn-link) {
  background-color: #ad88e3;
  color: #fff;
}

.btn_bdr_blueviolet {
  border: 2px solid #ad88e3;
  color: #ad88e3;
}

.bdr_golden {
  border-color: #f7c525;
}

.btn.btn_golden.btn-link {
  color: #f7c525;
  background-color: transparent;
}
.btn.btn_golden:not(.btn-link) {
  background-color: #f7c525;
  color: #fff;
}

.btn_bdr_golden {
  border: 2px solid #f7c525;
  color: #f7c525;
}

.circulbtn {
  border-radius: 100%;
  background-color: rgba(33, 108, 234, 0.5);
  position: absolute;
  right: 0;
  top: 0;
}
.circulbtn.btn-md {
  height: 25px;
  width: 25px;
  padding: 2px;
}
.circulbtn.btn-xs {
  font-size: 10px;
  height: 1.2rem;
  width: 1.2rem;
  padding: 0px;
}
.circulbtn input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  opacity: 0;
}

.jumbobtn {
  width: 100%;
  padding: 15px;
  white-space: normal;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 10px;
}
.jumbobtn p {
  margin: 0;
  font-size: 0.9rem;
}
.jumbobtn h5 {
  position: relative;
  display: inline-block;
}
.jumbobtn h5:after {
  content: "";
  display: block;
  margin: 0 auto;
  left: 0;
  right: 0;
  position: absolute;
  height: 2px;
  width: 0;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -ms-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.jumbobtn:hover h4 {
  position: relative;
  display: inline-block;
}
.jumbobtn:hover h4:after {
  width: 100%;
}

.btn_radius {
  border-radius: 100%;
}
.btn_radius.btn-md {
  height: 3rem;
  width: 3rem;
  padding: 0.45rem;
  font-size: 1.45rem;
}
.btn_radius.btn-md .icon {
  display: block;
  height: 100%;
  width: 100%;
}
.btn_radius.btn-sm {
  height: 2rem;
  width: 2rem;
  padding: 0.2rem;
  font-size: 0.95rem;
}
.btn_radius.btn-sm + .btn {
  margin-left: 5px;
}
.btn_radius.btn-sm .icon {
  display: block;
  height: 100%;
  width: 100%;
}
.btn_radius + span {
  clear: both;
  display: block;
}

.bdr_radius {
  border-radius: 100px;
}

.link-white {
  color: #fff;
}
.link-white:hover, .link-white:focus {
  color: #fff;
}

.link-black {
  color: #1b1b1b;
}
.link-black:hover, .link-black:focus {
  color: #1b1b1b;
}

.link-dark_gray {
  color: #555;
}
.link-dark_gray:hover, .link-dark_gray:focus {
  color: #555;
}

.link-gray {
  color: #a5acb3;
}
.link-gray:hover, .link-gray:focus {
  color: #a5acb3;
}

.link-light_gray {
  color: #f2f2f2;
}
.link-light_gray:hover, .link-light_gray:focus {
  color: #f2f2f2;
}

.link-red {
  color: #ff0000;
}
.link-red:hover, .link-red:focus {
  color: #ff0000;
}

.link-green {
  color: #81c36b;
}
.link-green:hover, .link-green:focus {
  color: #81c36b;
}

.link-light_green {
  color: #91dc5a;
}
.link-light_green:hover, .link-light_green:focus {
  color: #91dc5a;
}

.link-blue {
  color: #216cea;
}
.link-blue:hover, .link-blue:focus {
  color: #216cea;
}

.link-light_blue {
  color: #346cea91;
}
.link-light_blue:hover, .link-light_blue:focus {
  color: #346cea91;
}

.link-orange {
  color: #ff6a2f;
}
.link-orange:hover, .link-orange:focus {
  color: #ff6a2f;
}

.link-yellow {
  color: #fec933;
}
.link-yellow:hover, .link-yellow:focus {
  color: #fec933;
}

.link-maroon {
  color: #800000;
}
.link-maroon:hover, .link-maroon:focus {
  color: #800000;
}

.link-pink {
  color: #e388a6;
}
.link-pink:hover, .link-pink:focus {
  color: #e388a6;
}

.link-cyan {
  color: #4db0ca;
}
.link-cyan:hover, .link-cyan:focus {
  color: #4db0ca;
}

.link-blueviolet {
  color: #ad88e3;
}
.link-blueviolet:hover, .link-blueviolet:focus {
  color: #ad88e3;
}

.link-golden {
  color: #f7c525;
}
.link-golden:hover, .link-golden:focus {
  color: #f7c525;
}

.action_btn a.btn {
  text-decoration: underline;
}

.progress {
  height: 5px;
}
.progress .progress-bar {
  background-color: #81c36b;
}

.custom-control .custom-control-label {
  line-height: 1.8;
  padding-left: 5px;
  outline: 0;
}
.custom-control .custom-control-label::before, .custom-control .custom-control-label::after {
  width: 1.3rem;
  height: 1.3rem;
}
.custom-control .custom-control-input:checked ~ .custom-control-label::before {
  background-color: #fec933;
  border-color: #fec933;
}

.custom-control .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fec933;
  border-color: #fec933;
  border-radius: 50%;
}

form .form-group {
  margin-bottom: 30px;
}
form .form-group .form-control {
  border: 0;
  background-color: transparent;
  border-bottom: 1px solid #a5acb3;
  border-radius: 0;
  color: #1b1b1b;
  font-family: "latobold";
  padding-left: 0;
  height: calc(2.875rem + 2px);
}
form .form-group .form-control:focus {
  outline: none;
  box-shadow: none;
}

html, body {
  height: 100%;
  display: flex;
  flex-direction: column;  
  margin: 0;
  font-family: "latoregular";
  font-size: 14px;
  color: #1b1b1b;
  background-color: transparent;
  background-image: url("../images/page_background.png");
  background-repeat: no-repeat;
  background-size: 100%;
}

.main-content {
  flex-grow: 1;
  padding-bottom: 50px;
}

::-webkit-input-placeholder {
  color: #1b1b1b !important;
  font-family: "latobold";
  font-size: 1rem;
}

::-moz-placeholder {
  color: #1b1b1b !important;
  font-family: "latobold";
  font-size: 1rem;
}

:-ms-input-placeholder {
  color: #1b1b1b !important;
  font-family: "latobold";
  font-size: 1rem;
}

::placeholder {
  color: #1b1b1b !important;
  font-family: "latobold";
  font-size: 1rem;
}

main {
  /*padding-top: 90px;*/
  padding-bottom: 30px;
}
main.single_page {
  padding-top: 30px;
  padding-bottom: 30px;
}

.heading {
  text-transform: capitalize;
  font-family: "latobold";
  margin-bottom: 30px;
}
.headingNoCapitalize {
  text-transform: none;
  font-family: "latobold";
  margin-bottom: 30px;
}

.bold {
  font-family: "latobold";
}

.underline {
  text-decoration: underline;
}

.theme_btn {
  background-color: #1b1b1b;
  border-radius: 0;
  color: #f7c525;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 10px;
  margin-top: 30px;
  min-width: 150px;
  width: auto;
  border: 1px solid #1b1b1b;
}

.theme_btn:hover,
.theme_btn:focus {
  background-color: #2a2a2a;  /* Slightly different to indicate hover */
  color: #f7c525;             /* Keeps text visible */
  border-color: #f7c525;      /* Optional: highlight border */
  text-decoration: none;      /* Prevent accidental underline */
}

.theme_btn_no_capitalize {
  background-color: #1b1b1b;
  border-radius: 0;
  color: #f7c525;
  text-transform: none;
  letter-spacing: 1px;
  font-weight: 500;
  font-size: 1rem;
  padding: 10px 10px;
  margin-top: 30px;
  min-width: 150px;
  width: auto;
  border: 1px solid #1b1b1b;
}
.theme_btn.theme_trans_btn {
  background-color: transparent;
  border: 1px solid #fec933;
}

.btn_group {
  margin-top: 50px;
}
.btn_group .btn:first-child {
  margin-right: 10px;
}
.btn_group .btn:last-child {
  margin-left: 10px;
}

#msform {
  text-align: center;
  position: relative;
  margin-top: 30px;
}
#msform fieldset:not(:first-of-type) {
  display: none;
}

#personalfieldId {
  display: none;
  height: auto;
}

.card_radio {
  position: absolute;
  left: 10px;
  top: 5px;
  width: 100%;
  height: 100%;
}
.card_radio .custom-control-label {
  width: 100%;
  cursor: pointer;
}

.theme_list {
  padding-left: 15px;
  margin: 0;
}
.theme_list li {
  padding: 5px 0;
}

.card-header {
  background-color: transparent;
  border-bottom: 1px dashed #fec933;
}

.disclaimer_list {
  height: 300px;
  overflow: auto;
  padding-left: 15px;
  margin: 0;
}

.otp_outer {
  width: 290px;
  overflow: hidden;
  margin: 0 auto;
}
.otp_outer .otp_inner {
  left: 0;
  position: sticky;
}
.otp_outer .otp_inner .otp_input {
  padding-left: 15px;
  letter-spacing: 40px;
  border: 0;
  background-image: linear-gradient(to left, black 70%, rgba(255, 255, 255, 0) 0%);
  background-position: bottom;
  background-size: 50px 1px;
  background-repeat: repeat-x;
  background-position-x: 38px;
  width: 390px;
  min-width: 390px;
  outline: 0;
  font-size: 1.2rem;
}

.dtp-date-view .dtp-header {
  background-color: #fec933 !important;
}
.dtp-date-view .dtp-date {
  background-color: #f7d577 !important;
}

.dtp .p10 > a {
  color: #6b530f !important;
}

.dtp table.dtp-picker-days tr > td > a.selected {
  background: #ffbc00 !important;
}

.datepicker_js {
  padding-right: calc(1.5em + .75rem);
  background-image: url("../images/calender_icon.png");
  background-repeat: no-repeat;
  background-position: center right calc(.375em + .1875rem);
  background-size: calc(.75em + .375rem) calc(.75em + .375rem);
}

.bootstrap-select .dropdown-toggle {
  background-color: transparent !important;
  border: 0;
  padding-top: 10px;
  padding-bottom: 0;
  padding-left: 0;
}
.bootstrap-select .dropdown-toggle::after {
  content: "";
  background-image: url("../images/down_arrow.png");
  width: 18px;
  height: 12px;
  background-repeat: no-repeat;
  position: absolute;
  right: 5px;
  top: auto;
  border: 0;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: #fec933;
}

.choose_card {
  border-radius: 15px;
}
.choose_card .card-header {
  background-color: #1b1b1b;
  border: 0;
  border-radius: 15px 15px 0px 0px;
}

.custom_bullet {
  margin-top: 30px;
  list-style-type: none;
}
.custom_bullet li {
  position: relative;
  padding-left: 10px;
}
.custom_bullet li:before {
  content: "";
  background-image: url("../images/bullet.png");
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  position: absolute;
  left: -20px;
  top: 6px;
}

.user_image img {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  object-fit: cover;
  object-position: top;
}

.final_info li span i {
  font-size: 1.5rem;
  vertical-align: middle;
  padding-right: 5px;
}

.custom_list {
  padding-left: 0px;
}
.custom_list li {
  list-style: none;
  position: relative;
  padding: 5px 0 5px 20px;
}
.custom_list li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background-color: #800000;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}

.shadow_btn {
  background-color: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  padding: 10px 20px;
  border-radius: 100px;
}

.modal.fade .modal-dialog.bottom_popup {
  max-width: 100%;
  bottom: 0;
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0;
  -webkit-transition: opacity 0.5s ease-out, bottom 0.5s ease-out;
  -moz-transition: opacity 0.5s ease-out, bottom 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out, bottom 0.5s ease-out;
  transition: opacity 0.5s ease-out, bottom 0.5s ease-out;
}
.modal.fade .modal-dialog.bottom_popup .modal-content {
  border-radius: 15px 15px 0 0;
}
.modal.fade .modal-dialog.bottom_popup .modal-content .modal-header {
  border-bottom: 0;
}
.modal.fade .modal-dialog.bottom_popup .list-group .list-group-item {
  border-color: #e6e6e6;
}

.dash_border {
  border-bottom: 1px dashed #ddd;
}

.congo_div {
  background-color: #41ffc9;
  padding: 35px 15px;
}

.code_copy {
  border: 1px dashed #ddd;
  padding: 15px;
  width: 250px;
  border-radius: 10px;
  margin: 30px auto;
}

.custom_error_message {
  color: #fb0606;
  font-size:1rem;
}

.justify_content{
  text-align: justify;
}

.hidden{
  display: none;
}

.camelCase{
  text-transform: capitalize;
}

.nominee_skip_modal .modal-content {
  border-color: #f7c525;
}
/*# sourceMappingURL=style.css.map */
.conbg {
  background-color: #FFE1B9;
}

.congcardbg {
  background-color: #F0EAEA;
}

.cname {
  margin-left: 250px;
}

.ccustid {
  margin-left: 205px;
}

.caccount {
  margin-left: 176px;
}

#seedingbox {
  box-sizing: border-box;
  border-radius: 5px;
  width: 150px;
  height: 70px;
  padding: 10px;
  border: 1px solid #ced4da;

}

#bank-dropdown-id .filter-option-inner {
  padding: 4px;
}
.acc-dts-row {
  border-bottom: 1px solid;
  padding-bottom: 5px;
  border-color: #dedede;
}

#PID-form .modal-content {
  overflow-y: auto;
  max-height: 80vh;
}
/* 
#bank-dropdown-id .bootstrap-select .dropdown-toggle::after {
  width: 16px;
}

#bank-dropdown-id .dropdown.bootstrap-select {
  width: auto;
  margin: 0 20px 0 0;
} */
.toggle {
  position : relative ;
  display : inline-block;
  width : 60px;
  height : 32px;
  background-color: white;
  border-radius: 30px;
  border: 1px solid gray;
}

.toggle:after {
  content: '';
  position: absolute;
  width: 32px;
  height: 30px;
  border-radius: 50%;
  background-color: #ccc;
  top: 1px; 
  left: 1px;
  transition: all 0.5s;
}

.checkbox:checked + .toggle::after {
  left : 32px; 
}

.checkbox:checked + .toggle {
  background-color: green;
}

.checkbox { 
  display : none;
}

#toggleRow {
  text-align: center;
}

#toggleRow table {
  margin: 0 auto;
}

#mdb-footer {
  position: fixed;
  bottom: 20px;
  right: 20px;
  padding: 10px 20px;
  z-index: 9999;
}

#personalfieldId {
  display: none !important;
}

/* === Modal Container Styling === */
#liveness_check_modal .modal-dialog {
  max-width: 95%;
  margin: 1.5rem auto;
}

#liveness_check_modal .modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1.5rem);
}

/* === Modal Container (centered and responsive) === */
#liveness_check_modal .modal-dialog {
  max-width: 95%;
  margin: 1rem auto;
}

#liveness_check_modal .modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

/* === Modal Content - Fully Transparent === */
#liveness_check_modal .modal-content {
  background-color: transparent !important;
  border: none !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* === Liveness Container (camera area) === */
#liveness-container {
  width: 100%;
  max-width: 550px;           /* desktop size */
  aspect-ratio: 550 / 640;
  background-color: transparent !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 12px;
  overflow: hidden;
}

/* === Make video scale properly === */
#liveness-container video,
#liveness-container iframe,
#liveness-container canvas {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

/* === Responsiveness === */
@media (max-width: 992px) {
  #liveness-container {
    max-width: 80vw;
    aspect-ratio: 1 / 1.1;
  }
}

@media (max-width: 576px) {
  #liveness-container {
    max-width: 95vw;
    aspect-ratio: 1 / 1.2;
    border-radius: 10px;
  }
}

.force-hide {
  display: none !important;
}