/*
pc
@media (min-width: 768px) {
}
mobil
@media (max-width: 767px) {
}

 */


:root {

    /* GLOBALS */
    --color_body_back: #f0f0f0;
    --white: white;
    --black: black;
    --green: green;
    --color_text: #808080;
    --color_back: white;

    --delete: #E31E24;
    --edit: #808080;
    --add: green;

    --form-white: #FFFFFF;
    --form-border: #f0f0f0;

    /* COLOR 1 */
    --color1: #1179d2;
    --color1_hover: #98CBF7;
    --color1_text: white;

    /* COLOR 2 */
    --color2: #580D33;

    --border-rad: 5px;
    --border-rad2: 10px;
    --border-color: #DEE3E7;

}

h1, h2, h3, h4, h5, h6 {
    color: var(--color_text);
    margin-bottom: 10px;
}

h1 a {
    color: var(--color_text);
}

h1 {
    font-size: 25px;
    margin-bottom: 15px;
    font-weight: bold;
}

h2 {
    font-size: 1.5em;
    font-weight: bold;
}


.color-orange {
    color : orange;
}

.color-red {
    color : red;
}

.font-size-10 {
    font-size: 10px;
}

.black-btn {
    color: var(--form-white) !important;
    background-color: var(--black) !important;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

@page {
    size: auto;
}


.back_img {
    background-image: url('../img/web_back.jpg');
    background-position: center right;
    background-repeat: no-repeat;
    background-size: 1090px;
    background-position-x: 105%;
    background-position-y: 270px;
    position: absolute;
    right: 0px;
    top: 0px;
    height: 100vh;
    max-height: 1050px;
    width: 1100px;
    z-index: -1;
}

.back_img .back_img_left {
    position: absolute;
    background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, var(--color_body_back) 100%);
    left: 0px;
    top: 0px;
    width: 400px;
    bottom: 0px;
}

.back_img .back_img_top {
    position: absolute;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, var(--color_body_back) 100%);
    left: 0px;
    top: 270px;
    right: 0px;
    height: 300px;
}

.back_img .back_img_bottom {
    position: absolute;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, var(--color_body_back) 100%);
    left: 0px;
    bottom: 0px;
    right: 0px;
    height: 300px;
}



.right, .price, .amount {
    text-align: right;
}

.left {
    text-align: left;
}

.center, .date {
    text-align: center;
}

.invalidFeedback, .delete_text {
    color: var(--delete);
}

a {
    transition: all 0.3s;
}

.button_add {
    background-color: var(--add);
}

.button_green {
    background-color: var(--add);
}

.button_delete {
    background-color: var(--delete);
}

.login_options {
    font-size: 14px;
    margin-bottom: 0px;
}


input[type="checkbox"], input[type="radio"], input[type="submit"], input[type="button"] {
    min-height: auto;
    height: auto;
}

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px var(--color1_text) inset;
}


input[type="submit"]:active, input[type="submit"]:focus,
input[type="button"]:active, input[type="button"]:focus {
    border: none;
}

input[type="checkbox"] {
    webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    vertical-align: sub;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: var(--color1_text);
    border: solid 1px var(--color1);
    color: var(--color1_text);
    cursor: pointer;
    padding: 0px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    transform: none;
    border-radius: var(--border-rad);
    opacity: 1;
    z-index: 2;
    outline: none;
    margin-bottom: 2px;
    margin-left: 0px;
}

input[type="checkbox"]:checked {
    background: var(--color1);
}

input[type="checkbox"]:checked::before {
    height: 24px;
    width: 24px;
    position: absolute;
    content: "\2713";
    display: inline-block;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
    background: none;
    color: var(--color1_text);
    opacity: 1;
    font-weight: bold;
}

input[type="radio"] {
    webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -o-appearance: none;
    appearance: none;
    position: relative;
    vertical-align: sub;
    right: 0;
    bottom: 0;
    left: 0;
    height: 25px;
    width: 25px;
    transition: all 0.15s ease-out 0s;
    background: var(--color1_text);
    border: solid 1px var(--color1);
    color: var(--color1_text);
    cursor: pointer;
    padding: 0px;
    display: inline-block;
    margin-right: 10px;
    position: relative;
    transform: none;
    border-radius: 50%;
    opacity: 1;
    z-index: 2;
    outline: none;
    margin-bottom: 2px;
    margin-left: 0px;
}

input[type="radio"]:checked {
    background: var(--color1);
}

input[type="radio"]:checked::before {
    height: 24px;
    width: 24px;
    position: absolute;
    content: "\2713";
    display: inline-block;
    font-size: 18px;
    text-align: center;
    line-height: 25px;
    background: none;
    color: var(--color1_text);
    opacity: 1;
    font-weight: bold;
}

input:disabled, select:disabled, textarea:disabled {
    opacity: 0.7;
}

/* MENU */
header .menu {
    margin: 0px;
    padding: 4px 0px;
    list-style: none;
    text-align: right;
}

.menu_icon {
    display: inline-block;
    /*display: none;*/
    cursor: pointer;
}

header .menu li {
    padding: 0px 10px;
    margin: 0px;
    display: inline-block;
    border-right: solid 1px var(--color1_text);
}

header.header_web .menu li {
    border-right: solid 1px var(--black);
}

header .menu li:last-child {
    border-right: 0px;
}

header .menu li a {
    color: var(--color1_text);
    margin: 0px;
    text-align: left;
    font-size: 18px;
    text-decoration: none;
}

header.header_web .menu li a {
    color: var(--black);
    font-weight: bold;
}

header .menu li a:hover {
    text-decoration: underline;
}

/* MENU - END */

/* WEB */
.logo_head {
    text-align: center;
    margin: 30px;
}

.logo_head a {
    text-decoration: none;
    /*display: inline-block;*/
}

@media (min-width: 768px) {
    .logo_head a {
        width: 400px;
        display: inline-block;
    }
}


.logo_head .logo_icon {
    vertical-align: middle;
}

.logo_icon {
    display: inline-block;
    width: 100%;
}

.logo_head .logo_icon img {
    /*max-width: 55px;*/
    vertical-align: middle;
}

.logo_head .logo_label {
    font-size: 70px;
    margin-left: 10px;
    vertical-align: middle;
    color: black;
    line-height: 40px;
}

.logo_head .logo_text {
    display: block;
    text-align: left;
    font-size: 36px;
    color: var(--color1);
    vertical-align: middle;
    margin-top: 5px;
    font-weight: 400;
    margin-bottom: 0px;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    margin: 20px 0px;
    justify-content: center;
}

.gallery a {
    width: calc(33.33% - 20px);
    margin-right: 20px;
    margin-bottom: 20px;
    border: solid 2px var(--color1);
    min-width: 300px;
}

.gallery a:hover {
    opacity: 0.8;
}

.gallery a img {
    max-width: 100%;
    display: block;
}


/*.logo_head img {*/
/*    max-width: 800px;*/
/*}*/
.web_text .block_1 {
    margin: 50px 0px;
    text-align: center;
}

.web_text .block_1 h2 {
    font-size: 20px;
    margin-top: 15px;
}

.web_text .block_1 p {
    font-size: 14px;
    line-height: 18px;
}

.web_text .block_1 .icon {
    display: inline-block;
    line-height: 40px;
    height: 80px;
    width: 80px;
    padding: 20px;
    font-size: 35px;
    background-color: var(--color1);
    color: var(--color1_text);
    /*border-radius: 50%;*/
    box-shadow: 0px 0px 5px #00000047;
    transition: ease-out 0.2s;
}

.web_text .block_1 .icon:hover {
    transform: scale(1.1);
}

.web_buttons .button {
    font-size: 18px;
    padding: 10px 23px;
}

.web_buttons .buttons_head {
    position: absolute;
    right: 30px;
    top: 130px;
}

.web_buttons .popup_video {
    margin-top: 8px;
    display: inline-block;
}

.web_text {
    min-height: 45vh;
    margin-bottom: 30px;
    margin-top: 40px;
}

.web_text p, .web_text ul li, .web_text a {
    font-size: 18px;
    font-weight: 400;
    line-height: 30px;
    color: var(--color_web);
}

.web_text.op p, .web_text.op ul li, .web_text.op a {
    font-size: 15px;
    line-height: 20px;
}

.web_text.op ul li::before {
    transform: translate(-180%, 5px);
}

.web_text p {
    margin: 10px 0px;
}

.web_text h1 {
    color: var(--color1);
    margin-bottom: 30px;
    margin-top: 0px;
    font-size: 30px;
}

.web_text h2 {
    color: var(--color1);
    margin-bottom: 10px;
    margin-top: 30px;
    font-size: 22px;
}

.web_text ul {
    padding-left: 30px;
    list-style: none;
}

.web_text ul li {
    position: relative;
}

.web_text ul li::before {
    content: "";
    position: absolute;
    left: 0px;
    width: 12px;
    height: 12px;
    top: 0px;
    background-image: url("../img/list-style.png");
    background-size: cover;
    background-repeat: no-repeat;
    transform: translate(-180%, 10px);
}

.web_text a:hover {
    text-decoration: underline;
}

footer.web_footer {
    position: absolute;
    right: 30px;
    transform: translateY(-135px);
}

footer.web_footer, footer.web_footer p {
    text-align: right;
    color: var(--color_web);
    font-size: 10px;
}

footer.web_footer img {
    max-width: 175px;
}

/* WEB - END */

/* LOADER */
.popup_bg {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    top: 0;
    left: 0;
    display: none;
    z-index: 1000;
}

#loader {
    display: none;
    z-index: 10000;
}

#loader .loader {
    margin: auto;
    margin-top: 20%;
}

