/* Base styles - reset, typography, core */

*,
body,
html {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}

body,
html {
  --text-opacity: 1;
  color: #404040;
  color: rgba(64, 64, 64, var(--text-opacity));
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
    Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji,
    Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  font-size: 16px;
}

a {
  --text-opacity: 1;
  color: #2f7bbf;
  color: rgba(47, 123, 191, var(--text-opacity));
  text-decoration: none;
  transition-property: all;
  transition-duration: 0.15s;
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

a:hover {
  --text-opacity: 1;
  color: #f68b1f;
  color: rgba(246, 139, 31, var(--text-opacity));
}

img {
  display: block;
  width: 100%;
  height: auto;
}

strong {
  font-weight: 600;
}

#what-happened-section p {
  font-size: 15px;
  line-height: 1.5;
}
/* Utility classes */

/* Display */
.container { width: 100%; }
.block { display: block; }
.inline-block { display: inline-block; }
.table { display: table; }
.hidden { display: none; }

/* Float & Clear */
.float-left { float: left; }
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/* Position */
.absolute { position: absolute; }
.relative { position: relative; }
.left-1\/2 { left: 50%; }
.-bottom-4 { bottom: -1rem; }

/* Width */
.w-12 { width: 3rem; }
.w-240 { width: 60rem; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-full { width: 100%; }

/* Height */
.h-12 { height: 3rem; }
.h-20 { height: 5rem; }

/* Margin */
.mx-auto { margin-left: auto; margin-right: auto; }
.my-8 { margin-top: 2rem; margin-bottom: 2rem; }
.mr-2 { margin-right: 0.5rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.ml-4 { margin-left: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.ml-10 { margin-left: 2.5rem; }
.mb-15 { margin-bottom: 3.75rem; }
.-ml-6 { margin-left: -1.5rem; }

/* Padding */
.p-0 { padding: 0; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-15 { padding-top: 3.75rem; padding-bottom: 3.75rem; }
.pr-6 { padding-right: 1.5rem; }
.pt-10 { padding-top: 2.5rem; }

/* Typography */
.font-mono { font-family: monaco, courier, monospace; }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-semibold { font-weight: 600; }
.text-13 { font-size: 13px; }
.text-15 { font-size: 15px; }
.text-60 { font-size: 60px; }
.text-2xl { font-size: 1.5rem; }
.text-3xl { font-size: 1.875rem; }
.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.leading-1\.3 { line-height: 1.3; }
.text-center { text-align: center; }
.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Colors */
.text-black-dark {
  --text-opacity: 1;
  color: #404040;
  color: rgba(64, 64, 64, var(--text-opacity));
}
.text-gray-600 {
  --text-opacity: 1;
  color: #999;
  color: rgba(153, 153, 153, var(--text-opacity));
}
.text-red-error {
  --text-opacity: 1;
  color: #bd2426;
  color: rgba(189, 36, 38, var(--text-opacity));
}
.text-green-success {
  --text-opacity: 1;
  color: #9bca3e;
  color: rgba(155, 202, 62, var(--text-opacity));
}

/* Background */
.bg-white {
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}
.bg-center { background-position: 50%; }
.bg-no-repeat { background-repeat: no-repeat; }
.bg-gradient-gray {
  background-image: -webkit-linear-gradient(top, #dedede, #ebebeb 3%, #ebebeb 97%, #dedede);
}

/* Border */
.border-gray-300 {
  --border-opacity: 1;
  border-color: #ebebeb;
  border-color: rgba(235, 235, 235, var(--border-opacity));
}
.rounded { border-radius: 0.25rem; }
.border-solid { border-style: solid; }
.border-0 { border-width: 0; }
.border { border-width: 1px; }
.border-t { border-top-width: 1px; }

/* Misc */
.cursor-pointer { cursor: pointer; }
.overflow-hidden { overflow: hidden; }
.resize { resize: both; }
.transition {
  transition-property: background-color, border-color, color, fill, stroke, opacity, box-shadow, transform;
}
/* Cloudflare error page components */

:root {
  --cf-error-color: #bd2426;
  --cf-success-color: #9bca3e;
  --cf-brand-color: #2f7bbf;
  --cf-debug-id: "trace_echo_ff42";
  --cf-internal: "sys_beta_0000";
  --cf-trace-id: "gate_beta_2d8a";
}

/* Error source indicator arrow */
.cf-error-source:after {
  position: absolute;
  --bg-opacity: 1;
  background-color: #fff;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  width: 2.5rem;
  height: 2.5rem;
  --transform-translate-x: 0;
  --transform-translate-y: 0;
  --transform-rotate: 0;
  --transform-skew-x: 0;
  --transform-skew-y: 0;
  --transform-scale-x: 1;
  --transform-scale-y: 1;
  transform: translateX(var(--transform-translate-x))
    translateY(var(--transform-translate-y)) rotate(var(--transform-rotate))
    skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y))
    scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));
  --transform-rotate: 45deg;
  content: "";
  bottom: -1.75rem;
  left: 50%;
  margin-left: -1.25rem;
  box-shadow: 0 0 4px 4px #dedede;
}

@media screen and (max-width: 720px) {
  .cf-error-source:after {
    display: none;
  }
}

/* Error code label */
.code-label {
  background-color: #d9d9d9;
  color: #313131;
  font-weight: 500;
  border-radius: 1.25rem;
  font-size: 0.75rem;
  line-height: 4.5rem;
  padding: 0.25rem 0.5rem;
  height: 4.5rem;
  white-space: nowrap;
  vertical-align: middle;
}

/* Wrapper styles */
#cf-wrapper .feedback-hidden {
  display: none;
}

