:root {
    --clr-body: #f3f3f1;
    --clr-dark: #1f1f1f;
    --clr-footer: #e6e3d9;
    --clr-basic: #ebdcc3;
    --clr-basic-dark: #d5c2a4;
    --clr-basic-darker: #A8977A;
    --clr-basic-light: #eeebe3;
    --clr-opacity-light: rgb(255 255 255 / 30%);
    --clr-opacity-dark: rgb(0 0 0 / 0.02);
    --clr-border: rgb(186 180 171 / 84%);
    --clr-gold: #c3a985;
    --clr-green: #1eb585;
    --sz-s: 0.955rem;
    --sz-xs: 0.867rem;
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: local('Open Sans Regular'), local('OpenSans-Regular'),
    url('fonts/open-sans-v17-latin-ext_latin-regular.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/open-sans-v17-latin-ext_latin-regular.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 400;
    font-stretch: 100%;
    font-display: swap;
    src: local('Open Sans Italic'), local('OpenSans-Italic'),
    url('fonts/open-sans-v17-latin-ext_latin-italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/open-sans-v17-latin-ext_latin-italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
    font-family: 'Open Sans';
    font-style: normal;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: local('Open Sans SemiBold'), local('OpenSans-SemiBold'),
    url('fonts/open-sans-v17-latin-ext_latin-600.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/open-sans-v17-latin-ext_latin-600.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@font-face {
    font-family: 'Open Sans';
    font-style: italic;
    font-weight: 600;
    font-stretch: 100%;
    font-display: swap;
    src: local('Open Sans SemiBold Italic'), local('OpenSans-SemiBoldItalic'),
    url('fonts/open-sans-v17-latin-ext_latin-600italic.woff2') format('woff2'), /* Chrome 26+, Opera 23+, Firefox 39+ */
    url('fonts/open-sans-v17-latin-ext_latin-600italic.woff') format('woff'); /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
}
@keyframes grow {
    0%   {width:0;opacity: 0;display: none;}
    100% {width: 162px;opacity:1;padding: 2px 3px;display: inline-block;margin: 2px 0;border: 1px solid var(--clr-border);}
}
@keyframes grow2 {
    0%   {width:0;opacity: 0;display: none;}
    100% {width: 135px;opacity:1;padding: 2px 3px;display: inline-block;margin: 2px 0 2px 2px;border: 1px solid var(--clr-border);}
}
.bg-clr-body {background-color: #f3f3f1 !important;}
.bg-clr-dark {background-color: #545350 !important;}
.bg-clr-footer {background-color: #e6e3d9 !important;}
.bg-clr-basic {background-color: #ebdcc3 !important;}
.bg-clr-basic-dark {background-color: #d5c2a4 !important;}
.bg-clr-basic-darker {background-color: #A8977A !important;}
.bg-clr-basic-light {background-color: #eeebe3 !important;}
.bg-clr-opacity-light {background-color: rgb(255 255 255 / 40%) !important;}
.bg-clr-opacity-dark{background-color: rgb(0 0 0 / 0.02) !important;}
/*srollbar*/
.aa-mch-list::-webkit-scrollbar,
.aa-table select::-webkit-scrollbar {
    width: 8px;
}
.aa-mch-list::-webkit-scrollbar-track,
.aa-table select::-webkit-scrollbar-track{
    background: #efefef;
}
.aa-mch-list::-webkit-scrollbar-thumb,
.aa-table select::-webkit-scrollbar-thumb{
    background: #c1c1c1;
}
.aa-mch-list::-webkit-scrollbar-thumb:hover,
.aa-table select::-webkit-scrollbar-thumb:hover{
    background: #a1a1a1;
}
/* flex vlastnosti*/
.flex {
    display: flex !important;
    flex-direction: column;
}
.always-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.f-baseline {
    align-items: baseline !important;
}
.f-bottom {
    align-items: flex-end !important;
}
.f-middle {
    align-items: center !important;
}
.f-start {
    justify-content: flex-start !important;
}
.f-between {
    justify-content: space-between !important;
}
.f-center{
    justify-content: center !important;
}
.f-end {
    justify-content: end;
}
/* align */
.right {
    text-align: right !important;
}
.left {
    text-align: left !important;
}
.center {
    text-align: center !important;
}
.top, .top td, .top th {
    vertical-align: top !important;
}
.middle, .middle > * {
    vertical-align: middle !important;
}
.bottom, .bottom >* {
    vertical-align: bottom !important;
}
.nowrap {
    white-space: nowrap;
}
/* box margin */
.m-0 {
    margin: 0 !important;
}
.m-1 {
    margin: 10px !important;
}
.m-2 {
    margin: 25px !important;
}
.m-3 {
    margin: 35px !important;
}
.m-4 {
    margin: 30px 45px !important;
}
.ml-0 {
    margin-left: 0 !important;
}
.ml-05 {
    margin-left: 5px !important;
}
.ml-1 {
    margin-left: 10px !important;
}
.ml-2 {
    margin-left: 25px !important;
}
.ml-3 {
    margin-left: 35px !important;
}
.mr-0 {
    margin-right: 0 !important;
}
.mr-1 {
    margin-right: 10px !important;
}
.mr-05 {
    margin-right: 5px !important;
}
.mr-2 {
    margin-right: 25px !important;
}
.mr-3 {
    margin-right: 35px !important;
}
.mt-0 {
    margin-top: 0 !important;
}
.mt-05 {
    margin-top: 5px !important;
}
.mt-1 {
    margin-top: 10px !important;
}
.mt-2 {
    margin-top: 25px !important;
}
.mt-3 {
    margin-top: 35px !important;
}
.mb-0 {
    margin-bottom: 0 !important;
}
.mb-05 {
    margin-bottom: 5px !important;
}
.mb-1 {
    margin-bottom: 10px !important;
}
.mb-2 {
    margin-bottom: 25px !important;
}
.mb-3 {
    margin-bottom: 35px !important;
}
.m-auto {
    margin: auto !important;
}
/* box padding */
.p-0 {
    padding: 0 !important;
}
.p-1 {
    padding: 10px !important;
}
.p-2 {
    padding: 25px !important;
}
.p-3 {
    padding: 35px !important;
}
.pl-0 {
    padding-left: 0 !important;
}
.pl-1 {
    padding-left: 10px !important;
}
.pl-2 {
    padding-left: 25px !important;
}
.pl-3 {
    padding-left: 35px !important;
}
.pr-0 {
    padding-right: 0 !important;
}
.pr-1 {
    padding-right: 10px !important;
}
.pr-2 {
    padding-right: 25px !important;
}
.pr-3 {
    padding-right: 35px !important;
}
.pb-0 {
    padding-bottom: 0 !important;
}
.pb-1 {
    padding-bottom: 10px !important;
}
.pb-2 {
    padding-bottom: 20px !important;
}
.pb-3 {
    padding-bottom: 35px !important;
}
.pt-0 {
    padding-top: 0 !important;
}
.pt-1 {
    padding-top: 10px !important;
}
.pt-2 {
    padding-top: 20px !important;
}
.pt-3 {
    padding-top: 35px !important;
}
/**/
.relative {
    position: relative;
}
.absolute {
    position: absolute;
}
html {
    font-size: 13px;
}
body {
    margin: 0;
    color: #000000;
    background: #f3f3f1;
    font-family: 'Open Sans', sans-serif;
    line-height: 1.4em;
}
a {
    color: #2F3D99;
    text-decoration: none;
}
a:hover {
    color: #007ed7;
}
.aa-table a:not(.btn):visited, [class^="aa-button-edit"]:visited {
    color: #896996;
}
b, strong {
    font-weight: 600;
}
i, em {
    font-style: italic;
}
table {
    border-collapse: collapse;
    border: 0;
    font-size: 1rem;
}
td {
    vertical-align: middle;
    padding: 0;
}
form {
    margin: 0;
}
img {
    vertical-align: middle;
}
h1 {
    font-weight: normal;
    font-size: 1.3rem;
}
h2 {
    font-size: 1.23rem;
}
h3 {
    font-size: 1.1rem;
}
h1:empty {
    display: none;
}
small, .tabhlp, .tabsmall, .sz-s, .small {
    vertical-align: top;
    font-size: var(--sz-s);
}
hr {
    height: 1px;
    border: 0;
    border-bottom: solid 1px #9e9e9e;
    margin: 0;
}
details summary  {
    cursor: pointer;
    padding: 4px 12px 4px 12px;
    margin-bottom: 1em;
    display: inline-block;
    background-color: rgb(255 255 255 / 20%);
    border: solid 1px rgb(26 4 4 / 30%);
    color: #61454A;
    border-radius: 13px;
}
details summary:after  {
    content: "";
    display: inline-block;
    border: solid 4px transparent;
    margin-left: 3px;
    vertical-align: middle;
    border-top-color: hsl(0deg 0% 0% / 80%);
    border-bottom: 0;
}
details[open] summary:after  {
    border: solid 4px transparent;
    border-bottom-color: hsl(0deg 0% 0% / 80%);
    border-top: 0;
    margin-bottom: 1px;
}
.sz-xs, .x-small {
    font-size: var(--sz-xs);
}
input[type="text"], input[type="tel"], input[type="email"], input[type="number"], input[type="password"], input[type="date"], input[type="search"], input[type="url"], select, textarea, input:not([type]) {
    font-family: 'Open Sans', sans-serif;
    font-size: var(--sz-s);
    border: 1px solid var(--clr-border);
    margin: 2px;
    padding: 3px 3px;
    vertical-align: middle;
    box-sizing: border-box;
    max-width: 100%;
    display: inline-block;
    background: white;
}
input[type="file"] {
    font-family: "open sans", sans-serif;
    margin-left: 7px;
    font-size: var(--sz-s);
    padding: 5px 0;
    color: rgb(0 0 0 / 72%);
}
.aa-fil-file input {
    max-width: calc(100% - 25px);
}
input[type="file"]:before {
    content: "Vybrat soubor";
    font-size: var(--sz-s);
    background-color: var(--clr-dark);
    padding: 5px 7px;
    display: inline-block;
    color: rgb(255 255 255 / 95%);
    line-height: 16px;
    pointer-events: none;
    position: absolute;
    cursor: pointer;
    margin: -3px 0 0 -3px;
}
select {
    padding: 2px 3px;
}
select:empty {
    min-width: 100px;
}
textarea {
    width: 100%;
}
.CodeMirror {
    font-size: 1rem;
    border: 1px solid var(--clr-border);
    /* line-height: 18px; */
}
input:focus, textarea:focus, select:focus {
    outline: 1px solid rgba(30, 102, 233, 0.7);
    outline-offset: -1px;
}
/* BUTTONS */
input[type="submit"] img, input[type="button"] img, .button img, .btn img {
    vertical-align: middle;
}
/* standart buttons */
input[type="submit"], input[type="button"], button, .button, .btn {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    border: solid 1px transparent;
    text-decoration: none;
    font-size: var(--sz-s);
    background-color: var(--clr-dark);
    margin: 2px;
    padding: 4px 12px;
    color: #fff;
    line-height: 16px;
    vertical-align: middle;
    transition: all 0.3s;
    cursor: pointer;
}
/* bigger buttons */
input[type="submit"].btn-l, input[type="button"].btn-l, button.btn-l, .button.btn-l, .btn.btn-l, .btn-l  {
    padding: 6px 15px;
}
.btn.btn-s, button.btn-s, input[type="submit"].btn-s, .aa-table input[type="button"].btn-s, input[type="button"].btn-s, .aa-table input[type="button"].btn-s {
    padding: 2px 7px; /*zatim jen u editace policka*/
}
/* aa- buttons */
[class^="aa-button"], [class^="aa-button"] {
    border: solid 1px rgb(26 4 4 / 30%);
    color: #61454A;
    text-decoration: none;
    font-size: var(--sz-s);
    background-color: #fff;
    padding: 4px 8px;
    display: inline-block;
    line-height: 16px;
    vertical-align: middle;
    transition: all 0.3s;
}
/* all transparent secondary buttons */
input[type="submit"].btn-secondary, input[type="button"].btn-secondary, button.btn-secondary, .button.btn-secondary, .btn.btn-secondary, .btn-secondary .aa-sb-bkmrks-btns .btn.btn-xs {
    background-color: rgb(255 255 255 / 20%);
    border: solid 1px rgb(26 4 4 / 30%);
    color: #61454A;
}
/* all buttons hover */
input[type="submit"]:hover, input[type="button"]:hover, button:hover, [class^="aa-button"]:hover, .btn:hover, .btn-l:hover {
    background-color: /* #009688*/ var(--clr-basic-darker);
    color: rgb(255 255 255 / 95%);
    border-color: transparent;
    transition: all 0.3s;
}
/* all transparent secondary hover */
input[type="submit"].btn-secondary:hover, input[type="button"].btn-secondary:hover, button.btn-secondary:hover, .button.btn-secondary:hover, .btn.btn-secondary:hover, .btn-secondary .aa-sb-bkmrks-btns .btn.btn-xs:hover {
    color: #000000;
    background-color: var(--clr-basic-dark);
    /*box-shadow: inset 0 0 18px rgb(168 151 122 / 50%);*/
    border-color: var(--clr-basic-darker);
}
[class^="aa-button"]:hover {
    color: #61454A;
    background-color: var(--clr-footer);
    border-color: rgb(26 4 4 / 30%);
}
.aa-rim i.ico:not(.delete):hover {
    background: var(--clr-basic-darker);
}
/* img buttons */
[class^="aa-button-"] {
    padding-left: 18px;
    background-position: 4px center;
    background-repeat: no-repeat;
}
.btn.btn-new {
    background-image: url(images/ico-plus.png);
    background-repeat: no-repeat;
    background-position: 6px center;
    padding-left: 32px;
}
.aa-button-edit {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAwAAAAMCAYAAABWdVznAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAKdJREFUeNpi/P//PwMMtGfqMWABPEA8B4ibgPgaEwNhUA3E4UB8CYhbCGmQBuJ8KJsZiJ8S0tAFxJxQ9gUgnoVPgw0QRyHxc4H4Ly4NIOsnI/G3AvEREAOXBn4gvg9l/wLiApgECxbFbEAsB8RBQGwPxFpAfAcmic0GFSA+D8TTgPgyEE9HlsSlAQS8kdgM+JykDsTHoU56gS6JzYazQOyATTEIAAQYAH+NG5PbUXGeAAAAAElFTkSuQmCC);
    background-position: 2px center;
}
.aa-button-delete {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAALBAMAAAC0QAErAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAACRQTFRFAAAA2gQE3AAA2gMD2gMD2QIC1QAA2gMD2AYG2gMD2gMD2QQEUMcqwAAAAAx0Uk5TAIQd7uxzEpgu/8GAf7ayjAAAAD1JREFUeJxjYAADRgYGJgMGFgEG5QAGNkcmU6BQSnEAkOSYBZJW3iIAVGDK5sjAwBzAkCLAwMrAwOYA0QoArgQFeabWEZIAAAAASUVORK5CYII=);
}
.aa-button-delete:hover {
    border-color: #e00303;
    background-color: #e00303;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAALCAYAAABGbhwYAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAFBJREFUeJxjYCAF/P//vwWHuCwQv0MWeIOuGKYIiIuRBYWQFWNVhEXxDJyKkBTr/YeAg/gUwaxrwOZmrA5HdzOyQgw3YVWMy+EwxTjdiw0AAFxakTfhiqBuAAAAAElFTkSuQmCC);
    color: white;
}
.aa-button-show {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAsAAAALBAMAAABbgmoVAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAABVQTFRFAAAAfWBgfV9fg2gofF9ffWFheVxclh75YQAAAAd0Uk5TAP43wLLEI9SbUecAAAA2SURBVHicY2CAAEYFZgZFBgYWIQYmESDXUUHRgQEGmKEYCgITEgMYGFjFGNhEgfoSDBgSYTIAdNQDxF+/ClcAAAAASUVORK5CYII=);
}
.aa-button-more {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgdmlld2JveD0iMCAwIDE2IDE2Ij48cGF0aCBkPSJNMi41IDYuMjVhMS43NSAxLjc1IDAgMSAxIDAgMy41IDEuNzUgMS43NSAwIDAgMSAwLTMuNXptNS41IDBhMS43NSAxLjc1IDAgMSAxIDAgMy41IDEuNzUgMS43NSAwIDAgMSAwLTMuNXptNS41IDBhMS43NSAxLjc1IDAgMSAxIDAgMy41IDEuNzUgMS43NSAwIDEgMSAwLTMuNXoiIGZpbGw9IiMwMDAwMDAiLz48L3N2Zz4=);
    background-color: transparent !important;
    border: 0;
    padding-left: 25px;
}
.aa-button-new:before {
    content: "+";
    font-size: 14px;
    display: inline-block;
    line-height: 1;
    margin-left: -13px;
    margin-right: 3px;
}
/* --- */
.aa-ui-filterform input[type="checkbox"] {
    vertical-align: bottom;
}
input[type="radio"] {
    vertical-align: baseline;
}
/* layout */
.aa-ui-main {
    display: flex;
}
.aa-ui-content {
    flex: 1;
    padding: 0 10px 25px 15px;
}
.aa-ui-content > h1 {
    margin: 1em 0 1em 0;
}

/* HEADER */
#aa_top {
    display: flex;
    width: 100%;
    background: var(--clr-basic);
}
.nblogo {
    background-color: white;
    text-align: center;
    flex: 0 0 170px;
    padding: 5px 0;
}
.aa-ui-nav {
    width: 100%;
    display: flex;
    padding-left: 15px;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: center;
}
.slicehead {
    font-size: 1.1rem;
    padding: 15px 10px 0 49px;
    flex: 1 0 auto;
}
.aa-ui-custom-nav {
    display: flex;
    margin: 5px 15px 5px 0;
    flex: 0;
    white-space: nowrap;
    align-items: center;
}
.aa-ui-modules {
    flex: 1;
    display: flex;
    margin: 5px 15px 5px 0;
    align-items: center;
    justify-content: flex-end;
    white-space: nowrap;
}
.aa-ui-nav .navbar {
    flex: 1;
    padding: 5px 0;
    white-space: nowrap;
    font-size: var(--sz-xs);
    align-content: center;
}
.slicehead img {
    margin: -10px 9px;
}
#aa_top input[type=search] {
    padding: 6px 10px;
    border: none;
    margin: 2px 15px 2px 0;
    height: 30px;
    width: 100px;
    font-size: var(--sz-s);
}
#aa_top input[type=search]:focus {
    width: 260px;
    transition: width 0.1s ease-in-out;
}
.aa-ui-custom-nav a, .aa-ui-custom-nav input[type="submit"], .aa-ui-modules a  {
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    font-size: var(--sz-s);
    margin: 2px;
    line-height: 16px;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    background-color: rgb(255 255 255 / 20%);
    border: solid 1px rgb(255 255 255);
    color: black;
    padding: 6px 15px;
    vertical-align: middle;
}
.aa-ui-nav .navbar a  {
    font-weight: 600;
    text-transform: uppercase;
    color: #61454A;
    display: inline-block;
    font-family: 'Open Sans', sans-serif;
    margin: 2px;
    line-height: 16px;
    font-size: var(--sz-xs);
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: solid 1px rgb(255 255 255);
    background-color: rgb(255 255 255 / 20%);
    padding: 6px 15px;
    vertical-align: middle;
    letter-spacing: 0.03em;
    position: relative;
}
.aa-ui-nav .navbar a.aa-ui-btn-additem {
    background: var(--clr-green);
    border: solid 1px #ffffff29;
    color: white;
    text-align: center;
}
.aa-ui-nav .navbar a.nbactive {
    color: black;
    background-color: transparent;
}
.aa-ui-nav .navbar a.nbactive:after {
    content: "";
    display: block;
    position: absolute;
    background: #009688;
    bottom: -1px;
    left: 0px;
    width: 100%;
    height: 1px;
}
.aa-ui-nav a:hover, .aa-ui-nav input[type="submit"]:hover {
    color: #000000;
    background-color: rgb(213 194 164 / 33%);
    border-bottom-color: var(--clr-basic-darker);
}
input[type="submit"].aa-off:hover {
    color: transparent;
}
.aa-ui-custom-nav .aa-ui-userinfo {
    border-color: transparent;
    background-color: transparent;
    padding: 6px 5px;
    font-weight: 600;
}
.aa-ui-custom-nav .aa-ui-userinfo:hover {
    background-color: transparent;
}
input[type="submit"].aa-off {
    background: transparent url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAMAAABhEH5lAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAQtQTFRFAAAAYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKYUVKcZdsBQAAAFl0Uk5TAAvi3wc4/1RxAjAvclJ8LDN1S8UDykME3NEMD9bTAU4nQqbUmc6NmNuAIv78HITYxKE2pb+L5QXugy1seSao9zJB/ZwUbXr6DiXmlJv0GyGxFjuOy/HGhi4kebZQAAAA+UlEQVR4nGNkgABGIPgDZUKFWBkZ/v9GCLEzMn7n+sPA+pWTmfEzWIjvBwPnR7CQwDcG7vdAIaEvDLzfIKpEGD8yCLxiFGd8J8z4jAEsxCDN+EqckVH+OYPUAwaoEAP3b6Cw0hPetwxwIQblx3KMqg8VbiEJqd/nZdS4p3wdyNQCOvUykNa7oclocE37PMiBRgznQJTxZT1G04sG994wwIA54zljRqszDKZH4UI2p4CiDHYnLBkPQEUcGY/Y7mVkcNnPbMm2HxQKUjqM+8V0dgD96Mm4h8FI+B6DMuNOBiW1TeCQ8H94DarRi3E9LLyCgK4COptxBYgDALlISmKAVjlfAAAAAElFTkSuQmCC) no-repeat center;
    color: transparent;
    padding: 7px;
    border: 0;
    border-radius: 50%;
}
.aa-ui-modules a {
    padding: 7px 6px 0;
    height: 30px;
    box-sizing: border-box;
}
.aa-ui-nav select {
    padding: 4px 5px;
    height: 30px;
    border: none;
    font-size: 13px;
    max-width: 250px;
    font-weight: 600;
}
.aa-ui-modules .aa-view-www {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAARpJREFUeNrskrFKxEAQhndOsRMSToNVeoO1cCS1hSB2go2g/RU2PsQV11zpA9iKpSA2SQ60FUmdRogGArESJH4jm5CrU9i48JGZzD9/ZjcrTdOYIWtkBq6/N5AwDPv5HlxWVXXuOI7o+YiIIW/IF9Su4aUVx3HcTTCGW3jO8/ykrmshnqRpasqyNJoXRXGmdasb97ewA0+wq7Hv+5uYmCRJlirIssxo7nne3GpV92Bjsw5v6sw4+92+RFb26bru78TwCRdwZ/tkRKOqp1EUzWBDlZzLWt8gCIIjdI+E+v4YDm2fkfYi0RzwmME93CB4bw2obfM4hQO4ovbaTdu/iQj1CxMVwRboRF/wYc2XNH+v/Mb/qzzc4EeAAQAK62XmFpa+9gAAAABJRU5ErkJggg==);
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
    margin: 0 3px;
}
.aa-ui-modules .aa-view-www:hover {
    background-image: none;
}
/* LEFT MENU */
.aa-ui-leftmenu  {
    color: #4a4a4a;
    flex: 0 0 170px;
    background: var(--clr-basic-dark);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: calc(100vh - 96px);
}
.leftmenu  ul, .leftmenu  li {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    list-style: none;
}
ul li.aa-leftmenu-header:first-child {
    /* display: none; */ /* nechci prvni nadpis */
}
.leftmenu a, li.aa-leftmenu-header {
    text-decoration: none;
    display: block;
    padding: 7px 10px 7px 43px;
    border-bottom: solid 1px rgb(0 0 0 / 10%);
    color: rgb(0 0 0 / 85%);
    font-weight: 600;
    position: relative;
}
li.aa-leftmenu-header {
    padding-top: 20px;
    padding-left: 25px;
    font-size: var(--sz-xs);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}
.leftmenu li img {
    margin: -3px 8px -2px -33px;
    vertical-align: bottom;
}
.aa-bin-cnt, .aa-morehelp, .leftmenu .aa-bin-cnt, .leftmenu .aa-morehelp {
    display: inline-block;
    color: rgb(127 67 81 / 91%);
    padding: 2px 5px;
    border-radius: 8px;
    letter-spacing: 0.02em;
    font-size: 10px;
    font-weight: 600;
    border: solid 1px rgb(168 151 122 / 67%);
    line-height: 10px;
    background: rgb(255 255 255 / 20%);
}
.leftmenu .aa-bin-cnt, .leftmenu .aa-morehelp {
    float: right;
    position: absolute;
    right: 3px;
    top: 3px;
}
.leftmenu .aa-leftmenu-header .aa-morehelp {
    top: 18px;
}
.leftmenu a:hover, .leftmenua {
    background-color: rgb(255 255 255 / 20%);
}
.aa-ui-copyright {
    font-size: var(--sz-xs);
    padding: 20px 10px 20px 15px;
}
.aa-ui-copyright a {
    font-weight: 600;;
    color: rgb(0 0 0 / 75%);
}
.aa-ui-copyright a:hover {
    font-weight: 600;;
    color: #000000;
}
/* FILTERFORM */
.aa-ui-content > .aa-ui-filterform {
    display: block;
    margin: 25px 0 10px 3px;
    box-sizing: border-box;
    font-size: var(--sz-s);
}
.aa-ui-content > .aa-ui-filterform .aa-ui-searchbar {
    display: none;
}
.aa-ui-content > .aa-ui-filterform.unpack .aa-ui-searchbar {
    display: flex;
}
.aa-formgroup-inline {
    align-items: center;
    display: flex;
}
.aa-formgroup-inline > input {
    margin-right: 6px;
}
.aa-sbrow-and, .aa-orderrow-label, .aa-form-label {
    min-width: 45px;
    margin-top: 2px;
}
.aa-ui-filterform input, .aa-ui-filterform select {
    height: 26px;
}
.aa-ui-filterform input[type="checkbox"] {
    vertical-align: middle;
    margin: 2px 3px 3px 10px;
}
.unpack .aa-formgroup-inline .btn-filter-search {
    display: none;
}
.aa-ad-filter {
    margin-left: 15px;
    border-radius: 13px;
}
.unpack .aa-ad-filter img {
    transform: rotate(180deg);
}
input[type="text"].aa-fiter-user, input[type="text"].aa-fiter-users {
    width: 190px;
    padding-left: 32px;
    background: white url(/aaa/images/ico-user-xs.png) no-repeat 10px center;
}

input[type="text"].aa-fiter-users {
    background-image: url(/aaa/images/ico-users-xs.png);
    background-position-x: 6px;
}
.btn-action {
    border-radius: 13px;
}
select[name="srchbr_bookmark"] {
    width: 150px;
}
.aa-sb-btns {
    margin: 7px 0 10px 45px;
}
.aa-ui-searchbar {
    justify-content: space-between;
    align-items: flex-start;
}
.aa-ui-searchbar > div:nth-child(2) {
    flex-grow: 1;
}
.aa-ui-filterform #patharea {
    padding: 11px;
    font-weight: 600;
}
.aa-ui-filterform #patharea + div .aa-tab-buttons {
    display:inline-block;
    padding: 3px;
}
.aa-ui-searches1 {padding-right: 124px;}
.aa-search-img {
    background: #ffffff url(/aa-dev/images/ico-search.webp) no-repeat 13px center;
    width: 45px;
    border: 1px solid var(--clr-border);
    border-right: 0;
    margin: 2px 0px 2px 0;
    position: relative;
    z-index: 1;
}
.unpack .aa-search-img {
    opacity: 0;
}
.aa-ui-filterform select {
    max-width: 220px;
}
.aa-manage-filter .aa-form-label {
    padding-top: 5px;
}
.aa-save-filters summary {
    width: 86px;
    position: absolute;
    right: 0;
    top: -28px;
    white-space: nowrap;
    line-height: 16px;
}
select.grow {
    width: 0px;
    opacity: 0;
    padding: 0;
    margin: 2px 0 2px -1px;
    border: 0;
}
.aa-ui-filterform.unpack select.grow1 {
    animation: grow 0.3s linear 1 forwards;
}
.aa-ui-filterform.unpack select.grow2 {
    animation: grow2 0.3s linear 1 forwards;
}
.aa-sbrow-val input {
    margin-left: -1px;
}
.unpack .aa-sbrow-val input {
    margin-left: 2px;
}
.aa-save-filters .aa-formgroup-inline {
    white-space:nowrap;
    justify-content: end;
}
.aa-manage-filter .aa-form-label {
    padding-top: 5px;
}
.aa-ui-searches .aa-sb-bkmrks {
    margin-right:0;
}
.aa-sb-bkmrks-btns  {
    white-space: nowrap;
    margin-left: -2px;
}
.aa-sb-bkmrks-btns button {
    padding-left: 9px;
    margin: 2px 0 2px -1px;
    min-width: 26px;
    height: 26px;
    background-position: center;
}
.aa-button-save {
    background-image: url(data:image/webp;base64,UklGRmQAAABXRUJQVlA4WAoAAAAgAAAACwAACwAAVlA4TEUAAAAvC8ACABcgEEhDaEFMsEAgDaElMcACgTTkFsEGz39U4QdFkaRGi4u87y1UxASekJEntUKjIaL/gXhUUiRY8pI3zFT/3DAA);
}
.aa-rim .item {
    background-color: var(--clr-basic-light)
    /* only for tlk*/;
}
td.scroller {background: #a0a0a0;}
/**/
.scrhead {
    font-size: var(--sz-s);
    color: #4A4A4A;
}
.tabtxt_field_alerts {
    background-color: #ADD8E6;
}
.nbviewlp {
    background: #584011;
    color: #F5F0E7;
}
.nbmenu {
    background: #F5F0E7;
    color: #584011;
}
.nbdisable {
    color: #4A4A4A;
    vertical-align: middle;
}
.disabled {
    color: #808080;
}
.example {
    font-family: Courier, sans-serif;
}
.slicesubhead {
    font-size : 0.6875rem;
    color: #EEEEEE;
    font-weight: 600;
    background: #589868;
}
.subwindow  {
    font-size: var(--sz-xs);
    font-weight: 600;
    background: #A8C8B0;
    color: #4A4A4A;
}
.windowtitle {
    font-size: var(--sz-xs);
    font-weight: 600;
    background: #589868;
    color: #FFFFFF;
}
.ipostdate {
    font-size: var(--sz-s);
}
.inoutertd {
    font-size: var(--sz-xs);
    color: #FFFFFF;
}
.tabtit {
    font-size: var(--sz-s);
}
.tabtit a {
    color: red;
}
.tabtit a:visited {
    color: red;
}
.change {
    color: red;
}
/* multiple selecty */
.sel_on {
    background: #dbe6f9;
}
.sel_missing {
    color: #CC0000;
}
.sel_title {
    background: var(--clr-basic);
}
td.sel_title {
    background: #F5F0E7;
}
/* tabs k formularum */
#formtabs, #formtabs2 {
    font-size: 0.85em;
    font-weight: bold;
    padding: 0;
    margin: 0;
    background-color: #584011;
    border-bottom: 1px solid #ebdabe;
}