.loader {
    border: 5px solid #f3f3f3;
    border-top: 5px solid grey;
    border-radius: 50%;
    width: 100px;
    height: 100px;
    animation: spin 2s linear infinite;
    display: block;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* END LOADER */

header {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    z-index: 30;
    background-color: var(--color1);
    color: var(--color1_text);
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

header.header_web {
    background-color: var(--web_menu);
    display: block;
    padding: 0px;
}
body#p-hp {
	background-color: var(--color_body_back);
}

header h2 {
    color: var(--color1_text);
    margin: 0px;
    text-align: left;
    font-size: 18px;
}

header .menu_block, header .header_text {
    display: inline-block;
    vertical-align: middle;
}

header .menu_icon {
    margin-right: 20px;
}

header .lng {
    text-align: right;
}

header .lng span {
    font-size: 18px;
    margin: 0px 5px;
    vertical-align: middle;
}

header .lng span.active_lng {
    font-weight: 600;
}

header .lng span a {
    text-decoration: none;
    color: var(--color1_text);
}

header .lng span a:hover {
    text-decoration: underline;
}

header.row .row-box-last {
    text-align: right;
}

header .header_user_popup {
    display: inline-block;
    padding: 0px;
    cursor: pointer;
}

header .header-notice-btn {
    display: inline-block;
    padding: 0px;
    margin-right: 20px;
    cursor: pointer;
    vertical-align: middle;
}

/*icon badge*/
.icon-badge-group {
    /*margin-right: 30px;*/
}

.icon-badge-group .icon-badge-container {
    /*display: inline-block;*/
    margin-left:15px;
}

.icon-badge-group .icon-badge-container:first-child {
    margin-left:0
}

.icon-badge-container {
    margin-top:20px;
    position:relative;
}

.icon-badge-icon {
    position: relative;
    font-size: 21px;
}

.icon-badge {
    background-color: red;
    font-size: 12px;
    color: white;
    text-align: center;
    width:20px;
    height:19px;
    border-radius: 35%;
    position: absolute; /* changed */
    top: -9px; /* changed */
    left: 12px; /* changed */
    padding-top: 1px;
}

#notice-panel {
    display: none;
    background-color: var(--form-white);
    width:500px;
    height: calc(100% - 51px);
    padding:10px;
    margin-left:100%;
    position: fixed;  /*absolute;*/
    top: 51px;
    right: -510px;
    z-index: 1500;
    border: 1px solid var(--form-border);
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    box-shadow: rgba(0, 0, 0, 0.239216) 0px 3px 8px;
    overflow-y: auto;
}

#notice-panel-allbackground {
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    width:100%;
    height: calc(100% - 51px);
    top: 51px;
    position: absolute;
    z-index: 8;
    opacity: 0.5 !important;

}

#notice-panel-background {
    display: none;
    background-color: rgba(0, 0, 0, 0.4);
    width:100%;
    height: 100%;
    position: absolute;
    top:0px;
    z-index: 18;
    opacity: 0.1 !important;

}

#notice-panel .nav-tabs {
    height: 30px;
    font-size: 14px;
    margin-bottom: 15px;
}

#notice-panel .nav-link {
    height: 29px;
    padding: 5px 5px;
}

#notice-panel .notice-filter-panel {
    /*display: none;*/
    margin-bottom: 15px;
    border-bottom: 1px solid silver;
}

.notify-title {
    font-size: 12px;
    padding: 1px 10px;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    background-color: var(--table_thead);
    color: white;
    width: 100%;
    display: table;
}

.notify-title-row {
    display: table-row;
}

.notify-title-col {
    display: table-cell;
}

.notify-title-colR {
    font-size: 12px;
    display: table-cell;
    text-align: right;
}

.notify-item {
    width: 100%;
    color: #454545;
    font-size: 14px;
    /*border: 1px solid gray;*/
    border-bottom-left-radius : 4px;
    border-bottom-right-radius: 4px;
    background-color: rgb(247,247,247);
    margin-bottom: 5px;
    padding: 5px 5px;
}

.notify-item:hover {
    background-color: rgb(248,245,196);
}

.notify-item-detail {
    display: table;
    width: 100%;
}

.notify-item-row {
    display: table-row;
}

.notify-item-note-col {
    display: table-cell;
    width: 100%;
    cursor: pointer;
}

.notify-item-note-col:hover {
    /*font-weight: bold;*/
}

.notify-item-select {
    cursor: pointer;
}

.notify-item-note {
    display: none;
    width: 100%;
    padding: 2px 2px;
    background-color: white;
}

.notify-item-note p {
    margin: 0 0;
}

.notify-item-task {
    display: table-cell;
    width: 80%;
}

.notify-item-set {
    text-align: right;
    padding-right: 5px;
    display: table-cell;
    width: 20%;
}

