@font-face {
  font-family: Mont;
  src: url("font/Mont-Regular.otf");
}
@font-face {
  font-family: Mont;
  src: url("font/Mont-Bold.otf");
  font-weight: bold;
}
@font-face {
  font-family: Mont;
  src: url("font/Mont-BoldItalic.otf");
  font-weight: italic;
}

html,
body {
  height: 100%;
  font-family: Mont;
  margin: 0;
  padding: 0;
}

.display-none {
  display: none;
}
.background-color-white {
  background-color: #fff;
}

.background-color-purple {
  background-color: purple;
}

.background-color-skyblue {
  background-color: #c2dcfc;
}

.topbar-kachape {
  position: relative;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  /* border-radius: 0px 0px 65px 65px; */
}

.coin-color {
  color: #f5b040;
}

.img-center-position {
  position: absolute;
  top: 21%;
  left: 10%;
  /* right: 10%; */
}

.coin-color:hover {
  color: #f9ec32;
}

.gif-color {
  color: #1e91d9;
}

.gif-color:hover {
  color: #0056b3;
}

.coin-size {
  font-size: 2rem;
  font-weight: bold;
}

.title-kachape {
  /* font-size: 2.2rem; */
  font-weight: bold;
  padding-left: 5%;
}

.to-the-bottom-coins {
  position: absolute;
  bottom: 10px;
}

.to-the-top {
  position: absolute;
  margin-bottom: 1rem;
  top: 0px;
}

.card-size {
  height: 500px;
}

.card-body {
  background-repeat: round;
  background-size: contain;
  opacity: 0.9;
  width: 100%;
}

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

.text-align-center {
  text-align: center;
  text-align: -webkit-center;
}

.self-align-center {
  align-self: center;
}

.card-body {
  height: 400px;
}

.img-height {
  height: 100%;
  max-width: 100%;
}

.div-with-border {
  border-style: solid;
  border-radius: 20px;
  border-width: 1px;
}

/* .input-with-border {
  border-top-left-radius: inherit;
  border-bottom-left-radius: inherit;
} */

.input-with-border {
  border-radius: 10px;
  border-color: #ecb83e;
}

.backgroud-white {
  background-color: white;
}

.border-0 {
  border: 0px;
}

.border-inherit {
  border-radius: inherit;
}
.button-border-radius {
  border-radius: 20px !important;
  padding-left: 15%;
  padding-right: 15%;
}

.button-yellow {
  background-color: #ffc107;
  color: black;
  font-weight: bold;
}

.button-yellow:hover {
  background-color: yellow;
  color: black;
  font-weight: bold;
}

.width-100 {
  width: 100%;
}

.width-10 {
  width: 10%;
}

.width-15 {
  width: 15%;
}

.width-80 {
  width: 80%;
}

.width-85 {
  width: 85%;
}

.height-50px {
  height: 50px;
}

.height-500px {
  height: 500px;
}

.height-450px {
  height: 500px;
}

.height-100 {
  height: 100%;
}

.height-80 {
  height: 80%;
}

.height-85 {
  height: 85%;
}

.height-4vh {
  height: 4vh;
}

.vertical-align-sub {
  vertical-align: sub;
}

.vertical-align-middle {
  vertical-align: middle;
}

.align-items-center {
  align-items: center;
}

.align-self-end {
  align-self: flex-end;
}

.mirror {
  transform: scaleX(-1);
}

.blue-button {
  background-color: #3096da;
  border-radius: 20px;
  color: white;
  padding-left: 20px;
  padding-right: 20px;
}

.white-button {
  background-color: white;
  border-radius: 20px;
  color: black;
  padding: 10px;
  width: 50%;
  border: 0px;
}

.form-button {
  border-radius: 20px;
  background-color: transparent;
  color: white;
  font-weight: bold;
  border-color: white;
}

.form-button:hover {
  border-radius: 20px;
  background-color: white;
  color: #f1c40f;
  font-weight: bold;
  border-color: white;
}

