/**
 * 2026 Kirotech
 *
 * @author    Kirotech <info@kiro.tech>
 * @copyright 2026 Kirotech
 * @license   Valid for 1 website (or project) for each purchase of license
 */

.kirotech-cookie {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 10000;
    display: none;
    width: 420px;
    max-width: calc(100% - 60px);
    background-color: rgba(26, 26, 26, 0.92);
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    overflow: hidden;
}

.kirotech-cookie__close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    padding: 4px 6px;
    color: #ffffff;
    opacity: 0.6;
    transition: opacity 0.15s;
}
.kirotech-cookie__close:hover {
    opacity: 1;
}

.kirotech-cookie__content {
    padding: 20px 44px 20px 20px;
}
.kirotech-cookie p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.55;
    color: #ffffff;
}

.kirotech-cookie__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 14px;
}
.kirotech-cookie__link {
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: underline;
    letter-spacing: 0.03em;
    color: #ffffff;
}
.kirotech-cookie__accept {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 6px 14px;
    border: none;
    border-radius: 3px;
    background: none;
    color: #ffffff;
    transition: opacity 0.15s;
}
.kirotech-cookie__accept:hover {
    opacity: 0.75;
}
.kirotech-cookie__accept i.material-icons {
    font-size: 16px;
    line-height: 1;
}
