:root {
  --text: #61666c;
  --frame-border: #1f366c;
  --line: #8ea8d8;
  --field-border: #ced4da;
  --field-error: #dc3545;
  --field-text: #495057;
  --link: #336699;
  --background-blue: rgb(15, 43, 79);
  --background-blue-hover: rgb(18, 52, 95);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "proxima-nova";
  font-size: 16px;
  color: var(--text);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.page-wrap {
  margin: auto;
  width: 100%;
  /* border-top: 1px solid #2e3a22;
  border-bottom: 1px solid var(--line); */
}

.contact-shell {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.page-title-bar {
  text-align: center;
  margin: 0 0 8px;
}

.page-title-bar h2 {
  margin: 0;
  font-size: 36.8px;
  line-height: 44.16px;
  font-weight: 500;
  color: var(--text);
}

.form-frame {
  border: 1px solid var(--frame-border);
  border-radius: 5px;
  padding: 30px;
}

.form-row {
  margin-bottom: 8px;
}

.form-row label {
  display: block;
  margin: 0 0 8px;
  font-size: 14.4px;
  line-height: 21.6px;
  color: var(--text);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--field-border);
  border-radius: 4px;
  background: #fff;
  color: var(--field-text);
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  padding: 6px 12px;
}

.form-row input,
.form-row select {
  height: 38px;
}

.form-row textarea {
  min-height: 134px;
  resize: vertical;
}

.form-row input.field-error,
.form-row select.field-error,
.form-row textarea.field-error {
  border-color: var(--field-error);
  color: var(--field-error);
}

.field-error-message {
  margin: 4px 0 0;
  color: var(--field-error);
  font-size: 14px;
  line-height: 20px;
}

.alert {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
  padding: 12px 16px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14.4px;
  line-height: 21.6px;
}

.alert-success {
  color: #0f5132;
  background-color: #d1e7dd;
  border-color: #badbcc;
}

.alert-danger {
  color: #842029;
  background-color: #f8d7da;
  border-color: #f5c2c7;
}

.alert-close {
  appearance: none;
  border: none;
  background: none;
  color: inherit;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  cursor: pointer;
}

.form-footer {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.form-footer p {
  margin: 0;
  font-size: 14.4px;
  line-height: 21.6px;
  color: var(--text);
  text-align: center;
  width: 100%;
  display: block;
}

.form-footer a {
  color: var(--link);
}

.form-footer button {
  margin-left: auto;
}

.button {
  appearance: none;
  border: 1px solid #ccc;
  border-radius: 5px;
  background: var(--background-blue);
  color: #fff;
  font-family: inherit;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  padding: 10px;
  height: 46px;
  min-width: 70px;
  cursor: pointer;
}

.button:hover {
  background: var(--background-blue-hover);
}

@media (max-width: 767.98px) {
  .contact-shell {
    padding: 36px 12px;
  }

  .page-title-bar h2 {
    font-size: 32px;
    line-height: 1.2;
  }

  .form-frame {
    padding: 20px;
  }

  .form-footer {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}

.community-footer {
  padding: 2.125rem 1.875rem 2.625rem;
}
@media (max-width: 768px) {
  .community-footer {
    padding: 1.875rem 0.9375rem;
  }
}
@media (max-width: 576px) {
  /* .community-footer .container {
    padding: 0;
  } */
}

.community-footer .footer-links ul {
  list-style-type: none;
}
@media (max-width: 768px) {
  .community-footer .footer-links ul {
    text-align: left;
    column-count: 2;
  }
}

.community-footer .footer-links ul li {
  display: inline-flex;
  align-items: center;
  vertical-align: middle;
}
@media (max-width: 576px) {
  .community-footer .footer-links ul li {
    width: 100%;
    line-height: 1.08;
  }
}
@media (max-width: 768px) {
  .community-footer .footer-links ul li {
    display: block;
    margin-bottom: 0.3125rem;
    min-height: 24px;
  }
}

.community-footer .footer-links ul li a,
.community-footer .footer-links ul li div {
  font-size: 1rem;
  line-height: 2.3125rem;
}
@media (max-width: 768px) {
  .community-footer .footer-links ul li a,
  .community-footer .footer-links ul li div {
    font-size: 0.75rem;
    line-height: 1.08;
    font-weight: normal;
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
  }
}

.community-footer .footer-links.locations {
  padding: 0 1.875rem 1.4375rem;
}
.community-footer .footer-links.locations ul {
  text-align: center;
}
@media (max-width: 768px) {
  .community-footer .footer-links.locations {
    padding: 0;
  }
  .community-footer .footer-links.locations ul {
    text-align: left;
    padding-bottom: 0.9375rem;
  }
}

.community-footer .footer-links.inner-pages {
  padding: 1.375rem 0;
}
@media (max-width: 768px) {
  .community-footer .footer-links.inner-pages {
    padding: 0;
  }
}
@media (max-width: 992px) {
  .community-footer .footer-links.inner-pages ul {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .community-footer .footer-links.inner-pages ul {
    text-align: left;
    padding: 1.25rem 0 0.9375rem;
  }
}

.community-footer .footer-links.inner-pages ul li a,
.community-footer .footer-links.inner-pages ul li div {
  text-transform: uppercase;
}

.community-footer .footer-links.inner-pages ul li .your-privacy-choices {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
@media (max-width: 576px) {
  .community-footer .footer-links.inner-pages ul li .your-privacy-choices {
    padding-top: 2px;
  }
}
.community-footer
  .footer-links.inner-pages
  ul
  li
  .your-privacy-choices
  .privacy-icon {
  width: 29px;
  height: 14px;
  flex-shrink: 0;
  margin-bottom: 1px;
}

.community-footer .footer-links.interests {
  padding: 1.125rem 0 1.625rem;
}
@media (max-width: 768px) {
  .community-footer .footer-links.interests {
    padding: 1.125rem 0 2.5rem;
  }
}
.community-footer .footer-links.interests h4 {
  font-size: 1.125rem;
  font-weight: normal;
  line-height: 2.3125rem;
  text-transform: uppercase;
  margin-bottom: 0.3125rem;
}
@media (max-width: 992px) {
  .community-footer .footer-links.interests h4 {
    text-align: center;
  }
  .community-footer .footer-links.interests ul {
    text-align: center;
  }
}
@media (max-width: 768px) {
  .community-footer .footer-links.interests h4 {
    text-align: left;
  }
  .community-footer .footer-links.interests ul {
    column-count: 1;
    text-align: left;
  }
  .community-footer .footer-links.interests ul li {
    display: block;
  }
}

.community-footer .social-placeholder {
  right: 0;
}

.community-footer .copyrights {
  padding-top: 1.375rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .community-footer .copyrights {
    padding-top: 0;
  }
}
.community-footer .copyrights p {
  font-size: 0.75rem;
  line-height: normal;
  margin-bottom: 0;
  margin-right: 3.375rem;
}
@media (max-width: 576px) {
  .community-footer .copyrights p {
    flex: 0 0 100%;
    margin-bottom: 1.875rem;
  }
}

.community-footer .copyrights .icons {
  display: inline-flex;
  align-items: center;
}
@media (max-width: 576px) {
  .community-footer .copyrights .icons {
    flex: 0 0 100%;
    justify-content: flex-start;
    margin-bottom: 0;
    padding-top: 10px;
  }
}
.community-footer .copyrights .icons > span {
  display: inline-flex;
}
.community-footer .copyrights .icons > span:not(:last-child) {
  margin-right: 0.625rem;
}
.community-footer .copyrights .icons > span svg {
  height: 1.125rem;
}
.community-footer .copyrights .icons > span.icon-house svg {
  width: 1.5625rem;
}
.community-footer .copyrights .icons > span.icon-disabled svg {
  width: 1rem;
}
.community-footer .copyrights .icons > span.icon-facebook svg {
  width: 1.125rem;
}
.community-footer .copyrights .icons > span.icon-insta svg {
  width: 1.125rem;
}
.community-footer .copyrights .icons > span.icon-twitter svg {
  width: 1.375rem;
}
.community-footer .copyrights .icons > span.icon-youtube svg {
  width: 1.625rem;
}

/* Global app utility classes (from core_defaults/partials/_classes.scss and layout) */

.container {
  max-width: 74.9375rem;
  height: 100%;
  width: 100%;
  padding: 0 1.875rem;
  margin: 0 auto;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.bottom {
  bottom: 0;
}

.align-middle {
  vertical-align: middle !important;
}

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

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.list-unstyled {
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .separator {
    display: none;
  }
}

.vivmark-navbar {
  height: 4rem;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  background-color: var(--background-blue);
  width: 100%;
  flex: 0 0 auto;
  z-index: 70;
}
@media (max-width: 1199px) {
  .vivmark-navbar {
    justify-content: space-between;
  }
}
.vivmark-navbar .search-btn {
  border: none;
  background: none;
  line-height: 0;
}
.vivmark-navbar .search-btn .alep-icon {
  width: 1.25rem;
  height: 1.25rem;
  fill: #ffffff !important;
}
.vivmark-navbar .alep-icon {
  fill: #ffffff !important;
}
@media (max-width: 1199px) {
  .vivmark-navbar .signup-btn,
  .vivmark-navbar .login-btn {
    display: none;
  }
}
.vivmark-navbar #header-login-btn:hover {
  color: #b3b5b9 !important;
}

.main-logo {
  font-size: 1.25rem;
  font-weight: 300;
  color: #5d6368;
}
@media (min-width: 768px) {
  .main-logo {
    font-size: 1.5rem;
  }
}
@media (max-width: 1199px) {
  .main-logo {
    order: 1;
  }
}
.main-logo:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}
.main-logo:hover {
  color: #0057ba;
}

.main-logo-newco {
  font-family: "Tiempos Fine", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.25rem;
  line-height: 150%;
  letter-spacing: 0.15px;
  color: #ffffff;
  width: 100%;
  display: flex;
}
@media (max-width: 1199px) {
  .main-logo-newco {
    order: 1;
  }
}
.main-logo-newco:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}
.main-logo-newco:hover {
  color: #d9d9d9;
}

@media (max-width: 992px) {
  .main-logo-newco {
    justify-content: end;
  }
}

@media (max-width: 767px) {
  .main-logo-newco {
    justify-content: center;
  }
}

.w-100 {
  width: 100% !important;
}

.main-nav-vivmark {
  z-index: 70;
  display: flex;
  height: 100%;
  margin-left: auto;
  justify-content: flex-end;
  font-family: "Graphie", sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
}
@media (max-width: 1365px) {
  .main-nav-vivmark {
    display: none;
  }
}
.main-nav-vivmark a {
  display: flex;
  align-items: center;
  padding: 0 1rem;
  color: #ffffff !important;
  height: 100%;
  white-space: nowrap;
}
.main-nav-vivmark a:hover {
  background: rgba(255, 255, 255, 0.1);
  outline: rgba(255, 255, 255, 0.3) solid 1px;
  color: #ffffff;
}
.main-nav-vivmark a:not(:last-child) {
  margin-right: 0.625rem;
}
.main-nav-vivmark a.active {
  background: rgba(255, 255, 255, 0.15);
}
.main-nav-vivmark a:focus-visible {
  outline: -webkit-focus-ring-color auto 5px;
}
.main-nav-vivmark .subnav-content {
  display: none;
  position: absolute;
  border-top: 1px solid #dcdddf;
  box-shadow: 0 2px 2px #dcdddf;
}
.main-nav-vivmark .subnav:hover .subnav-content,
.main-nav-vivmark .subnav:focus-within .subnav-content {
  display: block;
}