.notify-set-read {
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

.notify-set-read.read {
    color: silver;
}

.notify-set-read.unread {
    color: gray;
}

.notify-bottom {
    border-top: 1px solid silver;
    width: 100%;
    text-align: right;
    padding-top: 5px;
}

.notify-bottom button {
    color: var(--color1_text);
}

.loader_small {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    width: 50px;
    height: 50px;
    margin:100px auto; /*100px*/
    position: absolute;
    top:0px;
    left: calc(50% - 25px);
    -webkit-animation: spin_loader_small 2s linear infinite;
    animation: spin_loader_small 2s linear infinite;
    z-index: 20;
}

@-webkit-keyframes spin_loader_small {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin_loader_small {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}


header .header_text h2, header .header_user_name h2 {
    font-weight: 400;
}

header .header_user_name, header .user_block {
    display: inline-block;
    text-align: right;
    vertical-align: middle;
}

header .header_user_name {
    margin-right: 20px;
}

header .menu_block i, header .user_block i {
    padding: 3px 0px 3px 0px;
    font-size: 24px;
}

header .popup_user {
    position: fixed;
    right: 0px;
    top: 50px;
    background-color: var(--color1_text);
    border: solid 3px var(--color1);
    border-top: 0px;
    box-shadow: 0px 0px 5px #00000030;
    text-align: left;
    display: none;
}

header .popup_user ul {
    list-style: none;
    margin: 0px;
    padding: 0px;
}

header .popup_user ul a {
    color: var(--color1);
    margin: 5px 0px;
    display: inline-block;
}

header .popup_user .popup_user_content {
    padding: 30px;
    min-width: 200px;
}

.app_main {
    display: flex;
    width: 100%;
    align-items: stretch;
}

.app_main {
    display: flex;
    width: 100%;
    align-items: stretch;
}

/*

.app_main #content {
    !*mr width: calc(100% - 240px);*!
    !*width: 100%;
    padding: 20px;*!
    width: calc(100% - var(--sidewidth));
    padding: 20px ;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    !*top: 0;*!
    right: 0;
}

.app_main #content.active {
    width: 100%;
}

*/

.app_main #content.without-menu {
    position: unset;
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

.box-back_content {
    border-radius: var(--border-rad2);
    padding: 20px;
    background-color: var(--color1_text);
    border-top: solid 5px var(--color1);
    margin-bottom: 2rem;
}

.box-back_content p {
    color: var(--color_text);
    font-size: 17px;
    line-height: 23px;
    margin: 10px 0px;
}

.box-back_content .per {
    position: absolute;
    margin-left: 2px;
}

.text_label {
    font-size: 14px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 21px;
}

.text_label i {
    font-size: 22px;
    transform: translateY(3px);
    margin-right: 5px;
}

.box-back_content h2:first-child, .box-back_content h3:first-child {
    margin-top: 0px;
}

/* LIST */
table.list {
    width: 100%;
    border-spacing: 0;
    margin: 0px;
}

table.list thead tr th:last-child {
    border-top-right-radius: var(--border-rad);
}

table.list thead tr th:first-child {
    border-top-left-radius: var(--border-rad);
}

table.list tbody tr:last-child td:last-child {
    border-bottom-right-radius: var(--border-rad);
}

table.list tbody tr:last-child td:first-child {
    border-bottom-left-radius: var(--border-rad);
}

table.list tfoot tr td:last-child {
    border-bottom-right-radius: var(--border-rad);
}

table.list tfoot tr td:first-child {
    border-bottom-left-radius: var(--border-rad);
}

table.list thead tr th,
table.list tfoot tr td {
    padding: 12px 8px;
}

table.list thead tr th.text, table.list tbody tr td.text {
    text-align: left;
}

table.list thead tr th.checkbox, table.list tbody tr td.checkbox,
table.list thead tr th.radio, table.list tbody tr td.radio {
    text-align: center;
}

table.list tbody tr td input[type="checkbox"], table.list tbody tr td input[type="radio"] {
    margin-left: 0px;
    margin-right: 0px;
}

table.list tbody tr:hover td {
    background-color: var(--table_thead_color_hover) !important;
}

table td.buttons {
    white-space: nowrap;
    width: 1px;
}

table td.buttons i {
    font-size: 18px;
}

table .delete {
    color: var(--delete);
}

table .edit {
    color: var(--edit);
}

table .delete:hover, table .edit:hover {
    opacity: 0.7;
}

.text_w100 {
    width: 100px;
}

.text_w120 {
    width: 120px;
}


/* EDIT */
table.edit {
    width: 100%;
    margin-bottom: 20px;
}

table.edit .left_cell {
    width: 180px;
}

table.edit input[type="text"] {
    width: 100%;
}

table.form_table, .form_div {
    width: 100%;
}

table.form_table input, .form_div input, .form_div textarea {
    width: 100%;
    /*mr margin-bottom: 5px;*/
}

table.form_table input:focus::placeholder,
.form_div input:focus::placeholder{
    color: transparent;
}

table.form_table select, .form_div select {
    width: 100%;
}

table.form_table input[type="submit"], table.form_table button
/*, .form_div input[type="submit"], .form_div button*/ {
    margin: 8px 0px;
}

table.form_table td.label label.select, table.form_table td.label label.checkbox, table.form_table td.label label.radio,
table.form_table td.label label.password,
.form_div span.label label.select, .form_div span.label label.checkbox, .form_div span.label label.radio,
.form_div span.label label.password
{
    opacity: 1;
}

.form_div .datetime {
    opacity: 1 !important;
}

.form_div input {
    min-height: 38px;
}



.select-input  button,
.select-input  button:hover,
.select-input  button:active,
.select-input  button:focus,
.select-input  button.active {
    font-family: 'Roboto' !important;
    font-weight: 400 !important;
    border: none !important;
    background-color: var(--color_back) !important;
    color: black; !important;
    outline: none !important;
    box-shadow: none !important;
}

.select-input .bootstrap-select .dropdown-toggle:focus,
.select-input .bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    outline: thin dotted #333 !important;
    outline: none !important;
    outline-offset: -2px;
}

.bootstrap-select {
    font-family: 'Roboto';
    font-weight: 400;
    background-color: var(--color_back);
    border: solid 1px var(--color_text);
    border-radius: var(--border-rad);
    font-size: 95%;
    line-height: 16px;
    min-height: 36px;
}


/*
.bootstrap-select {
    border: 1px solid black;
}
*/

table.form_table td.label label.checkbox {
    transform: translate(20px, 130%);
    font-size: 16px;
    cursor: pointer;
}

.form_div span.label label.checkbox {
    padding: 0 0 0 0;
    margin: 0 0 0 0;
    transform: none !important;
    font-size: 16px;
    cursor: pointer;
}

.form_div input[type="checkbox"] {
    min-height: unset !important;
}


table.form_table td.label label.radio,
.form_div span.label label.radio {
transform: translate(20px, 130%);
    font-size: 16px;
    cursor: pointer;
}

table.form_table input[type="submit"],
.form_div input[type="submit"]{
    width: auto;
}

table.form_table input[type="checkbox"], table.form_table input[type="radio"],
.form_div input[type="checkbox"], .form_div input[type="radio"] {
    width: 25px;
}

table.form_table .label label,
.form_div .label label {
    opacity: 0;
    margin-left: 10px;
    background-color: white;
    display: inline-block;
    position: relative;
    transform: translateY(10px);
    padding: 0px 5px;
}

.show-label .label label {
    opacity: unset !important;
}

input.error {
    border-color: var(--delete);
}

.form_table
/*.form_div */
{
    margin: auto
}

.form_table tr {
    display: block
}

.form_table td {
    display: block
}

.form_table td.label, .form_div span.label {
    padding: 0;
}

.form_table td.label label,
.form_div span.label label {
    opacity: 0;
    font-size: 80%;
    color: var(--color_text);
    line-height: 100%;
    z-index: 1;
    font-weight: normal;
    line-height: 1;
}

.form_table td.input label.error,
.form_div label.error,
.login_form label.error{
    display: block;
    padding: 8px 6px;
    line-height: 15px;
    background-color: var(--delete);
    color: var(--white);
    font-size: 80%;
    -webkit-border-radius: 13px;
    -webkit-border-top-left-radius: 0;
    -moz-border-radius: 13px;
    -moz-border-radius-topleft: 0;
    border-radius: 13px;
    border-top-left-radius: 0;
}

.form_div .form-icon-btn {
    display: inline-block;
    /*padding-top: 26px;*/
    font-size: 19px;
    color: #EFEBEF;
    padding-top: 32px;
    cursor: pointer;
}

.form_div .form-icon-btn.active  {
    color: #848284;
}

.form_div .form-icon-btn.icon-center {
    padding-left: 5px;
    padding-right: 5px;
}

.form-title-btn {
    font-size: 24px;
    cursor: pointer;
    /*color: var(--color_text);*/
}

.form-title-btn.btn-left {
    padding-right: 15px;
}

@media only screen and (max-width: 824px) {
    .form-tab-title {
        display: none;
    }
}

.admin_edit {
    margin-bottom: 2rem;
    /*max-width: 600px;*/
}

.admin_edit .form_content {
    padding: 20px;
    margin-bottom: 1rem;
}

.admin_edit form.form_validate table.form_table {
    margin-bottom: 20px;
}

.form_conteiner {
    width: 90%;
    max-width: 420px;
    margin: auto
}

.form_content {
    background: var(--color1_text);
    border-top: 4px solid var(--color1);
    padding: 30px 60px;
    border-radius: var(--border-rad2);
}

/* TEST */
.filter {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 8px;
    /*mr background-color: var(--color1_text);*/
    border-radius: var(--border-rad);
    margin-right: 5px;
    min-width: 300px;
    margin-bottom: 8px;
}

.filter_button {
    display: inline-block;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 8px;
}

.filter label {
    width: 30px;
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    font-size: 25px;
    color: var(--color_text);
    height: 30px;
}

.filter_label {
    text-align: center;
    display: inline-block;
    vertical-align: middle;
    font-size: 19px;
    color: var(--color_text);
    height: 30px;

}

.filter input, .filter select {
    width: calc(100% - 35px);
    vertical-align: middle;
}

.filter .select-no-icon {
    width: 100%;
}

.filter2 {
    display: inline-block;
    vertical-align: middle;
    padding: 5px 0px 5px 8px;
    /*mr background-color: var(--color1_text);*/
    border-radius: var(--border-rad);
    margin-right: 0px;
    /*min-width: 300px;*/
    width: 100%;
    margin-bottom: 8px;
}

.filter-box {
    width: 100%;
    background-color: var(--color1_text);
    border-radius: var(--border-rad);
    border: 1px solid var(--color_text);
}

.filter-box .chbox {
    top: 6px;
    left: 5px;
    margin-right: 0px;
    border: 1px solid var(--color_text);
}

.filter-box label {
    cursor: pointer;
}

/*novy filter napr na FB*/
.filter-panel {

}

.filter-panel .filter-item{
    font-size: 1rem;
}

.filter-panel .bootstrap-select {
    border: none;
}

.filter-panel .filter-item {
    display: inline-block;
    border: solid 1px var(--color_text);
    border-radius: var(--border-rad);
    width: 100%;
    background-color: var(--white);
}

.filter-panel .filter-item .dropdown-toggle {
    padding-bottom: 4px;
    padding-right: 0px;
    padding-left: 5px;
}

.filter-panel .filter-item .btn-cancel,
.filter-panel .filter-item .btn-cancel2 {
    background: none !important;
    box-shadow: none !important;
    border: 0;
    color: var(--close-btn) !important;
    border-left: solid 1px #ccc;
    font-size: 18px;
    padding-right: 0px;
}

.filter-panel .filter-item .btn-cancel:hover,
.filter-panel .filter-item .btn-cancel2:hover{
    border: 0;
    box-shadow: none;
    border-left: solid 1px #ccc;
}


.filter-panel .filter-item .btn-cancel.inactive,
.filter-panel .filter-item .btn-cancel2.inactive{
    color: var(--close-btn-inactive) !important;
    cursor: default;
}

.filter-panel .filter-item .filter-input-div {
    display: inline-block;
    width: calc(100% - 35px);
}

.filter-panel .filter-item .filter-input-div2 {
    display: inline-block;
    width: calc(100% - 80px);
}


.filter-panel .filter-item input {
    width: 100%;
    border: none;
    line-height: unset;
}

.btn-radio-user {
    background: none !important;
    box-shadow: none !important;
    border: 0;
    color: var(--close-btn) !important;
    border-left: solid 1px #ccc; !important;
    font-size: 18px;
    padding-right: 1px;
    padding-left: 1px;
}

.btn-radio-user:hover,
.btn-radio-user.disabled{
    opacity: unset;
    border: 0;
    box-shadow: none;
    border-left: solid 1px #ccc;
}

.btn-radio-user.disabled {
    cursor: default;
}



.btn-radio-user .fas {
    padding: 3px 4px;
    /*border: 1px solid gray;*/
    /*border-radius: 3px;*/
}

.btn-radio-user.selected .fas {
    padding: 3px 4px;
    border: 1px solid gray;
    border-radius: 3px;
    background-color: #9C9A9C; /*#7B797B;*/
    color: white;
}


select.COVID_TEST_TYPE {
    background-color: var(--color1_hover);
}

.button_id_0 {
    background-color: #008000;
}

.button_id_1 {
    background-color: #E31E24;
}

.button_id_2 {
    background-color: #DDAC00;
}

.result_buttons .active {
    border: 2px solid var(--black);
}

table.list tbody tr.active_event td {
    background-color: var(--test_active);
}

table.list tbody tr.expired_event td {
    background-color: var(--test_expired);
}

#testing {
    overflow-x: auto;
}

#testing .result_buttons {
    display: inline-block;
    min-width: 310px;
}

#testing table tr td {
    min-width: 150px;
}

tr.enumresult_7000410000000002101 td { /* pozitivni */
    font-weight: bold;
    color: red;
}

.table_testing_popup {
    width: 100%;
    padding: 15px 5px;
}

.table_testing_popup tbody tr td {
    padding: 8px 0px;
    color: var(--color_text);
}

.table_testing_popup tbody tr td:first-child {
    width: 40%;
}

.table_testing_popup tbody tr td:last-child {
    width: 60%;
}

.table_testing_popup tbody tr td:last-child input {
    width: 100%;
    color: var(--color_text);
}

.testing_event_print {
    border: solid 1px var(--color_body_back);
}

.testing_event_print td {
    color: var(--color_text);
}

table.testing_event_print.list thead tr th {
    background: transparent;
    color: var(--color_text);
    font-weight: bold;
    font-size: 110%;
}

.testing_event_print_bg {
    width: 440px;
}

.testing_event_print_bg .logo_head {
    margin: 12px;
    margin-bottom: 20px;
    text-align: left;
}

.ui-dialog[aria-describedby="testing_popup"] .ui-button.test_send_email::before {
    content: "\f0e0";
    font-family: 'FontAwesome';
    margin-right: 5px;
}

