/* site wide */
@import url("https://fonts.googleapis.com/css2?family=Rubik:ital,wght@0,300..900;1,300..900&display=swap");
.debugInfo {
  display: none !important;
}

body[data-bs-theme=dark] {
  --bs-tertiary-bg-rgb: 0, 0, 0;
}
body[data-bs-theme=dark] div.trustpilot-widget-theme-dark {
  color-scheme: light;
}

/* google-recaptcha.scss */
div.grecaptcha-badge {
  z-index: 200;
}

:root {
  /* form styles */
}
:root body {
  --font-family-rubik: "Rubik", sans-serif;
  --font-family-opensans: "Open Sans", sans-serif;
  --font-family-ubuntu: "Ubuntu", sans-serif;
  --bs-body-bg: #EFF2F9;
  --bs-body-color: #950012;
  --bs-primary: #950012;
  --bs-secondary: #c7a6aa;
  --bs-link-color-rgb: var(--bs-primary);
  --bs-border-color: var(--bs-secondary);
  font-family: var(--font-family-ubuntu);
  --bs-link-hover-color-rgb: 231, 0, 27;
  --font1: var(--font-family-rubik);
  --font2: var(--font-family-opensans);
}
:root .accordion {
  --bs-accordion-active-bg: #c2c2c2;
  --bs-accordion-border-color: #c2c2c2;
  --bs-accordion-btn-color: var(--bs-secondary);
  --bs-accordion-btn-focus-box-shadow: 0 0 0 .25rem gba(r177, 237, 213, .1);
  --bs-accordion-active-color: var(--bs-primary);
}
:root .accordion .accordion-body ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}
:root .accordion div.accordion-item {
  color: black;
}
:root .accordion div.accordion-item h2.accordion-header {
  padding-bottom: 0px !important;
  margin-bottom: 0px !important;
}
:root .accordion div.accordion-item button.accordion-button {
  font-weight: 700 !important;
  font-size: 20px;
  font-family: var(--font2);
  text-transform: capitalize !important;
}
:root .accordion div.accordion-item button.accordion-button::after {
  --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e %3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  --bs-accordion-btn-icon: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e %3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
:root .form-control {
  --bs-border-radius: 0px;
  --bs-border-color: grey;
  margin-bottom: 20px;
}
:root .form-control:focus {
  border-color: var(--bs-secondary);
  box-shadow: 0 0 0 0.25rem rgba(177, 237, 213, 0.1);
}
:root .form-control::placeholder {
  color: #9f9f9f;
}
:root label {
  text-transform: uppercase;
  font-family: var(--font1);
  font-weight: 500;
  font-size: 16px;
  color: #3f3f3f;
  margin-bottom: 0px;
}
:root div#pageForm form div.in-error label {
  color: red;
}
:root .btn {
  font-family: var(--font1);
  text-transform: uppercase;
  font-weight: 500;
}
:root .btn-primary {
  --bs-btn-color: #FFF;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: var(--bs-primary);
  --bs-btn-hover-bg: var(--bs-secondary);
  --bs-btn-hover-border-color: var(--bs-secondary);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: #0d6efd;
  --bs-btn-disabled-border-color: #0d6efd;
}
:root .breadcrumb-item {
  --bs-breadcrumb-divider: ">";
  --bs-breadcrumb-divider-color: darkgrey;
  --bs-breadcrumb-item-active-color: darkgrey;
  --bs-breadcrumb-item-padding-x: 5px;
  text-transform: uppercase;
  font-family: var(--font1);
  font-weight: 500;
}
:root .breadcrumb-item a {
  text-decoration: none;
}
:root .row {
  --bs-gutter-x: 0;
  --bs-gutter-y: 0;
}
:root table {
  --bs-table-color: var(--bs-primary);
}
:root section {
  color: black;
}
:root .form-check-input {
  --bs-form-check-bg: var(--bs-primary);
}
@media (min-width: 576px) {
  :root .card-group {
    display: block;
  }
}
@media (min-width: 992px) {
  :root .card-group {
    display: flex;
  }
}
:root .navbar {
  --bs-navbar-nav-link-padding-x: 1rem;
}
:root form > div.row {
  margin-bottom: 0px;
}

/* site scrollbar */
html::-webkit-scrollbar {
  display: block;
  width: 10px;
}

html::-webkit-scrollbar-button {
  display: none;
}
html::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.5);
}
html::-webkit-scrollbar-track-piece {
  background-color: rgba(0, 0, 0, 0.5);
}
html::-webkit-scrollbar-thumb {
  background-color: var(--bs-secondary);
  border: 5px solid transparent;
  border-radius: 4px;
}

div#playmkrAIChatPage div.aiAgentChatHistory::-webkit-scrollbar {
  display: block;
  width: 10px;
}
div#playmkrAIChatPage div.aiAgentChatHistory::-webkit-scrollbar-button {
  display: none;
}
div#playmkrAIChatPage div.aiAgentChatHistory::-webkit-scrollbar-track {
  background-color: red;
}
div#playmkrAIChatPage div.aiAgentChatHistory::-webkit-scrollbar-track-piece {
  background-color: black;
}
div#playmkrAIChatPage div.aiAgentChatHistory::-webkit-scrollbar-thumb {
  background-color: red;
  border: 5px solid transparent;
  border-radius: 4px;
}

body {
  overscroll-behavior: none;
}
body.no-scroll {
  overflow: hidden;
  position: fixed;
  width: 100%;
}
body.resizing p, body.resizing label, body.resizing button {
  user-select: none;
}

@media (max-width: 992px) {
  body.mobileNavigationOpen div.page-container:after {
    opacity: 1;
    content: "";
    height: 100vh;
    backdrop-filter: blur(10px);
  }
}

div.clientLogin {
  display: flex;
  justify-content: center;
  margin-top: 50px;
}
@media (min-width: 992px) {
  div.clientLogin {
    margin-top: 0px;
    margin-left: 30px;
  }
}
div.clientLogin a.btn.animatedButton {
  overflow: hidden;
  position: relative;
  border: 1px solid white;
  padding: 10px;
  border-radius: 0px;
  color: white;
  font-family: var(--font1);
  font-weight: 500;
  font-size: 0.8em;
  white-space: nowrap;
}
div.clientLogin a.btn.animatedButton span {
  z-index: 20;
}
div.clientLogin a.btn.animatedButton:after {
  background: #fff;
  content: "";
  height: 155px;
  left: -75px;
  opacity: 0.2;
  position: absolute;
  top: -50px;
  transform: rotate(35deg);
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
  width: 50px;
  z-index: -10;
}
div.clientLogin a.btn.animatedButton:hover:after {
  left: 120%;
  transition: all 550ms cubic-bezier(0.19, 1, 0.22, 1);
}

