html {
  overflow-x: hidden;
}

body {
  min-height: 100vh;
  background: #edf6f9;
}
body.admin-bar {
  min-height: calc(100vh - 32px);
}

.container {
  max-width: 1350px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-width: 1280px) {
  .container {
    max-width: 991px;
  }
}
@media (max-width: 991px) {
  .container {
    max-width: 768px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 590px;
  }
}

.wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  z-index: 100;
  position: relative;
}

.admin-bar .wrapper {
  min-height: calc(100vh - 32px);
}

.main {
  padding-top: 42px;
  margin-bottom: 60px;
}
@media (max-width: 590px) {
  .main {
    padding-top: 32px;
  }
}

.not-found {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 5rem;
}

.not-found__inside {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.not-found__title {
  font-size: 5rem;
  font-weight: bold;
  color: #b2b2b2;
}

.not-found__subtitle {
  font-size: 1.25rem;
  margin-top: 1rem;
  color: #7c7c7c;
}

.header {
  background: #FFF;
}

.header-top {
  display: flex;
  gap: 32px;
  align-items: center;
  padding: 32px 0;
}
@media (max-width: 768px) {
  .header-top {
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 590px) {
  .header-top {
    padding: 24px 0;
    gap: 24px;
  }
}

.header__title {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
}
@media (max-width: 1280px) {
  .header__title {
    font-size: 1.6rem;
  }
}

.header__subtitle {
  line-height: 1.2;
  margin-top: 5px;
}

#branding img {
  max-width: 260px;
}
@media (max-width: 590px) {
  #branding img {
    max-width: 200px;
  }
}

.header-bottom {
  border-top: 1px solid #EEE;
  border-bottom: 1px solid #EEE;
}

@media (max-width: 590px) {
  #menu {
    margin: 0 -15px;
  }
  #menu .menu {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
  }
}

.websites-page {
  display: flex;
  gap: 42px;
}
@media (max-width: 1280px) {
  .websites-page {
    gap: 32px;
  }
}
@media (max-width: 991px) {
  .websites-page {
    flex-direction: column;
  }
}

.website-list-container {
  flex-grow: 1;
  position: relative;
}
.website-list-container .loading {
  position: absolute;
  top: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}
.website-list-container:not(.processing) .loading {
  display: none;
}

.website-list {
  transition: opacity 0.3s;
}
@media (max-width: 590px) {
  .website-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .website-list {
    gap: 28px;
  }
}

.processing .website-list {
  opacity: 0.5;
}

.website-card {
  margin-bottom: 32px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
  border: 2px solid #FFF;
  transition: border 0.3s;
}
.website-card:hover {
  border: 2px solid rgba(52, 152, 219, 0.4);
}
.website-card:last-child {
  margin-bottom: 0;
}
@media (max-width: 590px) {
  .website-card {
    width: calc(50% - 7px);
    margin: 0;
    border-radius: 10px;
  }
}
@media (max-width: 480px) {
  .website-card {
    width: 100%;
    margin: 0;
  }
}