.ui-dialog[aria-describedby="testing_popup"] .ui-button.test_print::before {
    content: "\f02f";
    font-family: 'FontAwesome';
    margin-right: 5px;
}

/* TEST - END */

/* USERS */
.admin_edit tr.FIRST_NAME, .admin_edit tr.CODE, .admin_edit tr.INSURANCE_CODE, .admin_edit tr.EMAIL {
    display: inline-block;
    width: calc(50% - 20px);
    margin-right: 20px;
}

.admin_edit tr.LAST_NAME, .admin_edit tr.SECTION, .admin_edit tr.INSURANCE_NUMBER, .admin_edit tr.PHONE {
    display: inline-block;
    width: 50%;
}

/* DIALOG */
.ui-dialog {
    padding: 0px;
}

.ui-widget-content {
    border: none;
}

.ui-dialog .ui-dialog-titlebar-close {
    right: .6em;
}

.ui-draggable .ui-dialog-titlebar {
    border: none;
    border-radius: 0px;
}

.ui-dialog .ui-dialog-title {
    font-weight: normal;
    padding: 5px 0px;
}

.ui-widget-header {
    background: var(--color1);
    color: var(--color1_text);
}

.ui-button {
    border: 1px solid var(--color1);
    background: var(--color1);
    color: var(--color1_text);
    outline: none;
}

.ui-dialog .ui-dialog-buttonpane button {
    margin-left: 15px;
}

.ui-widget-overlay {
    opacity: .6;
}

.ui-button.ui-button-icon-only {
    background: var(--color1_text);
}

/* CREDIT */
.credit_block .button i {
    font-size: 20px;
    margin-right: 5px;
}

/* DOMAIN */
.domain_detail tr.ZIP_CODE {
    width: calc(40% - 20px);
    display: inline-block;
    margin-right: 20px;
}

.domain_detail tr.CITY {
    width: 60%;
    display: inline-block;
}

.domain_detail tr.PREFIX, .domain_detail tr.SUFFIX {
    width: 20%;
    display: inline-block;
    vertical-align: middle;
}

.domain_detail tr.ACCOUNT {
    width: calc(60% - 60px);
    display: inline-block;
    vertical-align: middle;
}

.domain_detail tr.BANK_CHAR {
    width: 30px;
    display: inline-block;
    vertical-align: middle;
}

.domain_detail tr.BANK_CHAR td {
    margin-top: 10px;
    text-align: center;
}

/* Availability */
.form_box_content.employeesImport {
    background-color: var(--table_thead_color);
    padding: 30px;
    width: calc(100% - 60px);
    font-size: 14px;
}

.form_box_content.employeesImport label {
    display: block;
    text-transform: uppercase;
    margin-bottom: 10px;
    font-size: 16px;
}

.form_box_content.employeesImport .line {
    background-color: #f6f6f6;
    padding: 25px;
    margin-bottom: 0px;
}

.form_box_content.employeesImport .line .row_splitter {
    margin-bottom: 20px;
    margin-top: 20px;
}

.form_box_content.employeesImport .splitter {
    padding: 8px;
    text-align: center;
    text-transform: uppercase;
    color: #85878a;
    position: relative;
}

.form_box_content.employeesImport .splitter::before {
    content: "";
    position: absolute;
    left: 0px;
    width: calc(50% - 30px);
    height: 1px;
    background-color: #c2c3c4;
    top: 50%;
}

.form_box_content.employeesImport .splitter::after {
    content: "";
    position: absolute;
    right: 0px;
    width: calc(50% - 30px);
    height: 1px;
    background-color: #c2c3c4;
    top: 50%;
}

.form_box_content.employeesImport .box_left {
    padding-right: 20px;
}

.form_box_content.employeesImport .label2 {
    margin-right: 20px;
}

.form_box_content.employeesImport .buttons {
    text-align: left;
}

.form_box_content.employeesImport select {
    min-width: 150px;
}

.form_box_content.employeesImport .inputfile_label, .form_box_content.employeesImport #inputfile_button {
    display: none;
}

.form_box_content.employeesImport .employee_template {
    padding-top: 5px;
}

.tbl_employeesImport {
    padding: 30px;
    background-color: #f6f6f6;
    font-size: 14px;
    margin-bottom: 50px;
}

.tbl_employeesImport thead td, .tbl_employeesImport th {
    background-color: transparent;
    font-weight: normal;
    padding: 5px 10px;
}

.tbl_employeesImport .overeni_dostupnosti_th_nazev {
    width: 30%;
}

.tbl_employeesImport tbody tr {
    background-color: var(--table_thead_color);
}

.tbl_employeesImport tr td {
    padding: 5px 10px;
}

.tbl_employeesImport .basket_form_table .td_1 {
    display: none;
}

.tbl_employeesImport .overeni_dostupnosti_td_kod, .tbl_employeesImport .overeni_dostupnosti_th_kod {
    text-align: left;
}

.tbl_employeesImport .overeni_dostupnosti_th_cena, .tbl_employeesImport .overeni_dostupnosti_td_cena {
    text-align: right;
}

.tbl_employeesImport table.basket_form_table {
    margin: 0px;
}

.tbl_employeesImport table.basket_form_table tr {
    justify-content: flex-end;
}

.tbl_employeesImport table.basket_form_table td {
    border: 0px;
}

.tbl_employeesImport .import_skladem .overeni_dostupnosti_td_pozadovano, .tbl_employeesImport .import_skladem .overeni_dostupnosti_td_dostupnost {
    color: var(--add);
}

.tbl_employeesImport .import_skladem_mene .overeni_dostupnosti_td_pozadovano, .tbl_employeesImport .import_skladem_mene .overeni_dostupnosti_td_dostupnost {
    color: #f8a24a;
}

.tbl_employeesImport .import_neni_skladem .overeni_dostupnosti_td_pozadovano, .tbl_employeesImport .import_neni_skladem .overeni_dostupnosti_td_dostupnost {
    color: var(--delete);
}

.employeesImport_buttons {
    text-align: right;
}

/* LIST */
.new_list_container {
    background: var(--color1_text);
    margin-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
    padding-top: 25px;
    border-top: solid 5px var(--color1);
    border-radius: var(--border-rad2);
}

.new_list_container tr:nth-child(even) td {
    background: lightgrey;
}

.cur_hand {
    cursor: pointer;
    font-size: 18px;
}

.info {
    font-size: 80%;
    font-style: italic;
    color: grey;
    display: flex;
    padding: 2px
}

.info:before {
    /*
    content: "\f05a";
    font-family: FontAwesome;
    */
    font-size: 130%;
    margin-right: 4px;
    display: inline-block;
    font-style: normal
}

/* RESPORT */
form.report input[type="text"], form.report input[type="number"], form.report input[type="date"], form.report select {
    width: 100%;
}

/* OTHERS */
#ERROR_INFO, #LOGIN_EXISTS, #LOGIN_EXISTS_ORG {
    color: var(--delete);
}


/* GALLERY */
.lg-outer .lg-img-wrap, .lg-outer {
    background: #fff
}

.lg-toolbar .lg-icon, #lg-counter, .lg-outer .lg-toogle-thumb {
    color: white;
}

.lg-toolbar, .lg-sub-html {
    background-color: #71b0e6f5;
}

.lg-actions .lg-next, .lg-actions .lg-prev {
    background-color: #71b0e6f5;
    color: white;
}

.lg-outer .lg-thumb-outer {
    background-color: #71b0e6f5
}

.lg-outer .lg-thumb-outer.lg-grab .lg-thumb-item {
    display: flex;
}

.lg-toolbar.lg-group .button, .lg-toolbar.lg-group button, .lg-toolbar.lg-group input[type="button"], .lg-toolbar.lg-group input[type="submit"], .lg-outer .lg-toogle-thumb {
    background-color: #71b0e6f5
}

/* ALERTS */
.alert-edit .alert-conf-attach h2,
.alert-edit .alert-conf-sql h2,
.alert-edit .alert-conf-detail h2{
    margin-top: 15px;
}

.alert-edit .admin_edit.ALERT,
.alert-edit .admin_edit.ALERT_DETAIL {
    max-width: 100%;
}

.admin_edit.ALERT .form_table input[type=text],
.admin_edit.ALERT .form_table input[type=email] {
    max-width: 400px;
}

.admin_edit.ALERT .form_table input[type=number] {
    max-width: fit-content;
}

.admin_edit.ALERT .form_table select {
    width: auto;
}
.admin_edit.ALERT tr.EMAIL {
    width: 400px;
}
.ALERT-edit .admin_vypis {
    margin-bottom: 30px;
}

.ALERT input[readonly],
.ALERT_DETAIL input[readonly] {
    background-color: #f1f1f1;
    color: gray;
}

.admin_edit.ALERT .form_table tr.TEXT td.label {
    display: none;
}

.admin_edit.ALERT .form_table tr.TEXT  {
    margin-top: 20px;
}

.alert-edit .admin_edit.ALERT .form_table tr.TEXT td.input,
.alert-edit .admin_edit.ALERT_DETAIL .form_table tr.TEXT td.input {
    display: flex;
    flex-wrap: wrap;
}
.alert-edit .admin_edit.ALERT .form_table tr.TEXT td.input .editor_bg,
.alert-edit .admin_edit.ALERT_DETAIL .form_table tr.TEXT td.input .editor_bg {
    width: 70%;
}
.alert-edit .admin_edit.ALERT .form_table tr.TEXT td.input .promenne,
.alert-edit .admin_edit.ALERT_DETAIL .form_table tr.TEXT td.input .promenne {
    width: 20%;
    margin-left: 10px;
}

.admin_edit.ALERT_SQL .form_table tr.SQL td.input .editor_bg textarea {
    width: 100%;
}
/* END ALERTS */