div.page-container {
  padding-top: 65px;
}
@media (min-width: 576px) {
  div.page-container {
    margin: 0px auto;
  }
}
div.page-container:after {
  content: "";
  opacity: 0;
  position: fixed;
  z-index: 20;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(1px);
  transition: opacity 0.2s ease-in, backdrop-filter 0.2s ease;
}
div.page-container p {
  margin-bottom: 2rem;
  line-height: 1.8rem;
}
div.page-container p a {
  white-space: nowrap;
}
div.page-container nav#siteNavigation {
  background-color: #050505;
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  z-index: 30;
  padding: 0px;
  padding: 0px 10px 0px 0px;
  /* animation for close/open hamburger menu item on mobile */
}
@media (min-width: 576px) {
  div.page-container nav#siteNavigation div.container-fluid {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  div.page-container nav#siteNavigation div.container-fluid {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  div.page-container nav#siteNavigation div.container-fluid {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  div.page-container nav#siteNavigation div.container-fluid {
    max-width: 1366px;
  }
}
@media (min-width: 576px) {
  div.page-container nav#siteNavigation {
    border-radius: 0px;
  }
}
div.page-container nav#siteNavigation div.logoAndControls {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}
div.page-container nav#siteNavigation div.logoAndControls div.logo {
  overflow: hidden;
  padding: 10px 0px;
}
div.page-container nav#siteNavigation div.logoAndControls div.logo p {
  margin-bottom: 0px;
}
div.page-container nav#siteNavigation div.logoAndControls div.logo p img {
  max-width: 175px;
}
@media (max-width: 992px) {
  div.page-container nav#siteNavigation div#navbarNav {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100%;
    padding-top: 180px;
    padding-bottom: 1500px;
  }
}
div.page-container nav#siteNavigation div#navbarNav ul.navbar-nav {
  display: flex;
  flex-direction: row;
}
div.page-container nav#siteNavigation div#navbarNav ul.navbar-nav li.nav-item {
  text-transform: uppercase;
}
div.page-container nav#siteNavigation div#navbarNav ul.navbar-nav li.nav-item a.nav-link {
  color: white;
  font-family: var(--font1);
  font-weight: 600;
  font-size: 0.8em;
  text-shadow: 5px 0px 10px rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 4px;
}
div.page-container nav#siteNavigation div#navbarNav ul.navbar-nav li.nav-item a.nav-link:hover {
  color: var(--bs-primary);
}
div.page-container nav#siteNavigation div#navbarNav ul.navbar-nav li.nav-item a.nav-link.active {
  background-color: var(--bs-body-color);
}
div.page-container nav#siteNavigation div#navbarNav ul.navbar-nav li.nav-item a.nav-link.active:hover {
  color: var(--bs-secondary);
}
@media (max-width: 992px) {
  div.page-container nav#siteNavigation div#navbarNav.collapsing, div.page-container nav#siteNavigation div#navbarNav.show {
    margin-left: -15px;
    margin-right: -15px;
  }
  div.page-container nav#siteNavigation div#navbarNav.collapsing ul.navbar-nav, div.page-container nav#siteNavigation div#navbarNav.show ul.navbar-nav {
    position: relative;
    z-index: 1200;
    flex-direction: column;
    align-items: center;
  }
  div.page-container nav#siteNavigation div#navbarNav.collapsing ul.navbar-nav li, div.page-container nav#siteNavigation div#navbarNav.show ul.navbar-nav li {
    width: fit-content;
  }
}
@media (max-width: 992px) {
  div.page-container nav#siteNavigation div#navbarNav {
    opacity: 0;
    transition: opacity 0.1s ease-in-out;
  }
}
@media (max-width: 992px) {
  div.page-container nav#siteNavigation div#navbarNav.show {
    opacity: 1;
  }
}
div.page-container nav#siteNavigation button.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  position: relative;
  z-index: 1400;
  --transition-delay: 0s;
}
div.page-container nav#siteNavigation button.navbar-toggler[aria-expanded=false] span {
  display: block;
  width: 28px;
  height: 4px;
  margin-bottom: 7px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.2s var(--transition-delay), transform 0.3s var(--transition-delay);
}
div.page-container nav#siteNavigation button.navbar-toggler[aria-expanded=false] span:first-child {
  position: relative;
  top: 0;
}
div.page-container nav#siteNavigation button.navbar-toggler[aria-expanded=false] span:nth-child(2) {
  opacity: 1;
}
div.page-container nav#siteNavigation button.navbar-toggler[aria-expanded=false] span:last-child {
  margin-bottom: 0;
  position: relative;
  top: 0;
}
div.page-container nav#siteNavigation button.navbar-toggler[aria-expanded=true] span {
  background: #ffffff;
  display: block;
  width: 28px;
  height: 4px;
  margin-bottom: 7px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s var(--transition-delay), transform 0.3s var(--transition-delay);
}
div.page-container nav#siteNavigation button.navbar-toggler[aria-expanded=true] span:first-child {
  top: 11px;
  transform: rotate(-45deg);
  animation-delay: 2s;
}
div.page-container nav#siteNavigation button.navbar-toggler[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}
div.page-container nav#siteNavigation button.navbar-toggler[aria-expanded=true] span:last-child {
  top: -11px;
  transform: rotate(45deg);
}
div.page-container nav#siteNavigation button.navbar-toggler {
  background-color: transparent;
  transition: background-color 1s ease;
  width: 50px;
  height: 50px;
}
div.page-container nav#siteNavigation button.navbar-toggler span {
  margin: 0px auto;
}
div.page-container nav#siteNavigation.scrolled button.navbar-toggler {
  background-color: rgba(0, 0, 0, 0.8666666667);
}
div.page-container div#pageContent {
  position: relative;
}
div.page-container div#pageContent div.siteBreadcrumb {
  margin-top: -20px;
  margin-bottom: 20px;
  padding: 5px 15px;
  position: sticky;
  top: 65px;
  z-index: 20;
  background-color: #e3e3e3;
}
@media (min-width: 992px) {
  div.page-container div#pageContent div.siteBreadcrumb {
    padding: 5px 0px;
    position: relative;
    top: 0px;
    background-color: transparent;
  }
}
div.page-container div#pageContent div.siteBreadcrumb ol {
  margin-bottom: 0px;
}
div.page-container div#pageContent div.siteBreadcrumb nav {
  max-width: 100%;
  margin: 0px auto;
}
@media (min-width: 576px) {
  div.page-container div#pageContent div.siteBreadcrumb nav {
    padding: 0px 15px;
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  div.page-container div#pageContent div.siteBreadcrumb nav {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  div.page-container div#pageContent div.siteBreadcrumb nav {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  div.page-container div#pageContent div.siteBreadcrumb nav {
    max-width: 1366px;
  }
}
div.page-container div#pageContent > section:not(#hero) {
  padding-left: 15px;
  padding-right: 15px;
}
div.page-container div#pageContent > section:not(#hero):last-of-type {
  padding-bottom: 100px;
}
div.page-container div#pageContent section {
  margin: 0px auto;
  width: 100%;
}
@media (min-width: 576px) {
  div.page-container div#pageContent section {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  div.page-container div#pageContent section {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  div.page-container div#pageContent section {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  div.page-container div#pageContent section {
    max-width: 1366px;
  }
}
div.page-container div#pageContent section h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  padding-bottom: 1rem;
  text-align: center;
  font-weight: 700;
  font-family: var(--font1);
  text-transform: uppercase;
  color: #000000;
  font-size: 1.89rem;
}
@media (min-width: 576px) {
  div.page-container div#pageContent section h2 {
    font-size: 2.7rem;
  }
}
div.page-container div#pageContent section h3 {
  margin-top: 80px;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font1);
  text-transform: uppercase;
  color: #000000;
  font-size: 1rem;
}
@media (min-width: 576px) {
  div.page-container div#pageContent section h3 {
    font-size: 1.2rem;
  }
}
div.page-container div#pageContent section#hero {
  overflow: hidden;
  position: relative;
  display: block;
  padding-top: 10px;
  height: auto;
  max-width: 100%;
  position: relative;
  margin-bottom: 20px;
}
div.page-container div#pageContent section#hero:after {
  opacity: 1;
  content: "";
  position: absolute;
  z-index: 3;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  width: 100%;
  height: 100vh;
  backdrop-filter: brightness(0.4) blur(1px);
  background: url("/static/romforddigital/images/weird2.webp") center center no-repeat;
  background-color: rgba(0, 0, 0, 0.8901960784);
  background-size: cover;
  mix-blend-mode: color;
}
@media (min-width: 992px) {
  div.page-container div#pageContent section#hero {
    padding-top: 100px;
    height: 585px;
  }
}
div.page-container div#pageContent section#hero div.heroContentContainer {
  position: relative;
  z-index: 5;
  margin: 0px auto;
}
@media (min-width: 576px) {
  div.page-container div#pageContent section#hero div.heroContentContainer {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  div.page-container div#pageContent section#hero div.heroContentContainer {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  div.page-container div#pageContent section#hero div.heroContentContainer {
    max-width: 960px;
    margin-top: -50px;
  }
}
@media (min-width: 1200px) {
  div.page-container div#pageContent section#hero div.heroContentContainer {
    max-width: 1366px;
  }
}
div.page-container div#pageContent section#hero div.heroContentContainer div.heroContent {
  padding-bottom: 10px;
}
div.page-container div#pageContent section#hero div.heroContentContainer div.heroContent h1 {
  font-family: var(--font1);
  text-transform: uppercase;
  font-weight: 700;
  color: white;
  font-size: 40px;
  text-shadow: 5px 0px 10px rgb(0, 0, 0);
}
@media (min-width: 992px) {
  div.page-container div#pageContent section#hero div.heroContentContainer div.heroContent h1 {
    font-size: 2.8rem;
    text-shadow: none;
  }
}
div.page-container div#pageContent section#hero div.heroContentContainer div.heroContent h1 + div.sub-text {
  text-transform: capitalize;
  font-weight: 400;
  font-family: "Open Sans", sans-serif;
  color: #ffffff;
  font-size: 19px;
  line-height: 28px;
  text-shadow: 5px 0px 10px rgb(0, 0, 0);
}
@media (min-width: 992px) {
  div.page-container div#pageContent section#hero div.heroContentContainer div.heroContent h1 + div.sub-text {
    text-shadow: none;
  }
}
div.page-container div#pageContent section#hero div.heroContentContainer div.heroContent h1 + div.sub-text p {
  margin-bottom: 0px;
  padding-bottom: 10px;
}
div.page-container div#pageContent section#hero div.mask {
  display: none;
}
@media (min-width: 992px) {
  div.page-container div#pageContent section#hero div.mask {
    display: block;
    position: absolute;
    bottom: -1px;
    z-index: 10;
    width: 100%;
  }
  div.page-container div#pageContent section#hero div.mask svg {
    fill: #eff2f9;
    width: 100%;
  }
}
div.page-container div#pageContent section#hero div.heroContentContainer {
  margin: 0px auto;
  text-align: center;
  width: 100%;
}
@media (min-width: 576px) {
  div.page-container div#pageContent section#hero div.heroContentContainer {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  div.page-container div#pageContent section#hero div.heroContentContainer {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  div.page-container div#pageContent section#hero div.heroContentContainer {
    text-align: left;
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  div.page-container div#pageContent section#hero div.heroContentContainer {
    max-width: 1366px;
    padding: 15px;
  }
}
div.page-container div#pageContent section#hero div.header-background {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  position: absolute;
}
div.page-container div#pageContent section#hero div.header-background div.header-background-block {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-size: cover;
}
div.page-container div#pageContent div#fauxFooter {
  z-index: 1;
  font-size: 13px;
  font-weight: 500;
  position: relative;
  height: 100%;
  padding-top: 70px;
  background: linear-gradient(to bottom, #950012 0%, #b9211b 100%);
}
div.page-container div#pageContent div#fauxFooter section#mailingListSection {
  display: none;
}
div.page-container div#pageContent div#fauxFooter div.mask {
  display: none;
}
@media (min-width: 992px) {
  div.page-container div#pageContent div#fauxFooter div.mask {
    width: 100%;
    display: block;
    position: absolute;
    top: -1px;
    z-index: 1;
  }
  div.page-container div#pageContent div#fauxFooter div.mask svg {
    fill: #eff2f9;
  }
}
div.page-container div#pageContent div#fauxFooter div.content {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
div.page-container div#pageContent div#fauxFooter div.content div#footerLogo {
  width: fit-content;
  margin: 100px auto;
}
div.page-container div#pageContent div#fauxFooter div#joinMailinglist p {
  color: white;
  text-transform: uppercase;
  font-family: var(--font1);
  font-weight: 500;
  font-size: 13px;
}
div.page-container div#footer {
  margin-top: -90px;
  position: relative;
}
div.page-container div#footer a {
  text-decoration: none;
}
div.page-container div#footer a:hover {
  text-decoration: underline;
}
div.page-container div#footer div#serviceStatus {
  background-color: #353535;
  color: #717171;
  font-family: var(--font2);
  padding-bottom: 10px;
  width: 100%;
}
@media (min-width: 576px) {
  div.page-container div#footer div#serviceStatus {
    margin: unset;
  }
}
div.page-container div#footer div#serviceStatus p {
  margin: 0px auto;
  text-align: center;
  font-size: 12px;
}
@media (min-width: 576px) {
  div.page-container div#footer div#serviceStatus p {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  div.page-container div#footer div#serviceStatus p {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  div.page-container div#footer div#serviceStatus p {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  div.page-container div#footer div#serviceStatus p {
    max-width: 1366px;
  }
}
div.page-container div#footer div#serviceStatus p span {
  color: green;
  padding-right: 5px;
}
div.page-container div#footer div.legalFooterContent {
  background-color: #353535;
  color: #717171;
  font-size: 13px;
  font-family: var(--font2);
  display: flex;
  align-items: center;
}
div.page-container div#footer div.legalFooterContent p.copyrightNotice {
  text-align: center;
  filter: grayscale(100%);
  margin-bottom: 0px;
  display: flex;
  flex-direction: row;
  text-align: left;
  justify-content: center;
  width: 100%;
  padding-top: 13px;
  margin: 0px auto;
}
@media (min-width: 576px) {
  div.page-container div#footer div.legalFooterContent p.copyrightNotice {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  div.page-container div#footer div.legalFooterContent p.copyrightNotice {
    padding-top: 27px;
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  div.page-container div#footer div.legalFooterContent p.copyrightNotice {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  div.page-container div#footer div.legalFooterContent p.copyrightNotice {
    max-width: 1366px;
  }
}
div.page-container div#footer div.legalFooterContent p.copyrightNotice span {
  width: fit-content;
}
@media (min-width: 576px) {
  div.page-container div#footer div.legalFooterContent p.copyrightNotice {
    text-align: left;
  }
}
div.page-container div#footer div.legalFooterContent p.copyrightNotice a {
  white-space: normal;
}
div.page-container div#footer div.legalFooterContent p.copyrightNotice span.ukFlag {
  padding-left: 5px;
}
div.page-container div#footer div.socials {
  position: sticky;
  bottom: 20px;
  z-index: 200;
  /* right: 20px; */
  display: flex;
  justify-content: center;
  column-gap: 5rem;
  /* margin-right: 20px; */
  margin-top: 20px;
}
div.page-container div#footer div.socials ul {
  list-style-type: none;
  margin-left: 0px;
  padding-left: 0px;
  display: flex;
  column-gap: 5px;
  margin-bottom: 30px;
}
div.page-container div#footer div.socials ul li {
  background-color: var(--bs-primary);
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
div.page-container div#footer div.socials ul li:hover {
  background-color: var(--bs-secondary);
}
div.page-container div#footer div.socials ul li:hover svg {
  fill: var(--bs-primary);
}
div.page-container div#footer div.socials ul li a {
  display: flex;
  width: 30px;
  height: 30px;
  justify-content: center;
  align-items: center;
}
div.page-container div#footer div.socials ul li a svg {
  width: 50%;
  height: 50%;
  fill: white;
}
div.page-container div#footer div.socials ul li a#instagramSocial {
  margin-left: -1px;
}

