.background-primary,
body {
  background-color: #f8f8f8;
}

.container {
  padding-left: 0px !important;
}

.start-area-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.start-button-center {
  flex: 0 0 auto;
  text-align: center;
  position: relative;
}

/* =========================================================
   Domain migration top banner
   ========================================================= */
.domain-migration-notice {
  position: relative;
  z-index: 1000;
  display: flex;
  box-sizing: border-box;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  padding: 8px 56px 8px 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(149, 235, 255, 0.35);
  background:
    radial-gradient(1200px 120px at 15% -20%, rgba(149, 235, 255, 0.18), transparent 60%),
    radial-gradient(900px 120px at 85% 120%, rgba(120, 110, 255, 0.22), transparent 60%),
    linear-gradient(90deg, #1f2347 0%, #2d335d 50%, #1f2347 100%);
  box-shadow:
    inset 0 -1px 0 rgba(255, 255, 255, 0.06),
    0 2px 6px rgba(0, 0, 0, 0.15);
  color: #fff;
  text-align: center;
  animation: domain-migration-fade-in 0.45s ease-out both;
}

/* Glowing accent strip along the bottom edge */
.domain-migration-notice::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(149, 235, 255, 0.0) 10%,
    rgba(149, 235, 255, 0.85) 50%,
    rgba(149, 235, 255, 0.0) 90%,
    transparent 100%
  );
  background-size: 200% 100%;
  animation: domain-migration-shimmer 6s linear infinite;
  pointer-events: none;
}

@keyframes domain-migration-fade-in {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes domain-migration-shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.domain-notice-dismissed .domain-migration-notice,
.domain-migration-notice.is-hidden {
  display: none;
}

.domain-migration-notice-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 22px;
  width: 100%;
  max-width: 1190px;
}

.domain-migration-notice-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 0;
}

.domain-migration-notice-icon {
  position: relative;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #95ebff;
  box-shadow: 0 0 0 0 rgba(149, 235, 255, 0.7);
  color: transparent;
  font-size: 0;
  animation: domain-migration-pulse 2.2s ease-out infinite;
}

.domain-migration-notice-icon::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(149, 235, 255, 0.25);
  filter: blur(2px);
}

@keyframes domain-migration-pulse {
  0%   { box-shadow: 0 0 0 0   rgba(149, 235, 255, 0.65); }
  70%  { box-shadow: 0 0 0 10px rgba(149, 235, 255, 0);   }
  100% { box-shadow: 0 0 0 0   rgba(149, 235, 255, 0);   }
}

.domain-migration-notice p {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 6px 10px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.45;
}

.domain-migration-notice p strong {
  font-weight: 700;
  color: #fff;
}

.domain-migration-notice p a {
  position: relative;
  color: #95ebff;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease;
}

.domain-migration-notice p a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.6);
  transform-origin: center;
  transition: opacity 0.2s ease, transform 0.25s ease;
}

.domain-migration-notice p a:hover::after,
.domain-migration-notice p a:focus::after {
  opacity: 0.85;
  transform: scaleX(1);
}

.domain-migration-notice-separator {
  color: rgba(149, 235, 255, 0.55);
  font-size: 10px;
  line-height: 1;
}

.domain-migration-notice-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 0 16px;
  border: 1px solid rgba(149, 235, 255, 0.85);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 1px 2px rgba(0, 0, 0, 0.18);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  justify-self: end;
  transition: background 0.2s ease, border-color 0.2s ease,
              transform 0.15s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.domain-migration-notice-action .glyphicon,
.domain-migration-notice-action .glyphicon-new-window {
  display: inline-block;
  width: 12px;
  height: 12px;
  font-size: 0;
  background: none;
  color: transparent;
  position: relative;
  top: 0;
  transition: transform 0.2s ease;
}

.domain-migration-notice-action .glyphicon::before,
.domain-migration-notice-action .glyphicon-new-window::before {
  content: "";
  position: absolute;
  inset: 0;
  border-right: 2px solid currentColor;
  border-top: 2px solid currentColor;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  top: 2px;
  left: 2px;
  color: #fff;
}

.domain-migration-notice-action:hover,
.domain-migration-notice-action:focus {
  border-color: #95ebff;
  background: linear-gradient(180deg, rgba(149, 235, 255, 0.22) 0%, rgba(149, 235, 255, 0.10) 100%);
  color: #fff;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 4px 12px rgba(149, 235, 255, 0.25);
}