.website-card-inner {
  display: flex;
  padding: 14px 19px;
  gap: 40px;
}
@media (max-width: 1280px) {
  .website-card-inner {
    padding: 14px;
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .website-card-inner {
    gap: 20px;
  }
}
@media (max-width: 590px) {
  .website-card-inner {
    flex-direction: column;
    gap: 15px;
  }
}

.website-card__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.website-card__details {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.website-card__details > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 590px) {
  .website-card__details > div {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
}
.website-card__details .caption {
  color: #8c8c8c;
  font-size: 0.875rem;
  line-height: 1;
}

.website-card__button {
  display: flex;
  align-items: flex-start;
}

.website-card__image {
  width: 160px;
  flex-shrink: 0;
}
@media (max-width: 1280px) {
  .website-card__image {
    width: 140px;
  }
}
@media (max-width: 590px) {
  .website-card__image {
    width: 100%;
  }
}

.website-card__image-inside {
  position: relative;
  padding-top: 100%;
}
.website-card__image-inside img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  top: 0;
  left: 0;
}
@media (max-width: 480px) {
  .website-card__image-inside img {
    object-fit: cover;
    width: 70%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 480px) {
  .website-card__image-inside {
    padding-top: 40%;
    text-align: center;
  }
}

.website-card__content-bottom {
  display: flex;
  flex-grow: 1;
  gap: 40px;
}
@media (max-width: 1280px) {
  .website-card__content-bottom {
    gap: 20px;
  }
}
@media (max-width: 768px) {
  .website-card__content-bottom {
    flex-direction: column;
  }
  .website-card__content-bottom a, .website-card__content-bottom button {
    width: 100%;
  }
}

.website-card__title {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 15px;
  line-height: 1.2;
}
@media (max-width: 1280px) {
  .website-card__title {
    font-size: 1.25rem;
  }
}
@media (max-width: 768px) {
  .website-card__title {
    font-size: 1.4rem;
  }
}

.platform-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.platform-item img {
  width: 20px;
  opacity: 0.55;
}
@media (max-width: 480px) {
  .platform-item img {
    width: 28px;
  }
}

.payments-list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.payment-item {
  font-size: 0;
  overflow: hidden;
  border-radius: 3px;
  border: 1px solid #e0e0e0;
}
.payment-item img {
  width: 36px;
}
@media (max-width: 1280px) {
  .payment-item img {
    width: 32px;
  }
}
@media (max-width: 480px) {
  .payment-item img {
    width: 42px;
  }
}

.min-deposit {
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1;
}
@media (max-width: 590px) {
  .min-deposit {
    font-size: 1.25rem;
  }
}

.visit-button {
  background-color: #3498db;
  color: #fff;
  padding: 15px 30px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  z-index: 1;
}
@media (max-width: 1280px) {
  .visit-button {
    padding: 15px 20px;
    font-size: 16px;
  }
}
@media (max-width: 590px) {
  .visit-button {
    padding: 12px 20px;
    font-size: 18px;
  }
}

.website-card-inner:hover .visit-button {
  animation: borderPulse 1600ms infinite ease-in-out;
}

@keyframes borderPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(64, 172, 245, 0.7);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
}
.not-found-websites {
  font-size: 1.125rem;
  color: #565656;
  font-weight: 600;
}

.filter-title {
  font-size: 1.5rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.filter-title .filter-title__icon {
  margin-right: 8px;
  font-size: 0;
}
.filter-title .filter-title__icon .open {
  display: block;
}
.filter-title .filter-title__icon .close {
  display: none;
}
@media (max-width: 590px) {
  .filter-title .filter-title__icon .open {
    display: none;
  }
  .filter-title .filter-title__icon .close {
    display: block;
  }
  .filter-title.closed .filter-title__icon .open {
    display: block;
  }
  .filter-title.closed .filter-title__icon .close {
    display: none;
  }
}
.filter-title svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: -2px;
}
@media (max-width: 590px) {
  .filter-title {
    font-size: 1.125rem;
    box-shadow: 0 3px 7px rgba(0, 0, 0, 0.08);
    padding: 12px;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    background: #FFF;
  }
  .filter-title .filter-title__icon {
    margin-right: 6px;
  }
  .filter-title svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.filter-title:active {
  background: #f6f6f6;
}

.filter-container {
  align-self: flex-start;
  width: 360px;
  flex-shrink: 0;
  position: sticky;
  top: 42px;
}
@media (max-width: 1280px) {
  .filter-container {
    width: 300px;
  }
}
@media (max-width: 991px) {
  .filter-container {
    position: relative;
    width: 100%;
    top: 0;
  }
}

.filter-form {
  padding: 20px;
  background: #FFF;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}
@media (max-width: 590px) {
  .filter-form {
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
  }
}

.filter-form__inside {
  margin-top: 20px;
}
@media (max-width: 991px) {
  .filter-form__inside {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
}
@media (max-width: 590px) {
  .filter-form__inside {
    gap: 15px;
  }
}

.filter-item .fieldset {
  padding: 9px 0;
}
.filter-item.w-full {
  width: 100% !important;
}
.filter-item .range {
  width: 100%;
}
@media (max-width: 991px) {
  .filter-item {
    width: calc(50% - 10px);
  }
  .filter-item .fieldset-legend {
    padding-top: 0;
    line-height: 1;
  }
  .filter-item .fieldset {
    padding: 0;
  }
}
@media (max-width: 590px) {
  .filter-item {
    width: calc(50% - 7.5px);
  }
}

.select {
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
  width: 100%;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 7px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.08);
}
.select:hover {
  border: 1px solid #c5c5c5;
  background-color: #f9f9f9;
}
.select:active {
  border: 1px solid #c5c5c5;
  background-color: #f9f9f9;
}

.range-values {
  padding-bottom: 20px;
}
.range-values > div {
  position: relative;
  height: 12px;
  width: 1px;
  background: #4d4d4d;
}
.range-values > div span {
  position: absolute;
  width: 20px;
  height: 20px;
  bottom: -20px;
  padding-top: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: -10px;
  left: 50%;
  font-weight: 600;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 20px 0;
  background: #FFF;
  border-top: 1px solid #EEE;
  gap: 0;
}

.footer__bottom {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1rem;
  color: #606060;
}

.ogma-blogger-background-animation {
  background: transparent;
  width: 100%;
}

.ogma-blogger-circles {
  position: fixed;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.ogma-blogger-circles li {
  position: fixed;
  display: block;
  list-style: none;
  width: 20px;
  height: 20px;
  background: rgba(0, 121, 171, 0.3);
  animation: animate 25s linear infinite;
  bottom: -150px;
  border-radius: 100% !important;
}

.ogma-blogger-circles li:nth-child(1) {
  left: 25%;
  width: 80px;
  height: 80px;
  animation-delay: 0s;
}

.ogma-blogger-circles li:nth-child(2) {
  left: 10%;
  width: 20px;
  height: 20px;
  animation-delay: 2s;
  animation-duration: 12s;
}

.ogma-blogger-circles li:nth-child(3) {
  left: 70%;
  width: 20px;
  height: 20px;
  animation-delay: 4s;
}

.ogma-blogger-circles li:nth-child(4) {
  left: 40%;
  width: 60px;
  height: 60px;
  animation-delay: 0s;
  animation-duration: 18s;
}

.ogma-blogger-circles li:nth-child(5) {
  left: 65%;
  width: 20px;
  height: 20px;
  animation-delay: 0s;
}

.ogma-blogger-circles li:nth-child(6) {
  left: 75%;
  width: 70px;
  height: 70px;
  animation-delay: 3s;
}

.ogma-blogger-circles li:nth-child(7) {
  left: 35%;
  width: 100px;
  height: 100px;
  animation-delay: 7s;
}

.ogma-blogger-circles li:nth-child(8) {
  left: 50%;
  width: 25px;
  height: 25px;
  animation-delay: 15s;
  animation-duration: 45s;
}

.ogma-blogger-circles li:nth-child(9) {
  left: 20%;
  width: 15px;
  height: 15px;
  animation-delay: 2s;
  animation-duration: 35s;
}

.ogma-blogger-circles li:nth-child(10) {
  left: 85%;
  width: 70px;
  height: 70px;
  animation-delay: 0s;
  animation-duration: 11s;
}

.ogma-blogger-circles li:nth-child(11) {
  left: 5%;
  width: 40px;
  height: 40px;
  animation-delay: 0s;
  animation-duration: 11s;
}

.ogma-blogger-circles li:nth-child(12) {
  left: 95%;
  width: 40px;
  height: 40px;
  animation-delay: 0s;
  animation-duration: 11s;
}

@keyframes animate {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 1;
    border-radius: 0;
  }
  100% {
    transform: translateY(-1000px) rotate(720deg);
    opacity: 0;
    border-radius: 50%;
  }
}

.description {
  margin-top: 50px;
  padding: 20px;
  background: #FFF;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
}

.description a {
  color: #3498db;
}

/*# sourceMappingURL=styles.css.map */
