@font-face {
    font-family: Muli;
    src: url(../fonts/Muli.ttf);
}
@font-face {
    font-family: KlavikaRegular;
    src: url(../fonts/Klavika-Regular.otf);
}
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
    margin:0;
    padding:0;
    border:0;
    outline:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
}

article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

nav ul {
    list-style:none;
}

blockquote, q {
    quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
    content:'';
    content:none;
}

a {
    margin:0;
    padding:0;
    font-size:100%;
    vertical-align:baseline;
    background:transparent;
    color: #a14750;
    text-decoration: none;
}

/* change colours to suit your needs */
ins {
    background-color:#ff9;
    color:#000;
    text-decoration:none;
}
input, button, textarea, select{
    font-family: 'KlavikaRegular', sans-serif;
}
.NewMessageContent{
    width: 100%;
    height: 200px;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
    position: relative;
    margin-bottom: 200px;
}
td, th{
    border-top: 1px solid #555;
    padding: 5px;
    text-align: center;
    vertical-align: middle;
}
tr{
    transition: all 0.3s ease;
    position: relative;
}
tr:nth-child(odd), tr:hover{
    background: rgba(238, 238, 238, 0.1);
}
td:last-child{
    text-align: center;
}
.FastView{
    display: none;
}
tr:hover .FastView{
    display: block;
    position: absolute;
    background: #fff;
    padding: 10px;
    list-style: none;
    margin: 0;
    z-index: 9;
}
.HideIni{
    display: none;
}
.HidenImport{
    display: none;
}
/* change border colour to suit your needs */
hr {
    display:block;
    height:1px;
    border:0;   
    border-top:1px solid #cccccc;
    margin:1em 0;
    padding:0;
}

input, select {
    vertical-align:middle;
}
body{
    background: #20242e;
    font-family: 'KlavikaRegular', sans-serif;
    line-height: 1.5;
    font-size: 14px;
    overflow: hidden;
    color: #fefefe;
}
.btn{
    padding: 10px 15px;
    display: inline-block;
    vertical-align: middle;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 14px;
    margin: 5px;
    transition: all 0.5s ease;
    border: 0px;
    color: #fff;
    cursor: pointer;
}
.btn-white{
    background: transparent;
    color: #fff;
    border: 1px solid;
}
.btn-white:hover{
    background: #fff;
    color: #a14750;
}
.btn-regular{
    background: #20242e;
}
.btn-regular:hover{
    background: #a14750;
    color: #20242e;
}
.btn-regular.ActivePage{
    background: #a14750;
    color: #20242e;
}
.btn-danger{
    background: #ea2d4b;
}
.btn-danger:hover{
    color: #20242e;
}
.btn-confirm{
    background: #4fcd4f;
}
.btn-confirm:hover{
    background: #389f38;
}
.switch {
    position: relative;
    display: inline-block;
    width: 43px;
    height: 25px;
    vertical-align: middle;
    margin: 2px 5px;
}
.switchInverted {
    position: relative;
    display: inline-block;
    width: 43px;
    height: 25px;
    vertical-align: middle;
    margin: 2px 5px;
}

/* Hide default HTML checkbox */
.switch input {display:none;}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}
.switchInverted .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #a14750;
    -webkit-transition: .4s;
    transition: .4s;
}
.slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}
.switchInverted .slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}
.Spacer{
    display: block;
    text-align: center;
    font-size: 20px;
    border-top: 1px solid;
    border-bottom: 1px solid;
}
input:checked + .slider {
    background-color: #a14750;
}

input:focus + .slider {
    box-shadow: 0 0 1px #a14750;
}
.switchInverted input:checked + .slider {
    background-color: #ccc;
}
input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}
.switchInverted input:checked + .slider:before {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}
/* Rounded sliders */
.slider.round {
    border-radius: 25px;
    font-size: 13px;
    vertical-align: bottom;
    display: inline-block;
    width: auto;
    text-align: center;
}
.ZabranjenoZaKorisnika{
    font-size: 20px;
    text-align: center;
    padding: 50px 20px;
}
.slider.round:before {
    border-radius: 50%;
}
/* LOGIN ADMIN */
.LoginContentAdmin{
    display: block;
    position: absolute !important;
    top: 0;
    left: initial!important;
    right: 50px;
    height: 100%;
    width: 320px;
    text-align: center;
    background: #a14750;
    padding: 0 1%;
    box-sizing: border-box;
    z-index: 1;
    min-height: 630px;
}
.LoginVertical{
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    line-height: 100vh;
}
.LoginFormAdmin {
    line-height: 18px;
    width: 100%;
    display: inline-block;
    max-width: 298px;
    position: relative;
    padding: 10px 0;
    margin: 0 auto;
    border: 1px solid;
    vertical-align: middle;
}
.NazivSajtaAdmin{
    display: block;
    position: relative;
    max-width: 90%;
    margin: 30px auto;
    top: 0;
}
.LoginFormAdmin .form-field{
    display: block;
    border: 1px solid;
    width: 80%;
    margin: 10px auto;
    line-height: 0;
    font-size: 0;
}
.LoginFormAdmin .form-field span{
    display: inline-block;
    width: 30%;
    font-size: 14px;
    vertical-align: middle;
}
.LoginFormAdmin .form-field input{
    width: 70%;
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    padding: 5px 0;
}
.LoginFormAdmin input{
    border-radius: 0px!important;
    border: 0px!important;
}
.ProgramActions{
    display: block;
    position: absolute;
    bottom: 0;
    left: 15%;
    margin: 5px 0;
    width: 70%;
    border: 2px solid #fff;
    font-size: 0;
    line-height: 0;
}
.ProgramAction{
    display: inline-block;
    color: #fff;
    width: 33.33%;
    cursor: pointer;
}
.ProgramAction img{
    width: 80%;
}
.ProgramAction div{
    font-size: 14px;
}
.DateTime{
    display: block;
    position: absolute;
    bottom: 100px;
    left: 20px;
    text-align:center;
    width: calc(100% - 40px);
}
#Time{
    font-size: 40px;
    line-height: 30px;
}
.Date{
    font-size: 14px;
}
.ErrorLogin{
    color: #ea2d4b;
}
/* LOGIN ADMIN END */
/* KEYBOARD */
/* KEyboard */
.NumericKeyboard{
    display: none;
    position: relative;
    width: 100%;
    font-size: 0;
    line-height: 0;
}
.KeyboardButton{
    display: inline-block;
    font-size: 25px;
    width: 33.33%;
    line-height: 1;
    text-align: center;
    color: #fff;
    padding: 15px 0;
    cursor: pointer;
    vertical-align: middle;
}
.KeyboardButton i{
    font-size: 20px;
}
/* KEYBOARD END */

