/* start: Globals */
:root {
  --black: #000;
  --white: #fff;
  --logo: #42cbb2;
  --primary: #42cbb2;
  --secondary: #e3e9f0;
  --success: #22c55e;
  --success-soft: #dcfce7;
  --danger: #ef4444;
  --danger-soft: #fee2e2;
  --warning: #f97316;
  --warning-soft: #ffedd5;
  --text-color: #7a7a7a;
  --border-color: #e3e9f0;
  --text-xs: 12px;
  --text-sm: 14px;
  --text-2sm: 15px;
  --text-base: 16px;
  --text-lg: 18px;
  --text-xl: 20px;
  --text-2xl: 24px;
  --text-3xl: 30px;
  --text-4xl: 36px;
  --text-5xl: 48px;
  --rounded-sm: 2px;
  --rounded: 4px;
  --rounded-md: 6px;
  --rounded-lg: 8px;
  --rounded-xl: 12px;
  --rounded-2xl: 16px;
  --rounded-full: 999px;
  --duration-150: 0.15s;
  --duration-200: 0.2s;
  --duration-300: 0.3s;
}
*,
::before,
::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Poppins", sans-serif;
}
body.navbar-fixed-body {
  padding-top: 110px;
}
input,
select,
textarea,
button {
  font-family: inherit;
}
button {
  color: var(--black);
}
.container {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 16px;
}
/* end: Globals */