/* RESP */
@media only screen and (max-width: 1700px) {
    body {
        overflow-x: hidden;
    }

    .back_img {
        left: 42vw;
    }
}

@media only screen and (max-width: 1550px) {
    .web_buttons .popup_video {
        display: block;
        margin: 8px 0px auto auto;
    }
}

@media only screen and (max-width: 1400px) {
    /* TEST */
    #testing table, #testing table thead, #testing table tbody {
        display: block;
    }

    #testing tr {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        border: solid 1px #8080801a;
    }

    #testing thead tr th, #testing tbody tr td {
        padding: 8px;
        border-bottom: 0px;
    }

    #testing table .id_number {
        width: 30%;
        order: 1;
    }

    #testing table .name {
        width: 40%;
        order: 2;
    }

    #testing table .state_till {
        width: 30%;
        order: 3;
    }

    #testing table .test_type {
        width: 30%;
        order: 4;
    }

    #testing table select.COVID_TEST_TYPE, #testing table input.EMP_EVENT_DATE_TO {
        width: 100%;
    }

    #testing table .test_result {
        width: 70%;
        order: 5;
    }

    #testing table .result_till {
        width: 30%;
        order: 6;
    }

    #testing table .name {
        font-weight: bold;
    }
}

@media only screen and (max-width: 1080px) {
    .web_buttons .buttons_head {
        position: inherit;
        text-align: center;
    }

    .web_text .block_1 {
        margin: 10px 0px;
    }

    header .menu_icon {
        display: inline-block;
    }

    #web_menu {
        display: none;
    }

    header .menu#web_menu {
        text-align: center;
    }

    header .menu#web_menu li {
        display: block;
        border: none;
        width: 100%;
        margin-bottom: 5px;
    }

    header .menu#web_menu li a {
        font-size: 22px;
    }

    .app_main #menu {
        position: fixed;
        left: 0px;
        top: 0px;
        bottom: 0px;
        background-color: var(--white);
        z-index: 10;
        padding-right: 15px;
        box-shadow: 2px 0px 5px #0000001a;
        display: none;
    }

    .app_main #content {
        width: 100%;
    }

    .web_buttons .popup_video {
        display: inline-block;
    }

    footer.web_footer {
        position: inherit;
        transform: none;
    }

    body {
        overflow-x: inherit;
    }

    .back_img {
        display: none;
    }
}

@media only screen and (max-width: 824px) {
    header .header_user_name {
        display: none;
    }

    #testing table .name {
        width: 50%;
        order: 1;
    }

    #testing table .id_number {
        width: 50%;
        order: 2;
        text-align: right;
    }

    #testing table .state_till {
        width: 50%;
        order: 3;
    }

    #testing table .test_type {
        width: 50%;
        order: 4;
        text-align: right;
    }

    #testing table .result_till {
        width: 50%;
        order: 5;
        text-align: right;
    }

    #testing table .test_result {
        width: 100%;
        order: 6;
    }

    .web_text iframe {
        width: 100% !important;
    }

    header .header_text h2 {
        font-size: 16px;
    }
}

@media only screen and (max-width: 600px) {
    .logo_head .logo_icon img {
        max-width: 30px;
    }

    .logo_head .logo_label {
        font-size: 40px;
        line-height: 30px;
    }

    .logo_head .logo_text {
        font-size: 15.5px;
    }

    .web_buttons {
        text-align: center;
    }

    .admin_vypis {
        overflow-x: auto;
    }

    footer.web_footer {
        text-align: center;
    }

    header .header_text {
        display: none;
    }
}

@media only screen and (max-width: 450px) {
    /* TEST */
    #testing table .state_till span {
        display: block;
    }
}

#amount_min {
    font-size: small;
    margin-top: 10px;
}


.pageSelected {
    background-color: var(--color1_hover);
}

.message_ok{
    text-align: center;
    border: 5px solid green;
    padding: 10px;
    margin: 10px;
}

.message_error{
    text-align: center;
    border: 5px solid red;
    padding: 10px;
    margin: 10px;
}

/*firebook*/

.firebook-edit {
    margin-bottom: 2rem;
    /*max-width: 600px;*/
}

.firebook-edit .form_content {
    padding: 30px 20px;
}

@media only screen and (max-width: 824px) {
    .firebook-edit .form_content {
        padding: 10px 5px;
    }
}

.img-del-btn {
    font-size: 14px;
    background-color: var(--delete);
    height: 25px;
    width: 35px;
    padding: 0 0 0 0;
}

.img-del-btn:hover {
    background-color: var(--delete);
    opacity: 0.5;
}

.img-del-btn fa {
    font-size: 13px;
}

.img-edit-btn {
    font-size: 14px;
    background-color: var(--edit);
    height: 25px;
    width: 35px;
    padding: 0 0 0 0;
}

.img-edit-btn:hover {
    background-color: var(--edit);
    opacity: 0.5;
}

.img-edit-btn fa {
    font-size: 13px;
}


.img-content {
    border: 1px solid #CECFCE;
    border-radius: 5px;
    height: 300px;
    margin-bottom: 10px;
}

.upload_img, .file_img {
    display: none;
}

.upload_drop_zone {
    border: 2px dashed #ccc;
    padding: 5px 5px;
    color: #ccc;
}

.upload_drop_zone_title {
    margin-left: 10px;
}

@media only screen and (max-width: 600px) {
    .upload_drop_zone {
        border: 0px;
        padding: 0px 0px;
    }

    .upload_drop_zone_title {
        display: none;
    }
}

.upload_drop_zone.is-dragover {
    background-color: #e6ecef;
}

.att-file-row {
    max-height: 300px;
}

.att-file-icon {
    font-size: 72px;
    color: var(--color_text);
    padding: 20px 10px;
}

.att-file-title {
    font-size: 24px;
    color: var(--color_text);
    padding: 0px 20px;
}

@media only screen and (max-width: 600px) {
    .att-file-title {
        font-size: 18px;
    }
}

.img-content .att-file-dwn {
    position: absolute;
    bottom: 30px;
}

.att-file-dwn .button:hover {
    color: var(--white);
}

.upload_button_outer {transition: .1s !important; position: relative; overflow: hidden;}
.file_uploading {border-radius: 5px; width: 100%; height: 10px; margin-top: 15px; background: #ccc;}
.processing_bar {position: absolute; left: 0; top: 0; width: 0; height: 10px; border-radius: 30px; background:var(--color1); transition: 1500ms !important;}
.file_uploading .processing_bar {width: 100%;}

.top-save-btn {
/*    display: none;*/
}

@media only screen and (max-width: 824px) {
    .top-save-btn {
        display: unset;
    }
}

/*jGrowl*/
div.jGrowl {
    z-index: 10001; /*nad loaderem*/
}

.msg-bg-green {
    background-color: #2ecc71;
    color: #fff;
    border-color: #29b765;
}

.msg-bg-red {
    color: #fff;
    border-color: #cf4436;
    background: #e74c3c;
}

.note-div {
    border: 1px solid var(--border-color);
    border-radius: var(--border-rad);
    padding: 5px;
}

.autor-label {
    font-size: 15px;
}

.autor-label-img {
    font-size: 13px;
}

.desc-label-img {
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
}

.desc-label-img:hover {
    opacity: 0.5;
}


@media only screen and (max-width: 824px) {
    .hide-mobile {
        display: none;
    }
}

.fb-table-td, .fb-hist-table-td, .edit-table-td {
    cursor: pointer;
}

/*sidabar*/
#sidebar p {
    font-size: 12px;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    color: var(--color_text);
    font-weight: bold;
    padding: 15px 5px 5px 10px;
    margin: 0 0 0 0;
}

#sidebar a,
#sidebar a:hover,
#sidebar a:focus {
    color: var(--color_text);
    text-decoration: none;
    transition: all 0.3s;
}

#sidebar {
    min-width: var(--sidewidth);
    max-width: var(--sidewidth);
    padding: 0px 0px 0px 0px;

    /*width: var(--sidewidth);
    position: fixed;
    left: 0;
    height: 100vh;
    z-index: 999;*/
    background: var(--white);
    color: var(--color_text);
    transition: all 0.3s;
}

#sidebar hr {
    display: none;
}


#sidebar .menu-text {
    display: table-cell;
    vertical-align: middle;
}


#sidebar ul.components {
    padding: 10px 0;
    /*border-bottom: 1px solid var(--color1);*/
}

#sidebar ul {
    color: var(--color_text);
    padding: 0px 0px;
}

#sidebar li {
    padding-right: 5px;
    font-size: 15px;
}

#sidebar ul li a {
    padding: 5px;
    font-size: 1.1em;
    display: block;
}

#sidebar ul li a:hover {
    color: var(--white);
    background: var(--color1);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    /*transition-property: none;*/
}

#sidebar ul li.active>a {
    color: var(--white);
    background: var(--color1);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    /*transition-property: none;*/
}


a[aria-expanded="true"] {
    color: var(--white);
    /*background: var(--color1);*/
}


#sidebar a[data-toggle="collapse"] {
    position: relative;
}

#sidebar .dropdown-toggle {
    white-space: normal;
    /*color: var(--white);*/
}


#sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

#sidebar ul ul a {
    font-size: 0.9em !important;
    padding-left: 15px !important;
    background: var(--white);
}

#sidebar ul ul ul a {
    font-size: 0.89em !important;
    padding-left: 15px !important;
    background: var(--white);
}

#sidebar ul.CTAs {
    padding: 20px;
}

#sidebar ul.CTAs a {
    text-align: center;
    font-size: 0.9em !important;
    display: block;
    border-radius: 5px;
    margin-bottom: 5px;
}

#sidebar .sidebar-header {
    padding: 0px 15px 0px 10px;
    color: var(--color1);
    background: var(--white);
}

#sidebar .sidebar-header .label {
    font-size: 11px;
    text-decoration: none;
    /*text-transform: uppercase;*/
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--color_text);
}