/* Grid */
header{
    display: block;
    position: relative;
    width: 100%;
    border-bottom: 1px solid #a14750;
}
.SiteName{
    display: inline-block;
    width: 13%;
    vertical-align: middle;
    padding: 5px 1%;
}
.SiteName img{
    width: 100%;
    vertical-align: middle;
    height: 30px;
    object-fit: contain;
    object-position: center left;
}
.MobileMenu{
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    margin: 5px;
    /* width: 5%; */
}
.MobileMenu i{
    padding: 5px;
    border: 1px solid;
    display: inline-block;
    vertical-align: middle;
    cursor: pointer;
}
.LogoutButton{
    display: inline-block;
    width: 84%;
    vertical-align: middle;
    text-align: right;
}
.LogoutButton ul{
    list-style: none;
    margin: 0;
}
.LogoutButton li{
    display: inline-block;
    margin: 0 20px;
}
.MainContent{
    display: block;
    width: 100%;
    position: relative;
}
.MainLeft{
    position: absolute;
    max-width: 250px;
    left: 0;
    top: 0;
    height: 100%;
    z-index: 5;
    overflow: hidden;
    overflow-y: auto;
    display: inline-block;
    background: #20242e;
    transition: all 0.5s ease;
}
.MainRight{
    display: block;
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    background: #f2f2f2;
    position: absolute;
    transition: all 0.25s ease;
    /* z-index: 1; */
}
.MainRightInner{
    padding: 10px;
    color: #333;
    font-size: 14px;
}
footer{
    display: block;
    position: relative;
    width: 100%;
}
footer .CopyRight{
    padding: 10px;
    font-size: 10px;
    text-align: right;
    border-top: 1px solid #a14750;
}
footer .CopyRight span{
    color: red;
    float: left;
}
.MainMenu{
    display: block;
    position: relative;
    padding: 5px;
    width: 250px;
}
.Skupljeno,
.Skupljeno i{
    font-size: 0;
    width: auto;
}
.Skupljeno ul{
    display: none!important;
}
.Skupljeno .SubMenuIcon{
    font-size: 16px;
}
.MainMenu li{
    display: block;
    text-align: left;
    padding: 5px;
    border-bottom: 1px solid #484e56;
    cursor: pointer;
    padding-right: 20px;
    position: relative;
    font-size: 16px;
}
.MainMenu li a{
    transition: opacity 0.25s ease;
}
.MainMenu li:hover > a,
.MainMenu li.ActiveMenuItem > a{
    opacity: 0.7;
}
.Skupljeno li{
    padding-right: 0;
    border: 0;
    font-size: 0;
    /* padding-right: 25px; */
}
.Skupljeno li:hover{
    font-size: 14px;
    background: #20242e;
    padding-right: 10px;
    width: 200px;
}
.Skupljeno li:hover > ul{
    display: block !important;
    position: absolute;
    top: 100%;
    left: 20px;
    width: calc(100% - 30px);
    background: #20242e;
    z-index: 1;
}
.Skupljeno li:hover > ul i,
.Skupljeno li:hover > ul li{
    font-size: 12px;
}
.ToggleExpander{
    position: absolute;
    right: 0;
    font-size: 10px;
    padding: 10px 10px;
    top: 0;
}
.MainMenu ul{
    margin-left: 10px;
    display: none;
}
.MainMenu ul a{
    color: #b1b2b5;
    display: block;
}
.MainMenu li:last-child{
    border: 0px;
}
.PageTitle{
    background: #a14750;
    padding: 0 10px;
    line-height: 50px;
    font-size: 18px;
}
.PageTitle i{
    padding-right: 10px;
}
.OnPageActions{
    float: right;
}
.FormContainer{
    display: block;
    margin-top: 10px;
    border: 1px solid #555;
}
.Tabs{
    display: block;
    position: relative;
    list-style: none;
}
.Tabs li{
    display: table-cell;
    vertical-align: middle;
    width: 0.1%;
    list-style: none;
    padding: 10px 0;
    text-align: center;
    border: 1px solid transparent;
    border-bottom: 1px solid #888;
    cursor: pointer;
    transition: all 0.25s ease;
}
.Tabs li.ActiveTab{
    border: 1px solid #888;
    border-bottom: 1px solid transparent;
    background: #fefefe;
}
.Tabs li:hover{
    background: #fefefe
}
.TabsContent{
    display: block;
    position: relative;
}
.TabsContent li{
    list-style: none;
    margin: 0;
    display: none;
}
.TabsContent li.ActiveTabContainer{
    background: #fefefe;
    padding: 10px;
    display: block;
}
.FormLabel{
    padding: 10px 0;
}
.FormLabel input,
.FormLabel select{
    display: block;
    width: 100%;
    width: calc(100% - 2px);
    padding: 6px 0;
}
.chosen-choices{
    max-height: 135px;
    overflow: auto;
}
.col4{
    display: inline-block;
    width: 22%;
    padding: 1%;
    vertical-align: top;
    position: relative;
}
.col3x4{
    display: inline-block;
    width: 73%;
    padding: 1%;
    vertical-align: top;
    position: relative;
}
.col2{
    display: inline-block;
    width: 48%;
    padding: 1% 0.5%;
    vertical-align: top;
    position: relative;
}
.col1{
    display: inline-block;
    width: 98%;
    padding: 1%;
    vertical-align: top;
    position: relative;
}
.Alert{
    font-size: 30px;
    background: #ea2d4b;
    color: #fff;
    display: none;
    padding: 5%;
    position: fixed;
    top: 40%;
    left: 0;
    width: 90%;
    text-align: center;
    z-index: 99999999;
}
.QuickMenu{
    display: block;
    position: relative;
}
.QuickMenuOppen{
    display: none;
}
.QuickMenu .btn{
    margin: 0;
    margin-bottom: 5px;
    margin-right: 5px;
}
table input, table select{
    width: 98%;
    width: calc(100% - 4px);
    display: block;
    padding: 6px 0;
}
input[readonly]{
    color: #b2b2b2;;
}
.MinWidth250{
    min-width: 250px;
    position: relative;
}
table .btn{
    margin: 0;
}
/* Grid END */
/* POCETNA */
.PocetnaStranica{
    text-align: center;
    /* padding-top: 15%; */
}
.PocetnaStranica img{
    width: 100%;
    display: block;

    height: 100%;
    position: absolute;
    object-fit: contain;
}
.PocetnaStranica h2{
    font-size: 20px;
}
.Odabir{
    display: block;
    text-align: center;
    padding: 20%;
}
.Odabir a{
    display: block;
    padding: 40px;
    background: #20242e;
    margin: 20px;
    transition: all 0.5s ease;
}
.Odabir a:hover{
    opacity: 0.9;
}
/* POCETNA */
/* FRONT */
.FrontPart{
    display: block;
    position: absolute;
    font-size: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #20242e;
}
.LeftFront{
    width: 28%;
    height: 100%;
    position: absolute;
    padding: 0 1%;
    border-right: 1px solid #7f7f7f;
    top: 0;
    left: 0;
}
.DateTimeFront{
    color: #fff;
    text-align: center;
    border-bottom: 1px solid #7f7f7f;
    position: relative;
    line-height: 1;
}
#FastOrdering{
    display: block;
    width: 99%;
    width: calc(100% - 2px);
    border: 1px solid #a14750;
    padding: 5px 0;
    position: relative;
}
.ArtikliSum{
    border-top: 1px solid #7f7f7f;
    border-bottom: 1px solid #7f7f7f;
    width: 100%;
}
.ArtikliSumNaziv,
.ArtikliSumValue{
    display: inline-block;
    font-size: 13px;
    color: #fff;
    vertical-align: middle;
    width: 50%;
    line-height: 1.5;
}
.ArtikliSumValue{
    text-align: right;
}
.PrikazElementa{
	visibility: visible;
}
.Keyboard{
    display: block;
    position: relative;
    width: 100%;
    color: #fff;
    text-align: center;
    overflow: hidden;
    border-left: 1px solid #7f7f7f;
    border-top: 1px solid #7f7f7f;
}
.Key{
    display: inline-block;
    vertical-align: middle;
    font-size: 16px;
    width: calc(25% - 1px);
    border-right: 1px solid #7f7f7f;
    border-bottom: 1px solid #7f7f7f;
    cursor: pointer;
    padding: 15px 0;
    transition: background 0.25s ease;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome and Opera */
}
.Key:hover{
    background: #a14750;
    color: #20242e;
}
.Artikli{
    width: 100%;
    overflow: hidden;
    position: relative;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome and Opera */
}
.ArtikliHead{
    display: block;
    position: relative;
    border-bottom: 1px solid #7f7f7f;
    line-height: 1;
}
.ArtikalNaziv{
    display: inline-block;
    width: 55%;
    font-size: 12px;
    color: #fff;
    vertical-align: top;
    padding: 5px 0;
}
.OdabraniArtikal{
    background: #a14750;
    color: #1d282e;
}
.OdabraniArtikal div{
    color: #1d282e;
}
.ArtikalKolicina{
    display: inline-block;
    width: 20%;
    font-size: 12px;
    color: #fff;
    vertical-align: top;
    padding: 5px 0;
    text-align: center;
}
.ArtikalSuma{
    display: inline-block;
    width: 25%;
    font-size: 12px;
    color: #fff;
    vertical-align: top;
    text-align: center;
    padding: 5px 0;
}
.ArtikliBody{
    overflow: hidden;
    overflow-y: auto;
    width: 100%;
}
.RightFront{
    position: absolute;
    top: 0;
    right: 0;
    width: 70%;
    height: 100%;
}
.OtherOptions{
    display: block;
    position: relative;
}
.Option{
    display: table-cell;
    font-size: 20px;
    vertical-align: top;
    line-height: 1;
    color: #fff;
    width: 0.1%;
    text-align: center;
    padding: 30px 0;
    border-right: 1px solid #7f7f7f;
    cursor: pointer;
    color: #a14750;
    position: relative;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
    transition: all 0.3s ease;
}
.Option:hover{
    color: #20242e;
    background: #a14750;
}
.Option:last-child{
    border-right: 0;
}
.Option ul{
    display: none;
}
.Option:hover > ul{
    display: block;
    position: absolute;
    bottom: 100%;
    z-index: 99;
    background: #313540;
    list-style: none;
    margin: 0;
    width: 100%;
    padding: 5px;
}
.Option ul li:hover ul{
    display: block;
    position: absolute;
    bottom: 0;
    right: 30px;
    z-index: 99;
    background: #20242e;
    list-style: none;
    margin: 0;
    width: 100%;
    padding: 5px;
}
.Option ul li{
    padding: 5px 0;
    position: relative;
}
.Groups, .SubGroups, .Fields{
    overflow: hidden;
}
.SubGroups{
    background: #313540;
}
.Fields{
    background: #505460;
}
.Group, .SubGroup, .Field{
    display: inline-block;
    vertical-align: top;
    width: calc(16.6666% - 1px);
    font-size: 14px;
    line-height: 1;
    color: #fff;
    text-align: center;
    cursor: pointer;
    border-right: 1px solid #7f7f7f;
    position: relative;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome and Opera */
}
.Group span, .SubGroup span, .Field span{
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    overflow: hidden;
}
.SubGroup:before, .Field:before{
    border-bottom: 1px solid #7f7f7f;
    content: "";
    display: block;
    position: absolute;
    top: 0;
    height: 100%;
    left: 3%;
    width: 94%;
    z-index: 1;
}
.SubGroup:after, .Field:after, .Group:after{
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    display: block;
    border-top: 3px solid #a14750;
    width: 100%;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.25s ease;
}
.SubGroup:hover:after, .SubGroup.ActiveSubGroup:after,
.Group:hover:after, .Group.ActiveGroup:after,
.Field:hover:after{
    opacity: 1;
}
/* FRONT END */
/* POTVRDI */
.Potvrdi{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #20242e;
    color: #fff;
    font-size: 0;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome and Opera */
    overflow: auto;
}
.ZaglavljePotvrdi{
    display: block;
    position: relative;
    text-align: center;
    font-size: 0;
    border-bottom: 1px solid #363942;
}
.ZaglavljeLevo, .ZaglavljeCentar, .ZaglavljeDesno{
    display: inline-block;
    width: 33.33%;
    position: relative;
    vertical-align: top;
    font-size: 20px;
}
.ZaglavljeCentar table,
.ZaglavljeDesno table{
    margin-bottom: 0;
}
.SredinaPotvrdi{
    display: block;
    position: relative;
    text-align: center;
    font-size: 0;
}
.SredinaLevo, .SredinaCentar, .SredinaDesno{
    display: inline-block;
    width: 33.33%;
    position: relative;
    vertical-align: top;
}
.SredinaCentar{
    border-left: 1px solid #363942;
    border-right: 1px solid #363942;
    width: 32.5%;
    width: calc(33.33% - 2px);
}
.PotvrdiKey{
    display: inline-block;
    width: 33.33%;
    vertical-align: middle;
    font-size: 16px;
    border-bottom: 1px solid #363942;
    transition: all 0.25s ease;
    cursor: pointer;
}