.domain-migration-notice-action:hover .glyphicon,
.domain-migration-notice-action:focus .glyphicon {
  transform: translateX(2px);
}

.domain-migration-notice-action:active {
  transform: translateY(0);
  background: rgba(149, 235, 255, 0.18);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.2);
}

.domain-migration-notice-dismiss {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.domain-migration-notice-dismiss:hover,
.domain-migration-notice-dismiss:focus {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transform: translateY(-50%) rotate(90deg);
}

.domain-migration-notice-action:focus-visible,
.domain-migration-notice-dismiss:focus-visible {
  outline: 2px solid #95ebff;
  outline-offset: 3px;
}

/* Mobile: stack content above CTA, reduce padding */
@media (max-width: 640px) {
  .domain-migration-notice {
    padding: 10px 48px 12px 16px;
  }

  .domain-migration-notice-inner {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .domain-migration-notice-content {
    justify-content: flex-start;
    text-align: left;
  }

  .domain-migration-notice p {
    justify-content: flex-start;
    font-size: 12.5px;
  }

  .domain-migration-notice-action {
    justify-self: stretch;
    width: 100%;
  }

  .domain-migration-notice-dismiss {
    top: 8px;
    right: 8px;
    transform: none;
  }

  .domain-migration-notice-dismiss:hover,
  .domain-migration-notice-dismiss:focus {
    transform: rotate(90deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .domain-migration-notice,
  .domain-migration-notice::after,
  .domain-migration-notice-icon,
  .domain-migration-notice-action,
  .domain-migration-notice-action .glyphicon,
  .domain-migration-notice-dismiss {
    animation: none !important;
    transition: none !important;
  }
}

#dropdown-icon,
#small-icon {
  position: relative;
  padding-left: 0;
  padding-right: 0;
}

#some-links,
#some-links a,
#start,
#tos,
.infobox span,
select.form-control,
span.select-arrow-down,
span.select-arrow-down2 {
  display: inline-block;
}

input[type="range"],
select.form-control {
  -webkit-appearance: none;
  border-width: 0;
}

html {
  overflow-y: scroll;
}

body {
  font-family: "Open Sans", sans-serif !important;
}

a:hover {
  text-decoration: none;
}

#launcher-not-using a,
#tos a,
.cookie-law .cookie-law-wrapper .copy a {
  text-decoration: underline;
}

.background-primary {
  color: #0a0000;
}

.background-primary a {
  color: #333963;
}

.background-primary a.activated,
.background-primary a:hover {
  color: #0a0000;
}

.background-secondary {
  background-color: #333963;
  color: #0a0000;
}

.background-secondary a {
  color: #fff;
}

.background-secondary a.activated,
.background-secondary a:hover {
  color: #0a0000;
}

.background-tertiary {
  background-color: #f8f8f8;
  color: #0a0000;
}

.background-tertiary a {
  color: #333963;
}

.background-tertiary a.activated,
.background-tertiary a:hover {
  color: #0a0000;
}

.background-highlight {
  background-color: #252525;
  color: #676767;
}

.background-highlight a {
  color: #fff;
}

.background-highlight a.activated,
.background-highlight a:hover {
  color: #333963;
}

.color-primary {
  color: #0a0000;
}

.color-secondary {
  color: #fff;
}

.color-tertiary {
  color: #676767;
}

#brand-heading,
#launcher-ad,
#launcher-not-using,
#tos a:hover,
.color-highlight {
  color: #333963;
}

.infobox {
  margin: 0 15px 5px;
  color: #fff;
  min-height: 50px;
  line-height: 30px;
  text-align: left;
  font-size: 20px;
}

#small-icon {
  left: 30px;
  top: 14px;
}

.infobox span {
  background-color: #fff;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  line-height: 25px;
  font-size: 20px;
  text-align: center;
  margin: 5px 35px 0 40px;
}

.info-message {
  padding: 4px 20px 4px 80px;
  font-weight: 200;
  line-height: 24px;
  background-color: #ee510e;
}

.gpuscore-info-message {
  font-weight: bold;
  line-height: 24px;
  color: #ee510e;
  text-align: center;
  font-size: 24px !important;
}

.info-message span {
  color: #ee510e;
}

#general-config {
  padding-top: 20px;
}

.navbarRight {
  width: 20%;
  margin-right: 10px;
  margin-left: 10px;
}

#brand-header {
  box-shadow: 0 0 15px 5px #d9d9d9;
  height: 61px;
  padding: 0 3vw 0 19vw;
}

#brand-header .row {
  margin-top: 7px;
}

