/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
:root {
  --font-body: "IBM Plex Sans", sans-serif, sans-serif;
  --font-heading: "IBM Plex Sans", sans-serif, sans-serif;
}
html {
  height: 100%;
}
body {
  display: block;
  padding: 0;
  margin: 0;
  width: 100%;
  min-height: 100%;
}
app {
  padding: 0;
  margin: 0;
  color: #666;
  background: #fff;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
app.dark {
  background: #000;
  color: #fff;
}
body,
input,
textarea,
select,
button {
  font-family: var(--font-body);
  line-height: 1.6;
  font-size: 16px;
  color: #666;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  background-image: none;
  border-radius: 0;
  cursor: pointer;
}
a,
h1,
h2,
h3,
h4,
h5,
h6 {
  transition: all 0.3s ease;
}
a {
  color: #d88900;
}
button,
input,
textarea,
select,
.select-wrapper {
  position: relative;
  background: white;
  border: none;
  padding: 17.5px;
  border-radius: 4px;
  border: 2px solid #fff;
  outline: none;
  box-shadow: none;
  z-index: 1;
  transition: all 0.3s ease;
}
button:focus,
input:focus,
textarea:focus,
select:focus,
.select-wrapper:focus {
  outline: none;
}
button:hover,
input:hover,
textarea:hover,
select:hover,
.select-wrapper:hover {
  outline: none;
}
button.error,
input.error,
textarea.error,
select.error,
.select-wrapper.error {
  border: 2px solid #dc3545;
}
textarea {
  resize: none;
  height: 200px;
}
.select-wrapper {
  z-index: 1;
  position: relative;
}
.select-wrapper select {
  padding: 0;
  width: 100%;
}
.select-wrapper::after {
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 12px;
  content: '\f078';
  position: absolute;
  color: #d88900;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}
header inner,
content inner,
footer inner {
  display: block;
  max-width: 900px;
  margin: 0 auto;
}
header {
  flex-shrink: 0;
  margin-top: 24px;
  margin-bottom: 15px;
  border-bottom: 1px solid #666;
}
header h1 {
  height: 36px;
  background: url(/images/thinkin-corp.svg) no-repeat top left;
  margin-bottom: 24px;
  text-indent: -49999px;
  margin-left: 35px;
  margin-right: 35px;
}
content {
  margin-top: 85px;
  flex: 1 0 auto;
}
footer {
  flex-shrink: 0;
  margin-top: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  border-top: 1px solid #666;
  font-size: 14px;
}
footer inner .inner {
  padding-left: 35px;
  padding-right: 35px;
}
#custom-cursor {
  position: absolute;
  display: none;
  pointer-events: none;
  z-index: 1000;
  text-align: center;
  margin-top: 2px;
  font-size: 48px;
  font-weight: 800;
  font-family: "Anybody", sans-serif;
  /* Center the content */
  display: flex;
  align-items: center;
  justify-content: center;
}
section.enrollment {
  padding: 35px;
}
section.enrollment .access_code {
  position: relative;
  display: block;
  margin-top: 40px;
}
section.enrollment .access_code input,
section.enrollment .access_code hints {
  font-size: 36px;
  font-weight: 800;
  font-family: "Anybody", sans-serif;
}
section.enrollment .access_code inputs {
  display: flex;
  flex-direction: row;
}
section.enrollment .access_code inputs input {
  background: transparent;
  border: none;
  margin-right: 2px;
  width: 60px;
  padding: 0px 0px;
  text-align: center;
  caret-color: transparent;
  outline: none;
}
section.enrollment .access_code hints {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: row;
}
section.enrollment .access_code hints hint {
  height: 60px;
  display: block;
  width: 60px;
  margin-right: 2px;
  text-align: center;
  border-bottom: 4px solid #666;
}
section.enrollment .typing-cursor {
  display: inline-block;
  animation: blink 1s infinite;
  font-weight: normal;
  color: inherit;
}
@keyframes blink {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@media (max-width: 430px) {
  section.enrollment .access_code inputs input,
  section.enrollment .access_code hints hint {
    width: 50px;
  }
}
@media (max-width: 360px) {
  section.enrollment .access_code inputs input,
  section.enrollment .access_code hints hint {
    width: 35px;
  }
}
@media (max-width: 300px) {
  section.enrollment .access_code inputs input,
  section.enrollment .access_code hints hint {
    width: 25px;
  }
}
#chaos-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 9999;
}
.dark-ui {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: #000;
  color: #fff;
  display: none;
}
body.frontend block,
body.frontend section,
body.frontend panel {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease-out !important;
  transform: translateY(-20px);
}
body.frontend block.visible,
body.frontend section.visible,
body.frontend panel.visible {
  opacity: 1;
  transform: translateY(0px);
}
blocks {
  display: block;
  /** TITLE ABOVE TEXT AND IMAGE */
  /* Setting count 1 */
  /* Setting count 2 */
  /* Setting count 3 */
  /* Setting count 4 */
  /* Setting count 5 */
  /* Setting count 6 */
  /* Setting count 7 */
  /* Setting count 8 */
  /* Setting count 9 */
  /* Setting count 10 */
  /* Size settings */
  /* Ratio settings */
}
blocks block {
  display: block;
}
blocks block[style*="background-image"] {
  position: relative;
}
blocks block[style*="background-image"] block-inner {
  position: relative;
  z-index: 1;
}
blocks block[style*="background-image"]::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}
blocks block block-inner {
  display: block;
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 35px;
  box-sizing: border-box;
}
blocks block panels {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 35px;
  width: 100%;
}
@media (max-width: 768px) {
  blocks block panels {
    flex-direction: column;
  }
}
blocks block panels panel {
  background-color: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(5px);
  padding: 35px;
  border-radius: 17.5px;
  flex: 1;
  overflow: hidden;
  color: #666;
  transition: all 0.2s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}
