@import url(https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap);
:root {
  --clr-text-default: #685f78;
  --clr-text-dark: #22100d;
  --clr-text-light: #999;
  --clr-brand-primary: #f66962;
  --clr-brand-green: #00d7b3;
  --clr-brand-purple: #b4a7f5;
  --clr-border: #e9ecef;
  --clr-anchor: #007aff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  color: var(--clr-text-default);
  font-family: "Inter", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
}

input,
textarea {
  background-color: transparent;
  border: 0;
  font-family: inherit;
  outline: none;
}

.icon {
  --size: 20px;
  align-items: center;
  color: inherit;
  display: flex;
  height: var(--size);
  justify-content: center;
  max-width: var(--size);
  min-width: var(--size);
}
.icon svg {
  fill: currentColor;
  height: 100%;
  width: 100%;
}

.container {
  margin: 0 auto;
  max-width: 1320px;
  padding: 0 12px;
  width: 100%;
}
.container.xl {
  max-width: 1500px;
}
.container.medium {
  max-width: 1000px;
}

.mt-32 {
  margin-top: 32px;
}

.mb-12 {
  margin-bottom: 12px;
}

.ml-auto {
  margin-left: auto;
}

.mt-24 {
  margin-top: 24px;
}

.p-24 {
  padding: 24px !important;
}

.text-link {
  color: var(--clr-text-default);
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.1;
}
.text-link:hover {
  text-decoration: underline;
}

.text-center {
  color: var(--clr-text-);
  display: block;
  text-align: center;
}

.border-bottom {
  border-bottom: 1px solid var(--clr-border);
}

button {
  background-color: transparent;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  outline: none;
}

.btn--text, .btn--primary, .btn--transparent-default, .btn--transparent, .btn--default {
  align-items: center;
  background-color: transparent;
  border: 3px solid transparent;
  border-radius: 46px;
  color: #26292c;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 8px;
  justify-content: center;
  padding: 14px 24px;
  text-align: center;
}
.w-full.btn--text, .w-full.btn--primary, .w-full.btn--transparent-default, .w-full.btn--transparent, .w-full.btn--default {
  width: 100%;
}
.small.btn--text, .small.btn--primary, .small.btn--transparent-default, .small.btn--transparent, .small.btn--default {
  border-width: 2px;
  font-size: 14px;
  padding: 8px 15px;
}
.small.btn--text i, .small.btn--primary i, .small.btn--transparent-default i, .small.btn--transparent i, .small.btn--default i {
  --size: 16px;
}

.btn--default {
  background-color: #e2eef9;
  border-color: #e2eef9;
  transition: all 0.25s ease-in-out;
}
.btn--default:hover {
  background-color: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: #fff;
  transition: all 0.25s ease-in-out;
}

.btn--transparent {
  border-color: var(--clr-brand-primary);
  transition: all 0.25s ease-in-out;
}
.btn--transparent:hover {
  background-color: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: #fff;
  transition: all 0.25s ease-in-out;
}

.btn--transparent-default {
  border-color: rgb(239, 241, 250);
  color: var(--clr-text-default);
  transition: all 0.25s ease-in-out;
}
.btn--transparent-default:hover {
  background-color: rgb(239, 241, 250);
  border-color: rgb(239, 241, 250);
  transition: all 0.25s ease-in-out;
}

.btn--primary {
  background-color: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: #fff;
  transition: all 0.25s ease-in-out;
}
.btn--primary:hover {
  background-color: hsl(3, 89%, 60%);
  border-color: hsl(3, 89%, 60%);
  transition: all 0.25s ease-in-out;
}

.btn--text:hover {
  color: #000;
}

.btn-copy {
  cursor: pointer;
  position: relative;
}
.btn-copy::after {
  align-items: center;
  background-color: var(--clr-brand-primary);
  background-image: url("data:image/svg+xml,%0A%3Csvg fill='%23fff' height='512pt' viewBox='-21 0 512 512' width='512pt' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m186.667969 416c-49.984375 0-90.667969-40.683594-90.667969-90.667969v-218.664062h-37.332031c-32.363281 0-58.667969 26.300781-58.667969 58.664062v288c0 32.363281 26.304688 58.667969 58.667969 58.667969h266.664062c32.363281 0 58.667969-26.304688 58.667969-58.667969v-37.332031zm0 0'/%3E%3Cpath d='m469.332031 58.667969c0-32.40625-26.261719-58.667969-58.664062-58.667969h-224c-32.40625 0-58.667969 26.261719-58.667969 58.667969v266.664062c0 32.40625 26.261719 58.667969 58.667969 58.667969h224c32.402343 0 58.664062-26.261719 58.664062-58.667969zm0 0'/%3E%3C/svg%3E");
  background-position: left 10px center;
  background-repeat: no-repeat;
  background-size: 12px;
  border-radius: 24px;
  color: #fff;
  content: attr(data-tip);
  display: flex;
  font-size: 12px;
  font-weight: 500;
  height: calc(100% + 12px);
  justify-content: center;
  left: 50%;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0 12px 0 26px;
  position: absolute;
  text-align: right;
  top: 50%;
  transform: translate(-40%, -50%) scale(0);
  transition: transform 0.25s ease-in-out;
  width: 100%;
}
.btn-copy:hover::after {
  transform: translate(-40%, -50%) scale(1);
  transition: transform 0.25s ease-in-out;
}

.btn-info {
  cursor: pointer;
  position: relative;
}
.btn-info::after {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  content: attr(data-copy);
  display: block;
  font-size: 12px;
  left: 50%;
  line-height: 1;
  padding: 10px 12px;
  position: absolute;
  top: calc(100% + 10px);
  transform: translateX(-50%) translateY(10px) scale(0);
  transition: all 0.25s ease-in-out;
}
.btn-info::before {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-left: 1px solid #e9ecef;
  border-top: 1px solid #e9ecef;
  content: "";
  display: inline-block;
  left: 50%;
  opacity: 0;
  position: absolute;
  top: calc(100% + 8px);
  transform: rotate(45deg) translateX(-50%) scale(0);
  transition: all 0.25s ease-in-out;
  width: 10px;
  z-index: 1;
}
.btn-info:hover::after {
  transform: translateX(-50%) translateY(0) scale(1);
  transition: all 0.25s ease-in-out;
}
.btn-info:hover::before {
  opacity: 1;
  transform: rotate(45deg) translateX(-50%) scale(1);
  transition: all 0.25s ease-in-out;
}

.btn-icon {
  color: var(--clr-text-default);
  transition: color 0.25s ease-in-out;
}
.btn-icon:hover {
  color: var(--clr-brand-primary);
  transition: color 0.25s ease-in-out;
}

.btn-report {
  align-items: center;
  aspect-ratio: 1/1;
  color: #aaa;
  display: flex;
  justify-content: center;
  margin-left: auto;
  transition: color 0.25s ease-in-out;
  width: 35px;
}
.btn-report:hover {
  color: var(--clr-text-light);
  transition: color 0.25s ease-in-out;
}

.btn-loadmore {
  align-items: center;
  background-color: var(--clr-brand-primary);
  border-radius: 24px;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  margin: 52px auto 0;
  max-width: -moz-max-content;
  max-width: max-content;
  min-height: 42px;
  padding: 0 24px;
  position: relative;
  transition: all 0.25s ease-in-out;
}
.btn-loadmore:hover {
  filter: brightness(1.2);
  transition: all 0.25s ease-in-out;
}
.btn-loadmore::before {
  aspect-ratio: 1/1;
  border: 2px solid #fff;
  border-radius: 50%;
  border-right-color: transparent;
  content: "";
  display: inline-block;
  left: 12px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: transform 0.25s ease-in-out;
  width: 20px;
}
.btn-loadmore.is-loading {
  padding-left: 48px;
  transition: all 0.25s ease-in-out;
}
.btn-loadmore.is-loading::before {
  animation: loading 0.8s linear 0s infinite, fade-in 0.5s forwards;
  transform: translateY(-50%);
  transition: transform 0.25s ease-in-out;
}

@keyframes loading {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
$minmax: Media Screen Min or Media Screen Max;
$Value: Screen Size in Pixels
*/
/*
$minmax: Media Screen Min or Media Screen Max;
$Value: Screen Size in Pixels
*/
.page--header {
  margin-bottom: 52px;
}
.page--header.center {
  text-align: center;
}
.page--title {
  color: var(--clr-text-dark);
  font-size: 36px;
  font-weight: 700;
  line-height: 1.7;
}
.page--desc {
  color: var(--clr-text-default);
  font-size: 15px;
  font-weight: 400;
  max-width: 700px;
  width: 100%;
}
.center .page--desc {
  margin: 0 auto;
}

.main {
  min-height: 100vh;
  padding: 32px 0 100px;
}
.sticky-header .main {
  padding: 140px 0 100px;
}

.content-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
@media only screen and (min-width: 1024px) {
  .content-wrap {
    flex-wrap: nowrap;
  }
}
.content-main {
  width: 100%;
}
.content-sidebar {
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .content-sidebar {
    max-width: 300px;
  }
}
@media only screen and (min-width: 1100px) {
  .content-sidebar {
    max-width: 360px;
    min-width: 360px;
  }
}

/*
$minmax: Media Screen Min or Media Screen Max;
$Value: Screen Size in Pixels
*/
/*
$minmax: Media Screen Min or Media Screen Max;
$Value: Screen Size in Pixels
*/
.header {
  position: relative;
  z-index: 100;
}
.header.sticky {
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
}
.header--wrap {
  align-items: center;
  background-color: #fff;
  display: flex;
  min-height: 70px;
  transition: all 0.4s ease-in-out;
}
.sticky .header--wrap {
  background-color: transparent;
  margin-top: 10px;
}
@media only screen and (min-width: 768px) {
  .sticky .header--wrap {
    margin-top: 20px;
  }
}
.stick .header--wrap {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  margin: 0;
  transition: all 0.4s ease-in-out;
}
.header .menu {
  margin-right: auto;
}

.header .header--wrap .container-fluid{
  width: 90%;
  margin: auto;
}
.stick .btn--default {
  background-color: var(--clr-brand-purple);
  border-color: var(--clr-brand-purple);
  color: #fff;
}
.stick .btn--default:hover {
  background-color: transparent;
  color: #26292c;
}

.navbar {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: space-between !important;
}
.navbar .right-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}
.navbar .right-menu .icomoon-plus {
  font-size: 15px;
  color: #fff;
}
.navbar .right-menu .btn-complaint-mini {
  display: none;
  background: #e36161;
  color: #ffffff;
  padding: 3px 7px 3px 7px;
  border-radius: 4px;
  align-content: center;
  justify-content: center;
  align-items: center;
  gap: 3px;
}
@media only screen and (max-width: 767px) {
  .navbar .right-menu .btn-complaint-mini {
    display: flex;
  }
}

.header--cta {
  display: none;
}
@media only screen and (min-width: 768px) {
  .header--cta {
    align-items: center;
    display: flex;
    gap: 20px;
  }
}

.nav-btn i {
  --size: 24px;
}

