/* widget: Animated Ripples */

    #uc_animated_ripples_bg_addon127189ripple-background {
      position: absolute;
      top: 0px;
      bottom: 0px;
      right: 0px;
      left: 0px;
      overflow: hidden;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .circle {
      position: absolute;
      border-radius: 50%;
      background: #D9B9801C;
      animation: ripple 15s infinite;
      box-shadow: 0px 0px 1px 0px #508fb9;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .small {
      width: 200px;
      height: 200px;
      left: -100px;
      bottom: -100px;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .medium {
      width: 400px;
      height: 400px;
      left: -200px;
      bottom: -200px;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .large {
      width: 600px;
      height: 600px;
      left: -300px;
      bottom: -300px;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .xlarge {
      width: 800px;
      height: 800px;
      left: -400px;
      bottom: -400px;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .xxlarge {
      width: 1000px;
      height: 1000px;
      left: -500px;
      bottom: -500px;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .shade1 {
      opacity: 0.2;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .shade2 {
      opacity: 0.5;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .shade3 {
      opacity: 0.7;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .shade4 {
      opacity: 0.8;
    }

    #uc_animated_ripples_bg_addon127189ripple-background .shade5 {
      opacity: 0.9;
    }

    @keyframes ripple {
      0% {
        transform: scale(0.8);
      }

      50% {
        transform: scale(1.2);
      }

      100% {
        transform: scale(0.8);
      }
    }