dialog#cookieDialog {
  position: fixed;
  bottom: 24px;
  right: 0px;
  left: auto;
  z-index: 10999;
  background-color: #939393;
  border-radius: 15px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.8) 0px 0px 16px 4px;
  margin: 24px 10px;
  margin-top: auto;
  margin-right: 30px;
}

div.cookieDialogContents {
  color: black;
  max-width: 350px;
}
div.cookieDialogContents div.popup-header {
  font-size: 32px;
  font-weight: 500;
  font-family: var(--font-family-ubuntu);
}
div.cookieDialogContents div.popup-header svg {
  width: 40px;
  height: 40px;
  fill: black;
}
div.cookieDialogContents div.popup-header div.popup-header-content-container {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
}
div.cookieDialogContents div.popup-header div.popup-header-content-container p {
  margin-bottom: 0px;
}
div.cookieDialogContents div.popup-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

div#privacypolicyPage,
div#cookiePolicyPage {
  width: 80%;
  margin: 0px auto;
}
div#privacypolicyPage h1,
div#cookiePolicyPage h1 {
  text-align: center;
}
div#privacypolicyPage div.section,
div#cookiePolicyPage div.section {
  margin-bottom: 100px;
}
div#privacypolicyPage div.section h2,
div#cookiePolicyPage div.section h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  padding-bottom: 1rem;
  text-align: center;
  font-size: 1.89rem;
  font-weight: 700;
  font-family: var(--font1);
  text-transform: uppercase;
  color: #000000;
}
div#privacypolicyPage div.section ul li,
div#cookiePolicyPage div.section ul li {
  margin-top: 12px;
}
div#privacypolicyPage div.section table,
div#cookiePolicyPage div.section table {
  margin-top: 30px;
  margin-bottom: 30px;
}
div#privacypolicyPage div.section table tr td:first-child,
div#cookiePolicyPage div.section table tr td:first-child {
  color: var(--bs-primary);
  text-transform: uppercase;
  font-family: var(--font1);
  font-weight: 800;
  white-space: nowrap;
}
div#privacypolicyPage div.section h3,
div#cookiePolicyPage div.section h3 {
  margin-top: 50px;
  margin-bottom: 30px;
}
div#privacypolicyPage div#inlineCookieNotice,
div#cookiePolicyPage div#inlineCookieNotice {
  margin: 40px 0px;
}
div#privacypolicyPage div#inlineCookieNotice div.cookieDialogContents,
div#cookiePolicyPage div#inlineCookieNotice div.cookieDialogContents {
  color: var(--bs-primary);
}
div#privacypolicyPage div#inlineCookieNotice div.cookieDialogContents svg,
div#cookiePolicyPage div#inlineCookieNotice div.cookieDialogContents svg {
  fill: var(--bs-primary);
}