#sidebar .logo img {
    max-width: 80px;
}

#sidebar .icon {
    font-size: 24px;
    display: inline-block;
    min-width: 25px;
    text-align: center;
    margin-left: 10px;
    margin-right: 16px;
    vertical-align: middle;
}

.menu-section .icon {
    font-size: 24px;
}

.not-purchased-modul div {
    /*font-style: italic;*/
}

.not-purchased-modul .icon {
    opacity: 0.2 !important;
}


.menu-submenu .icon {
    font-size: 18px !important;
    opacity: 0.6;
}

.menu-submenu2 .icon {
    font-size: 16px !important;
    opacity: 0.4;
}


/* pro mobil - zmenseny sidebar*/
@media (max-width: 768px) {
    #sidebar {
        margin-left: var(--sidewidthminus);
    }
    #sidebar.active {
        margin-left: 0;
    }
    #content {
        width: 100%;
    }
    #content.active {
        width: calc(100% - var(--sidewidth));
    }
    #sidebarCollapse span {
        display: none;
    }

}

/*pro PC - zmenseny sidebar*/
@media (min-width: 769px) {
    #sidebar.active {
        min-width: var(--sidewidth2);
        max-width: var(--sidewidth2);
        /*    margin-left: var(--sidewidthminus);*/
    }

    #sidebar.active .sidebar-header .logo,
    #sidebar.active p {
        display: none;
    }

    #sidebar.active li {
        padding-right: 0px;
    }

    #sidebar.active .menu-text {
        display: none;
    }

    #sidebar.active hr {
        margin: 0px 0px;
        display: block;
    }
    #sidebar.active ul ul a {
        padding-left: 5px !important;
    }

}


#content-hide-panel {
    display: none;
    left: var(--sidewidth);
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.br-mobile {
    display: none;
}

@media (max-width: 768px) {
    .br-mobile {
        display: unset;
    }
}

.table-title-sort,
.table-title-sort:hover {
    color: var(--color1_text);
}

.pull-right {
    float: right;
}
.pull-left {
    float: left;
}

.title2 {
    font-size: var(--title2_font_size);
}

.user-notice_icon {
    color: var(--color_text);
}

/*docList*/
.content-block-main {
    margin: 0px 0px;
    margin-top: 3px;
}

.content-block-title {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 10px 10px 10px 10px;
    border-top: solid 5px var(--color1);
    background-color: var(--block-title-back);
    color: var(--block-title-color);
}

.content-block-title button {
    padding: 5px 10px;
}

.content-block-title button:hover {
    background-color: var(--color1);
}

.content-block-title .btn-title {
    font-size: 14px;
}

.content-block-title .btn-upload {
    min-width: 130px;
}

@media only screen and (max-width: 824px) {
    .content-block-title .btn-title,
    .content-block-data .content-drop-text {
        display: none;
    }
    .content-block-title .btn-upload {
        min-width: unset;
    }
}

.content-block-data .content-drop-text {
    color: #ccc;
    margin: 0px 5px 10px 5px;
    text-align: center;
    font-size: 15px;
}

.content-block-data.is-dragover {
    background-color: #e6ecef;
}


.content-block-data {
    background-color: var(--color1_text);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /*padding: 10px 10px 10px 10px;*/
    margin-bottom: 2rem;
    padding-top: 10px;
}

.doc-content {
    border: 1px solid #CECFCE;
    border-radius: 5px;
    height: 180px;
}

.doc-row-file {
    height: 100%;
    margin: 0 0 0 0;
}

.doc-file-icon {
    font-size: 72px;
    color: var(--color_text);
    padding: 20px 0px 0px 0px;
    width: 100px;
}

.doc-file-title {
    font-size: 22px;
    color: var(--color_text);
    /*padding-left: 20px;*/
    padding-top: 25px;
    text-align: left;
}

.doc-file-title a {
    color: var(--color_text);
}

@media only screen and (max-width: 600px) {
    .doc-file-title {
        font-size: 18px;
    }
}

.content-block-cnt {
    display: none;
}

.cursor-pointer {
    cursor: pointer !important;
}

@media (min-width: 768px) {
    .only-mobile {
        display: none !important;
    }

}
@media (max-width: 767px) {
    .only-desktop {
        display: none;
    }
    .only-desktop-imp {
        display: none !important;
    }
}

.link-icon {
    margin-left: 10px;
    font-size: 12px;
}

.eventtype-icon {
    width: 25px;
    text-align: center;
    display: inline-block;
    /*font-size: 16px;*/
}

.event1_color {
    color: var(--event1);
}

.event2_color {
    color: var(--event2);
}

.event3_color {
    color: var(--event3);
}


.role-edit-btn {
    color: var(--color1_text) !important;
}

.role-table .role-td-check {
    text-align: center;
    vertical-align: top;
}

@media (min-width: 768px) {
    .role-table .role-td-check {
        width: 100px;
    }
}

@media (max-width: 767px) {
    .role-form.form_content {
        padding: 20px;
        margin-bottom: 1rem;
    }
}

.role-edit-btn {
    padding: 4px 13px;
    font-weight: normal;
}

.role-table .role-td-label {
    vertical-align: top;
}

.role-table .role-desc {
    font-size: 14px;
}

.role-table .checkbox {
    margin-bottom: 0px;
    margin-top: 10px;
}

.role-table input {
    margin-top: 10px;
}


.role-table .role-row {
    /*height: 50px;*/
}

.list .user-shield-btn:hover {
    color: var(--color1);
    opacity: 0.5;
}

.role-table.list tbody tr td {
     padding: 0px;
     border-bottom: none;
}

.role-row .perm-role-user-icon {
    margin-left: 5px;
    color: silver;
    display: inline-block;
    height: 100%;
    vertical-align: text-bottom;
    opacity: 0.5;
}

.color1 {
    color: var(--color1);
}

.right-descrition {
    font-size: 14px;
}

.check-permission {
    border-radius: 50% !important;
}

/*radio buttony*/
.radio-btn-group {
    display: inline-block;
}

.radio-btn-group .btn {
    border: 1px solid silver;
}

/*------------*/

.event-notify-panel {
    width: 100%;
    margin-bottom: 10px;
    padding-left: 10px;
}

.event-notify-panel.active {
    background-color: #FCE8E6;
}


.e-notify-panel-detail {
    display: inline-block;
    width: 100%;
}

.e-notify-panel-set0 {
    display: inline-block;
}

.e-notify-panel-set1, .e-notify-panel-set2 {
    display: inline-block;
}

.e-notify-panel-icon {
    font-size: 20px;
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    padding-right: 8px;
}

.e-notify-panel-delete, .e-notify-panel-settings {
    font-size: 20px;
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    padding-left: 10px;
    cursor: pointer;
}

.e-notify-panel-settings {
    padding-left: 5px;
}

@media (min-width: 1500px) {
    .e-notify-panel-settings1 {
        padding-left: 50px;
    }
}

@media (min-width: 1200px) {
    .e-notify-panel-settings2 {
        padding-left: 0px;
    }
}

@media (max-width: 1200px) {
    .e-notify-panel-settings2 {
        padding-left: 15px;
    }
}


.e-notify-panel-date {
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    padding-left: 10px;
}

.event-notify-data {
    padding: 10px 2px 10px 2px;
}

.event-repeat-data {
    padding: 10px 10px;
}

.event-repeat-set, .plan-repeat-set {
    margin: 10px 5px;
}

.event-repeat-set td:first-child,
.plan-repeat-set td:first-child {
    padding-left: 40px;
}

.event-repeat-set td,
.plan-repeat-set td {
    padding-top: 5px;
}

@media (max-width: 767px) {
    .event-repeat-set td:first-child,
    .plan-repeat-set td:first-child {
        padding-left: 0px;
    }
}

@media (min-width: 768px) {
    .event-repeat-set td,
    .plan-repeat-set td {
        padding-left: 5px;
    }
}


.select-input-picker2 .bootstrap-select {
    margin-top: -2px;
}


.nowrap {
    white-space: nowrap;
}

.e-notify-header {
    padding: 5px 15px;
}

.e-notify-header button {
    padding: 6px 12px;
}

.e-notify-header .e-notify-title {
    display: inline-block;
    padding-top: inherit;
}

.button-desktop-200 {
    width: 200px;
}

@media (max-width: 767px) {
    .button-desktop-200 {
        width: unset;
    }
}

.plus-btn {
    font-size: 14px;
    height: 25px;
    width: 22px;
    cursor: pointer;
}

.plus-btn:hover {
    opacity: 0.5;
}

.notice-navigate-btn {
    font-size: 16px;
    padding: 0px 5px;
    cursor: pointer;
}

/*priority event*/
.priorita-cell label {
    /*padding: 5px 10px;*/
    padding: 1px 10px 1px 10px;
    background-color: #dcdcdc;
    width: 100%;
    border: solid 2px transparent;
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 4px;
    margin-top: 0px;
    position: relative;
    transform: translateY(4px);
    text-align: center;
}
.priorita-cell label.active {
    border: solid 2px black;
}
.priorita-cell label:hover {
    opacity: 0.7;
}

.priorita-cell label.nizka {
    background-color: #17b92b !important;
    color: white;
}
.priorita-cell label.stredni {
    background-color: #f0ad4e !important;
    color: white;
}
.priorita-cell label.vysoka {
    background-color: #cf3939 !important;
    color: white;
}
.priorita-cell input {
    position: absolute;
    visibility: hidden;
    width: 0px;
    height: 0px;
}
.priority-triangle10 {
    color: #17b92b !important;
}
.priority-triangle20 {
    color: #f0ad4e !important;
}
.priority-triangle30 {
    color: #cf3939 !important;
}

.event-priority-td {
    width: 90px !important;
    text-align: center !important;
}


.clona {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    z-index: 9;
}

