/*
Click nbfs://nbhost/SystemFileSystem/Templates/Licenses/license-default.txt to change this license
Click nbfs://nbhost/SystemFileSystem/Templates/Other/CascadeStyleSheet.css to edit this template
*/
/* 
    Created on : 4 дек. 2025 г., 14:46:46
    Author     : strokin
*/
.policy-popup {
    display: none;
    padding: 20px;
    border-radius: 5px;
    position: fixed;
    bottom: 40px;
    right: 40px;
    background-color: #178EC9;
    color: white;
    box-shadow: 0px 0px 8px 0px rgba(34, 60, 80, 0.2);
    max-width: 450px;
    text-align: justify;
    a {
        color: white;
        text-decoration: underline;
    }
    div {
        
        text-align: right;
        a { padding: 8px 12px; text-decoration: none; }
        a.button-accept { background-color: green; }
        a.button-reject { background-color: darkred; }
    }
}
@media(max-width:996px) {
    .policy-popup {
        right: 25px;
        bottom: 25px;
    }    
}
@media(max-width:768px) {
    .policy-popup {
        left: 25px;
        max-width: 100%;
    }
}