﻿
@charset "utf-8";

        body, html {
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            overflow-y: auto; 
            scroll-behavior: smooth;
			-webkit-overflow-scrolling: touch;
			-ms-overflow-style: none;
			scrollbar-width: none;
        }		
		html::-webkit-scrollbar, body::-webkit-scrollbar {
			display: none;
		}

        .lock-scroll {
            overflow-y: hidden !important;
        }

        section {
            width: 100%;
            height: 100vh;
            display: flex !important;
            justify-content: center;
            align-items: center;
        }

		svg {
			fill: currentColor;
		}


		

		
        .rolka-scroll-container {
            width: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-color: #f0f0f0;
        }

        .rolka-top-padding {
            height: 50px;
        }

        .rolka-bottom-padding {
            height: 50px;
        }

        .rolka-main-content {
            width: 100%;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #f0f0f0;
        }

        .rolka-nav-buttons {
            position: fixed;
            right: 24px;
            top: 50%;
            transform: translateY(-50%);
            display: flex;
            flex-direction: column;
            gap: 16px;
            z-index: 1000;
        }

        .rolka-nav-buttons-bottom {
            position: fixed;
            left: 50%;
            bottom: 20px;
            transform: translateX(-50%);
            z-index: 1000;
        }

        .rolka-nav-btn-link {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background-color: rgba(0, 0, 0, 0.07);
            color: #191919 !important;
            text-decoration: none;
            cursor: pointer;
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            transition: 
                opacity 200ms cubic-bezier(0.05, 0.7, 0.1, 1) 400ms, 
                transform 1000ms cubic-bezier(0.19, 1, 0.22, 1) 400ms,
                background-color 0.2s;
        }

        .rolka-nav-btn-link.rolka-nav-btn-hidden {
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: 
                opacity 300ms, 
                transform 400ms, 
                visibility 400ms;
        }

        .rolka-nav-buttons #btn-up.rolka-nav-btn-hidden { transform: translateY(34px); }
        .rolka-nav-buttons #btn-down.rolka-nav-btn-hidden { transform: translateY(-34px); }

        .rolka-nav-btn-link:hover {
			background-color: rgba(0, 0, 0, 0.15); 
		}

        .footer-button-container {
            width: 100%;
            height: 300px;
            background-color: white;
            display: flex;
            justify-content: center;
            align-items: center;
        }

		/* USUNAC */
		rolka-nav-btn-link
        .rolka-bottom-link-doc {
             position: absolute;
             bottom: 0;
             left: 0;
             right: 0;
             width: 100%;
             height: 390px;
             z-index: 99999;
             cursor: pointer;
        }		
		
        .rolka-xs {
			object-fit: cover; 
			width: 100%; 
			height: 310px; 
			max-height: 310px;
        }
		
        .rolka-sm {
			object-fit: cover; 
			width: 100%; 
			height: 530px; 
			max-height: 530px;
        }
		
        .rolka-mdlg {
			object-fit: cover; 
			width: 100%; 
			height: 490px; 
			max-height: 490px;
        }

