
@font-face {
  font-family: "Bauhaus-Medium";
  src: url(/assets/BauhausMedium.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-Bold.ttf) format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-BoldItalic.ttf) format("truetype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-SemiBold.ttf) format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-SemiBoldItalic.ttf) format("truetype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-Medium.ttf) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-MediumItalic.ttf) format("truetype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-Regular.ttf) format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-Italic.ttf) format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-Light.ttf) format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url(/assets/Inter-LightItalic.ttf) format("truetype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}
.hidden {
  display: none !important;
}

.locked {
  pointer-events: none;
  filter: blur(2px);
}

.gap-1 {
  gap: 8px;
}

.gap-2 {
  gap: 16px;
}

.gap-3 {
  gap: 24px;
}

.gap-4 {
  gap: 32px;
}

.gap-5 {
  gap: 40px;
}

.skeleton {
  background: linear-gradient(90deg, #F3F3F3 25%, transparent 50%, #F3F3F3 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
.spinner {
  border: 4px solid #F3F3F3;
  border-top: 4px solid #FF390E;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.turbo-progress-bar {
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  height: 3px;
  background: #FF390E;
  z-index: 2147483647;
  transition: width 300ms ease-out, opacity 150ms 150ms ease-in;
  transform: translate3d(0, 0, 0);
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-break {
  word-wrap: break-word !important;
  word-break: break-word !important;
}

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

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

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

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

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline-block {
  display: inline-block !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

@media (max-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
}
@media (max-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
}
/* =========================================================================
   CONSOLIDATED UI COMPONENTS
   ========================================================================= */
/* -------------------------------------------------------------------------
   1. BUTTONS & LINKS
   ------------------------------------------------------------------------- */
/* Button animations */
@keyframes border {
  0% {
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    transform: translate(-50%, -50%) scale(0.7);
  }
  100% {
    transform: translate(-50%, -50%) scale(1);
  }
}
/* Base button styles */
.button {
  font-family: "Inter";
  font-style: normal;
  display: block;
  border: none;
  position: relative;
  padding: 1px 6px;
}
.button .svg-block {
  position: relative;
}
.button .svg-block .svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.button .btn-text {
  white-space: nowrap;
}
.button:not(.tooltip-component):hover > .tooltip-component {
  opacity: 1;
}
.button__unique {
  min-width: 48px;
  height: 48px;
  background: #FF390E;
  border-radius: 27px;
  padding-left: 6px;
}
.button__unique .svg-block {
  width: 36px;
  height: 36px;
  background: #FFFFFF;
  border-radius: 50%;
}
.button__unique .svg-block .target-svg {
  color: #FF390E;
  transform: translate(-59%, -50%);
}
.button__unique .btn-text {
  font-weight: 700;
  font-size: 18px;
  line-height: 21px;
  letter-spacing: 0.2em;
  padding: 0 40px 0 20px;
  color: #FFFFFF;
}
.button__unique:not(.button__unique--disabled):hover {
  background: #D92700;
}
.button__unique:not(.button__unique--disabled):hover .target-svg {
  color: #D92700;
}
.button__unique--disabled {
  background: #CFCFCF;
  pointer-events: none;
}
.button__unique--disabled .svg-block {
  background: #CFCFCF;
}
.button__unique--disabled .svg-block .svg {
  color: #FFFFFF;
}
.button__primary {
  min-width: 40px;
  width: -moz-fit-content;
  width: fit-content;
  height: 40px;
  background: #FF390E;
  border-radius: 27px;
  font-size: 14px;
  line-height: 16px;
  font-weight: 700;
  padding: 1px 6px;
  color: #FFFFFF;
}
.button__primary .svg-block {
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 50%;
  margin-left: 2px;
}
.button__primary .svg-block .svg {
  color: #FF390E;
}
.button__primary .btn-text {
  padding: 0 20px 0 10px;
}
.button__primary--disabled {
  background: #CFCFCF;
  pointer-events: none;
}
.button__primary--disabled .svg-block svg.svg {
  color: #CFCFCF;
}
.button__primary:not(.button__primary--disabled, .button__primary--fixed-width--google-icon):hover {
  background: #D92700;
}
.button__primary:not(.button__primary--disabled, .button__primary--fixed-width--google-icon):hover .svg {
  color: #D92700;
}
.button__primary:not(.button__primary--disabled, .button__primary--fixed-width--google-icon):hover .btn-text {
  color: #FFFFFF;
}
.button__primary--fixed-width {
  position: relative;
  width: 380px;
}
.button__primary--fixed-width .svg-block {
  position: absolute;
  left: 8px;
}
.button__primary--fixed-width .svg-block .svg {
  color: #FF390E;
}
.button__primary--fixed-width--google-icon {
  background: #0085FF;
}
.button__primary--fixed-width--google-icon .svg-block {
  background: none;
}
.button__primary--fixed-width--google-icon .svg-block .svg {
  color: #FFFFFF;
}
.button__primary--fixed-width--google-icon:hover {
  background: #007bed;
}
.button__primary--fixed-width--google-icon:hover .svg-block .svg {
  color: #FFFFFF;
}
.button__secondary {
  width: 34px;
  height: 34px;
  background: none;
  transition: 2.5s;
}
.button__secondary .svg-block {
  position: absolute;
  width: 24px;
  height: 24px;
  background: #FF390E;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.button__secondary .svg-block .svg {
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.button__secondary .btn-text {
  margin-left: 19px;
  color: #FF390E;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
}
.button__secondary::before {
  content: "";
  border-radius: 50%;
  border: 1px solid #FF390E;
  width: 34px;
  position: absolute;
  height: 34px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.button__secondary:hover::before {
  top: 50%;
  left: 50%;
  animation: border 0.7s infinite;
  border: 1px solid #D92700;
}
.button__secondary.button.large_button {
  width: 56px;
  height: 56px;
}
.button__secondary.button.large_button .svg-block {
  width: 46px;
  height: 46px;
}
.button__secondary.button.large_button .svg-block .svg {
  top: 42%;
  left: 58%;
}
.button__secondary.button.large_button::before {
  content: "";
  width: 56px;
  height: 56px;
}
.button__secondary.button.large_button .btn-text {
  margin-left: 42px;
  font-size: 14px;
  line-height: 16px;
}
.button__secondary--disabled {
  pointer-events: none;
}
.button__secondary--disabled .btn-text {
  color: #CFCFCF;
}
.button__secondary--disabled::before {
  border: 1px solid #CFCFCF;
}
.button__secondary--disabled:hover::before {
  animation: none;
  border: 1px solid #CFCFCF;
}
.button__secondary--disabled .svg-block {
  background: #CFCFCF;
}
.button__secondary--disabled .svg-block svg.plus-svg {
  color: #FFFFFF;
}
.button__secondary:not(.button__secondary--disabled):hover .svg-block {
  background: #D92700;
}
.button__secondary:not(.button__secondary--disabled):hover .btn-text {
  color: #D92700;
}
.button__tetriary {
  background: none;
}
.button__tetriary .svg-block .svg {
  color: #FF390E;
}
.button__tetriary .btn-text {
  padding-left: 16px;
  color: #000000;
  font-weight: 700;
  font-size: 12px;
  line-height: 14px;
}
.button__tetriary--disabled {
  pointer-events: none;
}
.button__tetriary--disabled .svg-block .svg, .button__tetriary--disabled .btn-text {
  color: #CFCFCF;
}
.button__tetriary:not(.button__tetriary--disabled):hover .svg-block .svg, .button__tetriary:not(.button__tetriary--disabled):hover .btn-text {
  color: #D92700;
}
.button__cancellation {
  background: #5E5E5E;
  border-radius: 27px;
  height: 40px;
  min-width: 32px;
  padding: 8px;
  transition: 0.3s;
}
.button__cancellation .svg-block {
  background: #FFFFFF;
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.button__cancellation .svg-block .svg {
  color: #5E5E5E;
}
.button__cancellation .btn-text {
  padding: 0 13px 0 10px;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
}
.button__cancellation--disabled {
  background: #CFCFCF;
  pointer-events: none;
}
.button__cancellation--disabled .svg-block .svg {
  color: #CFCFCF;
}
.button__cancellation:not(.button__cancellation--disabled):hover {
  background: #000000;
}
.button__cancellation:not(.button__cancellation--disabled):hover .svg-block .svg {
  color: #000000;
}
.button__cross {
  background: none;
}
.button__cross .svg-block {
  border: 1px solid #FF390E;
  width: 34px;
  height: 34px;
  border-radius: 50%;
}
.button__cross .svg-block .svg {
  color: #FF390E;
  width: 10px;
  height: 10px;
}
.button__cross--disabled {
  pointer-events: none;
}
.button__cross--disabled .svg-block {
  border: 1px solid #CFCFCF;
}
.button__cross--disabled .svg-block .svg {
  color: #CFCFCF;
}
.button__cross:not(.button__cross--disabled):hover .svg-block {
  border: 2px solid #D92700;
}
.button__cross:not(.button__cross--disabled):hover .svg-block .svg {
  color: #D92700;
}
.button__carrot .svg {
  width: 12px;
}
.button__carrot--top {
  width: 48px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 3px 3px 0 0;
}
.button__carrot--top .svg {
  color: #FF390E;
  transform: rotate(270deg);
}
.button__carrot--top:hover {
  background: #D92700;
}
.button__carrot--top:hover .svg {
  color: #FFFFFF;
}
.button__carrot--down {
  width: 48px;
  height: 16px;
  background: #FFFFFF;
  border-radius: 0 0 3px 3px;
}
.button__carrot--down .svg {
  color: #FF390E;
  transform: rotate(90deg);
  margin-top: 2px;
}
.button__carrot--down:hover {
  background: #D92700;
}
.button__carrot--down:hover .svg {
  color: #FFFFFF;
}
.button__carrot--left {
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 50%;
}
.button__carrot--left .svg {
  color: #0085FF;
  transform: rotate(180deg) translateX(1px);
}
.button__carrot--left:not(.__carrot--left--disabled):hover .svg {
  color: #D92700;
}
.button__carrot--left--disabled {
  opacity: 0.3;
  pointer-events: none;
}
.button__carrot--right {
  width: 24px;
  height: 24px;
  background: #FFFFFF;
  border-radius: 50%;
}
.button__carrot--right .svg {
  color: #0085FF;
  transform: translateX(1px);
}
.button__carrot--right:not(.__carrot--right--disabled):hover .svg {
  color: #D92700;
}
.button__carrot--right--disabled {
  opacity: 0.3;
  pointer-events: none;
}
.button__round-chevron {
  border-radius: 50%;
  padding: 2px;
  background: #FFFFFF;
}
.button__round-chevron .svg-block {
  width: 20px;
  height: 20px;
  padding: 2px;
  border-radius: 50%;
  border: 1px solid #FF390E;
}
.button__round-chevron .svg-block .svg {
  color: #FF390E;
  transform: translate(-50%, -50%) rotate(90deg);
  top: 55%;
}
.button__round-chevron--disabled .svg-block {
  border: 1px solid #CFCFCF;
}
.button__round-chevron--disabled .svg-block .svg {
  color: #CFCFCF;
}
.button__round-chevron:not(.button__round-chevron--disabled):hover .svg-block {
  border: 1px solid #D92700;
}
.button__round-chevron:not(.button__round-chevron--disabled):hover .svg-block .svg {
  color: #D92700;
}
.button__add {
  height: 32px;
}
.button__add--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.button__add--disabled .svg {
  color: #CFCFCF;
}
.button__like, .button__dislike {
  background-color: #FFFFFF;
}
.button__like .selected, .button__dislike .selected {
  fill: #FF390E;
}
.button__like .svg-block, .button__dislike .svg-block {
  color: #FF390E;
  stroke: #FF390E;
  fill: #FFFFFF;
}
.button__like .svg-block:hover, .button__dislike .svg-block:hover {
  color: #D92700;
}
.button__skip {
  background-color: #FFFFFF;
}
.button__skip .svg-block {
  color: #000000;
}
.button__skip .svg-block:hover {
  color: #5E5E5E;
}
.button__gallery, .button__discover {
  background-color: #FFFFFF;
}
.button__gallery .svg-block svg, .button__discover .svg-block svg {
  height: 48px;
  color: #FF390E;
  fill: #FFFFFF;
  stroke-width: 1px;
}
.button__gallery .svg-block svg.selected, .button__discover .svg-block svg.selected {
  stroke-width: 2.5px;
}
.button__gallery .svg-block svg:hover, .button__discover .svg-block svg:hover {
  color: #D92700;
}
.button__gallery--disabled, .button__discover--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.button__gallery--disabled .svg, .button__discover--disabled .svg {
  color: #CFCFCF;
}
.button__nav {
  height: 56px;
  text-transform: none;
}
.button__nav--disabled {
  opacity: 0.3;
  pointer-events: none;
}
.button__thin {
  min-width: 208px;
  height: 27px;
  text-transform: none;
}
.button__thin--disabled {
  opacity: 0.3;
  pointer-events: none;
}
.button__omni_auth {
  width: 250px;
  height: 44px;
  background-color: transparent !important;
  border: 1px solid #FFFFFF;
  border-radius: 27px;
}
.button__omni_auth .svg-block .apple-svg {
  color: #FFFFFF;
}
.button__menu {
  width: 35px;
  height: 35px;
}
.button__menu + .menu-dropdown {
  z-index: 2;
  white-space: nowrap;
}
.button__menu--disabled {
  opacity: 0.3;
  pointer-events: none;
}
.button__circle-icon {
  width: 35px;
  height: 35px;
}

/* Additional button styles from base.scss */
.btn-container {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.btn-add-left-margin {
  margin-left: 5px;
}

.btn-sm {
  width: 50px;
  height: 50px;
  padding: 0;
}

.btn-sm-text {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 1vw;
}

.btn-sm-icon {
  font-size: 3vw !important;
}

button.close {
  padding: 0 6px;
  border: none;
  font-weight: 700;
  background: none;
  position: absolute;
  top: 0;
  right: 5px;
  line-height: 22px;
  border-radius: 3px;
  padding-bottom: 1px;
}
button.close:hover {
  box-shadow: inset 0px 0px 2px 2px #808080;
}

.google-btn {
  transition: all 0.3s ease-out;
  width: 270px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #adb5bd;
  padding: 0 15px;
}
.google-btn .google-svg {
  width: 35px;
}
.google-btn:hover {
  transition: all 0.3s ease;
  opacity: 0.8;
  box-shadow: 0px 0px 15px 2px #acafb2;
}

/* Link styles */
.link {
  font-family: "Inter";
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  text-decoration: underline;
}
.link--common {
  font-style: normal;
  color: #0085FF;
}
.link--common:hover {
  color: #0085FF;
  text-decoration: none;
}
.link--zero {
  font-style: italic;
  color: #FFFFFF;
}
.link--zero:hover {
  color: #FFFFFF;
  text-decoration: none;
}
.link--unnoted {
  font-style: normal;
  color: #000000;
  text-decoration: none;
}
.link--unnoted:hover {
  color: #5E5E5E;
  text-decoration: underline;
}
.link--simple_dropdown_main {
  font-weight: 500;
  text-decoration: none;
  font-size: 1.75rem;
  color: #000000;
}
.link--simple_dropdown_main:hover {
  color: #5E5E5E;
}
.link--simple_dropdown_main:after {
  color: #FF390E;
}
.link--simple_dropdown_opt.selected {
  color: #000000;
}
.link--simple_dropdown_opt {
  text-decoration: none;
  font-size: 0.875rem;
  color: #A1A1A1;
  padding: 0.25rem;
}
.link.disabled {
  opacity: 0.4;
  pointer-events: none;
  text-decoration: none;
  color: #5E5E5E !important;
}

/* -------------------------------------------------------------------------
   2. FORM CONTROLS
   ------------------------------------------------------------------------- */
/* Input styles */
.coolhand-input {
  font-family: "Inter";
  font-size: 14px;
  min-width: 100px;
}
.coolhand-input-box {
  min-width: 200px;
}
.coolhand-input.flexible-width {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.coolhand-input:disabled, .coolhand-input.disabled {
  color: #A1A1A1;
}
.coolhand-input:disabled input, .coolhand-input:disabled textarea, .coolhand-input:disabled .input-wrapper-box, .coolhand-input.disabled input, .coolhand-input.disabled textarea, .coolhand-input.disabled .input-wrapper-box {
  background-color: #F3F3F3;
}
.coolhand-input .form-label {
  padding-left: 20px;
  height: 16px;
  margin-bottom: 12px;
}
.coolhand-input input::-moz-placeholder, .coolhand-input textarea::-moz-placeholder {
  font-style: italic;
  color: #A1A1A1;
  padding-left: 8px;
}
.coolhand-input .form-label-optional, .coolhand-input input::placeholder, .coolhand-input textarea::placeholder {
  font-style: italic;
  color: #A1A1A1;
  padding-left: 8px;
}
.coolhand-input .input-wrapper {
  position: relative;
}
.coolhand-input .input-wrapper-box {
  border: 1px solid #A1A1A1;
  border-radius: 24px;
  padding: 16px 20px 8px 20px;
  font-size: 14px;
  overflow: auto;
}
.coolhand-input .input-wrapper-box:hover {
  border: 2px solid #5E5E5E;
}
.coolhand-input .input-wrapper-box:focus, .coolhand-input .input-wrapper-box:focus-within {
  border: 1px solid #FF390E;
  box-shadow: unset;
}
.coolhand-input .input-wrapper input {
  border: 1px solid #A1A1A1;
  border-radius: 30px;
  height: 48px;
  padding: 16px 20px;
  font-size: 14px;
}
.coolhand-input .input-wrapper input:hover {
  border: 2px solid #5E5E5E;
}
.coolhand-input .input-wrapper input:focus {
  border: 1px solid #FF390E;
  box-shadow: unset;
}
.coolhand-input .input-wrapper textarea {
  height: 166px;
  font-size: 14px;
  border: unset;
  box-shadow: unset;
  padding: unset;
  resize: none;
  margin-bottom: 8px;
}
.coolhand-input .input-wrapper.input-valid input, .coolhand-input .input-wrapper.input-invalid input {
  padding-right: 46px;
}
.coolhand-input .input-wrapper.input-valid.input-hint input, .coolhand-input .input-wrapper.input-invalid.input-hint input {
  padding-right: 86px;
}
.coolhand-input .input-wrapper.input-hint input {
  padding-right: 58px;
}
.coolhand-input .input-wrapper .input-icons {
  position: absolute;
  right: 22px;
  top: 12px;
}
.coolhand-input .input-wrapper .input-icons-box {
  position: unset;
  right: unset;
  top: unset;
}
.coolhand-input .input-wrapper .input-icons .input-valid {
  width: 14px;
  height: 10px;
}
.coolhand-input .input-wrapper .input-icons .input-invalid {
  width: 12px;
  height: 12px;
}
.coolhand-input .input-wrapper .input-icons .info-svg {
  width: 24px;
  height: 24px;
}
.coolhand-input .input-wrapper .input-icons .info-svg-box {
  width: 18px;
  height: 18px;
}
.coolhand-input .input-wrapper .input-icons .coolhand-input-info {
  display: inline-block;
  position: relative;
  margin-left: 12px;
}
.coolhand-input .input-wrapper .input-icons .coolhand-input-info:first-child {
  margin: 0px;
}
.coolhand-input .input-wrapper .input-icons .coolhand-input-info-box {
  margin-left: 8px;
}
.coolhand-input .input-wrapper .input-icons .coolhand-input-info:hover > .tooltip-component {
  opacity: 1;
}
.coolhand-input .input-error {
  margin: 8px 20px;
  color: #FF390E;
}
.coolhand-input-count {
  font-size: 12px;
  color: #A1A1A1;
  margin-left: 8px;
}

/* Dropdown styles */
.coolhand-dropdown {
  position: relative;
  width: 100%;
  min-width: 260px;
  font-family: "Inter";
  font-size: 14px;
}
.coolhand-dropdown.flexible-width {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.coolhand-dropdown-info {
  padding: 0px 18px 20px 18px;
}
.coolhand-dropdown-info .info-svg {
  margin-right: 8px;
}
.coolhand-dropdown-info-text {
  line-height: 24px;
  font-style: italic;
  color: #A1A1A1;
}
.coolhand-dropdown-info-split {
  margin-top: 18px;
  height: 1px;
  background: #E3E3E3;
}
.coolhand-dropdown.disabled {
  color: #A1A1A1;
}
.coolhand-dropdown.disabled input, .coolhand-dropdown.disabled .coolhand-dropdown-wrapper {
  background-color: #F3F3F3;
}
.coolhand-dropdown .form-label {
  color: #000000;
  padding-left: 20px;
  height: 16px;
  margin-bottom: 12px;
}
.coolhand-dropdown .form-label.build_draft_story {
  font-weight: bold;
  height: 23px;
  line-height: 23px;
  font-size: 20px;
  padding-left: 8px;
}
.coolhand-dropdown .draft-story-svg {
  color: #FF390E;
}
.coolhand-dropdown:hover {
  color: #D92700;
}
.coolhand-dropdown:hover .draft-story-svg, .coolhand-dropdown:hover .dropdown-icons .chevron-svg, .coolhand-dropdown:hover .dropdown-icons > * {
  color: #D92700;
}
.coolhand-dropdown.focus {
  color: #D92700;
}
.coolhand-dropdown.focus .coolhand-dropdown-wrapper {
  border: 1px solid #FF390E;
  box-shadow: unset;
}
.coolhand-dropdown.focus .draft-story-svg, .coolhand-dropdown.focus .dropdown-icons .chevron-svg, .coolhand-dropdown.focus .dropdown-icons > * {
  color: #D92700;
}
.coolhand-dropdown input::-moz-placeholder {
  font-style: italic;
  color: #A1A1A1;
  padding-left: 8px;
}
.coolhand-dropdown .form-label-optional, .coolhand-dropdown input::placeholder {
  font-style: italic;
  color: #A1A1A1;
  padding-left: 8px;
}
.coolhand-dropdown-wrapper {
  cursor: pointer;
  border: 1px solid #A1A1A1;
  border-radius: 30px;
  padding: 12px 20px;
}
.coolhand-dropdown-wrapper:hover {
  border: 2px solid #5E5E5E;
}
.coolhand-dropdown-wrapper .coolhand-select {
  width: 100%;
  overflow: hidden;
}
.coolhand-dropdown-wrapper .coolhand-select select {
  display: none;
}
.coolhand-dropdown-wrapper .coolhand-select .select-selected {
  cursor: pointer;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: unset;
  box-shadow: unset;
  padding: 0;
  font-size: 14px;
}
.coolhand-dropdown-wrapper .coolhand-select .select-items {
  position: absolute;
  width: 100%;
  top: 84px;
  left: 0px;
  background: #FFFFFF;
  overflow: hidden;
  box-sizing: border-box;
  border: 1px solid #CFCFCF;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1176470588);
  border-radius: 24px;
  padding: 20px 0px;
  z-index: 1;
}
.coolhand-dropdown-wrapper .coolhand-select .select-items-prompt {
  top: 90px;
}
.coolhand-dropdown-wrapper .coolhand-select .select-items .items-box {
  max-height: 295px;
  overflow: overlay;
}
.coolhand-dropdown-wrapper .coolhand-select .select-items .items-box::-webkit-scrollbar {
  width: 9px;
}
.coolhand-dropdown-wrapper .coolhand-select .select-items .items-box::-webkit-scrollbar-thumb {
  border: 2px solid rgba(0, 0, 0, 0);
  background: #CFCFCF;
  border-radius: 6px;
  background-clip: padding-box;
}
.coolhand-dropdown-wrapper .coolhand-select .select-items .items-box div {
  padding: 0px 18px;
  min-height: 30px;
  line-height: 30px;
  color: #5E5E5E;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.coolhand-dropdown-wrapper .coolhand-select .select-items .items-box div:hover, .coolhand-dropdown-wrapper .coolhand-select .select-items .items-box .same-as-selected {
  color: #000000;
  background: #F3F3F3;
}
.coolhand-dropdown-wrapper .coolhand-select .select-items .items-box-prompt div {
  overflow: unset;
  text-overflow: unset;
  white-space: unset;
}
.coolhand-dropdown-wrapper .dropdown-icons {
  margin-left: 12px;
}
.coolhand-dropdown-wrapper .dropdown-icons-split {
  margin: 0px 16px;
  width: 1px;
  height: 100%;
  background: #000000;
  opacity: 0.1;
}
.coolhand-dropdown-wrapper .dropdown-icons-example {
  color: #FF390E;
  font-size: 12px;
  font-weight: bold;
  text-transform: uppercase;
  padding-right: 10px;
}
.coolhand-dropdown-wrapper .dropdown-icons .valid-check-svg::before {
  content: "";
  width: 1px;
  background: #000000;
  opacity: 0.1;
}
.coolhand-dropdown-wrapper .dropdown-icons .chevron-svg {
  transform: rotateZ(90deg);
  color: #FF390E;
}
.coolhand-dropdown-wrapper .dropdown-icons .chevron-svg.active {
  transform: rotateZ(-90deg);
}
.coolhand-dropdown .dropdown-error {
  margin: 8px 20px;
  color: #FF390E;
}

/* Toggle styles */
.toggle-container .btn-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
}
.toggle-container .db-toggle {
  width: 32px;
  height: 20px;
  border-radius: 23px;
  border: 1px solid #FF390E;
  cursor: pointer;
}
.toggle-container .db-toggle .disc {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.toggle-container .db-toggle-off .disc {
  background: #FF390E;
  transform: translateX(-6px);
}
.toggle-container .db-toggle-on {
  background: #FF390E;
}
.toggle-container .db-toggle-on .disc {
  background: #FFFFFF;
  transform: translateX(6px);
}

/* Range styles */
.coolhand-range {
  margin: 12px 0;
  font-size: 14px;
  min-width: 100px;
}
.coolhand-range.flexible-width {
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.coolhand-range:disabled, .coolhand-range.disabled {
  color: #A1A1A1;
}
.coolhand-range:disabled input, .coolhand-range.disabled input {
  background-color: #F3F3F3;
}
.coolhand-range .form-label {
  padding-left: 20px;
  height: 16px;
  margin-bottom: 12px;
}
.coolhand-range input::-moz-placeholder {
  font-style: italic;
  color: #A1A1A1;
  padding-left: 8px;
}
.coolhand-range .form-label-optional, .coolhand-range input::placeholder {
  font-style: italic;
  color: #A1A1A1;
  padding-left: 8px;
}
.coolhand-range .input-error {
  margin: 8px 20px;
  color: #FF390E;
}
.coolhand-range-count {
  font-size: 12px;
  color: #A1A1A1;
  margin-left: 8px;
}

.select-margin-bottom {
  margin-bottom: 5px;
}

/* -------------------------------------------------------------------------
   3. TOOLTIPS
   ------------------------------------------------------------------------- */
.tooltip-component {
  position: absolute;
  background: #000000;
  border-radius: 8px;
  min-width: 35px;
  height: 36px;
  white-space: nowrap;
  z-index: 2;
  transition: 0.3s;
  pointer-events: none;
  opacity: 0;
}
.tooltip-component::before {
  content: "";
  position: absolute;
  width: 23px;
  height: 23px;
  background-color: #000000;
  transform: translate(-50%, -50%) rotate(45deg);
  z-index: 1;
  border-radius: 2px;
}
.tooltip-component-top {
  left: 50%;
  transform: translate(-50%, 0);
  bottom: 125%;
}
.tooltip-component-top::before {
  left: 50%;
  top: 29px;
}
.tooltip-component-down {
  left: 50%;
  transform: translate(-50%, 0);
  top: 125%;
}
.tooltip-component-down::before {
  left: 50%;
  bottom: 6px;
}
.tooltip-component-right {
  left: 125%;
  transform: translate(0, 50%);
  bottom: 50%;
}
.tooltip-component-right::before {
  left: 8px;
  top: 50%;
}
.tooltip-component-left {
  right: 125%;
  transform: translate(0, 50%);
  bottom: 50%;
}
.tooltip-component-left::before {
  right: -15px;
  top: 50%;
}

.tooltip-component-text {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
  color: #FFFFFF;
  z-index: 2;
}

.quality-warning-tooltip {
  display: flex;
  justify-content: space-around;
  align-items: center;
  --bs-tooltip-font-size: 0.75rem;
  --bs-tooltip-padding-x: 14px;
  --bs-tooltip-padding-y: 6px;
  --bs-tooltip-opacity: 1;
  --bs-tooltip-margin: 20px;
  --bs-tooltip-max-width: 227px;
}
.quality-warning-tooltip .tooltip-arrow {
  z-index: 1;
}
.quality-warning-tooltip .tooltip-inner {
  display: flex;
  flex-wrap: nowrap;
  border: 0.5px solid #000;
}
.quality-warning-tooltip .tooltip-inner .tooltip-cta {
  cursor: pointer;
  color: #0085FF;
  margin-left: 0.375rem;
  text-decoration: underline;
  font-weight: 600;
}
.quality-warning-tooltip .tooltip-inner .tooltip-cta:hover {
  color: #007bed;
  text-decoration: none;
}

/* -------------------------------------------------------------------------
   4. MODALS
   ------------------------------------------------------------------------- */
#howItWorksModal .modal-content {
  width: 326px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.2509803922);
  -webkit-backdrop-filter: blur(27.5px);
          backdrop-filter: blur(27.5px);
  top: 110px;
}
#howItWorksModal .modal-content #howItWorksCarousel .carousel-indicators {
  transform: translateY(-25px);
}
#howItWorksModal .modal-content #howItWorksCarousel .carousel-indicators button {
  width: 8px;
  height: 8px;
}
#howItWorksModal .modal-content #howItWorksCarousel .carousel-indicators .active {
  transform: scale(1.5);
}
#howItWorksModal .modal-content #howItWorksCarousel .carousel-inner .carousel-item {
  cursor: pointer;
  height: 465px;
}

#qualityWarningNoticeModal .modal-dialog {
  max-width: 524px;
}

.modal-gif {
  max-width: 100%;
  height: auto;
  padding: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-progress-bar-item {
  overflow: hidden;
  display: inline-block;
  width: 17px;
  height: 4px;
  border-radius: 10px;
  background: #D0D0D0;
  opacity: 0.5;
  margin-right: 2px;
}
.modal-progress-bar-item.active {
  background: #6BBBB1;
  opacity: 1;
}
.modal-progress-bar-emoji {
  display: inline-block;
  margin-right: 2px;
}

@media screen and (max-width: 375px) {
  .modal-progress-bar-item {
    width: 14px;
  }
}
/* -------------------------------------------------------------------------
   5. OTHER UI COMPONENTS
   ------------------------------------------------------------------------- */
.logo-nav-font {
  font-family: "Bauhaus-Medium", sans-serif;
  font-size: 31px;
  color: #FF390E;
  text-transform: lowercase;
  line-height: 36px;
}

.logo-nav-image {
  height: 30px;
  width: 30px;
  margin-bottom: 5px;
}

.locked {
  opacity: 0.5;
  cursor: not-allowed;
  filter: grayscale(100%);
}

.turbo-progress-bar {
  height: 8px;
  background-color: #337ab7;
}

.hidden {
  display: none;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 10px;
}

.image-text-wrapper {
  position: relative;
}
.image-text-wrapper img {
  width: 100%;
}

.error-msg {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #FF390E;
  margin: 2px 10px 10px;
}

/* Loading skeleton effect */
.skeleton {
  opacity: 0.4;
  background-color: #CFCFCF;
  background-image: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  background-size: 40px 100%;
  background-repeat: no-repeat;
  background-position: left -40px top 0;
  animation: shine 2s ease infinite;
}
.skeleton-xs {
  min-width: 100px;
  min-height: 30px;
}
.skeleton-s {
  min-width: 150px;
  min-height: 30px;
}
.skeleton-m {
  min-width: 250px;
  min-height: 30px;
}
.skeleton-l {
  min-width: 400px;
  min-height: 80px;
}
.skeleton > * {
  color: #CFCFCF !important;
}
@keyframes shine {
  to {
    background-position: right -40px top 0;
  }
}

.offcanvas {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.4);
}

.offcanvas-hint {
  padding: 16px 16px;
}
.offcanvas-hint .info-svg {
  color: #CFCFCF;
  height: 100%;
}

.offcanvas-body {
  max-height: calc(100vh - 150px);
  overflow-y: auto;
}

/* Spinner effect */
.spinner {
  position: relative;
}
.spinner-loader {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.spinner-loader img {
  width: 34px;
  animation: spin 1.5s linear infinite;
}
.spinner-loader-xs img {
  width: 24px;
}
.spinner-loader-s img {
  width: 44px;
}
.spinner-loader-m img {
  width: 64px;
}
.spinner-loader-l img {
  width: 94px;
}
.spinner.loading .spinner-loader {
  display: block !important;
}
@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

#flash {
  z-index: 9999;
  position: fixed;
}

.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 1rem;
}
.gap-4 {
  gap: 1.5rem;
}
.gap-5 {
  gap: 3rem;
}

.coolhand-header .logo-with-text-header .coolhand-logo-with-bg-svg {
  width: 35px;
  height: 35px;
}
.coolhand-header .logo-with-text-header .coolhand-text-svg {
  width: 53px;
}
.coolhand-header .logo-with-text-header > .link {
  width: 120px;
}
.coolhand-header .logo-with-text-header .sign-in-button {
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-download-header .logo-title {
  line-height: 18px;
}
.app-download-header .logo-subtitle {
  font-size: 11px;
  line-height: 13px;
}
.app-download-header .button-get {
  width: 73px;
  height: 33px;
  line-height: 0;
}

@media screen and (max-width: 576px) {
  .coolhand-header .logo-with-text-header .menu-dropdown {
    width: 100vw;
    transform: translateX(8px);
  }
}
/* -------------------------------------------------------------------------
   COOLHAND FEEDBACK WIDGET THEMING
   ------------------------------------------------------------------------- */
[coolhand-feedback] {
  --coolhand-bg: hsl(var(--card));
  --coolhand-bg-hover: hsl(var(--muted));
  --coolhand-border: hsl(var(--border));
  --coolhand-border-radius: 6px;
  --coolhand-text: hsl(var(--foreground));
  --coolhand-text-muted: hsl(var(--muted-foreground));
  --coolhand-accent: hsl(var(--primary));
  --coolhand-success: hsl(142 76% 36%);
  --coolhand-font-family: inherit;
}

.coolhand-header .logo-with-text-header .coolhand-logo-with-bg-svg {
  width: 35px;
  height: 35px;
}
.coolhand-header .logo-with-text-header .coolhand-text-svg {
  width: 53px;
}
.coolhand-header .logo-with-text-header > .link {
  width: 120px;
}
.coolhand-header .logo-with-text-header .sign-in-button {
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.app-download-header .logo-title {
  line-height: 18px;
}
.app-download-header .logo-subtitle {
  font-size: 11px;
  line-height: 13px;
}
.app-download-header .button-get {
  width: 73px;
  height: 33px;
  line-height: 0;
}

.logo-nav-font {
  font-family: "Bauhaus-Medium", sans-serif;
  font-size: 31px;
  color: #FF390E;
  text-transform: lowercase;
  line-height: 36px;
}

.logo-nav-image {
  height: 30px;
  width: 30px;
  margin-bottom: 5px;
}

#coolhand-dashboard {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #000000;
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #F3F3F3;
  z-index: 11;
}
#coolhand-dashboard .container .dashboard-panel .nav-btn-block {
  max-width: 20rem;
}
#coolhand-dashboard .container .dashboard-panel .nav-btn-block .dashboard-btn {
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  color: #A1A1A1;
  white-space: nowrap;
}
#coolhand-dashboard .container .dashboard-panel .nav-btn-block .dashboard-btn .link {
  color: #A1A1A1;
  text-decoration: none;
}
#coolhand-dashboard .container .dashboard-panel .nav-btn-block .dashboard-btn:hover > .link {
  color: #000000;
}
#coolhand-dashboard .container .dashboard-panel .nav-btn-block .dashboard-btn.active {
  border-bottom: 2px solid #FF390E;
  border-radius: 2px;
}
#coolhand-dashboard .container .dashboard-panel .nav-btn-block .dashboard-btn.active .link {
  color: #000000;
}
#coolhand-dashboard .container .dashboard-panel .dashboard-user-block {
  min-width: 5.6rem;
}
#coolhand-dashboard .container .dashboard-panel .dashboard-user-block .account-bar .account-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0.5px solid #000000;
  text-align: center;
  overflow: hidden;
}
#coolhand-dashboard .container .dashboard-panel .dashboard-user-block .account-bar .account-img .user_icon-svg {
  height: 36px;
  width: 36px;
}
#coolhand-dashboard .container .dashboard-panel .dashboard-user-block .account-bar .more-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
}
#coolhand-dashboard .container .dashboard-panel .back-link, #coolhand-dashboard .container .dashboard-panel .toggle-container {
  text-transform: none;
}