/* start: Section */
.section-title {
  font-size: var(--text-4xl);
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  max-width: 720px;
  margin: 0 auto 16px;
}
.section-title-underline-warning {
  background-image: url(/img/underline-warning.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.section-title-underline-primary {
  background-image: url(/img/underline-primary.png);
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: bottom;
}
.section-description {
  text-align: center;
  color: var(--text-color);
  line-height: 1.5;
  max-width: 720px;
  margin: 0 auto;
}
/* end: Section */

/* start: Skeleton */
.skeleton {
  background-image: linear-gradient(90deg, hsl(210, 15%, 88%), hsl(210, 15%, 95%), hsl(210, 15%, 88%));
  background-size: 200%;
  border-radius: 8px;
  animation: skeleton 1s infinite reverse;
}
@keyframes skeleton {
  0% {
    background-position: -100% 0;
  }

  100% {
    background-position: 100% 0;
  }
}
/* end: Skeleton */

/* start: Badge */
.badge {
  height: 20px;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: 0 12px;
  border-radius: var(--rounded-full);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.badge-success {
  background-color: var(--success-soft);
  color: var(--success);
}
.badge-danger {
  background-color: var(--danger-soft);
  color: var(--danger);
}
.badge-secondary {
  background-color: var(--secondary);
  color: var(--text-color);
}
/* end: Badge */

/* start: Form */
.form-control {
  height: 44px;
  padding: 0 16px;
  background-color: #f7f7f7;
  border: 1px solid #8e8a8a;
  width: 100%;
  outline: none;
  border-radius: var(--rounded-md);
  font-size: var(--text-base);
}
.form-control-sm {
  height: 36px;
  padding: 0 16px;
  font-size: var(--text-sm);
}
select.form-control {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iY3VycmVudENvbG9yIj48cGF0aCBkPSJNMTEuOTk5OSAxMy4xNzE0TDE2Ljk0OTcgOC4yMjE2OEwxOC4zNjM5IDkuNjM1ODlMMTEuOTk5OSAxNS45OTk5TDUuNjM1OTkgOS42MzU4OUw3LjA1MDIgOC4yMjE2OEwxMS45OTk5IDEzLjE3MTRaIj48L3BhdGg+PC9zdmc+");
  background-size: 16px;
  background-position: right 16px center;
  background-repeat: no-repeat;
}
.form-label {
  margin-bottom: 8px;
  font-weight: 500;
  display: inline-block;
  font-size: var(--text-base);
}
.form-label-optional::after {
  content: " (optional)";
  font-size: var(--text-sm);
  color: var(--text-color);
}
.is-invalid {
  border-color: var(--danger);
}
.invalid-feedback {
  display: inline-block;
  margin-top: 4px;
  font-size: var(--text-sm);
  color: var(--danger);
}
.invalid-feedback > a {
  color: var(--danger);
  font-weight: 500;
}
.form-autocomplete-wrapper {
  position: relative;
}
.form-autocomplete {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: var(--white);
  border-radius: var(--rounded-md);
  border: 1px solid #8e8a8a;
  z-index: 10;
  padding: 8px 0;
  overflow-y: auto;
  max-height: 300px;
}
.form-autocomplete-item {
  display: flex;
  align-items: center;
  background-color: var(--white);
  outline: none;
  text-align: left;
  border: none;
  cursor: pointer;
  height: 32px;
  padding: 0 16px;
  color: var(--black);
  font-size: var(--text-sm);
  width: 100%;
}
.form-autocomplete-item.focused,
.form-autocomplete-item:hover {
  background-color: var(--secondary);
}
/* end: Form */

/* start: Custom Select */
.custom-select {
  position: relative;
}
.custom-select-button {
  display: flex;
  align-items: center;
  height: 44px;
  border: 1px solid #8e8a8a;
  background-color: #f7f7f7;
  cursor: pointer;
  font-size: var(--text-sm);
  padding: 0 16px;
  border-radius: var(--rounded-md);
}
.custom-select-sm .custom-select-button {
  height: 36px;
  font-size: var(--text-sm);
  padding-right: 40px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAyNCAyNCIgZmlsbD0iY3VycmVudENvbG9yIj48cGF0aCBkPSJNMTEuOTk5OSAxMy4xNzE0TDE2Ljk0OTcgOC4yMjE2OEwxOC4zNjM5IDkuNjM1ODlMMTEuOTk5OSAxNS45OTk5TDUuNjM1OTkgOS42MzU4OUw3LjA1MDIgOC4yMjE2OEwxMS45OTk5IDEzLjE3MTRaIj48L3BhdGg+PC9zdmc+");
  background-size: 16px;
  background-position: right 16px center;
  background-repeat: no-repeat;
}
.custom-select-select {
  position: absolute;
  top: calc(100% + 4px);
  background-color: var(--white);
  border: 1px solid #8e8a8a;
  min-width: 96px;
  display: none;
  z-index: 10;
  border-radius: var(--rounded-md);
  padding: 4px 0;
  max-height: 300px;
  overflow-y: auto;
}
.custom-select.active .custom-select-select {
  display: block;
}
.custom-select-option {
  display: flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  cursor: pointer;
  color: var(--black);
  font-size: var(--text-sm);
  border: none;
  width: 100%;
  background-color: transparent;
  white-space: nowrap;
}
.custom-select-option:hover {
  background-color: var(--secondary);
}
/* end: Custom Select */

/* start: Alert */
.alert {
  padding: 8px 16px;
  border-radius: var(--rounded-md);
  font-size: var(--text-sm);
  margin-bottom: 16px;
}
.alert-danger {
  background-color: var(--danger-soft);
  color: var(--danger);
}
.alert-success {
  background-color: var(--success-soft);
  color: var(--success);
}
.alert > a {
  color: inherit;
  text-underline-offset: 2px;
}
/* end: Alert */

/* start: Button */
.btn {
  height: 44px;
  padding: 0 24px;
  border-radius: var(--rounded-md);
  text-align: center;
  font-size: var(--text-base);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  outline: none;
  border: 1px solid;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.btn-sm {
  height: 36px;
  font-size: var(--text-sm);
  padding: 0 16px;
}
.btn-nowrap {
  white-space: nowrap;
}
.btn-pill {
  border-radius: var(--rounded-full);
  height: 24px;
  font-size: var(--text-xs);
  padding: 0 8px;
}
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--black);
  transition-property: background-color, border-color, color;
  transition-duration: var(--duration-150);
}
.btn-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn-warning {
  background-color: var(--warning);
  border-color: var(--warning);
  color: var(--white);
  transition-property: background-color, border-color;
  transition-duration: var(--duration-150);
}
.btn-warning:hover {
  background-color: var(--black);
  border-color: var(--black);
}
.btn-white {
  background-color: var(--white);
  border-color: var(--white);
  color: var(--black);
}
.btn-outline-primary {
  background-color: transparent;
  border-color: var(--black);
  color: var(--black);
  transition-property: background-color, border-color, color;
  transition-duration: var(--duration-150);
}
.btn-outline-primary:hover {
  background-color: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.btn-danger {
  background-color: var(--danger);
  border-color: var(--danger);
  color: var(--white);
  transition-property: background-color, border-color, color;
  transition-duration: var(--duration-150);
}
.btn-block {
  width: 100%;
}
.btn > :first-child {
  margin-right: 8px;
}
/* end: Button */

/* start: Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-item {
  height: 36px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  border: 1px solid var(--border-color);
  border-right: none;
  text-decoration: none;
  color: var(--black);
}
.pagination-item:hover {
  background-color: var(--border-color);
}
.pagination-item.disabled,
.pagination-item:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.pagination-item:first-child {
  border-top-left-radius: var(--rounded-md);
  border-bottom-left-radius: var(--rounded-md);
}
.pagination-item:last-child {
  border-right: 1px solid var(--border-color);
  border-top-right-radius: var(--rounded-md);
  border-bottom-right-radius: var(--rounded-md);
}
.pagination2 {
  margin-top: 24px;
}
.pagination2-info {
  text-align: center;
  font-size: var(--text-base);
  margin-bottom: 12px;
}
.pagination2-info > span {
  font-weight: 600;
}
.pagination2-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination2-link {
  text-decoration: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--rounded-md);
  background-color: transparent;
  border: 1px solid var(--black);
  cursor: pointer;
  outline: none;
  font-size: var(--text-base);
}
.pagination2-link:hover {
  background-color: var(--black);
  color: var(--white);
}
.pagination2-link.disabled,
.pagination2-link:disabled {
  pointer-events: none;
  opacity: 0.5;
}
.pagination2-text {
  font-size: var(--text-sm);
  color: var(--text-color);
  margin: 0 16px;
}
/* end: Pagination */

/* start: Modal */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  z-index: 1000000;
  opacity: 0;
  visibility: hidden;
  transition-property: opacity, visibility;
  transition-duration: var(--duration-300);
}
div:where(.swal2-container) {
  z-index: 100000001 !important;
}
.modal.modal-shown {
  opacity: 1;
  visibility: visible;
}
.modal-inner {
  max-width: 540px;
  margin: 16px auto;
  min-height: calc(100vh - 32px);
  padding: 0 16px;
  pointer-events: none;
}
.modal-center .modal-inner {
  display: flex;
  align-items: center;
}
.modal-content {
  width: 100%;
  background-color: var(--white);
  border-radius: var(--rounded-lg);
  transform: translateY(64px);
  pointer-events: auto;
  transition-property: transform;
  transition-duration: var(--duration-300);
}
.modal.modal-shown .modal-content {
  transform: translateY(0);
}
.modal-body {
  padding: 16px;
}
/* end: Modal */

/* start: Navbar */
.navbar-wrapper {
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.navbar {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: transform var(--duration-300) ease-in-out;
}
.navbar.navbar-fixed {
  position: fixed;
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
}
.navbar.navbar-fixed .navbar-wrapper {
  height: 70px;
}
.navbar.navbar-fixed .navbar-brand-image {
  height: 24px;
}
.navbar-hidden {
  transform: translateY(-100%);
}
.navbar-brand {
  text-decoration: none;
}
.navbar-brand-image {
  height: 32px;
  display: block;
}
.navbar-menu-list {
  display: flex;
  align-items: center;
  list-style-type: none;
}
.navbar-menu-list-item {
  margin-right: 24px;
}
.navbar-menu-list-item:last-child {
  margin-right: 0;
}
.navbar-menu-list-item-mobile {
  display: none;
}
.navbar-menu-list-item-link {
  text-decoration: none;
  color: var(--black);
}
.navbar-menu-overlay {
  display: none;
}
.navbar-close {
  display: none;
}
.navbar-right {
  display: flex;
  align-items: center;
}
.navbar-right > * {
  margin-right: 24px;
}
.navbar-right > :last-child {
  margin-right: 0;
}
.navbar-toggle {
  background-color: transparent;
  cursor: pointer;
  outline: none;
  border: none;
  font-size: var(--text-xl);
  border-radius: var(--rounded-lg);
  width: 44px;
  height: 44px;
  display: none;
  transition-property: background-color;
  transition-duration: var(--duration-150);
}
.navbar-toggle:hover {
  background-color: var(--secondary);
}
.navbar-account {
  position: relative;
}
.navbar-account-toggle {
  display: flex;
  align-items: center;
  color: var(--black);
  background-color: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  box-shadow: none;
  font-weight: 400;
}
.navbar-account-toggle-icon {
  width: 40px;
  height: 40px;
}
.navbar-account-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0px 10px 31px 0px #00000040;
  padding: 8px 0;
  width: 160px;
  display: none;
  z-index: 10;
}
.navbar-account.active .navbar-account-menu {
  display: block;
}
.navbar-account-menu-box {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}
.navbar-account-menu-box:last-child {
  margin-bottom: 0;
  border-bottom: none;
  padding-bottom: 0;
}
.navbar-account-menu-box-title {
  font-size: 12px;
  color: var(--text-color);
  margin-bottom: 4px;
  padding: 0 16px;
}
.navbar-account-menu-box-menu {
  list-style-type: none;
}
.navbar-account-menu-box-menu-item-link {
  color: var(--black);
  display: flex;
  align-items: center;
  padding: 0 16px;
  text-decoration: none;
  height: 36px;
  font-size: 14px;
}
.navbar-account-menu-box-menu .navbar-account-menu-box-menu-item-link:hover {
  background-color: var(--secondary);
}
/* end: Navbar */

/* start: Footer */
.footer {
  padding: 32px 0;
  background-color: #f2f2f2;
}
.footer-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: flex-start;
}
.footer-left {
  display: flex;
  flex-direction: column;
  max-width: 400px;
}
.footer-brand {
  text-decoration: none;
  margin-bottom: 20px;
}
.footer-brand-image {
  height: 45px;
  display: block;
}
.footer-description {
  color: var(--text-color);
  margin-bottom: 40px;
  line-height: 1.5;
}
.footer-downloads {
  display: flex;
  gap: 18px;
}
.footer-download-btn {
  border: none;
  padding: 0;
  background: transparent;
  text-decoration: none;
}
.footer-download-btn img {
  max-width: 150px;
  height: auto;
}
.footer-right {
  display: flex;
  flex-direction: column;
}
.footer-links-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--black);
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.footer-link {
  text-decoration: none;
  color: var(--text-color);
  transition: color 0.3s ease;
}
.footer-link:hover {
  color: var(--logo);
}
.footer-copyright {
  color: var(--text-color);
}