.PotvrdiKey:nth-child(5),
.PotvrdiKey:nth-child(2),
.PotvrdiKey:nth-child(8),
.PotvrdiKey:nth-child(11){
    border-left: 1px solid #363942;
    border-right: 1px solid #363942;
    width: 32.5%;
    width: calc(33.33% - 2px);
}
.PotvrdiKey:hover{
    background: #a14750;
    color: #20242e;
}
.JednolikoPlacanje, .Loyalty{
    display: block;
    position: relative;
}
.JednolikoPlacanjeOption, .KombinovanoPlacanjeOption, .KombinovanoPlacanjeTotal, .LoyaltyOption{
    font-size: 18px;
    border-bottom: 1px solid #363942;
    transition: all 0.25s ease;
    position: relative;
}
.JednolikoPlacanjeOption:hover, .LoyaltyOption:hover{
    color: #363942;
    background: #a14750;
    cursor: pointer;
}
.ActivePaymentOption:after,
.ActivateThisKombinovano:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 5px solid #a14750;
}
.KombinovanoPlacanje, .Loyalty{
    display: none;
}
.DolePotvrdi{
    display: block;
    position: relative;
}
.PotvrdiOpcija{
    display: table-cell;
    width: 0.1%;
    border-top: 1px solid #363942;
    border-right: 1px solid #363942;
    font-size: 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s ease;
    position: relative;
}
.PotvrdiOpcija:hover{
    background: #a14750;
    color: #20242e;
}
.ActivateGotovinski:after,
.ActivateKombinovano:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 5px solid #fff;
}
.KombinovanoPlacanje span{
    display: block;
    min-height: 30px;
}
#KusurObavestenje{
    padding: 5px;
    color: #a14750;
    animation: pulse 3s infinite;
}
@keyframes pulse {
    0% {
        color: #fff;
        border-bottom: 1px solid
    }
    50% {
        color: #a14750;
        border-bottom: 1px solid transparent
    }
    100% {
        color: #fff;
        border-bottom: 1px solid
    }
}
/* POTVRDI END */
/*PeriodicniPeriod*/
.PeriodicniPeriod, 
.CreateCashBuyer, 
.UserPosPlaceMenu, 
.CreateComitentBuyer,
.PonovnaStampa, .WDTotal{
    display: none;
    position: absolute;
    z-index: 1;
    background: rgba(0,0,0,0.5);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 100vh;
    text-align: center;
}
.ModalBoxPreview{
    background: #fff;
    line-height: 1;
    display: inline-block;
    width: 320px;
    padding: 20px;
    font-size: 20px;
    color: #000;
}
.InvoicesPreview{
    line-height: 1;
    background: #20242e;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    color: #fff;
}
.InvoicesPreview .FastView{
    color: #000;
}
/*PeriodicniPeriod end*/
/* Gotovinski */
/* Gotovinski END */
.Gotovinski{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #20242e;
    color: #fff;
    z-index: 1;
    display: none;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome and Opera */
}
.GotovinskiZaglavlje, .SredinaGotovinski{
    display: block;
    position: relative;
    font-size: 0;
    text-align: center;
}
.GotovinskiZaglavlje label{
    width: 45%;
    padding: 10px 0;
    display: inline-block;
    font-size: 14px;
}
.GotovinskiZaglavlje input{
    width: 70%;
    padding: 10px 0;
}
.SredinaGotovinskiLevo{
    width: 80%;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    overflow: auto;
}
.SredinaGotovinskiDesno{
    width: 20%;
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    text-align: center;
}
.GotovinskiOpcija{
    border-bottom: 1px solid #363942;
    cursor: pointer;
    transition: all 0.25s ease;
    border-left: 1px solid #363942;
}
.GotovinskiOpcija:hover{
    background: #a14750;
    color: #20242e
}
.GotovinskiDole{
    display: block;
    position: relative;
    font-size: 0;
    text-align: center;
}
.GotovinskiTaster{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    width: 7.6%;
    width: calc(7.69% - 1px);
    transition: all 0.25s ease;
    cursor: pointer;
    border-top: 1px solid #363942;
    border-right: 1px solid #363942;
}
.GotovinskiTaster:hover{
    color: #20242e;
    background: #a14750;
}
.GotovinskiSpace{
    width: 30.6%;
    width: calc(30.76% - 1px);
}
.GotovinskiPotvrdi{
    width: 76.7%;
    width: calc(61.52% - 1px);
    font-size: 24px;
    color: #a14750;
}
.GotovinskiBackspace{
    width: 15.3%;
    width: calc(15.38% - 1px);
}
.Gotovinski td, .Gotovinski th{
    text-align: left;
}
/*StampaGotovinski*/
.StampaGotovinski{
    display: none;
    position: relative;
    width: 100%;
    height: 100%;
    color: #000;
    background: #fff;
}
.StampaHeader{
    display: block;
    position: relative;
    font-size: 0;
    text-align: center;
}
.StampaHeaderImg, .StampaNaslov, .StampaHeaderFirma{
    width: 49%;
    display: inline-block;
    font-size: 18px;
    vertical-align: middle;
}
.StampaNaslov{
    text-transform: uppercase;
    margin-bottom: 20px;
}
.StampaHeaderImg img{
    width: 100%;
    max-height: 80px;
    object-fit: contain;
    object-position: center left;
}
.StampaHeaderFirma{
    text-align: right;
    font-size: 14px;
}
.PodaciRacuna{
    display: block;
    position: relative;
    font-size: 0;
    text-align: left;
}
.PodaciRacunaLevo,
.PodaciRacunaDesno{
    display: inline-block;
    vertical-align: top;
    font-size: 14px;
    width: 40%;
    padding: 40px 5%;
}
.PodaciRacunaDesno{
    line-height: 150px;
    text-align: center;
}
.PodaciRacunaDesnoInner{
    display: inline-block;
    line-height: 1;
    width: 80%;
    border: 1px solid;
    padding: 30px 10px;
    font-weight: bold;
}
.PodaciRacuna span{
    font-weight: bold;
}

