/* *** WARNING: This file must be edited from within the Content Manager. Any edits made via other means may be overwritten. *** */

		.myFooter {
  font-size: .8rem;
}

a.myFooter {
  color: #ffffff;
  font-size: .8rem;
  text-decoration: underline;
}

a.myFooter:hover {
  color: #dba725 !important;
  font-size: .8rem;
}

#i4w5vw a {
  color: #ffffff !important;
  font-family: OpenSans, sans-serif !important;
}

#i4w5vw h3 {
  color: #ffffff !important;
  font-family: OpenSans, sans-serif !important;
}

.noSpace {
  margin: 0px;
  padding: 0px;
}

.textIndent {
  margin-left: 20px;
  padding-left: 20px;
}

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

.right-align {
  text-align: right;
}

.med-headshot {
  width: 250px;
}

.smaller-margins {
  margin: 0px !important;
  padding: 0px !important;
}

.hideMe {
  display: none;
}

.spacer {
  height: 50px;
}

.spacer25 {
  height: 25px;
}

.spacer15 {
  height: 15px;
}

.bottom-border {
  border-bottom: 2px solid black !important;
}

.full-border {
  border: 1px solid gray;
}

.fullThinBorderBlack {
  border: 1px solid black;
}

.fullThickBorderBlack {
  border: 5px solid black;
}

.border-no-top {
  border-right: 5px solid blue;
  border-bottom: 5px solid blue;
  border-left: 5px solid blue;
}

.border-no-right {
  border-bottom: 5px solid blue;
  border-left: 5px solid blue;
  border-top: 5px solid blue;
}

.border-no-bottom {
  border-right: 5px solid blue;
  border-left: 5px solid blue;
  border-top: 5px solid blue;
}

.border-no-left {
  border-right: 5px solid blue;
  border-bottom: 5px solid blue;
  border-top: 5px solid blue;
}

/* .rmfwAccordion {
  background-color: #eee;
  color: #444;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

.active, .rmfwAccordion:hover {
  background-color: #ccc;
}

.rmfwPanel {
  padding: 0 18px;
  background-color: white;
  display: none;
  overflow: hidden;
}
*/

.infobox-container {
    display: flex; /* Use flexbox for layout */
    align-items: center; /* Vertically center the icon and text */
    padding: 15px;
    border: 1px solid #2296f3;
    border-radius: 15px;
    background-color: #e3f2fd;
    margin: 20px;
}

.icon-section {
    margin-right: 15px;
    /* Style the icon itself */
    font-size: 2em; /* Adjust size using font-size */
    color: #2296f3; /* Adjust color using color property */
}

.content-section {
    flex-grow: 1; /* Allows content to take up the remaining space */
}

.content-section strong {
    display: block; /* Makes the title appear on its own line */
    margin-bottom: 5px;
}

hr.myFooter {
  border: none;
  background-color: #95a5a6;
  width: 40px;
  height: 2px;
}

.small-note {
  font-size: 1em !important;
}

.proposalH3 {
  font-size: 1.4em !important;
  color: #0000ff;
}

.rmfwUL {
  line-height: .75em !important;
}

.pricingTable {
  margin-left: auto;
  margin-right: auto;
  background-color: #fff !important;
}

.pricingTable tr {
  background-color: #fff !important;
}

.pricingTable td {
  background-color: #fff !important;;
}

/* divTableMenu Mobile First: Default to Stacked */
.divTableMenu {
    display: flex;
    flex-direction: column;
}
.divTableMenuRow {
    display: flex;
    flex-wrap: wrap; /* Allow cells to wrap */
    flex-direction: row; /* Always horizontal */
}
.divTableMenuCell, .divTableMenuHead {
    display: flex;
    padding: 3px;
    justify-content: space-between;
    width: 50%; /* 2 cells per row on mobile */
    box-sizing: border-box;
}
/*.divTableMenuHeading {
	background-color: #EEE;
	display: table-header-group;
	font-weight: bold;
}
.divTableMenuFoot {
	background-color: #EEE;
	display: table-footer-group;
	font-weight: bold;
}
.divTableMenuBody {
	display: table-row-group;
} */

/* Tablet View */
@media (min-width: 768px) {
    .divTableMenuCell, .divTableMenuHead {
        width: 33.33%; /* 3 cells per row on mobile */
    }
    .divTableMenuHeading {
        display: flex;
    }
}
/* Desktop View */
@media (min-width: 1187px) {
    .divTableMenuCell, .divTableMenuHead {
        flex: 1; /* Equal width cells (6 per row) */
    }
    .divTableMenuHeading {
        display: flex;
    }
}

/* End divTableMenu */