@charset "utf-8";
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Medium.woff') format('woff'),
    url('/fonts/Gilroy-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-SemiBold.woff') format('woff'),
    url('/fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-Bold.woff') format('woff'),
    url('/fonts/Gilroy-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Gilroy';
  src: url('/fonts/Gilroy-ExtraBold.woff') format('woff'),
    url('/fonts/Gilroy-ExtraBold.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
.crypto {
  font-size: 1.111111vw;
  --font: Gilroy, -apple-system, 'Open Sans', system-ui, 'sans-serif';
  --white: #fff;
  --white10: rgba(255, 255, 255, 0.1);
  --border: rgba(181, 181, 181, 0.1);
  --grey: #89859d;
  --light-grey: #a29dba;
  --dark-grey: #484554;
  --black: #080610;
  --light-dark: #1d1b26;
  --medium-dark: #13111a;
  --red: #ff3f56;
}
.crypto,
.crypto_body {
  height: 100%;
  box-sizing: border-box;
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased;
}
.crypto_body {
  margin: 0;
  padding: 0;
  background: var(--black);
  color: var(--grey);
  font: 500 16px/1.3 var(--font);
  -webkit-text-size-adjust: none;
  display: flex;
  flex-direction: column;
}
.crypto,
.crypto *,
.crypto *:before,
.crypto *:after {
  box-sizing: border-box;
}
.crypto img,
.crypto picture,
.crypto svg {
  vertical-align: top;
  margin: 0;
  padding: 0;
  outline: none;
}
.crypto form,
.crypto fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}
.mfp-hide {
  display: none !important;
}
.swiper {
  overflow: hidden;
}
.swiper-wrapper {
  display: flex;
}
.swiper-slide {
  flex: 0 0 auto;
}
.crypto_container {
  position: relative;
  padding: 0 30px;
  flex: 0 0 auto;
  width: 100%;
  margin: 0 auto;
  max-width: 1360px;
}
.crypto_btn {
  -webkit-appearance: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  flex: 0 0 auto;
  max-width: 100%;
  vertical-align: top;
  align-items: center;
  justify-content: center;
  text-align: left;
  text-decoration: none;
  outline: none;
  border: 0;
  position: relative;
  font-weight: bold;
  line-height: 1.3;
  font-family: var(--font);
  text-transform: none;
  letter-spacing: normal;
  width: 370px;
  margin: 0;
  padding: 0 24px;
}
.crypto_btn > * {
  position: relative;
  z-index: 2;
}
.crypto_btn:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border-radius: inherit;
  background: rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  opacity: 0;
  z-index: 1;
}
@media (pointer: fine) {
  .crypto_btn:hover:after {
    opacity: 1;
  }
}
.crypto_btn:active:after {
  opacity: 1;
  transition: none;
}
.crypto_btn:active > * {
  opacity: 0.7;
  transition: none;
}
.crypto_btn-white {
  background: var(--white);
  color: var(--black);
}
.crypto_btn-blue {
  background: linear-gradient(90deg, #5364fe 0%, #7acdfc 100%);
  color: var(--white);
}
.crypto_btn-orange {
  background: linear-gradient(90deg, #e571ff 0%, #ff8937 97.22%);
  color: var(--white);
}
.crypto_mainwrap {
  flex: 0 0 auto;
  width: 100%;
  min-height: 100%;
  margin: 0 auto;
  position: relative;
  display: flex;
  flex-direction: column;
}
.crypto_header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  backface-visibility: hidden;
}
.crypto_header .crypto_container {
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1340px;
}
.crypto_header .crypto_logo {
  flex: 0 0 auto;
  line-height: 0;
  margin-right: auto;
}
.crypto_header .crypto_logo img {
  height: 26px;
  width: auto;
}
.crypto_header .crypto_btn {
  width: auto;
  height: 40px;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 600;
  border-radius: 12px;
}
.crypto_h1 {
  text-align: center;
  color: var(--white);
  font-weight: 900;
  margin: 0;
  text-transform: uppercase;
}
.crypto_h2 {
  color: var(--white);
  text-align: center;
  font-weight: bold;
  line-height: 1.15;
}
.crypto_hover {
  display: inline-block;
  vertical-align: top;
  position: relative;
  white-space: nowrap;
  color: inherit;
}
@media (pointer: fine) {
  .crypto_hover:before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(90deg, #5364fe 0%, #7acdfc 100%);
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  a.crypto_hover:hover:before {
    opacity: 1;
  }
}
.crypto_grad-blue,
.crypto_grad-orange,
.crypto_grad-blue1,
.crypto_grad-blue2 {
  display: inline-block;
  vertical-align: top;
  position: relative;
  top: -1px;
}
.crypto_grad-blue:before,
.crypto_grad-orange:before,
.crypto_grad-blue1:before,
.crypto_grad-blue2:before {
  content: attr(data-text);
  position: absolute;
  top: 1px;
  left: 0;
}
.crypto_grad-blue1:before {
  background: linear-gradient(90.56deg, #5364fe 0%, #6299ff 100%);
}
.crypto_grad-blue2:before {
  background: linear-gradient(90.56deg, #6299ff 0%, #7acdfc 100%);
}
.crypto_grad-blue:before {
  background: linear-gradient(90.56deg, #5364fe 57.48%, #7acdfc 80.04%);
}
.crypto_grad-orange:before {
  background: radial-gradient(100% 2339.91% at 0% 0%, #e571ff 9.59%, #ff8933 100%);
}
.crypto_grad-blue:before,
.crypto_grad-orange:before,
.crypto_grad-blue1:before,
.crypto_grad-blue2:before {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.crypto_top-text {
  text-align: center;
  line-height: 1.3;
  color: var(--light-grey);
}
.crypto_top-text strong {
  font-weight: inherit;
  color: var(--white);
}
.crypto_nowrap {
  white-space: nowrap;
}
.crypto_bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.crypto_bg > * {
  position: absolute;
  border-radius: 50%;
  backface-visibility: hidden;
  transform: translate3d(-50%, 0, 0) rotate(45deg);
  left: 50%;
  border: 1px solid var(--border);
  width: 145.625em;
  height: 145.625em;
}
.crypto_bg > *:nth-child(1) {
  top: -105.75em;
  margin-left: -37.6875em;
  background: linear-gradient(235.11deg, #181422 16.51%, #0b0a10 58.91%);
}
.crypto_bg > *:nth-child(2) {
  top: -98.125em;
  margin-left: -34.5625em;
}
.crypto_bg > *:nth-child(3) {
  top: -90em;
  margin-left: -32.6875em;
}
.crypto_bg > *:nth-child(4) {
  width: 40.25em;
  height: 40.25em;
  top: 38.75em;
  background: linear-gradient(90deg, #118dff 0%, #001aff 100%);
  filter: blur(21.875em);
  transform: translate3d(-50%, 0, 0) rotate(180deg);
}
.crypto_bg > *:nth-child(5) {
  background: linear-gradient(180deg, rgba(24, 20, 34, 0.4) 69.58%, rgba(11, 10, 16, 0.4) 100%);
  backdrop-filter: blur(35px);
  -webkit-backdrop-filter: blur(35px);
  transform: translate3d(-50%, 0, 0) rotate(-135deg);
  top: 24.375em;
  margin-left: -39.0625em;
}
.crypto_top-block {
  overflow: hidden;
}
.crypto_top-block .crypto_h1 {
  max-width: 1100px;
  margin: 0 auto;
}
.crypto_top-block .crypto_btn {
  margin: 0 auto;
}
.crypto_top-block .crypto_top {
  position: relative;
}
.crypto_top-block .crypto_top:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  z-index: 2;
  background: linear-gradient(to bottom, rgba(8, 6, 16, 0) 0%, var(--black) 100%);
}
.crypto_top-block .crypto_image {
  max-width: 1200px;
  min-width: 802px;
  margin: 0 auto;
  position: relative;
  background: radial-gradient(993.23% 2266.7% at 0% 0%, #707df8 0%, #7cb5f7 100%);
}
.crypto_top-block .crypto_image:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 1px 1px 0 1px;
  background: #161618;
}
.crypto_top-block .crypto_image img {
  width: 100%;
  height: auto;
  position: relative;
}
.crypto_top-block .crypto_stat {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 940px;
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: flex;
  align-items: flex-start;
}
.crypto_top-block .crypto_stat li {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
}
.crypto_top-block .crypto_stat strong {
  display: block;
  color: var(--white);
  font-weight: 900;
  line-height: 1;
  letter-spacing: normal;
}
.crypto_top-block .crypto_info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  line-height: 1.35;
  color: var(--grey);
  margin: 40px auto 0 auto;
  max-width: 940px;
}
.crypto_top-block .crypto_info > * {
  display: flex;
  align-items: center;
  gap: 10px 15px;
}
.crypto_top-block .crypto_info a {
  text-decoration: underline;
}
.crypto_top-block .crypto_info img {
  flex: 0 0 auto;
  width: auto;
}
.crypto_section .crypto_btn {
  margin: 0 auto;
}
.crypto_connection {
  overflow: hidden;
}
.crypto_connection .crypto_h1 {
  margin: 0 auto 20px auto;
  max-width: 13.158em;
}
.crypto_connection .crypto_h2 {
  margin-bottom: 20px;
}
.crypto_connection .crypto_top-text {
  margin: 0 auto;
  max-width: 40em;
}
.crypto_connection-slider {
  margin-top: 20px !important;
}
.crypto_connection-slider {
  overflow: visible !important;
  width: auto !important;
  position: relative;
}
.crypto_connection-slider:before,
.crypto_connection-slider:after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  margin: -1px 0;
  pointer-events: none;
  z-index: 2;
}
.crypto_connection-slider:before {
  left: 0;
  background: linear-gradient(to right, var(--black) 2.48%, rgba(8, 6, 16, 0) 100%);
}
.crypto_connection-slider:after {
  right: 0;
  background: linear-gradient(to right, rgba(8, 6, 16, 0) 0%, var(--black) 97.52%);
}
.crypto_connection-slider .swiper-wrapper {
  transition-timing-function: linear;
}
.crypto_connection-slider img {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, #120e20 0%, #080610 100%);
  border: 1px solid var(--border);
  object-fit: cover;
  object-position: center;
  min-height: 80px;
}
.crypto_widgets .crypto_block {
  position: relative;
  backface-visibility: hidden;
}
.crypto_widgets .crypto_block > *:not(.crypto_bg) {
  position: relative;
}
.crypto_widgets .swiper {
  width: auto !important;
}
.crypto_widgets-thumbs .swiper-slide {
  width: auto;
  margin: 0 5px;
  cursor: pointer;
  user-select: none;
  font-weight: bold;
  font-size: 18px;
  letter-spacing: 1.45;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  border-radius: 25px;
  padding: 0 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  transition-property: color, background;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.crypto_widgets-thumbs .swiper-slide:first-child {
  margin-left: auto;
}
.crypto_widgets-thumbs .swiper-slide:last-child {
  margin-right: auto;
}
@media (pointer: fine) {
  .crypto_widgets-thumbs .swiper-slide:not(.swiper-slide-thumb-active):hover {
    background: rgba(255, 255, 255, 0.24);
  }
}
.crypto_widgets-thumbs .swiper-slide:not(.swiper-slide-thumb-active):active {
  color: rgba(255, 255, 255, 0.7);
  transition: none;
}
.crypto_widgets-thumbs .swiper-slide-thumb-active {
  cursor: default;
  background: var(--white);
  color: var(--black);
}
.crypto_widgets-slider,
.crypto_widgets-slider .swiper-wrapper {
  position: relative;
}
.crypto_widgets-slider .swiper-slide {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background: radial-gradient(993.23% 2266.7% at 0% 0%, #707df8 0%, #7cb5f7 100%);
}
.crypto_widgets-slider .swiper-slide:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  margin: 1px 1px 0 1px;
  background: #161618;
}
.crypto_widgets-slider img {
  position: relative;
  flex: 0 0 auto;
  width: 100%;
  height: auto;
}
.crypto_widgets-slider .swiper-slide:not(.swiper-slide-active) {
  opacity: 0 !important;
  pointer-events: none !important;
}
.crypto_widgets-slider .swiper-slide.swiper-slide-active {
  opacity: 1 !important;
}
.crypto_widgets .crypto_sides {
  display: flex;
  gap: 20px;
}
.crypto_widgets .crypto_side {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  backface-visibility: hidden;
  transform: translateZ(0);
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: 100% 0, 50% 50%;
  border: 1px solid var(--border);
  border-radius: 40px;
}
.crypto_widgets .crypto_text {
  flex: 1 0 auto;
}
.crypto_widgets .crypto_text strong {
  font-weight: bold;
  color: var(--white);
}
.crypto_widgets .crypto_image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: top left;
}
.crypto_broker .crypto_block {
  position: relative;
}
.crypto_broker .crypto_block > * {
  position: relative;
  z-index: 3;
}
.crypto_broker .crypto_top-text {
  margin: 0 auto 60px auto;
  max-width: 900px;
}
.crypto_broker .crypto_image {
  position: relative;
}
.crypto_broker .crypto_image:after {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  border: 1px solid transparent;
  background: linear-gradient(90deg, #e571ff 0%, #ff8937 97.22%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: inherit;
}
.crypto_broker .crypto_image img {
  width: 100%;
  height: auto;
  display: block;
  position: relative;
}
.crypto_test .crypto_h1 {
  margin: 0 auto;
  max-width: 13.157em;
}
.crypto_test .crypto_sides {
  display: flex;
  gap: 20px;
  margin: 0 auto;
  max-width: 1200px;
}
.crypto_test .crypto_side {
  display: flex;
  flex-direction: column;
  gap: 30px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border: 1px solid var(--border);
  overflow: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
}
.crypto_test .crypto_text {
  flex: 1 0 auto;
  position: relative;
  z-index: 2;
}
.crypto_test .crypto_text strong {
  font-weight: bold;
  color: var(--white);
}
.crypto_test .crypto_image {
  flex: 0 0 auto;
  z-index: 1;
  position: relative;
}
.crypto_test .crypto_image img {
  width: 100%;
  height: auto;
}
.crypto_tools .crypto_grid {
  margin: 0 auto;
  max-width: 1200px;
  gap: 20px;
  display: grid;
}
.crypto_tools .crypto_el {
  position: relative;
  background: linear-gradient(180deg, #0e1326 0%, #060910 99.06%);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  backface-visibility: hidden;
  overflow: hidden;
  transform: translateZ(0);
}
.crypto_tools .crypto_el img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
}
.crypto_tools .crypto_h2 {
  text-align: inherit;
  margin: 0 0 10px 0;
}
.crypto_tools .crypto_text {
  text-align: left;
  font-size: 18px;
  line-height: 1.45;
  color: var(--light-grey);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-height: 37.2%;
}
.crypto_tools .crypto_text a {
  text-decoration: underline;
  color: inherit;
}
.crypto_tools .crypto_options .crypto_text {
  color: var(--white);
}
.crypto_tools .crypto_telegram {
  background: #18358f url('../img/tools/telegram-bg.png') no-repeat 50% 50%;
  background-size: cover;
}
.crypto_tools .crypto_telegram img {
  object-fit: contain;
}
.crypto_press .crypto_top-text {
  max-width: 1200px;
  margin: 20px auto 30px auto;
}
.crypto_press .crypto_grid {
  display: grid;
  margin: 0 auto;
  max-width: 1280px;
}
.crypto_press .crypto_el {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: var(--light-grey);
  background-color: #0b0a10;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-radius: 30px;
  transition-property: transform, background;
  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  overflow: hidden;
  font-weight: 600;
  text-align: left;
  position: relative;
  transform: translate3d(0, 0, 0);
}
.crypto_press .crypto_el:nth-child(odd) {
  background-image: url('../img/press/bg1.png');
}
.crypto_press .crypto_el:nth-child(even) {
  background-image: url('../img/press/bg2.png');
}
@media (pointer: fine) {
  .crypto_press .crypto_el:hover {
    background-color: #081939;
  }
  .crypto_press .crypto_el:hover:before {
    opacity: 0;
  }
  .crypto_press .crypto_el:hover:after {
    opacity: 1;
  }
}
.crypto_press .crypto_el > * {
  position: relative;
  z-index: 2;
  flex: 0 0 auto;
  max-width: 100%;
}
.crypto_press .crypto_el img {
  flex: 0 0 auto;
  margin: 10px 0 25px 0;
  height: 55px;
  width: auto;
  border-radius: 15px;
}
.crypto_press .crypto_h2 {
  text-align: inherit;
  margin: 10px 0 25px 0;
  font-weight: 900;
  line-height: 1.2;
  flex: 1 0 auto;
  width: 100%;
  max-width: 9.69em;
}
.crypto_press .crypto_el .crypto_btn {
  margin-top: 0;
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  height: 65px;
  width: 100%;
  font-size: 16px;
  line-height: 1.45;
}
.crypto_press .crypto_el .crypto_btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #5364fe 0%, #7acdfc 100%);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (pointer: fine) {
  .crypto_press .crypto_el:hover .crypto_btn:before {
    opacity: 1;
  }
}
.crypto_try {
  position: relative;
}
.crypto_try .crypto_h1 {
  text-transform: none;
}
.crypto_try .crypto_bg:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    var(--black) 1.69%,
    rgba(8, 6, 16, 0.48) 17.68%,
    rgba(8, 6, 16, 0) 32.28%,
    rgba(8, 6, 16, 0) 69.86%,
    rgba(8, 6, 16, 0.52) 83.14%,
    var(--black) 95.08%
  );
}
.crypto_try .crypto_bg > *:nth-child(1) {
  background: none;
}
.crypto_try .crypto_bg > *:nth-child(4) {
  width: 13.125em;
  height: 13.125em;
  top: 11.875em;
  background: radial-gradient(50% 50% at 50% 50%, #62a0ff 0%, #0088ff 100%);
  opacity: 0.5;
  filter: blur(10.9375em);
}
.crypto_footer .crypto_title {
  font-weight: 600;
  font-size: 12px;
  line-height: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  flex: 0 0 auto;
  width: 100%;
}
.crypto_footer a {
  text-decoration: none;
  color: var(--white);
}
.crypto_footer .crypto_container {
  display: grid;
  align-items: start;
  max-width: 1340px;
}
.crypto_footer .crypto_logo {
  grid-area: lo;
}
.crypto_footer .crypto_logo img {
  width: auto;
}
.crypto_footer .crypto_menu {
  grid-area: me;
  display: grid;
  gap: 40px 20px;
  font-size: 16px;
  line-height: 1.45;
  font-weight: 600;
}
.crypto_footer .crypto_menu .crypto_col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.crypto_footer .crypto_soc {
  grid-area: so;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.crypto_footer .crypto_soc .crypto_link {
  flex: 0 0 auto;
  width: 50px;
  height: 50px;
  background: #1d1b26;
  border-radius: 14px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.crypto_footer .crypto_soc .crypto_link img {
  position: relative;
  flex: 0 0 auto;
  width: auto;
  height: auto;
  max-width: 20px;
  max-height: 20px;
}
@media (pointer: fine) {
  .crypto_footer .crypto_soc .crypto_link:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: inherit;
    background: linear-gradient(90deg, #5364fe 0%, #7acdfc 100%);
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
  }
  .crypto_footer .crypto_soc .crypto_link:hover:before {
    opacity: 1;
  }
}
.crypto_footer .crypto_bottom {
  grid-area: bo;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 20px 0 0 0;
  border-top: 1px solid var(--border);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
}
.crypto_label {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  margin: 0 0 10px 0;
}
.crypto_input-wrap {
  position: relative;
  border-radius: 16px;
}
.crypto_input {
  -webkit-appearance: none;
  display: block;
  width: 100%;
  font: bold 18px var(--font);
  text-align: left;
  color: var(--white);
  margin: 0;
  padding: 18.5px 19px;
  height: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: none;
  transition-property: color, background;
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
@media (pointer: fine) {
  .crypto_input:hover {
    background: rgba(255, 255, 255, 0.1);
  }
}
.crypto_input::-webkit-input-placeholder {
  opacity: 1;
  color: var(--grey);
}
.crypto_input::-moz-placeholder {
  opacity: 1;
  color: var(--grey);
}
.crypto_input:-ms-input-placeholder {
  opacity: 1;
  color: var(--grey);
}
.crypto_input:invalid:not(:placeholder-shown) {
  color: var(--red);
}
.crypto_input-border {
  content: '';
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 60px;
  border: 1px solid transparent;
  background: linear-gradient(91.68deg, #5364fe 0%, #7acdfc 100%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  border-radius: inherit;
  opacity: 0;
  backface-visibility: hidden;
  transition: opacity 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.crypto_input:focus ~ .crypto_input-border {
  opacity: 1;
}
.crypto_input-info {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.45;
  margin: 10px 0 0 0;
  display: none;
  color: var(--red);
}
.crypto_input:invalid:not(:placeholder-shown) ~ .crypto_input-info {
  display: block;
}
.crypto_submit {
  text-align: center;
  margin: 30px 0 0 0;
  font-weight: 600;
  font-size: 12px;
  line-height: 1.4;
}
.crypto_submit strong {
  font-weight: inherit;
  color: var(--white);
}
.crypto_submit a {
  color: var(--white);
  text-decoration: none;
}
.crypto_submit .crypto_btn {
  width: 100%;
  height: 55px;
  border-radius: 16px;
  font-size: 16px;
  line-height: 1.45;
}
.crypto_submit .crypto_btn:not(:last-child) {
  margin-bottom: 15px;
}
.crypto_modal {
  width: calc(100% - 40px);
  margin: 0 auto;
  background: rgba(19, 17, 26, 0.85);
  border: 1px solid var(--border);
  box-shadow: 0px 60px 60px rgba(0, 0, 0, 0.2), inset 0px 0px 0px 1px rgba(213, 191, 191, 0.35);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 30px;
  backface-visibility: hidden;
}
.crypto_modal .crypto_h2 {
  text-align: center;
  margin: 0 0 30px 0;
}
.crypto_modal-success {
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  line-height: 1.45;
  color: var(--grey);
}
.crypto_modal-success img {
  display: block;
  height: 60px;
  width: auto;
  margin: 0 auto 30px auto;
}
.crypto_modal-success .crypto_h2 {
  font-weight: bold;
  font-size: 24px;
  line-height: 1.3;
  margin: 0 0 15px 0;
}
.crypto_modal-success .crypto_small {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  margin: 10px 0 0 0;
}
.mfp-crypto .crypto_modal {
  opacity: 0;
  transition: all 0.2s ease-in-out;
}
.mfp-crypto.mfp-ready .crypto_modal {
  opacity: 1;
}
.mfp-crypto.mfp-removing .crypto_modal {
  opacity: 0;
}
.mfp-crypto.mfp-bg {
  opacity: 0;
  transition: opacity 0.2s ease-out;
  background: rgba(0, 0, 0, 0.8);
}
.mfp-crypto.mfp-ready.mfp-bg {
  opacity: 1;
}
.mfp-crypto.mfp-removing.mfp-bg {
  opacity: 0;
}
.mfp-crypto .mfp-container {
  padding: 0 !important;
}
