/* Copy Animation */

body {
  font-family: 'Inter', sans-serif;
}

h1, h2, h3, h4, h6 {
  font-weight: 700;
  letter-spacing: 1px;
}


.base-color {
  color: hsl(var(--main)) !important;
}

.cookies-card {
  width: 100%;
  max-width: 520px;
  padding: 32px;
  position: fixed;
  bottom: 16px;
  left: 16px;
  z-index: 999999;
  transition: all .5s;
  border: 1px solid hsl(var(--border-color) / 0.5);
  background-color: hsl(var(--gray-d-400));
  border-radius: 12px;
  text-align: center;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.cookies-card> :not(:last-child) {
  margin-bottom: 24px;
}

.cookies-card__icon {
  --size: 64px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  color: hsl(var(--white));
  background-color: hsl(var(--base));
  font-size: calc(var(--size) * 0.5);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .cookies-card {
    max-width: 450px;
  }

  .cookies-card__icon {
    --size: 56px;
  }
}

@media (max-width: 575px) {
  .cookies-card {
    max-width: calc(100% - 16px);
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;

    padding: 16px;
  }

  .cookies-card__icon {
    --size: 48px;
  }

  .cookies-card__content {
    font-size: 14px;
  }

  .cookies-card> :not(:last-child) {
    margin-bottom: 16px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 270%;
  left: 50%;
  width: 280px;
  background-color: hsl(var(--base-two));
  padding: 16px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  z-index: 9999;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent hsl(var(--base-two)) transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  max-width: max-content;
  color: hsl(var(--gray-d-400));
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}

.input-popup p::before {
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error::after {
  content: '';
  width: 100%;
  height: 1px;
  background-color: hsl(var(--gray-d-400));
  position: absolute;
  top: 50%;
  left: 1px;
  transform: translateY(-50%);
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--main));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--main));
  background-color: #fff;
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--main));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid var(--hover-border-color);
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid rgb(var(--main));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid rgb(var(--main));
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.custom-popover {
  width: 250px;
  position: absolute;
  border-radius: 8px;
  border: 1px solid hsl(var(--border-color) /0.5);
  background-color: hsl(var(--gray-d-400) / 0.5);
  backdrop-filter: blur(8px);
  padding: 12px;
  z-index: 1051;
  display: none;
}

@media screen and (max-width: 767px) {
  .custom-popover {
    width: 230px;
  }
}

@media screen and (max-width: 575px) {
  .custom-popover {
    width: 200px;
  }
}

.custom-popover>:not(:last-child) {
  margin-bottom: 16px;
}

.custom-popover__arrow {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 1px solid hsl(var(--border-color) /0.5);
  background-color: hsl(var(--gray-d-400) / 0.5);
  backdrop-filter: blur(8px);
  transform: rotate(45deg);
  z-index: 1049;
  display: none;
}

.custom-popover__close {
  --size: 24px;
  width: var(--size);
  height: var(--size);
  padding: 0px;
  color: hsl(var(--white));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  font-size: calc(var(--size) * 0.6);
}

.custom-popover__title {
  color: hsl(var(--base-two));
  font-size: 0.875rem;
  line-height: 100%;
}

.custom-popover__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid hsl(var(--white)/0.2);
}

@media screen and (max-width: 767px) {
  .custom-popover__footer .btn {
    font-size: 0.875rem;
    padding: 6px 12px;
  }
}

@media screen and (max-width: 575px) {
  .custom-popover__footer .btn {
    font-size: 0.75rem;
    padding: 4px 8px;
  }
}

.custom-popover-chips {
  --gap: 16px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: var(--gap);
  flex-shrink: 0;
}

.custom-popover-chips__item {
  max-width: max-content;
  flex: 1 0 calc(25% - var(--gap));
}

.custom-popover-chips__icon {
  --size: 40px;
  width: var(--size);
  height: var(--size);
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  margin: 0 auto;
}

@media screen and (max-width: 575px) {
  .custom-popover-chips__icon {
    --size: 32px;
  }
}

.cursor {
  cursor: pointer;
}

.gray-100 {
  color: hsl(var(--gray-l-100));
}

.verification-text {
  font-size: 16px !important;
  margin-bottom: 8px;
}

