@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;
}
.header .nav {
  display: flex;
  list-style: none;
  align-items: center;
  gap: 1rem;
  padding: 0;
}
.header .nav li:hover {
  text-decoration: underline;
}
.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: 1.5rem 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: 'Bonusser';
  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;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 24px;
}
.main .cards .card__text .text__item {
  flex: 0 0 calc(50% - 0.5rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 10px;
  border: 1px solid #ffc41e;
  padding: 0.5rem;
}
.main .cards .card__text .text__item .title {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.main .cards .card__text .text__item .title img {
  height: 25px;
}
.main .cards .card__text .text__item .subtitle {
  font-size: 14px;
  text-align: left;
}
.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;
  width: 100%;
}
.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;
  width: 100%;
}
.main .cards .card__btn a:hover {
  background-color: #ce9a0c;
  color: #fff;
}
.main .cards .card__btn p {
  color: #868593;
  font-size: 14px;
}
.main .cards .card__content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.main .cards .card__content .card__show__btn {
  display: none;
}
.main .cards .card__content .card__show__btn img {
  height: 15px;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
}
.main .cards .card__content .card__show__btn.active img {
  transform: rotate(-90deg);
}
.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 .cards .card:nth-child(11)::before {
  content: '#11';
}
.main .cards .card:nth-child(12)::before {
  content: '#12';
}
.main .cards .card:nth-child(13)::before {
  content: '#13';
}
.main .cards .card:nth-child(14)::before {
  content: '#14';
}
.main .cards .card:nth-child(15)::before {
  content: '#15';
}
.main .cards .card:nth-child(16)::before {
  content: '#16';
}
.main .cards .card:nth-child(17)::before {
  content: '#17';
}
.main .cards .card:nth-child(18)::before {
  content: '#18';
}
.main .cards .card:nth-child(19)::before {
  content: '#19';
}
.main .cards .card:nth-child(20)::before {
  content: '#20';
}
.main .cards .card:nth-child(21)::before {
  content: '#21';
}
.main .cards .card:nth-child(22)::before {
  content: '#22';
}
.main .cards .card:nth-child(23)::before {
  content: '#23';
}
.main .cards .card:nth-child(24)::before {
  content: '#24';
}
.main .cards .card:nth-child(25)::before {
  content: '#25';
}
.main .cards .card:nth-child(26)::before {
  content: '#26';
}
.main .cards .card:nth-child(27)::before {
  content: '#27';
}
.main .cards .card:nth-child(28)::before {
  content: '#28';
}
.main .cards .card:nth-child(29)::before {
  content: '#29';
}
.main .cards .card:nth-child(30)::before {
  content: '#30';
}
.main .cards .card:nth-child(31)::before {
  content: '#31';
}
.main .cards .card:nth-child(32)::before {
  content: '#32';
}
.main .cards .card:nth-child(33)::before {
  content: '#33';
}
.main .cards .card:nth-child(34)::before {
  content: '#34';
}
.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;
}