.yellow-background {
  background-color: #f1c40f;
}

/* Heart beat animation */
.heart {
  animation: beat 1s infinite alternate;
  transform-origin: center;
}

@keyframes beat {
  to {
    transform: scale(1.1);
  }
}

/* spin animation */
.spin {
  animation: spin 5s infinite normal;
  transform-origin: center;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* bounce animation */
.gif-kachape {
  animation: bounce 2s infinite normal;
  transform-origin: center;
}

@keyframes bounce {
  0% {
    transform: scale(1, 1) translateY(0);
  }
  10% {
    transform: scale(1.1, 0.9) translateY(0);
  }
  30% {
    transform: scale(0.9, 1.1) translateY(-13px);
  }
  50% {
    transform: scale(1, 1) translateY(0);
  }
  57% {
    transform: scale(1, 1) translateY(-4px);
  }
  64% {
    transform: scale(1, 1) translateY(0);
  }
  100% {
    transform: scale(1, 1) translateY(0);
  }
}

label {
  margin-bottom: 0px;
}

/* CREDITO CSS */

.debito-card-6 {
  border-radius: 5px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  margin: 10px auto;
  cursor: pointer;
  border-radius: 20px;
}

.debito-card-6 img {
  /*filter: brightness(90%);*/
  transition: all 0.15s linear;
}

.debito-card-6 .debito-position {
  position: absolute;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  left: 30px;
  top: 100px;
  transition: all 0.15s linear;
}

.debito-card-6 .debito-overview {
  position: absolute;
  bottom: 0px;
  left: 0px;
  right: 0px;
  /* background: linear-gradient(
    0deg,
    rgba(127, 255, 212, 1) 50%,
    rgba(0, 64, 140, 0) 100%
  ); */
  color: #fff;
  transition: all 0.15s linear;
}

.debito-card-6 .debito-overview h3 {
  font-weight: bold;
}

.debito-card-6 .debito-overview p {
  color: rgba(255, 255, 255, 0.7);
}

.debito-card-6:hover img {
  /*filter: brightness(70%);*/
}

.debito-card-6:hover .debito-name {
  /* padding-left: 25px; */
  /* padding-top: 20px; */
}

.debito-card-6:hover .debito-position {
  /* left: 40px; */
}

.debito-card-6:hover .debito-overview {
  /* padding-bottom: 15px; */
}

/* DEBITO CSS */

.credito-card-6 {
  border-radius: 5px;
  box-shadow: 0px 0px 25px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
  margin: 10px auto;
  cursor: pointer;
  border-radius: 20px;
}

.credito-card-6 img {
  transition: all 0.15s linear;
}

.credito-card-6 .credito-position {
  position: absolute;
  color: white;
  font-size: 1.4rem;
  font-weight: bold;
  left: 30px;
  top: 100px;
  transition: all 0.15s linear;
}

.credito-card-6 .credito-overview {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  /* background: linear-gradient(
    180deg,
    rgba(64, 224, 208, 1) 50%,
    rgba(0, 64, 140, 0) 100%
  ); */
  color: #fff;
  transition: all 0.15s linear;
}

.credito-card-6 .credito-overview h3 {
  font-weight: bold;
}

.credito-card-6 .credito-overview p {
  color: rgba(255, 255, 255, 0.7);
}

.credito-card-6:hover img {
 /*filter: brightness(80%);*/
}

.credito-card-6:hover .credito-name {
  /* padding-right: 25px; */
  /* padding-bottom: 10px; */
}

.credito-card-6:hover .credito-position {
  /* left: 40px; */
}

.credito-card-6:hover .credito-overview {
  /* padding-top: 10px; */
}

/* GENRICO */
/* NEW or Modified CSS */
.span-timer {
  z-index: 100;
  color: #000000;
}

/* Zoom animation */
.zoomeffect {
  animation: zoomeffect 1s alternate;
  transform-origin: center;
}

@keyframes zoomeffect {
  from {
    transform: scale(0.1);
  }

  to {
    transform: scale(1);
  }
}