.GotovinskiNacinPlacanja{
    display: block;
    position: relative;
    text-align: center;
}
.GotovinskiNacinPlacanja div{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    width: 30%;
}
.GotovinskiArtikli{
    display: block;
    position: relative;
    font-size: 14px;
}
.GotovinskiPotpis{
    display: block;
    position: relative;
    text-align: center;
    clear: both;
    padding-top: 40px;
}
.GotovinskiPotpis div{
    display: inline-block;
    width: 40%;
    font-size: 14px;
    margin-top: 20px;
    vertical-align: top;
}
.GotovinskiSumirano{
    display: block;
    position: relative;
    text-align: right;
    font-size: 14px;
    border-top: 1px solid;
}
.GotovinskiSumirano div{
    display: inline-block;
    width: 300px;
    float: right;
    clear: both;
}
.GotovinskiSumirano div:last-child{
    border-top: 1px solid;
} 
.GotovinskiSumirano span{
    display: inline-block;
    width: 200px;
}
.SelectedBuyer{
    background: #a14750!important;
    color: #20242e;
}


@media print{
    header, footer, .Alert, .FrontPart,
    #NoInventorySale, #ActivateFileDownload, .Potvrdi, .Gotovinski{
        display: none!important;
    }
    .StampaGotovinski{
        display: block;
    }
    body, .MainRight, .MainContent{
        background: #fff;
        width: 100% !important;
    }
}

/*StampaGotovinski END*/
.KreirajNoviModal{
    display: none;
}
.UserPosPlaceMenuInner{
    display: inline-block;
    width: 300px;
    min-height: 300px;
    font-size: 14px;
    line-height: 1;
    vertical-align: middle;
    color: #fff;
    background: #a14750;
}
.UserPosPlaceMenu ul{
    list-style: none;
}
.UserPosPlaceMenu ul ul{
    display: none;
    margin-top: 10px;
}
.UserPosPlaceMenu li{
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    background: #a14750;
    font-size: 16px;
}
.UserPosPlaceMenu li li{
    background: #fff;
    color: #a14750;
    transition: all 0.25s ease;
}
.UserPosPlaceMenu li li:hover{
    background: #e6e6e7;
}
.UserPosPlaceMenu li li:last-child{
    border-bottom: 0px;
}
.CreateCashBuyer label, .CreateComitentBuyer label{
    text-align: left;
    font-size: 14px;
}
.CreateCashBuyer input, 
.CreateComitentBuyer  input,
.CreateComitentBuyer  select{
    display: block;
    width: 98%;
    padding: 10px 0;
}
.DocumentSearch{
    position: fixed;
    top: 100px;
    right: 10px;
    text-align: right;
    background: #a14750;
}
#SearchInDocumentArticles{
    display: block;
    display: none;
    padding: 10px;
    margin: 5px;
}
#ToggleDocumentSearch{
    display: inline-block;
}
.ModalPriceListChooser, .ModalSelectColor{
    position: fixed;
    top: 0;
    right: 0;
    background: rgba(0,0,0,0.5);
    line-height: 100vh;
    z-index: 99999;
    display: none;
    width: 100%;
    height: 100%;
    text-align: center;
}
.ModalPriceListChooserInner, .ModalColorInner{
    line-height: 1;
    display: inline-block;
    vertical-align: middle;
    background: #fff;
    color: #000;
    padding: 10px;
    max-height: 50%;
    overflow: auto;
}
.CloseModalPrice, .ModalSelectColor span{
    position: absolute;
    top: 0;
    right: 0;
    font-size: 25px;
    line-height: 1;
    padding: 20px;
    cursor: pointer;
    color: #fff;
}
.Sortable{
    font-size: 0;
    user-select:  none;
    clear: both;
    cursor: move;
}
.ExpandShrink{
    font-size: 14px;
    float: right;
    margin: 5px;
    padding: 8px 10px;
    border: 1px solid #777;
    cursor: pointer;
}
.ModalSelectColor ul{
    list-style: none;
    display: block;
    margin-top: 10px;
}
.ModalSelectColor li{
    display: inline-block;
    padding: 20px;
    cursor: pointer;
    vertical-align: middle;
}
.InlineForm4{
    display: inline-block;
    padding: 15px 0;
    width: 24.5%;
    width: calc(16.666% - 2px);
    font-size: 14px;
    text-align: center;
    border: 1px solid #20242e;
    cursor: move;
    position: relative;
}
.ColorPicker{
    position: absolute;
    top: 0;
    right: 0;
}
.InlineForm4 span{
    position: relative;
    top: 0;
    right: 0;
    padding: 5px;
    cursor: pointer;
}
.RadniDanNijeOtvoren{
    line-height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    text-align: center;
    width: 100%;
}
.RadniDanInner{
    display: inline-block;
    max-width: 60%;
    vertical-align: middle;
    line-height: 1;
}
.RadniDanInner h2{
    font-size: 24px;
    line-height: 1.5;
}
.CloseProgram{
    position: absolute;
    top: 0;
    left: 0;
    font-size: 20px;
    color: #a14750;
    padding: 10px;
    cursor: pointer;
}
#WDTotalForm .col1{
    text-align: right;
}
.WDKeyboard{
    position: relative;
    display: block;
    border-left: 1px solid #a14750;
    border-top: 1px solid #a14750;
    font-size: 0;
    color: #a14750;
    line-height: 0;
    user-select: none;
    -webkit-user-select: none;
}
.WDKey{
    display: inline-block;
    width: calc(33.33% - 1px);
    border-bottom: 1px solid #a14750;
    border-right: 1px solid #a14750;
    font-size: 16px;
    padding: 15px 0;
    transition: all 0.25s ease;
    cursor: pointer;
    line-height: 1;
    vertical-align: middle;
}
.WDKey:hover{
    background: #a14750;
    color: #fff;
}
.TehnickaPodrska{
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 18px;
    color: #a14750;
    padding: 10px;
    text-shadow: 0 0 1px #000;
    text-align: center;
    bottom: 0;
    left: 0;
}
.glyphicon{
    position: relative;
    text-align: center;
}
.glyphicon-chevron-up:after{
    content: '';
    display: block;
    position: relative;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #a14750;
    top: 35%;
    left: 35%;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}
.glyphicon-chevron-down:after{
    content: '';
    display: block;
    position: absolute;
    width: 0; 
    height: 0; 
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid #a14750;
    top: 35%;
    left: 35%;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}
.glyphicon-chevron-right:after{
    content: '';
    display: block;
    position: relative;
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #a14750;
    top: 35%;
    left: 35%;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}