.main .cards .card .card__pay {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.main .cards .card .card__pay .card__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-radius: 20px;
  border: 1px solid #ffc41e;
  padding: 1rem;
  position: relative;
}
.main .cards .card .card__pay .card__payments::before {
  content: 'Payments';
  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%);
  text-align: center;
}
.main .cards .card .card__pay .card__payments .payment__icon {
  width: 48px;
  height: 25px;
  box-shadow: 0 1px 4px 0 #fff;
  border-radius: 6px;
  position: relative;
  background-color: #fff;
}
.main .cards .card .card__pay .card__payments .payment__icon img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.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: 10px;
  border: 1px solid #ffc41e;
  display: flex;
  justify-content: flex-start;
  height: 50px;
  width: 85px;
  overflow: hidden;
}
.popup__img .img img {
  padding: 5px;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.popup__text {
  font-weight: 500;
}
.popup__btn {
  display: flex;
  justify-content: center;
  width: 80%;
  background-color: #ffc41e;
  color: #694900;
  padding: 12px;
  border-radius: 20px;
  font-weight: 700;
  width: 150px;
  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;
}
.gcb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.gcb img {
  height: 35px;
}

@media (max-width: 768px) {
  h1 {
    margin: 20px 0;
    font-size: 22px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
}
@media (max-width: 768px) and (max-width: 768px) {
  .header {
    padding: 10px 0;
  }
  .header .container .logo {
    flex: auto;
  }
  .header .container .logo img {
    max-width: 80px;
  }
  .header .container .auth {
    display: none;
  }
  .header .nav {
    display: none;
  }
  .header__burger {
    display: block;
    position: relative;
    width: 30px;
    height: 20px;
    z-index: 3;
  }
  .header__burger::after,
  .header__burger::before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease 0s;
    border-radius: 10px;
  }
  .header__burger::before {
    top: 0;
  }
  .header__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease 0s;
    top: 9px;
  }
  .header__burger::after {
    bottom: 0;
  }
  .header__burger.active::before {
    transform: rotate(45deg);
    top: 9px;
  }
  .header__burger.active span {
    transform: scale(0);
  }
  .header__burger.active::after {
    transform: rotate(-45deg);
    bottom: 9px;
  }
  .header .nav.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1;
    padding: 0 16px;
    font-size: 20px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: #20022e;
    transition: all 0.3s ease 0s;
  }
  h1 {
    margin: 5px 0;
    font-size: 18px;
  }
  h2 {
    font-size: 24px;
    margin: 15px 0;
  }
  h3 {
    font-size: 20px;
    margin: 10px 0;
  }
  .container {
    max-width: 100%;
  }
  .header .container {
    gap: 15px;
  }
  .main {
    padding: 10px 0 30px 0;
  }
  .main .content img {
    max-width: 100%;
  }
  .main .cards .card__img {
    flex-direction: row;
  }
  .main .cards .card {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.3rem;
  }
  .main .card .card__text {
    display: none;
  }
  .main .cards .card__content .card__show__btn {
    text-align: center;
    background-color: #694900;
    padding: 0.5rem;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    gap: 1rem;
  }
  .main .card .card__text.active {
    display: flex;
  }
  .main .cards .card__bonus {
    font-size: 20px;
    padding: 1rem;
  }
  .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: 85px;
  }
  .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;
  }
}

/* popup */

