@import '../../styles/variable.scss';

.#{$prefix}-risk-info {
  box-shadow: none !important;
  &-card {
    border-radius: 8px !important;
    &-title {
      padding: 33px 0 15px !important;
    }
  }
  &-title {
    padding-left: 28px;
    background-image: url('../../assets/images/svg/alert.svg');
    background-repeat: no-repeat;
    background-position: left center;
    background-size: 24px;
  }

  &-highlight {
    position: relative;
    width: 100%;
    background: rgba(242, 154, 96, .3);
    border-radius: 4px;
    &::before {
       position: absolute;
       top: 0;
       left: 0;
       width: 2px;
       height: 100%;
       background: #F44C4C;
       content: '';
    }
    &-text {
      color: #F44C4C;
    }

    &-impact {
      margin: 6px 0 13px;
      color: #75080A;
      font-weight: bold;
      font-size: 18px;
    }
  }

  &-assets {
    width: 100%;
    background-image: url('../../assets/images/svg/divide-swap.svg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 8px 34px;
    &-left,
    &-right {
      flex-grow: 0;
      &-amount{
        width: 30vw;
      }
    }
  }

  &-action {
    &-continue {
      &-btn {
        &-continue {
          height: auto !important;
        }
      }
    }

    &-confirm {
      &-btn {
        &-cancel,
        &-confirm {
          height: auto !important;
        }
      }
    }
  }
}

.theme--dark {
  .#{$prefix}-risk-info {
    &-title {
      background-image: url('../../assets/images/svg/alert-dark.svg');
    }

    &-highlight {
      &-impact {
        color: #F34A4D;
      }

      &::before,
      &-text {
        color: #F67070;
      }
    }
  }
}