#cf-wrapper .feedback-success {
  min-height: 33px;
  line-height: 33px;
}

#cf-wrapper .cf-button {
  color: #0051c3;
  font-size: 13px;
  border-color: #0045a6;
  transition-timing-function: ease;
  transition-duration: 0.2s;
  transition-property: background-color, border-color, color;
}

#cf-wrapper .cf-button:hover {
  color: #fff;
  background-color: #003681;
}

/* Footer styles */
.cf-error-footer .hidden {
  display: none;
}

.cf-error-footer .cf-footer-ip-reveal-btn {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  text-decoration: none;
  background: none;
  color: inherit;
  border: none;
  padding: 0;
  font: inherit;
  cursor: pointer;
  color: #0051c3;
  transition: color 0.15s ease;
}

.cf-error-footer .cf-footer-ip-reveal-btn:hover {
  color: #ee730a;
}
/* SVG icon backgrounds */

.cf-icon-browser {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20id%3D%22a%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20100%2080.7362%22%3E%3Cpath%20d%3D%22M89.8358.1636H10.1642C4.6398.1636.1614%2C4.6421.1614%2C10.1664v60.4033c0%2C5.5244%2C4.4784%2C10.0028%2C10.0028%2C10.0028h79.6716c5.5244%2C0%2C10.0027-4.4784%2C10.0027-10.0028V10.1664c0-5.5244-4.4784-10.0028-10.0027-10.0028ZM22.8323%2C9.6103c1.9618%2C0%2C3.5522%2C1.5903%2C3.5522%2C3.5521s-1.5904%2C3.5522-3.5522%2C3.5522-3.5521-1.5904-3.5521-3.5522%2C1.5903-3.5521%2C3.5521-3.5521ZM12.8936%2C9.6103c1.9618%2C0%2C3.5522%2C1.5903%2C3.5522%2C3.5521s-1.5904%2C3.5522-3.5522%2C3.5522-3.5521-1.5904-3.5521-3.5522%2C1.5903-3.5521%2C3.5521-3.5521ZM89.8293%2C70.137H9.7312V24.1983h80.0981v45.9387ZM89.8293%2C16.1619H29.8524v-5.999h59.977v5.999Z%22%20style%3D%22fill%3A%20%23999%3B%22/%3E%3C/svg%3E");
}

.cf-icon-cloud {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20id%3D%22a%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20152%2078.9141%22%3E%3Cpath%20d%3D%22M132.2996%2C77.9927v-.0261c10.5477-.2357%2C19.0305-8.8754%2C19.0305-19.52%2C0-10.7928-8.7161-19.5422-19.4678-19.5422-2.9027%2C0-5.6471.6553-8.1216%2C1.7987C123.3261%2C18.6624%2C105.3419.9198%2C83.202.9198c-17.8255%2C0-32.9539%2C11.5047-38.3939%2C27.4899-3.0292-2.2755-6.7818-3.6403-10.8622-3.6403-10.0098%2C0-18.1243%2C8.1145-18.1243%2C18.1243%2C0%2C1.7331.258%2C3.4033.7122%2C4.9905-.2899-.0168-.5769-.0442-.871-.0442-8.2805%2C0-14.993%2C6.7503-14.993%2C15.0772%2C0%2C8.2795%2C6.6381%2C14.994%2C14.8536%2C15.0701v.0054h.1069c.0109%2C0%2C.0215.0016.0325.0016s.0215-.0016.0325-.0016%22%20style%3D%22fill%3A%20%23999%3B%22/%3E%3C/svg%3E");
}