.popup1 {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  display: none;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}
.popup1 .popup-overlay {
  background: #071e214d;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup1 .popup-box {
  background: #222222;
  border-radius: 24px;
  display: flex;
  gap: 1rem;
  max-width: 70vw;
  height: 498px;
  min-height: auto;
  margin: 0 auto;
  position: relative;
  min-width: 800px;
  overflow: hidden;
}
.popup1 .popup-banner,
.popup1 .popup-banner img {
  height: 100%;
}
.popup1 .popup-banner .mob-banner {
  display: none;
}
.popup1 .popup-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 40px 24px 32px 0;
  height: 100%;
  gap: 1.5rem;
}
.popup1 .popup-box .popup-close {
  position: absolute;
  right: 3px;
  top: 3px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  transition: background 0.2s ease-in-out;
  z-index: 1;
}
.popup1 .popup-box .popup-close:hover {
  background: rgba(255, 255, 255, 0.9);
}
.popup1 .popup-box .popup-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  max-width: 90%;
}
.popup1 .popup-box .popup-header .popup-title {
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  line-height: 34px;
}
.popup1 .popup-box .popup-header .popup-subtitle {
  color: #fff;
  line-height: 24px;
}
.popup1 .popup-box .popup-cards {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 100%;
}
.popup1 .popup-box .popup-cards .popup-card {
  max-width: 100%;
  flex: 1;
}
.popup1 .popup-box .popup-card {
  background: #404141;
  border-radius: 12px;
  width: 100%;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.popup1 .popup-box .popup-card .popup-card-main {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.popup1 .popup-box .popup-card .popup-card-main .popup-img {
  width: 88px;
  height: 88px;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
  flex: 0 0 88px;
  transition: all 0.2s ease-in-out;
}
.popup1 .popup-box .popup-card .popup-card-main .popup-img:hover {
  transform: scale(1.1);
}
.popup1 .popup-box .popup-card .popup-card-main .popup-img img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.popup1 .popup-box .popup-card .popup-card-main .popup-card-title {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.popup1 .popup-box .popup-card .popup-card-main .popup-card-text {
  color: #fff;
  font-size: 15px;
}
.popup1 .popup-box .popup-card .popup-card-main .popup-card-bonus {
  color: #fff;
  font-weight: 700;
  line-height: 22px;
}
.popup1
  .popup-box
  .popup-card
  .popup-card-header
  .popup-card-title
  .popup-card-rate
  img {
  max-width: 100px;
}
.popup1 .popup-box .popup-card .popup-btn {
  display: flex;
  justify-content: center;
  text-align: center;
  background: linear-gradient(90deg, #ff4400 0%, #ffd900 100%);
  border: 4px solid #000000d9;
  border-radius: 9999px;
  padding: 12px;
  color: #090909;
  text-decoration: none;
  font-weight: 800;
  width: 150px;
  font-size: 16px;
  transition: all 0.3s ease-in-out;
}
.popup1 .popup-box .popup-card .popup-btn:hover {
  background: linear-gradient(90deg, #ffd900 0%, #ff4400 100%);
}
.popup1 .popup-box .popup-card .mob-bonus {
  display: none;
}

@media (max-width: 1199px) {
  .popup1 .popup-box {
    flex-direction: column;
    align-items: normal;
    height: auto;
    padding: 0;
    overflow-y: auto;
  }
  .popup1 .popup-content {
    padding: 0 12px 16px;
    gap: 1rem;
  }
  .popup1 .popup-banner .desk-banner {
    display: none;
  }
  .popup1 .popup-banner .mob-banner {
    height: auto;
    display: block;
    max-width: 60%;
    margin: 0 auto;
  }
  .popup1 .popup-box .popup-card .popup-card-main .popup-card-title {
    gap: 0.25rem;
  }
  .popup1 .popup-box .popup-card .popup-card-main .popup-card-bonus {
    display: none;
  }
  .popup1 .popup-box .popup-card .popup-card-main .popup-img {
    width: 60px;
    height: 60px;
    flex: auto;
  }
  .popup1 .popup-box .popup-card .popup-card-main {
    flex: 1;
  }
  .popup1 .popup-box .popup-card {
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 8px;
    gap: 0.5rem;
  }
  .popup1 .popup-box .popup-card .popup-btn {
    font-size: 14px;
    padding: 10px;
    width: 120px;
  }
  .popup1 .popup-box .popup-card .mob-bonus {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    font-weight: 700;
    line-height: 16px;
    color: #fff;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding-top: 0.5rem;
    width: 100%;
  }
}

@media (max-width: 768px) {
  .popup1 .popup-box {
    max-width: 90vw;
    min-width: 90%;
    min-height: auto;
  }
  .popup1 .popup-box .popup-card {
    max-width: 100%;
  }
  .popup1 .popup-box .popup-header {
    gap: 12px;
    max-width: 100%;
  }
  .popup1 .popup-box .popup-header .popup-title {
    font-size: 20px;
    line-height: 28px;
  }
  .popup1 .popup-banner {
    height: auto;
  }
  .popup1 .popup-box .popup-header .popup-subtitle {
    font-size: 14px;
  }
  .popup1 .popup-box .popup-card .popup-card-header {
    flex-direction: row;
    padding: 12px;
  }
  .popup1 .popup-box .popup-card .popup-card-header .popup-card-title {
    align-items: flex-start;
  }
  .popup1 .popup-box .popup-card .popup-card-footer {
    padding: 12px;
  }
}
@media (max-height: 640px) {
  .popup1 .popup-box {
    height: auto;
  }
}