div.callToAction {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 80px 0px;
}
div.callToAction a.whatsapp {
  background-color: #25D366;
  border-radius: 8px;
  padding: 10px;
  width: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
div.callToAction a.whatsapp:hover {
  background-color: #a1dbb6;
}
div.callToAction a.whatsapp:hover svg {
  fill: #006425;
}
div.callToAction a.whatsapp svg {
  fill: white;
  width: 30px;
  height: 30px;
}

#homePage div#fauxFooter div.mask svg {
  fill: #e8ecf5 !important;
}
#homePage section {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#homePage section div.sectionContentContainer {
  padding: 10px;
  padding-top: 40px;
  max-width: 1000px;
  width: 100%;
  margin: 0px auto;
}
#homePage section#introduction {
  padding-top: 30px;
  background-image: url(/static/romforddigital/images/white-to-gray.png) !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom;
  padding-bottom: 24%;
  padding-top: 30px;
  margin-top: -13px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
}
#homePage section#introduction div.sectionContentContainer {
  padding: 0px 15px;
  margin: 0px auto;
}
@media (min-width: 576px) {
  #homePage section#introduction div.sectionContentContainer {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  #homePage section#introduction div.sectionContentContainer {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  #homePage section#introduction div.sectionContentContainer {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  #homePage section#introduction div.sectionContentContainer {
    max-width: 1366px;
  }
}
#homePage section#introduction div.sectionContentContainer p {
  font-family: var(--font2);
  margin-bottom: 16px;
  text-wrap: pretty;
}
#homePage section#examplesOfWork {
  background-color: #e8ebf4;
  width: 100%;
  max-width: 100%;
}
#homePage section#examplesOfWork div.sectionContentContainer {
  margin: 0px auto;
}
@media (min-width: 576px) {
  #homePage section#examplesOfWork div.sectionContentContainer {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  #homePage section#examplesOfWork div.sectionContentContainer {
    max-width: 720px;
    margin-top: -75px;
  }
}
@media (min-width: 992px) {
  #homePage section#examplesOfWork div.sectionContentContainer {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  #homePage section#examplesOfWork div.sectionContentContainer {
    max-width: 1366px;
  }
}
#homePage section#examplesOfWork div.portfolioExamples {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
@media (min-width: 576px) {
  #homePage section#examplesOfWork div.portfolioExamples {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  #homePage section#examplesOfWork div.portfolioExamples {
    grid-template-columns: repeat(3, 1fr);
  }
}
#homePage section#examplesOfWork div.portfolioExamples div.example {
  box-shadow: 0 0 0 0.25rem rgba(177, 237, 213, 0.1);
  width: 100%;
  border: 1px solid rgb(218, 218, 218);
  padding: 10px;
  background-color: white;
  overflow: hidden;
  position: relative;
}
#homePage section#examplesOfWork div.portfolioExamples div.example div.exampleThumbnail {
  overflow: hidden;
  max-height: 240px;
}
#homePage section#examplesOfWork div.portfolioExamples div.example h4 {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 20;
  padding: 10px;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  font-weight: 700;
  font-family: var(--font1);
  text-transform: uppercase;
  color: #FFFFFF;
  background-color: rgba(0, 0, 0, 0.6);
  font-size: 1rem;
}
@media (min-width: 576px) {
  #homePage section#examplesOfWork div.portfolioExamples div.example h4 {
    font-size: 1.2rem;
  }
}
#homePage section#examplesOfWork div.portfolioExamples div.example div.portfolioExampleControls {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  #homePage section#examplesOfWork div.portfolioExamples div.example div.portfolioExampleControls {
    opacity: 0;
    transition-property: opacity;
    transition: opacity 0.2s ease-in;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
  }
}
#homePage section#examplesOfWork div.portfolioExamples div.example div.portfolioExampleControls div.controls {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px 30px;
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  border-radius: 9999px;
}
#homePage section#examplesOfWork div.portfolioExamples div.example div.portfolioExampleControls div.controls div.control p {
  margin-bottom: 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  color: #FFFFFF;
  text-transform: uppercase;
}
#homePage section#examplesOfWork div.portfolioExamples div.example div.portfolioExampleControls div.controls div.control p a {
  color: #FFFFFF;
  text-decoration: none;
}
#homePage section#examplesOfWork div.portfolioExamples div.example:hover div.portfolioExampleControls {
  opacity: 1;
}
#homePage section#home div.sectionContentContainer {
  padding: 0px;
  padding-top: 0px;
  max-width: unset;
  width: 100%;
}

#solutionsPage div.priceMatchGuarantee {
  display: flex;
  flex-direction: row;
  width: fit-content;
  margin: 50px auto;
  align-items: center;
  gap: 20px;
}
#solutionsPage div.priceMatchGuarantee div.priceMatchGuaranteeStamp svg {
  height: 80px;
  width: 80px;
}
@media (min-width: 576px) {
  #solutionsPage div.priceMatchGuarantee div.priceMatchGuaranteeStamp svg {
    width: 100px;
    height: 100px;
  }
}
#solutionsPage div.priceMatchGuarantee p {
  text-align: left;
  margin-bottom: 0px;
}
#solutionsPage div.sectionContentContainer {
  padding: 0px 15px;
  margin: 0px auto;
}
@media (min-width: 576px) {
  #solutionsPage div.sectionContentContainer {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  #solutionsPage div.sectionContentContainer {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  #solutionsPage div.sectionContentContainer {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  #solutionsPage div.sectionContentContainer {
    max-width: 1366px;
  }
}
#solutionsPage div.sectionContentContainer p {
  font-family: var(--font2);
  margin-bottom: 16px;
  text-wrap: pretty;
}
#solutionsPage section#solutionsSection div.solutionsList {
  margin-bottom: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group {
  border-radius: 6px;
}
@media (min-width: 992px) {
  #solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group {
    overflow: hidden;
    box-shadow: 0 1px 9px rgba(0, 0, 0, 0.4);
  }
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group div.card {
  --bs-card-bg: #e7e7e7;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.4);
  margin-bottom: 60px;
  padding: 1px;
}
@media (min-width: 992px) {
  #solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group div.card {
    box-shadow: none;
    margin-bottom: 0px;
  }
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group div.card div.card-body .card-title {
  background-color: #d7d7d7;
  margin: 0px -15px;
  margin-top: -15px;
  padding: 15px;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group div.card div.card-body h5.card-title {
  text-transform: uppercase;
  font-family: var(--font1);
  font-weight: 500;
  color: #505050;
  padding-bottom: 10px;
  white-space: nowrap;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group div.card div.card-body p.card-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  white-space: nowrap;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group div.card div.card-body p.card-title span {
  font-family: var(--font1);
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group div.card div.card-body p.card-title span.initialCost {
  font-weight: 700;
  padding-bottom: 5px;
  font-size: 3em;
  line-height: 1em;
  background-image: linear-gradient(to bottom, var(--bs-primary), #000000); /* Top to bottom */
  background-size: 100% 140%; /* Ensures it stretches top to bottom */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  /* For Firefox */
  background-clip: text;
  color: transparent;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3); /* Drop shadow */
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions div.websitePackages.card-group div.card div.solutionCallToAction {
  display: flex;
  padding: 10px;
  border-top: 1px solid #c2c2c2;
  background-color: #d7d7d7;
  justify-content: center;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions ul.solutionFeatureList {
  list-style-type: none;
  padding-left: unset;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions ul.solutionFeatureList li {
  --list-content-color: black;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions ul.solutionFeatureList li p {
  display: flex;
  flex-direction: row;
  gap: 10px;
  color: var(--list-content-color);
  font-size: 16px;
  line-height: 1.4rem;
  margin-bottom: 10px;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions ul.solutionFeatureList li p span span.carryOver {
  font-weight: bolder;
}
#solutionsPage section#solutionsSection div.solutionsList div#onlineSolutions div#websiteSolutions ul.solutionFeatureList li p span svg {
  fill: var(--list-content-color);
  margin-top: -3px;
}
#solutionsPage section#faq {
  max-width: 800px;
}

#servicesPage div.sectionContentContainer {
  max-width: 100%;
  padding: 0px 0px;
  margin: 0px auto;
}
@media (min-width: 576px) {
  #servicesPage div.sectionContentContainer {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  #servicesPage div.sectionContentContainer {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  #servicesPage div.sectionContentContainer {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  #servicesPage div.sectionContentContainer {
    max-width: 1366px;
  }
}
#servicesPage div.servicesList {
  display: grid;
  grid-template-columns: 1fr;
  /* Creates 3 equal-width columns */
  gap: 10px;
}
@media (min-width: 576px) {
  #servicesPage div.servicesList {
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on tablet */
  }
}
@media (min-width: 992px) {
  #servicesPage div.servicesList {
    grid-template-columns: repeat(3, 1fr);
    /* 3 columns on desktop */
  }
}
#servicesPage div.servicesList div.service {
  box-sizing: border-box;
  /* Includes padding and border in the width */
  height: 240px;
  background-color: rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}
#servicesPage div.servicesList div.service h2 {
  color: white;
  font-size: 2rem;
  position: relative;
  z-index: 11;
  margin-bottom: 0px;
  padding-bottom: 0px;
  width: 100%;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.2);
  text-shadow: 0px 2px 10px rgb(0, 0, 0);
}
#servicesPage div.servicesList div.service div.contentImage {
  position: absolute;
  z-index: 10;
}
#servicesPage div.servicesList div.service > a {
  z-index: 12;
}

#serviceContentPage section#postContent {
  /* background-image: url(/static/romforddigital/images/white-to-gray.png) !important;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center bottom; */
}
#serviceContentPage section#postContent div.ctaSection {
  margin-top: 140px;
}