.glyphicon-chevron-left:after{
    content: '';
    display: block;
    position: relative;
    width: 0; 
    height: 0; 
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent; 
    border-right:10px solid #a14750; 
    top: 35%;
    left: 35%;
    top: calc(50% - 10px);
    left: calc(50% - 10px);
}
.accordion-toggle{
    display: none;
}
.HorTabs{
    display: block;
    padding: 10px 0;
}
.HorTab{
    display: block;
    margin: 10px 0;
}
.HorTabTitle{
    padding: 10px;
    background: #ddd;
    cursor: not-allowed;
}
.HorTabBody{
    padding: 10px;
    border: 1px solid #ddd;
    display: none;
}
.AllowedHorTab .HorTabTitle{
    cursor: pointer;
}
.ActiveHorTab .HorTabBody{
    display: block;
}
.HorTabActions{
    display: block;
    text-align: right;
}
.MainRight #ShowReportHere table td,
.MainRight #ShowReportHere table td:nth-child(odd){
        display: table-cell;
        width: auto;
        font-size: 12px;
        padding: 5px 0;
}
.MainRight #ShowReportHere table tr:nth-child(odd){
    display: table-row;
}
.MainRight #ShowReportHere table th, .MainRight #ShowReportHere table thead td{
    display: table-cell;
    font-size: 12px;
}
@media (max-width: 850px){
    table .btn{
        font-size: 0;
        padding: 10px 10px;
        margin: 3px 0;
    }
    table .btn i{
        font-size: 12px;
        vertical-align: middle;
    }
    .InlineForm4{
        width: 33%;
        width: calc(33.33% - 2px);
    }
}
@media (max-width: 720px){
    .chosen-container-multi .chosen-choices{
        max-height: 70px;
        overflow: auto;
    }
    .PageTitle{
        line-height: 1.5;
        font-size: 18px;
        padding: 5px;
        vertical-align: middle;
    }
    .PageTitle .OnPageActions .btn{
        padding: 5px 10px;
        margin: 0
    }
    .LogoutButton{
        float: right;
        margin: 10px 0;
        width: auto;
    }
    .LogoutButton span{
        display: none;
    }
    #LogedUserName{
        display: block;
    }
    .LogoutButton li{
        margin: 0 5px;
    }
    .SiteName{
        width: 120px;
    }
    .QuickMenu .btn{
        display: none;
    }
    .ForceOpenQuick .btn{
        display: inline-block;
        width: 29.5%;
        margin: 0.5%;
        padding: 10px 1%;
    }
    .QuickMenuOppen{
        display: block;
        padding: 5px;
        text-align: center;
        border: 1px solid #20242e;
        margin-bottom: 5px;
        cursor: pointer;
    }
    .MainRight table{
        font-size: 0;
    }
    .MainRight table th,
    .MainRight table thead td{
        display: none;
    }
    .MainRight table th:last-child{
        display: block;
    }
    .MainRight table thead{
        display: block;
        font-size: 0;
    }
    .MainRight table td{
        display: inline-block;
        vertical-align: top;
        width: 50%;
        font-size: 12px;
        padding: 5px 0
    }
    .MainRight table tr:nth-child(odd){
        background: #d6d6d7;
        margin-bottom: 10px;
        display: block;
    }
    .MainRight .bootstrap-datetimepicker-widget table{
        font-size: 12px;
    }
    .MainRight .bootstrap-datetimepicker-widget table th{
        display: table-cell;
    }
    .MainRight .bootstrap-datetimepicker-widget table th:last-child{
        display: table-cell;
    }
    .MainRight .bootstrap-datetimepicker-widget table thead{
        font-size: 12px;
        display: contents;
    }
    .MainRight .bootstrap-datetimepicker-widget table td{
        display: table-cell;
        width: 20px;
        font-size: 12px;
        /* padding: 0; */
    }
    .MainRight .bootstrap-datetimepicker-widget table tr:nth-child(odd){
        background: #fff;
        margin-bottom: 0;
        display: table-row;
    }
    .MinWidth250{
        min-width: auto;
    }
    .MainRight .TabsContent table td.MinWidth250{
        width: 100%;
    }
    .switch:after{
        content: attr(data-placeholder-mobile);
        display: block;
        margin-top: 5px;
        clear: both;
        position: relative;
        bottom: -16px;
        left: -28px;
        width: 100px;
        text-align: center;
        font-size: 10px;
    }
    .MainRight #ShowReportHere td.MobileHidden,
    .MainRight #ShowReportHere th.MobileHidden{
        display: none!important;
    }
}
@media (max-width: 600px){
    .col3x4, .col2, .col4{
        width: 98%;
        padding: 1%;
    }
    .ForceOpenQuick .btn{
        display: inline-block;
        width: 46.5%;
        margin: 0.5%;
        padding: 10px 1%;
    }
    .Tabs{
        font-size: 0;
    }
    .Tabs li{
        display: inline-block;
        width: 49%;
        width: calc(50% - 2px);
        font-size: 12px;
    }
    .InlineForm4{
        width: 49.5%;
        width: calc(50% - 2px);
    }
}
@media (max-width: 420px){
    .ForceOpenQuick .btn{
        width: 97.5%;
    }
    .MainRight .TabsContent table td.MinWidth250{
        width: 100%;
    }
}
@media (max-height:420px){
    .LoginVertical{
        position: relative;
        line-height: 1;
    }
    .NazivSajtaAdmin{
        height: 70px;
        object-fit: contain;
        margin: 10px auto;
    }
    .LoginFormAdmin .form-field input{
        font-size: 16px;
    }
    .LoginContentAdmin{
        width: 100%;
        overflow: auto;
        height: 100%;
        box-sizing: content-box;
        right: 0;
        top: 0;
        padding: 0;
        min-height: auto;
    }
    .ProgramActions{
        max-width: 300px;
        position: relative;
        margin: 0 auto;
        left: initial;
        margin-top: 10px;
    }
    .DateTime{
        position: relative;
        bottom: initial;
        left: initial;
        margin-top: 20px;
    }
    .CloseProgram{
        z-index: 9;
        color: #fff;
    }
}
@media (max-width:580px){
    .LoginVertical{
        position: relative;
        line-height: 1;
    }
    .NazivSajtaAdmin{
        height: 70px;
        object-fit: contain;
        margin: 10px auto;
    }
    .LoginFormAdmin .form-field input{
        font-size: 16px;
    }
    .LoginContentAdmin{
        width: 100%;
        overflow: auto;
        height: 100%;
        box-sizing: content-box;
        right: 0;
        top: 0;
        padding: 0;
        min-height: auto;
    }
    .ProgramActions{
        max-width: 300px;
        position: relative;
        margin: 0 auto;
        left: initial;
        margin-top: 10px;
    }
    .DateTime{
        position: relative;
        bottom: initial;
        left: initial;
        margin-top: 20px;
    }
    .CloseProgram{
        z-index: 9;
        color: #fff;
    }
    .TehnickaPodrska{
        color: #fff;
        z-index: 9;
    }
}
label small{
    float: right;
    cursor: pointer;
    z-index: 2;
}
.Message:nth-child(odd){
    background: #fff;
}
.Message{
    transition: all 0.5s ease;
    margin: 10px 0;
    border: 1px solid;
}
.Message:hover{
    background: #e0e0e9;
}
.UnreadMessage{
    font-weight: bold;
    border: 2px solid;
}
.MessageTitle{
    text-decoration: underline;
}
.NewMessages{
    width: 10px;
    height: 10px;
    background: #ea2d4b;
    display: inline-block;
    vertical-align: middle;
    border-radius: 50%;
}
.MinimizeWindow{
    font-size: 20px;
    color: #ea2d4b;
    cursor: pointer;
    padding: 0 10px;
    border-bottom: 2px solid;
    line-height:0;
    vertical-align: top;
}
table.tablesorter thead tr .header {
	background-image: url(bg.gif);
	background-repeat: no-repeat;
	background-position: center right;
	cursor: pointer;
}
table.tablesorter thead tr .headerSortUp {
	background-image: url(asc.gif);
}
table.tablesorter thead tr .headerSortDown {
	background-image: url(desc.gif);
}
/* STALNI GOSTI */
.ActivateStalniGost{
    padding: 2px 5px;
    border: 1px solid;
    cursor: pointer;
}
.ActivateStalniGost:hover{
    background: #a14750
}
.StalniGost,
.Komitent{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: #20242e;
    color: #fff;
    font-size: 0;
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
                          supported by Chrome and Opera */
}
.StalniGostGore,
.KomitentGore{
    display: block;
    position: relative;
    font-size: 0;
}
#StalniGostForma input,
#KomitentForma input{
    display: inline-block;
    width: 70%;    
    border: 0;
    padding: 10px 0;
    font-size: 16px;
    letter-spacing: 1px;
    vertical-align: middle;
}
#StalniGostForma button,
#KomitentForma button{
    display: inline-block;
    width: 30%;
    padding: 10px 0;
    border: 0;
    vertical-align: middle;
    font-size: 16px;
    background: #a14750;
    color: #20242e;
    transition: all 0.3s ease;
    cursor: pointer;
}
#StalniGostForma button:hover,
#KomitentForma button:hover{
    color: #fff;
}
.StalniGostTasteri,
.KomitentTasteri{
    text-align: center;
}
.StalniGostTaster,
.KomitentTaster{
    display: inline-block;
    vertical-align: middle;
    font-size: 14px;
    width: 7.6%;
    width: calc(7.69% - 1px);
    transition: all 0.25s ease;
    cursor: pointer;
    border-top: 1px solid #363942;
    border-right: 1px solid #363942;
}

