/* Kontakte-Kachel — eigenstaendiges Vollseiten-Layout (Template umgeht das Theme).
   Alle Klassen mit rk-* praefixiert, damit nichts mit Theme-/Overlay-Styles kollidiert.
   Selektoren nach aufsteigender Spezifitaet (Stylelint no-descending-specificity). */

:root {
	--rk-navy: #0b1e3f;
	--rk-navy2: #13294d;
	--rk-blue: #046bd2;
	--rk-blue-d: #035caa;
	--rk-gold: #c9a24a;
	--rk-bg: #f3f5f9;
	--rk-card: #fff;
	--rk-ink: #1a2332;
	--rk-muted: #64748b;
	--rk-faint: #94a3b8;
	--rk-line: #e2e7ee;
	--rk-line2: #eef1f6;
	--rk-ok: #3f9d52;
	--rk-pii: #b9852b;
	--rk-warn: #c0392b;
	--rk-dirty: #c9a24a;
	--rk-shadow: 0 1px 3px rgb(11 30 63 / 8%);
}

* {
	box-sizing: border-box;
}

html,
body {
	margin: 0;
	padding: 0;
	height: 100%;
}

body {
	font-family: "Segoe UI", Helvetica, Arial, sans-serif;
	background: var(--rk-bg);
	color: var(--rk-ink);
	font-size: 14px;
	line-height: 1.45;
	overflow: hidden;
}

#rsw-kontakte-app.rsw-kontakte-loading {
	padding: 40px;
	color: var(--rk-muted);
}

.hidden {
	display: none !important;
}

/* Topbar */
.rk-topbar {
	background: var(--rk-navy);
	color: #fff;
	display: flex;
	align-items: center;
	gap: 18px;
	padding: 0 30px;
	height: 58px;
	position: sticky;
	top: 0;
	z-index: 40;
}

.rk-brand {
	font-weight: 700;
	font-size: 17px;
	display: flex;
	align-items: center;
	gap: 10px;
}

.rk-logo {
	width: 26px;
	height: 26px;
	border-radius: 7px;
	background: linear-gradient(135deg, var(--rk-gold), #e3c068);
	color: var(--rk-navy);
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 800;
	font-size: 13px;
}

.rk-cockpit {
	color: #c4d0e2;
	text-decoration: none;
	font-size: 13px;
	border: 1px solid rgb(255 255 255 / 18%);
	padding: 6px 12px;
	border-radius: 7px;
}

.rk-cockpit:hover {
	background: rgb(255 255 255 / 8%);
	color: #fff;
}

.rk-spacer {
	flex: 1;
}

.rk-user {
	font-size: 13px;
	color: #c4d0e2;
}

/* Wrap + Kopf */
.rk-wrap {
	max-width: none;
	margin: 0;
	padding: 24px 30px;
	height: calc(100dvh - 58px);
	display: flex;
	flex-direction: column;
	min-height: 0;
}

.rk-head {
	display: flex;
	align-items: center;
	gap: 16px;
	margin: 6px 0 18px;
}

.rk-head h1 {
	font-size: 22px;
	margin: 0;
	color: var(--rk-navy);
	font-weight: 700;
}

/* Statuszeile des automatischen Sync beim Öffnen (dezent unter dem Titel) */
.rk-syncstatus {
	font-size: 12px;
	line-height: 1.35;
	color: var(--rk-muted, #6b7280);
	margin-top: 2px;
	min-height: 16px;
}

.rk-ss-ok {
	color: #15803d;
}

.rk-ss-warn {
	color: #b45309;
}

.rk-ss-err {
	color: #b91c1c;
}

/* Gesamt-Kennzahlen-Leiste */
.rk-stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin: 0 0 16px;
}

.rk-stat {
	flex: 1 1 0;
	min-width: 92px;
	background: var(--rk-card);
	border: 1px solid var(--rk-line);
	border-radius: 10px;
	box-shadow: var(--rk-shadow);
	padding: 10px 16px;
}

.rk-stat-num {
	font-size: 22px;
	font-weight: 800;
	line-height: 1.1;
	color: var(--rk-navy);
}

.rk-stat-label {
	margin-top: 2px;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--rk-muted);
}

