<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Functions */
html {
  min-height: 100%;
  height: auto;
}
body {
  background-color: #fff;
  display: flex;
  flex-flow: column;
  font-size: 16px;
  line-height: 1.4;
  font-family: Poppins, sans-serif;
  --orange: #fd9831;
  --blue: #1d355d;
  --blue_rgb: 29, 53, 93;
  --green: #a4ca3a;
  color: var(--blue);
  min-height: 100%;
}
#header {
  padding: 2rem 0;
  background: #F2F3F4;
  text-align: center;
}
.container {
  max-width: 1120px;
  width: 90%;
  margin: 0 auto;
}
main {
  display: flex;
  flex-flow: column;
  padding: 3rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
}
#for-sale {
  font-size: 40px;
  color: var(--blue);
  text-align: center;
  font-weight: 500;
  grid-column: span 3 / span 3;
  line-height: 1.1;
}
#content {
  grid-column: span 2 / span 2;
}
.line {
  height: 2px;
  background-color: rgba(var(--blue_rgb), 0.1);
  margin: 3rem 0;
}
#domain-banner {
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.08);
  background: #fff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  position: relative;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
#domain-banner__top {
  background-color: var(--blue);
  aspect-ratio: 2.56 / 1;
  -webkit-border-radius: 8px 8px 0 0;
  -moz-border-radius: 8px 8px 0 0;
  -ms-border-radius: 8px 8px 0 0;
  border-radius: 8px 8px 0 0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  position: relative;
}
#domain-banner__top span {
  line-break: anywhere;
  text-align: center;
  width: 90%;
  line-height: 1.1;
}
#domain-banner__bottom {
  -webkit-border-radius: 0 0 8px 8px;
  -moz-border-radius: 0 0 8px 8px;
  -ms-border-radius: 0 0 8px 8px;
  border-radius: 0 0 8px 8px;
  padding: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.domain-banner__item {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: 4px;
  text-align: center;
  line-height: 1.2;
}
.title-section {
  display: flex;
  flex-flow: column;
  gap: 4px;
  margin-bottom: 1.5rem;
}
.title-section__title {
  font-size: 24px;
  font-weight: 700;
}
.title-section__desc {
  font-size: 18px;
}
#our-promise__wrapper {
  display: grid;
  gap: 1rem;
}
.our-promise__item {
  display: flex;
  gap: 1rem;
}
.our-promise__icon {
  min-width: 32px;
}
.our-promise__right {
  flex: 1;
}
.our-promise__title {
  font-size: 18px;
  font-weight: 700;
}
#faq__wrapper {
  display: grid;
  gap: 8px;
}
#faq__wrapper .faq__item {
  display: flex;
  flex-flow: column;
  gap: 8px;
  text-align: left;
  background-color: var(--blue);
  border: 2px solid rgba(var(--blue_rgb), 0.2);
  color: #fff;
  border-radius: 8px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