#contactPage section#contactFormSection div.sectionContentContainer div.contentContainer > p {
  font-size: 1.2em;
  padding-left: 20px;
  padding-right: 30px;
  text-align: center;
}
#contactPage section#contactFormSection div.sectionContentContainer div.contentContainer form {
  padding: 0px 15px;
}
#contactPage section#contactFormSection div.sectionContentContainer div.contentContainer textarea {
  min-height: 250px;
}
#contactPage section#googleMapsSection {
  width: 100%;
  max-width: 100%;
  margin: 0px;
  margin-top: 100px;
}
#contactPage section#googleMapsSection iframe {
  width: 100%;
}

div.hypeQuote {
  display: flex;
  flex-direction: row;
  margin: 100px 0px 140px 0px;
  column-gap: 10px;
}
@media (min-width: 576px) {
  div.hypeQuote {
    column-gap: 40px;
  }
}
div.hypeQuote div.hypeQuoteStat {
  height: fit-content;
  background-color: var(--bs-primary);
  color: white;
  padding: 5px;
}
@media (min-width: 576px) {
  div.hypeQuote div.hypeQuoteStat {
    padding: 20px;
  }
}
div.hypeQuote div.hypeQuoteStat div.popoutStat {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  justify-content: flex-start;
  /* Align items to the top */
  text-align: center;
  font-family: var(--font2);
}
div.hypeQuote div.hypeQuoteStat div.popoutStat span.measure {
  font-size: 40px;
  line-height: 40px;
  font-weight: 900;
}
@media (min-width: 576px) {
  div.hypeQuote div.hypeQuoteStat div.popoutStat span.measure {
    font-size: 80px;
    line-height: 80px;
  }
}
div.hypeQuote div.hypeQuoteStat div.popoutStat span.measure span.measureUnit {
  line-height: 1;
  font-size: 16px;
  vertical-align: top;
}
@media (min-width: 576px) {
  div.hypeQuote div.hypeQuoteStat div.popoutStat span.measure span.measureUnit {
    font-size: 30px;
  }
}
div.hypeQuote figure {
  border-left: 4px solid var(--bs-primary);
  padding: 5px 0px 5px 15px;
  margin-block-end: auto;
}
@media (min-width: 576px) {
  div.hypeQuote figure {
    padding: 5px 0px 5px 20px;
  }
}
div.hypeQuote figure blockquote {
  margin-bottom: 2em;
}
div.hypeQuote figure blockquote strong {
  white-space: nowrap;
}
div.hypeQuote figure figcaption {
  text-align: right;
  margin-bottom: 0px;
}
div.hypeQuote figure figcaption cite {
  margin-right: 5px;
}
@media (min-width: 576px) {
  div.hypeQuote figure figcaption cite {
    white-space: nowrap;
  }
}
div.hypeQuote figure figcaption cite::after {
  content: "/";
  margin-left: 5px;
}
div.hypeQuote figure figcaption cite:last-child::after {
  content: unset;
}

div#loginPage {
  background-color: #000000;
  position: relative;
}
div#loginPage div.pageStageWrapper {
  background: url("/static/images/site/tiled2.webp");
  /* Tile the image */
  background-repeat: repeat;
  background-color: #030303;
  background-blend-mode: multiply;
}
div#loginPage div.pageStage {
  padding-inline-start: 1rem;
  padding-inline-end: 1rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  min-height: 100dvh;
  display: flex;
  position: relative;
}
@media (min-width: 576px) {
  div#loginPage div.pageStage {
    padding-inline-start: 3rem;
    padding-inline-end: 3rem;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
@media (min-width: 992px) {
  div#loginPage div.pageStage {
    padding-inline-start: 5rem;
    padding-inline-end: 5rem;
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}
div#loginPage div.pageStage div.pageContentWrapper {
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  /* layout flow */
  /* content styling */
}
@media (min-width: 992px) {
  div#loginPage div.pageStage div.pageContentWrapper {
    flex-direction: row;
  }
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent {
  order: 2;
  flex-grow: 1;
}
@media (min-width: 992px) {
  div#loginPage div.pageStage div.pageContentWrapper div#pageContent {
    order: 1;
  }
}
div#loginPage div.pageStage div.pageContentWrapper div.previewImage {
  order: 1;
}
@media (min-width: 992px) {
  div#loginPage div.pageStage div.pageContentWrapper div.previewImage {
    order: 2;
  }
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent {
  background-color: white;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  /* Ensure the content stays on top */
  z-index: 1;
  /* Bring the content in front */
  overflow: hidden;
  /* The blur layer */
}
@media (min-width: 576px) {
  div#loginPage div.pageStage div.pageContentWrapper div#pageContent {
    min-width: 26.25rem;
  }
}
@media (min-width: 992px) {
  div#loginPage div.pageStage div.pageContentWrapper div#pageContent {
    padding: 3.5rem;
  }
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 512px;
  height: 512px;
  z-index: -1;
  /* Push background behind content */
  /* background: conic-gradient(
    from 0deg,
    #08f,
    #f60,
    #bbffa1,
    #4c00ff,
    #ab2666,
    #09f
  ); */
  /* animation: ColorBlobsSpin 60s linear infinite; */
  border-radius: inherit;
  /* Inherit border-radius from parent if needed */
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  /* Place it between the background and content */
  backdrop-filter: blur(100px);
  /* Apply the blur */
  border-radius: inherit;
  /* Inherit the parent's border-radius */
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent a {
  text-decoration: none;
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent div.goBack p a {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent div.oauthLogins {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent button#login {
  margin-top: 20px;
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent h1 {
  font-family: var(--font1);
  text-transform: uppercase;
  color: black;
}
div#loginPage div.pageStage div.pageContentWrapper div#pageContent h1 + p {
  color: black;
}
div#loginPage div.pageStage div.pageContentWrapper div.previewImage {
  min-height: 300px;
  position: relative;
  justify-content: flex-end;
  display: inline-flex;
  align-items: flex-end;
  width: 100%;
}
div#loginPage div.pageStage div.pageContentWrapper div#pageForm {
  padding: 10px;
  border-radius: 5px;
  margin-top: 50px;
}
div#loginPage div.pageStage div.pageContentWrapper div#pageForm div.alert h4 {
  font-size: 16px;
}
div#loginPage div.pageStage div.inviteCode {
  margin: 50px 0px;
}
div#loginPage div.pageStage div.legal {
  position: absolute;
  bottom: 0px;
  display: flex;
  flex-direction: row;
  column-gap: 20px;
}

#insightsPage div.insightArticleList {
  text-transform: capitalize;
  display: grid;
  gap: 20px;
}
#insightsPage div.insightArticleList div.card {
  border: none;
  overflow: hidden;
  --bs-card-bg: #000000;
  box-shadow: 0 1px 9px rgba(0, 0, 0, 0.4);
}
#insightsPage div.insightArticleList div.card h5 {
  font-family: var(--font1);
  color: white;
  text-transform: uppercase;
}

#insightspostContentPage section#insightPost div.sectionContentContainer {
  padding: 0px 15px;
  margin: 0px auto;
}
#insightspostContentPage section#insightPost div.sectionContentContainer h2 {
  margin: 30px 0px 60px 0px;
}
#insightspostContentPage section#insightPost div.sectionContentContainer p {
  margin-bottom: 20px;
  text-wrap: pretty;
}
#insightspostContentPage section#insightPost div.sectionContentContainer p em {
  font-weight: bolder;
}
#insightspostContentPage section#insightPost div.sectionContentContainer p + h2 {
  margin: 60px 0px;
}
#insightspostContentPage section#insightPost div.ctaSection {
  margin-top: 100px;
}

#buildPage p.callToAction {
  text-align: center;
}
#buildPage p.callToAction a#ctaLink {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
}

dialog#modalToOpen {
  overflow: visible;
  border: none;
  padding: 0px;
  overscroll-behavior: contain;
  background-color: unset;
}
dialog#modalToOpen::backdrop {
  background-color: rgba(0, 0, 0, 0.5019607843);
  backdrop-filter: blur(8px);
}
dialog#modalToOpen div.modalContentStage {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5019607843);
  max-width: 800px;
  text-align: left;
  background-color: black;
  min-width: 80%;
}
dialog#modalToOpen div.closeModal {
  display: flex;
  justify-content: right;
  margin-bottom: 5px;
  position: relative;
  z-index: 10;
}
dialog#modalToOpen div.closeModal button.btn-close {
  background-color: white;
  padding: 10px;
  border-radius: 50%;
}
dialog#modalToOpen div.closeModal button.btn-close:focus {
  outline: 0;
  box-shadow: none;
}
dialog#modalToOpen div.closeModal + div.modalContentStage {
  margin-top: -50px;
}
@media (max-width: 992px) {
  dialog#modalToOpen.modalWizard {
    width: 100%;
    top: 0px;
    margin: 0px;
    height: 100vh;
    max-width: unset;
    max-height: unset;
  }
  dialog#modalToOpen.modalWizard::backdrop {
    background-color: rgba(0, 0, 0, 0.5019607843);
    backdrop-filter: none !important;
  }
  dialog#modalToOpen.modalWizard div.modalContentStage {
    border-radius: 0px;
    max-width: unset !important;
    height: 100vh;
  }
  dialog#modalToOpen.modalWizard div.closeModal + div.modalContentStage {
    margin-top: -41px;
  }
}

