/* [project]/src/app/(site)/search.css [app-client] (css) */
.nav-right {
  align-items: center !important;
}

.mobile-bar > div, .nav-right .lang-item {
  align-items: center;
  display: flex;
}

.lang-select {
  cursor: pointer;
  color: #cfcfcf;
  align-items: center;
  gap: 3px;
  padding: 4px 6px;
  display: inline-flex;
}

.lang-select:hover {
  color: #fff;
}

.lang-flag {
  border-radius: 50%;
  display: block;
}

.hs-bar {
  align-items: center;
  gap: 4px;
  transition: background .2s;
  display: inline-flex;
}

.hs-bar.open {
  background: #0f0f0f;
  border: 1px solid #595959;
  border-radius: 2px;
  height: 34px;
  padding: 0 8px;
}

.hs-lens {
  color: inherit;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  font-size: 1rem;
  line-height: 0;
}

.hs-input {
  color: #fff;
  background: none;
  border: none;
  outline: none;
  width: 0;
  padding: 0;
  font-size: 14px;
  transition: width .25s, padding .25s;
}

.hs-input::placeholder {
  color: #8a8a8a;
}

.hs-bar.open .hs-input {
  width: 210px;
  padding: 0 6px;
}

.hs-filter {
  color: #e0e0e0;
  white-space: nowrap;
  background: #404040;
  border-radius: 20px;
  flex: none;
  align-items: center;
  gap: 2px;
  height: 20px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 400;
  display: inline-flex;
}

.hs-filter svg {
  width: 13px;
  height: 13px;
}

.hs-filter:hover {
  color: #fff;
  background: #4a4a4a;
}

.hs-filter, .hs-filter:hover, .hs-filter:focus {
  text-decoration: none;
}

.hs-close {
  color: #bbb;
  cursor: pointer;
  background: none;
  border: none;
  padding: 2px 6px;
  font-size: 14px;
  line-height: 1;
}

.hs-close:hover {
  color: #fff;
}

.srch-results {
  z-index: 1020;
  background: #0b0b0b;
  animation: .15s srch-fade;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  overflow-y: auto;
}

@keyframes srch-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.srch-body {
  padding: 24px 3.4rem 60px;
}

.srch-count {
  color: #b3b3b3;
  margin-bottom: 18px;
  font-size: 14px;
}

.srch-empty {
  color: #8a8a8a;
  text-align: center;
  padding: 30px 0;
  font-size: 15px;
}

.srch-grid {
  grid-template-columns: repeat(6, 1fr);
  gap: 40px 5px;
  display: grid;
}

@media (max-width: 1399px) {
  .srch-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

@media (max-width: 1199px) {
  .srch-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 899px) {
  .srch-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 599px) {
  .srch-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.srch-grid .slider-tile-inner {
  width: 100%;
}

.srch-grid .box-16x9 {
  border-radius: 3px;
  width: 100%;
  overflow: hidden;
}

@media (max-width: 768px) {
  .srch-bar {
    padding: 14px 18px;
  }

  .srch-bar input {
    font-size: 18px;
  }

  .srch-body {
    padding: 18px 18px 50px;
  }
}

/* [project]/src/app/(site)/nav-user.css [app-client] (css) */
.nav-right .bell-item, .nav-right .user-menu-item-wrap {
  align-items: center;
  display: flex;
}

.nav-bell {
  color: #fff;
  opacity: .9;
  align-items: center;
  padding: 0 4px;
  display: flex;
}

.nav-bell:hover {
  opacity: 1;
}

.user-menu {
  position: relative;
}

.user-menu-toggle {
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 4px;
  padding: 6px 4px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  display: flex;
}

.user-menu-name {
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 180px;
  overflow: hidden;
}

.user-menu-caret {
  opacity: .85;
  transition: transform .2s;
}

.user-menu.open .user-menu-caret {
  transform: rotate(180deg);
}

.user-menu-dropdown {
  z-index: 1100;
  background: #16181d;
  border: 1px solid #ffffff14;
  border-radius: 10px;
  flex-direction: column;
  min-width: 190px;
  padding: 8px 0;
  display: flex;
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  box-shadow: 0 12px 30px #00000080;
}

.user-menu-dropdown form {
  margin: 0;
}

.user-menu-item {
  text-align: left;
  color: #cdd3da;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  padding: 11px 20px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.user-menu-item:hover {
  color: #fff;
  background: #ffffff0f;
  text-decoration: none;
}

.user-menu-logout {
  color: #ff6b6b;
  border-top: 1px solid #ffffff12;
  margin-top: 4px;
}

.user-menu-logout:hover {
  color: #ff8585;
}

/* [project]/src/app/(site)/toaster.css [app-client] (css) */
.cx-toasts {
  z-index: 4000;
  pointer-events: none;
  flex-direction: column;
  gap: 10px;
  transition: top .2s;
  display: flex;
  position: fixed;
  top: 100px;
  right: 20px;
}

html.tele-closed .cx-toasts {
  top: 72px;
}

.cx-toast {
  color: #fff;
  pointer-events: auto;
  background: #1c1f26;
  border: 1px solid #ffffff14;
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  min-width: 230px;
  max-width: 360px;
  padding: 14px 16px;
  font-size: 14px;
  animation: .25s cx-toast-in;
  display: flex;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 28px #00000080;
}

@keyframes cx-toast-in {
  from {
    opacity: 0;
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.cx-toast-bar {
  transform-origin: 0;
  background: #19ad79;
  width: 100%;
  height: 3px;
  animation: 4s linear forwards cx-toast-bar;
  position: absolute;
  top: 0;
  left: 0;
}

@keyframes cx-toast-bar {
  from {
    transform: scaleX(1);
  }

  to {
    transform: scaleX(0);
  }
}

.cx-toast-error .cx-toast-bar {
  background: #f0506e;
}

.cx-toast-msg {
  flex: auto;
}

.cx-toast-close {
  color: #9aa0a6;
  cursor: pointer;
  background: none;
  border: none;
  flex: none;
  align-items: center;
  padding: 0;
  display: inline-flex;
}

.cx-toast-close:hover {
  color: #fff;
}

/*# sourceMappingURL=src_app_%28site%29_1v247kx._.css.map*/