#formtabs td, #formtabs2 td {
    padding: 0;
    border-bottom: 1px solid #745623;;
}
.tabsactiv, .tabsnonactiv {
    color: #000000;
    background-color: #ebdabe;
    text-decoration: none;
    margin: 0;
    padding: 0 6px;
    border-right: 1px solid #ebdabe;
}
.tabsnonactiv {
    color: #ebdabe;
    background-color: #745623;
}
.separator td {
    padding-top: 5px;
    border-top: 2px solid #584011;
}
.general {
    color: #444;
    background-color: #F5F0E7;
}
.difftext {
    font-size: small;
    font-family: monospace;
    text-align: left;
}
.difftext ins {
    background-color: #0F02;
    text-decoration: none;
}
.difftext del {
    background-color: #F002;
    text-decoration: none;
}

/* ---sitemodul--- */
h1:has(+.aa-site-codemanager) {
    margin-left: 0;
}
.aa-site-codemanager {
    display: flex;
}
#sitetree .aa-w-full a {
    margin-bottom: 5px;
}
#sitetree {
    font-size: var(--sz-s);
    color: #000000;
    flex: 0 1 280px;
    margin-right: 35px;
}
#sitetree a {
    display: block;
}
#sitetree tr>td {
    width: 50%;
}
#sitetree tr>td:last-child {
    padding-left: 5px
}
#sitetree div {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAECAYAAABlaKSVAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAACBJREFUeNpi+P//PwMhnJ2dPZMYdeiYiYGGYOgaDhBgABQgQ5+pcMyZAAAAAElFTkSuQmCC") repeat-y;
}
#sitetree .spot  {
    color: #000000;
    background-color: #fdfdfd;
    border: 1px solid rgb(0 0 0 / 15%);
    padding: 3px 7px;
    display: block;
    white-space: normal;
}
#sitetree div.choice .spot, #sitetree div.lastchoice .spot  {
    border-top: 0;
}
#sitetree div.choice, #sitetree div.lastchoice {
    padding: 0 0 5px 21px;
}
#sitetree div.lastchoice {
    background-image: none;
}
#sitetree div.conditions {
    background: var(--clr-footer);
    border: 1px solid rgb(0 0 0 / 10%);
    padding: 3px 7px;
}
#sitetree div.conditions a {
    color: #584011;
}
#sitetree div.variables {
    padding: 2px 0 8px 28px;
    color: #584011;
}
#sitetree a.spot:hover {
    background-color: #ffffff;
    color: #007ed7;
}
#sitetree div.selected a {
    background-color: var(--clr-basic-darker);
    color: #FFF;
    border: solid 1px transparent;
    margin-top: -1px;
    display: inherit;
}
.choice img, .lastchoice img {
    margin: 0 0 0 -21px;
    float: left;
}
#sitetree a.eye, #sitetree div.selected a.eye {
    margin: 3px;
    padding: 0;
    float: right;
    border: none;
}
.aa-site-code {
    flex: 1;
}
/* -- live editing  */
select.live, input.live, textarea.live {
    padding: 2px;
    font-size: var(--sz-s);
}
.aa-live label {
    display: inline-block;
}
select.updating, input.updating, textarea.updating {
    outline: 1px solid #FF0000;
}
div.ajax_value {
    background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAALCAYAAACZIGYHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIlJREFUeNpi7E12YSATHAfit0VzdvuwkGnASSA2AzH6Ulx3MFFiABTwM1FowAmgdyxJMeQMmgFHgdgSxGAiwQBjNANsYBxiDEnEZwAxhqRCo3IuLgNAgFAU9wIxKxAbAvFuIF6JTRE+l2QBMS/UkAhcBsAM2QDEVmg0COQA8WogFgDiBnzOBQgwACRoHQr41SuNAAAAAElFTkSuQmCC") no-repeat scroll right center transparent;
    padding-right: 23px;
}
div.ajax_value:hover { /* edit-a.png */
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAALCAYAAACZIGYHAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAHpJREFUeNpi+P//PwM2TAQ4DsRbwCwyDTkJ0grFO5gYSAcgA8yQ+PykugTZBf+hXiLJO2fQDDgClyHSENwGEGlIIl4DiDAkFYg1gHgOTgOIMOQTEH+HGhSOM77wGJIFtf0PEDcQivcNQGyFTEMNuQbEq4CYh5ABAAEGAL3WyHg+TfxBAAAAAElFTkSuQmCC");}

div.ajax_value[data-aa-edited="1"],
div.ajax_value[data-aa-edited="1"]:hover {
    background: none;
}
div[data-aa-required] label:after {
    content:" *";
    color: red;
}
.ajax_buttons {
    margin-top: 8px;
}
.ajax_buttons input.save-button, .ajax_buttons input.cancel-button {
    text-transform: lowercase;
}
.ajax_buttons input.cancel-button {
    background-color: transparent;
    border: solid 1px rgb(26 4 4 / 30%);
    color: #61454A;
}

/* -- items manager table  -- */
.aa-items-manager {
    border-bottom: solid 1px rgb(0 0 0 / 20%);
    padding: 5px 0 5px 0;
    margin-bottom: 15px;
}
.aa-items-manager table, table.aa-items-manager  {
    background: transparent;
    border-collapse: collapse;
    width: 100%;
}
.aa-items-manager thead td, .aa-items-manager thead th, .aa-items-manager .aa-tbl-header td, .aa-items-manager .aa-tbl-header th {
    background-color: var(--clr-basic-dark);
    padding: 7px 6px 4px 6px;
    font-weight: normal;
    color: rgb(0 0 0 / 80%);
    border-left: solid 1px rgb(255 255 255 / 45%);
    line-height: 1.1;
}
.aa-items-manager thead td:first-child, .aa-items-manager thead th:first-child, .aa-items-manager .aa-tbl-header td:first-child, .aa-items-manager .aa-tbl-header th:first-child {
    border-left: 0;
}
.aa-tab-buttons input[type="submit"]  {
    margin-left: 0;
}
.aa-items-manager tr:nth-of-type(odd) {
    background-color: rgb(255 255 255 / 40%);
}
.aa-items-manager tr:nth-of-type(even) {
    background-color: var(--clr-opacity-dark);
}
.aa-items-manager td {
    padding: 5px 5px;
    vertical-align: top;
    border: 0;
}
.aa-items-manager th {
    text-align: left;
}
.aa-items-manager td p:first-child {
    margin-top: 0;
}
.aa-items-manager tr:first-child th, .aa-items-manager .tablename td, .aa-items-manager .aa-tbl-header td  {
    text-align: left;
    vertical-align: bottom;
    background-color: var(--clr-basic-dark);
    padding: 8px 10px 4px 5px;
    font-weight: 600;
    color: rgb(0 0 0 / 80%);
    border: 0;
    border-left: solid 1px rgb(243 243 241 / 52%);
    font-size: var(--sz-s);
}
.aa-items-manager tr:first-child th[colspan], .aa-items-manager thead th[colspan], .aa-items-manager .tablename td[colspan], .aa-items-manager .aa-tbl-header td[colspan] {
    text-align: center;
}
.aa-items-manager a[href*="itemedit"] {
    font-weight: 600;;
    display: inline-block;
    margin-bottom: 2px;
}
.aa_manager_actions {
    padding: 12px 0;
    background-color: #e1e1e1;
}
/* pager item manager */
.pager {
    clear: both;
    padding: 42px 0 0 0;
    color: transparent;
    font-size: 0;
}
.pager a, .pager [aria-current] {
    display: inline-block;
    background-color: var(--clr-footer);
    padding: 4px 11px;
    letter-spacing: normal;
    margin: 0 2px;
    color: #000000;
    text-decoration: none;
    font-size: var(--sz-s);
}
.pager .dots {
    background-color: transparent;
    color: #414141;
    letter-spacing: normal;
}
.pager a:hover {
    background-color: var(--clr-basic-darker);
    color: white;
}
.pager [aria-current] {
    background-color: var(--clr-dark);
    color: white;
}
.pager:empty {
    display: none;
}
.pager .found {
    color: #414141;
    letter-spacing: 0.03em;
    margin-left: 10px;
    font-size: var(--sz-xs);
}

/* -- aa-table -- */
div[data-aa-class="clasic"] {
    display: block;
}
.aa-table > table, table.aa-table  {
    border-collapse: collapse;
    margin-bottom: 1px;
    width: 100%;
}
.aa-table thead td, .aa-table thead th, .aa-table .aa-tbl-header td, .aa-table .aa-tbl-header th, .tabtit {
    background-color: var(--clr-basic-dark);
    padding: 11px 10px 4px 12px;
    font-weight: normal;
    color: rgb(0 0 0 / 80%);
    border-left: solid 1px rgb(255 255 255 / 45%);
    border-top: solid 1px rgb(255 255 255 / 45%);
    line-height: 1.3;
}
.aa-tab-title, .aa-tab-title td  {
    text-align: left;
    padding: 7px 10px 4px 25px !important;
    background-color: var(--clr-basic-dark);
    /* color: #FFF; */
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: 1rem;
}
.aa-tab-separate {
    border-top: solid 30px #f3f3f1;
}
tr.aa-tab-separate + tr td {
    padding-top: 10px !important;
}
.aa-table .aa-tab-line td, .aa-table .aa-tab-line th, .aa-table .aa-tab-line td:first-child {
    padding: 0;
    height: 1px;
    background: var(--clr-basic-dark);
}
.aa-table thead td:first-child, .aa-table thead th:first-child, .aa-table .aa-tbl-header td:first-child, .aa-table .aa-tbl-header th:first-child {
    border-left: 0;
    padding-left: 25px;
}
.aa-tab-buttons input[type="submit"]  {
    margin-left: 0;
}
.aa-table tr:nth-of-type(odd) {
    background-color: rgb(255 255 255 / 40%);
}
.aa-table tr:nth-of-type(even) {
    background-color: var(--clr-opacity-dark);
}
#inputtab .aa-table tr:nth-of-type(even) {
    background-color: transparent;
}
table.aa-table table {
    width: inherit !important;
}
.aa-table table table tr:nth-of-type(even), table.aa-table table tr:nth-of-type(even),
.aa-table table table tr:nth-of-type(odd), table.aa-table table tr:nth-of-type(odd){
    background-color: transparent;
}
.aa-table.aa-table-simple tr:nth-of-type(odd), .aa-table.aa-table-simple tr:nth-of-type(even) {
    background-color: var(--clr-opacity-light);
}
.aa-table.aa-table-simple td, .aa-table.aa-table-simple th {
    border-bottom: solid 1px var(--clr-footer);
}
.aa-table td {
    padding: 6px 10px;
}
.aa-table th, .aa-table tr > td:first-child {
    text-align: left;
    padding: 6px 5px 6px 25px;
    vertical-align: top;
    line-height: 1.2;
}
.aa-table tr > th:first-child {
    padding-top: 11px;
    padding-bottom: 10px;
}
.aa-table thead tr > th:first-child, .aa-table thead tr > td:first-child, .aa-table .aa-tbl-header > th:first-child, .aa-table .aa-tbl-header > td:first-child {
    padding-bottom: 4px;
}
.aa-table td:has(hr) {
    padding: 10px 0 !important;
}
.aa-table-foot td {
    text-align: center;
}
.aa-flds-aliases a {
    padding: 0 4px;
    border-left: solid 1px rgb(0 0 0 / 18%);
}
.aa-flds-aliases a:first-child {
    padding-left: 0;
    border-left: 0;
}
.aa-tab-buttons {
    display: flex;
    padding: 12px 0;
    background-color: #ffffff;
    margin-bottom: -1px;
    justify-content: center;
    border-top: solid 1px #ffffff;
    max-width: 100%;
}
#inputtab .aa-tab-buttons input.btn-secondary {background: var(--clr-basic);}
.aa-table h4 {
    font-size: var(--sz-s);
    text-transform: uppercase;
    margin: 1em 0 0.3em;
}
.aa-paramwiz-link {
    align-items: center;
    /* margin-top: 7px; */
    line-height: 1;
}
.aa-input-const {
    align-items: baseline;
}
.aa-input-const strong {
    margin-right: 10px;
}
.pojmenuj strong {
    padding: 6px 6px 0 0;
}
.pojmenuj {
    margin-top: 7px;
}
/* message-boxes css */
#aa-message-box {
    width: 100%;
    text-align: center;
    position: absolute;
    z-index: 100;
}
#aa-message-box span {
    display: inline-block;
    min-width: 20%;
    max-width: 40%;
    margin: 150px 25%;
    box-shadow: 0 0 20px #000;
    border: solid 1px #5A5A5A;
    padding: 20px;
    text-align: left;
}
#aa-message-box.aa-err span {
    background-color: #FFE0DB;
}
#aa-message-box.aa-info span {
    background-color: #FFF9BA;
}
#aa-message-box.aa-ok span {
    background-color: #E2FAC4;
}
.dis-avatar {
    width: 48px;
    height: 48px;
    float: left;
    margin-right: 12px;
}
.dis-avatar div {
    width: 48px;
    height: 48px;
    line-height: 48px;
    font-size: 1.2em;
    text-align: center;
}
.dis-color1 { background-color: #afb478; }
.dis-color2 { background-color: #a48a72; }
.dis-color3 { background-color: #a1988f; }
.dis-color4 { background-color: #c5c5c5; }
.dis-color5 { background-color: #eae5e0; }
.dis-color6 { background-color: #e1bfc5; }
.dis-color7 { background-color: #bb94c6; }
.dis-color8 { background-color: #c46f87; }
.always-flex {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
/* form new item */
form[name="inputform"] {
    margin: 0 -10px 0 -15px;
    box-sizing: border-box;
}
h1:has(+form[name="inputform"]) {
    text-align: center;
    margin: 0 -10px 0 -15px;
    padding: 15px 0 0;
    background: var(--clr-basic-dark);
    font-size: 1.1em;
}
#inputtab {
    display: inline-block;
    width: 100%;
    margin: auto
}
#inputtab .aa-tab-buttons {
    background-color: var(--clr-basic-dark);
    /* border-top: solid 1px #ffffff; */
    max-width: 100%;
}
#inputtab thead td, #inputtab thead th {
    border-left: solid 1px rgb(255 255 255 / 45%);
    font-weight: 600;;
}
#inputtab td {
    padding: 0.6em;
    vertical-align: top;
    text-align: left;
    font-size: 1rem;
    position: relative;
}
#inputtab tr > th:first-child {
    padding-top: 16px;
    padding-right: 15px;
    width: 10%;
    text-align: right;
}
#inputtab  tr:first-child th {
    padding-top: 24px;
}
#inputtab  tr:first-child td {
    padding-top: 15px;
}
#inputtab tr > th:first-child > div {
    max-width: 263px;
    min-width: 177px;
}
#inputtab tr > td:last-child {
    padding-right: 25px;
    font-size: 1rem;
}
#inputtab .aa-table table td, #inputtab .aa-table table tr > td:last-child, #inputtab .aa-table table tr > td:first-child,
#inputtab .aa-table table th {
    padding: 2px;
}
#inputtab tr > td[colspan] {
    padding-left: 25px;
    padding-top: 15px;
    font-weight: bold;
    font-size: 1.1rem;
    letter-spacing: 0.03em;
}
#inputtab tr tr:nth-child(even), #inputtab tr tr:nth-child(odd) {
    background-color: transparent;
    border: 0;
}
#inputtab input[type="text"], #inputtab input[type="tel"], #inputtab input[type="email"], #inputtab input[type="number"], #inputtab input[type="password"], #inputtab input[type="url"], #inputtab input[type="date"], #inputtab select, #inputtab textarea, #inputtab input:not([type]) {
    font-size: 1rem;
    padding: 4px 5px 4px 10px;
}
#inputtab select {
    padding: 3px 5px;
}
#inputtab textarea {
    line-height: 1.6em;
}
.tabhlp {
    padding: 3px 0 3px 2px;
    color: rgb(0 0 0 / 70%);
    font-size: var(--sz-s);
}
.aa-w-full + a.aa-externallink {
    position: absolute;
    right: 3px;
    top: 2px;
}
.aa-w-full + a.aa-morehelp, a.aa-externallink + a.aa-morehelp  {
    position: absolute;
    right: 4px;
    top: 6px;
}
a.aa-externallink + a.aa-morehelp  {
    top: 21px;
}
#inputtab input[type="checkbox"] + .tabhlp {
    padding-left: 0;
}
#inputtab .aa-mch-list  {
    display: inline-block;
}
#inputtab .aa-mch-list td {
    padding: 4px;
}
#inputtab .aa-formatters input[type="checkbox"], #inputtab .aa-formatters input[type="radio"], #inputtab .aa-input input[type="checkbox"], #inputtab .aa-input input[type="radio"] {
    vertical-align: bottom;
    margin: 0 5px 2px 0;
}
#inputtab .aa-formatters label:has(input:checked) {
    border-top-color: var(--clr-green);
    background: white;
    border-bottom-color: white;
}
#inputtab .aa-formatters label:hover {
    border-top-color: #000000;
}
#inputtab .aa-input label {
    display: inline-block;
    padding-right: 12px;
    padding-top: 5px;
    white-space: nowrap;
}
#inputtab .aa-widget-wi2 label, #inputtab .aa-widget-iso label, .aa-label-above {
    display: block;
    text-align: center;
    background-color: #f7f7f7;
    border: solid 1px #cdcdcd;
    border-bottom: 0;
    padding: 4px 0;
    margin-top: 2px;
}
#inputtab .aa-widget-wi2 .aa-wi2-selected label, .aa-label-above.selected {
    border-top: solid 1px var(--clr-green);
}
#inputtab img[title="new"] {
    margin-left: 3px;
    border: solid var(--clr-dark);
    border-width: 4px 9px;
}
.formbuttons td {
    text-align: center;
    padding: 10px;
    background: #8d6d60;
}
@media print {
    .noprint {
        display: none;
    }
    body, #hlavnitbl {
        background-color: #FFFFFF;
    }
}
@media (min-width: 768px) {
    .flex {
        flex-direction: row;
        flex-wrap: wrap;
    }
}
@media (max-width: 1200px) {
    .slicehead {
        padding-left: 37px;
    }
}
.okno {
    background: #ffffff;
    border: solid 1px #c1bbac;
    outline: solid 10px white;
    padding: 30px;
    width: 300px;
    margin: 20px auto;
    position: relative;
    text-align: center;
    pointer-events: visible;
    line-height: 1.5;
}
/** new **/
/*!**/
/*:root {*/
/*    --clr-body: #ffffff;*/
/*    --clr-footer: #e7e5e1;*/
/*    --clr-basic: #e7e7e7;*/
/*    --clr-basic-dark: #cbc4b2;*/
/*    --clr-basic-darker: #8d8d8d;*/
/*    --clr-basic-light: #f3f2ed;*/
/*    --clr-border: #d9d9d9;*/
/*    --clr-gold:#c3a985;*/
/*    --clr-green:#1eb585;*/
/*}*/
/*body {*/
/*    background: white;*/
/*}*/
/*input[type="submit"], input[type="button"], button, .button, .btn {*/
/*    background-color: var(--clr-dark);*/
/*}*/
/*input[type="submit"].btn-l, input[type="button"].btn-l, button.btn-l, .button.btn-l, .btn.btn-l, .btn-l {*/
/*    padding: 8px 15px;*/
/*    background-color: var(--clr-green);*/
/*}*/
/*input[type="submit"].btn-secondary, input[type="button"].btn-secondary, button.btn-secondary, .button.btn-secondary, .btn.btn-secondary, .btn-secondary .aa-sb-bkmrks-btns .btn.btn-xs, #inputtab .aa-tab-buttons input.btn-secondary {*/
/*    background: transparent;*/
/*    border-color: #00000066;*/
/*    color: black;*/
/*}*/
/*input[type="submit"]:hover, input[type="button"]:hover, button:hover, [class^="aa-button"]:hover, .btn:hover, .btn-l:hover {*/
/*    border-color: var(--clr-gold);*/
/*    background-color: var(--clr-gold);*/
/*}*/
/*input[type="submit"].btn-l:hover, input[type="button"].btn-l:hover, button.btn-l:hover, .button.btn-l, .btn.btn-l:hover, .btn-l:hover {*/
/*    background-color: var(--clr-dark);*/
/*    border-color: var(--clr-dark);*/
/*}*/
/*input[type="submit"].btn-secondary:hover, input[type="button"].btn-secondary:hover, button.btn-secondary:hover, .button.btn-secondary:hover, .btn.btn-secondary:hover, .btn-secondary .aa-sb-bkmrks-btns .btn.btn-xs:hover {*/
/*    background-color: hsl(0deg 0% 100% / 44%);*/
/*    box-shadow: inset 0 0 1px #000000;*/
/*    border-color: black;*/
/*}*/
/*!* aa- buttons *!*/
/*[class^="aa-button"], [class^="aa-button"], input[class^="aa-button"] {*/
/*    border: solid 1px rgb(26 4 4 / 30%);*/
/*    color: #61454A;*/
/*    text-decoration: none;*/
/*    font-size: var(--sz-s);*/
/*    background-color: #fff;*/
/*    padding: 4px 8px;*/
/*    display: inline-block;*/
/*    line-height: 16px;*/
/*    vertical-align: middle;*/
/*    transition: all 0.3s;*/
/*}*/
/*[class^="aa-button-"], input[class^="aa-button-"] {*/
/*    padding-left: 18px;*/
/*}*/
/*[class^="aa-button"]:hover {*/
/*    color: black;*/
/*    background-color: transparent;*/
/*}*/
/*.aa-button-delete:hover, input[class="aa-button-delete"]:hover {*/
/*    border-color: #e00303;*/
/*    background-color: #e00303;*/
/*    color: white;*/
/*}*/
/*!* -- left menu -- *!*/
/*.aa-ui-leftmenu {*/
/*    flex: 0 1 230px;*/
/*    min-width: 180px;*/
/*    padding-top: 20px;*/
/*    min-height: calc(100vh - 76px);*/
/*}*/
/*.leftmenu a, li.aa-leftmenu-header {*/
/*    color: rgb(0 0 0);*/
/*    font-weight: 400;*/
/*    border: solid transparent;*/
/*    border-width: 0;*/
/*    margin: 6px 0;*/
/*    padding: 3px 10px 3px 55px;*/
/*}*/
/*.leftmenu li img {*/
/*    margin: -3px 16px -2px -40px;*/
/*    opacity: 1;*/
/*}*/
/*li.aa-leftmenu-header {*/
/*    padding-top: 30px;*/
/*    border-bottom: solid 1px rgb(255 255 255 / 65%);*/
/*    font-weight: 600;*/
/*}*/
/*.leftmenu a:hover, .leftmenua {*/
/*    background-color: transparent;*/
/*    font-weight: 600 !important;*/
/*}*/
/*.leftmenu .aa-bin-cnt, .leftmenu .aa-morehelp {*/
/*    background: rgb(255 255 255 / 55%);*/
/*    right: 15px;*/
/*    top: 6px;*/
/*    border-color: transparent;*/
/*    color: black;*/
/*}*/
/*!* -- top *!*/
/*#aa_top {*/
/*    background-color: var(--clr-dark);*/
/*}*/
/*#aa_top .navbar {*/
/*    display: flex;*/
/*    align-items: center;*/
/*}*/
/*.aa-ui-nav {*/
/*    flex: 1 1 90%;*/
/*    padding-left: 25px;*/
/*}*/
/*.nblogo {*/
/*    flex: 0 0 230px;*/
/*    min-width: 180px;*/
/*    max-width: 230px;*/
/*    text-align: left;*/
/*    padding: 0;*/
/*}*/
/*.nblogo a {*/
/*    display: block;*/
/*    background-color: var(--clr-dark);*/
/*    height: 50px;*/
/*    padding-top: 5px;*/
/*    text-align: center;*/
/*}*/
/*.aa-ui-nav .navbar a, .aa-ui-modules a {*/
/*    padding: 7px 3px;*/
/*    margin: 0 9px;*/
/*    color: #ffffff;*/
/*    border: solid 1px transparent;*/
/*    cursor: pointer;*/
/*    text-align: center;*/
/*    text-transform: none;*/
/*    line-height: 13px;*/
/*    background: transparent;*/
/*}*/
/*.aa-ui-nav .navbar a.aa-ui-btn-additem {*/
/*    border: 0;*/
/*    padding: 14px 15px 13px 10px;*/
/*    margin-right: 13px;*/
/*    text-transform: uppercase;*/
/*}*/
/*.aa-ui-nav .navbar a.nbactive {*/
/*    border-bottom-color: rgb(30 181 133 / 80%);*/
/*    color: white;*/
/*}*/
/*.aa-ui-nav .navbar a.nbactive:after {*/
/*    content: none;*/
/*}*/
/*.aa-ui-nav .navbar .end {*/
/*    flex: 1;*/
/*}*/
/*.aa-ui-nav a:hover, .aa-ui-modules a:hover {*/
/*    border-bottom-color: rgb(255 255 255 / 30%);*/
/*    color: white;*/
/*    background-color: transparent;*/
/*}*/
/*.aa-ui-nav select {*/
/*    background: transparent;*/
/*    color: white;*/
/*    border: solid 1px rgb(30 181 133 / 60%);*/
/*}*/
/*.aa-ui-nav optgroup, .aa-ui-nav option {*/
/*    color: #000000;*/
/*}*/
/*#aa_top input[type=search] {*/
/*    background: transparent;*/
/*    border: solid 1px #ffffff75;*/
/*}*/
/*.aa-ui-custom-nav .aa-ui-userinfo {*/
/*    color: white;*/
/*}*/
/*.aa-ui-modules .aa-view-www {*/
/*    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABcAAAAXCAMAAADX9CSSAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAK5QTFRFAAAA////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////LYr0KgAAADp0Uk5TAAx57eTe5V3d8YTN+dGMj/os3Pe09uEUTRn/sKihCGKOzkWz9ecQ1b/rFmRnlF/E3woCT8dQg9DXfW/+WHMAAACHSURBVHicY2TADhiHmDgjEPxnYvzz/z+KODsjBPz+//8nkjg/I+N7IbDEr///P8LFJf6yPGeQAor+fSb3+zv/Q5i4AiPjPQYhZj5Gxttqt9QZb8DNkeVhvKZ9V+iVxhXJDyo/byHs1WNkfCHJ+FzqEz/jaVR3ml7XesckyHgC1Z1UCwdaiQMAzM8nGHa6aggAAAAASUVORK5CYII=);*/
/*}*/
/*input[type="submit"].aa-off {*/
/*    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABIAAAASCAMAAABhEH5lAAAAAXNSR0IB2cksfwAAAAlwSFlzAAALEwAACxMBAJqcGAAAAQtQTFRFAAAA////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////iT2pngAAAFl0Uk5TAAvi3wc4/1RxAjAvclJ8LDN1S8UDykME3NEMD9bTAU4nQqbUmc6NmNuAIv78HITYxKE2pb+L5QXugy1seSao9zJB/ZwUbXr6DiXmlJv0GyGxFjuOy/HGhi4kebZQAAAA+UlEQVR4nGNkgABGIPgDZUKFWBkZ/v9GCLEzMn7n+sPA+pWTmfEzWIjvBwPnR7CQwDcG7vdAIaEvDLzfIKpEGD8yCLxiFGd8J8z4jAEsxCDN+EqckVH+OYPUAwaoEAP3b6Cw0hPetwxwIQblx3KMqg8VbiEJqd/nZdS4p3wdyNQCOvUykNa7oclocE37PMiBRgznQJTxZT1G04sG994wwIA54zljRqszDKZH4UI2p4CiDHYnLBkPQEUcGY/Y7mVkcNnPbMm2HxQKUjqM+8V0dgD96Mm4h8FI+B6DMuNOBiW1TeCQ8H94DarRi3E9LLyCgK4COptxBYgDALlISmKAVjlfAAAAAElFTkSuQmCC);*/
/*}*/
/*input[type="submit"].aa-off:hover {*/
/*    background-color: var(--clr-green);*/
/*}*/
/*#aa_top .navbar a:first-child {*/
/*    margin-left: 0;*/
/*}*/
/*!* -- main -- *!*/
/*.aa-ui-content {*/
/*    flex: 1 0 80%;*/
/*    padding: 25px 15px 25px 25px;*/
/*}*/
/*.aa-items-manager tr:first-child th, .aa-items-manager .tablename td, .aa-items-manager .aa-tbl-header td {*/
/*    background: var(--clr-footer);*/
/*    border-left: solid 1px rgb(255 255 255 / 80%);*/
/*}*/
/*.aa-table thead td, .aa-table thead th, .aa-table .aa-tbl-header td, .aa-table .aa-tbl-header th, .tabtit {*/
/*    background-color: var(--clr-footer);*/
/*    color: rgb(0 0 0 / 80%);*/
/*    border-left: solid 1px rgb(255 255 255 / 80%);*/
/*    border-top: solid 2px rgb(255 255 255 / 80%);*/
/*    font-weight: 600;*/
/*    font-size: var(--sz-s);*/
/*    border-bottom: 0 !important;*/
/*}*/
/*.aa-items-manager tr:first-child th:first-child, .aa-items-manager .tablename td:first-child, .aa-items-manager .aa-tbl-header td:first-child {*/
/*    border-left: 0;*/
/*}*/
/*.aa_manager_actions {*/
/*    background: transparent;*/
/*}*/
/*.aa-tab-separate {*/
/*    border-color: white;*/
/*}*/
/*.aa-tab-title, .aa-table .aa-tab-title td {*/
/*    background: var(--clr-basic-dark);*/
/*    font-size: var(--sz-xs);*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.03em;*/
/*}*/
/*.aa-table .aa-tab-title td {*/
/*    padding: 13px 25px !important;*/
/*}*/
/*.aa-table {*/
/*    border: solid 1px var(--clr-footer);*/
/*}*/
/*.aa-flds-aliases a {*/
/*    font-size: var(--sz-xs);*/
/*    font-weight: 600;*/
/*    white-space: nowrap;*/
/*}*/
/*.aa-tab-buttons {*/
/*    background-color: white;*/
/*    justify-content: flex-start;*/
/*}*/
/*#inputtab .aa-tab-buttons {*/
/*    background-color: white;*/
/*    padding: 25px 0;*/
/*    border-bottom: 3px solid var(--clr-basic-darker);*/
/*}*/
/*.aa-tab-buttons h1 {*/
/*    display: inline-block;*/
/*    font-size: 1rem;*/
/*    width: 29vw;*/
/*    text-align: left;*/
/*    padding-left: 15px;*/
/*}*/
/*.aa-ui-item .aa-table {*/
/*    margin: 15px 0 15px 0;*/
/*    border: solid 1px var(--clr-footer);*/
/*    background: var(--clr-body);*/
/*}*/
/*!* item *!*/
/*#inputtab tr > td[colspan] {*/
/*    background-color: transparent !important;*/
/*    padding-top: 45px;*/
/*    overflow: hidden;*/
/*}*/
/*#inputtab tr > td[colspan]:after {*/
/*    border-bottom: 3px solid var(--clr-green);*/
/*    content: "";*/
/*    display: inline-block;*/
/*    margin-left: 15px;*/
/*    margin-right: -100%;*/
/*    vertical-align: middle;*/
/*    width: 100%;*/
/*}*/
/*#inputtab tr > td[colspan]:before {*/
/*    content: "";*/
/*    display: inline-block;*/
/*    vertical-align: middle;*/
/*    width: 20px;*/
/*    height: 3px;*/
/*    background-color: var(--clr-green);*/
/*    margin: 0 5px 0 -25px;*/
/*}*/
/*!* left menu sticky *!*/
/*.aa-ui-aamenu {*/
/*    position: sticky;*/
/*    top: 30px;*/
/*}*/
/*.aa-ui-aamenu a {*/
/*    padding: 2px 10px 2px 20px;*/
/*    margin: 0;*/
/*    font-size: var(--sz-xs);*/
/*}*/
/*h2.aa-leftmenu-header {*/
/*    font-size: var(--sz-xs);*/
/*    text-transform: uppercase;*/
/*    letter-spacing: 0.03em;*/
/*    color: black;*/
/*    font-weight: 600;*/
/*    border: solid transparent;*/
/*    border-width: 0;*/
/*    margin: 6px 0;*/
/*    padding: 3px 10px 3px 20px;*/
/*}*/

/*!* styly jinde mirror *!*/
/*.CodeMirror-lines {*/
/*    padding: 10px;*/
/*    white-space: normal;*/
/*}*!*/