.offcanvas {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.4);
}

.offcanvas-hint {
  padding: 16px 16px;
}
.offcanvas-hint .info-svg {
  color: #CFCFCF;
  height: 100%;
}

.offcanvas-body {
  max-height: calc(100vh - 150px); /* Adjust the 56px based on your header/footer height */
  overflow-y: auto;
}

.btn-container {
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.image-text-wrapper {
  position: relative;
}
.image-text-wrapper img {
  width: 100%;
}

#flash {
  z-index: 9999;
  position: fixed;
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 10px;
}

.gap-1 {
  gap: 0.25rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-3 {
  gap: 1rem;
}
.gap-4 {
  gap: 1.5rem;
}
.gap-5 {
  gap: 3rem;
}

.hidden {
  display: none;
}

@media screen and (max-width: 576px) {
  .coolhand-header .logo-with-text-header .menu-dropdown {
    width: 100vw;
    transform: translateX(8px);
  }
}
@media screen and (max-width: 425px) {
  .file-upload {
    min-width: 290px;
  }
}
@media screen and (max-width: 375px) {
  .modal-progress-bar-item {
    width: 14px;
  }
}
@media screen and (max-width: 320px) {
  .file-upload {
    min-width: 270px;
  }
}
.logo-title-font {
  font-family: "Bauhaus-Medium", sans-serif;
  margin-top: 50px;
  margin-bottom: 50px;
  font-size: 120px;
  color: #FF390E;
}

.static-page {
  font-family: "Atkinson", sans-serif;
  font-size: 20px;
}

.home-h2 {
  font-family: "Atkinson-Bold", sans-serif;
  font-size: 30px;
  margin-bottom: 40px;
  color: #161515;
}

.home-login-btn {
  background-color: #F9EFED;
  color: #161515;
  border: 2px solid #F2EBEB;
}

.home-login-btn:hover {
  background-color: #FF390E;
  color: #F9EFED;
}

.home-nav-text-color {
  color: #161515 !important;
}

.home-background-color {
  background-color: #141313;
}

.sign-in-background-color {
  background-color: #FFFFFF;
}

.home-page {
  text-align: center;
  padding: 50px;
  background-color: #F2EBEB;
}

.home-p {
  color: #161515;
}

footer {
  background-color: #F2EBEB;
  color: #000000;
  padding: 20px;
  margin-top: auto;
}

.text-footer {
  font-size: 14px !important;
}

.privacy-policy, .terms-of-service {
  display: flex;
  justify-content: center;
  height: calc(100vh - 40px - 130px);
  width: 100%;
}
.privacy-policy .main-content, .terms-of-service .main-content {
  height: 95%;
  width: 65%;
  border-radius: 15px;
}
.privacy-policy .main-content .frame-box, .terms-of-service .main-content .frame-box {
  height: 500px;
  margin: 0 3rem 1rem;
  overflow: scroll;
}
.privacy-policy .main-content .frame-box p, .privacy-policy .main-content .frame-box span, .terms-of-service .main-content .frame-box p, .terms-of-service .main-content .frame-box span {
  color: #F2EBEB;
  background: transparent;
}
.privacy-policy .main-content .frame-box .c27, .terms-of-service .main-content .frame-box .c27 {
  background: #A1A1A1;
}

.registration {
  min-height: 100vh;
}

.registration-container {
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.sign-in-container {
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.forgot-password-container {
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.change-password-container {
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.resend-confirmation-instructions-container {
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.sign-up .bg-hero-orange, .sign-in .bg-hero-orange, .recover-email .bg-hero-orange, .update-password .bg-hero-orange, .resend-confirmation .bg-hero-orange {
  min-width: 400px;
  max-width: 500px;
  width: 100%;
}
.sign-up .button__primary, .sign-in .button__primary, .recover-email .button__primary, .update-password .button__primary, .resend-confirmation .button__primary {
  background-color: #1F2EFF !important;
  border-color: #1F2EFF !important;
  color: white !important;
}
.sign-up .button__primary:hover, .sign-in .button__primary:hover, .recover-email .button__primary:hover, .update-password .button__primary:hover, .resend-confirmation .button__primary:hover {
  background-color: rgb(0, 15.7366071429, 235) !important;
  border-color: rgb(0, 15.7366071429, 235) !important;
}
.sign-up .button__primary:focus, .sign-in .button__primary:focus, .recover-email .button__primary:focus, .update-password .button__primary:focus, .resend-confirmation .button__primary:focus {
  background-color: rgb(0, 15.7366071429, 235) !important;
  border-color: rgb(0, 15.7366071429, 235) !important;
  box-shadow: 0 0 0 0.25rem rgba(31, 46, 255, 0.25) !important;
}
.sign-up .input-error, .sign-in .input-error, .recover-email .input-error, .update-password .input-error, .resend-confirmation .input-error {
  display: inline-block;
  margin: 8px 0 8px 20px !important;
  color: #1F2EFF !important;
  font-size: 12px;
}
.sign-up .button__omni_auth, .sign-in .button__omni_auth, .recover-email .button__omni_auth, .update-password .button__omni_auth, .resend-confirmation .button__omni_auth {
  background-color: #1F2EFF !important;
  border-color: #1F2EFF !important;
}
.sign-up .button__omni_auth:hover, .sign-in .button__omni_auth:hover, .recover-email .button__omni_auth:hover, .update-password .button__omni_auth:hover, .resend-confirmation .button__omni_auth:hover {
  background-color: rgb(0, 15.7366071429, 235) !important;
  border-color: rgb(0, 15.7366071429, 235) !important;
}
.sign-up .button__omni_auth .svg-block, .sign-in .button__omni_auth .svg-block, .recover-email .button__omni_auth .svg-block, .update-password .button__omni_auth .svg-block, .resend-confirmation .button__omni_auth .svg-block {
  background: white !important;
}
.sign-up .button__omni_auth .btn-text, .sign-in .button__omni_auth .btn-text, .recover-email .button__omni_auth .btn-text, .update-password .button__omni_auth .btn-text, .resend-confirmation .button__omni_auth .btn-text {
  color: white !important;
}
.sign-up .email-signup-toggle a, .sign-in .email-signup-toggle a, .recover-email .email-signup-toggle a, .update-password .email-signup-toggle a, .resend-confirmation .email-signup-toggle a {
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}
.sign-up .email-signup-toggle a:hover, .sign-in .email-signup-toggle a:hover, .recover-email .email-signup-toggle a:hover, .update-password .email-signup-toggle a:hover, .resend-confirmation .email-signup-toggle a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
  color: white !important;
}

.enter {
  height: 100vh;
}
.enter__aside {
  height: 100%;
  width: 100%;
}
.enter__aside .view-side {
  height: 100%;
  background-image: url(/images/art_img_1.png);
  background-size: 724px;
  background-repeat: no-repeat;
  background-position-x: center;
  background-position-y: 9rem;
}
.enter__aside .view-side .logo-nav-font {
  margin: 4rem 0 3rem;
}
.enter__aside .view-side .log-in-aside-image {
  max-width: 724px;
  max-height: 602px;
}
.enter__aside .link-nav {
  margin-left: 2rem;
  padding-bottom: 2rem;
}
.enter__form {
  height: 100%;
  min-width: 600px;
  border-left: 1px solid rgba(0, 0, 0, 0.1019607843);
}
.enter__form .log-in-block {
  margin: 4rem 6rem;
  width: 380px;
}
.enter__form .log-in-block .recoverable {
  float: right;
}
.enter__form .log-in-block .terms-of-service {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #A1A1A1;
}
.enter__form .text-item {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  line-height: 16px;
  text-transform: uppercase;
  color: #A1A1A1;
}

html {
  scroll-behavior: smooth;
}

.bg-off-black {
  background-color: #141313 !important;
}

.bg-turquoise {
  background-color: #09BABA !important;
}

.text-off-white {
  color: #F2EBEB !important;
}

.bg-hero-orange {
  background-color: #FF801F !important;
}

.bg-hero-blue {
  background-color: #1F2EFF !important;
}

.text-hero-blue {
  color: #1F2EFF !important;
}

.text-hero-gray {
  color: #8B8B8B !important;
}

.btn-coolhand {
  background-color: #FF390E;
  border-color: #FF390E;
  color: #FFFFFF;
}
.btn-coolhand:hover {
  background-color: #D92700;
  border-color: #D92700;
  color: #FFFFFF;
}
.btn-coolhand:focus {
  background-color: #D92700;
  border-color: #D92700;
  color: #FFFFFF;
  box-shadow: 0 0 0 0.25rem rgba(255, 57, 14, 0.25);
}

.btn-turquoise {
  background-color: #09BABA;
  border-color: #09BABA;
  color: #FFFFFF;
}
.btn-turquoise:hover {
  background-color: rgb(6.6461538462, 137.3538461538, 137.3538461538);
  border-color: rgb(6.6461538462, 137.3538461538, 137.3538461538);
  color: #FFFFFF;
}
.btn-turquoise:focus {
  background-color: rgb(6.6461538462, 137.3538461538, 137.3538461538);
  border-color: rgb(6.6461538462, 137.3538461538, 137.3538461538);
  color: #FFFFFF;
  box-shadow: 0 0 0 0.25rem rgba(9, 186, 186, 0.25);
}

.landing-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.coolhand-with-friends {
  height: calc(100vh - 60px);
}
.coolhand-with-friends .main-content {
  width: 426px;
  margin: 0 auto;
  overflow: hidden;
}
.coolhand-with-friends .main-content__overlay {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3019607843);
  z-index: 2;
}
.coolhand-with-friends .main-content__overlay p {
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  width: 380px;
}
.coolhand-with-friends .main-content .primary-image {
  height: 283px;
  overflow: hidden;
}
.coolhand-with-friends .main-content .primary-image img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: blur(4px);
}
.coolhand-with-friends .main-content .secondary-images {
  gap: 10px;
  filter: blur(4px);
}
.coolhand-with-friends .main-content .secondary-images .image {
  width: 200px;
  height: 130px;
  margin-top: 10px;
}
.coolhand-with-friends .main-content .secondary-images .image img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.coolhand-with-friends .main-content .connection-code {
  z-index: 2;
}
.coolhand-with-friends .unable-to-find-invite-block {
  min-height: 33.3333333333vh;
}
.coolhand-with-friends .download-app-block {
  z-index: 2;
  max-width: 426px;
}
.coolhand-with-friends .download-app-block .download-description {
  vertical-align: middle;
}

.error-msg {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  line-height: 16px;
  color: #FF390E;
  margin: 2px 10px 10px;
}

@media screen and (max-width: 1000px) {
  .logo-title-font {
    font-size: 65px;
  }
}
@media screen and (max-width: 992px) {
  .enter__form {
    min-width: 460px;
    height: 825px;
  }
  .enter__form .log-in-block {
    margin: 4rem 2rem;
  }
  .enter__aside {
    height: 825px;
  }
}
@media screen and (max-width: 768px) {
  .enter {
    justify-content: center;
    align-items: flex-start !important;
  }
  .enter__form {
    background-image: url(/images/art_img_1.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: 130px;
    border: none;
    background-size: 500px;
  }
  .enter__form::before {
    content: "coolhand";
    font-family: "Bauhaus-Medium", sans-serif;
    font-size: 40px;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    color: #FF390E;
  }
  .enter__form .log-in-block {
    margin: 4rem auto;
  }
  .enter__aside {
    display: none !important;
  }
}
@media screen and (max-width: 600px) {
  .logo-title-font {
    font-size: 35px;
  }
  .privacy-policy .main-content, .terms-of-service .main-content {
    width: 95%;
  }
  .privacy-policy .main-content .frame-box, .terms-of-service .main-content .frame-box {
    height: calc(100vh - 250px);
    width: 100%;
    padding: 1.5rem 0.25rem !important;
    margin: 0 auto;
  }
  .privacy-policy .footer, .terms-of-service .footer {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .coolhand-with-friends > div:first-child {
    justify-content: center;
    margin-bottom: 6.25vh;
  }
  .coolhand-with-friends > div:first-child svg {
    margin-bottom: 0 !important;
  }
  .coolhand-with-friends .main-content {
    width: 330px;
  }
  .coolhand-with-friends .main-content__overlay p {
    font-size: 14px;
    font-weight: 700;
    text-align: center;
    width: 300px;
  }
  .coolhand-with-friends .main-content .primary-image {
    height: 216px;
    overflow: unset;
  }
  .coolhand-with-friends .main-content .secondary-images .image {
    width: 150px;
    height: 90px;
  }
  .coolhand-with-friends .download-app-block {
    max-width: 400px;
  }
  .coolhand-with-friends .download-app-block .download-description {
    font-size: 0.75rem !important;
  }
  .enter__form {
    min-width: 380px;
  }
  .enter__form .log-in-block {
    margin-left: 5px;
  }
}
@media screen and (max-width: 445px) {
  .enter {
    justify-content: center;
  }
}
:host, :root {
  --d2h-bg-color:#fff;
  --d2h-border-color:#ddd;
  --d2h-dim-color:rgba(0,0,0,.3);
  --d2h-line-border-color:#eee;
  --d2h-file-header-bg-color:#f7f7f7;
  --d2h-file-header-border-color:#d8d8d8;
  --d2h-empty-placeholder-bg-color:#f1f1f1;
  --d2h-empty-placeholder-border-color:#e1e1e1;
  --d2h-selected-color:#c8e1ff;
  --d2h-ins-bg-color:#dfd;
  --d2h-ins-border-color:#b4e2b4;
  --d2h-ins-highlight-bg-color:#97f295;
  --d2h-ins-label-color:#399839;
  --d2h-del-bg-color:#fee8e9;
  --d2h-del-border-color:#e9aeae;
  --d2h-del-highlight-bg-color:#ffb6ba;
  --d2h-del-label-color:#c33;
  --d2h-change-del-color:#fdf2d0;
  --d2h-change-ins-color:#ded;
  --d2h-info-bg-color:#f8fafd;
  --d2h-info-border-color:#d5e4f2;
  --d2h-change-label-color:#d0b44c;
  --d2h-moved-label-color:#3572b0;
  --d2h-dark-color:#e6edf3;
  --d2h-dark-bg-color:#0d1117;
  --d2h-dark-border-color:#30363d;
  --d2h-dark-dim-color:#6e7681;
  --d2h-dark-line-border-color:#21262d;
  --d2h-dark-file-header-bg-color:#161b22;
  --d2h-dark-file-header-border-color:#30363d;
  --d2h-dark-empty-placeholder-bg-color:hsla(215,8%,47%,.1);
  --d2h-dark-empty-placeholder-border-color:#30363d;
  --d2h-dark-selected-color:rgba(56,139,253,.1);
  --d2h-dark-ins-bg-color:rgba(46,160,67,.15);
  --d2h-dark-ins-border-color:rgba(46,160,67,.4);
  --d2h-dark-ins-highlight-bg-color:rgba(46,160,67,.4);
  --d2h-dark-ins-label-color:#3fb950;
  --d2h-dark-del-bg-color:rgba(248,81,73,.1);
  --d2h-dark-del-border-color:rgba(248,81,73,.4);
  --d2h-dark-del-highlight-bg-color:rgba(248,81,73,.4);
  --d2h-dark-del-label-color:#f85149;
  --d2h-dark-change-del-color:rgba(210,153,34,.2);
  --d2h-dark-change-ins-color:rgba(46,160,67,.25);
  --d2h-dark-info-bg-color:rgba(56,139,253,.1);
  --d2h-dark-info-border-color:rgba(56,139,253,.4);
  --d2h-dark-change-label-color:#d29922;
  --d2h-dark-moved-label-color:#3572b0;
}

.d2h-wrapper {
  text-align: left;
}

.d2h-file-header {
  background-color: #f7f7f7;
  background-color: var(--d2h-file-header-bg-color);
  border-bottom: 1px solid #d8d8d8;
  border-bottom: 1px solid var(--d2h-file-header-border-color);
  display: flex;
  font-family: Source Sans Pro, Helvetica Neue, Helvetica, Arial, sans-serif;
  height: 35px;
  padding: 5px 10px;
}

.d2h-file-header.d2h-sticky-header {
  position: sticky;
  top: 0;
  z-index: 1;
}

.d2h-file-stats {
  display: flex;
  font-size: 14px;
  margin-left: auto;
}

.d2h-lines-added {
  border: 1px solid #b4e2b4;
  border: 1px solid var(--d2h-ins-border-color);
  border-radius: 5px 0 0 5px;
  color: #399839;
  color: var(--d2h-ins-label-color);
  padding: 2px;
  text-align: right;
  vertical-align: middle;
}

.d2h-lines-deleted {
  border: 1px solid #e9aeae;
  border: 1px solid var(--d2h-del-border-color);
  border-radius: 0 5px 5px 0;
  color: #c33;
  color: var(--d2h-del-label-color);
  margin-left: 1px;
  padding: 2px;
  text-align: left;
  vertical-align: middle;
}

.d2h-file-name-wrapper {
  display: flex;
  align-items: center;
  font-size: 15px;
  width: 100%;
}

.d2h-file-name {
  overflow-x: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.d2h-file-wrapper {
  border: 1px solid #ddd;
  border: 1px solid var(--d2h-border-color);
  border-radius: 3px;
  margin-bottom: 1em;
}

.d2h-file-collapse {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  cursor: pointer;
  display: none;
  font-size: 12px;
  justify-content: flex-end;
  align-items: center;
  border: 1px solid #ddd;
  border: 1px solid var(--d2h-border-color);
  border-radius: 3px;
  padding: 4px 8px;
}

.d2h-file-collapse.d2h-selected {
  background-color: #c8e1ff;
  background-color: var(--d2h-selected-color);
}

.d2h-file-collapse-input {
  margin: 0 4px 0 0;
}

.d2h-diff-table {
  border-collapse: collapse;
  font-family: Menlo, Consolas, monospace;
  font-size: 13px;
  width: 100%;
}

.d2h-files-diff {
  display: flex;
  width: 100%;
}

.d2h-file-diff {
  overflow-y: hidden;
}

.d2h-file-diff.d2h-d-none, .d2h-files-diff.d2h-d-none {
  display: none;
}

.d2h-file-side-diff {
  display: inline-block;
  overflow-x: scroll;
  overflow-y: hidden;
  width: 50%;
}

.d2h-code-line {
  padding: 0 8em;
  width: calc(100% - 16em);
}

.d2h-code-line, .d2h-code-side-line {
  display: inline-block;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  white-space: nowrap;
}

.d2h-code-side-line {
  padding: 0 4.5em;
  width: calc(100% - 9em);
}

.d2h-code-line-ctn {
  background: none;
  display: inline-block;
  padding: 0;
  word-wrap: normal;
  -webkit-user-select: text;
  -moz-user-select: text;
  user-select: text;
  vertical-align: middle;
  white-space: pre;
  width: 100%;
}

.d2h-code-line del, .d2h-code-side-line del {
  background-color: #ffb6ba;
  background-color: var(--d2h-del-highlight-bg-color);
}

.d2h-code-line del, .d2h-code-line ins, .d2h-code-side-line del, .d2h-code-side-line ins {
  border-radius: 0.2em;
  display: inline-block;
  margin-top: -1px;
  -webkit-text-decoration: none;
  text-decoration: none;
}

.d2h-code-line ins, .d2h-code-side-line ins {
  background-color: #97f295;
  background-color: var(--d2h-ins-highlight-bg-color);
  text-align: left;
}

.d2h-code-line-prefix {
  background: none;
  display: inline;
  padding: 0;
  word-wrap: normal;
  white-space: pre;
}

.line-num1 {
  float: left;
}

.line-num1, .line-num2 {
  box-sizing: border-box;
  overflow: hidden;
  padding: 0 0.5em;
  text-overflow: ellipsis;
  width: 3.5em;
}

.line-num2 {
  float: right;
}

.d2h-code-linenumber {
  background-color: #fff;
  background-color: var(--d2h-bg-color);
  border: solid #eee;
  border: solid var(--d2h-line-border-color);
  border-width: 0 1px;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.3);
  color: var(--d2h-dim-color);
  cursor: pointer;
  display: inline-block;
  position: absolute;
  text-align: right;
  width: 7.5em;
}

.d2h-code-linenumber:after {
  content: "​";
}

.d2h-code-side-linenumber {
  background-color: #fff;
  background-color: var(--d2h-bg-color);
  border: solid #eee;
  border: solid var(--d2h-line-border-color);
  border-width: 0 1px;
  box-sizing: border-box;
  color: rgba(0, 0, 0, 0.3);
  color: var(--d2h-dim-color);
  cursor: pointer;
  display: inline-block;
  overflow: hidden;
  padding: 0 0.5em;
  position: absolute;
  text-align: right;
  text-overflow: ellipsis;
  width: 4em;
}

.d2h-code-side-linenumber:after {
  content: "​";
}

.d2h-code-side-emptyplaceholder, .d2h-emptyplaceholder {
  background-color: #f1f1f1;
  background-color: var(--d2h-empty-placeholder-bg-color);
  border-color: #e1e1e1;
  border-color: var(--d2h-empty-placeholder-border-color);
}

.d2h-code-line-prefix, .d2h-code-linenumber, .d2h-code-side-linenumber, .d2h-emptyplaceholder {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.d2h-code-linenumber, .d2h-code-side-linenumber {
  direction: rtl;
}

.d2h-del {
  background-color: #fee8e9;
  background-color: var(--d2h-del-bg-color);
  border-color: #e9aeae;
  border-color: var(--d2h-del-border-color);
}

.d2h-ins {
  background-color: #dfd;
  background-color: var(--d2h-ins-bg-color);
  border-color: #b4e2b4;
  border-color: var(--d2h-ins-border-color);
}

.d2h-info {
  background-color: #f8fafd;
  background-color: var(--d2h-info-bg-color);
  border-color: #d5e4f2;
  border-color: var(--d2h-info-border-color);
  color: rgba(0, 0, 0, 0.3);
  color: var(--d2h-dim-color);
}

.d2h-file-diff .d2h-del.d2h-change {
  background-color: #fdf2d0;
  background-color: var(--d2h-change-del-color);
}

.d2h-file-diff .d2h-ins.d2h-change {
  background-color: #ded;
  background-color: var(--d2h-change-ins-color);
}

.d2h-file-list-wrapper {
  margin-bottom: 10px;
}

.d2h-file-list-wrapper a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

.d2h-file-list-wrapper a, .d2h-file-list-wrapper a:visited {
  color: #3572b0;
  color: var(--d2h-moved-label-color);
}

.d2h-file-list-header {
  text-align: left;
}

.d2h-file-list-title {
  font-weight: 700;
}

.d2h-file-list-line {
  display: flex;
  text-align: left;
}

.d2h-file-list {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}

.d2h-file-list > li {
  border-bottom: 1px solid #ddd;
  border-bottom: 1px solid var(--d2h-border-color);
  margin: 0;
  padding: 5px 10px;
}

.d2h-file-list > li:last-child {
  border-bottom: none;
}

.d2h-file-switch {
  cursor: pointer;
  display: none;
  font-size: 10px;
}

.d2h-icon {
  margin-right: 10px;
  vertical-align: middle;
  fill: currentColor;
}

.d2h-deleted {
  color: #c33;
  color: var(--d2h-del-label-color);
}

.d2h-added {
  color: #399839;
  color: var(--d2h-ins-label-color);
}

.d2h-changed {
  color: #d0b44c;
  color: var(--d2h-change-label-color);
}

.d2h-moved {
  color: #3572b0;
  color: var(--d2h-moved-label-color);
}

.d2h-tag {
  background-color: #fff;
  background-color: var(--d2h-bg-color);
  display: flex;
  font-size: 10px;
  margin-left: 5px;
  padding: 0 2px;
}

.d2h-deleted-tag {
  border: 1px solid #c33;
  border: 1px solid var(--d2h-del-label-color);
}

.d2h-added-tag {
  border: 1px solid #399839;
  border: 1px solid var(--d2h-ins-label-color);
}

.d2h-changed-tag {
  border: 1px solid #d0b44c;
  border: 1px solid var(--d2h-change-label-color);
}

.d2h-moved-tag {
  border: 1px solid #3572b0;
  border: 1px solid var(--d2h-moved-label-color);
}

.d2h-dark-color-scheme {
  background-color: #0d1117;
  background-color: var(--d2h-dark-bg-color);
  color: #e6edf3;
  color: var(--d2h-dark-color);
}

.d2h-dark-color-scheme .d2h-file-header {
  background-color: #161b22;
  background-color: var(--d2h-dark-file-header-bg-color);
  border-bottom: #30363d;
  border-bottom: var(--d2h-dark-file-header-border-color);
}

.d2h-dark-color-scheme .d2h-lines-added {
  border: 1px solid rgba(46, 160, 67, 0.4);
  border: 1px solid var(--d2h-dark-ins-border-color);
  color: #3fb950;
  color: var(--d2h-dark-ins-label-color);
}

.d2h-dark-color-scheme .d2h-lines-deleted {
  border: 1px solid rgba(248, 81, 73, 0.4);
  border: 1px solid var(--d2h-dark-del-border-color);
  color: #f85149;
  color: var(--d2h-dark-del-label-color);
}

.d2h-dark-color-scheme .d2h-code-line del, .d2h-dark-color-scheme .d2h-code-side-line del {
  background-color: rgba(248, 81, 73, 0.4);
  background-color: var(--d2h-dark-del-highlight-bg-color);
}

.d2h-dark-color-scheme .d2h-code-line ins, .d2h-dark-color-scheme .d2h-code-side-line ins {
  background-color: rgba(46, 160, 67, 0.4);
  background-color: var(--d2h-dark-ins-highlight-bg-color);
}

.d2h-dark-color-scheme .d2h-diff-tbody {
  border-color: #30363d;
  border-color: var(--d2h-dark-border-color);
}

.d2h-dark-color-scheme .d2h-code-side-linenumber {
  background-color: #0d1117;
  background-color: var(--d2h-dark-bg-color);
  border-color: #21262d;
  border-color: var(--d2h-dark-line-border-color);
  color: #6e7681;
  color: var(--d2h-dark-dim-color);
}

.d2h-dark-color-scheme .d2h-files-diff .d2h-code-side-emptyplaceholder, .d2h-dark-color-scheme .d2h-files-diff .d2h-emptyplaceholder {
  background-color: hsla(215, 8%, 47%, 0.1);
  background-color: var(--d2h-dark-empty-placeholder-bg-color);
  border-color: #30363d;
  border-color: var(--d2h-dark-empty-placeholder-border-color);
}

.d2h-dark-color-scheme .d2h-code-linenumber {
  background-color: #0d1117;
  background-color: var(--d2h-dark-bg-color);
  border-color: #21262d;
  border-color: var(--d2h-dark-line-border-color);
  color: #6e7681;
  color: var(--d2h-dark-dim-color);
}

.d2h-dark-color-scheme .d2h-del {
  background-color: rgba(248, 81, 73, 0.1);
  background-color: var(--d2h-dark-del-bg-color);
  border-color: rgba(248, 81, 73, 0.4);
  border-color: var(--d2h-dark-del-border-color);
}

.d2h-dark-color-scheme .d2h-ins {
  background-color: rgba(46, 160, 67, 0.15);
  background-color: var(--d2h-dark-ins-bg-color);
  border-color: rgba(46, 160, 67, 0.4);
  border-color: var(--d2h-dark-ins-border-color);
}

.d2h-dark-color-scheme .d2h-info {
  background-color: rgba(56, 139, 253, 0.1);
  background-color: var(--d2h-dark-info-bg-color);
  border-color: rgba(56, 139, 253, 0.4);
  border-color: var(--d2h-dark-info-border-color);
  color: #6e7681;
  color: var(--d2h-dark-dim-color);
}

.d2h-dark-color-scheme .d2h-file-diff .d2h-del.d2h-change {
  background-color: rgba(210, 153, 34, 0.2);
  background-color: var(--d2h-dark-change-del-color);
}

.d2h-dark-color-scheme .d2h-file-diff .d2h-ins.d2h-change {
  background-color: rgba(46, 160, 67, 0.25);
  background-color: var(--d2h-dark-change-ins-color);
}

.d2h-dark-color-scheme .d2h-file-wrapper {
  border: 1px solid #30363d;
  border: 1px solid var(--d2h-dark-border-color);
}

.d2h-dark-color-scheme .d2h-file-collapse {
  border: 1px solid #0d1117;
  border: 1px solid var(--d2h-dark-bg-color);
}

.d2h-dark-color-scheme .d2h-file-collapse.d2h-selected {
  background-color: rgba(56, 139, 253, 0.1);
  background-color: var(--d2h-dark-selected-color);
}

.d2h-dark-color-scheme .d2h-file-list-wrapper a, .d2h-dark-color-scheme .d2h-file-list-wrapper a:visited {
  color: #3572b0;
  color: var(--d2h-dark-moved-label-color);
}

.d2h-dark-color-scheme .d2h-file-list > li {
  border-bottom: 1px solid #0d1117;
  border-bottom: 1px solid var(--d2h-dark-bg-color);
}

.d2h-dark-color-scheme .d2h-deleted {
  color: #f85149;
  color: var(--d2h-dark-del-label-color);
}

.d2h-dark-color-scheme .d2h-added {
  color: #3fb950;
  color: var(--d2h-dark-ins-label-color);
}

.d2h-dark-color-scheme .d2h-changed {
  color: #d29922;
  color: var(--d2h-dark-change-label-color);
}

.d2h-dark-color-scheme .d2h-moved {
  color: #3572b0;
  color: var(--d2h-dark-moved-label-color);
}

.d2h-dark-color-scheme .d2h-tag {
  background-color: #0d1117;
  background-color: var(--d2h-dark-bg-color);
}

.d2h-dark-color-scheme .d2h-deleted-tag {
  border: 1px solid #f85149;
  border: 1px solid var(--d2h-dark-del-label-color);
}

.d2h-dark-color-scheme .d2h-added-tag {
  border: 1px solid #3fb950;
  border: 1px solid var(--d2h-dark-ins-label-color);
}

.d2h-dark-color-scheme .d2h-changed-tag {
  border: 1px solid #d29922;
  border: 1px solid var(--d2h-dark-change-label-color);
}

.d2h-dark-color-scheme .d2h-moved-tag {
  border: 1px solid #3572b0;
  border: 1px solid var(--d2h-dark-moved-label-color);
}

@media (prefers-color-scheme: dark) {
  .d2h-auto-color-scheme {
    background-color: #0d1117;
    background-color: var(--d2h-dark-bg-color);
    color: #e6edf3;
    color: var(--d2h-dark-color);
  }
  .d2h-auto-color-scheme .d2h-file-header {
    background-color: #161b22;
    background-color: var(--d2h-dark-file-header-bg-color);
    border-bottom: #30363d;
    border-bottom: var(--d2h-dark-file-header-border-color);
  }
  .d2h-auto-color-scheme .d2h-lines-added {
    border: 1px solid rgba(46, 160, 67, 0.4);
    border: 1px solid var(--d2h-dark-ins-border-color);
    color: #3fb950;
    color: var(--d2h-dark-ins-label-color);
  }
  .d2h-auto-color-scheme .d2h-lines-deleted {
    border: 1px solid rgba(248, 81, 73, 0.4);
    border: 1px solid var(--d2h-dark-del-border-color);
    color: #f85149;
    color: var(--d2h-dark-del-label-color);
  }
  .d2h-auto-color-scheme .d2h-code-line del, .d2h-auto-color-scheme .d2h-code-side-line del {
    background-color: rgba(248, 81, 73, 0.4);
    background-color: var(--d2h-dark-del-highlight-bg-color);
  }
  .d2h-auto-color-scheme .d2h-code-line ins, .d2h-auto-color-scheme .d2h-code-side-line ins {
    background-color: rgba(46, 160, 67, 0.4);
    background-color: var(--d2h-dark-ins-highlight-bg-color);
  }
  .d2h-auto-color-scheme .d2h-diff-tbody {
    border-color: #30363d;
    border-color: var(--d2h-dark-border-color);
  }
  .d2h-auto-color-scheme .d2h-code-side-linenumber {
    background-color: #0d1117;
    background-color: var(--d2h-dark-bg-color);
    border-color: #21262d;
    border-color: var(--d2h-dark-line-border-color);
    color: #6e7681;
    color: var(--d2h-dark-dim-color);
  }
  .d2h-auto-color-scheme .d2h-files-diff .d2h-code-side-emptyplaceholder, .d2h-auto-color-scheme .d2h-files-diff .d2h-emptyplaceholder {
    background-color: hsla(215, 8%, 47%, 0.1);
    background-color: var(--d2h-dark-empty-placeholder-bg-color);
    border-color: #30363d;
    border-color: var(--d2h-dark-empty-placeholder-border-color);
  }
  .d2h-auto-color-scheme .d2h-code-linenumber {
    background-color: #0d1117;
    background-color: var(--d2h-dark-bg-color);
    border-color: #21262d;
    border-color: var(--d2h-dark-line-border-color);
    color: #6e7681;
    color: var(--d2h-dark-dim-color);
  }
  .d2h-auto-color-scheme .d2h-del {
    background-color: rgba(248, 81, 73, 0.1);
    background-color: var(--d2h-dark-del-bg-color);
    border-color: rgba(248, 81, 73, 0.4);
    border-color: var(--d2h-dark-del-border-color);
  }
  .d2h-auto-color-scheme .d2h-ins {
    background-color: rgba(46, 160, 67, 0.15);
    background-color: var(--d2h-dark-ins-bg-color);
    border-color: rgba(46, 160, 67, 0.4);
    border-color: var(--d2h-dark-ins-border-color);
  }
  .d2h-auto-color-scheme .d2h-info {
    background-color: rgba(56, 139, 253, 0.1);
    background-color: var(--d2h-dark-info-bg-color);
    border-color: rgba(56, 139, 253, 0.4);
    border-color: var(--d2h-dark-info-border-color);
    color: #6e7681;
    color: var(--d2h-dark-dim-color);
  }
  .d2h-auto-color-scheme .d2h-file-diff .d2h-del.d2h-change {
    background-color: rgba(210, 153, 34, 0.2);
    background-color: var(--d2h-dark-change-del-color);
  }
  .d2h-auto-color-scheme .d2h-file-diff .d2h-ins.d2h-change {
    background-color: rgba(46, 160, 67, 0.25);
    background-color: var(--d2h-dark-change-ins-color);
  }
  .d2h-auto-color-scheme .d2h-file-wrapper {
    border: 1px solid #30363d;
    border: 1px solid var(--d2h-dark-border-color);
  }
  .d2h-auto-color-scheme .d2h-file-collapse {
    border: 1px solid #0d1117;
    border: 1px solid var(--d2h-dark-bg-color);
  }
  .d2h-auto-color-scheme .d2h-file-collapse.d2h-selected {
    background-color: rgba(56, 139, 253, 0.1);
    background-color: var(--d2h-dark-selected-color);
  }
  .d2h-auto-color-scheme .d2h-file-list-wrapper a, .d2h-auto-color-scheme .d2h-file-list-wrapper a:visited {
    color: #3572b0;
    color: var(--d2h-dark-moved-label-color);
  }
  .d2h-auto-color-scheme .d2h-file-list > li {
    border-bottom: 1px solid #0d1117;
    border-bottom: 1px solid var(--d2h-dark-bg-color);
  }
  .d2h-dark-color-scheme .d2h-deleted {
    color: #f85149;
    color: var(--d2h-dark-del-label-color);
  }
  .d2h-auto-color-scheme .d2h-added {
    color: #3fb950;
    color: var(--d2h-dark-ins-label-color);
  }
  .d2h-auto-color-scheme .d2h-changed {
    color: #d29922;
    color: var(--d2h-dark-change-label-color);
  }
  .d2h-auto-color-scheme .d2h-moved {
    color: #3572b0;
    color: var(--d2h-dark-moved-label-color);
  }
  .d2h-auto-color-scheme .d2h-tag {
    background-color: #0d1117;
    background-color: var(--d2h-dark-bg-color);
  }
  .d2h-auto-color-scheme .d2h-deleted-tag {
    border: 1px solid #f85149;
    border: 1px solid var(--d2h-dark-del-label-color);
  }
  .d2h-auto-color-scheme .d2h-added-tag {
    border: 1px solid #3fb950;
    border: 1px solid var(--d2h-dark-ins-label-color);
  }
  .d2h-auto-color-scheme .d2h-changed-tag {
    border: 1px solid #d29922;
    border: 1px solid var(--d2h-dark-change-label-color);
  }
  .d2h-auto-color-scheme .d2h-moved-tag {
    border: 1px solid #3572b0;
    border: 1px solid var(--d2h-dark-moved-label-color);
  }
}
.diff2html-container {
  overflow-x: auto;
  max-width: 100%;
}
.diff2html-container .d2h-wrapper {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  @apply bg-background text-foreground border-border;
  border: 1px solid hsl(var(--border)) !important;
  border-radius: 8px !important;
  overflow: hidden;
  background-color: hsl(var(--background)) !important;
}
.diff2html-container .d2h-file-wrapper {
  @apply bg-background;
  border: none !important;
  margin-bottom: 0;
  background-color: hsl(var(--background)) !important;
}
.diff2html-container .d2h-file-header {
  display: none !important;
}
.diff2html-container .d2h-file-stats {
  display: none !important;
}
.diff2html-container .d2h-lines-added,
.diff2html-container .d2h-lines-deleted {
  display: none !important;
}
.diff2html-container .d2h-code-linenumber, .diff2html-container .d2h-code-side-linenumber {
  @apply text-muted-foreground bg-muted/50;
  border-right: 1px solid hsl(var(--border)) !important;
  border-left: none;
  background-color: hsl(var(--muted) / 0.5) !important;
  color: hsl(var(--muted-foreground)) !important;
}
.diff2html-container .d2h-ins {
  @apply bg-green-50 text-green-900 border-green-200;
}
.diff2html-container .d2h-ins.d2h-change {
  @apply bg-green-100;
}
.diff2html-container .d2h-del {
  @apply bg-red-50 text-red-900 border-red-200;
}
.diff2html-container .d2h-del.d2h-change {
  @apply bg-red-100;
}
.diff2html-container .d2h-info {
  @apply bg-blue-50 text-blue-900 border-blue-200;
}
.diff2html-container .d2h-code-line, .diff2html-container .d2h-code-side-line {
  @apply text-foreground;
  color: hsl(var(--foreground)) !important;
  background-color: transparent !important;
}
.diff2html-container .d2h-diff-table {
  @apply text-foreground;
  width: 100%;
  table-layout: fixed;
  background-color: hsl(var(--background)) !important;
}
.diff2html-container .d2h-code-line-ctn {
  white-space: pre-wrap !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  max-width: 100% !important;
  min-height: 1.2em !important;
  padding: 2px 4px !important;
  line-height: 1.4 !important;
}
.diff2html-container .d2h-file-side-diff {
  width: 50% !important;
  overflow-x: auto !important;
}
.diff2html-container .d2h-code-line, .diff2html-container .d2h-code-side-line {
  display: table-row !important;
  min-height: 1.2em !important;
}
.diff2html-container .d2h-code-line:not(.d2h-del):not(.d2h-ins):not(.d2h-info), .diff2html-container .d2h-code-side-line:not(.d2h-del):not(.d2h-ins):not(.d2h-info) {
  background-color: transparent !important;
}
.diff2html-container .d2h-file-diff {
  overflow-x: auto;
  max-width: 100%;
}
.diff2html-container .d2h-diff-table td {
  padding: 1px 4px !important;
  vertical-align: top !important;
}
.diff2html-container .d2h-code-linenumber, .diff2html-container .d2h-code-side-linenumber {
  padding: 1px 8px !important;
  min-width: 3em !important;
  text-align: right !important;
  vertical-align: top !important;
}
.diff2html-container .d2h-diff-tbody {
  border: 1px solid hsl(var(--border));
}
.diff2html-container .d2h-wrapper *[style*="background-color: white"], .diff2html-container .d2h-wrapper *[style*="background-color: #fff"], .diff2html-container .d2h-wrapper *[style*="background-color: #ffffff"], .diff2html-container .d2h-wrapper *[style*="background-color: rgb(255, 255, 255)"] {
  background-color: hsl(var(--background)) !important;
}
.diff2html-container .d2h-ins {
  background-color: rgba(34, 197, 94, 0.15) !important;
  color: rgb(34, 197, 94) !important;
  border-color: rgba(34, 197, 94, 0.3) !important;
}
.diff2html-container .d2h-ins.d2h-change {
  background-color: rgba(34, 197, 94, 0.25) !important;
}
.diff2html-container .d2h-del {
  background-color: rgba(239, 68, 68, 0.15) !important;
  color: rgb(239, 68, 68) !important;
  border-color: rgba(239, 68, 68, 0.3) !important;
}
.diff2html-container .d2h-del.d2h-change {
  background-color: rgba(239, 68, 68, 0.25) !important;
}
.diff2html-container .d2h-info {
  background-color: rgba(59, 130, 246, 0.15) !important;
  color: rgb(59, 130, 246) !important;
  border-color: rgba(59, 130, 246, 0.3) !important;
}
.diff2html-container .d2h-code-line, .diff2html-container .d2h-code-side-line {
  @apply text-foreground;
}
.diff2html-container .d2h-diff-tbody {
  border-color: hsl(var(--border)) !important;
  background-color: hsl(var(--background)) !important;
}
.diff2html-container .d2h-code-line, .diff2html-container .d2h-code-side-line {
  background-color: transparent !important;
}
.diff2html-container .d2h-code-line:not(.d2h-del):not(.d2h-ins):not(.d2h-info), .diff2html-container .d2h-code-side-line:not(.d2h-del):not(.d2h-ins):not(.d2h-info) {
  background-color: transparent !important;
  color: hsl(var(--foreground)) !important;
}
.diff2html-container .d2h-cntx.d2h-emptyplaceholder,
.diff2html-container .d2h-code-side-emptyplaceholder,
.diff2html-container .d2h-emptyplaceholder,
.diff2html-container td.d2h-emptyplaceholder,
.diff2html-container .d2h-files-diff .d2h-emptyplaceholder,
.diff2html-container .d2h-files-diff .d2h-code-side-emptyplaceholder {
  background-color: hsl(var(--background)) !important;
  border-color: hsl(var(--border)) !important;
}
.diff2html-container .d2h-cntx {
  background-color: hsl(var(--background)) !important;
}
.diff2html-container .d2h-cntx.d2h-emptyplaceholder {
  background-color: hsl(var(--background)) !important;
  border-color: hsl(var(--border)) !important;
}
.diff2html-container .d2h-diff-table td {
  background-color: transparent !important;
}
.diff2html-container .d2h-diff-table td.d2h-emptyplaceholder {
  background-color: hsl(var(--background)) !important;
}
.diff2html-container .d2h-file-name-wrapper,
.diff2html-container .d2h-file-name,
.diff2html-container .d2h-icon {
  display: none !important;
}
.diff2html-container .d2h-tag {
  display: none !important;
}
.diff2html-container .d2h-file-collapse {
  display: none !important;
}
.diff2html-container.light .d2h-wrapper, .light .diff2html-container .d2h-wrapper {
  @apply bg-background text-foreground;
}
.diff2html-container.light .d2h-file-header, .light .diff2html-container .d2h-file-header {
  @apply bg-muted text-foreground;
}
.diff2html-container.light .d2h-code-linenumber, .diff2html-container.light .d2h-code-side-linenumber, .light .diff2html-container .d2h-code-linenumber, .light .diff2html-container .d2h-code-side-linenumber {
  @apply bg-muted/50 text-muted-foreground;
}
.diff2html-container.light .d2h-ins, .light .diff2html-container .d2h-ins {
  background-color: rgba(34, 197, 94, 0.1) !important;
  color: rgb(21, 128, 61) !important;
  border-color: rgba(34, 197, 94, 0.2) !important;
}
.diff2html-container.light .d2h-ins.d2h-change, .light .diff2html-container .d2h-ins.d2h-change {
  background-color: rgba(34, 197, 94, 0.15) !important;
}
.diff2html-container.light .d2h-del, .light .diff2html-container .d2h-del {
  background-color: rgba(239, 68, 68, 0.1) !important;
  color: rgb(185, 28, 28) !important;
  border-color: rgba(239, 68, 68, 0.2) !important;
}
.diff2html-container.light .d2h-del.d2h-change, .light .diff2html-container .d2h-del.d2h-change {
  background-color: rgba(239, 68, 68, 0.15) !important;
}
.diff2html-container.light .d2h-info, .light .diff2html-container .d2h-info {
  background-color: rgba(59, 130, 246, 0.1) !important;
  color: rgb(29, 78, 216) !important;
  border-color: rgba(59, 130, 246, 0.2) !important;
}
@media (max-width: 768px) {
  .diff2html-container .d2h-diff-table {
    font-size: 12px;
  }
  .diff2html-container .d2h-code-linenumber {
    width: 40px;
    min-width: 40px;
  }
}

pre code.hljs {
  display: block;
  overflow-x: auto;
  padding: 1em;
}

code.hljs {
  padding: 3px 5px;
}

/*!
  Theme: Tokyo-night-Dark
  origin: https://github.com/enkia/tokyo-night-vscode-theme
  Description: Original highlight.js style
  Author: (c) Henri Vandersleyen <hvandersleyen@gmail.com>
  License: see project LICENSE
  Touched: 2022
*/
/*  Comment */
.hljs-meta,
.hljs-comment {
  color: #565f89;
}

/* Red */
/*INFO: This keyword, HTML elements, Regex group symbol, CSS units, Terminal Red */
.hljs-tag,
.hljs-doctag,
.hljs-selector-id,
.hljs-selector-class,
.hljs-regexp,
.hljs-template-tag,
.hljs-selector-pseudo,
.hljs-selector-attr,
.hljs-variable.language_,
.hljs-deletion {
  color: #f7768e;
}

/*Orange */
/*INFO: Number and Boolean constants, Language support constants */
.hljs-variable,
.hljs-template-variable,
.hljs-number,
.hljs-literal,
.hljs-type,
.hljs-params,
.hljs-link {
  color: #ff9e64;
}

/*  Yellow */
/* INFO:  	Function parameters, Regex character sets, Terminal Yellow */
.hljs-built_in,
.hljs-attribute {
  color: #e0af68;
}

/* cyan */
/* INFO: Language support functions, CSS HTML elements */
.hljs-selector-tag {
  color: #2ac3de;
}

/* light blue */
/* INFO: Object properties, Regex quantifiers and flags, Markdown headings, Terminal Cyan, Markdown code, Import/export keywords */
.hljs-keyword,
.hljs-title.function_,
.hljs-title,
.hljs-title.class_,
.hljs-title.class_.inherited__,
.hljs-subst,
.hljs-property {
  color: #7dcfff;
}

/*Green*/
/* INFO: Object literal keys, Markdown links, Terminal Green */
.hljs-selector-tag {
  color: #73daca;
}

/*Green(er) */
/* INFO: Strings, CSS class names */
.hljs-quote,
.hljs-string,
.hljs-symbol,
.hljs-bullet,
.hljs-addition {
  color: #9ece6a;
}

/* Blue */
/* INFO:  	Function names, CSS property names, Terminal Blue */
.hljs-code,
.hljs-formula,
.hljs-section {
  color: #7aa2f7;
}

/* Magenta */
/*INFO: Control Keywords, Storage Types, Regex symbols and operators, HTML Attributes, Terminal Magenta */
.hljs-name,
.hljs-keyword,
.hljs-operator,
.hljs-keyword,
.hljs-char.escape_,
.hljs-attr {
  color: #bb9af7;
}

/* white*/
/* INFO: Variables, Class names, Terminal White */
.hljs-punctuation {
  color: #c0caf5;
}

.hljs {
  background: #1a1b26;
  color: #9aa5ce;
}

.hljs-emphasis {
  font-style: italic;
}

.hljs-strong {
  font-weight: bold;
}

.hljs {
  background: hsl(var(--muted)) !important;
  border-radius: 0.375rem;
  padding: 1rem;
  overflow-x: auto;
}

.prose pre {
  background: hsl(var(--muted)) !important;
  border: 1px solid hsl(var(--border));
  border-radius: 0.5rem;
  padding: 0;
  margin: 1rem 0;
}
.prose pre code {
  display: block;
  padding: 1rem;
  overflow-x: auto;
  font-size: 0.875rem;
  line-height: 1.5;
}

.prose code:not(pre code) {
  background: hsl(var(--muted));
  border-radius: 0.25rem;
  padding: 0.125rem 0.375rem;
  font-size: 0.875em;
  color: hsl(var(--foreground));
}
.prose code:not(pre code)::before, .prose code:not(pre code)::after {
  content: none;
}

.prose-invert h1, .prose-invert h2, .prose-invert h3, .prose-invert h4, .prose-invert h5, .prose-invert h6 {
  color: hsl(var(--foreground)) !important;
}
.prose-invert p, .prose-invert li, .prose-invert td, .prose-invert th {
  color: hsl(var(--foreground)) !important;
}
.prose-invert strong {
  color: hsl(var(--foreground)) !important;
}
.prose-invert a {
  color: hsl(var(--primary)) !important;
}
.prose-invert a:hover {
  text-decoration: underline;
}
.prose-invert table {
  border-collapse: collapse;
  width: 100%;
}
.prose-invert th {
  background: hsl(var(--muted));
  font-weight: 600;
  text-align: left;
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
}
.prose-invert td {
  padding: 0.5rem 0.75rem;
  border: 1px solid hsl(var(--border));
}
.prose-invert tr:nth-child(even) td {
  background: hsl(var(--muted)/0.3);
}
