/*
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video, button {
  font-size:14px;
  color:red;
}
*/

* {
  font-size:14px;
}

@media (min-width:576px) {

  /*
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed, 
  figure, figcaption, footer, header, hgroup, 
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video, button {
    font-size:16px;
    color:darkgreen;
  }
  */

  * {
    font-size:16px;
  }

}

/* ========================================= */
/* MISCELLANEOUS ITEMS */
/* ========================================= */

html {
  height:101%;
}

.wrapper {
  margin: 6.0rem auto;
  width:100%;
  max-width:900px;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h1 { 
  font-size:1.8rem;
  margin-top:0.5rem;
  padding-bottom:1.0rem;
  margin-bottom:1.0rem;
  color:#252525;
  font-weight:300;
}

h1.page-title { 
  border-bottom:1px solid #999999;
}

h3 { 
  font-size:1.4rem;
  margin-top:0.5rem;
  margin-bottom:1.0rem;
  color:#252525;
}

a {
  text-decoration: none;
  color:blue;
  cursor: pointer;
}

p {
  margin-bottom:1rem;
}

hr {
  border-top: 1px solid #999999;
  margin:0px 0px 20px 0px;
}

.small-text {
  font-size:0.9rem;
}

.warning-text {
  color:maroon;
}

.link-text {
  color:blue !important;
  cursor:pointer;
}

.preloader {
  display:none;
  margin:100px 0px 0px 50px;
  font-weight:bold;
}

/* ========================================= */
/* TWO TYPES OF PROGRESS BARS */
/* ========================================= */

.payment-steps {
  margin-bottom:1.5rem;
}

.payment-steps .spacer {
  margin:0px 5px 0px 5px;
}

.payment-steps .current {
  font-weight: bold;
  color:#000000;
}

.progress-bars {
  display:none;
  margin-bottom:2rem;
}

.progress-bars .col {
  border-bottom: 5px solid #dddddd;
}

.progress-bars .col.current {
  /* border-color:#18426e; */
  border-color:green;
}

.progress-bars > .row div:nth-child(1),
.progress-bars > .row div:nth-child(2) {
  margin-right: 10px;
}

@media (min-width: 768px) {
  .payment-steps {
    display:none;
  }
  .progress-bars {
    display:block;
  }
}

/* ========================================= */
/* Gutters for grids */
/* ========================================= */

.gutter-10>div {
  padding: 0px 0px 10px 0px;
}

@media (min-width: 768px) {
  .gutter-10 div:nth-child(odd) {
    padding-right: 5px;
  }
  .gutter-10 div:nth-child(even) {
    padding-left: 5px;
  }
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.buttons-block {
  padding-top:1.5rem;
  margin:1rem 0px 1rem 0px;
  border-top:1px solid #666666;
}

.btn {
  cursor:pointer;
  font-weight: normal;
  font-size:1rem;
}

.btn:disabled {
  cursor:none;
}

.btn-lg {
  padding:1rem 1.8rem;
}

.btn-warning {
  color:#000000;
  background-color:gold;
}

.buttons.call-customer-service {
  text-align: center;
}

.btn-print-receipt {
  display:none;
}

.btn[disabled] {
  color:#dddddd;
  background-color:#999999;;
  border-color:#999999;
}

/* ========================================= */
/* INPUTS */
/* ========================================= */

input[type="text"],
input[type="number"],
input[type="password"],
input[type="date"],
select {
  font-size:16px;
  padding:2px 4px 2px 4px;
  border-radius: 5px;
  border:1px solid #cccccc;
  background-color:#ffffff;
}

input[type="text"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
select:focus {
  -webkit-box-shadow: 0px 0px 1px 2px lightblue;
          box-shadow: 0px 0px 1px 2px lightblue;
  border-color:lightblue;
}

input[type="text"]:disabled,
input[type="number"]:disabled,
input[type="date"]:focus,
input[type="password"]:disabled,
select:disabled {
  color:#222222;
  /* border:none; */
  background-color: #eeeeee;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance:textfield;
}

.currency {
  width:100px;
  text-align:right;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */

@media (min-width: 576px) {
  .wrapper {
    width:95%
  }
}

@media (min-width: 500px) {
  .buttons.call-customer-service {
    display:none;
  }
}

@media (min-width: 992px) {
  .btn-print-receipt {
    display:inline-block;
  }
}

@media screen and (min-width:600px) {
  h1 { 
    font-size: 2.0rem;
  }
}

/*
@media screen and (min-width:576px) {
  body { background-color:yellow;}
}
@media screen and (min-width:768px) {
  body { background-color:lime;}
}
@media screen and (min-width:992px) {
  body { background-color:pink;}
}
@media screen and (min-width:1200px) {
  body { background-color:chartreuse;}
}
*/

/* ========================================= */
/* NAVBAR */
/* ========================================= */

.navbar a {
  font-size: 1rem;
  color: white !important;
}

.navbar .brand-logo {
  height:40px;
}

.navbar .navbar-icon {
  color:#ffffff;
  height:1rem;
  margin-right:6px;
}

.navbar .demo {
  margin-left:10px;
  font-size:0.9rem;
  color:gold;
  font-weight:bold;
  padding:5px 8px 5px 8px;
  text-transform: uppercase;
}

.navbar .navbar-icon.highlight {
  color:#ffcc00;
}

.custom-toggler.navbar-toggler {
  border-color: white;
}

.custom-toggler .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255,255,255, 1.0)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
}

.navbar .dropdown-menu {
  background-color: #555555;
}

.navbar .dropdown.show a {
  background-color: #555555;
}

/* WHITE ON BLUE BACKGROUND */

.navbar-mls-blue {
  background-color: #18426e;
  -webkit-box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.5);
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.5);
}

.navbar-mls-blue .navbar-brand,
.navbar-mls-blue .navbar-text {
  color: #ffffff;
}

.navbar-mls-blue .navbar-nav .nav-link {
  color: #ffffff;
  padding-top:15px;
  padding-bottom:15px;
}

.navbar-mls-blue .nav-item.active .nav-link,
.navbar-mls-blue .nav-item:focus .nav-link,
.navbar-mls-blue .nav-item:hover .nav-link {
  color: #ffffff;
}

@media (min-width: 768px) {
  .navbar-mls-blue .navbar-nav .nav-link {
    padding-top:8px;
    padding-bottom:8px;
  }  
}

/* BREAK POINTS
col-sm for larger mobile phones (devices with resolutions ≥ 576px);
col-md for tablets (≥768px);
col-lg for laptops (≥992px);
col-xl for desktops (≥1200px)
*/

/* COLORS
BS Primary    #007BFF ... could be overridden #0568AE from ATT
BS Secondary  #6C757D
BS Success    #28A745
BS Info       #17A2B8
BS Warning    #FFD700 ... overriding with 'gold'
BS Danger     #DC3545
BS Light      #F8F9FA
BS Dark       #343A40
MLS Blue      #18426e ... rgb(24, 66, 110)
*/