@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap");
.animReact-enter {
  opacity: 0.01;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
}

.animReact-enter.animReact-enter-active {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

.animReact-leave {
  opacity: 1;
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.animReact-leave.animReact-leave-active {
  opacity: 0.01;
  -webkit-transform: translateY(30%);
          transform: translateY(30%);
  -webkit-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}

.animReact {
  opacity: 1;
}

@-webkit-keyframes shadowAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}

@keyframes shadowAnim {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  10% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.6);
    transform: scale(1.6);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translateY(10%);
            transform: translateY(10%);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate {
  -webkit-animation: fadeIn 1s cubic-bezier(0.075, 0.82, 0.165, 1);
          animation: fadeIn 1s cubic-bezier(0.075, 0.82, 0.165, 1);
}

* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  outline: none;
  font-family: "Roboto", sans-serif;
}

button {
  cursor: pointer;
  background-color: transparent;
  border: none;
  font-family: "Roboto", sans-serif;
}

a {
  cursor: pointer;
  text-decoration: none;
}

button:focus,
input:focus {
  outline: none;
}

ul {
  list-style-type: none;
}

button {
  outline: none;
}

button:focus {
  outline: none;
}

button:focus {
  outline: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 8px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.3);
}

/*** 
  ====================================================================
      Global Settings
  ====================================================================
   ***/