.clona2 {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0px;
    top: 0px;
    /*background-color: grey;*/
    opacity: 0.05;
    z-index: 9;
}


.radek-sudy td {
    background-color: #FBFBFB !important;
}

.event-title-icon {
    margin-right: 10px;
}

@media (max-width: 767px) {
    .event-title-icon {
        margin-right: 2px;
    }
}

.color-black {
    color: var(--black) !important;
}

.loc_icon {
    font-size: 12px;
    color: var(--close-btn);
    cursor: default;
}

.img-intext-containter {
    position: relative;
    text-align: center;
    color: white;
}

.img-intext-containter .img-in-top-right {
    position: absolute;
    top: 8px;
    right: 16px;
    font-size: 14px;
}

.img-intext-containter .img-in-top-right.myshadow {
    position: absolute;
    top: 7px;
    right: 15px;
    color: var(--color_shadow);
}


.save-notetab-btn-group-class {

}

@media (max-width: 945px) {
    .save-notetab-btn-group-class {
        display: unset;
    }
    .save-notetab-btn-class {
        display: none;
    }
}

@media (min-width: 945px) {
    .save-notetab-btn-group-class {
        display: none;
    }
    .save-notetab-btn-class {
        display: unset;
    }
}

.bs-actionsbox .btn-light {
    border: 1px solid silver;
}

.bs-actionsbox .btn-group {
    margin-top: 3px;
}

.dropdown-item {
    padding-top: 5px;
    padding-bottom: 5px;
}


.rline {
    border-right: 1px solid var(--form-item-border);
}

.bline {
    border-bottom: 1px solid var(--form-item-border);
    padding-bottom: 10px;
}

.tline {
    border-top: 1px solid var(--form-item-border);
}

.tline2 {
    border-top: 2px solid var(--color1_hover);
}


.bpad {
    padding-bottom: 10px;
}

@media (max-width: 767px) {
    .bpad {
        padding-bottom: unset;
    }
    .rline {
        border-right: unset;
    }
}

.group-section {
    display: block;
    width: 100%;
    border: 1px solid var(--color_text);
    border-radius: var(--border-rad);
    font-size: 95%;
    padding: 10px 10px;
}

.group-section input {
    min-height: unset;
    margin-bottom: -3px;
}

.field-title {
    margin-top: 10px;
    font-weight: bold;
    color: var(--color_text);
}

.input-group.grp-btn input{
    border-top-right-radius: unset;
    border-bottom-right-radius: unset;
}

.line-through {
    text-decoration: line-through;
}

.disabled-color {
    color: var(--color_text);
}

.list .list-endbtn:hover {
    color: var(--color1);
    opacity: 0.5;
}

.module-td-label label {
    color: unset !important;
    background-color: unset !important;
}

.left-pnl {
    margin-right: 15px;
    color: var(--color_text);
    cursor: pointer;
}

.left-pnl-app {
    margin-right: 29px;
}

.left-pnl-none1 {
    margin-right: 45px;
}

.left-pnl-none2 {
    margin-right: 65px;
}


.logout-domain {
    color: white;
    margin-left: 10px;
    cursor: pointer;
    font-size: 16px;
}

.logout-domain:hover {
    color: white;
}

.table-file-panel {
    max-height: 80px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: white;
    max-width: 120px;
    text-align: center;
}

.table-file-panel .fas {
    font-size: 44px;
    color: var(--color_text);
    padding: 10px 10px;
}

.title-line {
    font-weight: bold;
    color: var(--color_text);
    width: 100%;
    /*text-align: left;*/
    padding-left: 20px;
    border-bottom: 1px solid var(--form-item-border);;
    line-height: 0.1em !important;
    margin: 20px 0 0px;
}

.title-line .fas{
    line-height: 0.1em !important;
}

.title-line span {
    background:#fff;
    padding:0 10px;
}

.color_text {
    color: var(--color_text);
}

.dash-sum .sum-content {
    min-height: 180px;
}

.updater-info-text {
    font-size: 22px;
    color: var(--edit);
}

.ok_color {
    color: var(--ok-color);
}

.table-history .tabh-btn-plus {
    text-align: center;
    cursor: pointer;
    color: var(--color_text);
}

.table-history .inactive {
    display: none;
}

.table-history td {
    vertical-align: top;
}

.table-history .description {
    font-size: 14px;
}

.table-history .hist-typ-desc {
    display: block;
    font-size: 14px;
}

.table-history .tabh-title-row {
    font-weight: bold;
    font-size: 14px;
}

.table-history .tabh-detail-title {
    white-space: nowrap;
}

.table-history.detail tr td:first-child {
    width: 300px;
}

.table-history.detail .fa-file-medical,
.icon-operation .fa-file-medical {
    color: var(--add);
}

.table-history.detail .fa-edit,
.icon-operation .fa-edit {
    color: var(--edit);
}

.table-history.detail .fa-trash,
.icon-operation .fa-trash {
    color: var(--delete);
}

.table-history.detail .fa-trash-restore,
.icon-operation .fa-trash-restore {
    color: darkgray;
}


.group_label_checkbox {
    width: 36px;
    text-align: center;
    padding-left: 5px;
    padding-right: 5px;
    margin-bottom: 0px;
}

.small_detail {
    font-size: 15px;
    color: var(--color_text);
}

.msg-table td {
    padding-top: 5px;
}

.tiny-div li,
.note-div li {
    margin-left: 20px;
    padding-left: 20px;
}

.row .ACTIVE_FIELD {
    margin-top: 20px;
}

/*
dialog
 */

.modal_dialog_class {
    border-radius: var(--border-rad);
}
.modal_dialog_class .ui-corner-all {
    border-top-right-radius: var(--border-rad);
    border-top-left-radius: var(--border-rad);
    border-bottom: 1px solid var(--color_text);
}

.modal_dialog_class .ui-dialog-titlebar-close {
    background: none !important;
    border: none !important;
    color: white;
}

.modal_dialog_class .ui-widget-header {
    background: var(--white);
    color: var(--color_text);
}

.modal_dialog_class .ui-dialog-title {
    font-weight: bold !important;

}

/*
lookup
 */

.lookup-head-table th {
    padding: 3px 5px;
    height: 34px;
    font-weight: bold;
    background-color: var(--table2_thead);
}

.lookup-head-table th:first-child {
    border-top-left-radius: var(--border-rad);
}

.lookup-head-table th:last-child {
    border-top-right-radius: var(--border-rad);
}


.lookup-table td {
    padding: 3px 5px;
    height: 34px;
    border-bottom: 1px solid var(--table2_line);
    cursor: pointer;
}

.lookup-table tr:nth-child(even) {
    background: var(--table2_odd);
}

.lookup-table tr.active {
    background: var(--table2_active_row_bck);
    color: var(--table2_active_row_color);
}

/*
TABLE2
 */
.table2 th {
    padding: 3px 5px;
    height: 34px;
    font-weight: bold;
    background-color: var(--table2_thead);
}

.table2 th:first-child {
    border-top-left-radius: var(--border-rad);
}

.table2 th:last-child {
    border-top-right-radius: var(--border-rad);
}


.table2 td {
    padding: 3px 5px;
    height: 34px;
    border-bottom: 1px solid var(--table2_line);
}

.table2 tr:nth-child(even) {
    background: var(--table2_odd);
}

.table2 tr.active {
    background: var(--table2_active_row_bck);
    color: var(--table2_active_row_color);
}

.lookup_dialog.stock_item_lookup .lookup-head-table th:nth-child(1),
.lookup_dialog.stock_item_lookup .lookup-table tr td:nth-child(1) {
    width: 15%;
}

.lookup_dialog.stock_item_lookup .lookup-head-table th:nth-child(2),
.lookup_dialog.stock_item_lookup .lookup-table tr td:nth-child(2) {
    width: 45%;
}

.lookup_dialog.stock_item_lookup .lookup-head-table th:nth-child(3),
.lookup_dialog.stock_item_lookup .lookup-table tr td:nth-child(3) {
    width: 30%;
}

.lookup_dialog.stock_item_lookup .lookup-head-table th:nth-child(4),
.lookup_dialog.stock_item_lookup .lookup-table tr td:nth-child(4) {
    width: 10%;
    text-align: right;
}

.bordered-btn-group button:nth-child(1){
    border: 1px solid var(--form-item-border2);
    border-top-left-radius: var(--border-rad) !important;
    border-bottom-left-radius: var(--border-rad) !important;
}

.bordered-btn-group button:nth-child(2){
    border: 1px solid var(--form-item-border2);
}

.bordered-btn-group button:nth-child(3){
    border: 1px solid var(--form-item-border2);
    border-top-right-radius: var(--border-rad) !important;
    border-bottom-right-radius: var(--border-rad) !important;
}

.bordered-btn-group button.inactive{
    color: var(--inactive_text);
}

#signature {
    color : darkblue;
    background-color: var(--signature_area);
    border: 1px gray dashed;
    border-radius: 5px;
}

.btn-bordered {
    border: 1px solid var(--button_border);
}

.sign-buttons_group {
    padding-top: 27px;
}

.sign-img-contents {
    border: 1px gray dashed;
    border-radius: 5px;
    height: 300px;
    width: 100%;
    text-align: center;
    vertical-align: middle;
}

