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

.bd-placeholder-img {
  font-size: 1.125rem;
  text-anchor: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

@media (min-width: 768px) {
  .bd-placeholder-img-lg {
    font-size: 3.5rem;
  }
}

.bg-mav {
  background-color: #ff5a20;
  color: #fff;
}

.shadow-2dp {
  box-shadow: 0 2px 2px 0 rgba(0,0,0,.14), 0 3px 1px -2px rgba(0,0,0,.2), 0 1px 5px 0 rgba(0,0,0,.12) !important;
}

.paymento_container .left_container .card { 
  height: 26vh;
  width: 100%;
  background: #2C2C35;
  border-radius: 15px;
  margin-top: 3vh;
  margin-bottom: 5vh;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.425);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-direction: column;
  padding: 45px;
  border: none;
  background: linear-gradient(-45deg, #f50, #2c2c35, black, #393946);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}

.paymento_container .left_container .card .info_card .number { 
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 1vh;
}

.paymento_container .left_container .card .info_card .name { 
  text-transform: uppercase;
  font-size: 10px;
  color: #fff;
  margin-bottom: 1vh;
}

.paymento_container .left_container .card .info_card .date { 
  font-weight: bold;
  color: #fff;
}

.paymento_container .left_container .card .info_card .flag { 
  font-weight: bold;
  color: #fff;
}

.paymento_container .left_container .card .info_card :disabled { 
  display: none;
}

.btn-mav {
  color: #fff;
  background-color: #f50;
  border-color: #f50;
}

.btn-mav:hover {
  color: #000;
  background-color: #fff;
  border-color: #f50;
}

.btn-mav-2 {
  color: #000;
  background-color: #fff;
  border-color: #f50;
}

.btn-mav-2:hover {
  color: #fff;
  background-color: #f50;
  border-color: #f50;
}

.btn-mav-active {
  color: #000;
  background-color: #fff;
  border-color: #f50;
}

.btn-mav-active-2 {
  color: #fff;
  background-color: #f50;
  border-color: #f50;
}

.input-flush {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

.loader-area {
  background-color: #fff;
  height: 100%;
  width: 100%;
  position: absolute;
}

.loader {
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #fe5c00;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite; /* Safari */
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% { -webkit-transform: rotate(0deg); }
  100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

#page {
    display: none;
}

#loading {
    display: block;
    position: absolute;
    top: 0;
    left: 8%;
    z-index: 100;
    width: 82vw;
    height: 100vh;
    background-image: url("/img/loading_spinner.gif");
    background-repeat: no-repeat;
    background-position: center;
}