blocks block panels panel h1,
blocks block panels panel h2,
blocks block panels panel h3,
blocks block panels panel h4 {
  color: #d88900;
}
blocks block panels panel:hover {
  transform: translate(-1px, -1px);
  background-color: #ffffff;
  box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.05);
}
blocks block panels panel .align-bottom {
  display: block;
  align-items: flex-end;
  margin-top: auto;
}
blocks block panels panel .align-bottom p {
  margin-top: 35px;
}
blocks block panels panel .align-bottom p a.button {
  width: 100%;
}
blocks block .image-container {
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.85);
  width: 100%;
  padding-top: 56%;
  border-radius: 17.5px;
}
blocks block .caption {
  margin-top: 17.5px;
  font-weight: 600;
}
blocks block.block-hero-block-home {
  padding: 0px !important;
}
blocks block.block-hero-block-home block-inner {
  max-width: none;
  padding: 0px;
  align-items: center;
  justify-content: center;
}
blocks block.block-hero-block-home block-inner .hero-block-home-image {
  width: 100%;
  height: calc(100vh - 240px);
  background-position: 25% 50% !important;
  display: flex;
  align-items: center;
}
blocks block.block-hero-block-home block-inner .hero-block-home-image h2 {
  max-width: 1260px;
  margin: 0 auto;
  padding: 35px;
  box-sizing: border-box;
  color: #fff;
  font-size: 80px;
  line-height: 90px;
  text-shadow: 0 5px 5px rgba(216, 137, 0, 0.1);
}
blocks block.block-hero-block-home block-inner .hero-block-home-footer {
  background-color: #d88900;
  color: #fff;
}
blocks block.block-hero-block-home block-inner .hero-block-home-footer .hero-block-home-footer-inner {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 35px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 35px;
}
blocks block.block-hero-block-home block-inner .hero-block-home-footer .hero-block-home-footer-inner p {
  width: auto;
}
blocks block.block-hero-block-home block-inner .hero-block-home-footer .hero-block-home-footer-inner div {
  flex: 1;
}
blocks block.block-hero-block-home block-inner .hero-block-home-footer .hero-block-home-footer-inner div.hide-if-empty {
  flex: 0;
}
blocks block.block-hero-block-home block-inner .hero-block-home-footer .hero-block-home-footer-inner div.hide-if-empty a {
  white-space: nowrap;
  background-color: #fff !important;
  color: #d88900 !important;
}
@media (max-height: 756px) {
  blocks block.block-hero-block-home block-inner .hero-block-home-image {
    height: auto;
  }
}
@media (max-width: 756px) {
  blocks block.block-hero-block-home block-inner .hero-block-home-image {
    height: auto;
    background-position: 45% 100% !important;
    padding-top: 30vh;
  }
  blocks block.block-hero-block-home block-inner .hero-block-home-image h2 {
    font-size: 60px;
    line-height: 60px;
    text-shadow: 0 0px 8px rgba(216, 137, 0, 0.5);
  }
  blocks block.block-hero-block-home block-inner .hero-block-home-footer .hero-block-home-footer-inner {
    flex-direction: column;
  }
}
blocks block.block-hero-block {
  position: relative;
  height: calc(100vh - 240px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
blocks block.block-hero-block .scroll-indicator {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  pointer-events: none;
  z-index: 1000;
}
blocks block.block-hero-block .scroll-indicator.visible {
  opacity: 0.5;
}
blocks block.block-hero-block .scroll-indicator i {
  position: relative;
  font-size: 20px;
  padding: 8.75px;
  background-color: rgba(255, 255, 255, 0.85);
  border-radius: 50%;
  animation: nudge 5s infinite;
}
@keyframes nudge {
  0% {
    top: 0px;
  }
  5% {
    top: 5px;
  }
  10% {
    top: 0px;
  }
  15% {
    top: 5px;
  }
  20% {
    top: 0px;
  }
}
blocks block.block-hero-block.setting-image-ratio-2-5 {
  height: calc(100vw / 2.5) !important;
}
blocks block.block-hero-block.setting-image-ratio-2-0 {
  height: calc(100vw / 2) !important;
}
blocks block.block-hero-block.setting-image-ratio-1-5 {
  height: calc(100vw / 1.5) !important;
}
blocks block .two-thirds {
  width: 66.66%;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}
@media (max-width: 768px) {
  blocks block .two-thirds {
    width: 100%;
  }
}
blocks block.setting-two-thirds block-inner {
  width: 66.66%;
}
blocks block.setting-two-thirds block-inner h1,
blocks block.setting-two-thirds block-inner h2,
blocks block.setting-two-thirds block-inner h3,
blocks block.setting-two-thirds block-inner h4,
blocks block.setting-two-thirds block-inner p,
blocks block.setting-two-thirds block-inner li {
  width: 100% !important;
  max-width: 100% !important;
}
@media (max-width: 768px) {
  blocks block.setting-two-thirds block-inner {
    width: 100%;
  }
}
blocks block.block-title-and-text-and-image block-inner,
blocks block.block-hero-block-with-image block-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
blocks block.block-title-and-text-and-image block-inner .image-container,
blocks block.block-hero-block-with-image block-inner .image-container {
  display: block;
}
@media (max-width: 768px) {
  blocks block.block-title-and-text-and-image block-inner,
  blocks block.block-hero-block-with-image block-inner {
    display: block;
  }
  blocks block.block-title-and-text-and-image block-inner .image-container,
  blocks block.block-hero-block-with-image block-inner .image-container {
    margin-top: 70px;
  }
}
blocks block.block-title-and-text-and-image.setting-image-left block-inner,
blocks block.block-hero-block-with-image.setting-image-left block-inner {
  gap: 35px;
}
blocks block.block-title-and-text-and-image.setting-image-left block-inner .image-container,
blocks block.block-hero-block-with-image.setting-image-left block-inner .image-container {
  order: 1;
}
blocks block.block-title-and-text-and-image.setting-image-left block-inner .content,
blocks block.block-hero-block-with-image.setting-image-left block-inner .content {
  order: 2;
}
blocks block.block-title-and-text-and-image.setting-image-small block-inner,
blocks block.block-hero-block-with-image.setting-image-small block-inner {
  grid-template-columns: 3fr 1fr;
}
blocks block.block-hero-block-with-image.setting-image-small.setting-image-left block-inner,
blocks block.block-title-and-text-and-image.setting-image-small.setting-image-left block-inner {
  grid-template-columns: 1fr 3fr;
}
blocks block.block-hero-block-with-image.setting-image-large block-inner,
blocks block.block-title-and-text-and-image.setting-image-large block-inner {
  grid-template-columns: 1fr 3fr;
}
blocks block.block-hero-block-with-image.setting-image-large.setting-image-left block-inner,
blocks block.block-title-and-text-and-image.setting-image-large.setting-image-left block-inner {
  grid-template-columns: 3fr 1fr;
}
blocks block.block-title-above-text-and-image block-inner block-inner-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
blocks block.block-title-above-text-and-image block-inner block-inner-content .image-container {
  display: block;
}
@media (max-width: 768px) {
  blocks block.block-title-above-text-and-image block-inner block-inner-content {
    display: block;
  }
}
blocks block.block-title-above-text-and-image.setting-image-left block-inner block-inner-content {
  gap: 35px;
}
blocks block.block-title-above-text-and-image.setting-image-left block-inner block-inner-content .image-container {
  order: 1;
}
blocks block.block-title-above-text-and-image.setting-image-left block-inner block-inner-content .text-container {
  order: 2;
}
blocks block.block-title-above-text-and-image.setting-image-small block-inner block-inner-content {
  grid-template-columns: 3fr 1fr;
}
blocks block.block-title-above-text-and-image.setting-image-small.setting-image-left block-inner block-inner-content {
  grid-template-columns: 1fr 3fr;
}
blocks block.block-title-above-text-and-image.setting-image-large block-inner block-inner-content {
  grid-template-columns: 1fr 3fr;
}
blocks block.block-title-above-text-and-image.setting-image-large.setting-image-left block-inner block-inner-content {
  grid-template-columns: 3fr 1fr;
}
blocks block.block-panels {
  color: #d88900 !important;
}
blocks block.block-panels h1,
blocks block.block-panels h2,
blocks block.block-panels h3,
blocks block.block-panels h4 {
  color: #d88900 !important;
}
blocks block.block-panels h2.title {
  margin-bottom: 70px;
}
blocks block.block-panels div.text {
  margin-top: -35px;
  margin-bottom: 70px;
}
blocks block.block-panels.setting-count-1 panels panel:nth-child(2) {
  display: none;
}
blocks block.block-panels.setting-count-1 panels panel:nth-child(3) {
  display: none;
}
blocks block.block-panels.setting-count-2 panels panel:nth-child(3) {
  display: none;
}
blocks block.block-home-search {
  width: 100%;
}
blocks block.block-home-search input {
  width: 100%;
  box-sizing: border-box;
  background-color: #f6f5f5;
}
blocks block.block-quote {
  text-align: center;
}
blocks block.block-quote .quote-container div.quote {
  font-size: 26px;
  font-style: italic;
  color: #666;
}
blocks block.block-quote .quote-container div.quote:before {
  content: '"';
}
blocks block.block-quote .quote-container div.quote:after {
  content: '"';
}
blocks block.block-quote .quote-container {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
blocks block.block-quote .quote {
  text-align: center;
}
blocks block.block-quote .quote + div {
  width: 100%;
  padding-right: 35px;
  color: #666;
}
blocks block.setting-lm-fill-1 {
  background: url('/images/fill-1.svg') no-repeat center center;
  background-size: cover;
}
blocks block.setting-lm-fill-1 block-inner > h2,
blocks block.setting-lm-fill-1 block-inner > h3,
blocks block.setting-lm-fill-1 block-inner > h4,
blocks block.setting-lm-fill-1 block-inner > div {
  color: #fff !important;
}
blocks block.setting-lm-fill-1 block-inner li::before {
  background: #fff !important;
}
blocks block.setting-lm-fill-2 {
  background: url('/images/fill-2.svg') no-repeat center center;
  background-size: cover;
}
blocks block.setting-lm-fill-2 block-inner > h2,
blocks block.setting-lm-fill-2 block-inner > h3,
blocks block.setting-lm-fill-2 block-inner > h4,
blocks block.setting-lm-fill-2 block-inner > div {
  color: #fff !important;
}
blocks block.setting-lm-fill-3 {
  background: linear-gradient(-34deg, #ffffff 0%, #bbc1b8 100%);
}
blocks block.setting-lm-fill-4 {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.75), rgba(255, 255, 255, 0.75)), url('/images/fill-4-b.svg') no-repeat center center;
  background-size: cover;
}
blocks block.setting-lm-fill-5 {
  background: linear-gradient(to right, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.85)), url('/images/fill-5.svg') no-repeat center center;
  background-size: cover;
}
blocks block.setting-lm-fill-6 {
  background: url('/images/fill-6.svg') no-repeat 125% 100%;
  background-size: contain;
}
blocks block.setting-lm-solid-green {
  background-color: #d88900;
}
blocks block.setting-lm-solid-blue {
  background-color: #d88900;
}
blocks block.setting-lm-solid-blue block-inner > h2,
blocks block.setting-lm-solid-blue block-inner > h3,
blocks block.setting-lm-solid-blue block-inner > h4 {
  color: #fff !important;
}
blocks block.setting-lm-solid-background {
  background-color: #fff;
}
blocks block.setting-lm-solid-dark-green {
  background-color: #d88900;
}
blocks block.setting-lm-solid-light-blue {
  background-color: #d88900;
}
blocks block.setting-lm-solid-light-grey {
  background-color: #fff;
}
blocks block.setting-padding-top-small {
  padding-top: 70px;
}
blocks block.setting-padding-top-medium {
  padding-top: 140px;
}
blocks block.setting-padding-top-large {
  padding-top: 280px;
}
blocks block.setting-padding-bottom-small {
  padding-bottom: 70px;
}
blocks block.setting-padding-bottom-medium {
  padding-bottom: 140px;
}
blocks block.setting-padding-bottom-large {
  padding-bottom: 280px;
}
blocks block.setting-lm-fill-1,
blocks block.setting-lm-fill-2,
blocks block.setting-lm-solid-blue,
blocks block.setting-lm-solid-blue,
blocks block.setting-lm-solid-dark-green {
  color: #fff;
}
blocks block.setting-lm-fill-1 .text p,
blocks block.setting-lm-fill-2 .text p,
blocks block.setting-lm-solid-blue .text p,
blocks block.setting-lm-solid-blue .text p,
blocks block.setting-lm-solid-dark-green .text p {
  color: #fff;
}
blocks block.setting-lm-fill-1 h1,
blocks block.setting-lm-fill-2 h1,
blocks block.setting-lm-solid-blue h1,
blocks block.setting-lm-solid-blue h1,
blocks block.setting-lm-solid-dark-green h1,
blocks block.setting-lm-fill-1 h2,
blocks block.setting-lm-fill-2 h2,
blocks block.setting-lm-solid-blue h2,
blocks block.setting-lm-solid-blue h2,
blocks block.setting-lm-solid-dark-green h2,
blocks block.setting-lm-fill-1 h3,
blocks block.setting-lm-fill-2 h3,
blocks block.setting-lm-solid-blue h3,
blocks block.setting-lm-solid-blue h3,
blocks block.setting-lm-solid-dark-green h3,
blocks block.setting-lm-fill-1 h4,
blocks block.setting-lm-fill-2 h4,
blocks block.setting-lm-solid-blue h4,
blocks block.setting-lm-solid-blue h4,
blocks block.setting-lm-solid-dark-green h4 {
  color: #fff;
}
blocks block.setting-lm-solid-light-blue {
  color: #d88900;
}
blocks block.setting-lm-solid-light-blue h1,
blocks block.setting-lm-solid-light-blue h2,
blocks block.setting-lm-solid-light-blue h3,
blocks block.setting-lm-solid-light-blue h4 {
  color: #d88900;
}
blocks block.setting-lm-solid-background {
  color: #666;
}
blocks block.setting-lm-solid-background h1,
blocks block.setting-lm-solid-background h2,
blocks block.setting-lm-solid-background h3,
blocks block.setting-lm-solid-background h4 {
  color: #666;
}
blocks button,
blocks .button,
blocks a.button {
  display: inline-block;
  padding: 12px 24px;
  background: #d88900;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
blocks button:hover,
blocks .button:hover,
blocks a.button:hover {
  background: #d88900 !important;
  color: #fff;
  transform: translateY(-1px);
}
blocks button.accent,
blocks .button.accent,
blocks a.button.accent {
  background: #d88900;
}
blocks button.accent:hover,
blocks .button.accent:hover,
blocks a.button.accent:hover {
  background: #a56900;
}
blocks button.outline,
blocks .button.outline,
blocks a.button.outline {
  background: transparent;
  color: #d88900;
  border: 2px solid #d88900;
}
blocks button.outline:hover,
blocks .button.outline:hover,
blocks a.button.outline:hover {
  background: #d88900 !important;
  color: #fff;
}
blocks button:hover,
blocks .button:hover,
blocks a.button:hover {
  background: #d88900 !important;
  color: #fff;
  transform: translateY(-1px);
}
blocks button.accent,
blocks .button.accent,
blocks a.button.accent {
  background: #d88900;
}
blocks button.accent:hover,
blocks .button.accent:hover,
blocks a.button.accent:hover {
  background: #a56900;
}
blocks button.outline,
blocks .button.outline,
blocks a.button.outline {
  background: transparent;
  color: #d88900;
  border: 2px solid #d88900;
}
blocks button.outline:hover,
blocks .button.outline:hover,
blocks a.button.outline:hover {
  background: #d88900 !important;
  color: #fff;
}
blocks button.accent,
blocks .button.accent,
blocks a.button.accent {
  display: inline-block;
  padding: 12px 24px;
  background: #d88900;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: #d88900 !important;
}
blocks button.accent:hover,
blocks .button.accent:hover,
blocks a.button.accent:hover {
  background: #d88900 !important;
  color: #fff;
  transform: translateY(-1px);
}
blocks button.accent.accent,
blocks .button.accent.accent,
blocks a.button.accent.accent {
  background: #d88900;
}
blocks button.accent.accent:hover,
blocks .button.accent.accent:hover,
blocks a.button.accent.accent:hover {
  background: #a56900;
}
blocks button.accent.outline,
blocks .button.accent.outline,
blocks a.button.accent.outline {
  background: transparent;
  color: #d88900;
  border: 2px solid #d88900;
}
blocks button.accent.outline:hover,
blocks .button.accent.outline:hover,
blocks a.button.accent.outline:hover {
  background: #d88900 !important;
  color: #fff;
}
blocks button.accent:hover,
blocks .button.accent:hover,
blocks a.button.accent:hover {
  background: #d88900 !important;
  color: #fff;
  transform: translateY(-1px);
}
blocks button.accent.accent,
blocks .button.accent.accent,
blocks a.button.accent.accent {
  background: #d88900;
}
blocks button.accent.accent:hover,
blocks .button.accent.accent:hover,
blocks a.button.accent.accent:hover {
  background: #a56900;
}
blocks button.accent.outline,
blocks .button.accent.outline,
blocks a.button.accent.outline {
  background: transparent;
  color: #d88900;
  border: 2px solid #d88900;
}
blocks button.accent.outline:hover,
blocks .button.accent.outline:hover,
blocks a.button.accent.outline:hover {
  background: #d88900 !important;
  color: #fff;
}
blocks button.accent:hover,
blocks .button.accent:hover,
blocks a.button.accent:hover {
  background: #a56900;
}
blocks block.block-image-row {
  text-align: center;
}
blocks block.block-image-row h2 {
  width: auto;
  max-width: 100%;
}
blocks block.block-image-row div.text {
  margin-bottom: 70px;
}
blocks block.block-image-row div.text p {
  width: auto;
  max-width: auto;
}
blocks block.block-image-row .image-row {
  display: flex;
  flex-wrap: wrap;
  gap: 17.5px;
  justify-content: center;
  align-items: center;
}
blocks block.block-image-row .image-row .row-item {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
  height: 200px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 17.5px;
  padding-top: 0px !important;
}
@media (max-width: 768px) {
  blocks block.block-image-row .image-row {
    flex-direction: column;
    gap: 17.5px;
  }
  blocks block.block-image-row .image-row .row-item.image-container {
    width: 100%;
    max-width: 100%;
    height: 200px !important;
  }
}
blocks block.block-image-row.setting-count-1 .row-item:nth-child(n+2) {
  display: none;
}
blocks block.block-image-row.setting-count-2 .row-item:nth-child(n+3) {
  display: none;
}
blocks block.block-image-row.setting-count-3 .row-item:nth-child(n+4) {
  display: none;
}
blocks block.block-image-row.setting-count-4 .row-item:nth-child(n+5) {
  display: none;
}
blocks block.block-image-row.setting-count-5 .row-item:nth-child(n+6) {
  display: none;
}
blocks block.block-image-row.setting-count-6 .row-item:nth-child(n+7) {
  display: none;
}
blocks block.block-image-row.setting-count-7 .row-item:nth-child(n+8) {
  display: none;
}
blocks block.block-image-row.setting-count-8 .row-item:nth-child(n+9) {
  display: none;
}
blocks block.block-image-row.setting-count-9 .row-item:nth-child(n+10) {
  display: none;
}
blocks block.block-image-row.setting-count-10 .row-item:nth-child(n+11) {
  display: none;
}
blocks block.block-image-row.setting-size-small .row-item {
  min-width: 150px;
  max-width: 200px;
  height: 150px;
}
blocks block.block-image-row.setting-size-medium .row-item {
  min-width: 200px;
  max-width: 300px;
  height: 200px;
}
blocks block.block-image-row.setting-size-large .row-item {
  min-width: 250px;
  max-width: 400px;
  height: 250px;
}
blocks block.block-image-row.setting-ratio-16-9 .row-item {
  aspect-ratio: 16/9;
  height: auto;
}
blocks block.block-image-row.setting-ratio-1-1 .row-item {
  aspect-ratio: 1/1;
  height: auto;
}
@media (max-width: 768px) {
  blocks block.block-image-row.setting-size-small .row-item,
  blocks block.block-image-row.setting-size-medium .row-item,
  blocks block.block-image-row.setting-size-large .row-item {
    width: 100%;
    max-width: 100%;
    height: 200px !important;
  }
  blocks block.block-image-row.setting-ratio-16-9 .row-item,
  blocks block.block-image-row.setting-ratio-1-1 .row-item {
    height: 200px !important;
  }
}
blocks.admin block .image-container {
  background-color: #f6f5f5;
  position: relative;
}
blocks.admin block .image-container i {
  position: absolute;
  right: 20px;
  top: 20px;
  color: #d88900;
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  cursor: pointer;
  font-style: normal;
}
blocks.admin block .image-container i:hover {
  color: #d88900;
  opacity: 0.8;
}
blocks.admin block .image-container i.fa-cog {
  top: 60px;
}
div.wysiwyg {
  font-size: 16px;
}
.wysiwyg div,
.tiptap div,
.editor-content div,
block div,
.wysiwyg span,
.tiptap span,
.editor-content span,
block span,
.wysiwyg applet,
.tiptap applet,
.editor-content applet,
block applet,
.wysiwyg object,
.tiptap object,
.editor-content object,
block object,
.wysiwyg iframe,
.tiptap iframe,
.editor-content iframe,
block iframe,
.wysiwyg h1,
.tiptap h1,
.editor-content h1,
block h1,
.wysiwyg h2,
.tiptap h2,
.editor-content h2,
block h2,
.wysiwyg h3,
.tiptap h3,
.editor-content h3,
block h3,
.wysiwyg h4,
.tiptap h4,
.editor-content h4,
block h4,
.wysiwyg h5,
.tiptap h5,
.editor-content h5,
block h5,
.wysiwyg h6,
.tiptap h6,
.editor-content h6,
block h6,
.wysiwyg p,
.tiptap p,
.editor-content p,
block p,
.wysiwyg blockquote,
.tiptap blockquote,
.editor-content blockquote,
block blockquote,
.wysiwyg pre,
.tiptap pre,
.editor-content pre,
block pre,
.wysiwyg a,
.tiptap a,
.editor-content a,
block a,
.wysiwyg abbr,
.tiptap abbr,
.editor-content abbr,
block abbr,
.wysiwyg acronym,
.tiptap acronym,
.editor-content acronym,
block acronym,
.wysiwyg address,
.tiptap address,
.editor-content address,
block address,
.wysiwyg big,
.tiptap big,
.editor-content big,
block big,
.wysiwyg cite,
.tiptap cite,
.editor-content cite,
block cite,
.wysiwyg code,
.tiptap code,
.editor-content code,
block code,
.wysiwyg del,
.tiptap del,
.editor-content del,
block del,
.wysiwyg dfn,
.tiptap dfn,
.editor-content dfn,
block dfn,
.wysiwyg em,
.tiptap em,
.editor-content em,
block em,
.wysiwyg img,
.tiptap img,
.editor-content img,
block img,
.wysiwyg ins,
.tiptap ins,
.editor-content ins,
block ins,
.wysiwyg kbd,
.tiptap kbd,
.editor-content kbd,
block kbd,
.wysiwyg q,
.tiptap q,
.editor-content q,
block q,
.wysiwyg s,
.tiptap s,
.editor-content s,
block s,
.wysiwyg samp,
.tiptap samp,
.editor-content samp,
block samp,
.wysiwyg small,
.tiptap small,
.editor-content small,
block small,
.wysiwyg strike,
.tiptap strike,
.editor-content strike,
block strike,
.wysiwyg strong,
.tiptap strong,
.editor-content strong,
block strong,
.wysiwyg sub,
.tiptap sub,
.editor-content sub,
block sub,
.wysiwyg sup,
.tiptap sup,
.editor-content sup,
block sup,
.wysiwyg tt,
.tiptap tt,
.editor-content tt,
block tt,
.wysiwyg var,
.tiptap var,
.editor-content var,
block var,
.wysiwyg b,
.tiptap b,
.editor-content b,
block b,
.wysiwyg u,
.tiptap u,
.editor-content u,
block u,
.wysiwyg i,
.tiptap i,
.editor-content i,
block i,
.wysiwyg center,
.tiptap center,
.editor-content center,
block center,
.wysiwyg dl,
.tiptap dl,
.editor-content dl,
block dl,
.wysiwyg dt,
.tiptap dt,
.editor-content dt,
block dt,
.wysiwyg dd,
.tiptap dd,
.editor-content dd,
block dd,
.wysiwyg ol,
.tiptap ol,
.editor-content ol,
block ol,
.wysiwyg ul,
.tiptap ul,
.editor-content ul,
block ul,
.wysiwyg li,
.tiptap li,
.editor-content li,
block li,
.wysiwyg fieldset,
.tiptap fieldset,
.editor-content fieldset,
block fieldset,
.wysiwyg form,
.tiptap form,
.editor-content form,
block form,
.wysiwyg label,
.tiptap label,
.editor-content label,
block label,
.wysiwyg legend,
.tiptap legend,
.editor-content legend,
block legend,
.wysiwyg table,
.tiptap table,
.editor-content table,
block table,
.wysiwyg caption,
.tiptap caption,
.editor-content caption,
block caption,
.wysiwyg tbody,
.tiptap tbody,
.editor-content tbody,
block tbody,
.wysiwyg tfoot,
.tiptap tfoot,
.editor-content tfoot,
block tfoot,
.wysiwyg thead,
.tiptap thead,
.editor-content thead,
block thead,
.wysiwyg tr,
.tiptap tr,
.editor-content tr,
block tr,
.wysiwyg th,
.tiptap th,
.editor-content th,
block th,
.wysiwyg td,
.tiptap td,
.editor-content td,
block td,
.wysiwyg article,
.tiptap article,
.editor-content article,
block article,
.wysiwyg aside,
.tiptap aside,
.editor-content aside,
block aside,
.wysiwyg canvas,
.tiptap canvas,
.editor-content canvas,
block canvas,
.wysiwyg details,
.tiptap details,
.editor-content details,
block details,
.wysiwyg embed,
.tiptap embed,
.editor-content embed,
block embed,
.wysiwyg figure,
.tiptap figure,
.editor-content figure,
block figure,
.wysiwyg figcaption,
.tiptap figcaption,
.editor-content figcaption,
block figcaption,
.wysiwyg footer,
.tiptap footer,
.editor-content footer,
block footer,
.wysiwyg header,
.tiptap header,
.editor-content header,
block header,
.wysiwyg hgroup,
.tiptap hgroup,
.editor-content hgroup,
block hgroup,
.wysiwyg menu,
.tiptap menu,
.editor-content menu,
block menu,
.wysiwyg nav,
.tiptap nav,
.editor-content nav,
block nav,
.wysiwyg output,
.tiptap output,
.editor-content output,
block output,
.wysiwyg ruby,
.tiptap ruby,
.editor-content ruby,
block ruby,
.wysiwyg section,
.tiptap section,
.editor-content section,
block section,
.wysiwyg summary,
.tiptap summary,
.editor-content summary,
block summary,
.wysiwyg time,
.tiptap time,
.editor-content time,
block time,
.wysiwyg mark,
.tiptap mark,
.editor-content mark,
block mark,
.wysiwyg audio,
.tiptap audio,
.editor-content audio,
block audio,
.wysiwyg video,
.tiptap video,
.editor-content video,
block video {
  margin: 0;
  padding: 0;
  border: 0;
  list-style-type: none;
  font-size: inherit;
  font-size: 16px;
}
.wysiwyg a,
.tiptap a,
.editor-content a,
block a {
  color: #d88900;
}
.wysiwyg h2,
.tiptap h2,
.editor-content h2,
block h2 {
  font-size: 36px;
  font-family: "Anybody", sans-serif;
  line-height: 36px;
  font-weight: 800;
  margin-bottom: 20px;
}
.wysiwyg h3,
.tiptap h3,
.editor-content h3,
block h3 {
  font-size: 26px;
  font-family: "Anybody", sans-serif;
  line-height: 26px;
  font-weight: 800;
  margin-bottom: 20px;
}
.wysiwyg h1,
.tiptap h1,
.editor-content h1,
block h1,
.wysiwyg h2,
.tiptap h2,
.editor-content h2,
block h2,
.wysiwyg h3,
.tiptap h3,
.editor-content h3,
block h3,
.wysiwyg h4,
.tiptap h4,
.editor-content h4,
block h4 {
  width: 100%;
  max-width: 66%;
}
.wysiwyg b,
.tiptap b,
.editor-content b,
block b {
  font-weight: 800;
}
.wysiwyg .with-bullet::before,
.tiptap .with-bullet::before,
.editor-content .with-bullet::before,
block .with-bullet::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  background: #d88900;
  border-radius: 100%;
  margin-right: 8.75px;
}
.wysiwyg h2.with-bullet::before,
.tiptap h2.with-bullet::before,
.editor-content h2.with-bullet::before,
block h2.with-bullet::before {
  width: 20px;
  height: 20px;
}
.wysiwyg h3.with-bullet::before,
.tiptap h3.with-bullet::before,
.editor-content h3.with-bullet::before,
block h3.with-bullet::before {
  width: 12px;
  height: 12px;
}
.wysiwyg .color-accent,
.tiptap .color-accent,
.editor-content .color-accent,
block .color-accent {
  color: #d88900;
}
.wysiwyg i:not(.fa),
.tiptap i:not(.fa),
.editor-content i:not(.fa),
block i:not(.fa) {
  font-style: italic;
}
.wysiwyg p,
.tiptap p,
.editor-content p,
block p {
  margin: 0px;
  padding: 0px;
  margin-bottom: 17.5px;
}
.wysiwyg li,
.tiptap li,
.editor-content li,
block li,
.wysiwyg p:not(.full-width),
.tiptap p:not(.full-width),
.editor-content p:not(.full-width),
block p:not(.full-width) {
  width: 88%;
}
.wysiwyg .full-width,
.tiptap .full-width,
.editor-content .full-width,
block .full-width {
  width: 100%;
}
.wysiwyg .full-width p,
.tiptap .full-width p,
.editor-content .full-width p,
block .full-width p {
  width: calc(100% - 50px) !important;
}
.wysiwyg p:last-child,
.tiptap p:last-child,
.editor-content p:last-child,
block p:last-child {
  margin-bottom: 0px;
}
.wysiwyg ul li,
.tiptap ul li,
.editor-content ul li,
block ul li,
.wysiwyg ol li,
.tiptap ol li,
.editor-content ol li,
block ol li {
  position: relative;
  margin-bottom: 6px;
  font-size: 16px;
}
.wysiwyg ul li:last-child,
.tiptap ul li:last-child,
.editor-content ul li:last-child,
block ul li:last-child,
.wysiwyg ol li:last-child,
.tiptap ol li:last-child,
.editor-content ol li:last-child,
block ol li:last-child {
  margin-bottom: 17.5px;
}
.wysiwyg ul li p,
.tiptap ul li p,
.editor-content ul li p,
block ul li p,
.wysiwyg ol li p,
.tiptap ol li p,
.editor-content ol li p,
block ol li p {
  display: inline;
  margin: 0;
}
.wysiwyg ul li::before,
.tiptap ul li::before,
.editor-content ul li::before,
block ul li::before {
  content: '';
  position: relative;
  top: -2px;
  left: 8px;
  margin-right: 17.5px;
  color: #d88900;
  background: #d88900;
  width: 7px;
  height: 7px;
  display: inline-block;
  border-radius: 50%;
}
.wysiwyg ol li::before,
.tiptap ol li::before,
.editor-content ol li::before,
block ol li::before {
  content: counter(list-item) '.';
  margin-right: 17.5px;
}
.wysiwyg [contenteditable="true"],
.tiptap [contenteditable="true"],
.editor-content [contenteditable="true"],
block [contenteditable="true"],
.wysiwyg div[contenteditable="true"],
.tiptap div[contenteditable="true"],
.editor-content div[contenteditable="true"],
block div[contenteditable="true"] {
  cursor: text;
  outline: none;
}
.wysiwyg [contenteditable="true"]:hover,
.tiptap [contenteditable="true"]:hover,
.editor-content [contenteditable="true"]:hover,
block [contenteditable="true"]:hover,
.wysiwyg div[contenteditable="true"]:hover,
.tiptap div[contenteditable="true"]:hover,
.editor-content div[contenteditable="true"]:hover,
block div[contenteditable="true"]:hover {
  background: rgba(220, 222, 224, 0.25) !important;
}
.wysiwyg table,
.tiptap table,
.editor-content table,
block table {
  border-collapse: collapse;
  width: 100%;
  margin: 10px 0;
}
.wysiwyg table td,
.tiptap table td,
.editor-content table td,
block table td,
.wysiwyg table th,
.tiptap table th,
.editor-content table th,
block table th {
  border: 2px solid transparent;
  padding: 8px;
  text-align: left;
  vertical-align: top;
  min-width: 40px;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
}
.wysiwyg table.heading-first-row tr:first-child td,
.tiptap table.heading-first-row tr:first-child td,
.editor-content table.heading-first-row tr:first-child td,
block table.heading-first-row tr:first-child td,
.wysiwyg table.heading-first-row tr:first-child th,
.tiptap table.heading-first-row tr:first-child th,
.editor-content table.heading-first-row tr:first-child th,
block table.heading-first-row tr:first-child th {
  font-weight: bold;
  color: #d88900;
  border-bottom: 2px solid #d88900;
}
.wysiwyg table.heading-first-column tr td:first-child,
.tiptap table.heading-first-column tr td:first-child,
.editor-content table.heading-first-column tr td:first-child,
block table.heading-first-column tr td:first-child,
.wysiwyg table.heading-first-column tr th:first-child,
.tiptap table.heading-first-column tr th:first-child,
.editor-content table.heading-first-column tr th:first-child,
block table.heading-first-column tr th:first-child {
  font-weight: bold;
  color: #d88900;
  border-right: 2px solid #d88900;
}
@media (max-width: 768px) {
  .wysiwyg h1,
  .tiptap h1,
  .editor-content h1,
  block h1,
  .wysiwyg h2,
  .tiptap h2,
  .editor-content h2,
  block h2,
  .wysiwyg h3,
  .tiptap h3,
  .editor-content h3,
  block h3,
  .wysiwyg h4,
  .tiptap h4,
  .editor-content h4,
  block h4 {
    max-width: 100%;
  }
  .wysiwyg h1,
  .tiptap h1,
  .editor-content h1,
  block h1 {
    font-size: 36px;
  }
  .wysiwyg h2,
  .tiptap h2,
  .editor-content h2,
  block h2 {
    font-size: 26px;
  }
  .wysiwyg h3,
  .tiptap h3,
  .editor-content h3,
  block h3 {
    font-size: 20px;
  }
  .wysiwyg p,
  .tiptap p,
  .editor-content p,
  block p {
    width: 100%;
  }
}
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  z-index: 10000;
  padding: 1rem 0;
  box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
}
.cookie-notice .cookie-notice-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
@media (max-width: 768px) {
  .cookie-notice .cookie-notice-content {
    flex-direction: column;
    text-align: center;
  }
}
.cookie-notice .cookie-notice-text {
  flex: 1;
}
.cookie-notice .cookie-notice-text p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
}
.cookie-notice .cookie-notice-buttons {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .cookie-notice .cookie-notice-buttons {
    width: 100%;
    justify-content: center;
  }
}
.cookie-notice .cookie-notice-buttons button {
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
  color: #d88900 !important;
}
.cookie-notice .cookie-notice-buttons button.cookie-settings-btn {
  background: transparent;
  border: 1px solid #d88900;
  color: #d88900;
}
.cookie-notice .cookie-notice-buttons button.cookie-settings-btn:hover {
  background: rgba(0, 0, 0, 0.05) !important;
}
.cookie-notice .cookie-notice-buttons button.cookie-accept-btn {
  color: #fff !important;
  background: #d88900;
}
.cookie-notice .cookie-notice-buttons button.cookie-accept-btn:hover {
  background: #a56900;
}
.cookie-settings {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.cookie-settings .cookie-settings-content {
  background: #fff;
  border-radius: 8px;
  max-width: 500px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.cookie-settings .cookie-settings-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cookie-settings .cookie-settings-header h3 {
  margin: 0;
  font-size: 1.25rem;
  color: #666;
}
.cookie-settings .cookie-settings-header .cookie-settings-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #666;
  opacity: 0.6;
  padding: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-settings .cookie-settings-header .cookie-settings-close:hover {
  opacity: 1;
}
.cookie-settings .cookie-settings-body {
  padding: 1.5rem;
}
.cookie-settings .cookie-settings-body .cookie-option {
  margin-bottom: 1.5rem;
}
.cookie-settings .cookie-settings-body .cookie-option:last-child {
  margin-bottom: 0;
}
.cookie-settings .cookie-settings-body .cookie-option-header {
  margin-bottom: 0.5rem;
}
.cookie-settings .cookie-settings-body .cookie-option-description {
  margin: 0;
  font-size: 0.9rem;
  color: #666;
  opacity: 0.7;
  line-height: 1.4;
}
.cookie-settings .cookie-settings-footer {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  text-align: right;
}
.cookie-settings .cookie-settings-footer .cookie-save-btn {
  background: #d88900;
  color: #fff;
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: background-color 0.2s;
}
.cookie-settings .cookie-settings-footer .cookie-save-btn:hover {
  background: #a56900;
}
.cookie-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: 500;
  color: #666;
}
.cookie-checkbox input[type="checkbox"] {
  display: none;
}
.cookie-checkbox .checkmark {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  margin-right: 0.75rem;
  position: relative;
  transition: all 0.2s;
}
.cookie-checkbox .checkmark:after {
  content: '';
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.cookie-checkbox input[type="checkbox"]:checked ~ .checkmark {
  background-color: #d88900;
  border-color: #d88900;
}
.cookie-checkbox input[type="checkbox"]:checked ~ .checkmark:after {
  display: block;
}
.cookie-checkbox input[type="checkbox"]:disabled ~ .checkmark {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.2);
  cursor: not-allowed;
}
button,
.button,
a.button {
  display: inline-block;
  padding: 12px 24px;
  background: #d88900;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
button:hover,
.button:hover,
a.button:hover {
  background: #d88900 !important;
  color: #fff;
  transform: translateY(-1px);
}
button.accent,
.button.accent,
a.button.accent {
  background: #d88900;
}
button.accent:hover,
.button.accent:hover,
a.button.accent:hover {
  background: #a56900;
}
button.outline,
.button.outline,
a.button.outline {
  background: transparent;
  color: #d88900;
  border: 2px solid #d88900;
}
button.outline:hover,
.button.outline:hover,
a.button.outline:hover {
  background: #d88900 !important;
  color: #fff;
}
button.accent,
.button.accent,
a.button.accent {
  display: inline-block;
  padding: 12px 24px;
  background: #d88900;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 6px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  background: #d88900 !important;
}
button.accent:hover,
.button.accent:hover,
a.button.accent:hover {
  background: #d88900 !important;
  color: #fff;
  transform: translateY(-1px);
}
button.accent.accent,
.button.accent.accent,
a.button.accent.accent {
  background: #d88900;
}
button.accent.accent:hover,
.button.accent.accent:hover,
a.button.accent.accent:hover {
  background: #a56900;
}
button.accent.outline,
.button.accent.outline,
a.button.accent.outline {
  background: transparent;
  color: #d88900;
  border: 2px solid #d88900;
}
button.accent.outline:hover,
.button.accent.outline:hover,
a.button.accent.outline:hover {
  background: #d88900 !important;
  color: #fff;
}
button.accent:hover,
.button.accent:hover,
a.button.accent:hover {
  background: #d88900 !important;
  color: #fff;
  transform: translateY(-1px);
}
button.accent.accent,
.button.accent.accent,
a.button.accent.accent {
  background: #d88900;
}
button.accent.accent:hover,
.button.accent.accent:hover,
a.button.accent.accent:hover {
  background: #a56900;
}
button.accent.outline,
.button.accent.outline,
a.button.accent.outline {
  background: transparent;
  color: #d88900;
  border: 2px solid #d88900;
}
button.accent.outline:hover,
.button.accent.outline:hover,
a.button.accent.outline:hover {
  background: #d88900 !important;
  color: #fff;
}
button.accent:hover,
.button.accent:hover,
a.button.accent:hover {
  background: #a56900;
}