#faq__wrapper .faq__item.show {
  background-color: #fff;
  color: var(--blue);
}
#faq__wrapper .faq__item.show .faq__title {
  border-bottom: 2px solid rgba(var(--blue_rgb), 0.2);
}
#faq__wrapper .faq__item.show .faq__title svg.minus {
  display: inline;
}
#faq__wrapper .faq__item.show .faq__title svg.plus {
  display: none;
}
#faq__wrapper .faq__item.show .faq__content {
  display: block;
}
#faq__wrapper .faq__title {
  font-size: 18px;
  font-weight: 600;
  padding: 12px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#faq__wrapper .faq__title svg {
  min-width: 16px;
}
#faq__wrapper .faq__title svg.minus {
  display: none;
}
#faq__wrapper .faq__content {
  font-size: 16px;
  padding: 12px 20px;
  line-height: 1.5;
  display: none;
}
#sidebar {
  position: relative;
}
#sidebar__inner {
  box-shadow: 0px 8px 8px 0px rgba(0, 0, 0, 0.08);
  background-color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 20px;
  z-index: 0;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  padding: 1.5rem 0;
}
#sidebar__inner .line {
  margin: 1.5rem 0;
}
#sidebar__inner .title-section {
  padding: 0 1.5rem;
  position: relative;
}
#sidebar__inner .title-section .title-section__desc {
  font-size: 16px;
}
#sidebar__price {
  font-size: 20px;
  font-weight: 700;
  padding: 1rem 0;
  text-align: center;
  background: rgba(102, 112, 174, 0.1);
  display: flex;
  flex-flow: column;
  gap: 12px;
  line-height: 1;
  position: relative;
}
#sidebar__price span {
  font-size: 28px;
}
#sidebar__inner .button__wrapper {
  padding: 1.5rem 1.5rem 0;
  position: relative;
}
#sidebar__inner a.btn {
  height: 48px;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #6670ae;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
}
#sidebar__inner a.btn:hover {
  background-color: #505a98;
}
#list__wrapper {
  padding: 0 1.5rem 1rem;
  display: flex;
  flex-flow: column;
  gap: 4px;
}
#list__wrapper li {
  display: flex;
  gap: 8px;
}
#list__wrapper svg {
  color: var(--orange);
}
#bank-logos__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
#bank-logos {
  width: auto;
  height: 32px;
}
footer {
  background-color: #0b254b;
  color: #92a6c3;
  padding: 2rem 0;
}
footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lang-switcher-wrapper {
  position: relative;
}
.lang-switcher-wrapper .lang-switcher-button {
  min-width: fit-content;
  width: auto;
  color: #92a6c3;
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px;
  height: 40px;
  display: flex;
  align-items: center;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  background-color: rgba(255, 255, 255, 0.1);
}
.lang-switcher-wrapper .lang-switcher-button svg {
  margin-left: 8px;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.lang-switcher-wrapper .lang-switcher-button span.code {
  margin-right: 4px;
}
.lang-switcher-wrapper ul.lang-switcher {
  display: flex;
  flex-flow: column;
  position: absolute;
  z-index: 999;
  bottom: 100%;
  right: 0;
  width: 180px;
  background-color: #fff;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-border-radius: 8px;
  -moz-border-radius: 8px;
  -ms-border-radius: 8px;
  border-radius: 8px;
  border: 2px solid rgba(var(--blue_rgb), 0.2);
}
.lang-switcher-wrapper ul.lang-switcher li a {
  margin: 0!important;
  min-width: fit-content;
  width: auto;
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  padding: 0 20px!important;
  height: 44px;
  width: 100%!important;
  justify-content: flex-start !important;
  color: var(--blue);
}
.lang-switcher-wrapper ul.lang-switcher li a:hover {
  background-color: #c9d4e5;
}
.lang-switcher-wrapper ul.lang-switcher li a span.symbol {
  margin-left: 8px;
}
@media screen and (max-width: 768px) {
  .lang-switcher-wrapper ul.lang-switcher {
    left: 50%;
    transform: translateX(-50%);
  }
}
.lang-switcher-wrapper.active .lang-switcher-button {
  color: #fff;
}
.lang-switcher-wrapper.active .lang-switcher-button i {
  transform: rotate(180deg);
}
.lang-switcher-wrapper.active ul.lang-switcher {
  opacity: 1;
  pointer-events: initial;
}
@media screen and (max-width: 991px) {
  main {
    padding: 3rem 0;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
  }
  #for-sale {
    font-size: 32px;
    grid-column: span 1 / span 1;
    order: 1;
  }
  #content {
    grid-column: span 1 / span 1;
    order: 3;
  }
  #domain-banner__top {
    font-size: 32px;
    font-weight: 600;
  }
  #sidebar {
    order: 2;
  }
}
@media screen and (max-width: 567px) {
  #header {
    padding: 1rem 0;
  }
  main {
    gap: 1.5rem;
    padding: 2rem 0;
  }
  #for-sale {
    font-size: 28px;
    text-align: left;
    font-size: 19px;
    line-height: 1.2;
  }
  #for-sale b {
    word-break: break-all;
    display: block;
    font-size: 28px;
    margin-bottom: 4px;
    font-weight: 600;
  }
  #domain-banner__bottom {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 0.5rem;
    padding: 1rem;
  }
  .domain-banner__item {
    flex-flow: row;
    gap: 1rem;
  }
  .line {
    margin: 2rem 0;
  }
  .title-section__desc {
    font-size: 16px;
  }
  .our-promise__content {
    font-size: 14px;
  }
  #faq__wrapper .faq__title {
    font-size: 16px;
    padding: 12px 20px;
  }
  #sidebar__price {
    flex-flow: row;
    align-items: center;
    justify-content: center;
  }
  footer .container {
    flex-flow: column-reverse;
    text-align: center;
    gap: 1rem;
  }
  #footer-left {
    font-size: 14px;
  }
}
</pre></body></html>