@charset "UTF-8";
/***
    The new CSS reset - version 1.8.5 (last updated 14.6.2023)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
    - The "html" attribute is exclud, because otherwise a bug in Chrome breaks the CSS hyphens property (https://github.com/elad2412/the-new-css-reset/issues/36)
 */
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900&display=swap);
*:where(
    :not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)
  ) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-inline-size: 100%;
  max-block-size: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* Safari - solving issue when using user-select:none on the <body> text input doesn't working */
input,
textarea {
  -webkit-user-select: auto;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
  appearance: revert;
}

/* preformatted text - use only for this feature */
:where(pre) {
  all: revert;
}

/* reset default text opacity of input placeholder */
::-moz-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* remove default dot (•) sign */
::marker {
  content: initial;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly.
   - webkit-user-select: auto; added for Safari in case of using user-select:none on wrapper element */
:where([contenteditable]:not([contenteditable="false"])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Revert Modal native behavior */
:where(dialog:modal) {
  all: revert;
}

html,
body {
  font-weight: 400;
  font-family: "Montserrat", sans-serif;
  color: #fff;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
  background: #20022e;
}

p {
  line-height: 150%;
}

h1 {
  font-size: 42px;
  font-weight: 800;
  text-align: center;
  margin: 25px 0;
  color: #ffc41e;
}

h2 {
  font-size: 32px;
  font-weight: 600;
  margin: 20px 0;
  text-align: center;
}

h3 {
  font-size: 26px;
  font-weight: 600;
  margin: 15px 0;
}

ol {
  list-style: decimal;
  padding: 15px 25px;
}

ul {
  list-style: disc;
  padding: 15px 25px;
}

li {
  line-height: 150%;
}

ol li::marker,
ul li::marker {
  color: #233d50;
}

table {
  border-collapse: collapse;
  width: 100%;
  overflow-x: auto;
  margin: 20px 0;
  overflow: auto;
}
table tr td,
table tr th {
  border: 1px solid #333;
  padding: 15px;
}
table tr th {
  background-color: #ffc41e;
  color: #333;
  font-weight: 500;
  font-size: 18px;
  text-align: center;
}

.header {
  position: sticky;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  background: #1d1c30;
  padding: 20px 0;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .container .logo {
  flex: 0 0 80px;
}
.header .container .auth {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header .container .auth .btn {
  border-radius: 6px;
  padding: 12px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 150px;
}
.header .container .auth .btn-1 {
  border: 1px solid #fff;
}
.header .container .auth .btn-1:hover {
  background: rgba(255, 255, 255, 0.1254901961);
}
.header .container .auth .btn-2 {
  background: #ffc41e;
  color: #fff;
  font-weight: 600;
}
.header .container .auth .btn-2:hover {
  background: #967007;
}

.main {
  height: 100%;
  flex: 1 1 auto;
  padding: 50px 0;
}
.main .subtitle {
  text-align: center;
  font-size: 18px;
}
.main .cards {
  margin: 30px 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.main .cards .cards__wrapper {
  padding: 0.1rem;
  background: linear-gradient(90deg, #ffc41e 0%, #e60b10 100%);
  border-radius: 10px;
}
.main .cards .card {
  background: #1d1c30;
  display: grid;
  justify-content: space-between;
  grid-template-columns: 0.5fr 0.5fr 1fr 0.5fr;
  align-items: center;
  gap: 1rem;
  padding: 1rem 2rem;
  position: relative;
  border-radius: 10px;
}
.main .cards .card::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  top: -1.2rem;
  width: 100px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  border-radius: 10px;
  border-top-left-radius: 10px;
  background-color: #ccc;
  color: #000;
}
.main .cards .card__img {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
}
.main .cards .card__img .img {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 1rem;
  height: 120px;
  display: flex;
  justify-content: center;
}
.main .cards .card__img .img img {
  -o-object-fit: contain;
  object-fit: contain;
}
.main .cards .card__name {
  font-size: 18px;
  font-weight: 600;
  color: #ffc41e;
}
.main .cards .card__rate {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main .cards .card__rate img {
  width: 18px;
  height: 18px;
}
.main .cards .card__bonus {
  border: 1px solid #ffc41e;
  font-size: 24px;
  font-weight: 700;
  border-radius: 10px;
  padding: 1rem;
  text-align: center;
  position: relative;
}
.main .cards .card__bonus::before {
  content: "Bonuslar";
  position: absolute;
  width: 50%;
  background-color: #ffc41e;
  border-radius: 10px;
  color: #111;
  top: -13px;
  font-weight: 700;
  padding: 0.2rem;
  font-size: 16px;
  left: 50%;
  transform: translate(-50%);
}
.main .cards .card__text {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 24px;
}
.main .cards .card__text strong {
  font-weight: 800;
}
.main .cards .card__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
}
.main .cards .card__btn a {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #ffc41e;
  color: #694900;
  padding: 12px;
  border-radius: 20px;
  font-weight: 700;
  transition: all 0.2s ease-in-out;
}
.main .cards .card__btn a:hover {
  background-color: #ce9a0c;
  color: #fff;
}
.main .cards .card__btn p {
  color: #868593;
  font-size: 14px;
}
.main .cards .card__btn .lic {
  width: 75px;
  height: 75px;
  background-color: #61606e;
  padding: 0.5rem;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.main .cards .cards__wrapper:nth-child(1) .card::before {
  content: "TOP 1";
  background: linear-gradient(90deg, #ffc41e 0%, #e60b10 100%);
  color: #fff;
}
.main .cards .cards__wrapper:nth-child(2) .card::before {
  content: "TOP 2";
  background: linear-gradient(90deg, #ffc41e 0%, #e60b10 100%);
  color: #fff;
}
.main .cards .cards__wrapper:nth-child(3) .card::before {
  content: "TOP 3";
  background: linear-gradient(90deg, #ffc41e 0%, #e60b10 100%);
  color: #fff;
}
.main .cards .card:nth-child(4)::before {
  content: "#4";
}
.main .cards .card:nth-child(5)::before {
  content: "#5";
}
.main .cards .card:nth-child(6)::before {
  content: "#6";
}
.main .cards .card:nth-child(7)::before {
  content: "#7";
}
.main .cards .card:nth-child(8)::before {
  content: "#8";
}
.main .cards .card:nth-child(9)::before {
  content: "#9";
}
.main .cards .card:nth-child(10)::before {
  content: "#10";
}
.main .content {
  border-radius: 6px;
  padding: 20px;
  margin: 20px 0;
  background: #1d1c30;
}
.main .content p {
  margin: 15px 0;
}
.main .content img {
  display: flex;
  margin: 0 auto;
  max-width: 500px;
}

.container {
  max-width: 90vw;
  margin: 0 auto;
  padding: 0 16px;
}

.footer {
  padding: 30px 0 100px;
  background-color: #1d1c30;
  border-top: 1px solid #fff;
}
.footer .container {
  display: flex;
  justify-content: center;
  text-align: center;
}
.footer .container p {
  font-size: 13px;
}
.footer .container .flex {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .container .icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.footer .container .icons img {
  height: 40px;
}

.popup.active {
  height: 80px;
}
.popup.active .close-btn svg {
  transform: rotate(0deg);
}

.popup {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  border-top: 1px solid #ffc41e;
  background-color: #050322;
  height: 0;
  transition: height 0.3s ease-in-out;
}
.popup .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1rem 0;
}
.popup__img {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.popup__img .img {
  align-items: center;
  border-radius: 50%;
  border: 1px solid #ffc41e;
  display: flex;
  justify-content: flex-start;
  height: 50px;
  width: 50px;
  overflow: hidden;
}
.popup__img .img img {
  padding: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.popup__text {
  font-weight: 600;
}
.popup__btn {
  display: flex;
  justify-content: center;
  width: 100%;
  background-color: #ffc41e;
  color: #694900;
  padding: 12px;
  border-radius: 20px;
  font-weight: 700;
  width: 200px;
  transition: all 0.2s ease-in-out;
}
.popup__btn:hover {
  background-color: #ce9a0c;
  color: #fff;
}
.popup .close-btn {
  align-items: flex-start;
  background: #000;
  border-top: 1px solid #ffc41e;
  border-left: 1px solid #ffc41e;
  border-right: 1px solid #ffc41e;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  padding: 5px;
  height: 25px;
  width: 40px;
}
.popup .close-btn svg {
  fill: #fff;
  transition: all 0.2s ease-in-out;
  height: 15px;
  transform: rotate(180deg);
}
.popup__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.popup__content .stars {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.popup__content .stars img {
  width: 20px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header .container .logo {
    flex: auto;
  }
  .header .container .logo img {
    max-width: 80px;
  }
  h1 {
    margin: 20px 0;
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    flex-direction: column;
    gap: 15px;
  }
  .main {
    padding: 30px 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .cards .card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
  }
  .main .cards .card__bonus {
    font-size: 20px;
    padding: 1.5rem;
  }
  .popup .container {
    max-width: 95vw;
    margin: 0 auto;
    padding: 0.5rem;
    gap: 0.5rem;
  }
  .popup__btn {
    font-size: 14px;
    width: 150px;
    padding: 8px;
    flex: 1 1 50%;
    text-align: center;
  }
  .popup__img .stars img {
    width: 15px;
  }
  .popup__img .img {
    width: auto;
  }
  .popup__text {
    font-size: 13px;
  }
}
@keyframes _ngcontent-wlc-app-c30_sheen {
  0% {
    transform: skewY(-45deg) translateX(0);
  }
  50%,
  100% {
    transform: skewX(-45deg) translateX(22em);
    transition: all 0.5s ease-in-out;
  }
}