/* workflows */
div.workflowStepper {
  margin: 20px;
}
@media (min-width: 992px) {
  div.workflowStepper {
    margin: 0px auto;
  }
}
div.workflowStepper ol {
  list-style-type: none;
  display: flex;
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5715;
  list-style: none;
  width: 100%;
}
div.workflowStepper ol:has(.active) li div.stepContainer {
  color: #ba18bf;
}
div.workflowStepper ol:has(.active) li div.stepContainer div.stepIcon {
  color: #ba18bf;
}
div.workflowStepper ol:has(.active) li div.stepContainer div.stepContent::after {
  background-color: #ba18bf;
}
div.workflowStepper ol:has(.active) .active ~ li div.stepContainer {
  color: #555;
}
div.workflowStepper ol:has(.active) .active ~ li div.stepContainer div.stepIcon {
  color: #555;
}
div.workflowStepper ol:has(.active) .active ~ li div.stepContainer div.stepContent::after {
  background-color: #f0f0f0;
}
div.workflowStepper ol li {
  position: relative;
  display: inline-block;
  flex: 1 1;
  overflow: hidden;
  padding-left: 16px;
  white-space: nowrap;
  text-transform: uppercase;
  font-family: var(--font);
  font-weight: 500;
}
div.workflowStepper ol li.active div.stepIcon {
  color: pink !important;
}
div.workflowStepper ol li.active div.stepContent {
  color: pink !important;
}
div.workflowStepper ol li.active div.stepContent::after {
  background-color: #f0f0f0 !important;
}
div.workflowStepper ol li:last-child {
  flex: none;
}
div.workflowStepper ol li div.stepContainer {
  display: inline-block;
}
div.workflowStepper ol li div.stepContainer div.stepIcon {
  display: inline-block;
  margin-right: 8px;
  font-size: 24px;
}
div.workflowStepper ol li div.stepContainer div.stepContent {
  display: inline-block;
  font-size: 16px;
  line-height: 32px;
  position: relative;
  padding-right: 16px;
}
div.workflowStepper ol li div.stepContainer div.stepContent::after {
  position: absolute;
  top: 16px;
  left: 100%;
  display: block;
  width: 9999px;
  height: 1px;
  content: "";
}

div.wizardControl {
  min-width: 80%;
}
div.wizardControl div.stage {
  max-width: 900px;
  margin: 0px auto;
  padding: 20px 0px;
  margin-top: 20px;
  margin-bottom: 40px;
  margin: 0px auto;
}
@media (min-width: 992px) {
  div.wizardControl div.stage {
    padding: 20px;
  }
}
div.wizardControl div.stage > div.workflowStep label {
  color: #999;
}
div.wizardControl div.stage > div.workflowStep div.stepTitle > h2 {
  color: white !important;
  font-family: var(--font1);
  font-size: 1em !important;
  text-shadow: 0px 2px black;
  margin-bottom: 30px !important;
  padding-bottom: 20px;
  border-bottom: 1px solid #333333;
  margin-top: 20px !important;
}
div.wizardControl div.stage > div.workflowStep div.stepContentContainer > p {
  color: white;
  font-size: 1.2em;
}
div.wizardControl div.stage > div.workflowStep div.stepContentContainer > p span.estimatedDeliveryDate {
  font-weight: 900;
  color: white;
  font-size: 1.2em;
}
div.wizardControl div.stage > div.workflowStep div.stepContentContainer > p.signoff {
  margin-top: 80px;
}
div.wizardControl div.stage > div.workflowStep div.workflowStepperControls {
  border-top: 1px solid #333333;
  margin-top: 30px;
  padding-top: 20px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 10px;
}
div.wizardControl div.stage > div.workflowStep div.workflowStepperControls div.link-or-button {
  margin-top: 20px;
  /* &:cbefore {
      content: "wwww";
  } */
}
div.wizardControl div.stage > div.workflowStep div.workflowStepperControls form {
  display: flex;
  align-items: center;
}
div.wizardControl div.workflowStep div.workflowStepContent div.stepContentContainer {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 10px;
}
div.wizardControl div.workflowStep div.workflowStepContent div.stepContentContainer aside {
  display: none;
}

div.resizePanelControl {
  padding-bottom: 0px;
  display: flex;
  justify-content: center;
  width: 40px;
}
div.resizePanelControl[data-resizedirection=height] {
  border-bottom: 1px solid #333;
  margin-bottom: 30px;
  width: unset;
}
div.resizePanelControl p {
  text-align: center;
}
div.resizePanelControl p span.resizeIcon {
  display: block;
  margin: 0px auto -20px auto;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: ns-resize;
  background-color: black;
}
div.resizePanelControl p span.resizeIcon svg {
  fill: #333;
}
div.resizePanelControl[data-resizedirection=width] p {
  height: 100%;
  width: 1px;
  border-right: 1px solid #333;
}
div.resizePanelControl[data-resizedirection=width] p span.resizeIcon {
  margin-left: -10px;
  cursor: ew-resize;
}
div.resizePanelControl[data-resizedirection=width] p span.resizeIcon svg {
  width: 20px;
  height: 20px;
  transform: rotate(90deg);
  vertical-align: unset;
}

div#playmkrAIChatPage #footer div.socials {
  display: none;
}
div#playmkrAIChatPage div#workflowGraphControl {
  position: relative;
}
div#playmkrAIChatPage div#workflowGraphControl div.litegraph {
  position: relative;
  background-color: #000;
  padding: 10px;
  border-radius: 0px 0px 4px 4px;
  overflow: hidden;
}
div#playmkrAIChatPage div#workflowGraphControl div.litegraph canvas {
  width: 100%;
  height: 100%;
  border: 1px solid black;
}
div#playmkrAIChatPage div#workflowGraphControl div.litegraph canvas.premptDrop {
  border: 1px solid #ff00f3;
}
div#playmkrAIChatPage div#chatcontrolsTabsContainer div.tab-content {
  min-height: 200px;
}
div#playmkrAIChatPage div#terminal {
  height: 100px;
}
div#playmkrAIChatPage div#pageContent {
  display: flex;
  flex-direction: column;
  height: 100dvh;
  /* Full viewport height */
  overflow: scroll;
  /* layout */
}
div#playmkrAIChatPage div#pageContent div.dashboardContainer {
  /* border: 1px solid green; */
  align-self: flex-start;
  flex-shrink: 0;
  /* Prevents shrinking */
}
div#playmkrAIChatPage div#pageContent div.chatContainer {
  display: grid;
  grid-template-columns: auto 1fr;
  height: calc(100vh - 90px);
  max-height: calc(100vh - 90px);
  background-color: rgba(0, 0, 0, 0.8666666667);
  overflow: hidden;
  min-height: 0;
  /* Prevents overflow */
}
div#playmkrAIChatPage div#pageContent div.chatContainer div#aiAgentChatContainer {
  flex-grow: 0;
  flex-shrink: 0;
  width: 40%;
  min-width: 400px;
  display: flex;
  flex-direction: row;
}
div#playmkrAIChatPage div#pageContent div.chatContainer div#aiAgentChatContainer div#aiAgentChat {
  height: 100%;
  margin-bottom: 10px;
}
div#playmkrAIChatPage div#pageContent div.chatContainer > div.resizePanelControl {
  width: 20px;
}
div#playmkrAIChatPage div#pageContent div.chatContainer > div.resizePanelControl p {
  height: 100%;
  border-left: 1px solid #333;
  display: flex;
  align-items: center;
}
div#playmkrAIChatPage div#pageContent div.chatContainer div.aiAgentControlsContainer {
  flex: 1;
  padding: 10px;
  height: 100%;
}
div#playmkrAIChatPage div#chatDashboard {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
div#playmkrAIChatPage div#chatDashboard > div {
  padding: 5px;
  flex: 0 1 auto;
  /* Allow sizing based on content */
  white-space: nowrap;
  /* Prevent wrapping */
}
div#playmkrAIChatPage div#chatDashboard > div:first-child {
  min-width: 800px;
  /* Set your desired minimum width */
  flex-shrink: 0;
  /* Prevent shrinking */
}
div#playmkrAIChatPage div#chatDashboard > div div.shadowLabel {
  color: grey;
  text-transform: uppercase;
  font-size: 10px;
  margin-bottom: 10px;
}
div#playmkrAIChatPage div#chatDashboard div#chatParticipants div.participantsList {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
div#playmkrAIChatPage div.aiAgentControlsContainer {
  display: flex;
  flex-direction: column;
}
div#playmkrAIChatPage div.aiAgentControlsContainer div#chatcontrolsTabsContainer {
  min-height: 200px;
  overflow: hidden;
  border: 1px solid gold;
  overflow-y: scroll;
}
div#playmkrAIChatPage div.aiAgentControlsContainer div.resizePanelControl {
  height: 30px;
}
div#playmkrAIChatPage div.aiAgentControlsContainer div.resizePanelControl p {
  border-bottom: 1px solid #333;
}
div#playmkrAIChatPage div.aiAgentControlsContainer div#workflowControlsContainer {
  flex: 1;
}
div#playmkrAIChatPage div.aiAgentControlsContainer div#chatcontrolsTabsContainer,
div#playmkrAIChatPage div.aiAgentControlsContainer div#workflowControlsContainer {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 10px;
}