.rk-stat-click {
	cursor: pointer;
}

.rk-stat-click:hover {
	border-color: var(--rk-blue);
}

.rk-stat.active {
	border-color: var(--rk-gold);
	box-shadow: 0 0 0 2px rgb(201 162 74 / 35%);
}

.rk-applogo {
	width: 34px;
	height: 34px;
	border-radius: 9px;
	background: #25d366;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 17px;
}

.rk-actions {
	margin-left: auto;
	display: flex;
	gap: 10px;
	align-items: center;
}

/* Buttons */
.rk-btn {
	border: 0;
	border-radius: 9px;
	padding: 11px 18px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: inherit;
}

.rk-btn:disabled {
	opacity: 0.55;
	cursor: default;
}

.rk-btn-primary {
	background: var(--rk-blue);
	color: #fff;
}

.rk-btn-primary:hover {
	background: var(--rk-blue-d);
}

.rk-btn-ghost {
	background: #fff;
	color: var(--rk-muted);
	border: 1px solid var(--rk-line);
}

.rk-btn-ghost:hover {
	background: #f1f5fb;
	color: var(--rk-navy);
}

.rk-btn-gold {
	background: var(--rk-gold);
	color: var(--rk-navy);
}

.rk-btn-gold:hover {
	filter: brightness(1.05);
}

.rk-btn-sm {
	padding: 7px 13px;
	font-size: 13px;
}

.rk-pill-n {
	background: rgb(11 30 63 / 15%);
	border-radius: 20px;
	padding: 1px 8px;
	font-size: 12px;
	font-weight: 700;
}

/* Toolbar / Filter */
.rk-toolbar {
	display: flex;
	align-items: center;
	gap: 12px;
	margin-bottom: 14px;
	flex-wrap: wrap;
}

.rk-search {
	flex: 1;
	min-width: 240px;
	position: relative;
}

.rk-search input {
	width: 100%;
	padding: 11px 38px 11px 14px;
	border: 1px solid var(--rk-line);
	border-radius: 9px;
	font-size: 14px;
	background: #fff;
	font-family: inherit;
}

.rk-clr {
	position: absolute;
	right: 10px;
	top: 8px;
	border: 0;
	background: transparent;
	color: var(--rk-faint);
	font-size: 18px;
	cursor: pointer;
	line-height: 1;
}

.rk-clr:hover {
	color: var(--rk-navy);
}

.rk-selbox {
	display: flex;
	align-items: center;
	gap: 8px;
	border: 1px solid var(--rk-line);
	background: #fff;
	border-radius: 9px;
	padding: 9px 13px;
	font-size: 13px;
	color: var(--rk-muted);
}

.rk-selbox label {
	display: flex;
	align-items: center;
	gap: 7px;
	cursor: pointer;
}

.rk-filters {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 14px;
}

.rk-flabel {
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.4px;
	color: var(--rk-faint);
	font-weight: 600;
}

.rk-fsep {
	width: 1px;
	height: 22px;
	background: var(--rk-line);
	margin: 0 4px;
}

.rk-catfilter {
	border: 1px solid var(--rk-line);
	background: #fff;
	border-radius: 20px;
	padding: 6px 12px;
	font-size: 12.5px;
	color: var(--rk-ink);
	max-width: 260px;
	font-family: inherit;
}

.rk-fpill {
	border: 1px solid var(--rk-line);
	background: #fff;
	color: var(--rk-muted);
	border-radius: 20px;
	padding: 6px 14px;
	font-size: 12.5px;
	cursor: pointer;
	user-select: none;
}

.rk-fpill.active {
	background: var(--rk-navy);
	color: #fff;
	border-color: var(--rk-navy);
}

.rk-fpill-einst.active {
	background: var(--rk-gold);
	color: var(--rk-navy);
	border-color: var(--rk-gold);
}