.StalniGostTaster:hover,
.KomitentTaster:hover{
    color: #20242e;
    background: #a14750;
}
.StalniGostSpace,
.KomitentSpace{
    width: 30.6%;
    width: calc(30.76% - 1px);
}
.StalniGostPotvrdi,
.KomitentPotvrdi{
    width: 76.7%;
    width: calc(61.52% - 1px);
    font-size: 24px;
    color: #a14750;
}
.StalniGostBackspace,
.KomitentBackspace{
    width: 15.3%;
    width: calc(15.38% - 1px);
}
.StalniGostSredina,
.KomitentSredina{
    font-size: 14px;
    overflow: hidden;
    overflow-y: auto;
}
.StalniGostSredina td,
.KomitentSredina td{
    padding: 15px 0;
}
.StalniGostSredina tr:hover,
tr.ActiveStalniGost,
tr.ActiveKomitent,
.KomitentSredina tr:hover{
    background: #a14750;
    cursor: pointer;
}
/* STALNI GOSTI END */
.Pager{
    list-style: none;
    margin: 0;
}
.Pager li{
    display: inline-block;
    position: relative;
    vertical-align: middle;
}
.Pager li a{
    padding: 10px;
    display: block;
    position: relative;
    border: 1px solid; 
    line-height: 1.2;
    font-size: 14px;
}
.Pager .PageIsActive a{
    background: #20242e;
}
/* STOLOVI */
.HeaderAkcije{
    display: block;
    position: relative;
    font-size: 0;
}
.DugmeHeader{
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    padding: 10px;
    vertical-align: middle;
    border: 1px solid #20242e;
    background: #20242e;
    color: #fff;
    transition: all 0.4s ease;
    cursor: pointer;
    border-radius: 2px;
}
.DugmeHeader:hover{
    background: #a14750;
}
.IzgledSadrzaj{
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
    min-width: 800px;
}
.IzgledSadrzaj img{
    width: 100%;
    user-select: none;
    z-index: 0;
    position: relative;
}
.GrafikSto{
    display: inline-block;
    background: #a14750;
    z-index: 99999;
    top: 0;
    left: 0;
    position: absolute;
    cursor: move;
    text-align: center;
    overflow: hidden;
    filter: drop-shadow( 0 0 2px #000);
    outline: 2px solid #000;
}
.GrafikStoFront{
    display: inline-block;
    background: #a14750;
    z-index: 1;
    top: 0;
    left: 0;
    position: absolute;
    cursor: pointer;
    text-align: center;
    overflow: hidden;
    user-select: none;
    filter: drop-shadow( 0 0 2px #000);
    transition: all 0.3s ease;
}
.GrafikKvadrat{
    width: 100px;
    height: 100px;
    line-height: 100px;
}
.GrafikKvadratInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.Grafik45Kvadrat{
    width: 100px;
    height: 100px;
    line-height: 100px;
    background: transparent;
    overflow: visible;
}
.Grafik45Kvadrat:before{
    content: "";
    position: absolute;
    top: -22%;
    left: -22%;
    bottom: -22%;
    right: -22%;
    background: #a14750;
    z-index: -1;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.Grafik45KvadratInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    overflow: hidden;
}
.GrafikSto input{
    width: 100%;
    border: 0;
    padding: 5px 0;
}
.ChangeType{
    display: inline-block;
    position: relative;
    width: calc(100% - 2px);
    text-align: center;
    padding: 5px 0;
    border: 1px solid #20242e;
    transition: all 0.4s ease;
    cursor: pointer;
}
.ChangeType:hover{
    background: #20242e;
    color: #fff;
}
.GrafikKrug{
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 100px;
    overflow: visible;
}
.GrafikKrugInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    
}
.GrafikKrug:before{
    content: "";
    position: absolute;
    top: -22%;
    left:-22%;
    bottom:-22%;
    right: -22%;
    background: #a14750;
    z-index: -1;
    border-radius: 50%;
    transition: all 0.3s ease;
}
.ImportTables{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    z-index: 999999;
    text-align: center;
    line-height: 100vh;
    display: none;
}
.ImportTablesInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    background: #20242e;
    padding: 20px;
    color: #fff;
    font-size: 0;
    min-width: 400px;
    max-width: calc(100% - 40px);
    height: 400px;
    overflow: auto;
    padding-bottom: 50px;
    position: relative;
}
.ImportTablesFooter{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
}
.TipUbacivanja{
    width: 90%;
    padding: 10px 0;
}
.ImportGraphic{
    display: block;
    position: relative;
    padding: 10px 0;
    font-weight: bold;
    user-select: none;
}
.ImportTable{
    font-weight: normal;
    padding: 5px;
    display: none;
}
.ImportGraphic:first-child .ImportTable{
    display: block;
}
.ImportGraphicName{
    display: inline-block;
    width: calc(100% - 30px);
    font-size: 16px;
    text-align: left;
}
.ImportGraphicAction{
    width: 30px;
    font-size: 18px;
    display: inline-block;
    vertical-align: top;
    text-align: right;
}
.ImportGraphicAction span{
    cursor: pointer;
    transition: all 0.4s ease;
}
.ImportGraphicAction span:hover{
    color: #a14750;
}
.BezRezultata{
    font-size: 16px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
}
.ImportTableName{
    font-size: 14px;
    text-align: left;
    width: 100%;
    clear: both;
}
.ImportTableName input[type='checkbox']{
    float: right;
}
.PreklapaSeSto{
    outline: 2px solid #ea2d4b;
}
/* STOLOVI END */
/* STOLOVI FRONT */
.FrontGraphic{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    z-index: 2;
    background: #20242e;
}
.ChooseGraphics{
    display: block;
    position: relative;
    padding: 10px;
}
.ChooseGraphic{
    display: inline-block;
    margin: 0 10px;
    border: 1px solid #fff;
    padding: 10px 15px;
    color: #fff;
    transition: all 0.4s ease;
    user-select: none;
    cursor: pointer;
}
.ChooseGraphic:hover,
.SelectedGraphic{
    background: #a14750;

}
.GraphicContent{
    display: none;
}
.VisibleGraphic{
    display: block;
    overflow: auto;
    width: 100%;
    max-height: calc(100% - 63px);
}
.GraphicIsShown{
    z-index: -1;
}
.OtvorenSto{
    background: #389f38;
}
.TudjiSto{
    background: #c1c1c9;
}
.GrafikStoFront.GrafikKrug.OtvorenSto:before,
.GrafikStoFront.Grafik45Kvadrat.OtvorenSto:before{
    background: #389f38;
}
.GrafikStoFront.GrafikKrug.TudjiSto:before,
.GrafikStoFront.Grafik45Kvadrat.TudjiSto:before{
    background: #c1c1c9;
}
.GrafikStoFront:hover{
    background: #20242e;
    color: #fff;
    outline: 1px solid;
}
.GrafikStoFront.GrafikKrug:hover:before,
.GrafikStoFront.Grafik45Kvadrat:hover:before{
    background: #20242e;
    color: #fff;
}
.FastCheckoutBtn{
    float: right;
    display: inline-block;
    margin: 0 10px;
    border: 1px solid #fff;
    padding: 10px 15px;
    color: #fff;
    transition: all 0.4s ease;
    user-select: none;
    cursor: pointer;
}
.FastCheckoutBtn:hover{
    background: #a14750;
}
.PovratakNaRastavljanje{
    float: right;
    display: none;
    margin: 0 10px;
    border: 1px solid #fff;
    padding: 10px 15px;
    color: #fff;
    transition: all 0.4s ease;
    user-select: none;
    cursor: pointer;
}
.PovratakNaRastavljanje:hover{
    background: #a14750;
}
.PovratakNaRastavljanje.ActiveRastavljanje{
    display: inline-block;
}
.ArtikliStoNaziv{
    display: inline-block;
    font-size: 12px;
    color: #fff;
    text-align: right;
    padding: 5px;
    width: calc(50% - 10px);
}
#UpdatetujNazivStola{
    text-align: left;
    font-size: 14px;
}
.PorudzbinaBroj{
    text-align: center;
    display: block;
    padding: 5px;
    font-size: 13px;
    color: #fff;
}
.TableUserName{
    font-size: 11px;
}
.TableName{
    font-size: 14px;
}
.TableAmmount{
    font-size: 16px;
    font-weight: bold;
}
/* STOLOVI FRONT END */
/* RASTAVLJANJE */
.FrontRastavljanje{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #20242e;
    color: #fff;
}
.TopPartRastavljanje{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 81px);    
    font-size: 0
}
.BottomPartRastavljanje{
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 80px;
    font-size: 0;
    border-top: 1px solid #7f7f7f;
}
.LeftPartRastavljanje, .RightPartRastavljanje{
    display: block;
    position: absolute;
    width: 50%;
    top: 0;
    height: 100%;
    overflow: hidden;
}
.LeftPartRastavljanje{
    left: 0;
    width: calc(50% - 1px);
    border-right: 1px solid #7f7f7f;
}
.RightPartRastavljanje{
    right: 0;
}
.OptionRastavljanje{
    display: table-cell;
    width: 0.1%;
    font-size: 14px;
    text-align: center;
    line-height: 80px;
    user-select: none;
    transition: all 0.4s ease;
    cursor: pointer;
    border-right: 1px solid #7d7d7d;
}
.OptionRastavljanje:last-child{
    border-right: 0;
}
.OptionRastavljanjeInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
}
.OptionRastavljanje:hover{
    background: #a14750;
}
.TopTitle{
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-bottom: 1px solid #7d7d7d;
    overflow: hidden;
    font-size: 14px;
}
.TopTitle span{
    font-size: 16px;
}
.ArtikliZaPrebacivanje, .PrebaceniArtikli{
    width: 100%;
    height: calc(100% - 41px);
    position: absolute;
    top: 41px;
    overflow: auto;
}
.PrebaceniArtikli{
    top: 41px;
    width: calc(100% - 20px);
    height: calc(100% - 61px);
    padding: 10px;
}
.PorudzbinaRastavljanje{
    display: block;
    position: relative;
    padding: 10px;
}
.OrderTitle{
    display: inline-block;
    width: calc(100% - 30px);
    font-size: 14px;
    vertical-align: middle;
}
.PrebaciSve{
    display: inline-block;
    position: relative;
    width: 28px;
    height: 28px;
    vertical-align: top;
    border: 1px solid #797979;
    cursor: pointer;
    transition: all 0.4s ease;
}
.LeftPartRastavljanje .PrebaciSve:after{
    content: ">>";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 28px;
    width: 100%;
    height: 100%;
    font-size: 18px;
    text-align: center;
}
.RightPartRastavljanje .PrebaciSve:after{
    content: "<<";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 28px;
    width: 100%;
    height: 100%;
    font-size: 18px;
    text-align: center;
}
.PrebaciSve:hover{
    background: #a14750;
}
.PrebaciJedan{
    display: inline-block;
    position: relative;
    width: 28px;
    height: 28px;
    vertical-align: top;
    border: 1px solid #797979;
    cursor: pointer;
    transition: all 0.4s ease;
}
.LeftPartRastavljanje .PrebaciJedan:after{
    content: ">";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 28px;
    width: 100%;
    height: 100%;
    font-size: 18px;
    text-align: center;
}
.RightPartRastavljanje .PrebaciJedan:after{
    content: "<";
    position: absolute;
    top: 0;
    left: 0;
    line-height: 28px;
    width: 100%;
    height: 100%;
    font-size: 18px;
    text-align: center;
}
.PrebaciJedan:hover{
    background: #a14750;
}
.ArtikliRastavljanje{
    display: block;
    position: relative;
    margin: 5px 0;
}
.ArtikliRastavljanjeNaziv{
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    width: calc(100% - 130px);
}
.ArtikliRastavljanjeKolicina{
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    width: 35px;
}
.ArtikliRastavljanjeCena{
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
    width: 35px;
}
.SelectUsersFront, .EnterUserPassword{
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 90vh;
    text-align: center;
    background: #20242e;
}
.SelectUsersFrontInner, .EnterUserPasswordInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    padding: 20px;
    background: #fff;
    position: relative;
}
.UsersContainer{
    padding: 10px;
    max-height: 350px;
    overflow: hidden;
    overflow-y: auto;
}
.SelectUsersFront h3,
.EnterUserPassword h2{
    font-size: 20px;
}
.SelectUserGraphic,
.SelectUserStorno{
    padding: 10px;
    display: block;
    border: 1px solid #000;
    margin: 10px auto;
    cursor: pointer;
    transition: all 0.4s ease;
    user-select: none;
}
.SelectUserGraphic:hover,
.SelectUserStorno:hover{
    background: #a14750;
    color: #fff;
}
.CloseUsersFront,
.CloseEnterPasswordFront{
    position: absolute;
    top: -10px; 
    right: -10px;
    padding: 10px;
    background: #a14750;
    transition: all 0.4s ease;
    cursor: pointer;
}
.CloseUsersFront:hover,
.CloseEnterPasswordFront:hover{
    background: #20242e;
    color: #fff;
}
.EnterUserPassword input{
    width: calc(100% - 22px);
    margin: 10px 0;
    padding: 10px;
}
.TopTitle .PrebaciSve{
    float: right;
    margin: 5px;
}
/* RASTAVLJANJE END */
/* BI */
.BrojIsecka{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    line-height: 100vh;
    text-align: center;
    z-index: 9;
    background: #20242e;
    display: none;
}
.BrojIseckaInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    background: #fff;
}
.BrojIsecka input{
    display: block;
    width: calc(100% - 22px);
    padding: 10px;
    border: 1px solid #000;
}
/* BI END */
/*CAFFE VOUCHER */
.CheckCaffeVoucher{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    text-align: center;
    line-height: 100vh;
    background: #20242e;
    z-index: 9;
    display: none;
}
.CheckCaffeVoucherInner{
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    border: 1px solid rgba(255 255 255 / 0.5);   
    width: 400px;
    max-width: calc(100% - 2px);
}
.CheckCaffeVoucherTitle{
    display: block;
    position: relative; 
    font-size: 16px;
    color: #fff;
    padding: 10px;
    border-bottom: 1px solid rgba(255 255 255 / 0.5);
}
.CheckCaffeVoucherValue{
    display: block;
    position: relative;
    width: calc(100% - 20px);
    padding: 10px;
    border: 0;
}
.CheckCaffeVoucherNumeric{
    display: block;
    position: relative;
    font-size: 0;
}
.NumericKeyboardButton{
    display: inline-block;
    vertical-align: top;
    width: calc(33.33% - 2px);
    border: 1px solid rgba(255 255 255 / 0.5);
    font-size: 16px;
    color: #fff;
    user-select: none;
    height: 50px;
    line-height: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}
