﻿html {
  font-size: 14px;
}



body{
  box-sizing: border-box;
  margin: 0;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}


.wrapper {
  background: #f1f5f6
}

header {
  background: #fff;
  border-bottom: 1px solid #efefef
}

.main-wrapper {
  margin-top: 40px;
  min-height: 85vh;
 
}

.header-title {
  font-size: 32px
}

.header-desc {
  font-size: 18px;
  margin: 5px 0 25px
}

.amount-due {
  font-weight: 700
}

.email-input {
  height: inherit
}

.form-group {
  margin-bottom: 0.5rem;
}

td:first-child {
  width: 40% !important;
}

.proceed1 {
  background-color: #fff;
  border: 0px;
  color: rgb(0 0 0 / 50%);
  cursor: default !important;
}

.btn-loading::after {
  border-color: rgb(0 0 0 / 50%);
  margin-left: -230px;
}

.custom-btn {
  background-color: transparent;
  border-radius: 0;
  border: transparent;
  cursor: pointer;
  line-height: inherit;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  margin: 0;
  display: inline-block;
}

.py-2 {
  padding-top: 0.5rem!important;
  padding-bottom: 0.5rem!important;
}

.custom-header{
  background: #fff;
  border-bottom: 1px solid #efefef;
  padding-left: 1rem;
}

img{
  max-height: 60px;
  display: block;
  max-width: 100%;
}

.container{
  min-width: 100vw;
  padding-left: 0;
  padding-right: 0;
}

.custom-width{
  max-width: 95%;
}

.custom-big-btn{
  display: block;
  text-align: center;
}

.custom-text-center{
  text-align: center;
}


.custom-text-right{
  text-align: right;
}

.custom-proceed-btn{
  display: block;
  text-align: center;
  width: 100%;
  border: 0px;
  cursor: pointer;
  background: #22a6e4;
  border-color: #22a6e4;
  color: #fff;
  font-weight: 500;
  border-radius: 3px;
  padding: 0.8rem 1.6rem;
}

.custom-processing{
  display: block;
  text-align: center;
  width: 100%;
  border: 0px;
  background: #e3f6ff;
  border-color: #e3f6ff;
  color: #155573;
  border-radius: 3px;
  padding: 0.8rem 1.6rem;
  font-size: large;
  cursor: default;
}

.custom-proceed-btn:hover {
  background: #f68321;
  border-color: #f68321;
}

.custom-spin {
  display: inline-block;
  margin: auto;
  animation: spin 1s linear infinite;
}

.hide{
  display: none;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }

  .custom-width{
    max-width: 60%;
  }

  .custom-header{
    padding-left: 6rem;
  }
  
}

@media (min-width: 1024px) {
  .custom-width{
    max-width: 45%;
  }
}

/** ANIMATIONS */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
  }
  

