body * {
    font-family: "Lato",Helvetica,Arial,Lucida,sans-serif;
}

body {
    padding-bottom: 30px;
}

.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 28px;
    color: #00205c;
    background-color: white;
}
.footer .container .legal {
    margin-top: .25rem;
    font-size: 80%;
    font-weight: 400;
}

/* Override the default bootstrap behavior where horizontal description lists
   will truncate terms that are too long to fit in the left column
*/
.dl-horizontal dt {
    white-space: normal;
}

.bg-primary {
    background-color: #00205c !important;
}

.navbar-dark .navbar-nav .nav-link {
    color: white;
}

#logged-in-user {
    padding-right: 0.5rem;
}

h1 {
    font-weight: 800;
    font-size: 100px;
    color: #00205c;
    line-height: 1em;
}

h2 {
    font-weight: 800;
    font-size: 55px;
    color: #00205c;
    line-height: 1.1em;
}

h3 {
    font-weight: 300;
    font-size: 32px;
    color: #4a4f55;
    line-height: 1.3em;
}

h4 {
    font-weight: 300;
    font-size: 28px;
    color: #4a4f55;
    line-height: 1.3em;
}

h5 {
    font-weight: 300;
    font-size: 25px;
    color: #4a4f55;
    line-height: 1.3em;
}

h6 {
    font-weight: 300;
    font-size: 23px;
    color: #4a4f55;
    line-height: 1.3em;
}

p {
    font-weight: 200;
    font-size: 20px;
    line-height: 1.6em;
    /*color: #4a4f55;*/
}

.alert p:last-child {
    margin-bottom: 0px;
}

.div p:last-child {
    margin-bottom: 0px;
}

p.no-margin-bottom {
    margin-bottom: 0px;
}

#powershell-device-flow-instructions,
#device-flow-instructions {
    font-weight: 600 !important;
}

.bolder {
    font-weight: 600 !important;
}

.accent-color {
    color: #e11983;
}

.bg-pink {
    background-color: #e11983;
}

.license-key-table td {
    vertical-align: top;
    padding: 10px 10px 0px 0px;
}

#details-invoices-table td {
    vertical-align: top;
    padding: 10px 10px 0px 0px;
}

.modal.fade {
    background: rgba(0,0,0,0.5);
}

.modal-backdrop.show {
    opacity: 0; /* above fade handles the faded background */
}

#details-modal-refresh-link {
    position: absolute;
    right: 50px;
}

/*
.alert-primary {
    color: #00205c;
    background-color: #99C7ff;
}
*/

/* Need active, hover, disabled variants */
/*
.btn-primary {
    border-color: #e01883;
    background-color: #e01883;
}
*/

.btn-accent{
    color:#fff;
    background-color:#e01883;
    border-color:#e01883
}
.btn-accent:hover{
    color:#fff;
    background-color:#bd146f;
    border-color:#b21368
}
.btn-accent:focus, .btn-primary.focus {
    box-shadow:0 0 0 .2rem rgba(229,59,150,0.5)
}
.btn-accent.disabled, .btn-primary:disabled {
    color:#fff;
    background-color:#e01883;
    border-color:#e01883
}
.btn-accent:not(:disabled):not(.disabled):active, .btn-accent:not(:disabled):not(.disabled).active, .show>.btn-accent.dropdown-toggle {
    color:#fff;
    background-color:#b21368;
    border-color:#a61261
}
.btn-accent:not(:disabled):not(.disabled):active:focus, .btn-accent:not(:disabled):not(.disabled).active:focus, .show>.btn-accent.dropdown-toggle:focus {
    box-shadow:0 0 0 .2rem rgba(229,59,150,0.5)
}


.faq {
    outline: none;
}

.popover {
   min-width: 300px;
}

@media (min-width : 768px) {
   .medium-popover {
      min-width: 400px;
   }
   .wide-popover {
      min-width: 500px;
   }
}

.text-underlined {
    text-decoration: underline;
}
.not-bold {
    font-weight: normal;
}


/*
Styles for the 2nd level nav bar showing the progress through multiple phases.
*/

.license-flow-phases {
  overflow: hidden;
  margin-bottom: 0;
  margin-left: -40px; /* override default browser padding on ul */
}
.license-flow-phases p {
  color: rgba(255,255,255,.5);
  text-decoration: none;
}
.license-flow-phases .current p {
    color: white;
}
.license-flow-phases p {
  display: block;
  font-size: 1em;
  font-weight: bold;
  line-height: inhert;
  margin-bottom: 0;
  line-height: 22pt;
}
.license-flow-phases li {
  float: left;
  margin-left: 0;
  width: 33%; /* 3 steps so make even */
  text-align: center;
  list-style-type: none;
  padding: 5px 5px 5px 30px; /* padding around text, last should include arrow width */
  border-right: 3px solid white;
  /* width: gap between arrows, color: background of document */
  position: relative;
}
/* remove extra padding on the first object since it doesn't have an arrow to the left */
.license-flow-phases li:first-child {
  padding-left: 5px;
}
/* remove border on the last object since it doesn't have an arrow to the right */
.license-flow-phases li:last-child {
  border-right: 0px;
}

/* white arrow to the left to "erase" background (starting from the 2nd object) */
.license-flow-phases li:nth-child(n+2)::before {
  position: absolute;
  top:0;
  left:0;
  display: block;
  border-left: 15px solid white;
  /* width: arrow width, color: background of document */
  border-top: 20px solid transparent;
  /* width: half height */
  border-bottom: 20px solid transparent;
  /* width: half height */
  width: 0;
  height: 0;
  content: " ";
}

/* colored arrow to the right */
.license-flow-phases li::after {
     z-index: 1; /* need to bring this above the next item */
     position: absolute;
     top: 0;
     right: -15px; /* arrow width (negated) */
     display: block;
     border-left: 15px solid #333;
     /* width: arrow width */
     border-top: 20px solid transparent;
     /* width: half height */
     border-bottom: 20px solid transparent;
     /* width: half height */
     width:0;
     height:0;
     content: " ";
}

/* make last arrow blend into background */
.license-flow-phases li:last-child::after {
    background-color: #ea5ea8; /*#e11983;*/
}

.license-flow-phases li.current:last-child::after {
    background-color: #e11983;
}

 /* Setup colors (both the background and the arrow) */

 /* Completed */
.license-flow-phases li { background-color: #b41469; }
.license-flow-phases li::after { border-left-color: #b41469; }

 /* Current */
.license-flow-phases li.current { background-color: #e11983;}
.license-flow-phases li.current::after { border-left-color: #e11983; }

 /* Following */
.license-flow-phases li.current ~ li { background-color: #ea5ea8; }
.license-flow-phases li.current ~ li::after { border-left-color: #ea5ea8; }

.badge-accent {
    color: #fff;
    background-color: #e01883;
}

.noselect {
    user-select: none;
}

.collapsing {
  transition: none !important;
}

#new-app-bar {
    height: 35px;
    background-color: #e11983;
    padding-left: 16px;
    padding-right: 22px;
}
#new-app-bar #new-app-bar-inner {
    margin:0;
    padding:0;
    vertical-align: middle;
    color: white;
    line-height: 35px;
    text-align: left;
}

#new-app-bar #new-app-bar-left {
    display: inline-block;
}

#new-app-bar #new-app-bar-right {
    display: inline-block;
    float: right;
}

#new-app-link {
    color: inherit;
}