#brand-header .row .text-center {
  padding-top: 14px;
}

#brand-header .navbar-brand {
  padding: 10px 15px 7px;
}

#brand-header .navbar-toggle {
  margin: 12px 66px 4px;
  border-color: #fff;
}

#brand-header .navbar-toggle span {
  background-color: #fff;
}

#brand-header .navbar-toggle:focus,
#brand-header .navbar-toggle:hover {
  border-color: #000;
  background-color: transparent;
}

#brand-header .navbar-toggle:focus span,
#brand-header .navbar-toggle:hover span {
  background-color: #000;
}

#bm-navbar-collapse {
  border-width: 0;
}

#some-links {
  margin-top: -8px !important;
  vertical-align: middle;
  float: none;
}

#some-links a {
  margin: 5px;
}

#some-links a:hover img {
  opacity: 0.5;
}

#brand-heading {
  font-size: 24px;
  font-weight: 700;
  margin-top: 24px;
  text-align: center;
}

.img-top {
  max-height: 6vw;
  width: auto;
  align-self: center;
}

#brand-heading img {
  float: none;
}

#brand-heading span {
  display: none;
  margin-top: -11px;
  font-size: 115%;
}

#launcher-ad,
#launcher-text {
  font-size: 16px;
  font-weight: 400;
}

#launcher-ad {
  margin: auto;
  max-width: 430px;
  border-radius: 5px;
  border: 1px solid #333963;
  background: 0 0;
  clear: both;
}

#launcher-text {
  text-align: left;
  max-width: 235px;
  padding-left: 20px;
  line-height: 21px;
  border-color: #333963;
  border-radius: 2.67px;
  float: left;
  margin: 17px 0 0;
}

#launcher-button {
  margin: 12px 0;
}

#launcher-button:hover,
#launcher-not-using a:hover,
#start:hover {
  opacity: 0.75;
  background-color: #21274b;
}

#launcher-not-using {
  font-size: 12px;
  line-height: 12px;
  font-weight: 400;
  margin: 12px 0;
}

#launcher-not-using a {
  color: #333963;
}

#start {
  background-color: #333963;
  width: 212px;
  height: 212px;
  border-radius: 50%;
  font-size: 56px;
  clear: both;
  line-height: 183px;
  text-align: center;
  color: #fff;
  margin: 6px auto 42px;
  font-weight: 400;
}

.bootstrap-switch,
.bootstrap-switch .bootstrap-switch-label {
  background-color: #bfe8ff;
}

#tos {
  margin-bottom: 14px;
  font-size: 12px;
  color: #666;
}

#tos a {
  color: #666;
}

.tab-content {
  border-top-width: 0;
  box-shadow: 0 0 10px 0 #f2f2f2;
}

@media (max-width: 767px) {
  .tab-content {
    border-top-width: 1px;
    box-shadow: 0 0 10px 0 #f2f2f2;
  }
}

.bootstrap-switch {
  border-radius: 20px;
  border-width: 0;
  box-shadow: none !important;
}

.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-handle-on {
  background-color: #333963 !important;
  border: 1px solid #333963;
  color: #fff !important;
  border-radius: 50%;
}

select.form-control {
  border-radius: 20px;
  background-color: #bfe8ff;
  box-shadow: none !important;
  color: #333963;
  width: auto;
  min-width: 150px;
  padding: 0 40px 0 15px;
  -moz-appearance: none;
}

span.select-arrow-down {
  margin-left: -20px;
  color: #333963;
  cursor: default;
}

span.select-arrow-down2 {
  margin-left: -30px;
  color: #333963;
  cursor: default;
}

#extended-information li a {
  background-color: #fcfcfc;
  color: #7a7a7a;
  font-size: 24px;
  font-weight: 200;
  height: 52px;
  border-width: 0;
  text-align: left;
}

#extended-information {
  box-shadow: -1px -1px 10px 0 #f2f2f2;
}

#extended-information li a:hover {
  color: #333963;
}

#extended-information li.active a {
  background-color: #333963;
  color: #fff;
  font-size: 24px;
  font-weight: 200;
  height: 52px;
  opacity: 1;
  text-align: left;
}

#extended-information li a img {
  display: inline-block;
  margin-top: -2px;
  margin-left: 18px;
  margin-right: 18px;
}

#configuration .row:last-of-type,
#info .row:last-of-type {
  padding-bottom: 20px;
}

#configuration .row:nth-of-type(odd),
#info .row {
  margin: 0;
  background-color: #fdfdfd;
}