.cf-icon-server {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20id%3D%22a%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2095%2075%22%3E%3Cpath%20d%3D%22M94.0103%2C45.0775l-12.9885-38.4986c-1.2828-3.8024-4.8488-6.3624-8.8618-6.3619l-49.91.0065c-3.9995.0005-7.556%2C2.5446-8.8483%2C6.3295L1.0128%2C42.8363c-.3315.971-.501%2C1.9899-.5016%2C3.0159l-.0121%2C19.5737c-.0032%2C5.1667%2C4.1844%2C9.3569%2C9.3513%2C9.3569h75.2994c5.1646%2C0%2C9.3512-4.1866%2C9.3512-9.3512v-17.3649c0-1.0165-.1657-2.0262-.4907-2.9893ZM86.7988%2C65.3097c0%2C1.2909-1.0465%2C2.3374-2.3374%2C2.3374H9.9767c-1.2909%2C0-2.3374-1.0465-2.3374-2.3374v-18.1288c0-1.2909%2C1.0465-2.3374%2C2.3374-2.3374h74.4847c1.2909%2C0%2C2.3374%2C1.0465%2C2.3374%2C2.3374v18.1288Z%22%20style%3D%22fill%3A%20%23999%3B%22/%3E%3Ccircle%20cx%3D%2274.6349%22%20cy%3D%2256.1889%22%20r%3D%224.7318%22%20style%3D%22fill%3A%20%23999%3B%22/%3E%3Ccircle%20cx%3D%2259.1472%22%20cy%3D%2256.1889%22%20r%3D%224.7318%22%20style%3D%22fill%3A%20%23999%3B%22/%3E%3C/svg%3E");
}

.cf-icon-ok {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20id%3D%22a%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2048%2048%22%3E%3Ccircle%20cx%3D%2224%22%20cy%3D%2224%22%20r%3D%2223.4815%22%20style%3D%22fill%3A%20%239bca3e%3B%22/%3E%3Cpolyline%20points%3D%2217.453%2024.9841%2021.7183%2030.4504%2030.2076%2016.8537%22%20style%3D%22fill%3A%20none%3B%20stroke%3A%20%23fff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%204px%3B%22/%3E%3C/svg%3E");
}

.cf-icon-error {
  background-image: url("data:image/svg+xml;utf8,%3Csvg%20id%3D%22a%22%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%2047.9145%2047.9641%22%3E%3Ccircle%20cx%3D%2223.9572%22%20cy%3D%2223.982%22%20r%3D%2223.4815%22%20style%3D%22fill%3A%20%23bd2426%3B%22/%3E%3Cline%20x1%3D%2219.0487%22%20y1%3D%2219.0768%22%20x2%3D%2227.8154%22%20y2%3D%2228.8853%22%20style%3D%22fill%3A%20none%3B%20stroke%3A%20%23fff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%203px%3B%22/%3E%3Cline%20x1%3D%2227.8154%22%20y1%3D%2219.0768%22%20x2%3D%2219.0487%22%20y2%3D%2228.8853%22%20style%3D%22fill%3A%20none%3B%20stroke%3A%20%23fff%3B%20stroke-linecap%3A%20round%3B%20stroke-linejoin%3A%20round%3B%20stroke-width%3A%203px%3B%22/%3E%3C/svg%3E");
}
/* Responsive breakpoints */

/* Small screens (max-width: 639px) */
@media (max-width: 639px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:mb-1 { margin-bottom: 0.25rem; }
  .sm\:mb-2 { margin-bottom: 0.5rem; }
  .sm\:py-4 { padding-top: 1rem; padding-bottom: 1rem; }
  .sm\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .sm\:text-left { text-align: left; }
}

/* Medium screens (max-width: 720px) */
@media (max-width: 720px) {
  .md\:border-gray-400 {
    --border-opacity: 1;
    border-color: #dedede;
    border-color: rgba(222, 222, 222, var(--border-opacity));
  }
  .md\:border-solid { border-style: solid; }
  .md\:border-0 { border-width: 0; }
  .md\:border-b { border-bottom-width: 1px; }
  .md\:block { display: block; }
  .md\:inline-block { display: inline-block; }
  .md\:hidden { display: none; }
  .md\:float-none { float: none; }
  .md\:text-3xl { font-size: 1.875rem; }
  .md\:m-0 { margin: 0; }
  .md\:mt-0 { margin-top: 0; }
  .md\:mb-2 { margin-bottom: 0.5rem; }
  .md\:p-0 { padding: 0; }
  .md\:py-8 { padding-top: 2rem; padding-bottom: 2rem; }
  .md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .md\:pr-0 { padding-right: 0; }
  .md\:pb-10 { padding-bottom: 2.5rem; }
  .md\:top-0 { top: 0; }
  .md\:right-0 { right: 0; }
  .md\:left-auto { left: auto; }
  .md\:text-left { text-align: left; }
  .md\:w-full { width: 100%; }
}

/* Large screens (max-width: 1023px) */
@media (max-width: 1023px) {
  .lg\:text-sm { font-size: 0.875rem; }
  .lg\:text-2xl { font-size: 1.5rem; }
  .lg\:text-4xl { font-size: 2.25rem; }
  .lg\:leading-relaxed { line-height: 1.625; }
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:pt-6 { padding-top: 1.5rem; }
  .lg\:w-full { width: 100%; }
}