/* Bulk-Leiste */
.rk-bulkbar {
	position: sticky;
	top: 58px;
	z-index: 30;
	background: var(--rk-navy);
	color: #fff;
	border-radius: 11px;
	padding: 11px 16px;
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 14px;
	box-shadow: var(--rk-shadow);
}

.rk-count {
	font-weight: 700;
}

.rk-count b {
	color: var(--rk-gold);
}

.rk-bulkbar select {
	border: 0;
	border-radius: 8px;
	padding: 8px 11px;
	font-size: 13px;
	background: #fff;
	color: var(--rk-ink);
	font-weight: 600;
	font-family: inherit;
}

.rk-lnk {
	background: transparent;
	border: 1px solid rgb(255 255 255 / 25%);
	color: #fff;
	border-radius: 8px;
	padding: 7px 13px;
	font-size: 13px;
	font-weight: 600;
	cursor: pointer;
	font-family: inherit;
}

.rk-lnk:hover {
	background: rgb(255 255 255 / 10%);
}

.rk-lnk.danger:hover {
	background: rgb(192 57 43 / 40%);
	border-color: #e7b6ae;
}

/* Rumpf: A–Z-Sprungleiste links + scrollende Tabelle rechts */
.rk-body {
	display: flex;
	gap: 10px;
	flex: 1 1 auto;
	min-height: 0;
}

.rk-azbar {
	flex: none;
	display: flex;
	flex-direction: column;
	gap: 1px;
	overflow-y: auto;
	padding: 5px 3px;
	background: var(--rk-card);
	border: 1px solid var(--rk-line);
	border-radius: 12px;
	box-shadow: var(--rk-shadow);
}

.rk-az {
	flex: 1 1 auto;
	min-height: 17px;
	width: 24px;
	padding: 0;
	border: 0;
	background: transparent;
	color: var(--rk-blue);
	font-family: inherit;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	border-radius: 5px;
	cursor: pointer;
}

.rk-az:hover {
	background: #eef5ff;
}

.rk-az:disabled {
	color: var(--rk-faint);
	opacity: 0.35;
	cursor: default;
}

/* Tabelle */
.rk-table-card {
	background: var(--rk-card);
	border: 1px solid var(--rk-line);
	border-radius: 14px;
	box-shadow: var(--rk-shadow);
	overflow: auto;
	flex: 1 1 auto;
	min-width: 0;
	min-height: 140px;
}

.rk-table {
	width: 100%;
	border-collapse: collapse;
	table-layout: auto;
}

.rk-table th {
	text-align: left;
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	color: var(--rk-muted);
	font-weight: 600;
	padding: 13px 16px;
	border-bottom: 2px solid var(--rk-line);
	border-right: 1px solid var(--rk-line2);
	background: #f1f4f9;
	white-space: nowrap;
	position: sticky;
	top: 0;
	z-index: 5;
}

.rk-table td {
	padding: 11px 16px;
	border-bottom: 1px solid var(--rk-line);
	border-right: 1px solid var(--rk-line2);
	font-size: 13.5px;
	vertical-align: middle;
}

.rk-table th:last-child,
.rk-table td:last-child {
	border-right: 0;
}

.rk-table th.rk-sortable {
	cursor: pointer;
	user-select: none;
}

.rk-table th.rk-sortable:hover {
	color: var(--rk-navy);
	background: #e6edf7;
}

.rk-arrow {
	color: var(--rk-blue);
	font-size: 10px;
}

.rk-table tbody tr {
	cursor: pointer;
}

.rk-table tbody tr.stripe {
	background: #f5f8fc;
}

.rk-table tbody tr.row-dirty {
	background: #fff6e6;
}

.rk-table tbody tr:hover {
	background: #e3edfb;
}

.rk-table tbody tr.row-dirty:hover {
	background: #fdeecb;
}

.rk-table tbody tr.row-dirty td:first-child {
	box-shadow: inset 3px 0 0 var(--rk-dirty);
}

.rk-col-chk {
	width: 44px;
	text-align: center;
}

.rk-col-chk input {
	width: 17px;
	height: 17px;
	accent-color: var(--rk-blue);
	cursor: pointer;
}