#configuration .row > div,
#info .row > div {
  padding: 20px 0 0;
}

@media (min-width: 768px) {
  #deviceInfo {
    width: 1.2%;
  }
}

#configuration .row > div.last,
#info .row > div.last {
  padding-bottom: 20px;
}

#configuration .row .text-right,
#info .row .text-right {
  color: #4d4d4d;
  font-size: 20px;
  line-height: 24px;
  font-weight: 200;
  vertical-align: baseline;
  padding-right: 20px;
}

#configuration .row .subheading {
  color: #666;
  font-size: 24px;
  line-height: 32px;
  font-weight: 200;
  vertical-align: baseline;
}

#demomode-info {
  font-size: 14px;
  padding: 10px 80px;
}

#info .row .value {
  font-size: 20px;
  line-height: 24px;
  vertical-align: middle;
  font-weight: 400;
  color: #4d4d4d;
}

#results-url,
.mode-corporate,
.mode-pro {
  display: none;
  background-color: #fff2e6;
  color: #c60;
  padding-bottom: 1% !important;
  padding-right: 4% !important;
  padding-left: 4% !important;
}

.LightDatamode {
  font-weight: 100;
}

.rowTab {
  display: table-row !important;
}

.range-input {
  width: 75px;
  height: 36px;
  overflow: hidden;
  display: inline-block;
}

.range-input .off,
.range-input .on {
  line-height: 34px;
  font-size: 24px;
  color: #fff;
  pointer-events: none;
  width: 34px;
}

.range-input .off,
.range-input .on,
input[type="range"] {
  position: relative;
  cursor: pointer;
  height: 34px;
}

.range-input .off {
  left: 9px;
  padding-inline-start: 2px;
  -webkit-padding-start: 0;
  top: 0;
  z-index: 1;
}

.range-input .on {
  -webkit-appearance: none;
  right: -48px;
  top: -68px;
  z-index: 11;
}

input[type="range"] {
  width: 75px;
  box-shadow: none;
  background-color: #bfe8ff;
  border-radius: 18px;
  left: 0;
  top: -33px;
  z-index: 10;
}

input[type="range"]:focus {
  outline: 0;
}

input[type="range"]::-moz-focus-outer {
  border: 0;
}

input[type="range"]::-moz-range-track {
  background: #bfe8ff;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  height: 34px;
  width: 34px;
  background-color: #333963 !important;
  border: 1px solid #333963;
  color: #fff !important;
  border-radius: 50%;
}

input[type="range"]::-moz-range-thumb {
  height: 34px;
  width: 34px;
  background-color: #333963 !important;
  border: 1px solid #333963;
  color: #fff !important;
  border-radius: 50%;
}

input[type="range"]::-ms-thumb {
  height: 34px;
  width: 34px;
  background-color: #333963 !important;
  border: 1px solid #333963;
  color: #fff !important;
  border-radius: 50%;
}

input[type="range"]::-ms-tooltip {
  display: none;
}

.smaller {
  font-size: smaller;
}

.accordion-title {
  font-size: 22px;
  font-weight: lighter;
  background: #333963;
  color: #fff;
  min-height: 50px;
  line-height: 50px;
  box-sizing: none;
}

.accordion-heading {
  padding: 0 !important;
}

.accordion-icon {
  margin: -8px 20px 0 30px;
}

.panel-title.accordion-title a {
  line-height: 48px;
  vertical-align: top;
}

.nav-collapsed {
  background-color: #333963;
  border-radius: 12px;
  padding-bottom: 10px;
  padding-right: 40px;
  opacity: 0.7;
  z-index: 1;
}

.select-wrapper {
  border-radius: 5px;
  border: 1px solid #ccc;
  background-color: #fff;
}

.cookie-law .cookie-law-wrapper {
  background: #333;
  color: #bbb;
  display: block;
  font-family:
    Helvetica Neue,
    Helvetica,
    Arial,
    sans-serif;
  font-size: 15px;
  font-weight: 200;
  line-height: 20px;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 999999999;
  font-smooth: always;
  -webkit-font-smoothing: antialiased;
}

.cookie-law .cookie-law-wrapper .copy {
  box-sizing: border-box;
  padding: 10px 60px 10px 10px;
}

@media (min-width: 600px) {
  .cookie-law .cookie-law-wrapper .copy {
    padding: 20px 60px 20px 20px;
    font-size: 18px;
    line-height: 24px;
  }

  .cookie-law .cookie-law-wrapper .dismiss {
    top: 10px;
    right: 15px;
  }

  .cookie-law .cookie-law-wrapper .dismiss svg {
    width: 24px;
    height: 24px;
  }
}