.instruction--modal .modal-content {
    background: none;
    background-color: #2b3139;
}

.instruction--modal .modal-content h4, p, li {
    color: #FFF;
}

.instruction--modal .modal-content li strong {
    padding: 0 5px;
  	color: #FFF !important;
}

i.fas.fa-dexscreener:before {
    content: "" !important;
 	display: block;
    background-image: url("data:image/svg+xml,%3Csvg version='1.1' xmlns='http://www.w3.org/2000/svg' width='480' height='480'%3E%3Cpath d='M0 0 C158.4 0 316.8 0 480 0 C480 158.4 480 316.8 480 480 C321.6 480 163.2 480 0 480 C0 321.6 0 163.2 0 0 Z ' fill='%23000000' transform='translate(0,0)'/%3E%3Cpath d='M0 0 C2.95241934 0.31935662 3.87005799 0.84668512 5.82421875 3.15234375 C6.74654297 4.53099609 6.74654297 4.53099609 7.6875 5.9375 C11.16210737 10.96000576 14.95534886 15.34185012 19.21484375 19.7109375 C21.22892053 22.29353923 21.83357873 23.74217765 22 27 C21.2578125 29.5 21.2578125 29.5 20.125 32 C15.53702639 42.2667941 15.29363599 54.4224669 19.0625 65 C23.94003858 76.00503134 32.07159953 82.8170655 43.2109375 87.2890625 C50.1479454 89.57942853 56.71682493 90.611564 64 91 C63.67 97.6 63.34 104.2 63 111 C57 114 57 114 54.94091797 114.99438477 C50.11527013 117.33485627 45.62863957 120.03274647 41.125 122.9375 C25.27554627 133 25.27554627 133 21 133 C21 133.66 21 134.32 21 135 C21.72058594 135.28101563 22.44117188 135.56203125 23.18359375 135.8515625 C31.98346386 139.43985905 40.15614928 144.15947563 48.3125 149 C49.16013916 149.49806152 50.00777832 149.99612305 50.88110352 150.50927734 C59.35088867 155.59598022 65.32463822 160.78534549 70.75 169.0625 C71.45189453 170.10374023 71.45189453 170.10374023 72.16796875 171.16601562 C73.464045 173.09911518 74.73516323 175.04637479 76 177 C76.52078125 177.78246094 77.0415625 178.56492187 77.578125 179.37109375 C79.31777391 182.58753254 80.60769865 185.9012991 81.93359375 189.30615234 C82.97452815 191.9356556 84.07999931 194.52480569 85.21875 197.11328125 C85.59386719 197.96986328 85.96898437 198.82644531 86.35546875 199.70898438 C87.11417463 201.43484605 87.87715099 203.15883712 88.64453125 204.88085938 C91.11951509 210.55801303 93.08721895 216.25704468 94.85253906 222.19116211 C96.23033171 226.76455424 97.69498368 231.30684837 99.1640625 235.8515625 C99.73470078 237.62749952 100.30500891 239.40354265 100.875 241.1796875 C101.75137694 243.9100143 102.62974074 246.6396125 103.51464844 249.3671875 C109.5266938 267.91484569 109.5266938 267.91484569 110.59130859 275.82177734 C111.0717492 278.38240522 111.971668 280.61248136 113 283 C113.26570801 282.0527002 113.53141602 281.10540039 113.80517578 280.12939453 C115.16511428 275.37206776 116.64239106 270.65242211 118.1171875 265.9296875 C118.41561554 264.97160187 118.71404358 264.01351624 119.02151489 263.02639771 C119.9719058 259.97569096 120.92340127 256.92533018 121.875 253.875 C122.8168694 250.8536724 123.75850416 247.83227203 124.69978333 244.8107605 C125.30888914 242.85639024 125.91865546 240.9022257 126.52909851 238.94827271 C127.7584461 235.00961026 128.98632331 231.07136259 130.16333008 227.11669922 C132.37972318 219.69981515 135.01908492 212.54366429 137.9375 205.375 C138.35451172 204.3334375 138.77152344 203.291875 139.20117188 202.21875 C148.35295743 179.530243 158.54929344 159.24015483 180.875 147.4375 C182.58081187 146.51968494 184.28654155 145.60171711 185.9921875 144.68359375 C187.23887207 144.01626221 187.23887207 144.01626221 188.51074219 143.33544922 C190.97283496 142.01457363 193.43161075 140.68864321 195.8828125 139.34765625 C196.58035645 138.96746338 197.27790039 138.58727051 197.99658203 138.19555664 C200.11774422 136.92973514 202.05020031 135.51411315 204 134 C203.34 133.67 202.68 133.34 202 133 C202 132.34 202 131.68 202 131 C201.26064209 130.88084229 200.52128418 130.76168457 199.75952148 130.63891602 C197.04398576 130.01018409 195.22819904 129.19259602 192.84765625 127.77734375 C192.07728027 127.32625244 191.3069043 126.87516113 190.51318359 126.41040039 C188.85134905 125.41161101 187.1915785 124.40938087 185.53369141 123.40405273 C181.65145653 121.06721314 177.89637675 118.86302501 173.67578125 117.1953125 C169.82532789 115.59635073 166.88674364 114.12431726 164 111 C162.09070978 104.53895088 162.49265108 97.65064127 163 91 C163.71542969 90.98582031 164.43085938 90.97164063 165.16796875 90.95703125 C178.96673215 90.2965471 191.8465414 84.84243866 201.875 75.25 C208.42589022 65.23099143 211.50433739 54.92100986 209.69140625 42.96484375 C208.5287504 37.9541057 206.58629653 33.25482044 204.609375 28.515625 C204 26 204 26 204.63671875 23.953125 C206.27664323 21.603663 208.09383868 19.5832395 210.0625 17.5 C215.15433927 11.9617982 219.58128679 6.07964797 224 0 C227 1 227 1 228.140625 2.6171875 C230.91856375 8.27087975 233.3064173 14.05981087 235.5625 19.9375 C235.98354004 20.99783447 235.98354004 20.99783447 236.41308594 22.07958984 C237.38579165 24.69437193 238.20573185 27.32524834 239 30 C239.35739258 31.17143555 239.71478516 32.34287109 240.08300781 33.54980469 C244.51037209 49.87875445 243.60507402 67.06739465 243.62164307 83.8449707 C243.63153519 91.30039374 243.67252768 98.75571465 243.7265625 106.2109375 C243.73512394 107.41741692 243.73512394 107.41741692 243.74385834 108.64826965 C243.83108924 119.47452169 244.14422592 130.25067947 244.8671875 141.0546875 C244.94006989 142.17394623 245.01295227 143.29320496 245.08804321 144.44638062 C247.5723548 177.34957599 258.54837194 210.97318446 274 240 C270.594426 240 270.19532698 239.63793578 267.69921875 237.54296875 C267.05863525 237.01276123 266.41805176 236.48255371 265.75805664 235.9362793 C265.07477295 235.35918213 264.39148926 234.78208496 263.6875 234.1875 C262.24308442 232.98850201 260.79775481 231.79060437 259.3515625 230.59375 C258.62356445 229.98917969 257.89556641 229.38460937 257.14550781 228.76171875 C253.99745675 226.17679198 250.78261858 223.68160069 247.5625 221.1875 C242.77514815 217.46960571 238.1967048 213.60876741 233.76953125 209.4609375 C231.95639328 207.78539047 231.95639328 207.78539047 229 207 C229 207.66 229 208.32 229 209 C228.34 209 227.68 209 227 209 C226.88591797 209.7734375 226.88591797 209.7734375 226.76953125 210.5625 C225.66421937 214.0635894 223.66748499 216.94132977 221.6875 220 C217.04816102 227.27868325 212.58571625 234.64984984 208.19995117 242.08398438 C205.33796551 246.89946594 202.32365757 251.4897543 199 256 C195.04611009 254.37692347 192.24186099 251.64718895 189.1875 248.75 C188.63215576 248.23147461 188.07681152 247.71294922 187.50463867 247.17871094 C184.28212659 244.16645002 181.08279552 241.1299011 177.8828125 238.09375 C177.20452393 237.4534082 176.52623535 236.81306641 175.82739258 236.15332031 C174.49731186 234.89689123 173.17152364 233.63590046 171.8503418 232.37011719 C171.24617432 231.79938477 170.64200684 231.22865234 170.01953125 230.640625 C169.48432861 230.13047852 168.94912598 229.62033203 168.39770508 229.09472656 C167.03347582 227.79446258 167.03347582 227.79446258 165 228 C163.7579918 229.51250775 163.7579918 229.51250775 162.56640625 231.5234375 C162.08751953 232.28889893 161.60863281 233.05436035 161.11523438 233.84301758 C160.60283203 234.67857178 160.09042969 235.51412598 159.5625 236.375 C159.03333984 237.22537842 158.50417969 238.07575684 157.95898438 238.9519043 C153.81820674 245.62158432 149.72058874 252.31915964 145.65454102 259.03466797 C143.76203061 262.15526993 141.84542547 265.2318618 139.8203125 268.26953125 C138.3717138 270.4424293 137.08955378 272.57021684 135.875 274.875 C133.10499106 279.93918813 130.03255526 284.79566474 126.95703125 289.67724609 C122.52780661 296.71938274 118.25280988 303.85034861 114 311 C109.81032109 307.38518401 107.52241325 302.95501541 104.875 298.1875 C100.93692047 291.22305711 96.8139842 284.47690602 92.26123047 277.8972168 C90.51179915 275.35282223 88.92756594 272.85493717 87.546875 270.08984375 C85.57120507 266.14349296 83.18245294 262.55170306 80.75 258.875 C76.83244131 252.89580589 73.10794885 246.87238239 69.5703125 240.66015625 C67.56716857 237.26677063 65.35374288 234.04689276 63.06640625 230.83984375 C62 229 62 229 62 226 C58.0422236 229.38209983 54.14900542 232.78357646 50.5 236.5 C47.5116453 239.54244257 44.35979125 242.31832678 41.12109375 245.08984375 C37.90456906 247.98649305 34.94947689 251.12966963 31.98046875 254.27734375 C30 256 30 256 27 256 C25.71313477 254.45874023 25.71313477 254.45874023 24.44140625 252.30859375 C23.73854492 251.13780273 23.73854492 251.13780273 23.02148438 249.94335938 C22.54001953 249.11642578 22.05855469 248.28949219 21.5625 247.4375 C20.84610352 246.23770508 20.84610352 246.23770508 20.11523438 245.01367188 C18.05389374 241.54982788 16.03749867 238.06689157 14.06640625 234.55078125 C11.37635189 229.82103798 8.35512421 225.30001107 5.375 220.75 C4.49714844 219.40421875 4.49714844 219.40421875 3.6015625 218.03125 C1.41351601 214.67892189 -0.77941045 211.33088433 -3 208 C-6.92871953 209.7002038 -10.11598424 212.29046653 -13.4375 214.9375 C-14.05077148 215.42259033 -14.66404297 215.90768066 -15.29589844 216.4074707 C-20.06364787 220.2009994 -24.72571546 224.11010444 -29.36254883 228.06176758 C-32.75498631 230.9518543 -36.16682719 233.81335515 -39.625 236.625 C-40.40101562 237.25664062 -41.17703125 237.88828125 -41.9765625 238.5390625 C-44 240 -44 240 -47 241 C-45.62194197 236.51282582 -43.83284751 232.48427331 -41.6875 228.3125 C-41.05999902 227.07222042 -40.43370834 225.83132781 -39.80859375 224.58984375 C-39.50163574 223.98124512 -39.19467773 223.37264648 -38.87841797 222.74560547 C-35.37751515 215.78855846 -32.60985895 209.22739445 -30.87890625 201.62109375 C-29.53471848 196.08304013 -27.88620929 190.63275002 -26.24438477 185.17626953 C-22.50157147 172.40724891 -20.37925141 159.31475606 -18.83984375 146.1171875 C-18.75314863 145.37883541 -18.66645351 144.64048332 -18.57713127 143.87975693 C-16.28223109 123.7920899 -16.48778392 103.67678238 -16.57373047 83.48681641 C-16.68198731 57.41856988 -15.7008493 34.95934097 -4.81933594 10.82519531 C-3.97400626 8.942095 -3.15968586 7.04777229 -2.3515625 5.1484375 C-1.60732222 3.41474483 -0.84375161 1.68750322 0 0 Z ' fill='%23FBFBFB' transform='translate(127,120)'/%3E%3Cpath d='M0 0 C2.31573278 1.33017319 2.31573278 1.33017319 5.7512207 2.69458008 C9.45074348 4.31634762 12.61272032 6.36466186 15.8605957 8.72973633 C16.46476318 9.15939697 17.06893066 9.58905762 17.69140625 10.03173828 C21.80093468 13.0181725 25.33060053 16.26729389 28.9230957 19.85473633 C32.27638989 23.04104818 32.27638989 23.04104818 36.4387207 24.78051758 C46.91107449 24.24957656 56.1679019 15.18005835 63.1105957 8.16723633 C63.4405957 7.50723633 63.7705957 6.84723633 64.1105957 6.16723633 C64.7705957 6.16723633 65.4305957 6.16723633 66.1105957 6.16723633 C61.88788468 20.17000864 53.53660691 32.18627208 44.1105957 43.16723633 C43.40547852 44.00125977 42.70036133 44.8352832 41.97387695 45.69458008 C31.69465958 57.46183654 20.5049332 68.64278884 8.1105957 78.16723633 C7.08579102 78.98579102 6.06098633 79.8043457 5.00512695 80.64770508 C-1.72859489 85.99554951 -8.64253073 90.78049909 -16.0871582 95.11254883 C-18.09879579 96.28977375 -20.09260551 97.49498518 -22.08862305 98.69848633 C-23.52134902 99.54370901 -24.95493154 100.38748161 -26.3894043 101.22973633 C-27.06011963 101.63651611 -27.73083496 102.0432959 -28.421875 102.46240234 C-31.25053193 104.09126077 -33.28629153 105.18815353 -36.5925293 105.07348633 C-38.98121495 104.13101172 -40.96976034 102.97442163 -43.1394043 101.60473633 C-50.18165137 98.01003708 -58.17649346 97.77792001 -65.8894043 99.16723633 C-69.28689841 100.49782808 -72.20481579 101.9922674 -75.27612305 103.95239258 C-78.67548031 105.5326618 -80.31431095 105.18409042 -83.8894043 104.16723633 C-94.34597242 99.63700654 -103.67332218 92.77783728 -112.8894043 86.16723633 C-113.45079102 85.76714355 -114.01217773 85.36705078 -114.59057617 84.95483398 C-121.22916396 80.19934622 -127.37019589 75.08500606 -133.34643555 69.52270508 C-135.62968562 67.40780524 -137.95848012 65.37293142 -140.3269043 63.35473633 C-143.22650325 60.84253318 -145.49983615 58.17346723 -147.8894043 55.16723633 C-148.9000293 54.36286133 -149.9106543 53.55848633 -150.9519043 52.72973633 C-156.88365988 47.79298491 -161.27991839 41.30015109 -165.8894043 35.16723633 C-166.54295898 34.3190332 -167.19651367 33.47083008 -167.86987305 32.59692383 C-171.58581679 27.5799746 -174.54802097 22.27398941 -177.3894043 16.72973633 C-177.75251709 16.03058105 -178.11562988 15.33142578 -178.48974609 14.61108398 C-181.01038129 9.53016732 -181.01038129 9.53016732 -179.8894043 6.16723633 C-179.46272461 6.72411133 -179.03604492 7.28098633 -178.59643555 7.85473633 C-172.38160595 15.44067267 -163.24408758 23.05237961 -153.3269043 24.79223633 C-150.43680328 24.74081104 -149.21467236 24.4345619 -146.9597168 22.58129883 C-145.53132424 21.04174732 -144.1101997 19.49543873 -142.6940918 17.94458008 C-133.83590727 9.17275669 -122.34698001 1.96183336 -110.8894043 -2.83276367 C-110.21748047 -3.11458496 -109.54555664 -3.39640625 -108.85327148 -3.68676758 C-74.17975297 -17.97530543 -33.19781878 -19.19843301 0 0 Z ' fill='%23FCFCFC' transform='translate(297.889404296875,62.832763671875)'/%3E%3Cpath d='M0 0 C7.85559368 0.29208665 13.79481171 4.70292742 19 10.25 C28.99983758 22.20747774 29.44156571 34.87729614 29.515625 50.00390625 C29.6212479 56.07285608 29.6212479 56.07285608 31.9609375 61.5703125 C34.21991013 63.51938997 36.39634219 64.56599216 39.17578125 65.62109375 C42.70712909 67.10015527 46.11481425 69.06844472 49.125 71.4375 C49.125 72.0975 49.125 72.7575 49.125 73.4375 C47.2890625 74.84765625 47.2890625 74.84765625 44.75 76.5 C35.45342019 82.86427811 27.9524969 89.75412185 22.125 99.4375 C21.77002441 100.0046875 21.41504883 100.571875 21.04931641 101.15625 C10.95964061 117.53864114 5.8475796 136.21029864 0.125 154.4375 C-1.875 153.4375 -1.875 153.4375 -2.69921875 151.1640625 C-2.98410156 150.14054688 -3.26898438 149.11703125 -3.5625 148.0625 C-6.01447303 139.73313842 -9.02078558 131.63752631 -12.08935547 123.51806641 C-12.73428373 121.81014886 -13.37033953 120.09888347 -14.00390625 118.38671875 C-20.78470392 100.59776419 -32.00026463 85.14816483 -47.875 74.4375 C-48.865 74.1075 -49.855 73.7775 -50.875 73.4375 C-50.875 72.7775 -50.875 72.1175 -50.875 71.4375 C-48.62576296 70.1444894 -46.37564815 68.85305023 -44.125 67.5625 C-43.17367187 67.01529297 -43.17367187 67.01529297 -42.203125 66.45703125 C-39.65913443 64.99953665 -37.13495081 63.56067931 -34.484375 62.3046875 C-32.68318058 61.53324174 -32.68318058 61.53324174 -31.875 59.4375 C-31.757596 57.86217823 -31.69616819 56.2824893 -31.6640625 54.703125 C-31.11641731 34.49789965 -29.72382909 19.08989964 -14.390625 4.4453125 C-9.73490538 0.72941206 -5.84487603 0.65990536 0 0 Z ' fill='%23FBFBFB' transform='translate(240.875,181.5625)'/%3E%3Cpath d='M0 0 C1.39783214 0.91361578 2.79316393 1.83105746 4.1875 2.75 C5.35345703 3.51570312 5.35345703 3.51570312 6.54296875 4.296875 C9 6 9 6 11.4375 7.98828125 C14.11914965 10.09353974 16.84888501 11.7556582 19.8125 13.4375 C23.36573211 15.47102867 26.87453161 17.52740715 30.3125 19.75 C33.74418089 21.92987276 37.22217828 23.50461224 41 25 C40 28 40 28 37.91796875 29.16796875 C28.98158048 32.50473175 20.74885568 33.66384129 11.625 30.3125 C5.12072056 27.3209484 0.68044634 23.76280314 -2.30859375 17.109375 C-4.36461647 10.83676332 -2.85826363 5.71652726 0 0 Z ' fill='%23F0F0F0' transform='translate(166,159)'/%3E%3Cpath d='M0 0 C3.25481781 3.25481781 3.207003 6.39828358 3.3125 10.8125 C3.23660012 17.11977993 1.84081324 20.01935398 -2.5078125 24.58203125 C-8.23870078 30.05969423 -14.4649875 32.08746707 -22.3125 32.4375 C-28.61165417 32.28582065 -34.17908948 30.27553919 -40 28 C-40 27.01 -40 26.02 -40 25 C-38.99324219 24.50113281 -37.98648437 24.00226563 -36.94921875 23.48828125 C-23.82773348 16.83997791 -11.73418862 8.85987616 0 0 Z ' fill='%23F2F2F2' transform='translate(314,159)'/%3E%3C/svg%3E");width: 22px;
    height: 22px;
    background-size: 22px;
    background-repeat: no-repeat;
  	border-radius: 1px;
}

.social-list__item:nth-child(3) .social-list__link {
    background: linear-gradient(0deg, #F0B90B, #0000), #1c1c1f;
    color: #fff;
}

h6.game-item-box__title {
	font-size: 16px !important;
}

.social-list__link {
	background: linear-gradient(0deg, #F0B90B, #0000), #1c1c1f !important;
  	color: #fff !important;
}

.social-list__item:nth-child(2) .social-list__link {
    background: linear-gradient(0deg, #F0B90B, #0000), #1c1c1f !important;
    color: #fff;
}