@charset "utf-8";
/* CSS Document */
.politikalar {
	max-width: 1000px;
	margin: 20px auto;
	text-align: justify;
}
.nb-cookie-wrap {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    background: rgba(15, 15, 18, 0.96);
    backdrop-filter: blur(10px);

    border-top: 1px solid rgba(255,255,255,0.08);

    transform: translateY(120%);
    transition: transform 0.45s ease;
}

.nb-cookie-wrap.nb-cookie-show {
    transform: translateY(0);
}

.nb-cookie-inner {
    min-height: 82px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;

    padding: 18px 0;
}

.nb-cookie-content {
    flex: 1;
}

.nb-cookie-text {
    margin: 0;

    font-size: 14px;
    line-height: 1.7;
    font-weight: 400;

    color: rgba(255,255,255,0.78);
}

.nb-cookie-link {
    color: #ffffff;
    text-decoration: none;

    border-bottom: 1px solid rgba(255,255,255,0.35);
    transition: all 0.3s ease;
}

.nb-cookie-link:hover {
    color: #ffffff;
    border-color: rgba(255,255,255,0.8);
}

.nb-cookie-actions {
    flex-shrink: 0;
}

.nb-cookie-btn {
    border: 0;
    outline: none;

    height: 46px;
    padding: 0 26px;

    border-radius: 999px;

    background: #ffffff;
    color: #111111;

    font-size: 14px;
    font-weight: 600;

    transition: all 0.3s ease;

    cursor: pointer;
}

.nb-cookie-btn:hover {
    transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {

    .nb-cookie-inner {
        flex-direction: column;
        align-items: flex-start;

        padding: 20px 0;
    }

    .nb-cookie-actions {
        width: 100%;
    }

    .nb-cookie-btn {
        width: 100%;
    }

}