html,
body {
  height: 100%;
}

body {
    /* display: flex; */
    /* padding-top: 40px; */
    /* padding-bottom: 40px; */
    background-color: #f5f5f5;
  }

.success {
    text-align: center;
    background: #64BC3C;
    padding: 1.5rem;
    border-radius: .25rem;
    margin: 1rem 2rem;
    color: #fff;
}

.warning {
    text-align: center;
    background: #EDB93E;
    padding: 1.5rem;
    border-radius: .25rem;
    margin: 1rem 2rem;
}

.error {
    text-align: center;
    background: #D7361D;
    padding: 1.5rem;
    border-radius: .25rem;
    margin: 1rem 2rem;
    color: #fff;
}

.errorlist {
    text-align: center;
    background: #D7361D;
    padding: 1.5rem;
    list-style-type: none;
    border-radius: .25rem;
    margin: 1rem 2rem;
    color: #fff;
}

#sidebarMenu {
    text-align: initial;
}


  /*
   * Navbar
   */
  
   .navbar-brand {
    padding-top: .75rem;
    padding-bottom: .75rem;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, .25);
  }
  
  .navbar .navbar-toggler {
    top: .25rem;
    right: 1rem;
  }
  
  .navbar .form-control {
    padding: .75rem 1rem;
    border-width: 0;
    border-radius: 0;
  }
  
  .form-control-dark {
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .1);
  }
  
  .form-control-dark:focus {
    border-color: transparent;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
  }

  .input-group-text
  {
    border-radius: .25rem 0 0 .25rem;
  }

  .input-group-text-after {
    border-radius: 0 .25rem .25rem 0;
  }

  .btn-primary:hover,
  .btn-primary:active,
  .btn-primary:focus {
    background-color: #59a735 !important;
}

.btn-primary:active:focus {
  box-shadow: 0 0 0.25rem #64bc3c7e !important;
}

.btn-primary:focus {
  box-shadow: 0 0 0.25rem #64bc3c7e !important;
}

.form-control:focus {
  box-shadow: 0 0 0.25rem #64bc3c7e !important;
}

.form-check-input:checked {
  background-color: #64BC3C !important;
  border-color: #64BC3C !important;
}

.form-check-input:focus {
  border-color: #59a735 !important;
}

.form-check-input:focus {
  box-shadow: 0 0 0 0.25rem #59a73536 !important;
}

.nav-link {
  color: #64BC3C !important;
}

.nav-link:hover {
  color: #59a735 !important;
}

.btn-outline-secondary:hover {
  color: #fff !important;
  background-color: #59a735;
  border-color: #59a735;
}

.loginbtns {
  color: rgba(255, 255, 255, 0.5) !important;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: #f8f9fa !important;
}

.table-hover tbody tr:hover {
  background-color: #bfcbce !important;
  color: #fff;
}

.btn-primary {
  color: #fff !important;
  background-color: #64BC3C !important;
  border-color: #64BC3C !important;
}

.card-header {
  background-color: #64BC3C !important;
  border-color: #64BC3C !important;
}

.card {
  border-color: #64BC3C !important;
}

textarea:focus {
  border-color: #59a735 !important
}

a {
  color: #64BC3C !important;
  text-decoration: none !important;
}

.navbar-brand {
  color: #fff !important;
}

.btn-outline-secondary {
  color: #64BC3C;
  border-color: #64BC3C !important;
}

.form-control:focus {
  border-color: #59a735 !important
}

.btn-outline-primary {
  color: #64BC3C;
  border-color: #64BC3C;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #59a735;
  border-color: #59a735;
}

.text-primary {
  color: #64BC3C !important;
}

.bg-primary {
  background-color: #64BC3C !important;
}

.page-link {
  color: #64BC3C;
}

.my-th {
  color: #64BC3C;
  font-weight: bold;
}

th {
  background-color: #504E50 !important;
  vertical-align: middle !important;
}

.btn-check:focus+.btn, .btn:focus {
  box-shadow: 0 0 0.25rem #64bc3c7e !important;
}

.header {
  position: sticky;
  top:1px;
}

.form-signin {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

#payMonthly:hover,
#payYearly:hover {
  color: white !important;
}


/* MODAL */

/* The Modal (background) */

.mymodal,
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
  }
  
  /* Modal Content */
  .my-modal-content,
  .modal-content {
    background-color: white;
    margin: auto;
    padding: 2rem 3rem;
    border: 1px solid #888;
    width: 60%;
    text-align: center;
  }

  @media (max-width: 575px) {

    .modal-content {
      width: 90%;
    }

    #schedule-a-demo-btn {
      margin-left: auto !important;
      margin-right: auto !important;
    }

  }
  
  /* The Close Button */
  .close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    margin-left: auto;
  }
  
  .close:hover,
  .close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
  }

  .my-modalheader,
  .modalheader {
    color: #111e47;
    font-size: 1.5rem;
    font-weight: bold;
    padding-bottom: 2rem;
}

.savebutton {
    display: block;
    padding: 1rem 2rem;
    border: none;
    margin-top: 2rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
}

  /*************** LOADER ****************/
  .lds-default {
    display: none;
    position: fixed;
    width: 80px;
    height: 80px;
    z-index: 10;
    left: calc(50% - 40px);
    top: 20%;
  }
  .lds-default div {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #111e47;
    border-radius: 50%;
    animation: lds-default 1.2s linear infinite;
  }
  .lds-default div:nth-child(1) {
    animation-delay: 0s;
    top: 37px;
    left: 66px;
  }
  .lds-default div:nth-child(2) {
    animation-delay: -0.1s;
    top: 22px;
    left: 62px;
  }
  .lds-default div:nth-child(3) {
    animation-delay: -0.2s;
    top: 11px;
    left: 52px;
  }
  .lds-default div:nth-child(4) {
    animation-delay: -0.3s;
    top: 7px;
    left: 37px;
  }
  .lds-default div:nth-child(5) {
    animation-delay: -0.4s;
    top: 11px;
    left: 22px;
  }
  .lds-default div:nth-child(6) {
    animation-delay: -0.5s;
    top: 22px;
    left: 11px;
  }
  .lds-default div:nth-child(7) {
    animation-delay: -0.6s;
    top: 37px;
    left: 7px;
  }
  .lds-default div:nth-child(8) {
    animation-delay: -0.7s;
    top: 52px;
    left: 11px;
  }
  .lds-default div:nth-child(9) {
    animation-delay: -0.8s;
    top: 62px;
    left: 22px;
  }
  .lds-default div:nth-child(10) {
    animation-delay: -0.9s;
    top: 66px;
    left: 37px;
  }
  .lds-default div:nth-child(11) {
    animation-delay: -1s;
    top: 62px;
    left: 52px;
  }
  .lds-default div:nth-child(12) {
    animation-delay: -1.1s;
    top: 52px;
    left: 62px;
  }
  @keyframes lds-default {
    0%, 20%, 80%, 100% {
      transform: scale(1);
    }
    50% {
      transform: scale(1.5);
    }
  }

/************************************/
.add-client-btn {
  margin-left: auto;
}

.add-client-btn:hover {
  cursor: pointer;
}

#add_additional_closing_cost:hover {
  cursor: pointer;
  opacity: .9;
}

#add_additional_credit1:hover {
  cursor: pointer;
  opacity: .9;
}

#add_additional_credit2:hover {
  cursor: pointer;
  opacity: .9;
}

.faqIcon:hover {
  cursor: pointer;
}

#apply_coupon_btn {
  color: #64BC3C !important;
  border: none;
  background: none;
}

#apply_coupon_btn:hover {
  cursor: pointer;
}