.rk-nm {
	font-weight: 600;
	color: var(--rk-navy);
}

.rk-dirty-tag {
	font-size: 11px;
	color: var(--rk-dirty);
	font-weight: 700;
	white-space: nowrap;
}

.rk-muted {
	color: var(--rk-faint);
}

.rk-addr .rk-st {
	color: var(--rk-ink);
}

.rk-addr .rk-ci {
	color: var(--rk-muted);
	font-size: 12px;
}

.rk-email {
	white-space: nowrap;
}

.rk-email.fm {
	color: var(--rk-pii);
}

.rk-phones {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.rk-ph {
	font-size: 12.5px;
	white-space: nowrap;
}

.rk-pt {
	display: inline-block;
	min-width: 42px;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	color: var(--rk-faint);
	font-weight: 700;
}

.rk-ph.mob .rk-pt {
	color: var(--rk-ok);
}

/* Kategorie-Chips */
.rk-cell-cats {
	display: flex;
	gap: 5px;
	flex-wrap: wrap;
	align-items: center;
}

.rk-chip {
	display: inline-flex;
	align-items: center;
	gap: 5px;
	padding: 3px 10px;
	border-radius: 13px;
	font-size: 11.5px;
	font-weight: 600;
	border: 1px solid transparent;
}

.rk-chip.add {
	background: #fff;
	color: var(--rk-faint);
	border: 1px dashed var(--rk-line);
	cursor: pointer;
}

.rk-chip.add:hover {
	color: var(--rk-blue);
	border-color: var(--rk-blue);
}

.rk-x {
	cursor: pointer;
	opacity: 0.55;
	font-weight: 700;
}

.rk-x:hover {
	opacity: 1;
	color: var(--rk-warn);
}

.cat-c0 {
	background: #e7f5ec;
	color: #256b39;
	border-color: #cdeed8;
}

.cat-c1 {
	background: #e7f0fb;
	color: #1f5fae;
	border-color: #cfe0f6;
}

.cat-c2 {
	background: #fdf3e0;
	color: #9a6f1c;
	border-color: #f3e3c2;
}

.cat-c3 {
	background: #eafaf0;
	color: #1c7a44;
	border-color: #bdebcd;
}

.cat-c4 {
	background: #fbeaf3;
	color: #9e2767;
	border-color: #f3cfe2;
}

.cat-c5 {
	background: #eef0f4;
	color: #525c6b;
	border-color: #dce0e7;
}

.rk-foot {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 12px 16px;
	color: var(--rk-muted);
	font-size: 12.5px;
	border-top: 1px solid var(--rk-line);
	position: sticky;
	bottom: 0;
	background: var(--rk-card);
	z-index: 4;
}

/* Modale */
.rk-overlay {
	position: fixed;
	inset: 0;
	background: rgb(11 30 63 / 45%);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 60;
	padding: 20px;
}

.rk-modal {
	background: #fff;
	border-radius: 15px;
	box-shadow: 0 18px 50px rgb(11 30 63 / 30%);
	width: 100%;
	max-width: 620px;
	max-height: 88vh;
	overflow: auto;
}

.rk-modal-head {
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 18px 22px;
	border-bottom: 1px solid var(--rk-line);
	position: sticky;
	top: 0;
	background: #fff;
}

.rk-modal-head h2 {
	margin: 0;
	font-size: 17px;
	color: var(--rk-navy);
}

.rk-close {
	margin-left: auto;
	border: 1px solid var(--rk-line);
	background: #fff;
	border-radius: 8px;
	width: 34px;
	height: 34px;
	cursor: pointer;
	color: var(--rk-muted);
	font-size: 16px;
}

.rk-close:hover {
	background: #f1f5fb;
	color: var(--rk-navy);
}

.rk-modal-body {
	padding: 20px 22px;
}

.rk-cat-list {
	display: flex;
	flex-direction: column;
	gap: 9px;
	margin-bottom: 22px;
}

.rk-cat-row {
	display: flex;
	align-items: center;
	gap: 11px;
	border: 1px solid var(--rk-line);
	border-radius: 10px;
	padding: 10px 13px;
}

.rk-cat-filterrow {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-bottom: 14px;
	font-size: 13px;
	color: var(--rk-ink);
	cursor: pointer;
}

.rk-cat-filterrow input {
	width: 16px;
	height: 16px;
	accent-color: var(--rk-blue);
}

.rk-cat-empty {
	background: #fbfaf3;
	border-color: #ece4c7;
}

.rk-swatch {
	width: 18px;
	height: 18px;
	border-radius: 5px;
	flex: none;
}

.rk-cn {
	font-weight: 600;
	color: var(--rk-navy);
}

.rk-cnt {
	color: var(--rk-muted);
	font-size: 12px;
	white-space: nowrap;
}

.rk-del,
.rk-edit {
	border: 1px solid var(--rk-line);
	background: #fff;
	color: var(--rk-muted);
	border-radius: 7px;
	width: 32px;
	height: 32px;
	cursor: pointer;
}

.rk-del:hover {
	color: var(--rk-warn);
	border-color: #e7b6ae;
}

.rk-edit:hover {
	color: var(--rk-blue);
	border-color: #a9c9ea;
}

.rk-form-title {
	font-weight: 700;
	color: var(--rk-navy);
	font-size: 13px;
	margin: 4px 0 12px;
	padding-top: 14px;
	border-top: 1px dashed var(--rk-line);
}

.rk-form-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px 16px;
}