/* layout */
div#aiAgentChat {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 280px);
  /* Or any fixed height */
  width: 100%;
}
div#aiAgentChat div#chatHistoryControls {
  flex: 0 1 auto;
  /* Default behavior */
}
div#aiAgentChat div.aiAgentChatHistory {
  background-image: url("/static/images/chat/chat-background-inverted.png");
  border-radius: 5px;
  border: 20px solid black;
  border-bottom: 0px;
  background-color: black;
  flex: 1 1 0;
  /* Takes up remaining space */
  overflow: hidden;
  /* Prevents expansion */
  overflow-y: scroll;
}
div#aiAgentChat div.aiAgentChatForm {
  flex: 0 1 auto;
  /* Default behavior */
}

div#aiAgentChat {
  --message-time-color: white;
  --chat-summary-color: white;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 10px;
}
div#aiAgentChat div.aiAgentChatForm {
  background-color: black;
  padding: 20px;
  border-radius: 0px 0px 4px 4px;
}

div.aiAgentChatHistory {
  display: flex;
  flex-direction: column-reverse;
  /* Reverses the order of messages */
  height: 100%;
}
div.aiAgentChatHistory div.sseContainer {
  position: relative;
  padding: 3px;
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  /* Reverses the order of messages */
}
div.aiAgentChatHistory div.chatContainer div.chatSummary {
  position: absolute;
  top: 0px;
  color: var(--chat-summary-color);
}
div.aiAgentChatHistory div.chatContainer div.chatMessageListContainer {
  /* border: 1px solid blue; */
  width: 100%;
  display: flex;
  flex-direction: column-reverse;
  /* Reverses the order of messages */
  overflow-y: auto;
  /* Enables scrolling */
}
div.aiAgentChatHistory div.chatMessageList {
  background-color: rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column-reverse;
  /* Reverses the order of messages */
  overflow: hidden;
  /* Enables scrolling */
  padding: 10px;
}
div.aiAgentChatHistory div.chatMessageEvent {
  padding: 4px;
  background-color: black;
  color: white;
}
div.aiAgentChatHistory div.chatMessageEvent img {
  max-width: 50%;
}
div.aiAgentChatHistory div.chatMessageTerminalEvent {
  padding: 4px;
  background-color: rgba(71, 61, 139, 0.76);
  border-radius: 5px;
  margin: 20px auto;
  backdrop-filter: blur(3px);
  /* Apply the blur */
  color: white;
}
div.aiAgentChatHistory div.chatMessageTerminalEvent span.terminalCommand {
  background-color: white;
  color: black;
  font-family: monospace;
}
div.aiAgentChatHistory div.chatMessage {
  align-self: flex-start;
  /* Aligns to the left */
  max-width: 60%;
  /* Limit width of messages */
}
div.aiAgentChatHistory div.chatMessage div.messageContentStage {
  display: flex;
  flex-direction: row;
  position: relative;
}
div.aiAgentChatHistory div.chatMessage div.messageContentStage div.chatMessageControls {
  position: absolute;
  right: -20px;
  margin-right: -20px;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
div.aiAgentChatHistory div.chatMessage div.messageContentStage div.chatMessageControls svg {
  fill: white;
  width: 15px;
  height: 15px;
  cursor: pointer;
}
div.aiAgentChatHistory div.chatMessage div.messageContentStage div.chatMessageControls div.inferenceTimeTaken {
  position: relative;
  display: flex;
  flex-direction: row;
  column-gap: 10px;
}
div.aiAgentChatHistory div.chatMessage div.messageContentStage div.chatMessageControls div.inferenceTimeTaken p {
  font-size: 12px;
  position: absolute;
  white-space: nowrap;
  margin-left: 23px;
}
div.aiAgentChatHistory div.chatMessage div.messageContent {
  padding: 5px;
  border-radius: 5px;
  font-size: 16px;
  word-wrap: break-word;
  margin-top: 10px;
  margin-bottom: 0px;
  background-color: #fff;
  /* White for received messages */
  color: #333;
  border: 1px solid #ddd;
  /* Optional border for received messages */
}
div.aiAgentChatHistory div.chatMessage div.messageContent p:last-child {
  margin-bottom: 0px;
}
div.aiAgentChatHistory div.chatMessage div.copyMessage {
  background-color: black;
  border-radius: 50%;
}
div.aiAgentChatHistory div.chatMessage div.copyMessage svg {
  width: 10px;
  height: 10px;
  fill: white;
  cursor: pointer;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummaryContainer ul {
  list-style-type: none;
  border-left: 3px solid #44237B;
  border-left: 3px solid;
  border-image: linear-gradient(to bottom, #44237B, #120920) 1;
  margin-left: 13px;
  padding-left: 11px;
  margin-bottom: 15px;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummaryContainer ul li {
  padding-left: 9px;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 12px;
  display: flex;
  flex-direction: row;
  column-gap: 7px;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummaryContainer ul li span.checkIcon svg {
  width: 15px;
  height: 15px;
  fill: white;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummaryContainer ul li.sublist {
  display: block;
  padding-left: 0px;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listExpanderPanel {
  background-color: rgba(0, 0, 0, 0.2);
  padding: 2px;
  border-radius: 2px;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listExpanderPanel div.listExpanderTitle {
  background-color: #000000;
  padding: 5px;
  border-radius: 2px;
  display: flex;
  flex-direction: row;
  column-gap: 4px;
  cursor: pointer;
  text-transform: uppercase;
  align-items: center;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listExpanderPanel div.listExpanderTitle div.checkIcon svg {
  width: 20px;
  height: 20px;
  fill: #FF00F3;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listExpanderPanel div.listExpanderTitle p.listExpander {
  color: #ff00f3;
  margin-bottom: 0px;
  font-size: 14px;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listExpanderPanel div.listExpanderTitle div.expandIcon {
  margin-left: auto;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listExpanderPanel div.listExpanderTitle div.expandIcon svg {
  width: 20px;
  height: 20px;
  fill: grey;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listTitle {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listTitle[inert] {
  grid-template-rows: 0fr;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listTitle[inert] ul {
  margin-bottom: 0px;
}
div.aiAgentChatHistory div.chatMessage div.pipelineExecutionSummary div.listTitle > * {
  overflow: hidden;
}
div.aiAgentChatHistory div.chatMessage p.messageTime {
  font-size: 10px;
  margin-bottom: 0px;
  color: var(--message-time-color);
}
div.aiAgentChatHistory div.chatMessage div.messageExtraInteractions {
  display: none;
}
div.aiAgentChatHistory div.chatMessage.messageFromMe {
  align-self: flex-end;
  /* Aligns to the right */
}
div.aiAgentChatHistory div.chatMessage.messageFromMe div.messageContentStage div.messageContent {
  background-color: #dcf8c6;
  /* Light green for sent messages */
  color: #333;
}
div.aiAgentChatHistory div.chatMessage.messageFromMe div.messageContentStage div.chatMessageControls {
  display: none;
}
div.aiAgentChatHistory div.chatMessage.messageFromMe p.messageTime {
  text-align: right;
}
div.aiAgentChatHistory div.chatMessage.repliedMessage {
  border-radius: 5px;
  /* Light green for sent messages */
  /* background-color: #dcf8c63a;  */
  background-color: rgba(42, 18, 87, 0.3607843137);
  padding: 5px;
  backdrop-filter: blur(3px);
  /* Apply the blur */
}
div.aiAgentChatHistory div.chatMessage.repliedMessage div.inReplyToMessage {
  border-left: 2px solid #ff00f3;
  padding-left: 5px;
}
div.aiAgentChatHistory div.chatMessage.repliedMessage div.inReplyToMessage p {
  margin-bottom: 0px;
  font-size: 12px;
}
div.aiAgentChatHistory div.chatMessage.repliedMessage div.messageContent {
  margin-bottom: 2px;
}
div.aiAgentChatHistory div.chatMessage.repliedMessage div.messageContent p {
  margin-top: 2px;
}

div#webcamchatPage div#pageContent {
  padding-bottom: 200px;
}
div#webcamchatPage div#pageContent div#actions-area {
  padding: 10px;
}
div#webcamchatPage div#pageContent div#actions-area div.userControls {
  display: flex;
  gap: 20px;
}
div#webcamchatPage div#pageContent div#actions-area > div {
  display: flex;
  flex-direction: row;
  gap: 20px;
}
div#webcamchatPage div#pageContent div#participants-area {
  background-color: black;
  padding: 10px;
  display: grid;
  gap: 20px;
  min-height: calc(100dvh - 65px);
  position: relative;
}
div#webcamchatPage div#pageContent div#participants-area.duoParty {
  display: block;
}
div#webcamchatPage div#pageContent div#participants-area.duoParty div.participant.isYou {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 220px;
  height: 130px;
}
div#webcamchatPage div#pageContent div#participants-area.duoParty div.participant.isYou.isMobile {
  /* different dimensions here */
}
@media (min-width: 576px) {
  div#webcamchatPage div#pageContent div#participants-area {
    grid-template-columns: 1fr 1fr;
    min-height: unset;
  }
}
@media (min-width: 992px) {
  div#webcamchatPage div#pageContent div#participants-area {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (min-width: 1200px) {
  div#webcamchatPage div#pageContent div#participants-area {
    grid-template-columns: 1fr 1fr 1fr 1fr;
  }
}
div#webcamchatPage div#pageContent div#participants-area div.participant {
  position: relative;
  border: 2px solid grey;
  padding: 5px;
  height: 100%;
  transition: border 0.2s ease-in-out;
}
div#webcamchatPage div#pageContent div#participants-area div.participant.speaking {
  border-color: white;
}
div#webcamchatPage div#pageContent div#participants-area div.participant video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
div#webcamchatPage div#pageContent div#participants-area div.participant div.info-bar {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 5px;
  color: white;
  position: absolute;
  top: 0px;
  left: 0px;
  width: calc(100% - 5px);
  height: 30px;
}
div#webcamchatPage div#pageContent div#participants-area div.participant div.info-bar div.name {
  font-size: 14px;
  line-height: 22px;
  padding-left: 5px;
}
div#webcamchatPage div#pageContent div#participants-area div.participant div.info-bar span.size, div#webcamchatPage div#pageContent div#participants-area div.participant div.info-bar span.bitrate, div#webcamchatPage div#pageContent div#participants-area div.participant div.info-bar span.codec {
  display: none;
}
div#webcamchatPage div#pageContent div#participants-area div.participant div.info-bar div.right {
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 5px;
}
div#webcamchatPage div#pageContent div#participants-area div.participant div.info-bar div.right span.connection-health.connection-excellent {
  color: greenyellow;
}
div#webcamchatPage div#pageContent div#participants-area div.participant div.info-bar div.right span.mic-on {
  color: red;
}
div#webcamchatPage div#pageContent a#ctaLink {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
div#webcamchatPage div#pageContent button.toggleControl {
  display: flex;
  flex-direction: row;
  gap: 4px;
}
div#webcamchatPage div#pageContent button.toggleControl span.disableControl {
  display: block;
}
div#webcamchatPage div#pageContent button.toggleControl span.enableControl {
  display: none;
}
div#webcamchatPage div#pageContent button.toggleControl.active span.disableControl {
  display: none;
}
div#webcamchatPage div#pageContent button.toggleControl.active span.enableControl {
  display: block;
}
div#webcamchatPage progress#local-volume {
  position: absolute;
  bottom: 8px;
  width: 80%;
  margin: 0px auto;
  left: 10px;
  right: 10px;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
}
div#webcamchatPage progress#local-volume::-webkit-progress-bar {
  -webkit-appearance: progress-bar;
  background-color: gray;
}
div#webcamchatPage progress#local-volume::-webkit-progress-value {
  -webkit-appearance: progress-bar;
  background-color: orange;
}

