/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.endpoint {
  width: 30vw;
  min-width: 30rem;
  margin: 20vh auto;
}

@media (min-width: 320px) and (max-width: 767px) {
  .endpoint {
    margin: auto;
  }
}

.endpoint__title {
  margin-bottom: 1.6rem;
}

.endpoint__checkbox {
  margin-top: 4.5rem;
  margin-bottom: 1.6rem;
}

[dir="ltr"] .endpoint .dc-btn--secondary {
  margin-left: 1.6rem;
}

[dir="rtl"] .endpoint .dc-btn--secondary {
  margin-right: 1.6rem;
}

.endpoint .feature-flags {
  margin-top: 4rem;
}

.endpoint .feature-flags__item {
  margin-top: 1.6rem;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.cashier__counter {
  position: absolute;
  top: 0.4rem;
}

[dir="ltr"] .cashier__counter {
  right: -1.5rem;
}

[dir="rtl"] .cashier__counter {
  left: -1.5rem;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.acc-switcher-wallet-item__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 1.6rem;
  border-radius: 4px;
  gap: 1.6rem;
  cursor: pointer;
}

.acc-switcher-wallet-item__container--active {
  background-color: var(--general-active);
}

.acc-switcher-wallet-item__container:hover:not(.acc-switcher-wallet-item__container--active) {
  background-color: var(--general-hover);
}

.acc-switcher-wallet-item__content {
  display: flex;
  flex-direction: column;
  width: 100%;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.account-switcher-wallet-list {
  padding: 0.4rem 0.8rem;
  border-bottom: 1px solid var(--general-hover);
}

@media (min-width: 320px) and (max-width: 767px) {
  .account-switcher-wallet-list {
    padding: 0;
    overflow: auto;
    border-bottom: 0;
  }
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.account-switcher-wallet {
  display: flex;
  flex-flow: column nowrap;
}

.account-switcher-wallet__header {
  padding: 1rem;
  border-bottom: 1px solid var(--general-hover);
}

.account-switcher-wallet__list {
  padding: 0.4rem 0.8rem;
  border-bottom: 1px solid var(--general-hover);
}

.account-switcher-wallet__looking-for-cfds {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.6rem;
}

.account-switcher-wallet__arrow {
  cursor: pointer;
}

[dir="ltr"] .account-switcher-wallet__arrow {
  transform: rotate(-90deg);
}

[dir="rtl"] .account-switcher-wallet__arrow {
  transform: rotate(90deg);
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.account-switcher-wallet-mobile {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}

.account-switcher-wallet-mobile__button {
  margin: 1rem 1.6rem;
}

.account-switcher-wallet-mobile__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5.6rem;
  border-top: 1px solid var(--general-hover);
  padding: 0 1.6rem;
  cursor: pointer;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.terms-of-use {
  margin: 0 8rem !important;
  width: 84% !important;
}

.terms-of-use {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  padding-bottom: 0;
  padding-bottom: initial;
}

@media (min-width: 320px) and (max-width: 767px) {
  .terms-of-use {
    margin: 0 !important;
    margin: initial !important;
    width: auto !important;
    width: initial !important;
  }
}

.terms-of-use__checkbox {
  margin-top: 1.6rem;
}

.terms-of-use__checkbox:last-of-type {
  margin-bottom: 5rem;
}

.terms-of-use__hr {
  height: 2px;
  margin: 1.6rem 0 0;
  width: 100%;
  border-top: 1px solid var(--general-section-1);
}

@media (min-width: 320px) and (max-width: 767px) {
  .terms-of-use__hr {
    border-top-width: 2px;
    border-color: var(--border-disabled);
    width: 100%;
  }
}

.terms-of-use h4 {
  margin: 1rem 0;
  text-transform: none;
}

[dir="ltr"] [dir=ltr] .terms-of-use p {
  text-align: left;
}

[dir="rtl"] [dir=ltr] .terms-of-use p {
  text-align: right;
}

[dir="ltr"] [dir=rtl] .terms-of-use p {
  text-align: right;
}

[dir="rtl"] [dir=rtl] .terms-of-use p {
  text-align: left;
}

.terms-of-use p {
  font-size: 1.4rem;
  color: var(--text-general);
  font-weight: 400;
  text-transform: none;
  line-height: 1.5;
  text-transform: none;
  color: var(--text-general);
}

.terms-of-use input {
  display: none;
}

@media (min-width: 320px) and (max-width: 767px) {
  .terms-of-use .dc-checkbox__box {
    width: 2.4rem;
    height: 2.4rem;
  }

  .terms-of-use .dc-checkbox__box .dc-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.da-inline-note-with-icon {
  margin-top: 0.8rem;
  padding: 0.8rem;
  display: flex;
  background: var(--status-alert-background);
  border-radius: 4px;
  gap: 0.8rem;
  line-height: 1.4rem;
}

.da-inline-note-with-icon .dc-icon {
  margin-top: 0.2rem;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.currency-list {
  width: 100%;
}

.currency-list form {
  width: 100%;
}

.currency-list__items {
  display: flex;
  flex-wrap: wrap;
  width: 768px;
  margin: auto;
}

.currency-list__items__center {
  justify-content: center !important;
}

@media (min-width: 1024px) {
  .currency-list__items {
    justify-content: flex-start;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .currency-list__items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    width: 100%;
  }
}

.currency-list__item {
  align-items: center;
  border-radius: 8px;
  display: inline-flex;
  flex-direction: column;
  height: 128px;
  width: 160px;
  justify-content: space-around;
  margin: 1.6rem 1.6rem 0;
  min-width: 128px;
}

.currency-list__item:hover:not(.currency-list__item--selected) {
  cursor: pointer;
  border: 1px solid var(--border-hover);
}

.currency-list__item--current {
  pointer-events: none;
}

.currency-list__item--current svg {
  opacity: 0.08;
}

.currency-list__item--current .label {
  color: var(--text-disabled);
}

.currency-list__item--selected {
  border: 2px solid var(--border-active);
}

.currency-list__item--selected .label {
  font-size: 1.4rem;
  color: var(--text-general);
  font-weight: 700;
  text-transform: none;
  text-align: center;
  line-height: 1.5;
  color: var(--text-prominent);
}

.currency-list__item > div {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}

.currency-list__item .currency-list__icon {
  height: 48px;
  width: 48px;
  margin-bottom: 1em;
}

@media (min-width: 320px) and (max-width: 767px) {
  .currency-list__item .currency-list__icon {
    height: 64px;
    width: 64px;
    margin-bottom: 0.8rem;
  }
}

.currency-list__item-text {
  text-align: center;
  font-size: 1.4rem;
  color: var(--text-general);
  font-weight: 400;
  text-transform: none;
  text-align: center;
  line-height: 1.5;
  color: var(--text-general);
}

@media (min-width: 320px) and (max-width: 767px) {
  .currency-list__item {
    margin: 1.6rem 2rem 0.8rem;
    padding: 0.8rem 0;
    width: 85%;
    min-width: 0;
    min-width: initial;
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) and (max-width: 340px) {
  .currency-list__item {
    margin: 1.6rem 1rem 0.8rem;
    width: 136px;
    height: 136px;
  }
}

.currency-list__radio-button {
  display: none;
}

.currency-list__popover {
  position: relative;
  top: -4.8rem;
  margin-top: -16px;
}

[dir="ltr"] .currency-list__popover {
  left: 4.8rem;
}

[dir="rtl"] .currency-list__popover {
  right: 4.8rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .currency-list__popover {
    top: -5.8rem;
  }

  [dir="ltr"] .currency-list__popover {
    right: 0;
  }

  [dir="rtl"] .currency-list__popover {
    left: 0;
  }
}

@media (min-width: 1024px) {
  .currency-list__loading-wrapper {
    min-width: 768px;
  }
}

.currency-hr {
  height: 2px;
  margin: 1.6rem auto;
  width: 90%;
  border-top: 1px solid var(--general-section-1);
}

@media (min-width: 320px) and (max-width: 767px) {
  .currency-hr {
    border-top-width: 2px;
    border-color: var(--border-disabled);
    width: calc(100% + 2.4rem);
  }

  [dir="ltr"] .currency-hr {
    margin-left: -2.4rem;
  }

  [dir="rtl"] .currency-hr {
    margin-right: -2.4rem;
  }
}

.currency-selector__subheading {
  margin-top: 0.8rem;
}

.currency-selector__radio-group--with-margin--is-header {
  font-size: 1.6rem;
  margin: 0.4rem 0 0;
  font-weight: bold;
  color: var(--text-prominent);
}

@media (min-width: 1024px) {
  .currency-selector__radio-group--with-margin {
    margin-bottom: 0.4rem;
    margin-left: auto;
    margin-right: auto;
    width: 768px;
  }
}

.currency-selector__deposit-warn {
  width: 78%;
  margin: calc(3% - 1rem) auto;
  padding: 10px;
}

.add-currency__title {
  margin-top: 1rem;
}

.add-currency__sub-title {
  margin-top: 0.8rem;
}

.add-currency__underline {
  border-bottom: 1px solid var(--general-section-1);
  width: 55rem;
  margin: 1.6rem auto 0;
}

.add-currency__note {
  background-color: var(--general-section-1);
  width: 55rem;
  margin: 1.1rem auto 1rem;
  padding: 0.5rem;
}

.add-currency__note-wrapper {
  width: 100%;
  display: flex;
  align-self: flex-end;
}

.add-currency__wizard-header {
  margin-top: 1rem;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.currency-selection-modal__header {
  width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 1.6rem 2.4rem;
  border-bottom: 2px solid var(--general-section-1);
}

.currency-selection-modal__header .close-icon {
  cursor: pointer;
}

[dir="ltr"] .currency-selection-modal__header .close-icon {
  margin-left: auto;
}

[dir="rtl"] .currency-selection-modal__header .close-icon {
  margin-right: auto;
}

.currency-selection-modal__body {
  display: flex;
  flex-direction: column;
  height: 31.2rem;
  padding: 0.8rem 0.8rem 2.8rem;
  overflow-y: scroll;
}

.currency-selection-modal__body .currency-item-card {
  width: 100%;
  height: 5.4rem;
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1.6rem;
  border-radius: 4px;
  cursor: pointer;
}

.currency-selection-modal__body .currency-item-card:hover {
  background-color: var(--state-hover);
}

.currency-selection-modal__body .currency-item-card--active {
  background: var(--state-active);
}

[dir="ltr"] .currency-selection-modal__body .currency-item-card__icons {
  margin-right: 1.6rem;
}

[dir="rtl"] .currency-selection-modal__body .currency-item-card__icons {
  margin-left: 1.6rem;
}

.currency-selection-modal__body .currency-item-card__details {
  display: flex;
  flex-direction: column;
}

[dir="ltr"] .currency-selection-modal__body .currency-item-card__balance {
  margin-left: auto;
}

[dir="rtl"] .currency-selection-modal__body .currency-item-card__balance {
  margin-right: auto;
}

.currency-selection-modal__bottom-controls {
  width: 100%;
  height: 7.2rem;
  position: absolute;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 2.4rem;
  border-top: 2px solid var(--general-section-1);
  background-color: var(--general-main-1);
  z-index: 4;
}

.currency-selection-modal__bottom-controls .block-button {
  width: 100%;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
@media (min-width: 320px) and (max-width: 767px) {
  .open-real-account-dialog .dc-dialog__dialog {
    max-width: 32rem;
  }

  .open-real-account-dialog .dc-dialog__content {
    font-size: 1.2rem;
  }

  .open-real-account-dialog .dc-dialog__button {
    font-size: 1.2rem;
  }
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.ready-to-verify-dialog .dc-dialog__header-wrapper, .ready-to-verify-dialog .dc-dialog__content, .ready-to-verify-dialog .dc-dialog__footer {
  display: flex;
  justify-content: center;
  text-align: center;
}

@media (min-width: 320px) and (max-width: 767px) {
  .ready-to-verify-dialog .dc-dialog__dialog {
    padding: 1.6rem;
    margin: 0 1.6rem;
  }
}

.ready-to-verify-dialog .dc-dialog__header-wrapper {
  margin-top: 0;
  margin-top: initial;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.mt5-notification-modal-body {
  border-top: 2px solid #f2f3f4;
}

@media (min-width: 320px) and (max-width: 767px) {
  .mt5-notification-modal-description {
    margin: 2rem;
  }

  .mt5-notification-modal-description--button {
    display: flex;
    width: 100%;
  }

  .mt5-notification-modal-description--footer {
    padding: 1rem 1.6rem;
  }
}

.mt5-notification-list {
  list-style: disc;
  margin-top: 0.4rem;
}

.mt5-notification-list-container {
  font-size: 1.6rem;
  color: var(--text-general);
}

[dir="ltr"] .mt5-notification-list-container {
  padding-left: 1.5rem;
}

[dir="rtl"] .mt5-notification-list-container {
  padding-right: 1.5rem;
}

.mt5-notification-list-contact {
  margin-top: 1rem;
}

.mt5-notification-list__link {
  color: var(--text-red);
  cursor: pointer;
  text-decoration: underline;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.need-real-account-for-cashier-dialog .dc-dialog__header-wrapper {
  margin: 0 0 2rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .need-real-account-for-cashier-dialog .dc-dialog__content, .need-real-account-for-cashier-dialog .dc-dialog__button {
    font-size: 1.2rem;
  }
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
@media (min-width: 320px) and (max-width: 767px) {
  .ready-to-deposit-dialog .dc-dialog__content, .ready-to-deposit-dialog .dc-dialog__button {
    font-size: 1.2rem;
  }
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.common-mistake-examples__title {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
}

.common-mistake-examples__content {
  display: grid;
  grid-row-gap: 1.6rem;
  row-gap: 1.6rem;
  margin-bottom: 2.4rem;
}

@media (min-width: 1024px) {
  .common-mistake-examples__content {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: calc((100% - 71.1rem) / 2);
         column-gap: calc((100% - 71.1rem) / 2);
    row-gap: 3.2rem;
  }
}

.common-mistake-examples__content-layout {
  background-color: var(--transparent-danger);
  gap: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem;
  box-sizing: border-box;
  border: 1px solid var(--general-section-1);
  border-radius: 4px;
  width: 23.7rem;
  height: 21.8rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .common-mistake-examples__content-layout {
    margin-left: auto;
    margin-right: auto;
  }
}

.common-mistake-examples__content-description {
  display: grid;
  grid-column-gap: 0.4rem;
  grid-template-columns: 1fr auto;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.da-icon-with-message {
  margin-top: 8rem;
  padding: 3.2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.da-icon-with-message__text {
  margin-top: 1rem;
}

.da-icon-with-message-full-width {
  width: calc(100vw - 33rem);
}

@media (min-width: 320px) and (max-width: 767px) {
  .da-icon-with-message {
    width: 100vw;
  }
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.manual-poi-details {
  margin: 0 -1rem;
  height: 100%;
  display: flex;
}

.manual-poi-details--mobile {
  padding: 2.4rem;
}

.manual-poi-details h3 {
  margin-bottom: 2.5rem;
}

.manual-poi-details__form {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.manual-poi-details__form .account-form__footer {
  max-width: 68rem;
}

.manual-poi-details__fields-content {
  flex: auto;
}

.manual-poi-details__fields-wrap {
  display: flex;
  margin-bottom: 2rem;
}

.manual-poi-details--mobile .manual-poi-details__fields-wrap {
  flex-wrap: wrap;
}

[dir="ltr"] .manual-poi-details__fields-wrap .dc-datepicker {
  margin-left: 2.4rem;
}

[dir="rtl"] .manual-poi-details__fields-wrap .dc-datepicker {
  margin-right: 2.4rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .manual-poi-details__fields-wrap .dc-input {
    margin-bottom: 2rem;
  }
}

.manual-poi-details__field {
  margin-bottom: 1.75rem;
}

.manual-poi-details__divider {
  height: 2px;
  background-color: var(--general-section-1);
  margin-bottom: 2.4rem;
}

.manual-poi-details__divider--m16 {
  margin-bottom: 1.6rem;
}

.manual-poi-details__uploaders-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.manual-poi-details__uploaders-wrap .dc-file-dropzone__message {
  width: 100%;
  max-width: none;
  pointer-events: all;
}

.manual-poi-details__uploader {
  position: relative;
  width: 100%;
  max-width: 32.4rem;
  height: 25rem;
  margin-bottom: 1.6rem;
}

.manual-poi-details--mobile .manual-poi-details__uploader {
  max-width: none;
}

.manual-poi-details__uploader--full {
  max-width: none;
}

.manual-poi-details__uploader-details {
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 1.5rem;
  min-height: 19.2rem;
}

.manual-poi-details__uploader-details--preview {
  padding: 0 2.4rem;
  max-height: 20.3rem;
}

.manual-poi-details__uploader-details p {
  margin-bottom: 2.4rem;
}

.manual-poi-details__uploader-details--preview p {
  margin-bottom: 0;
}

.manual-poi-details__uploader-image {
  position: relative;
  width: 100%;
  max-width: 27.6rem;
  height: 16.6rem;
  border-radius: 0.8rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 1.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.manual-poi-details__uploader-image--has-frame {
  background-size: contain;
}

.manual-poi-details--mobile .manual-poi-details__uploader-image {
  height: 13.4rem;
}

.manual-poi-details__uploader-frame {
  position: absolute;
  top: 50%;
  width: 100%;
  height: auto;
}

[dir="ltr"] .manual-poi-details__uploader-frame {
  left: 50%;
  transform: translate(-50%, -50%);
}

[dir="rtl"] .manual-poi-details__uploader-frame {
  right: 50%;
  transform: translate(50%, -50%);
}

.manual-poi-details__uploader-remove {
  position: absolute;
  top: 0.8rem;
  cursor: pointer;
  transition: transform 0.25s linear;
}

[dir="ltr"] .manual-poi-details__uploader-remove {
  right: 0.8rem;
}

[dir="rtl"] .manual-poi-details__uploader-remove {
  left: 0.8rem;
}

.manual-poi-details__uploader-remove:hover {
  transform: scale(1.25, 1.25);
}

.manual-poi-details__uploader-icon {
  width: 12.8rem;
  height: 7.9rem;
  margin-bottom: 1.5rem;
}

.manual-poi-details__icons {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 1.7rem;
  justify-content: center;
}

.manual-poi-details__icons-item {
  flex: 0.25;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 1rem;
  min-height: 9.2rem;
}

.manual-poi-details--mobile .manual-poi-details__icons-item {
  flex: none;
  width: 50%;
  min-height: 7.6rem;
}

.manual-poi-details__icons-item p {
  max-width: 12.4rem;
}

.manual-poi-details--mobile .manual-poi-details__icons-item p {
  max-width: 13.2rem;
}

.manual-poi-details__icons-item svg {
  height: 4.8rem;
}

.manual-poi-details__btns {
  flex: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

[dir="ltr"] .manual-poi-details__btns .dc-btn:not(:last-of-type) {
  margin-right: 0.8rem;
}

[dir="rtl"] .manual-poi-details__btns .dc-btn:not(:last-of-type) {
  margin-left: 0.8rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .manual-poi-details__btns {
    height: auto;
    padding-bottom: 0;
    padding-bottom: initial;
  }

  .manual-poi-details__btns .dc-btn {
    width: 50%;
  }
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
@media (min-width: 320px) and (max-width: 767px) {
  .manual-poi {
    margin: 3.2rem 0 1.6rem;
  }
}

.manual-poi__title {
  margin-left: 1.6rem;
  margin-right: 1.6rem;
}

.manual-poi .dc-card__wrapper {
  justify-content: center;
}

.manual-poi .dc-card__wrapper:last-of-type {
  margin-bottom: 4rem !important;
}

.manual-poi__card {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: flex-start;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

[dir="ltr"] [dir=rtl] .manual-poi__card svg:not(:first-child) {
  transform: rotate(180deg);
}

[dir="rtl"] [dir=rtl] .manual-poi__card svg:not(:first-child) {
  transform: rotate(-180deg);
}

.manual-poi__card .dc-icon {
  flex: none;
}

.manual-poi__card-content {
  width: 100%;
}

[dir="ltr"] .manual-poi__card-content {
  margin: 0 0 0 2.4rem;
}

[dir="rtl"] .manual-poi__card-content {
  margin: 0 2.4rem 0 0;
}

[dir="ltr"] .manual-poi--mobile .manual-poi__card-content {
  margin: 0 0 0 1.6rem;
}

[dir="rtl"] .manual-poi--mobile .manual-poi__card-content {
  margin: 0 1.6rem 0 0;
}

.manual-poi__card-content p {
  max-width: 45.8rem;
}

.manual-poi--mobile .manual-poi__card-content p {
  max-width: 15.2rem;
}

.manual-poi__card-content p:first-of-type {
  margin-bottom: 0.8rem;
}

.manual-poi__card-icon {
  flex: none;
}

.manual-poi__detail-header {
  display: grid;
  grid-template-columns: auto 1fr;
  cursor: pointer;
  width: 100%;
  grid-column-gap: 1rem;
  align-content: start;
}

.manual-poi__upload-icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  height: 10rem;
  grid-gap: 1rem;
  margin: 1rem 0 0;
}

@media (min-width: 1024px) {
  .manual-poi__upload-icons {
    grid-template-columns: repeat(4, 1fr);
  }
}

.manual-poi__upload-icons--no-margin {
  margin: 0;
  text-align: center;
  align-items: center;
}

.manual-poi__upload-container {
  position: relative;
  width: 100%;
}

.manual-poi__image-preview {
  width: 28.8rem;
  height: 16rem;
  background-image: var(--poi-background-image-upload-preview);
  background-size: cover;
  border-radius: 4px;
}

.manual-poi__image-preview-container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.manual-poi__confirm-buttons {
  display: grid;
  grid-gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.dc-modal-header--verification-modal {
  border-bottom: 1px solid var(--general-section-1);
}

.dc-modal .proof-of-identity {
  width: 100%;
  height: 100%;
  overflow: auto;
}

.dc-modal .proof-of-identity__main-container {
  margin: 0 auto;
  max-width: 84rem;
}

.dc-modal .proof-of-identity__main-container .onfido-container {
  padding-top: 1.6rem;
}

.dc-modal .proof-of-identity__main-container .manual-poi {
  max-width: 67rem;
  margin: 0 auto;
  padding: 2rem;
}

.dc-modal .proof-of-identity__main-container .manual-poi-details {
  margin: 0 auto;
}

.dc-modal .proof-of-identity__main-container .account-form {
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.dc-modal .proof-of-identity__main-container .account-form_poa {
  margin-top: 1rem;
  padding: 1rem 0 10rem;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .dc-themed-scrollbars .account__scrollbars_container {
  padding: 0;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section {
  align-items: initial;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-side-note {
  width: 26rem;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content {
  width: 40rem;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-icon {
  margin-bottom: 1rem;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-item {
  width: 100%;
  padding: 0 0.5em;
  font-size: var(--text-size-xxs);
  line-height: 1.5;
  color: var(--text-prominent);
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-list {
  width: 100%;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

[dir="ltr"] .dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-list {
  margin-right: 1.6rem;
}

[dir="rtl"] .dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-list {
  margin-left: 1.6rem;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-list .account-poa__upload-box {
  border: 1px solid var(--icon-grey-background);
  border-radius: 8px;
  margin: 0 0.8rem 1.6rem;
  padding: 0.8rem;
  display: flex;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-box {
  flex-direction: column;
  margin-bottom: 2rem;
  text-align: center;
  align-items: center;
  justify-content: flex-start;
  flex: 1 0 calc(33.3333333333% - 3.2rem);
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-file {
  flex: 1;
  height: 24rem;
  position: relative;
  margin: 0 0.8rem;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-file .dc-file-dropzone {
  border: 1px solid var(--general-active);
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-remove-btn {
  position: absolute;
  width: 1.6rem;
  height: 1.6rem;
  top: 0.8rem;
  cursor: pointer;
  transition: transform 0.25s linear;
}

[dir="ltr"] .dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-remove-btn {
  right: 0.8rem;
}

[dir="rtl"] .dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__upload-remove-btn {
  left: 0.8rem;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__details-section {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
}

.dc-modal .proof-of-identity__main-container .account-form_poa .account-form__section-content .account-poa__details-fields {
  width: 100%;
  min-width: 40rem;
  flex: 1;
}

.dc-modal .proof-of-identity__main-container .account-form__fieldset {
  gap: initial !important;
}

.dc-modal .proof-of-identity__main-container .account-form__fieldset {
  margin-bottom: 0;
}

.dc-modal .proof-of-identity__main-container .account-form__fieldset .dc-autocomplete {
  margin-bottom: 3.2rem;
}

.dc-modal .proof-of-identity__main-container .account-form__header {
  margin-bottom: 1.6rem;
  position: relative;
  height: 1.6rem;
  white-space: nowrap;
}

.dc-modal .proof-of-identity__main-container .account-form__header:not(:first-child) {
  margin-top: 1.6rem;
}

.dc-modal .proof-of-identity__main-container .account-form__section {
  grid-template-areas: "section-side-note section-content";
  grid-template-columns: auto 1fr;
  grid-gap: 1rem;
}

.dc-modal .proof-of-identity__main-container .account-form__section-side-note {
  grid-area: section-side-note;
}

.dc-modal .proof-of-identity__main-container .account-form__section-content {
  grid-area: section-content;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__main-container .account-form__section {
    grid-template-columns: none;
    grid-gap: 0;
    grid-template-areas: "section-side-note" "section-content";
  }
}

.dc-modal .proof-of-identity__main-container .account-form__footer {
  height: 8rem;
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  padding: 1.6rem 2.4rem;
  align-items: center;
  justify-content: flex-end;
  z-index: 4;
  border-top: 1px solid var(--general-section-1);
  background-color: var(--general-main-1);
}

[dir="ltr"] .dc-modal .proof-of-identity__main-container .account-form__footer {
  left: 0;
  border-radius: 0 4px 4px 0;
}

[dir="rtl"] .dc-modal .proof-of-identity__main-container .account-form__footer {
  right: 0;
  border-radius: 4px 0 0 4px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__main-container .account-form__footer-btn {
    width: 100%;
  }
}

.dc-modal .proof-of-identity__main-container .account-management__list-container {
  margin-top: 1.6rem;
  max-width: 50.6rem;
  display: flex;
  flex-direction: column;
}

.dc-modal .proof-of-identity__main-container .account-management__list-icon {
  margin: 0.2rem 1.2rem 0;
}

.dc-modal .proof-of-identity__main-container .account-management__list-message {
  display: flex;
  margin-bottom: 1.6rem;
}

.dc-modal .proof-of-identity__main-container .account-management__list-message:last-of-type {
  margin-bottom: 0;
}

.dc-modal .proof-of-identity__main-container .account-management__list-button.dc-btn {
  margin-top: 2.4rem;
  width: -moz-fit-content;
  width: fit-content;
  align-self: center;
}

.dc-modal .proof-of-identity__main-container .account-management__message {
  margin-top: 1em;
}

.dc-modal .proof-of-identity__main-container .account-management__message-content {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0 1.6rem;
  align-items: center;
  flex-direction: column;
}

.dc-modal .proof-of-identity__main-container .account-management__message-content .dc-btn {
  height: 4rem;
  margin-top: 3.2rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__main-container .account-management__message-content .dc-btn {
    margin: 1.6rem 0;
    padding: 1.6rem;
    width: 100%;
  }
}

.dc-modal .proof-of-identity__main-container .account-management__message-icon {
  width: 12.8rem;
  height: 12.8rem;
  margin-top: 8rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__main-container .account-management__message-icon {
    margin-top: 4rem;
    /* iPhone SE screen height fixes due to UI space restrictions */
  }
}

@media only screen and (min-width: 320px) and (max-width: 767px) and (max-height: 480px) {
  .dc-modal .proof-of-identity__main-container .account-management__message-icon {
    margin-top: 3.2rem;
  }
}

.dc-modal .proof-of-identity__main-container .account-management__message-title {
  font-size: var(--text-size-xs);
  margin-bottom: 1rem;
  text-align: center;
}

.dc-modal .proof-of-identity__main-container .account-management__message-subtitle {
  font-size: var(--text-size-xxs);
  font-weight: 400;
  text-align: center;
  line-height: 1.5;
}

.dc-modal .proof-of-identity__main-container .account-management__message-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}

.dc-modal .proof-of-identity__main-container .account-management__message-wrapper-full-width {
  width: calc(100vw - 33rem);
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__main-container .account-management__message-wrapper-full-width {
    width: 100%;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__main-container .account-management__message-wrapper {
    overflow-x: hidden;
    overflow-y: auto;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__main-container .account-management__message {
    line-height: 2rem;
    text-align: center;
  }
}

.dc-modal .proof-of-identity .min-height {
  min-height: 50vh;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity .min-height {
    min-height: 0;
    min-height: initial;
  }
}

.dc-modal .proof-of-identity__container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__container {
    min-height: 0;
    min-height: initial;
    overflow-y: scroll;
    justify-content: center;
  }
}

.dc-modal .proof-of-identity__container--reset {
  align-items: normal;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__container--reset {
    overflow-y: visible;
    overflow-y: initial;
    padding: 1.6rem;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__container--reset .proof-of-identity__submit-button {
    margin: 0;
    margin: initial;
    width: 100%;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__container--reset .account-form__footer {
    padding: 1.6rem 2.4rem;
  }
}

@media (min-width: 1024px) {
  .dc-modal .proof-of-identity__container--reset .form-body {
    z-index: 5;
  }
}

.dc-modal .proof-of-identity__container .icon {
  width: 12.8rem;
  height: 12.8rem;
  margin: 5.2rem auto 2.6rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__container .icon {
    width: 7.2rem;
    height: 7.2rem;
    margin-top: 2.6rem;
  }
}

.dc-modal .proof-of-identity__container .external-dropdown .dc-dropdown-list {
  z-index: 5;
}

.dc-modal .proof-of-identity__redirection .dc-btn {
  margin-top: 3.2rem;
  height: 4rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__redirection .dc-btn {
    margin: 1.6rem 0;
    padding: 1.6rem;
    width: 100%;
  }
}

.dc-modal .proof-of-identity__country-text {
  margin-bottom: 1.6rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__text {
    width: 94%;
    text-align: center;
  }
}

.dc-modal .proof-of-identity__dropdown-container {
  margin-top: 1.6rem;
}

.dc-modal .proof-of-identity__inner-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__inner-container {
    flex-direction: column;
  }
}

.dc-modal .proof-of-identity__header {
  margin: 5.4rem 0 1.6rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__header {
    margin: 2.4rem 0 0.8rem;
  }
}

.dc-modal .proof-of-identity__footer.external-footer {
  padding: 0;
  padding: initial;
  position: static;
  position: initial;
  top: auto;
  top: initial;
  bottom: auto;
  bottom: initial;
  border: none;
  height: -moz-fit-content;
  height: fit-content;
  z-index: 4;
}

.dc-modal .proof-of-identity__footer {
  height: 8rem;
  position: absolute;
  bottom: 0;
  display: flex;
  width: 100%;
  padding: 1.6rem 2.4rem;
  align-items: center;
  justify-content: flex-end;
  z-index: 4;
  border-top: 0.1rem solid var(--general-section-1);
  background-color: var(--general-main-1);
}

[dir="ltr"] .dc-modal .proof-of-identity__footer {
  left: 0;
  border-radius: 0 4px 4px 0;
}

[dir="rtl"] .dc-modal .proof-of-identity__footer {
  right: 0;
  border-radius: 4px 0 0 4px;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    position: fixed;
    bottom: 0;
  }
}

[dir="ltr"] .dc-modal .proof-of-identity__footer-alert {
  margin-right: auto;
}

[dir="rtl"] .dc-modal .proof-of-identity__footer-alert {
  margin-left: auto;
}

@media (min-width: 320px) and (max-width: 767px) {
  [dir="ltr"] .dc-modal .proof-of-identity__submit-button {
    margin-right: 1.2rem;
  }

  [dir="rtl"] .dc-modal .proof-of-identity__submit-button {
    margin-left: 1.2rem;
  }
}

.dc-modal .proof-of-identity__fieldset {
  width: 39.5rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__fieldset {
    width: 94%;
    margin: 0.4rem 0 3.2rem;
  }
}

.dc-modal .proof-of-identity__fieldset .document-dropdown {
  margin: 0.4rem 0 3.2rem;
}

.dc-modal .proof-of-identity__fieldset .country-dropdown {
  min-height: 35.2rem;
}

.dc-modal .proof-of-identity__fieldset-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__fieldset-container {
    width: 100%;
  }
}

.dc-modal .proof-of-identity__fieldset-input {
  width: 39.5rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__fieldset-input {
    width: 94%;
    margin-top: 0.4rem;
  }
}

[dir="ltr"] .dc-modal .proof-of-identity__sample-container {
  margin-left: 1.6rem;
}

[dir="rtl"] .dc-modal .proof-of-identity__sample-container {
  margin-right: 1.6rem;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__sample-container {
    width: 94%;
  }

  [dir="ltr"] .dc-modal .proof-of-identity__sample-container {
    margin-left: 0;
    margin-left: initial;
  }

  [dir="rtl"] .dc-modal .proof-of-identity__sample-container {
    margin-right: 0;
    margin-right: initial;
  }
}

.dc-modal .proof-of-identity__sample-container-external {
  margin-top: 2.8rem;
}

.dc-modal .proof-of-identity__sample-container .dc-modal .proof-of-identity__image-container {
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.8rem;
  border-radius: 4px;
  background-color: #f2f3f4;
}

.dc-modal .proof-of-identity__image {
  max-width: 24.5rem;
  border-radius: 4px;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 320px) and (max-width: 767px) {
  .dc-modal .proof-of-identity__image {
    max-width: calc(95vw - 1.6rem);
  }
}

.dc-modal .proof-of-identity__redirect {
  width: auto !important;
}

.dc-modal .proof-of-identity .text {
  display: block;
}

.dc-modal .proof-of-identity .btm-spacer {
  margin-bottom: 1.6rem;
}
/*------------------------------------*
 *  # Constants
 *------------------------------------*/
/*RTL Language Mixin*/
/* stylelint-disable color-no-hex */
/* COLOR PALETTE */
/* colors */
/* status colors */
/* alpha colors */
/* gradient colors */
/* Preserve legacy variables */
/* Primary */
/* stylelint-enable color-no-hex */
/* Wallet gradient background */
/* App Cards gradient background */
/* Wallets */
/*------------------------------------*
 *  # SASS Mixins and Functions
 *------------------------------------*/
/*
 * SASS interpolation
 */
/*
 * PX to EM
 * @param $px - px value to be converted
 * @param $base - base font size (in `em`)
 * Note: 'em' values are calculate based on the element font-size
 *       to properly converts 'px' to 'em', please pass in the element font-size with it
 * Usage example:
    padding: em(16px, 1.6em); // font-size in 'em'
 */
/*
 * Set property by passing a property name, and values.
 * @param $property name - padding, margin etc.
 * @param $values        - values in `px` (space separated for multiple values)
 * @param $font-size     - base font-size in `em`
 * Usage example:
   @include toEm(padding, 8px 16px 8px, 1.6em);
 */
/*
 * Generate typefaces key-value pair of variable name and config
 * Example:
   --paragraph-center-bold-black: (14px, center, bold, black)
 */
/*
 * Sets font-size, font-weight, color, text-transform, text-align and line-height
 * Usage example:
   @include setTypeface(16px, bold, black, uppercase);
 */
/*
 * Set typefaces by passing a typeface variable name
 * @param $var   - typeface variable
 * @param $tt    - text-transform property
 * @param $align - text-align property
 * Usage example:
   @include typeface(--paragraph-bold-black, uppercase, center);
 */
/*
 * Range Slider Thumb styling is set here
 */
/*
 * SVG icons colors
 */
/*
 * Bar Spinner Animation
 * @param $count    - number of bars
 * @param $duration - duration of animation
 * @param $phase    - each bar phase change delay
 * Usage example:
   @include createBarspinnerAnimation(5, 1.2s, 0,1);
 */
/*
 * Tooltip colors
 * @param $color - color property
 * Usage example:
   @include tooltipColor($COLOR_RED);
 */
/*
 * Convert Tooltip colors
 * @param $color - css color property
 * Usage example:
   @include convertTooltipColor(var(--status-default));
 */
/*
    Constants
*/
/*
    Variables
*/
/*
    List of all typefaces variables in the format: --$FONT_SIZES-$TEXT_ALIGN-$FONT_WEIGHTS-COLORS.
    See $FONT_SIZES, $TEXT_ALIGN, $FONT_WEIGHTS, $COLORS maps above for references.
    Variables name example: --title-center-semibold-red
 */
/*
    to use styles without modifier class on .inline-icon
    use @extend

    e.g. style icon on parent hover:
        a:hover .inline-icon {
            @extend %inline-icon-active;
        }
*/
/**
 * Define Breakpoints here.
 */
.devtools__toggle-button {
  background: #ff444f;
  border: 0px;
  padding: 0px;
  position: fixed;
  z-index: 99999;
  font-size: 1.5em;
  margin: 0.5em;
  cursor: pointer;
  bottom: 0px;
  width: 40px;
  height: 40px;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  padding-bottom: 2px;
  font-weight: bold;
  transition: all 0.2s;
}

[dir="ltr"] .devtools__toggle-button {
  right: 0px;
}

[dir="rtl"] .devtools__toggle-button {
  left: 0px;
}

.devtools__toggle-button:hover {
  scale: 1.1;
}

.devtools__panel {
  font-size: max(12px, min(1.5vw, 14px));
  font-family: sans-serif;
  display: flex;
  background-color: rgb(11, 21, 33);
  color: #fff;
  height: 290px;
  position: fixed;
  bottom: 0px;
  border-top: 1px solid rgb(63, 78, 96);
  transform-origin: center top;
  box-shadow: rgba(0, 0, 0, 0.3) 0px 0px 20px;
  z-index: 100000;
  transition: all 0.2s ease 0s;
  width: 100%;
  max-height: 90%;
}

[dir="ltr"] .devtools__panel {
  direction: ltr;
  left: 0px;
}

[dir="rtl"] .devtools__panel {
  direction: rtl;
  right: 0px;
}

.devtools__panel--open {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
  transform: translateY(0px) scale(1);
}

.devtools__panel--close {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(15px) scale(1.02);
}

.devtools__panel-left {
  flex: 1 1 500px;
  min-height: 40%;
  max-height: 100%;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

[dir="ltr"] .devtools__panel-left {
  border-right: 1px solid rgb(34, 46, 62);
}

[dir="rtl"] .devtools__panel-left {
  border-left: 1px solid rgb(34, 46, 62);
}

.devtools__panel-right {
  flex: 1 1 500px;
  display: flex;
  flex-direction: column;
  overflow: auto;
  height: 100%;
}

.devtools__close-button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  font-size: 0.9em;
  font-weight: bold;
  background: rgb(63, 78, 96);
  border: 0px;
  border-radius: 0.3em;
  color: #fff;
  padding: 0.5em;
  cursor: pointer;
  position: absolute;
  z-index: 99999;
  margin: 0.5em;
  bottom: 0px;
}

[dir="ltr"] .devtools__close-button {
  right: 0px;
}

[dir="rtl"] .devtools__close-button {
  left: 0px;
}

.devtools__panel-title {
  padding: 0.5em;
  background: rgb(19, 35, 55);
  position: sticky;
  top: 0px;
  z-index: 1;
}

.devtools__checkbox-container {
  display: flex;
  flex-wrap: wrap;
}

.devtools__checkbox {
  margin: 10px 5px;
}

.devtools__checkbox-label {
  color: #fff;
}

.devtools__endpoint-container {
  margin: 10px;
  gap: 15px;
  display: flex;
  flex-direction: column;
}

.devtools__endpoint-container a {
  color: #ff444f;
}

.devtools__endpoint-container .dc-input__field {
  color: #fff;
}

.devtools__endpoint-container .dc-input__label {
  background: rgb(11, 21, 33);
}

.devtools__endpoint-container .dc-input__field ~ label {
  color: #fff !important;
}

.devtools__endpoint-actions {
  display: flex;
  gap: 15px;
}