.rk-field {
	display: flex;
	flex-direction: column;
	gap: 5px;
}

.rk-field.span2 {
	grid-column: span 2;
}

.rk-field label {
	font-size: 11.5px;
	color: var(--rk-muted);
	font-weight: 600;
	letter-spacing: 0.2px;
}

.rk-field input,
.rk-field select {
	padding: 9px 11px;
	border: 1px solid var(--rk-line);
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	color: var(--rk-ink);
	font-family: inherit;
}

.rk-color-choose {
	display: flex;
	gap: 8px;
}

.rk-c {
	width: 28px;
	height: 28px;
	border-radius: 7px;
	cursor: pointer;
	border: 2px solid transparent;
}

.rk-c.sel {
	border-color: var(--rk-navy);
}

.rk-checkrow {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 13.5px;
	color: var(--rk-ink);
}

.rk-checkrow input {
	width: 17px;
	height: 17px;
	accent-color: var(--rk-blue);
}

.rk-modal-foot {
	display: flex;
	justify-content: flex-end;
	gap: 10px;
	margin-top: 20px;
	padding-top: 16px;
	border-top: 1px solid var(--rk-line);
}

.sw0 {
	background: #3f9d52;
}

.sw1 {
	background: #046bd2;
}

.sw2 {
	background: #c9a24a;
}

.sw3 {
	background: #1c7a44;
}

.sw4 {
	background: #9e2767;
}

.sw5 {
	background: #64748b;
}

/* Detailkarte */
.rk-ck-actions {
	display: flex;
	gap: 8px;
	flex-wrap: wrap;
	margin-bottom: 18px;
}

.rk-ck-act {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	border: 1px solid var(--rk-line);
	background: #fff;
	color: var(--rk-navy);
	border-radius: 9px;
	padding: 9px 14px;
	font-size: 13px;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
}

.rk-ck-act:hover {
	background: #f1f5fb;
}

.rk-ck-act.wa {
	background: #25d366;
	color: #fff;
	border-color: #25d366;
}

.rk-ck-act.dis {
	opacity: 0.4;
	pointer-events: none;
}

.rk-ck-row {
	display: flex;
	gap: 12px;
	padding: 9px 0;
	border-bottom: 1px solid var(--rk-line2);
}

.rk-ck-k {
	width: 130px;
	flex: none;
	color: var(--rk-muted);
	font-weight: 600;
	font-size: 11.5px;
	text-transform: uppercase;
	letter-spacing: 0.3px;
	padding-top: 2px;
}

.rk-ck-v {
	color: var(--rk-ink);
}