.sign-img-contents img {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.group-item {
    font-size: 1rem;
    display: inline-block;
    border: solid 1px var(--color_text);
    border-radius: var(--border-rad);
    background-color: var(--white);
}

.group-item-input {
    display: inline-block;
}

.group-item-input input {
    border: none;
    line-height: unset;
}

.group-item-btn button {
    background: none !important;
    box-shadow: none !important;
    border: 0;
    color: var(--close-btn) !important;
    border-left: solid 1px #ccc;
    font-size: 18px;
    width: 32px;
}

.group-item-btn button:hover,
.group-item-btn button:focus,
.group-item-btn button:active {
    border: 0;
    box-shadow: none;
    border-left: solid 1px #ccc !important;
}

.group-item-btn button.inactive {
    color: var(--close-btn-inactive) !important;
    cursor: default;
}

.tableInv tr td {
    cursor: pointer;
}

.invoice-progress {
    border: 1px solid silver;
    border-radius: var(--border-rad);
    height: 100%;
    width: 100%;
    padding: 13px 10px;
}

.invoice-progress .processing_bar {
    background-color: var(--color1) !important;
}

.sending-rec-sent {
    font-size: 14px;
}

.button-tile {
    padding: 10px 0;
}

@media (max-width: 767px) {
    .button-tile {
        margin-top: 5px;
    }
}

.button-header {
    font-size: 17px;
    display: block;
    padding: 0 15px 10px 15px;
    text-align: left;
}

.button-line {
    display: block;
    border-bottom: 1px solid;
}

.button-data {
    font-size: 13px;
    display: block;
    padding: 10px 15px 0px 15px;
    text-align: left;
}

.button-data a {
    color: var(--white);
    text-decoration: underline;
}

.module_desc_right {
    float: right;
    margin: 0 15px;
}

.button-data p {
    margin-bottom: 0;
}

.price-card h6 {
    margin-top: 6px;
}

.price-card ul {
    margin-left: 20px;
}

.subs-table tbody tr td:first-child {
    padding: 10px 8px !important;
    padding-left: 20px !important;
}

.subs-table tbody tr th:nth-child(n+2),
.subs-table tbody tr td:nth-child(n+2) {
    white-space: nowrap;

}


.nopurchased-module {
    color: var(--inactive_text);
}

.button-small-A {
    color: var(--color1_text) !important;
    padding: 6px 13px;
    font-weight: normal;
}

.alert p {
    margin-bottom: unset;
}

.btn-subscribtion-user {
    margin-right: 470px;
}

@media (max-width: 767px) {
    .btn-subscribtion-user {
        margin-right: unset;
    }
}

.invoice-panel .button-header .fa-basket-shopping {
    margin-right: 10px;
}

.subs-invoice-dlg-checkbox-panel {
    font-size: 14px;
}

.subs-invoice-dlg-checkbox-panel .checkbox {
    height: 16px;
    width: 16px;
}

.subs-invoice-dlg-checkbox-panel .checkbox:checked::before {
    top: -4px;
    height: 16px;
    width: 16px;
    font-size: 12px;
}

.subs-invoice-dlg-checkbox-panel .subs-title {
    font-size: 10px;
    margin-left: 30px;
    margin-top: -10px;
}

.update-tab-content .tab-pane {
    padding-top: 20px;
}

.invoiced-row td {
    background-color: #EAEAEA !important;
}

.invoice-cancel {
    color: var(--black);
}

.invoice-delete {
    color: var(--delete);
}

.invoice-paid {
    color: var(--green);
    margin-right: 25px;
}

.invoiced-canceled-tr td {
    text-decoration: line-through;
}

.invoiced-paid-tr td {
    font-weight: bold;
}

invoiced-datedue-tr {
    font-weight: bold;
    color: var(--delete);
}

.admin_edit.NEURAL_NET .form_table input[type=text],
.admin_edit.NEURAL_NET_VALUE .form_table input[type=text] {
    max-width: 400px;
}

.admin_edit.NEURAL_NET .form_table input[type=number],
.admin_edit.NEURAL_NET_VALUE .form_table input[type=number] {
    max-width: fit-content;
}

.admin_edit.NEURAL_NET .form_table select,
.admin_edit.NEURAL_NET_VALUE .form_table select {
    width: auto;
}

.desc-fa-icon {
    display: inline-block;
    width: 25px;
    /*color: #46DE79;*/
    color : #009ADE;
}

/* dotaznik */
.quest.ui-sortable {
    background: white;
}

#qitem-container .quest {
    border: 1px solid var(--table2_line);
    border-top: 4px solid var(--color1);
    border-radius: var(--border-rad);
    margin: 10px 10px;
    padding: 0px 10px 10px 10px;
    background: white;
}

#qitem-container .quest.error {
    border: 1px solid var(--delete);
    border-top: 4px solid var(--delete);
}


.quest .qitem-number {
    color: var(--close-btn-inactive);
    position: absolute;
    top: 0px;
    left: -9px;
}

.quest .qitem-btn {
    position: absolute;
    top: 1px;
}

.quest .qitem-del-btn {
    right: 1px;
}

.quest .qitem-move-btn {
    right: 45px;
    cursor: move;
}

.quest .qitem-add-btn {
    right: 93px;
}

.quest .qitem-title {
    font-weight: bold;
}

/*zobrazeni dotzniku */
.quest-view {
    background: white;
}

.qitem-view-number {
    color: var(--close-btn-inactive);
    font-size: 14px;
}

.quest-navbar {
    background: var(--color1);
}

.quest-navbar .button {
    border: 1px solid;
    background: var(--color1_text);
    color: var(--color1);
}

.quest-navbar .button:hover {
    background: var(--color1_hover);
    color: var(--color1);
}

.qitems-container {
    display: grid;
    grid-template-columns: max-content 1fr;
    grid-gap: 5px;
    width: 100%;
    padding-top: 3px;
    padding-bottom: 3px;
}

.qitems-container > div {
    padding: 0px 5px;
}

.qitem-another-answer input {
    min-height: 36px;
    margin-top: -5px;
}

.qsave-icon {
    display: inline-block;
    width: 20px;
    color: var(--color1_text);
    text-align: right;
}

.btn-cancel-state, .btn-cancel-user {
    cursor: pointer !important;
}

.quest-answer-value {
    background: var(--back-div-color);
    padding: 5px;
    margin: 5px 0px;
    border-radius: var(--border-rad);
}

.srollable-div {
    overflow: auto;
    max-height:400px;
}

.deleted-row td {
    color: silver;
    text-decoration: line-through;
}

.pay-sum-div {
    margin: 8px 5px;
}

.left-align-btn {
    float: left !important;
}

.dropdown-item .mdi {
    font-size: 20px;
}

.logo-sm img {
    width: 35px;
}

.leftmenu-item-icon {
    margin-right: 5px;
}

.main-theme-hyper .form_content,
.main-theme-hyper .box-back_content {
    border-top: unset;
    box-shadow: var(--ct-box-shadow);
    background-color: var(--ct-card-bg);
}

.main-theme-hyper.app_main #content {
    width: 100%;
    transition: all 0.3s;
}

.main-theme-hyper.app_main.logined #content {
    padding: 20px 0px 20px 0px;
}

.main-theme-hyper .page-item {
    cursor: pointer;
}

.main-theme-hyper textarea {
    padding: 10px;
}

.auth-fluid {
    background-image: url(../../img/login2.webp);
}

/*billing*/
.billing-toggle {
    position: relative;
    background-color: #f4f7fe;
    border-radius: 50px;
    display: inline-flex;
    width: 380px;
    justify-content: space-between;
    overflow: hidden;
    padding: 0;
}

.slider-bg {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 50%;
    background-color: #536de6;
    border-radius: 50px;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 4px 10px rgba(108, 99, 255, 0.4); /* ← tady */
}

.billing-option {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    border: none;
    border-radius: 50px;
    padding: 8px 0;
    background: transparent;
    color: #6c757d;
    font-weight: 500;
    transition: color 0.3s ease;
}

.billing-option.active {
    color: white;
    font-weight: 600;
}


/* Nastaví všechny .card na stejnou výšku */
.plan-row .card-pricing {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Tělo karty vyplní celý prostor a umožní zarovnání obsahu */
.plan-row .card-pricing .card-body {
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Seznam vlastností roztáhne prostor mezi horní částí a tlačítkem */
.plan-row .card-pricing-features {
    flex-grow: 1;
}

/* Tlačítko zarovná dolů */
.plan-row .card-pricing .btn {
    margin-top: auto;
}

.plan-row .card-pricing .card-pricing-icon {
    margin: 0 auto;         /* zarovná do středu horizontálně */
    text-align: center;     /* zarovná obsah (ikonu) dovnitř */
}

.plan-row .card-pricing .card-pricing-price {
    padding: 0 0 0 0;
}

.plan-row .card-pricing .card-pricing-plan-name {
    padding-bottom: 0px; //20px;
}

.plan-row .card-pricing .card-pricing-features {
    padding: 0 0 0 0;
}

.plan-row .card-pricing .card-pricing-features li {
    padding: 8px;
}

.plan-row  .card-pricing .card-pricing-price2 span {
    font-size: 60%;
    color: var(--ct-secondary-color);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.plan-row  .card-pricing .card-pricing-price2{
    margin: 0px 0 20px 0;
}

.plan-row .price-panel {
    background: rgba(115, 255, 236, 0.18);
    margin: 5px 0 5px 0;
}

.bill-user-count {
    font-weight: bold;
}

.bill-user-count-panel button {
    font-size: 16px;
    font-weight: bold;
}

.bill-sum-panel {
    font-size: 17px;
}

.bill-sum-label {
    font-weight: bold;
}

.bill-sum-total, .bill-label {
    font-size: 20px;
    font-weight: bold;
}

.billing-content .form-check-label {
    margin-top: 2px;
    font-size: 17px;
}

.billing-content .buy-button {
    padding: 14px;
    width: 100%;
    font-size: 20px;
    margin-top: 75px;
}

.card-pricing-price .price-text2 {
    display: inline-block;
    font-size: 70%;
    margin-left: 20px;
}

.diagonal-strike {
    position: relative;
    display: inline-block;
}

.diagonal-strike::after {
    content: "";
    position: absolute;
    top: 40%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: red; /* Barva čáry */
    transform: rotate(-20deg); /* Úhel přeškrtnutí */
    transform-origin: center;
}

.job-log-icon {
    color: var(--green);
}