/*!
 * -------------------------------------------------------
 * Project Name : Prop Funding
 * Author       : SoftwareZon
 * Author URL   : https://softwarezon.com
 * Version      : 1.0.0
 * Created      : 2025
 * Description  : Contains global CSS used by Transparency Widget section.
 * File         : transparency-widget.css
 * -------------------------------------------------------
 * ©2025 SoftwareZon. All Rights Reserved.
 * -------------------------------------------------------
 */
/*----------------------------------------------------
  01. Transparency Widget Section Styles
----------------------------------------------------*/
.glass-effect-card {
  background: #ffffff0a;
  border-radius: 30px;
  padding: 10px;
}
.glass-effect-card-inner {
  backdrop-filter: blur(20px);
  background: #ffffff0a;
  box-shadow: 0px 0px 54px 0px #0000008c;
  border-radius: 20px;
  padding: 30px;
}
.glass-effect-card-icon img {
  max-width: 50px;
}
.glass-effect-card-icon {
  height: 80px;

  width: 80px;
  border-radius: 100%;
  padding: 20px;
}
.transparency-inner-card {
  position: absolute;
  left: 0%;
  right: 0;
  margin: 0 auto;
  top: 50%;
  transform: translateY(-50%);
}
.live-trade-thumbnails > img {
  filter: blur(4px);
  border-radius: 5px;
}
.live-trade-thumbnails::after {
  content: "";
  position: absolute;
  bottom: 0px;
  left: 0px;
  z-index: -1;
  background: rgba(0, 0, 0, 0.9);
  height: 100%;
  width: 100%;
  border-radius: 10px;
}
.live-trade-thumbnails img {
  border-radius: 50px !important;
}
@media all and (max-width: 767px) {
  .transparency-inner-card {
    position: inherit;
    transform: translateY(0%);
  }
}