div.supportChat {
  position: fixed;
  z-index: 9999;
  right: 20px;
  bottom: 20px;
  height: 80px;
  width: 80px;
  border-radius: 50%;
  background-color: #1c2b66;
  transition: all 0.2s ease-in;
}
div.supportChat div.supportChatContent {
  display: none;
}
div.supportChat.expanded {
  height: 80vh;
  min-width: 80%;
  border-radius: 4px;
  box-shadow: 0px 0px 10px black;
  transition: none;
}
div.supportChat.expanded div.supportChatContent {
  display: block;
}
div.supportChat p#supportChatExpandToggle {
  position: absolute;
  bottom: 0px;
  right: 0px;
  margin-bottom: 0px;
  height: 80px;
  width: 80px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
div.supportChat p#supportChatExpandToggle a {
  display: flex;
  height: 80px;
  width: 80px;
  justify-content: center;
  align-items: center;
  color: #FFF;
  text-decoration: none;
  text-align: center;
}
div.supportChat p#supportChatExpandToggle a span#clickToChatPopupCTA {
  padding: 4px;
  white-space: nowrap;
}
div.supportChat p#supportChatExpandToggle a span.icon {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
}
div.supportChat p#supportChatExpandToggle a span.icon i {
  display: block;
  height: 40px;
  width: 40px;
  font-size: 40px;
  position: relative;
  z-index: 9999;
}
div.supportChat .component_chat-popup {
  box-shadow: 0px 0px 10px black;
  position: fixed;
  width: 400px;
  right: 130px;
  bottom: 110px;
  border-radius: 5px;
  opacity: 0;
  animation: fadein 0.1s ease-in;
  animation-fill-mode: forwards;
  background: #111;
  padding: 10px;
}
div.supportChat .component_chat-popup .closeChat {
  position: absolute;
  right: 10px;
}
div.supportChat .component_chat-popup .closeChat .anticon-close-circle {
  color: white;
  cursor: pointer;
}
div.supportChat .component_chat-popup .closeChat .anticon-close-circle svg {
  width: 20px;
  height: 20px;
}
div.supportChat .component_chat-popup .chatHeader .participants ul {
  clear: both;
  margin: 0px;
  padding: 0px;
}
div.supportChat .component_chat-popup .chatHeader .participants ul li {
  float: left;
}
div.supportChat .component_chat-popup .chatHeader .participants ul li:nth-child(1) {
  margin-right: -10px;
}
div.supportChat .component_chat-popup .chatHeader .participants p {
  line-height: 35px;
  margin-bottom: 10px;
  margin-left: 20px;
  padding-left: 65px;
  color: white;
}
div.supportChat .component_chat-popup form#send-message-form {
  position: relative;
}
div.supportChat .component_chat-popup form#send-message-form div.inputField input {
  margin-right: 200px;
  margin-bottom: 0px;
  width: 294px;
}
div.supportChat .component_chat-popup form#send-message-form div.formSubmit {
  position: absolute;
  top: 0px;
  right: 0px;
}
div.supportChat .component_chat-popup .chatFooter .chatTools {
  display: none;
}
div.supportChat .component_chat-popup .chatFooter .videoSupport p {
  color: white;
  display: flex;
  align-items: center;
  column-gap: 5px;
}
div.supportChat .component_chat-popup .chatFooter .videoSupport p .anticon-video-camera {
  cursor: pointer;
}
div.supportChat .component_chat-popup .chatFooter .videoSupport p .anticon-video-camera svg {
  width: 20px;
  height: 20px;
}
div.supportChat .component_chat-popup .chatFooter .chatTools ul {
  clear: both;
  margin: 0px;
  padding: 0px;
}
div.supportChat .component_chat-popup .chatFooter .chatTools ul li {
  float: left;
}
div.supportChat .component_chat-popup .chatFooter .chatTools ul li svg {
  width: 15px;
  height: 15px;
}
div.supportChat .component_received-messages {
  margin-bottom: 10px;
}
div.supportChat label {
  display: none;
}
div.supportChat div.messages {
  background-color: #000;
  height: 300px;
  overflow: auto;
  overflow-y: scroll;
  display: flex;
  flex-direction: column-reverse;
}
div.supportChat div.messages div.component_message {
  background-color: #111;
  color: white;
  font-size: 2em;
  padding: 15px;
  margin: 10px 10px 10px 50px;
  border-radius: 4px;
}
div.supportChat div.messages div.component_message::before {
  border: 1px solid red;
}
div.supportChat div.messages div.component_message p.messageMessage {
  margin-bottom: 0px;
  font-size: 0.6em;
}
div.supportChat div.messages div.component_message p.messageTime {
  display: none;
  color: #666;
  margin-bottom: 0px;
  font-size: 0.6em;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(3%);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

/*# sourceMappingURL=styles.css.map */