.rk-ck-v .l {
	display: block;
}

.rk-ck-v a {
	color: var(--rk-blue);
	text-decoration: none;
}

.rk-ck-v a:hover {
	text-decoration: underline;
}

.rk-ck-cats {
	display: flex;
	gap: 6px;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 8px;
}

.rk-ck-addrow {
	display: flex;
	gap: 8px;
	align-items: center;
}

.rk-ck-addrow select {
	flex: 1;
	padding: 9px 11px;
	border: 1px solid var(--rk-line);
	border-radius: 8px;
	font-size: 14px;
	background: #fff;
	font-family: inherit;
}

.rk-ck-hint {
	margin-top: 16px;
	padding-top: 14px;
	border-top: 1px solid var(--rk-line);
	color: var(--rk-muted);
	font-size: 12px;
}

/* Notiz-Editor (Outlook personalNotes) in der Detailkarte */
.rk-ck-note {
	width: 100%;
	min-height: 96px;
	padding: 10px 12px;
	border: 1px solid var(--rk-line);
	border-radius: 8px;
	font-size: 16px;
	font-family: inherit;
	line-height: 1.5;
	resize: vertical;
	box-sizing: border-box;
	background: #fff;
}

.rk-ck-noterow {
	display: flex;
	gap: 10px;
	align-items: center;
	margin-top: 8px;
}

.rk-ck-notestatus {
	font-size: 13px;
	color: var(--rk-muted);
}

.rk-ck-notestatus.ok {
	color: #1a7f37;
}

.rk-ck-notestatus.err {
	color: #b3261e;
}

/* Kategorie-Auswahlmenue (Popover am „+") */
.rk-catpicker {
	background: #fff;
	border: 1px solid var(--rk-line);
	border-radius: 10px;
	box-shadow: 0 10px 30px rgb(11 30 63 / 22%);
	padding: 6px;
	min-width: 200px;
	max-height: 320px;
	overflow: auto;
	z-index: 70;
}

.rk-catpicker-item {
	display: flex;
	align-items: center;
	gap: 8px;
	width: 100%;
	border: 0;
	background: transparent;
	padding: 8px 10px;
	border-radius: 7px;
	font-size: 13px;
	font-family: inherit;
	color: var(--rk-ink);
	text-align: left;
	cursor: pointer;
}

.rk-catpicker-item:hover {
	background: #eef5ff;
}

.rk-catpicker-empty {
	padding: 10px 12px;
	color: var(--rk-muted);
	font-size: 12.5px;
}

/* Fokus-Stile zuletzt (hoehere Spezifitaet -> aufsteigend, no-descending-specificity). */
.rk-search input:focus,
.rk-field input:focus,
.rk-field select:focus {
	outline: none;
	border-color: var(--rk-blue);
	box-shadow: 0 0 0 3px rgb(4 107 210 / 12%);
}

/* iPad / Tablet: die breite Tabelle ohne horizontales Scrollen nutzbar machen. Kernspalten
   (Nachname, Vorname, Telefon, Outlook Kategorien) bleiben immer sichtbar; Firma/E-Mail/Adresse
   weichen je nach Viewport-Breite. Innerhalb jeder Query Selektoren aufsteigend nach Spezifitaet. */
@media (width <= 1400px) {
	.rk-wrap {
		padding: 16px;
	}

	.rk-col-company {
		display: none;
	}

	.rk-table th,
	.rk-table td {
		padding: 10px 11px;
	}
}

@media (width <= 1150px) {
	.rk-stat {
		min-width: 78px;
		padding: 9px 12px;
	}

	.rk-stat-num {
		font-size: 19px;
	}

	.rk-col-email {
		display: none;
	}
}

@media (width <= 920px) {
	.rk-topbar {
		padding: 0 16px;
	}

	.rk-col-address {
		display: none;
	}

	.rk-fpill,
	.rk-catfilter {
		padding: 9px 14px;
	}

	.rk-az {
		width: 20px;
		min-height: 15px;
		font-size: 11px;
	}
}