.footer-bottom {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 55px;
  height: 55px;
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: var(--text-xl);
  background-color: var(--white);
  border: 1px solid var(--border-color);
  transition: transform 0.3s ease;
}

.footer-social-link:hover {
  transform: scale(1.1);
}

.footer-social-fb {
  color: #1877f2;
}

.footer-social-twitter {
  color: #1da1f2;
}

.footer-social-ig {
  color: #e4405f;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.footer-bottom-link {
  text-decoration: none;
  color: var(--text-color);
  font-size: var(--text-sm);
  transition: color 0.3s ease;
}

.footer-bottom-link:hover {
  color: var(--logo);
}

/* end: Footer */

/* start: Breakpoints */
@media screen and (max-width: 1400px) {
  .container {
    max-width: 1160px;
  }
}
@media screen and (max-width: 1200px) {
  .container {
    max-width: 940px;
  }
}
@media screen and (max-width: 991px) {
  .container {
    max-width: 720px;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 540px;
  }

  .section-title {
    font-size: var(--text-2xl);
  }

  .navbar-menu {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-64px);
    width: calc(100% - 32px);
    height: 100%;
    background-color: var(--white);
    max-width: 300px;
    z-index: 40;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility, transform;
    transition-duration: var(--duration-300);
  }
  .navbar-shown .navbar-menu {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
  .navbar-menu-list {
    display: block;
  }
  .navbar-menu-list-item {
    margin-right: 0;
    margin-bottom: 12px;
  }
  .navbar-menu-list-item:last-child {
    margin-bottom: 0;
  }
  .navbar-menu-overlay {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 30;
    opacity: 0;
    visibility: hidden;
    transition-property: opacity, visibility;
    transition-duration: var(--duration-300);
  }
  .navbar-shown .navbar-menu-overlay {
    opacity: 1;
    visibility: visible;
  }
  .navbar-close {
    display: block;
    background-color: transparent;
    cursor: pointer;
    border: none;
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: var(--text-lg);
  }
  .navbar-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 767px) {
  .navbar-brand-image {
    height: 28px;
  }
  .navbar-right-desktop {
    display: none;
  }
  .navbar-menu-list-item-mobile {
    display: block;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-downloads {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-download-btn img {
    max-width: 120px;
  }

  .footer-brand-image {
    height: 35px;
  }

  .footer-links-title {
    font-size: 20px;
    margin-bottom: 18px;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-bottom-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-social-link {
    width: 45px;
    height: 45px;
    font-size: var(--text-lg);
  }
}
@media (max-width: 480px) {
  .custom-select-sm .custom-select-button {
    width: 100%;
  }
  .navbar-wrapper {
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
  }
}
/* start: Breakpoints */
.links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.links a {
  text-decoration: none;
  color: #242d3d;
  margin-top: 10px;
}
.seller-privacy {
  margin-right: 25px;
}
.links a:hover {
  color: #42cbb2;
}