.NumericKeyboardButton:hover{
    color: #a14750;
}
/* CAFFE VOUCHER END*/
/* EFISKALIZACIJA */
.SredinaLevo{
    vertical-align: bottom;
}
.Efiskalizacija{
    display: block;
    position: relative;
    font-size: 0;
}
.OnlineFiskalizacijaPolje{
    display: inline-block;
    vertical-align: top;
    width: 50%;
    border-top: 1px solid rgba(255 255 255 / 0.1);
}
.OnlineFiskalizacijaPoljeCelo{
    display: block;
    width: 100%;
    border-top: 1px solid rgba(255 255 255 / 0.1);
}
.Efiskalizacija input,
.Efiskalizacija select,
.EfiskalizacijaRef input,
.EfiskalizacijaRef select,
.OdabirRefakcije input,
.OdabirRefakcije select{
    display: block;
    width: 100%;
    background: #fff;
    color: #000;
    padding: 10px 0;
    font-size: 20px;
    border-bottom: 0;
    margin: 0;
    border-width: 1px;
}
.PretragaArtikalaInput{
    display: block;
    width: 100%;
    background: #fff;
    color: #000;
    padding: 10px 0;
    font-size: 20px;
    border-bottom: 0;
    margin: 0;
    border: 0;
}
.PretragaArtikalaRezultat{
    display: block;
    position: relative;
    font-size: 14px;
    text-align: left;
    padding: 8px;
    border-bottom: 1px solid #5c5c5c;
    transition: all 0.5s ease;
    cursor: pointer;
}
.PretragaArtikalaRezultat:hover,
.PretragaArtikalaOdabraniRezultat{
    background: #a14750;
    color: #2a2e37;
}
.PagerJournalHolder{
    display: block;
    position: relative;
    font-size: 0;
    text-align: center;
}
.PagerJournal{
    display: inline-block;
    position: relative;
    padding: 10px;
    font-size: 16px;
    border: 1px solid;
    transition: all 0.5s ease;
    cursor: pointer
}
.PagerJournal:hover{
    color: #a14750;
    color: #2a2e37;
}
.PageIsActive{
    background: #a14750;
    color: #2a2e37;
}
.OdabirRefakcije,
.OdabirLoyalty,
.PretragaArtikala,
.EfiskalizacijaRef{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    line-height: 100vh;
    background: #20242e;
    text-align: center;
    display: none;
    z-index: 1;
    color: #fff;
}
.EfiskalizacijaRef{
    z-index: 9;
}
.OdabirRefakcijeInner,
.PretragaArtikalaInner,
.RefundBuyer{
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    width: 400px;
    max-width: 100%;
    border: 1px solid rgba(255 255 255 / 0.1);
    font-size: 0;
}
.OdabirRefakcijeTitle,
.PretragaArtikalaTitle,
.EfiskalizacijaRefTitle{
    font-size: 16px;
    padding: 10px 0;
}
.OnlineFiskalizacijaPoljeNaslov,
.PretragaArtikalaHolder span{
    font-size: 14px;
    display: block;
    position: relative;
}
.CloseOdabirRefakcije,
.ClosePretragaArtikala,
.CloseRefundBuyer{
    display: inline-block;
    width: calc(50% - 2px);
    font-size: 18px;
    padding: 15px 0;
    border: 1px solid;
    transition: all 0.5s ease;
    cursor: pointer;
}
.ConfirmOdabirRefakcije,
.ConfirmPretragaArtikala,
.ConfirmRefundBuyer{
    display: inline-block;
    width: 50%;
    font-size: 18px;
    padding: 16px 0;
    transition: all 0.5s ease;
    cursor: pointer;
    border: 0;
    line-height: 1;
}
.CloseOdabirRefakcije:hover,
.ClosePretragaArtikala:hover,
.CloseRefundBuyer:hover{
    background: #2a2e37;
    color: #fff;
}
.ConfirmOdabirRefakcije:hover,
.ConfirmPretragaArtikala:hover,
.ConfirmRefundBuyer:hover{
    background: #a14750;
    color: #20242e;
}
.SelectedProformaOption:after{
    content: "";
    display: block;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    border-top: 5px solid #fff;
}
.OFJournal{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    line-height: 100vh;
    font-size: 0;
    background: #20242e;
    text-align: center;
    overflow: auto;
    z-index: 1
}
.OFJournalInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 400px;
    max-width: 100%;
    box-shadow: 0 0 5px #fff;
}
.OFJournalTitle{
    display: inline-block;
    width: calc(100% - 70px);
    font-size: 20px;
    text-align: left;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    background: #a14750;
}
.OFCloseJournal{
    display: inline-block;
    width: 50px;
    line-height: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    background: #fff;
    color: #a14750;
    transition: all 0.5s ease;
    cursor: pointer;
}
.OFCloseJournal:hover{
    color: #20242e;
}
.OFJournalContent{
    display: block;
    position: relative;
    border-top: 1px solid #20242e;
    border-bottom: 1px solid #20242e;
    padding: 10px 0;
    font-size: 20px;
    text-align: center;
    background: #a14750;
}
.OFJournalActions{
    display: block;
    position: relative;
}
.OFDownloadItem,
.OFPrintItem,
.OFPrintMobile,
.OFSendItem{
    display: table-cell;
    vertical-align: middle;
    width: 0.1%;
    background: #fff;
    color: #a14750;
    font-size: 24px;
    height: 50px;
    line-height: 50px;
    border-right: 1px solid #20242e;
    border-left: 1px solid #20242e;
    padding: 5px 0;
    transition: all 0.5s ease;
    cursor: pointer;
    user-select: none;
}
.OFDownloadItem:hover,
.OFPrintItem:hover,
.OFPrintMobile:hover,
.OFSendItem:hover{
    background: #20242e;
    color: #fff;
}
.ImportArtikala{
    position: fixed;
    top: 0;
    left: 0;
    background: #20242e;
    width: 100%;
    height: 100%;
    line-height: 100vh;
    text-align: center;
    color: #fff;
    z-index: 9;
    display: none;
}
.ImportArtikalaInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    background: #fff;
    color: #20242e;
    padding: 20px;;
    width: 350px;
    max-width: calc(100% - 40px);
    position: relative;
}
.CloseXmlImport{
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px;
    font-size: 20px;
    background: #a14750;
    transition: all 0.5s ease;
    cursor: pointer;
}
.CloseXmlImport:hover{
    background: #20242e;
    color: #fff;
}
.ImportArtikalaInner input{
    border: 1px solid #20242e;
    padding: 10px;
    width: calc(100% - 20px);
}
.ImportTitle{
    font-size: 18px;
}
.OFEnterPin, .AuthorizationPin{
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    line-height: 100vh;
    font-size: 0;
    background: #a14750;
    text-align: center;
    overflow: auto;
    z-index: 9;
    color: #fff;
}
.OFEnterPinInner, .AuthorizationPinInner{
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 400px;
    max-width: 100%;
    box-shadow: 0 0 5px #fff;
}
.OFEnterPinTitle, .AuthorizationPinTitle{
    display: inline-block;
    width: calc(100% - 70px);
    font-size: 20px;
    text-align: left;
    padding: 0 10px;
    height: 50px;
    line-height: 50px;
    background: #20242e;
}
.OFEnterPinClose, .AuthorizationPinClose{
    display: inline-block;
    width: 50px;
    line-height: 50px;
    height: 50px;
    font-size: 20px;
    text-align: center;
    background: #fff;
    color: #20242e;
    transition: all 0.5s ease;
    cursor: pointer;
}
.OFEnterPinClose:hover, .AuthorizationPinClose:hover{
    color: #a14750;
}
.OFEnterPinLabel, .AuthorizationPinLabel{
    display: block;
    position: relative;
    width: calc(100% - 10px);
    padding: 10px 5px;
    text-align: left;
    background: #20242e;
    border-top: 1px solid #a14750;
    border-bottom: 1px solid #a14750;
    padding-bottom: 0;
}
.OFEnterPinLabel span, .AuthorizationPinLabel span{
    display: block;
    font-size: 11px;
    text-transform: uppercase;
}
.OFEnterPinLabel input, .AuthorizationPinLabel input{
    display: block;
    width: calc(100% - 20px);
    padding: 10px;
    border: 0;
    font-size: 18px;
    color: #20242e;
}
.OFEnterPin button, .AuthorizationPin button{
    display: block;
    width: 100%;
    padding: 10px;
    border: 0;
    font-size: 18px;
    color: #20242e;
    background: #fff;
    height: 50px;
    cursor: pointer;
    transition: all 0.5s ease;
}
.OFEnterPin button:hover, .AuthorizationPin button:hover{
    color: #a14750;
}
/* EFISKALIZACIJA END */
/* STATISTIKA NA POCETNOJ STRANICI */
.boxPocetna{
  width: 14%;
  height:10%;
  padding: 15px;
  margin: 20px;
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  display: inline-block;
  font-size: 14px;
}
.boxPocetna h2{
  color: #333333;
}
.boxPocetna p{
  color: #666666;
}
.PocetnaStranica hr{
    border: none;
    height: 3px;
    background: linear-gradient(to right, #d84040, #6e0606); /* Gradijent boja */
    margin: 20px 10px;
    animation: expandHr 1s ease-in-out; /* Animacija */
	width: 50%;
	margin: 0 auto;
}
.boxPocetna hr{
	height: 2px;
}	
@keyframes expandHr{
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}
/* STATISTIKA NA POCETNOJ STRANICI END*/
/* ZA SELECT POLJE OBJEKATA, MAGACINA, DA SE SVI VIDE, SA SCROLL*/
.chosen-container-multi .chosen-choices {
	height: auto; 
	max-height: 200px;
	overflow-y: auto; 
}
/* ZA SKALIRANJE STOLOVA I GRAFIK SLIKE, DA SE NE VIDE SKROL BAROVI */
.ResponsiveImage {
    width: 100%;          /* Širina slike zauzima 100% širine roditeljskog elementa */
    height: 100%;         /* Visina slike zauzima 100% visine roditeljskog elementa */
    object-fit: contain;  /* Slika zadržava proporcije i smješta se unutar elementa */
    max-width: 100vw;     /* Maksimalna širina ne prelazi širinu ekrana */
    max-height: 100vh;    /* Maksimalna visina ne prelazi visinu ekrana */
}
/* Stil za kontejner slike */
.GraphicContent {
    position: relative; /* Ovo omogućava apsolutno pozicioniranje stolova unutar kontejnera */
    overflow: hidden; /* Ovo sprječava pojavljivanje skrol barova */
}

/* Stil za sliku */
.GraphicContent img {
    width: 100%; /* Slika se prilagođava širini kontejnera */
    height: auto; /* Visina se automatski prilagođava da očuva odnos širine i visine */
}

.GrafikStoFront {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.GrafikStoFront .GrafikKvadratInner,
.GrafikStoFront .GrafikKrugInner,
.GrafikStoFront .Grafik45KvadratInner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}
/* ZA SELECT POLJE OBJEKATA, MAGACINA, DA SE SVI VIDE, SA SCROLL END*/