
            .new-download-app {
              position: fixed;
              width: 100%;
              left: 0;
              padding: 0 10px;
              opacity: 0;
              transform: translateY(100px);
              z-index: -1;
              transition: all 0.5s;
              bottom: 0;
            }

            .new-download-app.show {
              opacity: 1;
              transform: translateY(-15px);
              z-index: 999;
            }

            .new-download-app .box-content {
              background: #f5f5f5;
              padding: 0 10px 0 20px;
              border-radius: 15px;
              border: 1px solid #F2F2F2;
              background: #FFF;
              box-shadow: 0px 5px 10px 0px rgba(188, 188, 188, 0.50);
              float: left;
              width: 100%;
              display: flex;
              align-items: center;
            }

            .new-download-app .box-content .img img {
              margin-top: 10px;
              max-width: 52px;
              height: auto;
            }

            .new-download-app .box-content .desc {
              display: flex;
              align-items: left;
              flex-direction: column;
              padding-left: 15px;
              text-align: left;
            }

            .new-download-app .box-content h4 {
              font-size: 16px;
              font-style: normal;
              font-weight: 600;
              line-height: 26px;
              margin: 0;
            }

            .new-download-app .box-content p {
              font-size: 14px;
              font-style: normal;
              font-weight: 500;
              line-height: 18px;
              margin-bottom: 2px;
            }

            .new-download-app .box-content a {
              font-size: 14px;
              font-style: normal;
              font-weight: 500;
              line-height: 18px;
              color: #F47920;
              text-align: left;
              position: relative;
            }

            .new-download-app .box-content a::after {
              width: 16px;
              height: 16px;
              content: "";
              background: var(--icon-Angle_right_orange) center center no-repeat;
              position: absolute;
              background-size: 16px;
              top: 1px;
              margin-left: 0px;
            }

            .container-close {
              position: absolute;
              top: 50%;
              transform: translateY(-50%);
              cursor: pointer;
              display: flex;
              align-items: center;
              justify-content: center;
              right: 20px;
              width: 30px;
              height: 30px;
            }

            .button-close {
              background: url(/static/theme/2022/close-circle.svg) no-repeat;
              background-size: 100%;
              width: 24px;
              height: 24px;
            }

            @media screen and (max-width: 767px) {
              .new-download-app {
                display: block;
              }
            }