/*
 * -- BASE STYLES --
 */

 body {
  color: black;
 }

:root {
  --midnight-steel: #231F20;
  --flame-red: #C43C31;
  --sky-blue: #4C98D3;
  --steel-grey: #BDBDBD;
  --rusic-red: #7D261F;
  --flat-iron: #E29E98;
  --deep-ocean-blue: #2F6086;
  --clear-sky-blue: #A6CCE9;
  --midnight-blue: #19488D;
  --horizon-blue: #CCDEEA;
  --desert-sand: #ECE7DC;
  --cobalt-blue: #2365C6;
  --steel-blue: #729EBB;
  --stone: #BBB19B;
}

.center-text-vertical {
  display: flex; 
  align-items: center;
}

/*
 * -- FONT STYLES --
 */

 h1 {
  font-family: "Lato", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: black;
}

h2 {
  font-family: "Cabin", sans-serif;
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-family: "Cabin", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: black;
}

h4 {
  font-family: "Lato", sans-serif;
  font-size: 18px;
  font-weight: 600;
}

h5,
h6 {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}

p,
span,
label,
select,
li {
  font-family: "Cabin", sans-serif;
  font-size: 16px;
  font-weight: 400;
}

.bi-check {
  font-size: larger;
  color: var(--cobalt-blue);
  margin-right: .2rem;
}

.text-muted {
  --bs-text-opacity: .25;
  color: var(--steel-grey) !important;
}

ul, li {
  margin: 0;
  padding: 0;
  display: inherit;
}

button,
a.btn,
a[role="button" i] {
  background-color: var(--deep-ocean-blue);
  color: white;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-style: none;
  border-radius: 10px;
  padding: 5px 10px;
}

a.btn:hover {
 background-color: var(--deep-ocean-blue);
 color: white;
}

a {
  text-decoration: none;
  color: var(--deep-ocean-blue);
  display: inline-block;
}

#underwriting-details .button-underwriting {
  background-color: var(--stone);
  color: white;
}

#cancellation-actions .button-cancel {
  background-color: var(--flame-red);
}

.button-error,
.button-cancel {
  background-color: var(--flame-red);
}

.button-edit {
  background-color: var(--steel-blue);
}

.button-warning {
  color: white;
  background: rgb(232, 116, 8);
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-style: none;
  border-radius: 10px;
  padding: 5px 10px;
}

.release-button {
  margin-left: 4em;
}

#flash {
  position: relative;
  text-align: center;
  top: 2.5rem;
  color: var(--flame-red);
}

/*
 * -- TABLIST STYLES --
 */

 .nav {
  --bs-nav-link-color: white;
  --bs-nav-link-hover-color: black;
}

.nav-tabs .nav-link {
  border: var(--bs-nav-tabs-border-width) solid var(--rusic-red);
}

.nav-tabs {
  --bs-nav-tabs-link-active-color: white;
  --bs-nav-tabs-link-active-bg: var(--rusic-red);
}

.nav-item button {
  border-radius: 0%;
}

.nav-link {
  color: black;
  background: white;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
}

/*
 * -- NEW PROSPECT FORM STYLES --
 */

 .new-prospect-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 3em;
  background-color: var(--horizon-blue);
  border-bottom-right-radius: 20px;
 }

.new-prospect-input label {
  text-align: left;
  flex-grow: 1;
}

.form-control,
.new-prospect-input select {
  border-radius: 5px;
  border: 1px solid var(--deep-ocean-blue);
}

input:focus,
select:focus {
  outline: none !important;
  border:1px solid var(--clear-sky-blue);;
  box-shadow: 0 0 10px #719ECE;
}

.new-prospect-input select {
  padding: 5px;
  overflow-y: scroll;
}

/*
 * -- EDIT PROSPECT & POLICY MODALS --
 */

.modal-dialog {
  max-width: 75%;
}

.bi-x-circle {
  color: var(--stone);
}

.edit-prospect-form,
.edit-policy-form {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--horizon-blue);
  border-bottom-right-radius: 20px;
}

/*
 * -- TABLE STYLES --
 */

.table>tbody {
  vertical-align: middle;
}

.table>:not(caption)>*>* {
  padding: .5rem 3rem;
}

.invoice-table>:not(caption)>*>* {
  padding: .5rem .5rem;
}

.button-warning {
  color: white;
  background: rgb(232, 116, 8);
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  border-style: none;
  border-radius: 10px;
  padding: 5px 10px;
}

.search-bar {
  width: 40%;
}

input[type="checkbox" i]:checked {
  background-color: var(--deep-ocean-blue);
}