.user-menu-btn {
  align-items: center;
  aspect-ratio: 1/1;
  border: 3px solid #e9ecef;
  border-radius: 50%;
  display: flex;
  width: 50px;
}
.user-menu-btn img {
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer {
  background-color: #fff;
  padding: 60px 0 40px;
}
.footer--wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
}
.footer--widget {
  flex-basis: calc(50% - 12px);
}
@media only screen and (min-width: 768px) {
  .footer--widget {
    flex-basis: calc(25% - 12px);
  }
}
@media only screen and (min-width: 1024px) {
  .footer--widget {
    flex-basis: calc(17% - 12px);
  }
}
.footer--about {
  flex-basis: 100%;
}
@media only screen and (min-width: 1024px) {
  .footer--about {
    flex-basis: calc(33% - 24px);
  }
}
.footer--about p {
  color: var(--clr-text-default);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  max-width: 315px;
}
.footer--contact {
  flex-basis: 100%;
}
@media only screen and (min-width: 768px) {
  .footer--contact {
    flex-basis: calc(50% - 24px);
  }
}
@media only screen and (min-width: 1024px) {
  .footer--contact {
    flex-basis: calc(33% - 24px);
  }
}
.footer--logo {
  margin-bottom: 15px;
}
.footer--title {
  color: var(--clr-text-dark);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.17;
  margin-bottom: 26px;
}
.footer--menu li {
  display: block;
  max-width: -moz-max-content;
  max-width: max-content;
}
.footer--menu li:not(:last-of-type) {
  margin-bottom: 20px;
}
.footer--menu li:hover a {
  color: var(--clr-brand-primary);
}
.footer--menu li a {
  color: var(--clr-text-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}
.footer--bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 40px;
}
.footer--links {
  align-items: center;
  display: flex;
}
.footer--links a {
  color: var(--clr-text-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  padding: 0 10px;
}
.footer--links a:not(:last-of-type) {
  border-right: 1px solid #b2b1fc;
}
.footer--links a:first-of-type {
  padding-left: 0;
}
.footer--links a:hover {
  color: var(--clr-brand-primary);
}

.news-letter {
  margin-bottom: 20px;
}
.news-letter input {
  border-bottom: 1px solid #e9ecef;
  color: #26292c;
  font-size: 15px;
  font-weight: 400;
  line-height: 42px;
  min-height: 42px;
}

.address {
  align-items: center;
  color: var(--clr-text-dark);
  display: flex;
  gap: 12px;
}
.address:not(:last-of-type) {
  margin-bottom: 20px;
}
.address i {
  --size: 24px;
}
.address p {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.copyright {
  color: var(--clr-text-dark);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

.section--hero {
  background-image: url("../images/bg.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 120px 0 100px;
}
@media only screen and (min-width: 660px) {
  .section--hero {
    padding: 160px 32px 100px;
  }
}
@media only screen and (min-width: 1024px) {
  .section--hero {
    padding: 200px 32px 100px;
  }
}
.section--hero:not(.help) {
  min-height: 100vh;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  max-width: 850px;
  width: 100%;
  align-items: center;
  text-align: center;
}
@media only screen and (min-width: 660px) {
  .hero {
    align-items: center;
    text-align: center;
  }
}
.hero--subtitle {
  color: var(--clr-text-default);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  max-width: 62ch;
}
@media only screen and (min-width: 660px) {
  .hero--subtitle {
    font-size: 20px;
    margin-bottom: 24px;
  }
}
.hero--title {
  color: var(--clr-text-dark);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 24px;
}
@media only screen and (min-width: 660px) {
  .hero--title {
    font-size: 48px;
    line-height: 1.19;
    margin-bottom: 40px;
  }
}

.section--video {
  padding: 80px 0;
}
@media only screen and (min-width: 1024px) {
  .section--video {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 100vh;
    padding: 0;
  }
}

.video--container {
  display: flex;
  flex-direction: column;
  gap: 42px;
  padding: 0 24px;
}
@media only screen and (min-width: 1024px) {
  .video--container {
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
  }
}
.video--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media only screen and (min-width: 1024px) {
  .video--text {
    padding: 0 40px 0 20px;
    width: 40%;
  }
}
.video--text h2 {
  color: var(--clr-text-dark);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.21;
  padding-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .video--text h2 {
    font-size: 42px;
    padding-bottom: 40px;
  }
}
.video--text h2 span {
  font-weight: 400;
}
.video--text p {
  color: var(--clr-text-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media only screen and (min-width: 768px) {
  .video--text p {
    padding-right: 70px;
  }
}
.video--banner {
  display: flex;
  max-width: 690px;
  position: relative;
}
@media only screen and (max-width: 1023px) {
  .video--banner {
    align-self: center;
  }
}
@media only screen and (min-width: 1024px) {
  .video--banner {
    width: 60%;
  }
}
.video--cover {
  border-radius: 12px;
}

.btn--play {
  align-items: center;
  background-color: #fff;
  border-radius: 50%;
  box-shadow: 0 0 20px 10px rgba(0, 0, 0, 0.15);
  color: var(--clr-text-default);
  display: flex;
  height: 100px;
  justify-content: center;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  transition: all 0.25s ease-in-out;
  width: 100px;
}
.btn--play:hover {
  background-color: var(--clr-brand-primary);
  color: #fff;
  transition: all 0.25s ease-in-out;
}

.section--complaints {
  background-color: #f4f7fe;
  padding: 80px 0;
}
.section--complaints .section--header {
  margin-bottom: 0;
}

.section--header {
  margin-bottom: 32px;
}
@media only screen and (min-width: 768px) {
  .section--header {
    margin-bottom: 72px;
  }
}

.section--title {
  color: var(--clr-text-dark);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.9px;
  line-height: 1.7;
}
@media only screen and (min-width: 660px) {
  .section--title {
    font-size: 36px;
  }
}
.section--title.center {
  text-align: center;
}

.section--subtitle {
  color: #f66962;
  display: block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.9px;
  padding-bottom: 18px;
}

.section--desc {
  color: var(--clr-text-default);
  font-size: 16px;
  font-weight: 400;
  max-width: 700px;
  width: 100%;
}

.cc {
  background-color: #fff;
  border-radius: 6px;
  max-width: 320px;
  padding: 26px 28px;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.cc.highlighted {
  box-shadow: 0 8px 77px rgba(0, 0, 0, 0.1);
  transform: scale(1.2);
}
.cc-header {
  align-items: center;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.cc-image {
  border-radius: 50%;
  height: 36px;
  -o-object-fit: scale-down;
     object-fit: scale-down;
  width: 36px;
}
.cc-brand-name {
  color: var(--clr-text-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.cc-title {
  color: var(--clr-text-dark);
  display: -webkit-box;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  max-height: 52px;
  min-height: 52px;
  margin-bottom: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.cc-desc {
  color: var(--clr-text-default);
  display: -webkit-box;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 24px;
  max-height: 105px;
  min-height: 105px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}
.cc-footer {
  color: var(--clr-text-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  text-align: right;
}

.section--categories {
  background-image: url("https://dreamslms.dreamguystech.com/vuejs/6c07feec0a00169c99879670c283bcba.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 80px 0;
}
@media only screen and (min-width: 768px) {
  .section--categories {
    padding: 100px 0;
  }
}

.card {
  align-items: center;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 25px;
  text-align: center;
  transition: all 0.25s ease-in-out;
}
.card:hover {
  --clr-text-dark: #fff;
  --clr-text-default: #fff;
  background-color: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  transition: all 0.25s ease-in-out;
}
.card--icon {
  aspect-ratio: 1/1;
  margin-bottom: 25px;
  max-width: 100px;
  width: 100%;
}
.card--title {
  color: var(--clr-text-dark);
  display: -webkit-box;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 25px;
  min-height: 27px;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: color 0.25s ease-in-out;
}
.card p {
  color: var(--clr-text-default);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  transition: color 0.25s ease-in-out;
}

.companies {
  align-items: center;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin: 64px auto 0;
  max-width: 1100px;
}

.company {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #fff;
  border-radius: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  max-width: 64px;
  padding: 10px;
  width: 100%;
}

.categories {
  margin: 0 -10px;
}
.categories .slider-bullets {
  margin: 64px 0;
}

.category {
  padding: 0 10px;
}

article p,
.article p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin: 8px 0;
}
article h2,
article h3,
article h4,
.article h2,
.article h3,
.article h4 {
  color: var(--clr-text-dark);
  font-weight: 700;
  line-height: 1.4;
  margin: 14px 0 20px;
}
article h2,
.article h2 {
  font-size: 28px;
}
article h3,
.article h3 {
  font-size: 20px;
}
article strong,
.article strong {
  color: var(--clr-text-dark);
  font-weight: 700;
}
article ul li,
.article ul li {
  list-style-type: disc;
  margin-left: 20px;
}

.complaints .swiper-wrapper {
  padding: 48px 0 36px;
}
@media only screen and (min-width: 1100px) {
  .complaints .swiper-wrapper {
    padding: 100px 0;
  }
}
.complaints .swiper-slide {
  align-items: center;
  display: flex;
  justify-content: center;
}

@media only screen and (min-width: 1100px) {
  .swiper-slide-active .cc {
    box-shadow: 0 8px 77px rgba(0, 0, 0, 0.1);
    transform: scale(1.2);
    transition: all 0.25s ease-in-out;
  }
}

.slider-bullets {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: center;
}

.slider-bullet {
  aspect-ratio: 1/1;
  background: #ffdeda;
  border-radius: 10px;
  cursor: pointer;
  display: inline-block;
  height: 12px;
  text-indent: -10000px;
  transition: width 0.25s ease-in-out;
  width: 12px;
}
@media only screen and (min-width: 768px) {
  .slider-bullet {
    height: 15px;
    width: 15px;
  }
}
.slider-bullet-active {
  background-color: var(--clr-brand-primary);
  transition: width 0.25s ease-in-out;
  width: 42px;
}
@media only screen and (min-width: 768px) {
  .slider-bullet-active {
    width: 50px;
  }
}

.companies .swiper-wrapper {
  justify-content: center;
}

.swiper-button-next, .swiper-button-prev {
  top: 30% !important;
}

.menu {
  align-items: center;
  display: none;
  gap: 30px;
}
@media only screen and (min-width: 1024px) {
  .menu {
    display: flex;
  }
}
.menu--item:hover:not(.has-submenu) .menu--link {
  color: #f66962;
}
.menu--link {
  align-items: center;
  color: #26292c;
  display: flex;
  font-size: 15px;
  font-weight: 500;
}
.menu--link.is-active {
  color: #f66962;
}

.has-submenu {
  padding-right: 16px;
  position: relative;
}
.has-submenu::before {
  background-color: transparent;
  content: "";
  display: inline-block;
  height: 40px;
  left: 0;
  position: absolute;
  top: 100%;
  width: 100%;
}
.has-submenu::after {
  background-image: url("data:image/svg+xml,%3Csvg height='512' viewBox='0 0 24 24' width='512' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18.646 6.354 12 13 5.354 6.354a1.914 1.914 0 0 0-2.708 2.707l9 9a.5.5 0 0 0 .708 0l9-9a1.914 1.914 0 1 0-2.708-2.707z' data-name='Layer 3'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  height: 10px;
  position: absolute;
  right: 0;
  top: 55%;
  transform: translateY(-50%);
  width: 10px;
}
.has-submenu:hover .submenu {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  transition: all 0.25s ease-in-out;
  visibility: visible;
}

.submenu {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.1);
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 20px);
  transform: translateY(20px);
  transition: all 0.25s ease-in-out;
  visibility: hidden;
  width: 200px;
}
.submenu::before {
  border: 7px solid #fff;
  border-color: transparent transparent #fff #fff;
  box-shadow: -2px 2px 2px -1px rgba(0, 0, 0, 0.1);
  content: "";
  left: 45px;
  position: absolute;
  top: 2px;
  transform: rotate(135deg);
  transform-origin: 0 0;
}
.submenu li:not(:first-of-type) {
  border-top: 1px solid #f0f0f0;
}
.submenu a {
  color: #26292c;
  display: block;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  padding: 10px 15px;
  transition: all 0.35s ease;
  white-space: nowrap;
  width: 100%;
}
.submenu a:hover {
  color: var(--clr-brand-primary);
  letter-spacing: 0.5px;
  padding-left: 20px;
}

.logo {
  color: #392c7d;
  display: flex;
  font-size: 24px;
  font-weight: 700;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 5px 0;
  width: 100%;
}
.logo img {
  max-width: 160px;
}
.complaint-form .logo {
  max-width: calc(28% + 24px);
  margin-right: 0;
  min-width: 180px;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .complaint-form .logo {
    min-width: 290px;
  }
}
.complaint-form .logo img {
  max-width: 180px;
}

.toggle {
  --toggle-width: 40px;
  --clr-toggle: #aaa;
  --clr-toggle-active: var(--clr-brand-primary);
  --clr-toggle-disabled: #d6d6d6;
  align-items: center;
  aspect-ratio: 5/3;
  background-color: transparent;
  border: 1px solid var(--clr-toggle);
  border-radius: 24px;
  cursor: pointer;
  display: flex;
  max-width: var(--toggle-width);
  min-width: var(--toggle-width);
  padding: 3px;
  position: relative;
  transition: border-color 0.25s ease-in-out, background-color 0.25s ease-in-out;
  width: var(--toggle-width);
}
.toggle-group {
  align-items: center;
  display: flex;
  gap: 16px;
  margin: 12px 0;
}
.toggle input[type=checkbox] {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.toggle span {
  aspect-ratio: 1/1;
  background-color: var(--clr-toggle);
  border-radius: 50%;
  display: inline-block;
  transition: transform 0.25s ease-in-out, background-color 0.25s ease-in-out;
  width: 50%;
  z-index: 1;
}
.toggle:hover:not(.active) {
  border-color: var(--clr-toggle-active);
}
.toggle:hover:not(.active) span {
  background-color: var(--clr-toggle-active);
  transition: transform 0.25s ease-in-out, background-color 0.25s ease-in-out;
}
.toggle.active {
  background-color: var(--clr-toggle-active);
  border-color: var(--clr-toggle-active);
}
.toggle.active span {
  background-color: #fff;
  transform: translateX(100%);
}
.toggle.active.disabled {
  border-color: var(--clr-toggle-active);
}
.toggle.active.disabled span {
  background-color: var(--clr-toggle-disabled);
}
.toggle.disabled {
  border-color: var(--clr-toggle-disabled);
}
.toggle.disabled span {
  background-color: var(--clr-toggle-disabled);
}

.popup {
  --clr-popup-overlay: rgba(0 0 0 / 80%);
  --clr-card: #fff;
  align-items: flex-start;
  background-color: var(--clr-popup-overlay);
  display: none;
  height: 100vh;
  justify-content: center;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  transition: opacity 0.25s ease-in-out;
  width: 100%;
  z-index: 500;
}
.popup--wrap {
  background-color: var(--clr-card);
  border-radius: 6px;
  box-shadow: rgba(9, 30, 66, 0.08) 0 0 0 1px, rgba(9, 30, 66, 0.08) 0 2px 1px 0, rgba(9, 30, 66, 0.31) 0 0 20px -6px;
  color: var(--clr-text-default);
  margin-top: 100px;
  max-width: 720px;
  min-height: 360px;
  min-width: 720px;
  overflow: hidden;
  padding: 32px;
  position: relative;
  transform: translateY(50px);
  transition: transform 0.25s ease-in-out;
  width: 100%;
}
.popup--wrap.transparent {
  background-color: rgba(31, 31, 31, 0.0196078431);
}
.mobile .popup--wrap {
  height: 100vh;
  margin-top: 0;
  max-width: 100vw;
}
.popup--cross {
  background-color: transparent;
  border-color: transparent;
  height: 24px;
  opacity: 0.2;
  position: absolute;
  right: 10px;
  top: 10px;
  transition: opacity 0.25s ease-in-out;
  width: 24px;
  z-index: 1;
}
.mobile .popup--cross {
  opacity: 1;
  right: 20px;
  top: 16px;
}
@media (hover: hover) {
  .popup--cross:hover {
    opacity: 1;
  }
}
.popup--cross::after, .popup--cross::before {
  background-color: var(--clr-text-default);
  content: "";
  display: inline-block;
  height: 2px;
  left: 2px;
  position: absolute;
  top: 10px;
  transform: rotate(45deg);
  width: calc(100% - 4px);
}
.popup--cross::after {
  transform: rotate(135deg);
}
.popup.is-active {
  display: flex;
}
.popup.show {
  opacity: 1;
  transition: opacity 0.25s ease-in-out;
}
.popup.show .popup--wrap {
  transform: translateY(0);
}
.popup--title {
  color: var(--clr-text-dark);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.popup--desc {
  color: var(--clr-text-default);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.ratings {
  --size: 24px;
  --clr-star-default: hsl(0, 0%, 80%);
  --clr-star-rated: #ffc107;
  align-items: center;
  display: inline-flex;
  gap: 4px;
  max-width: -moz-max-content;
  max-width: max-content;
  position: relative;
}
.ratings::after {
  bottom: -2px;
  content: "";
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px;
  z-index: 0;
}

.rating-star {
  cursor: pointer;
  height: var(--size);
  min-width: var(--size);
  width: var(--size);
  z-index: 1;
}
.rated .rating-star {
  cursor: auto;
}
.rating-star svg {
  height: var(--size);
  width: var(--size);
}
.rating-star path {
  fill: var(--clr-star-default);
}
.faved .rating-star path {
  fill: var(--clr-star-rated);
}

.half-star.faved {
  fill: var(--clr-star-rated);
}

.ratings__scoreboard {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sb__row {
  align-items: center;
  display: flex;
  gap: 24px;
}
.sb__star {
  align-items: center;
  color: var(--clr-text-dark);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
}
.sb__star .icon {
  --size: 20px;
  color: var(--clr-icon, #ffc107);
}
.sb__star-five {
  --clr-icon: hsl(100, 79%, 41%);
}
.sb__star-four {
  --clr-icon: hsl(100, 79%, 50%);
}
.sb__star-three {
  --clr-icon: hsl(360, 100%, 80%);
}
.sb__star-two {
  --clr-icon: hsl(360, 100%, 70%);
}
.sb__star-one {
  --clr-icon: hsl(360, 100%, 48%);
}
.sb__star span {
  text-align: center;
  width: 12px;
}
.sb__bar {
  --clr-bar-overlay: #888;
  background-color: #f4f4f4;
  display: inline-block;
  height: 16px;
  position: relative;
  width: 100%;
}
.sb__bar .overlay {
  background-color: var(--clr-bar-overlay);
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 50%;
}
.sb__bar.five {
  --clr-bar-overlay: rgb(105, 111, 251);
}
.sb__bar.four {
  --clr-bar-overlay: rgb(77, 187, 22);
}
.sb__bar.three {
  --clr-bar-overlay: rgba(243, 156, 18, 0.7);
}
.sb__bar.two {
  --clr-bar-overlay: rgba(77, 187, 22, 0.8);
}
.sb__bar.one {
  --clr-bar-overlay: rgb(247, 0, 1);
}
.sb__count {
  color: var(--clr-text-dark);
  font-size: 14px;
  font-weight: 500;
  margin-left: auto;
  max-width: 40px;
  text-align: right;
  width: 100%;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 20px;
}
.review-form .form--group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.review-form .form--group label {
  color: var(--clr-text-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
.review-form .form--group textarea,
.review-form .form--group input {
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  min-height: 42px;
  padding: 0 16px;
  transition: all 0.25s ease-in-out;
}
.review-form .form--group textarea:hover,
.review-form .form--group input:hover {
  border-color: var(--clr-border);
  box-shadow: 0 0 0 1px var(--clr-border);
  transition: all 0.25s ease-in-out;
}
.review-form .form--group textarea:focus,
.review-form .form--group input:focus {
  border-color: var(--clr-brand-primary);
  box-shadow: 0 0 0 1px var(--clr-brand-primary);
  transition: all 0.25s ease-in-out;
}
.review-form .form--group textarea {
  min-height: 120px;
  padding: 16px;
}

.custom-input {
  --input-size: 18px;
  --clr-disabled: #999999c7;
  --clr-input-unchecked: #fff;
  --clr-input-checked: var(--clr-brand-primary);
  --clr-input-border: var(--clr-text-default);
  cursor: pointer;
  display: inline-block;
  height: var(--input-size);
  max-width: var(--input-size);
  min-width: var(--input-size);
  position: relative;
  width: 100%;
}
.custom-input input {
  cursor: pointer;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 10;
}
.custom-input input ~ span {
  background-color: var(--clr-input-unchecked);
  border: 2px solid var(--clr-input-border);
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: background-color 0.25s ease-in-out, border-color 0.25s ease-in-out;
  width: 100%;
}
.custom-input input ~ span::after {
  content: "";
  opacity: 0;
  position: absolute;
  transition: all 0.25s ease-in-out;
}
.custom-input input:disabled ~ span {
  border-color: var(--clr-disable) !important;
}
.custom-input input:disabled ~ span::after {
  border-color: var(--clr-disable) !important;
}
.custom-input input[type=checkbox] ~ span {
  border-radius: 2px;
}
.custom-input input[type=checkbox] ~ span::after {
  border-bottom: 2px solid var(--clr-input-unchecked);
  border-right: 2px solid var(--clr-input-unchecked);
  height: 8px;
  left: 4.5px;
  top: 1px;
  transform: rotate(50deg);
  width: 3px;
}
.custom-input input[type=checkbox]:checked ~ span {
  background-color: var(--clr-input-checked);
  border-color: var(--clr-input-checked);
}
.custom-input input[type=checkbox]:checked ~ span::after {
  opacity: 1;
}
.custom-input input[type=radio] ~ span {
  border-radius: 50%;
  border-width: 2px;
}
.custom-input input[type=radio] ~ span::after {
  background-color: #fff;
  border-radius: 50%;
  height: 9px;
  left: 50%;
  top: 50%;
  transform: translateY(-50%) translateX(-50%);
  width: 9px;
}
.custom-input input[type=radio]:checked ~ span {
  border-color: var(--clr-input-checked);
}
.custom-input input[type=radio]:checked ~ span::after {
  background-color: var(--clr-input-checked);
  opacity: 1;
}
.custom-input input[type=radio]:disabled ~ span::after {
  background-color: var(--clr-disabled);
}

.status {
  padding: 24px !important;
  position: relative;
}
.status .complaint-actions {
  position: absolute;
  right: 24px;
  top: 24px;
}
.status .complaint-actions-btn {
  min-height: 28px;
  padding: 0 14px 0 12px;
}
.status .complaint-actions-list {
  right: -22px;
}

.status-title {
  color: var(--clr-text-dark);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.7;
  margin-bottom: 24px;
}

.status-related {
  color: var(--clr-text-light, #999);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 6px;
}
.status-related a {
  color: var(--clr-brand-primary);
  font-weight: 500;
}
.status-related a:hover {
  text-decoration: underline;
}

.status-steps {
  align-items: center;
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}
.status-steps::after {
  background-color: #f4f4f4;
  content: "";
  height: 2px;
  left: 50%;
  position: absolute;
  top: 16px;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  z-index: -1;
}

.status-step {
  align-items: center;
  color: var(--clr-text-default);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
  position: relative;
}

.step-text {
  color: var(--clr-text-default);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.status-progress {
  aspect-ratio: 1/1;
  background-color: #fff;
  border: 1px solid transparent;
  border-radius: 50%;
  content: "";
  display: inline-block;
  position: relative;
  width: 34px;
}
.status-progress::after {
  aspect-ratio: 1/1;
  background-color: #eee;
  border-radius: 50%;
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
}
.done .status-progress {
  background-color: var(--clr-brand-green);
  background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 511.985 511.985' style='enable-background:new 0 0 511.985 511.985' xml:space='preserve'%3E%3Cpath d='M500.088 83.681c-15.841-15.862-41.564-15.852-57.426 0L184.205 342.148 69.332 227.276c-15.862-15.862-41.574-15.862-57.436 0-15.862 15.862-15.862 41.574 0 57.436l143.585 143.585c7.926 7.926 18.319 11.899 28.713 11.899 10.394 0 20.797-3.963 28.723-11.899l287.171-287.181c15.862-15.851 15.862-41.574 0-57.435z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  border-color: var(--clr-brand-green);
}
.done .status-progress::after {
  background-color: transparent;
}
.active .status-progress {
  border-color: var(--clr-brand-green);
}
.active .status-progress::after {
  background-color: var(--clr-brand-green);
}

.status-reopen {
  border-top: 1px solid var(--clr-border);
  color: var(--clr-text-light);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 30px;
  padding-top: 8px;
  text-align: center;
}
.status-reopen a {
  color: var(--clr-brand-primary);
  font-weight: 600;
  text-decoration: underline;
}

.similar-complaints {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.similar-complaint {
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 8px 12px;
}
.similar-complaint:hover {
  background-color: #f4f4f4;
}
.similar-complaint .title {
  color: var(--clr-text-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}

.accordions {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.accordion-header {
  background-color: #f1f4f9;
  border-radius: 12px;
  cursor: pointer;
  padding: 30px 40px;
  position: relative;
  transition: all 0.25s ease-in-out;
}
.open .accordion-header {
  background-color: transparent;
  padding: 40px 50px;
  transition: all 0.25s ease-in-out;
}
.open .accordion-header::after {
  transform: translateY(-50%) rotate(180deg);
}
.accordion-header::after {
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23666' xmlns='http://www.w3.org/2000/svg' width='451.847' height='451.847' style='enable-background:new 0 0 451.847 451.847' xml:space='preserve'%3E%3Cpath d='M225.923 354.706c-8.098 0-16.195-3.092-22.369-9.263L9.27 151.157c-12.359-12.359-12.359-32.397 0-44.751 12.354-12.354 32.388-12.354 44.748 0l171.905 171.915 171.906-171.909c12.359-12.354 32.391-12.354 44.744 0 12.365 12.354 12.365 32.392 0 44.751L248.292 345.449c-6.177 6.172-14.274 9.257-22.369 9.257z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  content: "";
  display: inline-block;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}
.accordion-title {
  color: var(--clr-text-default);
  font-size: 20px;
  font-weight: 500;
  transition: all 0.25s ease-in-out;
}
.open .accordion-title {
  color: var(--clr-text-dark);
  font-size: 30px;
  transition: all 0.25s ease-in-out;
}
.accordion-hidden {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease-in-out;
}
.accordion-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  padding: 0 50px 24px;
}

.burger-menu {
  --size: 32px;
  --color: var(--clr-text-default, #ccc);
  align-items: center;
  cursor: pointer;
  display: flex;
  height: var(--size);
  justify-content: center;
  width: var(--size);
  z-index: 101;
}
@media only screen and (min-width: 1024px) {
  .burger-menu {
    display: none;
  }
  .right-menu .top-nav-countires{
    display: none;
  }
}
.burger-menu:focus {
  outline: none;
}
.burger-menu.open-menu span {
  background-color: transparent;
}
.burger-menu.open-menu span::after {
  top: 0;
  transform: rotate(45deg);
}
.burger-menu.open-menu span::before {
  top: 0;
  transform: rotate(-45deg);
}
.burger-menu span {
  background-color: var(--color);
  display: inline-block;
  height: 2px;
  position: relative;
  transition: all 0.25s ease-in-out;
  width: 24px;
}
.burger-menu span::before, .burger-menu span::after {
  background-color: var(--color);
  content: "";
  display: inline-block;
  height: 100%;
  left: 0;
  position: absolute;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.burger-menu span::before {
  top: -8px;
}
.burger-menu span::after {
  top: 8px;
}

.mobile--menu {
  background-color: #fff;
  left: 0;
  min-height: 100vh;
  padding: 100px 0;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  transition: transform 0.25s ease-in-out;
  width: 100%;
  z-index: 99;
}
.mobile--menu ul {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.mobile--menu ul li {
  width: 100%;
}
.mobile--menu ul a {
  align-items: center;
  border-left: 4px solid transparent;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  padding: 6px 16px;
  transition: border-color 0.25s ease-in-out;
}
.mobile--menu ul a.active {
  border-left-color: var(--clr-brand-primary);
  transition: border-color 0.25s ease-in-out;
}
.mobile--menu ul a:hover {
  border-left-color: #aaa;
  transition: border-color 0.25s ease-in-out;
}

.active-mobile-menu {
  overflow: hidden;
}
.active-mobile-menu .mobile--menu {
  transform: translateX(0);
  transition: transform 0.25s ease-in-out;
}

.brand {
  --clr-border: #e9ecef;
  background-color: #f9f9f9;
}
.brand-title {
  align-items: center;
  color: var(--clr-text-dark);
  display: flex;
  font-size: 20px;
  font-weight: 500;
  gap: 12px;
  margin-bottom: 16px;
}
.brand-details {
  flex-grow: 1;
}
@media only screen and (min-width: 1024px) {
  .brand-details {
    flex-grow: 0;
  }
}
.brand-response {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
@media only screen and (max-width: 767px) {
  .brand-response {
    justify-content: space-between;
  }
}
.brand-meta {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}
.brand-meta i {
  --size: 16px;
}
.brand-meta-item {
  align-items: center;
  color: var(--clr-text-default);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 12px;
}
.brand-meta-itema:hover {
  color: var(--clr-text-dark);
}
.brand-stats {
  align-items: center;
  display: flex;
  flex-grow: 1;
  gap: 24px;
  justify-content: space-between;
}
@media only screen and (min-width: 1024px) {
  .brand-stats {
    flex-grow: 0;
    gap: 60px;
  }
}
.brand-stat {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.brand-stat .label {
  color: #999;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
}
.brand-stat .count {
  color: var(--clr-text-dark);
  font-size: 36px;
  font-weight: 700;
}

.about-desc:not(.full) {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 4;
  line-height: 24px;
  max-height: 96px;
}
.about-readmore {
  color: var(--clr-anchor);
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
  margin-top: 16px;
}
.about-readmore.hide {
  display: none;
}
.about-readmore:hover {
  text-decoration: underline;
}
.about h3 {
  color: var(--clr-text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 6px;
}
.about h4 {
  color: var(--clr-text-light);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 12px;
}
.about p {
  color: var(--clr-text-light);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}
.about .separator {
  background-color: var(--clr-border);
  display: block;
  height: 2px;
  margin: 24px 0;
  width: 100%;
}
.about .brand-action.button {
  background-color: #00d7b3;
  color: #fff;
  justify-content: center;
  width: 100%;
}
.about-contact {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-top: 16px;
}
.about-categories {
  align-items: center;
  display: flex;
  margin-bottom: 24px;
}
.about-categories a {
  color: #2c96ff;
  display: block;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}
.about-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.about-list-item {
  align-items: center;
  color: var(--clr-text-default);
  display: flex;
  font-size: 15px;
  font-weight: 400;
  gap: 16px;
  line-height: 1.4;
}
.about-list-item i {
  --size: 42px;
  background-color: #25b7d3;
  border-radius: 8px;
  color: #fff;
}
.about-list-item i svg {
  transform: scale(0.55);
}
.about-list-item strong {
  color: var(--clr-text-dark);
  font-weight: 500;
}

.brand-logo {
  align-items: center;
  aspect-ratio: 1/1;
  border: 1px solid var(--clr-border);
  display: flex;
  justify-content: center;
  max-width: 172px;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  .brand-logo {
    margin: auto;
  }
}
.brand-logo img {
  width: 70%;
}

.brand-header {
  align-items: flex-start;
  background-color: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 16px 16px 0;
}
@media only screen and (min-width: 768px) {
  .brand-header {
    padding: 32px 32px 0;
  }
}
.brand-header-wrap {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.brand-header-content {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.brand-tabs {
  align-items: flex-end;
  display: flex;
  flex-wrap: wrap-reverse;
  gap: 32px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .brand-tabs {
    align-items: end;
  }
}

.brand-tab {
  border-bottom: 2px solid transparent;
  color: var(--clr-text-default);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  padding-bottom: 16px;
}
.brand-tab:hover {
  color: var(--clr-text-dark);
}
.brand-tab.is-active {
  border-color: var(--clr-text-dark);
  color: var(--clr-text-dark);
}

.brand-actions {
  align-items: center;
  display: flex;
  gap: 32px;
  margin-left: auto;
}
@media only screen and (min-width: 768px) {
  .brand-actions {
    margin-bottom: 10px;
  }
}
@media only screen and (min-width: 1024px) {
  .brand-actions {
    margin-bottom: 20px;
  }
}

.brand-action {
  align-items: center;
  color: var(--clr-text-dark);
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
}
.brand-action.button {
  background-color: var(--clr-brand-primary);
  border-radius: 8px;
  color: #fff;
  min-height: 48px;
  padding: 0 16px;
}

.brand-search {
  align-items: center;
  display: flex;
  position: relative;
  width: 100%;
}
.brand-search input {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 0 0 2px #e9ecef;
  min-height: 42px;
  padding: 0 16px 0 52px;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.brand-search input:focus {
  box-shadow: 0 0 0 2px var(--clr-brand-primary);
  transition: all 0.25s ease-in-out;
}
.brand-search input::-moz-placeholder {
  color: #999;
}
.brand-search input::placeholder {
  color: #999;
}
.brand-search-icon {
  --size: 20px;
  left: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.brand-search-wrap {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
}
@media only screen and (min-width: 768px) {
  .brand-search-wrap {
    gap: 32px;
  }
}
.brand-search-actions {
  align-items: center;
  display: flex;
  gap: 4px;
}
@media only screen and (min-width: 768px) {
  .brand-search-actions {
    gap: 12px;
  }
}
.brand-search-action {
  background-color: transparent;
  border-radius: 50%;
  color: #666;
  transition: all 0.25s ease-in-out;
}
.brand-search-action i {
  --size: 42px;
}
.brand-search-action svg {
  transform: scale(0.4);
}
.brand-search-action:hover {
  background-color: #f9f9f9;
  color: #333;
  transition: all 0.25s ease-in-out;
}
.filter-active .brand-search-action.filter-btn {
  background-color: #f9f9f9;
  color: #333;
  transition: all 0.25s ease-in-out;
}
.brand-search-filters {
  align-items: center;
  display: none;
  gap: 24px;
  margin-bottom: 32px;
}
.filter-active .brand-search-filters {
  display: flex;
}
.brand-search-filter {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 12px;
  line-height: 1;
}

.brand-reviews {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 12px;
}
.brand-reviews-dropdown {
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  position: relative;
  width: 24px;
}
.brand-reviews-dropdown .icon-dropdown {
  --size: 24px;
  cursor: pointer;
}
.brand-reviews-dropdown .icon-dropdown svg {
  width: 60%;
}
.brand-reviews-dropdown:hover .content {
  display: block;
}
.brand-reviews-dropdown .content {
  background-color: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  display: none;
  left: 50%;
  padding: 24px;
  position: absolute;
  top: calc(100% + 12px);
  transform: translateX(-50%);
  width: 360px;
  z-index: 10;
}
.brand-reviews-dropdown .content::before {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-left: 1px solid var(--clr-border);
  border-top: 1px solid var(--clr-border);
  content: "";
  left: 50%;
  position: absolute;
  top: -12px;
  transform: translateX(-50%) rotate(45deg);
  width: 20px;
}
.brand-reviews-dropdown .content::after {
  background-color: transparent;
  content: "";
  height: 14px;
  left: 50%;
  position: absolute;
  top: -14px;
  transform: translateX(-50%);
  width: 100%;
}
.brand-reviews-dropdown .content .cta {
  color: var(--clr-text-light);
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-top: 24px;
  text-align: center;
}
.brand-reviews-dropdown .content .cta:hover {
  color: var(--clr-text-dark);
  text-decoration: underline;
}
.brand-reviews-count {
  color: var(--clr-text-default);
  font-size: 16px;
  font-weight: 500;
}

.brands-list {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}

.brand-card {
  align-items: center;
  background-color: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 6px;
  display: flex;
  flex-wrap: wrap;
  gap: 32px 16px;
  padding: 16px;
}
@media only screen and (min-width: 768px) {
  .brand-card {
    border-radius: 12px;
    padding: 20px 24px;
  }
}
.brand-card-thumb {
  aspect-ratio: 1/1;
  line-height: 0;
  width: 56px;
}
.brand-card-details {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.brand-card-title {
  color: var(--clr-text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
}
.brand-card-status {
  align-items: center;
  display: flex;
  gap: 12px;
}
.brand-card-status .icon {
  --size: 42px;
  background-color: #f4f4f4;
  border-radius: 8px;
  padding: 8px;
}
.brand-card-status .details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.brand-card-status .title {
  color: var(--clr-text-light);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
}
.brand-card-status .stats {
  color: var(--clr-text-dark);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.brand-card-status-list {
  align-items: center;
  display: flex;
  gap: 36px;
}
@media only screen and (min-width: 768px) {
  .brand-card-status-list {
    margin-left: auto;
  }
}
.brand-card-rating {
  align-items: center;
  display: flex;
  gap: 8px;
}
.brand-card-rating .ratings {
  --size: 16px;
}
@media only screen and (min-width: 768px) {
  .brand-card-rating .ratings {
    --size: 20px;
  }
}

.brand-categories {
  margin-top: 12px;
}

.brand-category-handle {
  align-items: center;
  border-radius: 4px;
  cursor: pointer;
  display: flex;
  gap: 8px;
  margin: 0 -12px;
  padding: 10px 12px;
  position: relative;
}
.brand-category-handle::after {
  aspect-ratio: 1/1;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23999' xmlns='http://www.w3.org/2000/svg' width='512' height='512' viewBox='0 0 32 32' style='enable-background:new 0 0 512 512' xml:space='preserve'%3E%3Cpath fill-rule='evenodd' d='M.962 8.758a2.04 2.04 0 0 1 2.883 0l12.158 12.156L28.162 8.756a2.04 2.04 0 0 1 2.883 2.886l-13.6 13.6a2.04 2.04 0 0 1-2.883 0l-13.6-13.6a2.04 2.04 0 0 1 0-2.886z' clip-rule='evenodd' data-original='%23000000'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: inline-block;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%) rotate(0);
  width: 12px;
}
.active .brand-category-handle::after {
  transform: translateY(-50%) rotate(180deg);
}
.brand-category-handle .count {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  margin-left: auto;
}
.brand-category-handle:hover {
  background-color: #f4f4f4;
}

.brand-sub-categories {
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  padding: 0 12px 0 28px;
  transition: max-height 0.25s ease-in-out;
}
.active .brand-sub-categories {
  max-height: 200px;
  transition: max-height 0.25s ease-in-out;
}
.brand-sub-categories li:last-of-type {
  margin-bottom: 12px;
}
.brand-sub-categories a {
  color: var(--clr-text-light);
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  transition: all 0.25s ease-in-out;
}
.brand-sub-categories a:hover {
  color: var(--clr-text-dark);
  transition: all 0.25s ease-in-out;
}

.brand-tags {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.brand-tags-title {
  color: var(--clr-text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 16px;
}

.brand-tag {
  align-items: center;
  border: 2px solid var(--clr-text-default);
  border-radius: 6px;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  line-height: 1;
  min-height: 42px;
  padding: 0 16px;
  transition: all 0.25s ease-in-out;
}
.brand-tag.is-active {
  background-color: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: #fff;
}
.brand-tag:hover {
  background-color: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: #fff;
  transition: all 0.25s ease-in-out;
}

.brand-about-title {
  color: var(--clr-text-dark);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
  margin-bottom: 14px;
}
.brand-about-desc {
  color: var(--clr-text-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 24px;
}
.brand-about-list {
  display: grid;
  gap: 24px 32px;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 32px;
}
.brand-about-list-item {
  align-items: center;
  display: flex;
  gap: 20px;
}

.page-auth {
  background-color: #fafafa;
}
.page-auth .mini {
  display: none;
}
.page-auth .logo-bar {
  background: #fae6e6;
  position: fixed;
  width: 100%;
}
@media screen and (max-width: 600px) {
  .page-auth .mini {
    display: block;
  }
}

.auth {
  --input-height: 40px;
  --input-radius: 4px;
  align-items: center;
  display: flex;
  gap: 64px;
  justify-content: space-between;
  min-height: 100vh;
  padding: 32px 82px;
  width: 100%;
}
.auth-content {
  align-items: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
.auth-details {
  align-items: flex-start;
  color: var(--clr-text-default);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 720px;
  width: 100%;
}
.auth-details .logo {
  margin-bottom: 32px;
}
.auth-details h3 {
  color: var(--clr-text-dark);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}
.auth-details p {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  margin-top: 10px;
}
.auth-wrap {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-top: 20px;
  max-width: 460px;
  padding: 24px 30px 32px;
  width: 100%;
}
.auth-wrap p {
  display: block;
  font-size: 15px;
  font-weight: 400;
  text-align: center;
}
.auth-wrap p a {
  color: var(--clr-brand-primary);
  font-weight: 500;
}
.auth-wrap p a:hover {
  text-decoration: underline;
}
.auth-title {
  color: var(--clr-text-dark);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 18px;
  margin-left: -4px;
}
.auth-title .mini-logo {
  display: none;
}
.auth .mini {
  display: none;
}
.auth-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
  position: relative;
}
.auth-group label {
  color: var(--clr-text-dark);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
}
.auth-group input {
  background-color: #f9f9f9;
  border-radius: var(--input-radius);
  box-shadow: 0 0 0 1px #ddd;
  color: var(--clr-text-default);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4;
  min-height: var(--input-height, 40px);
  padding: 0 14px;
  transition: all 0.25s ease-in-out;
}
.auth-group input:focus {
  box-shadow: 0 0 0 2px var(--clr-brand-primary);
  transition: all 0.25s ease-in-out;
}
.auth-check {
  align-items: center;
  display: flex;
  gap: 12px;
}
.auth-check label {
  cursor: pointer;
  font-size: 14px;
}
.auth-check a {
  color: var(--clr-brand-primary);
}
.auth-check a:hover {
  text-decoration: underline;
}
.auth-check .custom-input {
  --clr-input-border: #ddd;
}
.auth-btns {
  align-items: center;
  display: flex;
  gap: 6px;
}
.auth-btn {
  align-items: center;
  background-color: var(--clr-brand-primary);
  border-radius: var(--input-radius);
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 500;
  justify-content: center;
  margin: 24px 0 16px;
  min-height: 46px;
  padding: 0 16px;
  text-align: center;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.auth-btn:hover {
  background-color: hsl(3, 89%, 60%);
  transition: all 0.25s ease-in-out;
}
.auth-socials {
  align-items: center;
  display: flex;
  gap: 24px;
  margin: 64px 0 0;
  width: 100%;
}
.auth-social {
  align-items: center;
  background-color: #fff;
  border: 2px solid #ddd;
  border-radius: var(--input-radius);
  color: var(--clr-text-default);
  display: flex;
  font-size: 15px;
  font-weight: 500;
  gap: 16px;
  justify-content: center;
  max-width: -moz-max-content;
  max-width: max-content;
  min-height: 48px;
  padding: 0 32px 0 24px;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.auth-social:hover {
  background-color: var(--clr-brand-primary);
  border-color: var(--clr-brand-primary);
  color: #fff;
  transition: all 0.25s ease-in-out;
}
@media screen and (max-width: 600px) {
  .auth {
    padding: 0 5px 0 5px;
    min-height: 0vh;
  }
  .auth .mini {
    display: block;
  }
  .auth .auth-content:nth-child(1) {
    display: none;
  }
  .auth .auth-content:nth-child(2) {
    margin-top: 40px;
  }
  .auth .auth-content:nth-child(2) .auth-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .auth .auth-content:nth-child(2) .auth-title .mini-logo {
    display: block;
  }
  .auth .auth-socials {
    display: flex;
    flex-direction: column;
  }
  .auth .auth-socials .auth-social {
    max-width: 100%;
  }
}

.password-progress {
  background-color: #f4f4f4;
  border-radius: 4px;
  height: 6px;
  margin-top: 2px;
  position: relative;
  width: 100%;
}
.password-progress .progress {
  background-color: var(--clr-brand-primary);
  border-radius: inherit;
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 10%;
}

.password-visibility {
  align-items: center;
  aspect-ratio: 1/1;
  cursor: pointer;
  display: flex;
  justify-content: center;
  max-width: 32px;
  position: absolute;
  right: 10px;
  top: 31px;
  width: 100%;
}

#login-page {
  --input-height: 40px;
  --input-radius: 4px;
}
#login-page .popup--wrap {
  max-width: 400px;
  min-width: 400px;
}
#login-page .auth-socials {
  margin-top: 24px;
}
#login-page p {
  display: block;
  font-size: 15px;
  font-weight: 400;
  margin-top: 16px;
  text-align: center;
}
#login-page p a {
  color: var(--clr-brand-primary);
}

.section--faqs {
  background-color: #fff;
  padding: 100px 0;
}

.faqs--wrap {
  display: flex;
  gap: 42px;
}
.faqs--sidebar {
  max-width: 320px;
  width: 100%;
}

[data-tab-content] {
  display: none;
}
[data-tab-content].active {
  display: block;
}

.faqs--tabs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faqs--tab {
  color: var(--clr-text-light);
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
  padding: 6px 0 6px 20px;
  position: relative;
}
.faqs--tab.active {
  color: var(--clr-text-dark);
}
.faqs--tab.active::before {
  aspect-ratio: 1/1;
  background-color: #ccc;
  border-radius: 50%;
  content: "";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
}

.ss-main {
  position: relative;
  display: inline-block;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #666666;
  width: 100%;
}
.ss-main .ss-single-selected {
  display: flex;
  cursor: pointer;
  width: 100%;
  height: 30px;
  padding: 6px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background-color: #ffffff;
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.2s;
}
.ss-main .ss-single-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed;
}
.ss-main .ss-single-selected.ss-open-above {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.ss-main .ss-single-selected.ss-open-below {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ss-main .ss-single-selected .placeholder {
  display: flex;
  flex: 1 1 100%;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  width: calc(100% - 30px);
  line-height: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}
.ss-main .ss-single-selected .placeholder * {
  display: flex;
  align-items: center;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  width: auto;
}
.ss-main .ss-single-selected .placeholder .ss-disabled {
  color: #dedede;
}
.ss-main .ss-single-selected .ss-deselect {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 6px 0 6px;
  font-weight: bold;
}
.ss-main .ss-single-selected .ss-deselect.ss-hide {
  display: none;
}
.ss-main .ss-single-selected .ss-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 1 auto;
  margin: 0 6px 0 6px;
}
.ss-main .ss-single-selected .ss-arrow span {
  border: solid #666666;
  border-width: 0 2px 2px 0;
  display: inline-block;
  padding: 3px;
  transition: transform 0.2s, margin 0.2s;
}
.ss-main .ss-single-selected .ss-arrow span.arrow-up {
  transform: rotate(-135deg);
  margin: 3px 0 0 0;
}
.ss-main .ss-single-selected .ss-arrow span.arrow-down {
  transform: rotate(45deg);
  margin: -3px 0 0 0;
}
.ss-main .ss-multi-selected {
  display: flex;
  flex-direction: row;
  cursor: pointer;
  min-height: 30px;
  width: 100%;
  padding: 0 0 0 3px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background-color: #ffffff;
  outline: 0;
  box-sizing: border-box;
  transition: background-color 0.2s;
}
.ss-main .ss-multi-selected.ss-disabled {
  background-color: #dcdee2;
  cursor: not-allowed;
}
.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-disabled {
  color: #666666;
}
.ss-main .ss-multi-selected.ss-disabled .ss-values .ss-value .ss-value-delete {
  cursor: not-allowed;
}
.ss-main .ss-multi-selected.ss-open-above {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
}
.ss-main .ss-multi-selected.ss-open-below {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}
.ss-main .ss-multi-selected .ss-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  flex: 1 1 100%;
  width: calc(100% - 30px);
}
.ss-main .ss-multi-selected .ss-values .ss-disabled {
  display: flex;
  padding: 4px 5px;
  margin: 2px 0px;
  line-height: 1em;
  align-items: center;
  width: 100%;
  color: #dedede;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@keyframes scaleIn {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0);
    opacity: 0;
  }
}
.ss-main .ss-multi-selected .ss-values .ss-value {
  display: flex;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  align-items: center;
  font-size: 12px;
  padding: 3px 5px;
  margin: 3px 5px 3px 0px;
  color: #ffffff;
  background-color: #5897fb;
  border-radius: 4px;
  animation-name: scaleIn;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
  animation-fill-mode: both;
}
.ss-main .ss-multi-selected .ss-values .ss-value.ss-out {
  animation-name: scaleOut;
  animation-duration: 0.2s;
  animation-timing-function: ease-out;
}
.ss-main .ss-multi-selected .ss-values .ss-value .ss-value-delete {
  margin: 0 0 0 5px;
  cursor: pointer;
}
.ss-main .ss-multi-selected .ss-add {
  display: flex;
  flex: 0 1 3px;
  margin: 9px 12px 0 5px;
}
.ss-main .ss-multi-selected .ss-add .ss-plus {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #666666;
  position: relative;
  height: 10px;
  width: 2px;
  transition: transform 0.2s;
}
.ss-main .ss-multi-selected .ss-add .ss-plus:after {
  background: #666666;
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  left: -4px;
  top: 4px;
}
.ss-main .ss-multi-selected .ss-add .ss-plus.ss-cross {
  transform: rotate(45deg);
}

.ss-content {
  position: absolute;
  width: 100%;
  margin: -1px 0 0 0;
  box-sizing: border-box;
  border: solid 1px #dcdee2;
  z-index: 1010;
  background-color: #ffffff;
  transform-origin: center top;
  transition: transform 0.2s, opacity 0.2s;
  opacity: 0;
  transform: scaleY(0);
}
.ss-content.ss-open {
  display: block;
  opacity: 1;
  transform: scaleY(1);
}
.ss-content .ss-search {
  display: flex;
  flex-direction: row;
  padding: 8px 8px 6px 8px;
}
.ss-content .ss-search.ss-hide {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.ss-content .ss-search.ss-hide input {
  height: 0px;
  opacity: 0;
  padding: 0px 0px 0px 0px;
  margin: 0px 0px 0px 0px;
}
.ss-content .ss-search input {
  display: inline-flex;
  font-size: inherit;
  line-height: inherit;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0px;
  height: 30px;
  padding: 6px 8px;
  margin: 0;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  background-color: #ffffff;
  outline: 0;
  text-align: left;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -webkit-appearance: textfield;
}
.ss-content .ss-search input::-moz-placeholder {
  color: #8a8a8a;
  vertical-align: middle;
}
.ss-content .ss-search input::placeholder {
  color: #8a8a8a;
  vertical-align: middle;
}
.ss-content .ss-search input:focus {
  box-shadow: 0 0 5px #5897fb;
}
.ss-content .ss-search .ss-addable {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 22px;
  font-weight: bold;
  flex: 0 0 30px;
  height: 30px;
  margin: 0 0 0 8px;
  border: 1px solid #dcdee2;
  border-radius: 4px;
  box-sizing: border-box;
}
.ss-content .ss-addable {
  padding-top: 0px;
}
.ss-content .ss-list {
  max-height: 200px;
  overflow-x: hidden;
  overflow-y: auto;
  text-align: left;
}
.ss-content .ss-list .ss-optgroup .ss-optgroup-label {
  padding: 6px 10px 6px 10px;
  font-weight: bold;
}
.ss-content .ss-list .ss-optgroup .ss-option {
  padding: 6px 6px 6px 25px;
}
.ss-content .ss-list .ss-optgroup-label-selectable {
  cursor: pointer;
}
.ss-content .ss-list .ss-optgroup-label-selectable:hover {
  color: #ffffff;
  background-color: #5897fb;
}
.ss-content .ss-list .ss-option {
  padding: 6px 10px 6px 10px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.ss-content .ss-list .ss-option * {
  display: inline-block;
}
.ss-content .ss-list .ss-option:hover, .ss-content .ss-list .ss-option.ss-highlighted {
  color: #ffffff;
  background-color: #5897fb;
}
.ss-content .ss-list .ss-option.ss-disabled {
  cursor: not-allowed;
  color: #dedede;
  background-color: #ffffff;
}
.ss-content .ss-list .ss-option:not(.ss-disabled).ss-option-selected {
  color: #666666;
  background-color: rgba(88, 151, 251, 0.1);
}
.ss-content .ss-list .ss-option.ss-hide {
  display: none;
}
.ss-content .ss-list .ss-option .ss-search-highlight {
  background-color: #fffb8c;
}

.ss-main.widget-filter-select {
  color: var(--clr-text-default);
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: 130px;
}
.ss-main.widget-filter-select .ss-single-selected {
  background-color: #fff;
  border: 1px solid rgb(239, 241, 250);
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgb(239, 241, 250);
  font-size: 14px;
  gap: 6px;
  height: 32px;
  padding: 0 12px 0 20px;
  transition: all 0.25s ease-in-out;
}
.ss-main.widget-filter-select .ss-single-selected .ss-disabled {
  color: var(--clr-text-default) !important;
}
.ss-main.widget-filter-select .ss-single-selected:hover {
  background-color: rgb(239, 241, 250);
  border-color: rgb(239, 241, 250);
  box-shadow: 0 0 0 1px rgb(239, 241, 250);
  transition: all 0.25s ease-in-out;
}
.ss-main.widget-filter-select .ss-single-selected.ss-open-above, .ss-main.widget-filter-select .ss-single-selected.ss-open-below {
  background-color: rgb(239, 241, 250);
  border-color: rgb(239, 241, 250);
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgb(239, 241, 250);
  transition: all 0.25s ease-in-out;
}
.ss-main .ss-multi-selected {
  min-height: 46px;
}
.ss-main .ss-multi-selected .ss-values .ss-value {
  gap: 6px;
  padding: 4px 10px 4px 14px;
}
.widget-filter-select .ss-content {
  background-color: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 8px;
  color: var(--clr-text-default);
  margin: 10px 0;
  padding: 8px 0;
}

.widget-filter-select .ss-content .ss-search input {
  background-color: #fff;
  border-color: #e9ecef;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  padding: 0 8px;
}
.widget-filter-select .ss-content .ss-search input:focus {
  box-shadow: 0 0 0 1px #e9ecef;
}
.widget-filter-select .ss-content .ss-list::-webkit-scrollbar {
  width: 4px;
}
.widget-filter-select .ss-content .ss-list::-webkit-scrollbar-thumb {
  background-color: #e9ecef;
  outline: none;
}
.widget-filter-select .ss-content .ss-list .ss-option {
  font-size: 14px;
}
.widget-filter-select .ss-content .ss-list .ss-option:hover, .widget-filter-select .ss-content .ss-list .ss-option.ss-highlighted {
  background-color: #e9ecef;
  color: var(--clr-text-dark);
}
.widget-filter-select .ss-content .ss-list .ss-option.ss-disabled {
  background-color: transparent;
  color: #e9ecef;
  cursor: not-allowed;
}

.widget {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
}
.widget-header {
  border-bottom: 1px solid #e9ecef;
  padding: 30px;
}
.widget-header-wrap {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}
.widget-header-cta {
  align-items: center;
  display: flex;
  gap: 20px;
  justify-content: flex-end;
  margin-top: 24px;
}
.foldable .widget-header {
  border-bottom: 0;
  cursor: pointer;
  position: relative;
}
.foldable .widget-header::after {
  aspect-ratio: 1/1;
  border-bottom: 3px solid var(--clr-text-default);
  border-bottom-right-radius: 2px;
  border-right: 3px solid var(--clr-text-default);
  content: "";
  display: block;
  position: absolute;
  right: 20px;
  top: 46%;
  transform: translateY(-50%) rotate(45deg);
  width: 6px;
}
.foldable.open .widget-header {
  border-bottom: 1px solid #e9ecef;
}
.foldable.open .widget-header::after {
  transform: translateY(-10%) rotate(225deg);
}
.widget-header h5,
.widget-header h4,
.widget-header h3 {
  color: #392c7d;
  font-weight: 500;
  line-height: 1.2;
}
.widget-header h3 {
  font-size: 24px;
}
.widget-header h4 {
  font-size: 18px;
}
.widget-header h4 {
  font-size: 16px;
}
.widget-header p {
  margin-top: 12px;
}
.widget-desc {
  margin-top: 12px;
}
.widget-body {
  padding: 12px;
}
@media only screen and (min-width: 768px) {
  .widget-body {
    padding: 16px;
  }
}
.widget-body h3 {
  font-weight: 500;
}
.foldable .widget-body {
  display: none;
}
.foldable.open .widget-body {
  display: block;
}
.widget-controls {
  align-items: center;
  display: flex;
  gap: 16px;
  padding: 24px;
}
.widget-controls.justify-end {
  justify-content: flex-end;
}
.widget-btn {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #2196f3;
  border-radius: 12px;
  color: #fff;
  display: flex;
  justify-content: center;
  width: 36px;
}
.widget-btn i {
  --size: 24px;
}

.complaint-actions {
  max-width: -moz-max-content;
  max-width: max-content;
  position: relative;
  width: 100%;
}
.complaint-actions .separator {
  background-color: #e9ecef;
  display: block;
  height: 1px;
  margin: 6px 0;
  width: 100%;
}
.complaint-actions i {
  --size: 16px;
}
.complaint-actions-btn {
  align-items: center;
  border: 1px solid #e9ecef;
  border-radius: 24px;
  color: var(--clr-text-default);
  display: flex;
  gap: 6px;
  min-height: 32px;
  padding: 0 16px 0 12px;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.complaint-actions-btn:hover, .open .complaint-actions-btn {
  background-color: var(--clr-brand-primary);
  color: #fff;
  transition: all 0.25s ease-in-out;
}
.complaint-actions-list {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  display: none;
  padding: 8px 0;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 230px;
  z-index: 10;
}
.open .complaint-actions-list {
  display: block;
}
.complaint-actions-list::before {
  aspect-ratio: 1/1;
  background-color: #fff;
  border-left: 1px solid #e9ecef;
  border-top: 1px solid #e9ecef;
  content: "";
  display: block;
  position: absolute;
  right: 36px;
  top: -8px;
  transform: rotate(45deg);
  width: 14px;
}
.complaint-actions-list li {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  line-height: 1;
  min-height: 32px;
  padding: 0 16px 0 12px;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.complaint-actions-list li:hover {
  background-color: #f4f4f4;
  transition: all 0.25s ease-in-out;
}

.complaint {
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  padding: 16px;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .complaint {
    padding: 30px;
  }
}
.complaint .ratings {
  margin-bottom: 16px;
  margin-top: -8px;
}
.complaint .readmore {
  color: var(--clr-text-default);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  margin: 16px 0 0;
  transition: all 0.25s ease-in-out;
}
.complaint .readmore:hover {
  color: var(--clr-text-dark);
  text-decoration: underline;
  transition: all 0.25s ease-in-out;
}
.complaint-tag {
  align-items: center;
  border: 1px solid var(--clr-brand-primary);
  border-radius: 24px;
  color: var(--clr-brand-primary);
  display: flex;
  font-size: 12px;
  font-weight: 400;
  gap: 8px;
  line-height: 1;
  min-height: 32px;
  padding: 0 12px;
  white-space: nowrap;
}
.complaint-title {
  color: var(--clr-text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.38;
  margin-bottom: 12px;
}
.complaint-meta {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.complaint-meta .meta-item {
  align-items: center;
  color: #666;
  display: flex;
  font-size: 12px;
  gap: 10px;
  white-space: nowrap;
}
.complaint-meta .meta-item i {
  --size: 14px;
}
.complaint-desc {
  color: var(--clr-text-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  text-overflow: ellipsis;
}
.complaint-desc.short {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  max-height: 90px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.complaint-footer {
  padding-top: 24px;
}
.complaint-footer-actions {
  align-items: center;
  border-top: 1px solid var(--clr-border);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-top: 8px;
  padding-top: 16px;
}
.complaint-footer-action {
  align-items: center;
  border-radius: 6px;
  color: var(--clr-text-default);
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
  min-height: 46px;
  padding: 0 16px;
  transition: all 0.25s ease-in-out;
}
.complaint-footer-action:hover {
  background-color: rgb(239, 241, 250);
  color: var(--clr-text-dark);
  transition: all 0.25s ease-in-out;
}
.complaint-action {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #fbc3c0;
  border-radius: 6px;
  color: #fff;
  display: flex;
  justify-content: center;
  max-width: 40px;
  position: relative;
  width: 100%;
}
.complaint-action::after {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: #fbc3c0;
  border: 1px solid #fff;
  border-radius: 50%;
  bottom: -4px;
  content: attr(data-complaint-num);
  display: flex;
  font-size: 8px;
  font-weight: 500;
  justify-content: center;
  position: absolute;
  right: -6px;
  width: 14px;
}
.complaint-solution {
  background-color: rgb(249, 250, 254);
  border: 2px solid #e9ecef;
  border-radius: 8px;
  margin: 32px 0 16px;
  padding: 12px 16px;
}
.complaint-solution .label {
  color: var(--clr-text-dark);
  display: block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
}
.complaint-solution .data {
  color: var(--clr-text-default);
  display: block;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.7;
}
.complaint-reply.hide {
  display: none;
}
.complaint-reply textarea {
  background-color: rgb(249, 250, 254);
  border: 2px solid #e9ecef;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  min-height: 150px;
  padding: 12px 16px;
  resize: vertical;
  transition: border-color 0.25s ease-in-out;
  width: 100%;
}
.complaint-reply textarea:focus {
  border-color: var(--clr-brand-primary);
  transition: border-color 0.25s ease-in-out;
}
.complaint-reply-actions {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.complaint-msg {
  position: relative;
}
.complaint-msg::after {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: var(--clr-brand-primary);
  border-radius: 50%;
  color: #fff;
  content: attr(data-msg);
  display: flex;
  font-size: 8px;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: -8px;
  top: -4px;
  width: 15px;
}
.complaint-msg i {
  --size: 32px;
}
.complaint-attachments {
  align-items: center;
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.complaint-attachment {
  align-items: center;
  aspect-ratio: 1/1.1;
  background-color: #fbc3c0;
  border-radius: 6px;
  display: flex;
  justify-content: center;
  max-width: 72px;
  padding: 10px 12px;
  width: 100%;
}
.complaint-attachment i {
  --size: 24px;
}

.complaints-listing {
  display: grid;
  gap: 24px;
  margin: 20px 0 0;
}
.complaints-listing.grid {
  grid-template-columns: repeat(2, minmax(470px, 1fr));
}
.complaints-listing.list {
  grid-template-columns: repeat(1, 1fr);
}

.complaint-wrap {
  align-items: flex-start;
  display: flex;
  gap: 24px;
}
.complaint-main {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 24px;
  min-height: 150vh;
}
.complaint-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 270px;
  position: sticky;
  top: 100px;
  width: 100%;
}
.complaint-header {
  align-items: flex-start;
  display: flex;
  justify-content: space-between;
}
.complaint-header-actions {
  align-items: center;
  display: flex;
  gap: 20px;
}

.complaint-history-init {
  align-items: center;
  color: var(--clr-text-default);
  display: flex;
  font-size: 15px;
  font-weight: 500;
  gap: 12px;
  line-height: 1.1;
  margin-top: 20px;
  position: relative;
}
.complaint-history-init:hover {
  color: var(--clr-text-dark);
}
.complaint-history-init::after {
  aspect-ratio: 1/1;
  border-bottom: 2px solid var(--clr-text-default);
  border-right: 2px solid var(--clr-text-default);
  content: "";
  display: inline-block;
  margin-bottom: 4px;
  transform: rotate(45deg);
  width: 6px;
}
.complaint-history.list {
  display: none;
  margin: 24px 0 0;
  max-height: 200px;
  overflow: auto;
}
.complaint-history.list::-webkit-scrollbar {
  width: 4px;
}
.complaint-history.list::-webkit-scrollbar-thumb {
  background-color: #f9f9f9;
  outline: none;
}
.open .complaint-history.list {
  display: block;
}
.complaint-history li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.list .complaint-history li {
  flex-direction: row;
  gap: 30px;
}
.complaint-history li:not(:last-of-type) {
  margin-bottom: 10px;
}
.complaint-history .title {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.complaint-history .desc {
  font-size: 12px;
  font-weight: 400;
  line-height: 1.6;
}
.list .complaint-history .desc {
  min-width: 124px;
}

.complaint-status li {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
}
.complaint-status li:not(:last-of-type) {
  margin-bottom: 12px;
}
.complaint-status .label {
  color: var(--clr-text-dark);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.complaint-response {
  background-color: rgba(3, 241, 201, 0.2);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  margin: 12px 0 42px;
  padding: 32px;
}
.complaint-response .title {
  color: var(--clr-text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.6;
}
.complaint-response .date {
  color: var(--clr-text-light);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 20px;
}
.complaint-response p {
  color: var(--clr-text-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.previous-complaints {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.previous-complaints li {
  align-items: center;
  display: flex;
  gap: 12px;
}
.previous-complaints li::before {
  aspect-ratio: 1/1;
  background-color: #ccc;
  border-radius: 50%;
  content: "";
  display: inline-block;
  max-width: 18px;
  width: 100%;
}
.previous-complaints a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  overflow: hidden;
  text-decoration: underline;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.previous-complaints a:hover {
  text-decoration: none;
}

.resolved-tag {
  align-items: center;
  background-color: var(--clr-brand-green, #00d7b3);
  border-radius: 24px;
  color: #fff;
  display: flex;
  font-size: 16px;
  font-weight: 400;
  gap: 8px;
  line-height: 1;
  min-height: 48px;
  padding: 0 24px;
}

.complaint-single .complaint-title {
  font-size: 24px;
  margin-bottom: 20px;
}
.complaint-single .complainant {
  margin-bottom: 20px;
}
.complaint-single .complaint-meta {
  margin-bottom: 24px;
}

.complainant {
  align-items: center;
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.complainant-thumb {
  aspect-ratio: 1/1;
  border-radius: 50%;
  max-width: 50px;
  width: 100%;
}
.complainant-thumb img {
  border-radius: 50%;
}
.complainant-details {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.complainant-title {
  align-items: center;
  color: var(--clr-text-dark);
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 10px;
  line-height: 1.2;
}
.complainant-meta {
  align-items: center;
  display: flex;
  gap: 12px;
}
.complainant-meta i {
  --size: 16px;
}

.header-search {
  display: none;
  max-width: 460px;
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 1400px) {
  .header-search {
    display: block;
  }
}
.header-search-input {
  background-color: #f4f4f4;
  border: 1px solid #e9ecef;
  border-radius: 10px;
  min-height: 46px;
  padding: 0 90px 0 16px;
  width: 100%;
}
.header-search-icon {
  --size: 20px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
}
.header-search-clear {
  align-items: center;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  opacity: 0;
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: all 0.25s ease-in-out;
  width: 24px;
}
.searching .header-search-clear {
  opacity: 0.5;
  transform: translateY(-50%) scale(1);
  transition: all 0.25s ease-in-out;
}
.header-search-clear:hover {
  opacity: 1;
  transition: all 0.25s ease-in-out;
}
.header-search-clear i {
  --size: 12px;
}

.review-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.review {
  background-color: #fff;
  border: 1px solid var(--clr-border);
  border-radius: 10px;
  padding: 32px 32px 24px;
}
.review .reviewer {
  margin-right: auto;
}
.review.reply {
  background-color: #f9f9f9;
  margin-left: 74px;
  margin-top: 32px;
}
.review-header {
  align-items: flex-start;
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
}
.review-actions {
  align-content: center;
  color: var(--clr-text-default);
  display: flex;
  gap: 20px;
}
.review-action {
  color: #aaa;
  transition: color 0.25s ease-in-out;
}
.review-action:hover {
  color: var(--clr-text-default);
  transition: color 0.25s ease-in-out;
}
.review-body p {
  color: var(--clr-text-default);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}
.review-footer {
  align-items: center;
  border-top: 1px solid var(--clr-border);
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding: 12px 0 0;
}
.has-reply .review-footer, .replying .review-footer {
  border-bottom: 1px solid var(--clr-border);
  padding: 12px 0;
}
.review-footer-action {
  align-items: center;
  border-radius: 6px;
  color: var(--clr-text-default);
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
  min-height: 42px;
  padding: 0 16px;
  transition: all 0.5s ease-in-out;
}
.review-footer-action:hover {
  background-color: #eff1fa;
  color: var(--clr-text-dark);
  transition: all 0.5s ease-in-out;
}
.review-footer-action i {
  --size: 20px;
}
.review-reply {
  align-items: center;
  display: none;
  gap: 20px;
  padding-top: 30px;
}
.replying .review-reply {
  display: flex;
}
.review-reply input {
  background-color: #f9f9f9;
  border-radius: 6px;
  box-shadow: 0 0 0 2px var(--clr-border);
  color: var(--clr-text-default);
  font-size: 16px;
  font-weight: 400;
  min-height: 42px;
  padding: 0 16px;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.review-reply input:focus {
  box-shadow: 0 0 0 2px var(--clr-brand-primary);
  transition: all 0.25s ease-in-out;
}
.review-reply-cta {
  align-items: center;
  border-radius: 6px;
  box-shadow: 0 0 0 2px var(--clr-border);
  color: var(--clr-text-default);
  display: flex;
  font-size: 16px;
  font-weight: 500;
  gap: 12px;
  line-height: 1.5;
  max-width: -moz-max-content;
  max-width: max-content;
  min-height: 42px;
  padding: 0 12px;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.review-reply-cta:hover {
  background-color: var(--clr-brand-primary);
  box-shadow: 0 0 0 2px var(--clr-brand-primary);
  color: #fff;
  transition: all 0.25s ease-in-out;
}
.review-reply-cta i {
  --size: 16px;
}
.has-reply .review-reply-init, .replying .review-reply-init {
  display: none;
}

.reviewer {
  align-items: center;
  display: flex;
  gap: 12px;
  position: relative;
}
.reviewer-thumb {
  aspect-ratio: 1/1;
  border-radius: 50%;
  line-height: 0;
  max-width: 50px;
  width: 100%;
}
.reply .reviewer-thumb {
  position: absolute;
  right: calc(100% + 56px);
  top: 0;
}
.reviewer-thumb img {
  border-radius: 50%;
}
.reviewer-details .title {
  color: var(--clr-text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}
.reviewer-details p {
  color: #aaa;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.conversation-list {
  border-top: 1px solid var(--clr-border);
  margin: 18px 0 0;
  padding-top: 24px;
}
.conversation-list .complaint-reply {
  margin: 24px 0;
}

.conversation {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 0 0 72px;
  position: relative;
  width: 100%;
}
.conversation:not(:last-of-type) {
  margin-bottom: 32px;
}
.conversation > .conversation {
  margin-bottom: 0;
}
.conversation-thumb {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  left: 0;
  max-width: 42px;
  overflow: hidden;
  position: absolute;
  top: 12px;
  width: 100%;
}
.conversation-details {
  display: flex;
  flex-direction: column;
}
.conversation-title {
  color: var(--clr-text-dark);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.conversation-content {
  background-color: rgb(249, 250, 254);
  border-radius: 6px;
  padding: 16px 20px 20px;
  width: 100%;
}
.conversation-content i {
  --size: 16px;
}
.conversation-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.conversation-header-actions {
  align-items: center;
  display: flex;
  gap: 16px;
}
.conversation-meta {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  gap: 20px;
  line-height: 1;
}
.conversation-meta-item {
  align-items: center;
  display: flex;
  gap: 10px;
}
.conversation-meta-item i {
  --size: 12px;
}
.conversation-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.conversation-actions {
  align-items: center;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}
.conversation-action {
  align-items: center;
  color: var(--clr-text-light);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  line-height: 1;
  transition: all 0.25s ease-in-out;
}
.conversation-action:hover {
  color: var(--clr-text-default);
  transition: all 0.25s ease-in-out;
}
.conversation-action i {
  --size: 16px;
}

.conversation-more {
  color: var(--clr-text-default);
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 12px;
}
.conversation-more:hover {
  color: var(--clr-text-dark);
}

.convos {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.convo {
  display: flex;
  flex-direction: column;
}
.convo-header {
  align-items: center;
  display: flex;
  margin-bottom: 16px;
}
.convo-header small {
  color: var(--clr-text-light);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}
.convo-thumb {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  margin-right: 32px;
  width: 42px;
}
.convo-thumb img {
  border-radius: 50%;
}
.convo-title {
  color: var(--clr-text-dark);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-right: 16px;
}
.convo-content {
  padding-left: 72px;
}
.convo-body {
  background-color: rgb(249, 250, 254);
  border-radius: 10px;
  color: var(--clr-text-default);
  display: flex;
  flex-direction: column;
  font-size: 16px;
  font-weight: 400;
  gap: 12px;
  line-height: 1.7;
  padding: 16px 20px;
}
.convo-body p {
  max-width: 72ch;
}

.pl-72 {
  padding-left: 72px;
}

.comment {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 0 0 0 72px;
  position: relative;
  width: 100%;
}
.comment:not(:last-of-type) {
  margin-bottom: 32px;
}
.comment > .comment {
  margin-bottom: 0;
}
.comment-thumb {
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: flex;
  left: 0;
  max-width: 42px;
  overflow: hidden;
  position: absolute;
  top: 12px;
  width: 100%;
}
.comment-details {
  display: flex;
  flex-direction: column;
}
.comment-title {
  color: var(--clr-text-dark);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 12px;
}
.comment-content {
  background-color: rgb(249, 250, 254);
  border-radius: 6px;
  padding: 16px 20px 20px;
  width: 100%;
}
.comment-content i {
  --size: 16px;
}
.comment-header {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}
.comment-header-actions {
  align-items: center;
  display: flex;
  gap: 16px;
}
.comment-meta {
  align-items: center;
  display: flex;
  font-size: 12px;
  font-weight: 400;
  gap: 20px;
  line-height: 1;
}
.comment-meta-item {
  align-items: center;
  display: flex;
  gap: 10px;
}
.comment-meta-item i {
  --size: 12px;
}
.comment-body {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.comment-actions {
  align-items: center;
  display: flex;
  gap: 32px;
  margin-top: 20px;
}
.comment-action {
  align-items: center;
  color: var(--clr-text-light);
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 8px;
  line-height: 1;
  transition: all 0.25s ease-in-out;
}
.comment-action:not(:disabled):hover {
  color: var(--clr-text-default);
  transition: all 0.25s ease-in-out;
}
.comment-action:disabled {
  cursor: default;
}
.comment-action i {
  --size: 16px;
}

.replies {
  display: none;
}
.replies.is-active {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pl-72 {
  padding-left: 72px;
}

.breadcrumbs {
  align-items: center;
  display: flex;
  font-size: 14px;
  font-weight: 400;
  gap: 12px;
  margin-bottom: 16px;
}
.breadcrumbs li {
  align-items: center;
  display: flex;
  gap: 8px;
}
.breadcrumbs li:not(:last-of-type)::after {
  aspect-ratio: 1/1;
  border-right: 1px solid var(--clr-text-default);
  border-top: 1px solid var(--clr-text-default);
  content: "";
  transform: rotate(45deg);
  width: 4px;
}
.breadcrumbs a {
  color: var(--clr-text-default);
  font-weight: 500;
}
.breadcrumbs a:hover {
  color: var(--clr-brand-primary);
}
.breadcrumbs i {
  --size: 14px;
}

.search {
  align-items: center;
  display: flex;
  justify-content: center;
  margin-top: 24px;
  position: relative;
  width: 100%;
}
.search--input {
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg fill='%23f66962' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 56.966 56.966' style='enable-background:new 0 0 56.966 56.966' xml:space='preserve'%3E%3Cpath d='M55.146 51.887 41.588 37.786A22.926 22.926 0 0 0 46.984 23c0-12.682-10.318-23-23-23s-23 10.318-23 23 10.318 23 23 23c4.761 0 9.298-1.436 13.177-4.162l13.661 14.208c.571.593 1.339.92 2.162.92.779 0 1.518-.297 2.079-.837a3.004 3.004 0 0 0 .083-4.242zM23.984 6c9.374 0 17 7.626 17 17s-7.626 17-17 17-17-7.626-17-17 7.626-17 17-17z'/%3E%3C/svg%3E");
  background-position: 24px center;
  background-repeat: no-repeat;
  background-size: 20px;
  border: 0;
  border-radius: 35px;
  color: var(--clr-text-dark);
  font-size: 18px;
  font-weight: 400;
  height: 52px;
  line-height: 1.3;
  padding: 12px 60px 12px 48px;
  width: 100%;
}
.show .search--input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
@media only screen and (min-width: 660px) {
  .search--input {
    height: 70px;
    padding: 12px 100px 12px 64px;
  }
}
.search--input::-moz-placeholder {
  color: var(--clr-text-default);
  font-size: 16px;
  opacity: 0.8;
}
.search--input::placeholder {
  color: var(--clr-text-default);
  font-size: 16px;
  opacity: 0.8;
}
.search--icon {
  color: var(--clr-brand-primary);
  left: 16px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (min-width: 660px) {
  .search--icon {
    left: 24px;
  }
}
.search--btn {
  align-items: center;
  aspect-ratio: 1/1;
  background-color: var(--clr-brand-primary);
  background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 492.004 492.004' style='enable-background:new 0 0 492.004 492.004' xml:space='preserve'%3E%3Cpath d='M484.14 226.886 306.46 49.202c-5.072-5.072-11.832-7.856-19.04-7.856-7.216 0-13.972 2.788-19.044 7.856l-16.132 16.136c-5.068 5.064-7.86 11.828-7.86 19.04 0 7.208 2.792 14.2 7.86 19.264L355.9 207.526H26.58C11.732 207.526 0 219.15 0 234.002v22.812c0 14.852 11.732 27.648 26.58 27.648h330.496L252.248 388.926c-5.068 5.072-7.86 11.652-7.86 18.864 0 7.204 2.792 13.88 7.86 18.948l16.132 16.084c5.072 5.072 11.828 7.836 19.044 7.836 7.208 0 13.968-2.8 19.04-7.872l177.68-177.68c5.084-5.088 7.88-11.88 7.86-19.1.016-7.244-2.776-14.04-7.864-19.12z'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  opacity: 1;
  position: absolute;
  right: 6px;
  transform: scale(1);
  transition: all 0.25s ease-in-out;
  width: 40px;
}
.search--btn.hide {
  opacity: 0;
  transform: scale(0);
  transition: all 0.25s ease-in-out;
}
@media only screen and (min-width: 660px) {
  .search--btn {
    right: 12px;
    width: 50px;
  }
}

#home-search {
  width: 100%;
  margin-bottom: 75px;
}

.loader {
  aspect-ratio: 1/1;
  opacity: 1;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) scale(1);
  transition: all 0.25s ease-in-out;
  width: 40px;
}
.loader.hide {
  opacity: 0;
  transform: translateY(-50%) scale(0);
  transition: all 0.25s ease-in-out;
}
.loader::after {
  animation: loading 1s 0.25s linear infinite;
  border: 3px solid var(--clr-brand-primary);
  border-right-color: transparent;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: calc(100% - 4px);
  left: -1px;
  position: absolute;
  top: -1px;
  width: calc(100% - 4px);
}

.ss-list {
  background-color: #fff;
  border-bottom-left-radius: 24px;
  border-bottom-right-radius: 24px;
  display: none;
  max-height: 250px;
  padding: 0 10px 12px;
  position: absolute;
  top: 100%;
  width: 100%;
  overflow-y: scroll;
  z-index: 1;
}
.ss-list::-webkit-scrollbar {
  width: 4px;
}
.ss-list::-webkit-scrollbar-thumb {
  background-color: #f9f9f9;
  outline: none;
}
.show .ss-list {
  display: block;
}

.ss-tag-brand, .ss-tag-complaint {
  border-radius: 4px;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  padding: 4px 8px;
  text-transform: capitalize;
}

.ss {
  align-items: center;
  border-radius: 6px;
  cursor: pointer;
  display: flex;
  gap: 12px;
  padding: 8px 10px;
  width: 100%;
}
.ss:hover {
  background-color: #f4f4f4;
}
.ss-img {
  aspect-ratio: 1/1;
  line-height: 0;
  width: 42px;
}
.ss-details {
  align-items: start;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.ss-text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 4px;
}
.ss-tag-complaint {
  background-color: #61dafb;
}
.ss-tag-brand {
  background-color: var(--clr-brand-primary);
}

.ss-error {
  color: var(--clr-brand-primary);
  font-weight: 24px;
  font-weight: 500;
  padding: 32px 0;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #78787869;
  border-radius: 10px;
}

::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5;
}

::-webkit-scrollbar-thumb {
  border-radius: 2px;
  background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0.44, rgb(246 105 98)), color-stop(0.72, rgb(87 73 152)), color-stop(0.86, rgb(130 112 169)));
}

.top-nav-countires{
  display: block;
}
.top-nav-countires .current{
  align-items: center;
  border: 1px solid #e9ecef;
  display: flex;
  gap: 6px;
  min-height: 40px;
  padding: 0 16px 0 12px;
  transition: all 0.25s ease-in-out;
  width: 90px;
  justify-content: space-between;
  font-weight: bold;
}
.top-nav-countires .countries-list{
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
  display: none;
  padding: 8px 0;
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  width: 230px;
  z-index: 10;
  max-height: 300px;
  overflow-y: scroll;
}
.top-nav-countires .countries-list li {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-size: 14px;
  font-weight: 500;
  gap: 10px;
  line-height: 1;
  min-height: 32px;
  padding: 0 16px 0 12px;
  transition: all 0.25s ease-in-out;
  width: 100%;
}
.top-nav-countires .countries-list li.hidden{
  display:none;
}
.top-nav-countires.open .countries-list{
  display: block;
}

.countries-list .type-search-country {
    border: solid 1px #e5e5e5;
    padding: 5px 10px;
    border-radius: 6px;
    margin-bottom: 10px;
}