

.company-logo {
  max-width: 200px;
  max-height: 70px;
}

.top-bar {
    background-color: var(--bs-primary);
    width: 100%;
    height: 20px;
}

.policy-tab p {
  margin: 0;
  padding: 0;
}

.container {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.meaty-sauce .list-group-item {
  margin-bottom: 10px;
  background-color: var(--bs-primary);
  color: var(--bs-body-bg);
}

body {
  background: var(--bs-secondary);
}

.container {
  margin-top: 20px;
  background: var(--bs-light);
}

.policy_accordian-item .card-header {
  background-color: inherit;
  border: none;
}

footer div.container {
  background: var(--bs-secondary);
}

div.portalpage-header {
    background-color: var(--bs-primary);
}

/*Public Pages*/
.public-body {
    background-color: #eeeded;
}

#public-card {
    max-width: 350px;
    width: 350px;
    min-width: 350px;
}




/* Login Page */
/*.login-page .container {
    background: transparent;
}

.login-page .container form {
  margin: 0 auto;
}

.login-page .form-control {
  margin: 20px;
  background-color: #ffffff;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.6);
  width: 400px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  padding: 25px;
  border-radius: 8px;
}

.login-page .title {
  font-size: 28px;
  font-weight: 800;
}

.login-page .input-field {
  position: relative;
  width: 100%;
}

.login-page .input {
  margin-top: 15px;
  width: 100%;
  outline: none;
  border-radius: 8px;
  height: 45px;
  border: 1.5px solid #ecedec;
  background: transparent;
  padding-left: 10px;
}

.login-page .input:focus {
  border: 1.5px solid #2d79f3;
}

.login-page .input-field .label {
  position: absolute;
  top: 25px;
  left: 15px;
  color: #ccc;
  transition: all 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.login-page .input-field .input:focus ~ .label, .login-page .input-field .input:valid ~ .label {
  top: 5px;
  left: 5px;
  font-size: 12px;
  color: #2d79f3;
  background-color: #ffffff;
  padding-left: 5px;
  padding-right: 5px;
}

.login-page .submit-btn {
  margin-top: 30px;
  height: 55px;
  background: #f2f2f2;
  border-radius: 11px;
  border: 0;
  outline: none;
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  background: #0d6efd;
  box-shadow: 0px 0px 0px 0px #ffffff, 0px 0px 0px 0px #000000;
  transition: all 0.3s cubic-bezier(0.15, 0.83, 0.66, 1);
  cursor: pointer;
}

.login-page .submit-btn:hover {
  box-shadow: 0px 0px 0px 2px #ffffff, 0px 0px 0px 4px #0000003a;
}
*/
/* Form Components */

.toggle-checkbox {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}

.toggle-switch {
  background-color: gray;
  width: 58px;
  height: 22px;
  border-radius: 16px;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}

.toggle-switch::before {
  content: "";
  font-weight: 900;
  background-color: white;
  width: 14px;
  height: 14px;
  position: absolute;
  border-radius: 50%;
  top: 4px;
  left: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ddd;
  transition: 0.3s;
}

.toggle-checkbox:checked + .toggle-switch {
  background-color: #0075ff;
}

.toggle-checkbox:checked + .toggle-switch::before {
  content: "";
  left: 40px;
  color: #0075ff;
}

.extra-space {
  padding-top: 32px;
}

.hidden-form {
  border-radius: 10px;
  padding: 10px;
  margin-left: 0px;
  margin-right: 0px;
  margin-top: 20px;
  background-color: #d6e7ff;
}

/* Main Tabs */

.tab-pane {
  margin-top: 25px;
  padding-bottom: 15px;
}

.breadcrumb {
  padding-top: 15px;
}

/* Cards */

.card-head {
  background-color: #d6e7ff;
}

.background-gray {
  --bg-color: #DCE9FF;
  --bg-color-light: #f1f7ff;
  --text-color-hover: #4C5656;
  --box-shadow-color: rgba(220, 233, 255, 0.48);
}

.card-cta {
  width: 220px;
  height: 321px;
  background: #fff;
  border-top-right-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 14px 26px rgba(0,0,0,0.04);
  transition: all 0.3s ease-out;
  text-decoration: none;
  margin: 0 auto;
}

.card-cta:hover {
  transform: translateY(-5px) scale(1.005) translateZ(0);
  box-shadow: 0 24px 36px rgba(0,0,0,0.11), 0 24px 46px var(--box-shadow-color);
}

.card-cta:hover .overlay {
  transform: scale(4) translateZ(0);
}

.card-cta:hover .overlay-extra {
  transform: scale(4.5) translateZ(0);
}

.card-cta:hover .circle {
  border-color: var(--bg-color-light);
  background: var(--bg-color);
}

.card-cta:hover .circle:after {
  background: var(--bg-color-light);
}

.card-cta:hover p {
  color: var(--text-color-hover);
}

.card-cta:active {
  transform: scale(1) translateZ(0);
  box-shadow: 0 15px 24px rgba(0,0,0,0.11), 0 15px 24px var(--box-shadow-color);
}

.card-cta p {
  font-size: 17px;
  color: #4C5656;
  margin-top: 30px;
  z-index: 1000;
  transition: color 0.3s ease-out;
  text-align: center;
}

.circle {
  width: 131px;
  height: 131px;
  border-radius: 50%;
  background: #fff;
  border: 3px solid var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease-out;
}

.circle:after {
  content: "";
  width: 118px;
  height: 118px;
  display: block;
  position: absolute;
  background: var(--bg-color);
  border-radius: 50%;
  transition: opacity 0.3s ease-out;
}

.circle svg {
  z-index: 10000;
  transform: translateZ(0);
  width: 50%;
  fill: #0d6efd;
}

.overlay {
  width: 118px;
  position: absolute;
  height: 118px;
  border-radius: 50%;
  background: var(--bg-color);
  top: 70px;
  left: 50px;
  z-index: 0;
  transition: transform 0.3s ease-out;
}

.overlay-extra {
  width: 118px;
  position: absolute;
  height: 118px;
  border-radius: 50%;
  background: var(--bg-color);
  top: 50px;
  left: 50px;
  z-index: 0;
  transition: transform 0.3s ease-out;
}

@media (min-width: 600px) {
    #public-card {
        max-width: 550px;
        width: 550px;
        min-width: 550px;
    }
}

