/*
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 : 23.07.2026 г., 1:18:14 ч.
    Author     : Admin
*/

/* ==========================================================================
   DMC Cookies
   ========================================================================== */
:root {
	--green-link: #116415;
	--silver-link: #444;
}

#dmc-cookie-banner {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    z-index: 999999;
    display: none;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background: #ffffff;
    color: #222222;
    border-radius: 10px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, .2);
    box-sizing: border-box;
}

#dmc-cookie-banner.show {
    display: block;
}

#dmc-cookie-message {
    margin: 0 0 20px;
    line-height: 1.6;
}

#dmc-cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#dmc-cookie-buttons button {
    appearance: none;
    border: 0;
    border-radius: 2px;
    padding: 10px 18px;
    cursor: pointer;
    transition: .2s;
}

#dmc-cookie-accept {
    background: var(--green-link);
    color: #fff;
}

#dmc-cookie-accept:hover {
    opacity: .8;
}

#dmc-cookie-reject {
    background: var(--silver-link);
    color: #fff;
}

#dmc-cookie-reject:hover {
    opacity: .8;
}

#dmc-cookie-settings {
    background: transparent;
    border: 1px solid #999 !important;
    color: #222;
}

#dmc-cookie-settings:hover {
    background: #f3f3f3;
}

/* ==========================================================================
   Modal
   ========================================================================== */

#dmc-cookie-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 9999999;
    background: rgba(0, 0, 0, .55);
}
#dmc-cookie-modal-box input {
	width: auto !important;
	height: auto !important;
}

#dmc-cookie-modal.show {
    display: flex !important;
    align-items: center;
    justify-content: center;
}

#dmc-cookie-modal-box {
    width: 100%;
    max-width: 600px;
    margin: 20px;
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-sizing: border-box;
	position: relative;
}

button#dmc-cookie-close {
    position: absolute;
    right: -10px;
    top: -10px;
    border-radius: 50%;
    padding: 0px 18px;
    font-size: 30px;
    background: darkred;
	transition: .2s;
  position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #666;
    font-size: 28px;
    line-height: 34px;
    cursor: pointer;
    transition: .2s;
}
button#dmc-cookie-close:hover {
	
}

#dmc-cookie-banner .dmc-cookie-title {
	font-size: 20px;
    margin: 0 0 15px;
    font-weight: bold;
}
#dmc-cookie-modal h2 {
    margin-top: 0;
}

.dmc-cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 18px 0;
}

.dmc-cookie-option label {
    font-weight: 600;
}

.dmc-cookie-required {
    opacity: .7;
}

#dmc-cookie-save {
    margin-top: 20px;
    appearance: none;
    border: 0;
    border-radius: 6px;
    padding: 10px 18px;
    background: var(--green-link);
    color: #fff;
    cursor: pointer;
}

#dmc-cookie-save:hover {
    opacity: .8;
}

#dmc-cookie-policy {
    margin: 15px 0 20px;
    font-size: 14px;
}

#dmc-cookie-policy a {
    text-decoration: underline;
}

@media (max-width: 640px) {

    #dmc-cookie-banner {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }

    #dmc-cookie-buttons {
        flex-direction: column;
    }

    #dmc-cookie-buttons button {
        width: 100%;
    }

}