/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 12 2025 | 09:44:10 */
 body 
        {
          margin: 0; 
        }
        
        #test 
        {
		  backdrop-filter: blur(5px);
		  z-index: 99999;
          display: flex;
          justify-content: center;
          align-items: center;
          position: fixed;
          top: 0; 
          left: 0; 
          height: 100%;
          width: 100%;
          background-color: rgba(50, 0, 0, 0.55);
          visibility: hidden; 
        }

        #galery-img
        {
		  max-width: 70%;
		  max-height: 80%;
		  width: auto;
          position: fixed;
          top: 50%;
          left: 50%;
          background-color: transparent;
          transform: translate(-50%, -50%);
        }

        #btn1
        {
          transform: scale(0);
          transition: 0.35s;
		  z-index: 9999999;
          width: 5vw;
          position: fixed;
          top: 50%;
          left: 90%;
		  cursor: pointer;	
        }

        #btn2
        {
          transform: scale(0);
          transition: 0.35s;
		  z-index: 9999999;
          width: 5vw;
          position: fixed;
          top: 50%;
          left: 5%;
		  cursor: pointer;	
        }

        #btn1.visible,
        #btn2.visible {
          transform: scale(1);
        }

          #btn1.hover,
          #btn2.hover {
            transform: scale(1.3);
          }

		.show-galery
		{
			cursor: pointer;	
		}