@use "sass:math";

@import "~src/styles/variables";

:host {
  display: flex;
  flex-direction: column;
}

.tab-view {

}

.transfer-mock {
  width: 411px;
  align-self: center;
}

.transfer-blur {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(27, 13, 61, 0.7);
  backdrop-filter: blur(20px);
}

.transfer-development {
  display: flex;
  flex-direction: column;
  align-self: center;
  position: absolute;
  top: 45%;
  gap: 16px;

  & &__text {
    font-weight: 600;
    font-size: 24px;
    line-height: 38px;
    text-align: center;
    color: #F5F5FF;
  }

  & &__button {
    align-self: center;
  }
}

.transfer {
  display: flex;
  flex-direction: column;
  margin: 84px auto 0;
  padding: 32px 24px;
  width: 411px;
  bottom: 173px;
  background: #1B0D3D;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.32);
  border-radius: 8px;
  gap: math.div($offshift-gap * 3, 2);;

  & &__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  & &__header-text {
    font-weight: 600;
    font-size: 20px;
    line-height: 32px;
    margin: 0;
  }

  & &__header-cog {
    font-size: 18px;
    cursor: pointer;
  }

  & &__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: $offshift-gap;
  }

  & &__switch {
    margin: 0 auto;
  }

  & &__footer {
  }

  & &__button {
    display: block;
    width: 100%;
  }
}