            .FullscreenImage_Base{
              width: 100%;
              height: 100%;
              background-color: rgba(0,0,0,.5);
              position: fixed;
              top: 0;
              left: 0;
              z-index: 9998;
              transition: .25s;
              opacity: 0;
              pointer-events: none;
            }
            .FullscreenImage_Base.Show{
              opacity: 1;
              transition: .25s;
              pointer-events: auto;
            }
            .FullscreenImage_Base_Exit{
              width: 40px;
              height: 40px;
              right: 5px;
              top: 5px;
              position: absolute;
              font-size: 25px;
              line-height: 40px;
              text-align: center;
              cursor: pointer;
              background-color: rgb(50,50,50);
              border: 1px solid rgb(200,200,200);
              border-radius: 50%;
              color: rgb(200,200,200);
            }
            .FullscreenImage{
              width: 80%;
              height: 80vh;
              position: absolute;
              margin-top: 20vh;
              margin-left: 10%;
              background-repeat: no-repeat;
              background-size: contain;
              background-position: center;
              transition: .25s;
              background-image: none;
              background-color: black;
            }
            .FullscreenImage.Show{
              margin-top: 10vh;
              transition: .25s;
            }
            .ProfileImage{
              width: 250px;
              height: 250px;
              border-radius: 50%;
              display: block;
              margin-left: auto;
              margin-right: auto;
              object-fit: cover;
              margin-top: 25px;
              margin-bottom: 25px;
              cursor: pointer;
            }
            .product-title_Base{
              font-size: 16px;
              font-weight: bold;
              color: rgba(0,0,0,1);
              cursor: pointer;
              transition: 0.15s;
            }
            .product-title_Base:hover{
              color: rgba(0,0,0,.5);
              transition: 0.15s;
            }
            .amount{
              color: rgba(0,0,0,.5);
              font-size: 14px;
            }
            .product-thumb img:hover{
              cursor: pointer;
              filter: brightness(90%);
              transition: 0.15s;
            }
            .product:hover .Profile_Bookmark{
              opacity: 1;
              bottom: 100px;
              transition: 0.15s;
            }
            .PrintImage_Base:hover .Profile_Bookmark{
              opacity: 1;
              bottom: 900px;
              margin-left: -110px;
              transition: 0.15s;
            }
            .Profile_Bookmark{
              width: 40px;
              height: 40px;
              position: absolute;
              font-size: 25px;
              line-height: 40px;
              text-align: center;
              transition: 0.15s;
              z-index: 1;
              background-image: url('images/flat-color-icons-svg/like.svg');
              background-size: cover;
              background-repeat: no-repeat;
              background-position: center;
              filter: grayscale(100%);
              left: 50%;
              bottom: 85px;
              margin-left: -20px;
              opacity: 0;
              transition: 0.15s;
            }
            .Profile_Bookmark:hover{
              cursor: pointer;
              filter: grayscale(90%);
              transition: 0.15s;
            }
            .Profile_Bookmark.Selected:hover{
              filter: grayscale(10%);
              transition: 0.15s;
            }
            .Profile_Bookmark.Selected{
              filter: grayscale(0%);
            }

             