html {
  font-family: "Roboto", sans-serif;
  font-size: 10px;
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  color: #363649;
  font-weight: 400;
  background: #fefefe;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}
body.bg1 {
  background-image: url(../images/main_bg.png);
  background-size: cover;
  background-position: center;
}
body.bg2 {
  background-color: #ffffff;
  background-image: url(../images/main_bg2.png);
  background-size: cover;
  background-position: center;
}

body.active {
  overflow: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #000;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  font-weight: normal;
  margin: 0px;
  background: none;
  line-height: 1.6em;
}

/* Typography */
h1 {
  font-size: 4em;
}

h2 {
  font-size: 40px;
}

h3 {
  font-size: 34px;
}

h4 {
  font-size: 22px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 18px;
}

p {
  position: relative;
  line-height: 1.8em;
}

.auto__container {
  max-width: 1640px;
  margin: 0 auto;
  padding: 0 60px;
}

.fyd__container {
  margin: 0 auto;
  max-width: 1041px;
  padding: 0 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

ul,
li {
  list-style: none;
  padding: 0px;
  margin: 0px;
}

.notification {
  width: 100%;
}
.notification__header img {
  width: 85px;
  margin-bottom: 10px;
  opacity: 0.35;
}
.notification__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  padding: 50px 0 40px 0;
}
.notification__body-image {
  margin-bottom: 35px;
  width: 100%;
}
.notification__body-image img {
  display: block;
  width: 45%;
  margin: 0 auto;
  opacity: 55%;
}
.notification__body-text {
  color: rgba(40, 40, 57, 0.8);
  font-size: 23px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: -1px;
  text-align: center;
}
.notification__footer-btn {
  cursor: pointer;
  color: rgba(40, 40, 57, 0.8);
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  text-align: center;
  padding: 23px 0;
  background: transparent;
  width: 100%;
  border-radius: 3px;
  border: 2px solid #E3E3E3;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.notification__footer-btn:hover {
  color: #5B8EF7;
  border-color: #6998F8;
}

.popup {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -200px;
  left: -200px;
  width: 0;
  height: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 10;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -webkit-transition-property: top;
  transition-property: top;
}
.popup.active {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 10px;
}
.popup__inner {
  background: #ffffff;
  padding: 25px 20px;
  width: 100%;
  max-width: 370px;
  border-radius: 10px;
}

.tooltip {
  position: absolute;
  border-radius: 10px;
  background: #ffffff;
  padding: 0;
  -webkit-box-shadow: transparent;
          box-shadow: transparent;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  z-index: 3;
}
.tooltip__outer {
  position: relative;
  margin-left: 5px;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     supported by Chrome, Edge, Opera and Firefox */
}
.tooltip__outer svg {
  width: 0.8em;
  height: 0.8em;
  opacity: 0.7;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.tooltip__outer svg:hover {
  opacity: 1;
}
.tooltip__outer img {
  width: 1.5em;
  height: auto;
  opacity: 0.7;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.tooltip__outer img:hover {
  opacity: 1;
}
.tooltip__outer::after {
  position: absolute;
  display: block;
  content: "";
  top: calc(100% + 3px);
  left: 50%;
  width: 0;
  height: 0;
  transform: translateX(-50%);
  -moz-ransform: translateX(-50%);
  -o-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  border-right: 7px solid transparent;
  border-left: 7px solid transparent;
  border-bottom: 0px solid transparent;
  z-index: 3;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.tooltip__outer.left .tooltip {
  left: 0;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
}
.tooltip__outer.right .tooltip {
  left: unset;
  right: 0;
  -webkit-transform: translateX(10%);
          transform: translateX(10%);
}
.tooltip__outer.sm .tooltip__inner {
  color: #585858;
  font-size: 0.88em;
}
.tooltip__outer:hover img {
  opacity: 1;
}
.tooltip__outer:hover .tooltip {
  -webkit-box-shadow: 0 2px 15px 5px #edf2f9;
          box-shadow: 0 2px 15px 5px #edf2f9;
  padding: 16px 30px;
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.tooltip__outer:hover .tooltip__inner {
  color: #58667E;
  opacity: 1;
  max-width: 300px;
  max-height: 300px;
  -webkit-transition: max-width 0.2s ease-in-out 0.2s, max-height 0.2s ease-in-out 0.2s, opacity 0.2s ease-in-out 0.4s;
  transition: max-width 0.2s ease-in-out 0.2s, max-height 0.2s ease-in-out 0.2s, opacity 0.2s ease-in-out 0.4s;
}
.tooltip__outer:hover::after {
  border-bottom: 8px solid #ffffff;
}
.tooltip__inner {
  color: transparent;
  font-size: 1em;
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  max-width: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out 0s;
  transition: opacity 0.2s ease-in-out 0s;
}

.counter {
  color: #5F5F69;
  font-size: 52px;
  font-family: monospace;
  padding: 5px 15px;
}
.counter__divider.animate {
  animation-direction: alternate-reverse;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}
.counter__second {
  font-size: 0.8em;
  color: #bebebe;
}

.swapCurrencyBut {
  color: #e6e9f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: 1px solid #e6e9f3;
  -webkit-box-shadow: 0 0 0 3px #f7f7f7;
          box-shadow: 0 0 0 3px #f7f7f7;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.swapCurrencyBut:hover {
  color: #397ef7;
  border-color: #397ef7;
}
.swapCurrencyBut svg {
  max-width: 22px;
  max-height: 22px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.btn {
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 48px;
  background: #fefeff;
  -webkit-box-shadow: 0px 3px 5px rgba(56, 125, 255, 0.17);
          box-shadow: 0px 3px 5px rgba(56, 125, 255, 0.17);
  border-radius: 4px;
  position: relative;
}
.btn__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.btn::before {
  position: absolute;
  content: "";
  background: #0288ff;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.btn:hover::before {
  width: 100%;
}
.btn:hover .btn__icon {
  border-right: 1px solid #1a93ff;
}
.btn:hover .btn__icon svg {
  fill: #ffffff;
}
.btn:hover .btn__text {
  color: #ffffff;
}
.btn__icon {
  width: 48px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-right: 1px solid #f2f2f3;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.btn__icon svg {
  max-width: 26px;
  max-height: 20px;
}
.btn__text {
  width: calc(100% - 48px);
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 13px;
  line-height: 15px;
  font-weight: 700;
  color: #191919;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.btn.blue {
  -webkit-box-shadow: 0px 2px 4px rgba(56, 125, 255, 0.4);
          box-shadow: 0px 2px 4px rgba(56, 125, 255, 0.4);
  background: #0288ff;
  position: relative;
}
.btn.blue::before {
  position: absolute;
  content: "";
  background: #ffffff;
  left: 0;
  top: 0;
  width: 0;
  height: 100%;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.btn.blue .btn__text {
  color: #ffffff;
}
.btn.blue .btn__icon {
  border-right: 1px solid #1a93ff;
}
.btn.blue:hover::before {
  width: 100%;
}
.btn.blue:hover .btn__icon {
  border-right: 1px solid #f2f2f3;
}
.btn.blue:hover .btn__icon svg {
  fill: #191919;
}
.btn.blue:hover .btn__text {
  color: #191919;
}

.seen {
  font-size: 13px;
  line-height: 20px;
  font-weight: 200;
  color: #7595bb;
  margin-bottom: 10px;
  margin: 40px 0 30px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-direction: column;
}
.seen__arrow {
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  color: #afcaea;
  font-size: 18px;
  font-family: "myriad";
  line-height: 20px;
  font-weight: 400;
}

button:disabled {
  cursor: context-menu;
  opacity: 0.7 !important;
}

.fydHeader {
  width: 100%;
  padding: 20px 0 10px 0;
}
.fydHeader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fydHeader__side {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.fydHeader__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 50px;
}
.fydHeader__logo img {
  height: 40px;
  width: auto;
}
.fydHeader__btn {
  cursor: pointer;
  width: 140px;
  height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  line-height: 1;
  background: #397ef6;
  border-radius: 5px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.fydHeader__btn:hover {
  opacity: 0.8;
}

.header {
  padding: 30px 0;
}
.header__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
}
.header__inner-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-logo img {
  width: auto;
  height: 45px;
}
.header__inner-more {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.header__inner-more-budget {
  color: #03083a;
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
}
.header__inner-more-budget span {
  display: block;
  text-align: right;
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  color: #565c6b;
  margin-top: 5px;
}
.header__inner-more-avatar {
  z-index: 1;
  margin-left: 20px;
  padding: 0 10px 0 20px;
  cursor: pointer;
}
.header__inner-more-avatar-btn {
  width: 31px;
  height: 41px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.header__inner-more-avatar-btn img {
  width: 100%;
}
.header__inner-more-avatar-help {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 110%;
  height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.header__inner-more-avatar-content {
  padding: 20px 26px;
  background: #fdfdff;
  border-radius: 20px;
  -webkit-box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
          box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
  width: 440px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1;
}
.header__inner-more-avatar-content-inner {
  padding: 10px 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  position: relative;
}
.header__inner-more-avatar-content-inner svg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  right: 15px;
  width: 15px;
  height: 11px;
  fill: #0388ff;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.header__inner-more-avatar-content-icon {
  width: 38px;
  height: 28px;
  margin-right: 50px;
}
.header__inner-more-avatar-content-icon img {
  width: 100%;
  height: 100%;
}
.header__inner-more-avatar-content-text {
  width: calc(100% - 88px);
  color: #585858;
  font-size: 15px;
  line-height: 18px;
  font-weight: 700;
  margin-bottom: 3px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.header__inner-more-avatar-content-text span {
  color: #383838;
  font-size: 12px;
  line-height: 18px;
  font-weight: 400;
  display: block;
}
.header__inner-more-avatar-content:hover .header__inner-more-avatar-content-inner {
  background: #f6faff;
  border-radius: 10px;
}
.header__inner-more-avatar-content:hover .header__inner-more-avatar-content-inner svg {
  opacity: 1;
}
.header__inner-more-avatar-content:hover .header__inner-more-avatar-content-text {
  color: #0274f9;
}
.header__inner-more-avatar:hover .header__inner-more-avatar-help {
  padding-top: 25px;
  top: 100%;
  opacity: 1;
  overflow: unset;
  height: unset;
}
.header__lang {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
}
.header__lang svg {
  margin-left: 5px;
  width: 16px;
  height: 10px;
  fill: #363649;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.header__lang.active svg {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}

.burger {
  display: none;
}

.lang__drop {
  position: relative;
}
.lang__drop-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
  cursor: pointer;
  color: #666573;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Roboto", sans-serif;
  width: 65px;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.lang__drop-title span {
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-left: 5px;
  background: url(../images/down-arrow-icon-fydcoin.com.svg);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 0.6em;
  height: 0.8em;
}
.lang__drop-dropdown {
  position: absolute;
  top: 100%;
  opacity: 0;
  right: 0;
  visibility: hidden;
  padding-top: 0;
  z-index: 11;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.lang__drop-dropdown-inner {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.5);
          box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.5);
  min-width: 120px;
  background: #fdfdff;
  padding: 0 25px;
  border-radius: 20px;
}
.lang__drop-dropdown-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  font-size: 14px;
  line-height: 15px;
  font-weight: 400;
  padding: 10px;
  width: 100%;
}
.lang__drop-dropdown-link img {
  width: 25px;
  margin-right: 15px;
}
.lang__drop-dropdown-link:hover {
  background: rgba(3, 136, 255, 0.03);
}
.lang__drop:hover .lang__drop-title span {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
}
.lang__drop:hover .lang__drop-dropdown {
  visibility: visible;
  opacity: 1;
  padding-top: 25px;
}
.lang__drop:hover .lang__drop-dropdown-inner {
  padding: 15px 25px;
}

.subheader {
  background: #ffffff;
  border-top: 1px solid #f3f3f3;
  border-bottom: 1px solid #f3f3f3;
}
.subheader.sticky {
  position: fixed;
  left: 0;
  width: 100%;
  top: 0;
  z-index: 4;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  animation: sticky 0.2s linear;
  -webkit-animation: sticky 0.2s linear;
}
.subheader__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.subheader__link {
  padding: 11px 20px;
  border-left: 1px solid #f3f3f3;
  color: #dddddf;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  position: relative;
  -webkit-transition: background 0.2s ease-in-out 0s;
  transition: background 0.2s ease-in-out 0s;
  -webkit-transition: color 0.2s ease-in-out 0s;
  transition: color 0.2s ease-in-out 0s;
  -moz-transition: color 0.2s ease-in-out 0s;
  z-index: 1;
}
.subheader__link:last-child {
  border-right: 1px solid #f3f3f3;
}
.subheader__link:hover {
  color: #9A9AA1;
}
.subheader__link.active {
  color: #3a7ff4;
}
.subheader__crypto {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 30px;
}
.subheader__crypto-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.subheader__crypto-icon img {
  height: 26px;
  width: auto;
}
.subheader__crypto-price {
  color: #323245;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.2px;
  font-weight: 700;
  margin: 0 10px 0 15px;
}
.subheader__crypto-percent {
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 1;
  font-weight: 700;
  color: #75a364;
}
.subheader__crypto-percent.red {
  font-size: 12px;
  letter-spacing: -0.2px;
  line-height: 1;
  font-weight: 700;
  color: red;
}

@keyframes sticky {
  0% {
    top: -60px;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes sticky {
  0% {
    top: -60px;
  }
  100% {
    top: 0;
  }
}
.menu {
  display: block;
  position: fixed;
  top: 7rem;
  height: calc(100% - 7rem);
  width: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  overflow: hidden;
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  z-index: 9;
}
.menu .header__lang {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 20px 30px;
  font-size: 16px;
  line-height: 20px;
  color: #828282;
}
.menu .header__lang svg {
  fill: #828282;
}
.menu .header__lang.active {
  color: #0274f9;
}
.menu .header__lang.active svg {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  fill: #0274f9;
}
.menu.active {
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.menu__inner {
  margin-left: 100%;
  max-width: 320px;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-color: #fff;
  -webkit-box-shadow: -0.6rem 0.6rem 3.5rem 0.2rem rgba(12, 51, 69, 0.13);
          box-shadow: -0.6rem 0.6rem 3.5rem 0.2rem rgba(12, 51, 69, 0.13);
  overflow-y: scroll;
  padding: 30px 0;
  /* Hide scrollbar for IE, Edge and Firefox */
}
.menu__inner-drop {
  border-bottom: 1px solid #f5f5f5;
}
.menu__inner::-webkit-scrollbar {
  display: none;
}
.menu__inner {
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}
.menu__inner-link {
  font-size: 16px;
  line-height: 20px;
  padding: 20px 30px;
  color: #545260;
  display: block;
}
.menu__inner-btn {
  color: #363649;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  padding: 15px 35px;
  height: 80px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-shadow: unset;
          box-shadow: unset;
  border-bottom: 1px solid #F5F5F5;
}
.menu__inner-btn::before {
  display: none;
}
.menu__inner-btn.lang {
  color: #828282;
  font-weight: 500;
}
.menu__inner-btn.lang img {
  width: 35px;
  margin-right: 10px;
}
.menu__inner-btn.lang ~ .menu__inner-dropdown .menu__inner-dropdown-link img {
  width: 30px;
  margin-right: 15px;
}
.menu__inner-btn.life {
  color: #444353;
}
.menu__inner-btn.life small {
  display: block;
  position: relative;
  right: -5px;
  top: -10px;
  width: 6px;
  height: 6px;
  background: #00d000;
  border-radius: 50%;
  z-index: 1;
}
.menu__inner-btn.life small::before {
  display: block;
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 0.2;
  background: #00d000;
  border-radius: 50%;
  top: -1px;
  left: -1px;
  z-index: 0;
  -webkit-animation: shadowAnim 2s infinite;
          animation: shadowAnim 2s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.menu__inner-btn.life:hover {
  color: #387ef8;
}
.menu__inner-btn.life.active {
  color: #387ef8;
}
.menu__inner-btn.inactive {
  color: #E2E6EA;
}
.menu__inner-btn span {
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  margin-left: auto;
  background: url(../images/down-arrow-icon-fydcoin.com.svg);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
  width: 0.6em;
  height: 0.8em;
}
.menu__inner-btn svg {
  width: 30px;
  height: auto;
  margin-right: 25px;
}
.menu__inner-btn img {
  width: 30px;
  margin-right: 25px;
}
.menu__inner-btn.open {
  color: #397EF6;
  position: relative;
  z-index: 1;
}
.menu__inner-btn.open span {
  transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  color: #0274f9;
}
.menu__inner-btn.uniq {
  color: #ff5400;
}
.menu__inner-btn.uniq span {
  color: orange;
}
.menu__inner-dropdown {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  background: #f1f5f8;
}
.menu__inner-dropdown-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  padding: 30px 35px;
  text-align: left;
  color: #828282;
  border-bottom: 1px solid #E3E7EB;
}
.menu__inner-dropdown-link:last-child {
  border-bottom: 0;
}
.menu__inner-dropdown-link.active {
  color: #397EF6;
}
.menu__inner-dropdown img {
  width: 20px;
  margin-right: 35px;
}
.menu__inner-dropdown svg {
  width: 20px;
  height: auto;
  margin-right: 35px;
}
.menu__inner-dropdown.open {
  max-height: 800px;
}
.menu__inner-dropdown.lang .menu__inner-dropdown-link {
  color: #828282;
  font-weight: 500;
}
.menu__inner .btn__row {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-bottom: 1px solid #F5F5F5;
}
.menu__inner .btn__row .btn {
  width: 70%;
  margin: 15px 0;
}
.menu__inner .main__btn {
  width: 100%;
  position: relative;
  padding: 21px 15px;
  font-size: 17px;
  line-height: 1;
}
.menu__inner .main__btn img {
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  -moz-ransform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  margin: 0;
}

.nav__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav__link {
  padding: 0 30px;
  font-size: 16px;
  font-weight: 400;
  color: #444353;
  line-height: 1;
  position: relative;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.nav__link.life span {
  display: block;
  position: absolute;
  right: 18px;
  top: 0;
  width: 6px;
  height: 6px;
  background: #00d000;
  border-radius: 50%;
  z-index: 1;
}
.nav__link.life span::before {
  display: block;
  position: absolute;
  content: "";
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  opacity: 0.2;
  background: #00d000;
  border-radius: 50%;
  top: -1px;
  left: -1px;
  z-index: 0;
  -webkit-animation: shadowAnim 2s infinite;
          animation: shadowAnim 2s infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate;
}
.nav__link.life:hover {
  color: #387ef8;
}
.nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(54, 54, 73, 0.07);
}
.nav__link:last-child:after {
  display: none;
}
.nav__link:hover {
  color: #397ef7;
}
.nav__link.active {
  color: #387ef8;
  font-weight: 500;
  opacity: 1;
}
.nav__link.inactive {
  color: #d9d9db;
  opacity: 1;
}
.nav__link.inactive:hover {
  color: #d0cfd4;
  opacity: 1;
}

.header.index .header__inner .nav__link.nav__link--disabled {
  opacity: 0.25;
}

/* modal window styles */
.modal__window__wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: rgba(0, 0, 0, 0.49);
  -webkit-backdrop-filter: blur(3px);
          backdrop-filter: blur(3px);
  z-index: 10;
  -webkit-animation: fadeIn 0.2s ease-in-out;
          animation: fadeIn 0.2s ease-in-out;
}
.modal__window__wrapper.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modal__form__wrapper {
  width: 36.6rem;
  padding: 35px 40px 40px 40px;
  border-radius: 1rem;
  background-color: #fdfdff;
  display: none;
  -webkit-animation: fadeInUp 0.35s ease-in-out 0s;
          animation: fadeInUp 0.35s ease-in-out 0s;
}
.modal__form__wrapper.active {
  display: block;
}
.modal__form__wrapper .form__logo {
  width: 85px;
  margin-bottom: 20px;
  opacity: 0.35;
}
.modal__form__wrapper .form__title {
  margin-bottom: 25px;
  font-size: 24px;
  line-height: 1;
  font-weight: 400;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  color: #5F5F69;
}
.modal__form__wrapper .form__para {
  font-size: 12px;
  line-height: 18px;
  color: #5F5F69;
  margin-bottom: 25px;
  letter-spacing: -0.2px;
  word-spacing: 0.2px;
}
.modal__form__wrapper .modal__subtext {
  font-size: 1.2rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}
.modal__form__wrapper .input__block {
  height: 5rem;
  margin-bottom: 2.3rem;
  -webkit-box-shadow: 0 0 0 4px #f6f6f7;
          box-shadow: 0 0 0 4px #f6f6f7;
  background-color: #FDFDFF;
}
.modal__form__wrapper .input__block:last-child {
  margin-bottom: 3rem;
}
.modal__form__wrapper .input__block input {
  border: 2px solid rgba(110, 137, 185, 0.16);
  padding-left: 8.5%;
}
.modal__form__wrapper .main__btn {
  width: 100%;
  height: 52px;
}
.modal__form__wrapper .main__btn[disabled=true] {
  opacity: 0.5;
}
.modal__form__wrapper .main__btn[disabled=true]:hover {
  background-color: #397ef7;
}
.modal__form__wrapper.forgot__psw .form__logo {
  margin-bottom: 3rem;
}
.modal__form__wrapper.forgot__psw .form__title {
  margin-bottom: 1.5rem;
}
.modal__form__wrapper .notification__body {
  padding: 0;
  max-width: 240px;
  margin: 0 auto;
}
.modal__form__wrapper .notification__body-image {
  margin-bottom: 20px;
}
.modal__form__wrapper .notification__body-image img {
  width: 145px;
}
.modal__form__wrapper .notification__body-text {
  font-size: 24px;
  font-weight: 400;
  color: rgba(40, 40, 57, 0.83);
  margin-bottom: 20px;
  font-family: "Roboto", sans-serif;
}
.modal__form__wrapper .notification__body-para {
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
  color: rgba(40, 40, 57, 0.83);
  font-family: "Roboto", sans-serif;
  letter-spacing: -0.2px;
  word-spacing: 0.2px;
}

.success__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.success__wrapper img {
  width: 14.2rem;
  margin-bottom: 2.5rem;
}
.success__wrapper .form__title {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.success__wrapper .modal__subtext {
  max-width: 25rem;
  margin-bottom: 0;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
}

.main__form__verify {
  margin-bottom: 3rem;
  font-size: 1.3rem;
  line-height: 1.54;
  text-align: center;
  color: #4a5569;
  display: none;
}
.main__form__verify.active {
  display: block;
}

.footer {
  background: #0274f9;
}
.footer__header {
  padding: 25px 0;
  border-bottom: 2px solid #5a8ef1;
}
.footer__logo {
  width: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__logo img {
  width: 100%;
}
.footer__logo svg {
  width: 96px;
  height: 37px;
  fill: #ffffff;
}
.footer__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: calc(50% - 40px);
}
.footer__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 35px 0 100px 0;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.footer__title {
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 30px;
  font-weight: 700;
  color: #ffffff;
  position: relative;
}
.footer__title.btn {
  height: unset;
  background: unset;
  -webkit-box-shadow: unset;
  box-shadow: unset;
  border-radius: unset;
}
.footer__title.btn::before {
  display: none;
}
.footer__title span {
  display: none;
}
.footer__title.life {
  display: inline-block;
}
.footer__title.life i {
  position: absolute;
  top: 0;
  right: -15px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #00d000;
}
.footer__title.life i::after {
  position: absolute;
  content: "";
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  border-radius: 50%;
  background: #00d000;
  opacity: 0.5;
}
.footer__title.life i::before {
  position: absolute;
  content: "";
  top: -6px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 12px);
  border-radius: 50%;
  background: #00d000;
  opacity: 0.2;
}
.footer__link-links {
  display: block;
  font-size: 16px;
  font-weight: 300;
  line-height: 20px;
  margin-bottom: 20px;
  position: relative;
  color: #ffffff;
}
.footer__link-links:last-child {
  margin-bottom: 0;
}
.footer__link-links span {
  font-weight: 500;
}
.footer__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 25px 0;
}
.footer__footer-social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer__footer-social-link {
  margin-left: 20px;
  width: 28px;
}
.footer__footer-social-link img {
  width: 100%;
}
.footer__footer-logo {
  font-size: 27px;
  line-height: 30px;
  color: #ffffff;
  font-weight: 400;
}
.footer__footer-logo span {
  font-weight: 300;
}
.footer__footer-copy {
  font-size: 17px;
  line-height: 20px;
  font-weight: 400;
  color: #ffffff;
}

.footer.index {
  background: #ffff;
}
.footer.index .footer__logo {
  width: 119px;
}
.footer.index .footer__header {
  background: #ffffff;
  border-bottom: 2px solid #f1f1f2;
}
.footer.index .footer__title {
  color: #424242;
}
.footer.index .footer__link-links {
  color: #656566;
}
.footer.index .footer__footer-logo {
  fill: #707070;
}
.footer.index .footer__footer-copy {
  color: #535353;
}
.footer.index .footer__footer-social-link svg {
  width: 28px;
  height: 24px;
  fill: #3d3d3d;
}

.fluidTextField, .send__body-row.fluid {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.fluidTextField .send__body-row-title, .send__body-row.fluid .send__body-row-title {
  width: unset;
  -ms-flex-negative: unset;
      flex-shrink: unset;
  min-width: 30px;
}
.fluidTextField .send__body-row-url, .send__body-row.fluid .send__body-row-url {
  -webkit-box-flex: unset;
      -ms-flex-positive: unset;
          flex-grow: unset;
}

.qrTab {
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
          box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
  overflow: hidden;
  width: 100%;
  max-width: 362px;
  min-height: 475px;
}
.qrTab__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.qrTab__header-btn {
  width: 50%;
  padding: 20px 0;
  text-align: center;
  color: #3c4353;
  font-size: 18px;
  line-height: 1;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  border-bottom: 2px solid #f0f0f0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.qrTab__header-btn::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  height: 3px;
  background: #397ef7;
}
.qrTab__header-btn::after {
  left: 100%;
  width: 2px;
  background: #f0f0f0;
  position: absolute;
  content: "";
  top: 0;
  height: 100%;
}
.qrTab__header-btn.active {
  color: #397ef7;
  border-bottom: 2px solid transparent;
}
.qrTab__header-btn.active::before {
  width: 100%;
}
.qrTab__body {
  padding: 20px;
}
.qrTab__body-event {
  display: none;
}
.qrTab__body-event.active {
  display: block;
}

.receive {
  background: #ffffff;
  border-radius: 3px;
  border: 2px solid #f0f0f0;
  -webkit-animation: 0.3s qrTab linear;
          animation: 0.3s qrTab linear;
  position: relative;
}
.receive__code {
  width: 100%;
  max-width: 195px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  padding: 55px 0;
}
.receive__code img {
  width: 100%;
}
.receive__footer {
  padding: 15px 23px;
  border-top: 2px solid #f0f0f0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.receive__footer-title {
  margin-right: 30px;
  color: #515766;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
}
.receive__footer-copy {
  width: calc(100% - 100px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  cursor: pointer;
  position: relative;
}
.receive__footer-copy-tooltip {
  position: absolute;
  right: 0;
  padding: 0 15px;
  background: #dfdfdf;
  border-radius: 5px;
  opacity: 0;
  height: 0;
  bottom: 100%;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.receive__footer-copy-tooltip.active {
  opacity: 1;
  bottom: calc(100% + 10px);
  height: unset;
  padding: 7px 15px;
}
.receive__footer-copy-tooltip.remove {
  display: none;
}
.receive__footer-copy span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #000000;
  font-size: 14px;
  line-height: 18px;
  font-weight: 500;
  margin-right: 14px;
}
.receive__footer-copy img {
  width: 15px;
  height: 16px;
}

.send {
  -webkit-animation: 0.3s qrTab linear;
          animation: 0.3s qrTab linear;
  position: relative;
}
.send__tab {
  position: relative;
  display: none;
  -webkit-animation: 0.3s qrTab linear;
          animation: 0.3s qrTab linear;
}
.send__tab.active {
  display: block;
}
.send__amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 80px;
}
.send__amount .title {
  color: #282839;
  font-size: 20px;
  font-weight: 500;
  margin-top: 23px;
  margin-bottom: 15px;
}
.send__amount input {
  line-height: 1;
  font-weight: 400;
  text-align: center;
  -webkit-appearance: none;
  color: #0274f9;
  font-size: 67px;
  width: 40px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  -webkit-transition-property: font-size, color;
  transition-property: font-size, color;
}
.send__amount input:-moz-placeholder-shown {
  color: #bbbcbe;
}
.send__amount input:-ms-input-placeholder {
  color: #bbbcbe;
}
.send__amount input:placeholder-shown {
  color: #bbbcbe;
}
.send__amount input::-webkit-input-placeholder {
  color: #bbbcbe;
}
.send__amount input::-moz-placeholder {
  color: #bbbcbe;
}
.send__amount input:-ms-input-placeholder {
  color: #bbbcbe;
}
.send__amount input::-ms-input-placeholder {
  color: #bbbcbe;
}
.send__amount input::placeholder {
  color: #bbbcbe;
}
.send__amount .change {
  color: #bbbcbe;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
  margin-left: 4px;
}
.send__amount .change span {
  display: inline-block;
  position: relative;
  min-width: 34px;
}
.send__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.send__header-btn {
  padding: 9px 14px;
  color: #000000;
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
  border-radius: 3px;
  border: 2px solid #f0f0f0;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.send__header-btn:hover {
  opacity: 0.6;
}
.send__header-currency {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  cursor: pointer;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.send__header-currency img {
  width: 40px;
  height: 35px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.send__header-currency span {
  color: #565c6b;
  font-size: 16px;
  line-height: 1;
  margin-left: 6px;
  font-weight: 400;
}
.send__header-currency.change {
  color: #bbbcbe;
  font-size: 18px;
  line-height: 1;
  font-weight: 400;
}
.send__header-currency.change span {
  display: inline-block;
  position: relative;
  min-width: 34px;
}
.send__header-currency:hover img {
  opacity: 0.6;
}
.send__body {
  margin: 18px 0;
  border-radius: 3px;
  border: 2px solid #f0f0f0;
}
.send__body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 17px 19px;
  border-top: 2px solid #efefef;
}
.send__body-row.fluid--size32 .send__body-row-url {
  font-size: 12px;
}
.send__body-row:first-child {
  border-top: none;
}
.send__body-row-title {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  color: #515766;
  width: 80px;
}
.send__body-row-price {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.send__body-row-price span {
  opacity: 0.5;
}
.send__body-row-url {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  color: #000000;
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 236px;
}
.send__body-row-url input {
  width: 100%;
  color: #000000;
  font-size: 14px;
  line-height: 17px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
}
.send__body-row-url img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.send__footer-btn {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 23px 0;
  border-radius: 3px;
  width: 100%;
  cursor: pointer;
  background: #397ef7;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.send__footer-btn:disabled {
  background: #87aaff;
}

@keyframes qrTab {
  0% {
    opacity: 0;
    top: 20px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@-webkit-keyframes qrTab {
  0% {
    opacity: 0;
    top: 20px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.page__wrapper {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: auto;
  max-width: 112rem;
}

.left__block {
  width: 57.86%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.logo__block {
  width: 12rem;
  margin-right: 17.75%;
}

.logo__img {
  width: 100%;
}

.menu__container {
  width: 41rem;
}

.menu__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.menu__item.left {
  width: 32.44%;
  padding-right: 8.42%;
}
.menu__item.center {
  width: 39.5%;
  padding: 0 8.42%;
}
.menu__item.right {
  width: 28.05%;
  padding-left: 8.42%;
}

.menu__link {
  width: 100%;
  font-size: 1.6rem;
  line-height: 1.125;
  font-weight: 500;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #dadadc;
}
.menu__link:hover {
  color: #818181;
}

span.vb {
  width: 0.1rem;
  height: 1.5rem;
  background-color: #eff0f0;
}

.right__block {
  width: 21.25%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.main__btn {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 400;
  border-radius: 0.5rem;
  color: #fff;
  background-color: #397ef7;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  text-align: center;
}
.main__btn:hover {
  opacity: 0.7;
}
.main__btn.sign_in {
  width: 14rem;
  padding: 1.3rem 0;
}

.main__btn2 {
  position: relative;
  font-size: 16px;
  line-height: 20px;
  font-weight: 400;
  border-radius: 5px;
  color: #fff;
  background-color: #397ef7;
  text-align: center;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
  padding: 20px 25px;
  width: 100%;
}
.main__btn2 img {
  position: absolute;
  left: 25px;
  top: 20px;
  height: 20px;
}
.main__btn2:hover {
  background-color: #70a5ff;
}
.main__btn2.sign_in {
  width: 14rem;
  padding: 1.3rem 0;
}

.custom__select__wrapper {
  position: relative;
  cursor: pointer;
}
.custom__select__wrapper.desctop {
  padding: 1.5rem 0;
}
.custom__select__wrapper:hover .custom__options__block {
  opacity: 1;
  padding: 1.5rem 2.5rem;
  height: 43.5rem;
}
.custom__select__wrapper:hover .custom__select__title .select__arrow {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.custom__select__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.5rem;
  color: #363f5a;
}
.custom__select__title .select__title {
  margin-right: 1rem;
}
.custom__select__title .select__arrow {
  width: 1rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.custom__options__block {
  position: absolute;
  width: 17.5rem;
  bottom: calc(100% - 4.4rem);
  right: 0;
  -webkit-transform: translate(0, 100%);
          transform: translate(0, 100%);
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  border-radius: 1rem;
  background-color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: 0px 0.2rem 1rem rgba(179, 204, 233, 0.5);
          box-shadow: 0px 0.2rem 1rem rgba(179, 204, 233, 0.5);
}

.custom__option__wrap {
  padding: 1rem;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.custom__option__wrap:hover {
  background-color: rgba(3, 136, 255, 0.03);
}

.custom__option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.custom__option img {
  width: 2.5rem;
  margin-right: 1.2rem;
}
.custom__option .option__title {
  font-size: 1.4rem;
  color: #363f5a;
}

.burger,
.mobile__menu__wrapper {
  display: none;
}

/* main */
main {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.main__wrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 69rem;
  width: 100%;
  max-width: 100rem;
  margin: 2.2rem auto;
  border-radius: 1.6rem;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 12px -3px #eaf0fc;
          box-shadow: 0 5px 12px -3px #eaf0fc;
}

.left__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.tab__col {
  position: relative;
  z-index: 2;
  width: 80px;
  min-width: 3.5rem;
  height: 100%;
  background-color: #fff;
  border-top-left-radius: 1.6rem;
  border-bottom-left-radius: 1.6rem;
  -webkit-box-shadow: 2px 0px 8px -5px #cecece;
          box-shadow: 2px 0px 8px -5px #cecece;
}
.tab__col span.hb {
  display: block;
  width: 91%;
  height: 0.1rem;
  margin: 0 auto;
  background-color: #efefef;
}

.tab__btn {
  position: relative;
  width: 100%;
  height: calc(25% - 0.075rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 2;
  color: #b8b8b8;
  -webkit-box-shadow: 0 10px 15px -14px rgba(0, 0, 0, 0);
          box-shadow: 0 10px 15px -14px rgba(0, 0, 0, 0);
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.tab__btn:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: inherit;
  border-radius: inherit;
}
.tab__btn .btn__bg__img {
  position: relative;
  width: 45%;
  z-index: 1;
}
.tab__btn:hover {
  color: #757575;
}
.tab__btn:hover:after {
  height: calc(100% + 0.2rem);
}
.tab__btn.active {
  width: 100%;
  color: #757575;
  -webkit-box-shadow: 0 10px 15px -14px rgba(0, 0, 0, 0.2);
          box-shadow: 0 10px 15px -14px rgba(0, 0, 0, 0.2);
}
.tab__btn.active:after {
  height: calc(100% + 0.2rem);
  width: calc(100% + 0.5rem);
  left: 0;
}
.tab__btn.first {
  position: relative;
  border-top-left-radius: 1.6rem;
}
.tab__btn.first.active, .tab__btn.first:hover {
  background-color: #e8e8e8;
}
.tab__btn.first.active:after, .tab__btn.first:hover:after {
  height: calc(100% + 0.2rem);
  top: 0;
}
.tab__btn.first.active:before, .tab__btn.first:hover:before {
  content: "";
  position: absolute;
  top: 0;
  left: 54.55%;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  width: 0;
  height: 0;
  border-left: 1.2rem solid transparent;
  border-right: 1.2rem solid transparent;
  border-bottom: 1.7rem solid #e8e8e8;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.tab__btn.second.active, .tab__btn.second:hover {
  background-color: #f2f5fc;
}
.tab__btn.third.active, .tab__btn.third:hover {
  background-color: #fcf9f2;
}
.tab__btn.fourth {
  border-bottom-left-radius: 1.6rem;
}
.tab__btn.fourth.active, .tab__btn.fourth:hover {
  background-color: #f9f1fc;
  -webkit-box-shadow: unset;
          box-shadow: unset;
}
.tab__btn.fourth.active:after, .tab__btn.fourth:hover:after {
  bottom: 0;
}

.info__container {
  position: relative;
  display: none;
  width: calc(100% - 80px);
  height: 100%;
  -webkit-animation: fadeIn 0.6s ease-in;
          animation: fadeIn 0.6s ease-in;
}
.info__container .title__block {
  width: 34rem;
  margin: 65px auto 0 auto;
}
.info__container .info__title {
  font-size: 3.5rem;
  line-height: 5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #5f6160;
}
.info__container .info__title span {
  font-weight: 400;
}
.info__container .info__subtitle {
  font-size: 1.3rem;
  line-height: 2;
  color: #a7a7a7;
}
.info__container .info__subtitle span {
  font-weight: 500;
}
.info__container .background__block {
  position: relative;
  margin: 12.5% auto 0 !important;
}
.info__container .background__block .tab__img,
.info__container .background__block .main__bg__img {
  position: absolute;
}
.info__container .background__block .main__bg__img {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.info__container .background__block .tab__img {
  top: -44.44%;
  right: 0;
  width: 17.07%;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
}
.info__container.active {
  display: block;
}
.info__container.first {
  background-color: #e8e8e8;
}
.info__container.first .background__block {
  width: 85.41%;
  padding-top: 74.23%;
  margin: 12.5% auto 12%;
}
.info__container.second {
  background-color: #f2f5fc;
}
.info__container.second .background__block {
  width: 68.75%;
  padding-top: 66.67%;
  margin: 10.625% auto 21.875%;
}
.info__container.third {
  background-color: #fcf9f2;
}
.info__container.third .background__block {
  width: 68.75%;
  padding-top: 66.67%;
  margin: 12.625% auto 21.875%;
}
.info__container.fourth {
  background-color: #f9f1fc;
}
.info__container.fourth .background__block {
  width: 72.9%;
  padding-top: 72.9%;
  margin: 12.625% auto 15.7%;
}
.info__container .footer__text {
  width: 100%;
  font-size: 1.1rem;
  line-height: 1.8rem;
  font-weight: 700;
  color: #606160;
  text-align: center;
  position: absolute;
  bottom: 1.5rem;
  left: 0;
}

.right__wrapper {
  width: 440px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
  -webkit-box-shadow: -8px 0px 10px -10px #cecece;
          box-shadow: -8px 0px 10px -10px #cecece;
}

.right__wrapper__container {
  width: 100%;
  height: 100%;
  position: relative;
}

.open__btn {
  display: none;
  width: 0;
  height: 100%;
  position: absolute;
  left: 100%;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
  background-color: #fff;
  background-image: url(../images/right-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
  border-left: 4px solid rgba(0, 0, 0, 0.13);
}

.form__container {
  max-width: 32rem;
  padding: 65px 0 0 0;
  margin: 0 auto;
}
.form__container.sign__in .form__title {
  margin-bottom: 65px;
}
.form__container.sign__in .input__block.email__sign__up#pass__field {
  height: 5.6rem;
  -webkit-box-shadow: 0 0 0 0.3rem #f7f7f7;
          box-shadow: 0 0 0 0.3rem #f7f7f7;
}
.form__container.sign__in .input__block.first {
  margin-bottom: 2.5rem;
}
.form__container.sign__in .border__block {
  margin: 2.1rem auto;
}
.form__container.sign__in .main__btn.sn {
  margin-bottom: 4.5rem;
}
.form__container.sign__in .main__btn.fp {
  margin-bottom: 2.5rem;
  color: #909092;
  background-color: #fff;
  border: 0.2rem solid #e6e9f3;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.form__container.sign__in .main__btn.fp:hover {
  color: #397ef7;
  border: 0.2rem solid #397ef7;
}

.form__title {
  width: 100%;
  margin: 0 auto 2.5rem auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 5rem;
  color: #626262;
}
.form__title img {
  width: auto;
  height: 1.3em;
  margin-left: 1.2rem;
}

.form__subtitle {
  width: 100%;
  margin-bottom: 4.7rem;
  font-size: 2.4rem;
  font-weight: 300;
  text-align: center;
  color: #b2b2b2;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}

.sign__up__form {
  width: 100%;
}

.input__block {
  position: relative;
  width: 100%;
  height: 5.6rem;
  border-radius: 0.5rem;
  -webkit-box-shadow: 0 0 0 0.3rem #f7f7f7;
          box-shadow: 0 0 0 0.3rem #f7f7f7;
}
.input__block.first {
  margin-bottom: 2rem;
}
.input__block img,
.input__block span {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.input__block img {
  width: 9.3%;
  left: 13.8%;
}
.input__block input,
.input__block button {
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  border-radius: 0.5rem;
  border: 1px solid #f0f0f4;
}
.input__block input {
  color: #686868;
}
.input__block.social__sign__up {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.input__block.social__sign__up button {
  padding-left: 37.93%;
  -webkit-box-shadow: inset 0 0 0.8rem rgba(230, 233, 243, 0.03);
          box-shadow: inset 0 0 0.8rem rgba(230, 233, 243, 0.03);
  color: #4a5569;
  font-weight: 500;
  text-align: left;
}
.input__block.social__sign__up:hover {
  opacity: 0.6;
}
.input__block.email__sign__up {
  margin-bottom: 3rem;
}
.input__block.email__sign__up#pass__field {
  height: 0;
  overflow: hidden;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  margin-bottom: 0;
}
.input__block.email__sign__up#pass__field.active {
  height: 5.6rem;
  -webkit-box-shadow: 0 0 0 0.3rem #f7f7f7;
          box-shadow: 0 0 0 0.3rem #f7f7f7;
  margin-bottom: 3rem;
}
.input__block.email__sign__up#pass__field.active input {
  border: 2px solid #e6e9f3;
}
.input__block.email__sign__up#pass__field.active input:focus {
  border: 2px solid #397ef7;
}
.input__block.email__sign__up span {
  right: 5.86%;
  margin-top: -3px;
  font-size: 2.3rem;
  color: #818181;
  font-weight: 500;
}
.input__block.email__sign__up .pas__ic {
  left: 95.14%;
  -webkit-transform: translate(-100%, -50%);
          transform: translate(-100%, -50%);
  width: 2.5rem;
}
.input__block.email__sign__up input {
  padding-left: 6.07%;
  border: 2px solid #e6e9f3;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.input__block.email__sign__up input::-webkit-input-placeholder {
  font-size: 1.7rem;
  color: #d6d6d6;
}
.input__block.email__sign__up input::-moz-placeholder {
  font-size: 1.7rem;
  color: #d6d6d6;
}
.input__block.email__sign__up input:-ms-input-placeholder {
  font-size: 1.7rem;
  color: #d6d6d6;
}
.input__block.email__sign__up input::-ms-input-placeholder {
  font-size: 1.7rem;
  color: #d6d6d6;
}
.input__block.email__sign__up input::placeholder {
  font-size: 1.7rem;
  color: #d6d6d6;
}
.input__block.email__sign__up input:focus {
  border: 0.2rem solid #397ef7;
}

.border__block {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 3rem 0;
}
.border__block span.hb {
  width: 38.28%;
  height: 0.1rem;
  background-color: #e0e0e0;
}
.border__block span.border__text {
  font-size: 1.4rem;
  color: #4a566e;
}

.main__form__text {
  margin-bottom: 3rem;
  font-size: 1.3rem;
  line-height: 1.54;
  text-align: center;
  color: #4a5569;
}

.inline__link {
  display: inline;
  font-weight: 500;
  color: #397ef7;
}

.form__container .main__btn {
  width: 100%;
  line-height: 5.4rem;
  margin-bottom: 3rem;
}

.subtext {
  font-size: 1.1rem;
  text-align: center;
  color: #c1c2c6;
}

.information {
  padding: 35px 0 35px 0;
  position: relative;
}
.information__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 825px;
  z-index: -1;
}
.information__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -o-object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}
.information__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.information__inner-content {
  width: calc(100% - 390px);
}
.information__inner-side {
  width: 366px;
  margin-left: 34px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-direction: column;
}
.information__inner-side-box {
  margin-top: 30.5px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
          box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
}
.information__inner-side-box-header {
  padding: 16px 30px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  color: #03083a;
  -webkit-border-after: 1px solid #f0f1f4;
          border-block-end: 1px solid #f0f1f4;
}
.information__inner-side-box-row {
  padding: 20px 22px 21px 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-border-after: 1px solid #f0f1f4;
          border-block-end: 1px solid #f0f1f4;
}
.information__inner-side-box-row:first-child {
  border-top: unset;
}
.information__inner-side-box-row-icon {
  width: 40px;
  height: auto;
  margin-right: 20px;
}
.information__inner-side-box-row-icon img {
  width: 100%;
  height: 100%;
}
.information__inner-side-box-row-icon svg {
  color: #3E4656;
  max-width: 40px;
  max-height: 40px;
}
.information__inner-side-box-row-content {
  color: #000000;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
  width: calc(100% - 60px);
}
.information__inner-side-box-row-content span {
  display: block;
  font-size: 14px;
  line-height: 1;
  font-weight: 400;
  color: #575d6c;
  margin-top: 5px;
}
.information__inner-side-box-exrow {
  position: relative;
  cursor: pointer;
  padding: 17px 29px;
  border-top: 1px solid #f0f1f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.information__inner-side-box-exrow:first-child {
  border-top: unset;
}
.information__inner-side-box-exrow:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.information__inner-side-box-exrow:hover .transaction__inner-body-info-content-more::after {
  opacity: 0.5;
}
.information__inner-side-box-exrow-date {
  text-align: center;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  width: 25px;
}
.information__inner-side-box-exrow-date span {
  display: block;
  color: #3e4555;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}
.information__inner-side-box-exrow-icon {
  width: 40px;
  height: 40px;
  margin-right: 20px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.information__inner-side-box-exrow-icon img {
  width: 100%;
  height: 100%;
}
.information__inner-side-box-exrow-icon svg {
  color: #8D919B;
  max-width: 40px;
  max-height: 40px;
}
.information__inner-side-box-exrow-content {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.information__inner-side-box-exrow-content-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
}
.information__inner-side-box-exrow-content-title small {
  color: #575D6C;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
}
.information__inner-side-box-exrow-content-more {
  position: relative;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #575d6c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 270px;
  margin-bottom: 5px;
}
.information__inner-side-box-exrow-content-more::after {
  position: absolute;
  top: 0.2em;
  right: 0;
  display: inline-block;
  content: "";
  height: 0.9em;
  width: 1em;
  background: url(../images/info/copy.png);
  background-size: cover;
  background-position: center;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.information__inner-side-box-body {
  padding: 12px 30px 18px 30px;
}
.information__inner-side-box-body-para {
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
  color: #575d6c;
}
.information__inner-side-box-body-price {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  color: #03083a;
  font-weight: 700;
  font-size: 20px;
  line-height: 1;
}
.information__inner-side-box-body-price small {
  font-size: 16px;
  font-weight: 500;
  color: rgba(87, 93, 108, 0.53);
}
.information__inner-side-box-body-soon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.information__inner-side-box-body-soon img {
  height: 169px;
  padding: 15px 0;
}
.information__inner-side-box-body-soon p {
  font-family: "Roboto", sans-serif;
  color: #323232;
  font-weight: 600;
  line-height: 1;
  font-size: 16px;
}
.information__inner-side-footer {
  position: relative;
  margin-top: 30.5px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
          box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
  padding: 25px 20px;
}
.information__inner-side-footer:after {
  display: block;
  position: absolute;
  content: "";
  top: 0;
  left: calc(50% - .5px);
  width: 1px;
  height: 100%;
  background-color: #f0f1f4;
}
.information__inner-side-footer-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.information__inner-side-footer-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 45px;
  width: 50%;
}
.information__inner-side-footer-column:nth-child(2) {
  margin-left: 25px;
}
.information__inner-side-footer-column img {
  width: 45px;
  height: auto;
  margin-right: 20px;
}
.information__inner-side-footer-column svg {
  color: #8D919B;
  max-width: 45px;
  max-height: 45px;
  margin-right: 20px;
}
.information__inner-side-footer-column-content h5 {
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
}
.information__inner-side-footer-column-content p {
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #575d6c;
  margin-bottom: 5px;
}

.graph {
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
          box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
}
.graph__inner {
  position: relative;
  padding: 30px;
}
.graph__inner-header {
  display: inline-block;
  padding: 0 10px;
  min-width: 300px;
}
.graph__inner-header-coinbase {
  position: absolute;
  left: calc(100% - 170px);
  top: 55px;
  width: 140px;
}
.graph__inner-header-coinbase p {
  color: rgba(129, 129, 129, 0.3);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 10px;
}
.graph__inner-header-coinbase img {
  width: 70%;
  height: auto;
  opacity: 0.68;
}
.graph__inner-header-title {
  color: rgba(129, 129, 129, 0.3);
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  margin-bottom: 7px;
}
.graph__inner-header-balance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  cursor: pointer;
}
.graph__inner-header-balance-amount {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.graph__inner-header-balance-amount-currency1 {
  display: inline-block;
  font-size: 29px;
  line-height: 1;
  font-weight: 700;
  color: #03083a;
  position: relative;
}
.graph__inner-header-balance-amount-currency2 {
  font-size: 16px;
  line-height: 18px;
  font-weight: 400;
  color: #565c6b;
  margin-top: 5px;
}
.graph__inner-header-balance-amount-currency2 span {
  display: inline-block;
  position: relative;
}
.graph__inner-header-balance img {
  width: 40px;
  height: 35px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.graph__inner-header-balance:hover img {
  opacity: 0.6;
}
.graph__inner-body {
  margin: 12px 0 20px 0;
}
.graph__inner-body-buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.graph__inner-body-buttons li {
  cursor: pointer;
  color: #828282;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
  padding: 5px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.graph__inner-body-buttons li:hover {
  color: #434864;
}
.graph__inner-body-buttons li.active {
  color: #0274f9;
}
.graph__inner-body-main-image {
  width: 100%;
}
.graph__inner-body-main-image img {
  width: 100%;
}
.graph__inner-body-main-date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 10px 0;
  position: relative;
}
.graph__inner-body-main-date span {
  display: block;
  color: #a7b4c0;
  font-size: 10px;
  line-height: 18px;
  font-weight: 500;
}
.graph__inner-body-main-date::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 0.5px;
  background: #f5f5f5;
}
.graph__inner-body-main-date::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 0.5px;
  background: #f5f5f5;
}
.graph__inner-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.graph__inner-footer-info-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #8799a9;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
  margin-bottom: 5.5px;
}
.graph__inner-footer-info-amount {
  color: #5f6786;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
}

#chartjs-tooltip {
  position: absolute;
  pointer-events: none;
  width: 140px;
  padding: 10px 15px;
  text-align: center;
  border-radius: 5px;
  -webkit-box-shadow: rgba(125, 149, 182, 0.2) 0px 1px 4px;
          box-shadow: rgba(125, 149, 182, 0.2) 0px 1px 4px;
  background: #15232c;
  -webkit-transform: translate(-50%, -100%);
          transform: translate(-50%, -100%);
  -webkit-transition: opacity 0.5s ease-in-out, left 0.1s ease-in-out, top 0.3s ease-in-out;
  transition: opacity 0.5s ease-in-out, left 0.1s ease-in-out, top 0.3s ease-in-out;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     supported by Chrome, Edge, Opera and Firefox */
}
#chartjs-tooltip h5 {
  margin-bottom: 4px;
  line-height: 1;
  font-size: 18px;
  font-weight: 500;
  color: white;
}
#chartjs-tooltip p {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: rgba(255, 255, 255, 0.4);
}

.transaction {
  margin-top: 36px;
  background: #ffffff;
  border-radius: 10px;
  -webkit-box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
          box-shadow: 0px 2px 10px rgba(179, 204, 233, 0.44);
}
.transaction__inner-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 23px 37px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.transaction__inner-header h4 {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  color: #03083a;
}
.transaction__inner-header-filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  padding: 3px;
  background: #EFF2F5;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Non-prefixed version, currently
     supported by Chrome, Edge, Opera and Firefox */
}
.transaction__inner-header-filter li {
  cursor: pointer;
  color: #58667E;
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.2px;
  background: #ffffff;
  padding: 10px;
  margin-right: 4px;
  border-radius: 8px;
  background: transparent;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.transaction__inner-header-filter li:last-child {
  margin-right: 0;
}
.transaction__inner-header-filter li:hover {
  background: rgba(255, 255, 255, 0.5);
}
.transaction__inner-header-filter li.active {
  background: #fff;
}
.transaction__inner-body-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 29px;
  border-top: 1px solid #f0f1f4;
}
.transaction__inner-body-title li {
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.2px;
  color: #A7B4C0;
}
.transaction__inner-body-title li:nth-child(1) {
  width: 95px;
}
.transaction__inner-body-title li:nth-child(3) {
  margin-left: auto;
}
.transaction__inner-body-row {
  position: relative;
  cursor: pointer;
  padding: 17px 29px;
  border-top: 1px solid #f0f1f4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.transaction__inner-body-row:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
.transaction__inner-body-row:hover .transaction__inner-body-info-content-more::after {
  opacity: 0.5;
}
.transaction__inner-body-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.transaction__inner-body-info-date {
  text-align: center;
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  width: 25px;
}
.transaction__inner-body-info-date span {
  display: block;
  color: #3e4555;
  font-size: 12px;
  line-height: 18px;
  font-weight: 500;
}
.transaction__inner-body-info-icon {
  width: 40px;
  height: 40px;
  margin: 0 15px;
}
.transaction__inner-body-info-icon img {
  width: 100%;
  height: 100%;
}
.transaction__inner-body-info-icon svg {
  color: #8D919B;
  max-width: 40px;
  max-height: 40px;
}
.transaction__inner-body-info-content-title {
  font-size: 19px;
  line-height: 1;
  font-weight: 500;
  color: #000000;
  margin-bottom: 5px;
}
.transaction__inner-body-info-content-more {
  position: relative;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  color: #575d6c;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 270px;
  padding-right: 2em;
}
.transaction__inner-body-info-content-more::after {
  position: absolute;
  top: 0.2em;
  right: 0;
  display: inline-block;
  content: "";
  height: 1em;
  width: 1em;
  background: url(../images/info/copy.png);
  background-size: 100% 100%;
  background-position: center;
  z-index: 1;
  opacity: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.transaction__inner-body-total-fyd {
  color: #000000;
  font-size: 19px;
  line-height: 1;
  font-weight: 400;
  margin-bottom: 5px;
}
.transaction__inner-body-total-currency {
  color: #565c6b;
  font-size: 13px;
  line-height: 18px;
  font-weight: 400;
  text-align: right;
}
.transaction__inner-body-tooltip {
  position: absolute;
  right: 30%;
  padding: 0 15px;
  background: #dfdfdf;
  border-radius: 5px;
  opacity: 0;
  height: 0;
  bottom: 0;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.transaction__inner-body-tooltip.active {
  opacity: 1;
  bottom: 10px;
  height: unset;
  padding: 7px 15px;
}
.transaction__inner-body-tooltip.remove {
  display: none;
}
.transaction__inner-footer {
  border-top: 1px solid #f0f1f4;
}
.transaction__inner-footer-more {
  padding: 15px 0 18px 0;
  display: block;
  color: #5f6786;
  font-size: 16px;
  line-height: 18px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  -moz-transition: all 0.2s ease-in-out 0s;
}
.transaction__inner-footer-more:hover {
  opacity: 0.6;
}

.error404 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 80vh;
  padding: 10px;
}
.error404__inner {
  background: rgba(130, 130, 130, 0.05);
  padding: 20px 30px;
  border-radius: 20px;
  font: "Roboto", sans-serif;
}
.error404__inner h1 {
  color: #9A9AA1;
  font-size: 120px;
}
.error404__inner p {
  font-size: 20px;
  color: #828282;
  letter-spacing: 2px;
  text-align: center;
}

.messages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: 80vh;
  padding: 10px;
}
.messages__inner {
  background: rgba(130, 130, 130, 0.05);
  padding: 10px 20px;
  border-radius: 10px;
  font: "Roboto", sans-serif;
}
.messages__inner p {
  font-size: 16px;
  font-style: italic;
  color: #828282;
  letter-spacing: 2px;
  text-align: center;
}

.commingSoon {
  position: absolute;
  left: 0;
  top: 50%;
  height: 100%;
  width: 100%;
  max-height: 540px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  padding: 15px;
}
.commingSoon__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  max-width: 300px;
  margin: 0 auto;
}
.commingSoon__inner-header img {
  width: 135px;
  padding-left: 25px;
}
.commingSoon__inner-body {
  width: 100%;
}
.commingSoon__inner-body-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.commingSoon__inner-body-row.titles {
  margin-bottom: 20px;
}
.commingSoon__inner-body-row.titles .commingSoon__inner-body-column {
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  text-transform: uppercase;
}
.commingSoon__inner-body-row.timestamps .commingSoon__inner-body-column {
  font-size: 68px;
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
}
.commingSoon__inner-body-column {
  color: #424242;
  width: 33.3%;
  text-align: center;
}
.commingSoon__inner-body-column.primary {
  color: #397EF7;
}
.commingSoon__inner-footer {
  width: 100%;
  color: #BFBFBF;
  font-size: 6px;
  line-height: 1;
  letter-spacing: 1em;
  text-align: center;
}

@media (max-width: 1180px) {
  .footer__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-direction: column;
  }
  .footer__row {
    width: 100%;
  }
  .footer__column {
    width: 25%;
    margin: 20px 0;
  }

  .information__inner-side-box {
    margin-top: 27px;
  }

  .qrTab {
    min-height: 465px;
  }
  .qrTab__body {
    padding: 10px 20px;
  }

  .auto__container {
    padding: 0 20px;
  }

  .nav__link {
    padding: 0 20px;
  }
  .nav__link.life {
    padding-right: 25px;
  }
  .nav__link.life span {
    right: 12px;
  }

  .page__wrapper {
    max-width: 96rem;
  }

  main {
    padding: 0 2rem;
  }

  nav {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .left__block {
    width: 60rem;
  }

  .right__block {
    width: 23rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }

  .logo__block {
    margin-right: 10%;
  }

  .main__btn.sign_in {
    margin-right: 0rem;
  }

  .subheader.index .subheader__link {
    padding: 6px 20px;
  }
  .subheader.index .subheader__crypto-price {
    font-size: 14px;
  }
}
@media (max-width: 1024px) {
  .right__wrapper {
    width: 50%;
  }

  .form__container {
    width: 80%;
  }
  .form__container .form__subtitle {
    margin-bottom: 3.5rem;
  }
  .form__container .form__title {
    font-size: 28px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form__container.sign__in .form__title {
    margin-bottom: 4rem;
  }
  .form__container.sign__in .input__block {
    margin-bottom: 1.5rem;
  }
  .form__container.sign__in .input__block.first {
    margin-bottom: 1.5rem;
  }
  .form__container.sign__in .main__btn.sn {
    margin-bottom: 1.5rem;
  }
  .form__container.sign__in .main__btn.fp {
    border: 0;
    margin-bottom: 0;
    line-height: 2;
  }
  .form__container.sign__in .main__btn.fp:hover {
    border: 0;
  }
  .form__container.sign__in .main__btn.ca {
    margin-bottom: 4rem;
  }

  .info__container .info__title {
    font-size: 28px;
  }

  .border__block {
    margin: 2rem 0 !important;
  }

  .input__block {
    margin-bottom: 1.5rem;
  }
  .input__block.first {
    margin-bottom: 1.5rem;
  }

  .input__block.email__sign__up#pass__field.active {
    margin-bottom: 1.5rem;
  }

  .main__form__text {
    margin-bottom: 0;
  }

  .sign__up__form .main__btn {
    margin-bottom: 2rem;
  }

  .fydHeader {
    padding: 15px 0;
    -webkit-box-shadow: 0px 6px 12px rgba(2, 116, 249, 0.2);
            box-shadow: 0px 6px 12px rgba(2, 116, 249, 0.2);
  }
  .fydHeader__btn {
    display: none;
  }

  .header {
    position: fixed;
    background: #fff;
    -webkit-box-shadow: 0px 6px 12px rgba(2, 116, 249, 0.2);
            box-shadow: 0px 6px 12px rgba(2, 116, 249, 0.2);
    z-index: 10;
    padding: 15px 0;
    top: 0;
    left: 0;
    width: 100%;
  }
  .header__inner-more {
    display: none;
  }
  .header__inner-logo img {
    height: 40px;
  }
  .header__lang {
    display: none;
  }
  .header.crypto {
    -webkit-box-shadow: 0px 6px 12px rgba(255, 82, 8, 0.2);
            box-shadow: 0px 6px 12px rgba(255, 82, 8, 0.2);
  }
  .header.mining {
    -webkit-box-shadow: 0px 6px 12px rgba(255, 43, 43, 0.2);
            box-shadow: 0px 6px 12px rgba(255, 43, 43, 0.2);
  }
  .header.nft {
    -webkit-box-shadow: 0px 6px 12px rgba(154, 126, 196, 0.2);
            box-shadow: 0px 6px 12px rgba(154, 126, 196, 0.2);
  }
  .header.stakin {
    -webkit-box-shadow: 0px 6px 12px rgba(115, 177, 74, 0.2);
            box-shadow: 0px 6px 12px rgba(115, 177, 74, 0.2);
  }

  .subheader {
    display: none;
  }

  .burger {
    display: block;
    position: relative;
    width: 30px;
    height: 30px;
  }
  .burger::before {
    top: 20%;
    width: calc(100% - 0.4rem);
    height: 4px;
    background-color: #191919;
    border-radius: 0.125rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger::after {
    bottom: 20%;
    width: calc(100% - 0.4rem);
    height: 4px;
    background-color: #191919;
    border-radius: 0.125rem;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -moz-ransform: translateX(-50%);
    -o-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
  }
  .burger.active::before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active::after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
    transform: translate(-50%, 50%) rotate(-45deg);
  }

  .lang__drop {
    display: none;
  }

  .nav {
    display: none;
  }
}
@media (max-width: 980px) {
  .footer {
    background: #0c79f9;
  }
  .footer__header {
    background: #ffffff;
  }
  .footer__body {
    padding: 0;
    margin: 0 -20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
            flex-direction: row;
    -ms-flex-direction: row;
  }
  .footer__column {
    width: 100%;
    border-bottom: 0.5px solid #acd1fc;
    margin: 0;
  }
  .footer__title {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    margin-bottom: 0;
    color: #acd1fc;
    -webkit-transition: color 0.2s ease-in-out 0s;
    transition: color 0.2s ease-in-out 0s;
    -moz-transition: color 0.2s ease-in-out 0s;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__title.btn::before {
    display: none;
  }
  .footer__title.life {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__title span {
    display: inline-block;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    margin-left: 10px;
    width: 8px;
    height: 8px;
    border-bottom: 2px solid #3c3c3b;
    border-left: 2px solid #3c3c3b;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  .footer__title.active {
    color: #fefeff;
    -webkit-box-shadow: 0px 3px 6px #0a56b0;
            box-shadow: 0px 3px 6px #0a56b0;
  }
  .footer__title.active span {
    border-color: #197bfa;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  .footer__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-direction: column;
    width: calc(50% - 1px);
    border-right: 0.5px solid #acd1fc;
    overflow: hidden;
  }
  .footer__row:last-child {
    border-right: none;
  }
  .footer__link {
    max-height: 0;
    overflow: hidden;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    background: #0e62c4;
  }
  .footer__link-links {
    width: 100%;
    text-align: center;
    padding: 30px 0;
    font-size: 16px;
  }
  .footer__link.active {
    max-height: 600px;
  }
  .footer__logo svg {
    fill: #363649;
  }

  .footer.index .footer__link {
    background: #f1f5f8;
  }
  .footer.index .footer__link-links {
    color: #7b7b85;
    margin-bottom: 0;
    border-bottom: 1px solid #e8ebf5;
  }
  .footer.index .footer__row {
    border-right: 0.5px solid #f5f5f5;
  }
  .footer.index .footer__column {
    border-bottom: 0.5px solid #f5f5f5;
  }
  .footer.index .footer__title {
    color: #3c3c3b;
  }
  .footer.index .footer__title span {
    color: #3c3c3b;
  }
  .footer.index .footer__title.active {
    color: #197bfa;
    -webkit-box-shadow: 0px 3px 6px #e4edf6;
    box-shadow: 0px 3px 6px #e4edf6;
  }
  .footer.index .footer__title.active span {
    color: #197bfa;
  }

  .information {
    margin-top: 70px;
  }
  .information__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-direction: column;
    max-width: 85%;
    margin: 0 auto;
  }
  .information__inner-side {
    margin-left: 0;
    width: 100%;
    margin-top: 34px;
  }
  .information__inner-side-footer-column {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .information__inner-side-footer-column:nth-child(2) {
    margin: 0;
  }
  .information__inner-content {
    width: 100%;
  }

  .fluidTextField, .send__body-row.fluid {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
  .fluidTextField .send__body-row-title, .send__body-row.fluid .send__body-row-title {
    width: 80px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .fluidTextField .send__body-row-url, .send__body-row.fluid .send__body-row-url {
    font-size: 14px !important;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: unset;
  }

  .qrTab {
    max-width: unset;
  }

  .page__wrapper {
    max-width: 76rem;
  }

  .logo__block {
    width: 10rem;
  }

  .left__block {
    width: 46rem;
  }

  .menu__container {
    width: 33rem;
  }

  .menu__item.left {
    width: 37.44%;
    padding-right: 5.42%;
  }
  .menu__item.center {
    width: 36.5%;
    padding: 0 5.42%;
  }
  .menu__item.right {
    width: 34.05%;
    padding-left: 5.42%;
  }

  .menu__link {
    font-size: 1.4rem;
  }

  .right__block {
    width: 19rem;
  }

  .main__btn.sign_in {
    font-size: 1.6rem;
    padding: 0.8rem 0;
    width: 12rem;
  }

  .tab__col {
    width: 6.5rem;
  }

  .tab__btn.first.active:before {
    border-left: 0.6rem solid transparent;
    border-right: 0.6rem solid transparent;
    border-bottom: 1.2rem solid #e8e8e8;
  }

  .info__container {
    width: calc(100% - 6.5rem);
  }
  .info__container .background__block .tab__img {
    right: 15%;
    top: 5%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  .info__container .title__block {
    width: 80%;
    margin: 65px auto 0 auto;
  }
  .info__container .info__title {
    line-height: 1.33;
  }
}
@media (max-width: 768px) {
  .footer__footer {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-direction: column;
  }
  .footer__footer-copy {
    margin: 20px 0;
  }
  .footer__footer-social-link:first-child {
    margin-left: 0;
  }

  .information__inner {
    max-width: 100%;
  }

  .page__wrapper {
    max-width: 100%;
  }

  .menu__container,
.main__btn.sign_in,
.custom__select__wrapper.desctop {
    display: none;
  }

  .right__block {
    width: auto;
  }

  .burger {
    display: block;
    position: relative;
    height: 3rem;
    width: 3rem;
  }
  .burger:before, .burger:after {
    content: "";
    position: absolute;
    height: 0.4rem;
    width: calc(100% - 0.4rem);
    border-radius: 0.125rem;
    background-color: #000;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .burger:before {
    top: 20%;
  }
  .burger:after {
    bottom: 20%;
  }
  .burger.active:before {
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
  }
  .burger.active:after {
    bottom: 50%;
    -webkit-transform: translate(-50%, 50%) rotate(-45deg);
            transform: translate(-50%, 50%) rotate(-45deg);
  }

  .mobile__menu__sidebar {
    position: absolute;
    width: 100%;
    height: calc(100% - 8rem);
    top: 8rem;
    left: 100%;
    background-color: rgba(0, 0, 0, 0.3);
    -webkit-backdrop-filter: blur(3px);
            backdrop-filter: blur(3px);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 2;
  }
  .mobile__menu__sidebar.active {
    left: 0;
  }

  .mobile__menu__wrapper {
    display: block;
    width: 100%;
    max-width: 35.6rem;
    margin-left: 100%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    padding-top: 3rem;
    height: 100%;
    overflow-y: scroll;
    background-color: #fff;
  }

  .mobile__menu__item {
    padding: 1.5rem 1.5rem 1.5rem 6rem;
  }

  .mobile__menu__link {
    font-size: 1.6rem;
    line-height: 5rem;
    color: #545260;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .mobile__menu__link:hover {
    color: #397ef7;
    font-weight: 500;
  }

  .mobile__btn__block,
.mobile__menu__item {
    border-bottom: 0.1rem solid #f5f5f5;
  }

  .mobile__btn__block {
    padding: 4.5rem 0;
  }

  .sign_in__btn {
    position: relative;
    width: 22rem;
    height: 6.5rem;
    margin: 0 auto;
    font-size: 1.6rem;
    color: #545260;
    border-radius: 0.5rem;
    -webkit-box-shadow: 0 0 0.5rem rgba(179, 204, 233, 0.5);
            box-shadow: 0 0 0.5rem rgba(179, 204, 233, 0.5);
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .sign_in__btn:before,
.sign_in__btn .btn__container {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    z-index: 1;
  }
  .sign_in__btn:before {
    background: #397ef7;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    z-index: 1;
    border-radius: 0.5rem;
  }
  .sign_in__btn:hover {
    color: #fff;
  }
  .sign_in__btn:hover .vb {
    opacity: 0.3;
  }
  .sign_in__btn:hover:before {
    width: 100%;
  }
  .sign_in__btn .btn__container {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    z-index: 2;
  }
  .sign_in__btn .btn__icon {
    width: 31.8%;
    background-image: url(..//images/user_ic.png);
    background-position: center;
    background-repeat: no-repeat;
  }
  .sign_in__btn .vb {
    height: 95%;
    width: 0.1rem;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    background-color: #f5f5f5;
  }
  .sign_in__btn .btn__title {
    width: 68.2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }

  .mobile__menu__wrapper .custom__select__wrapper {
    padding: 4rem 0 0 0;
    height: 11rem;
    overflow: hidden;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }
  .mobile__menu__wrapper .custom__select__wrapper:hover {
    height: 83.9rem;
  }
  .mobile__menu__wrapper .custom__select__wrapper:hover .custom__options__block {
    padding: 0;
    height: 100%;
  }
  .mobile__menu__wrapper .custom__select__title {
    padding: 0 0 2rem 6rem;
  }
  .mobile__menu__wrapper .select__title__icon {
    width: 5rem;
    margin-right: 2rem;
  }
  .mobile__menu__wrapper .select__title {
    font-size: 2.2rem;
  }
  .mobile__menu__wrapper .custom__options__block {
    position: static;
    width: 100%;
    height: auto;
    bottom: 0;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    -webkit-box-shadow: none;
            box-shadow: none;
    opacity: 1;
    border-radius: 0;
  }
  .mobile__menu__wrapper .custom__option__wrap {
    padding: 1.5rem 1.5rem 1.5rem 6rem;
    background-color: #f1f5f8;
    border-bottom: 0.1rem solid #dfdfdf;
  }
  .mobile__menu__wrapper .custom__option img {
    width: 5rem;
  }
  .mobile__menu__wrapper .option__title {
    font-size: 1.8rem;
    color: #7b7b85;
  }

  main {
    max-width: 54rem;
    margin: auto;
    padding: 0 10px;
  }

  .main__wrap {
    position: relative;
    min-height: unset;
  }

  .left__wrapper {
    width: 100%;
    border-radius: 1.6rem;
  }

  .tab__col {
    position: absolute;
    left: 0;
    z-index: 2;
  }

  .tab__btn.active.first {
    -webkit-box-shadow: 0.6rem 0 0.3rem #e8e8e8;
            box-shadow: 0.6rem 0 0.3rem #e8e8e8;
  }
  .tab__btn.active.second {
    -webkit-box-shadow: 0.6rem 0 0.3rem #f2f5fc;
            box-shadow: 0.6rem 0 0.3rem #f2f5fc;
  }
  .tab__btn.active.third {
    -webkit-box-shadow: 0.6rem 0 0.3rem #fcf9f2;
            box-shadow: 0.6rem 0 0.3rem #fcf9f2;
  }
  .tab__btn.active.fourth {
    -webkit-box-shadow: 0.6rem 0 0.3rem #f9f1fc;
            box-shadow: 0.6rem 0 0.3rem #f9f1fc;
  }

  .info__container {
    width: 100%;
    border-radius: 1.6rem;
  }
  .info__container.first .title__block {
    margin: 12.5% auto 0;
  }
  .info__container.first .background__block {
    width: 75.75%;
    padding-top: 66.67%;
    margin: 15.625% 0 21.875% 10%;
  }
  .info__container.second .background__block {
    width: 58.75%;
    padding-top: 56.67%;
    margin: 15.625% auto 21.875%;
  }
  .info__container.third {
    background-color: #fcf9f2;
  }
  .info__container.third .background__block {
    width: 58.75%;
    padding-top: 56.67%;
    margin: 15.625% auto 21.875%;
  }
  .info__container.fourth {
    background-color: #f9f1fc;
  }
  .info__container.fourth .background__block {
    width: 62.9%;
    padding-top: 62.9%;
    margin: 15.625% auto 15.7%;
  }
  .info__container .title__block {
    max-width: 30rem;
    margin: 12.5% auto 0;
    padding: 0;
  }

  .left__wrapper {
    width: 100%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }

  .right__wrapper {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    right: 0;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    -webkit-box-shadow: none;
            box-shadow: none;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    width: calc(100% - 7rem);
  }
  .right__wrapper__container {
    width: 0;
    overflow: hidden;
    background-color: #fff;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    border-top-right-radius: 1.6rem;
    border-bottom-right-radius: 1.6rem;
    -webkit-transition: all 0.3s linear;
    transition: all 0.3s linear;
  }
  .right__wrapper .form__container {
    min-width: 300px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
  }
  .right__wrapper.active .right__wrapper__container {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    width: 100%;
  }
  .right__wrapper.active .open__btn {
    opacity: 0;
    border-radius: 1.6rem 0 0 1.6rem;
  }

  .open__btn {
    display: block;
    width: 6.4rem;
    border-radius: 0 1.6rem 1.6rem 0;
  }

  .form__container p.subtext {
    margin-bottom: 20px;
  }
  .form__container.sign__in .main__btn.ca {
    margin-bottom: 2rem;
  }
}
@media (max-width: 600px) {
  .transaction__inner-header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
    padding: 23px 30px 10px 30px;
  }
  .transaction__inner-header-filter {
    width: 100%;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .transaction__inner-header-filter li {
    width: unset;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    text-align: center;
  }
  .transaction__inner-header h4 {
    width: 100%;
    margin-bottom: 25px;
  }
  .transaction__inner-body-info-content-more {
    max-width: 160px;
  }

  .graph__inner-header-coinbase {
    display: none;
  }

  .menu__inner {
    width: 65%;
  }

  .btn__row {
    margin: 0 -10px;
  }
  .btn__row .btn {
    width: calc(50% - 20px);
    margin: 0 10px;
  }
  .btn__row .btn__icon {
    width: 35px;
  }
  .btn__row .btn__text {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .footer__title {
    font-size: 16px;
    padding: 15px 0;
  }
  .footer__link-links {
    padding: 15px 0;
  }
  .footer__footer-logo {
    font-size: 20px;
  }

  .fluidTextField, .send__body-row.fluid {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .fluidTextField .send__body-row-title, .send__body-row.fluid .send__body-row-title {
    display: none;
  }
  .fluidTextField .send__body-row-url, .send__body-row.fluid .send__body-row-url {
    -webkit-box-flex: unset;
        -ms-flex-positive: unset;
            flex-grow: unset;
    font-size: 13px !important;
  }

  .qrTab__body {
    padding: 15px;
  }

  .information {
    margin-top: 60px;
  }
  .information__inner-side-box-header {
    padding: 15px;
  }
  .information__inner-side-box-body {
    padding: 15px;
  }
  .information__inner-side-box-row {
    padding: 15px;
  }
  .information__inner-side-box-exrow {
    padding: 15px;
  }
  .information__inner-side-footer-column {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .information__inner-side-footer-column:nth-child(2) {
    margin-left: 25px;
  }
  .information__inner-side-footer-column img {
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    width: 40px;
    height: 40px;
    margin-right: 15px;
  }

  .transaction__inner-header {
    padding: 15px;
  }
  .transaction__inner-header h4 {
    margin-bottom: 10px;
  }
  .transaction__inner-body-title {
    padding: 5px 15px;
  }
  .transaction__inner-body-title li:nth-child(1) {
    width: 79px;
  }
  .transaction__inner-body-total-fyd {
    font-size: 16px;
    line-height: 1;
  }
  .transaction__inner-body-total-currency {
    font-size: 12px;
    line-height: 1;
  }
  .transaction__inner-body-info-icon {
    width: 24px;
    height: 24px;
  }
  .transaction__inner-body-info-icon svg {
    max-width: 24px;
    max-height: 24px;
  }
  .transaction__inner-body-info-content-title {
    font-size: 16px;
    line-height: 1;
  }
  .transaction__inner-body-info-content-more {
    max-width: 120px;
    font-size: 12px;
    line-height: 1;
  }
  .transaction__inner-body-row {
    padding: 15px;
  }

  .graph__inner {
    padding: 15px;
  }
  .graph__inner-header {
    display: block;
    width: 100%;
    min-width: unset;
  }
  .graph__inner-footer-info-title {
    font-size: 10px;
  }
  .graph__inner-footer-info-amount {
    font-size: 12px;
    line-height: 1;
  }

  .fydHeader__logo img {
    height: 30px;
    width: auto;
  }

  .header__inner-logo img {
    height: 30px;
    width: auto;
  }

  .menu {
    top: 60px;
    height: calc(100% - 60px);
  }
  .menu__inner {
    width: 70%;
  }

  .form__container {
    max-width: 90%;
    padding: 40px 0 0 0;
  }
  .form__container .form__subtitle {
    line-height: 1;
    margin: 0 0 25px 0;
  }

  .form__title {
    line-height: 1;
    margin: 0 0 25px 0;
  }

  .tab__col,
.open__btn {
    width: 4rem;
  }

  .tab__btn .btn__bg__img {
    width: 65%;
  }

  .info__container .title__block {
    max-width: 21.5rem;
    margin: 22.5% auto 0;
  }
  .info__container.first .title__block {
    margin: 22.5% auto 0;
  }

  .right__wrapper {
    width: calc(100% - 4.5rem);
  }
  .right__wrapper .form__container {
    min-width: 280px;
  }

  .tooltip__outer.active .tooltip {
    padding: 15px;
  }
  .tooltip__outer.active .tooltip__inner {
    max-width: 70vw;
  }
}
@media (max-width: 375px) {
  .footer__row {
    width: calc(100% - 1px);
  }

  .transaction__inner-body-info {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .transaction__inner-body-info-content {
    width: 100%;
    margin-top: 15px;
  }
  .transaction__inner-body-title {
    display: none;
  }

  .information__inner-side-footer {
    padding: 15px;
  }
  .information__inner-side-footer:after {
    display: none;
  }
  .information__inner-side-footer-row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .information__inner-side-footer-column {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 10px 0;
  }
  .information__inner-side-footer-column:nth-child(2) {
    border-top: 1px solid #f0f1f4;
    margin-left: 0;
  }
  .information__inner-side-footer-column img {
    margin-right: 25px;
  }

  .form__container .form__container {
    min-width: unset;
  }

  .info__container .title__block {
    padding: 0 1rem 0 1.3rem;
  }
  .info__container .info__title {
    font-size: 3rem;
  }
  .info__container .info__subtitle {
    font-size: 1.1rem;
  }

  .form__subtitle {
    font-size: 2rem;
    margin-bottom: 2.7rem;
  }

  .input__block img {
    left: 5%;
  }
  .input__block.social__sign__up input {
    padding-left: 27.93%;
  }

  .main__form__text {
    font-size: 1.2rem;
  }
}