.cookie-law .cookie-law-wrapper .copy span {
  color: #fff;
  font-weight: 400;
}

.cookie-law .cookie-law-wrapper .dismiss {
  display: block;
  box-sizing: border-box;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 10px;
  text-decoration: none;
  line-height: 20px;
}

.cookie-law .cookie-law-wrapper .dismiss svg {
  display: block;
  fill: #bbb;
  width: 20px;
  height: 20px;
  -webkit-transition: fill 0.2s;
  transition: fill 0.2s;
}

/* Hide the floating "cookie settings" button */
.cc-revoke {
  display: none !important;
}

/* ============================================
   Mobile Responsive Styles
   ============================================ */

/* Small devices (phones, up to 767px) */
@media (max-width: 767px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  #brand-header {
    height: auto;
    padding: 0 10px;
  }

  #brand-header .navbar-toggle {
    margin: 10px 10px 4px;
  }

  #brand-header .navbar-brand {
    padding: 8px 10px;
  }

  #brand-header .navbar-brand img {
    height: 30px;
  }

  .nav-collapsed {
    padding-right: 15px;
    float: none !important;
  }

  .navbarRight {
    width: 100%;
    margin: 5px 0;
  }

  #some-links {
    margin-top: 5px !important;
    float: none !important;
  }

  .img-top {
    max-height: 40px;
    width: auto;
  }

  #brand-heading {
    font-size: 18px;
    margin-top: 16px;
  }

  #brand-heading span {
    font-size: 100%;
  }

  .start-area-container {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .start-button-center {
    order: 1;
    width: 100%;
  }

  .domain-migration-notice {
    min-height: 0;
    padding: 8px 42px 10px 14px;
  }

  .domain-migration-notice-inner {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .domain-migration-notice-content {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .domain-migration-notice p {
    gap: 6px 8px;
    font-size: 12px;
    line-height: 1.35;
  }

  .domain-migration-notice-separator {
    display: none;
  }

  .domain-migration-notice-action {
    justify-self: center;
    min-height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }

  .domain-migration-notice-dismiss {
    top: 8px;
    right: 8px;
    transform: none;
    padding: 6px;
    font-size: 24px;
  }

  /* Start button */
  #start {
    width: 150px;
    height: 150px;
    font-size: 40px;
    line-height: 130px;
    margin: 6px auto 20px;
  }

  /* Launcher ad */
  #launcher-ad {
    max-width: 100%;
  }

  #launcher-text {
    float: none;
    text-align: center;
    max-width: 100%;
    padding: 10px;
  }

  #launcher-button {
    max-width: 80%;
  }

  .info-message {
    padding: 8px 10px 8px 10px;
    font-size: 13px;
  }

  #small-icon {
    display: none;
  }

  .infobox {
    margin: 0 5px 5px;
    font-size: 16px;
  }

  .gpuscore-info-message {
    font-size: 16px !important;
  }

  .accordion-title {
    font-size: 16px;
    min-height: 44px;
    line-height: 44px;
  }

  .accordion-icon {
    margin: -6px 10px 0 15px;
    width: 20px;
  }

  .panel-title.accordion-title a {
    line-height: 42px;
  }

  #configuration .row .text-right,
  #info .row .text-right {
    font-size: 14px;
    padding-right: 10px;
  }

  #info .row .value {
    font-size: 14px;
  }

  #configuration .row .subheading {
    font-size: 18px;
  }

  #demomode-info {
    padding: 10px 15px;
    font-size: 13px;
  }

  #tos {
    font-size: 11px;
    margin-bottom: 10px;
  }

  footer {
    padding: 15px 10px !important;
    font-size: 12px !important;
  }
}

/* Medium devices (tablets, 768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  #start {
    width: 170px;
    height: 170px;
    font-size: 46px;
    line-height: 150px;
  }

  .domain-migration-notice {
    padding-left: 18px;
    padding-right: 52px;
  }

  .domain-migration-notice-inner {
    gap: 14px;
  }

  .domain-migration-notice p {
    gap: 6px 8px;
    font-size: 13px;
  }

  .domain-migration-notice-action {
    min-height: 30px;
    padding: 0 14px;
    font-size: 13px;
  }

  .img-top {
    max-height: 50px;
  }

  #brand-header {
    padding: 0 10px 0 10px;
  }
}
