:root {
  --green:#8FB046;
  --light-green:#8ad151;
  --dark-green:#354217;
  --red: #C94C3E;
  --light-red: #ff6f5f;
  --blue: #2FA0C6;
  --light-blue: #73bbff;
  --flash-white: #EDF2F4;
  --alice-blue: #E1E7EC;
  --alice-blue-dark: #cad1d7;
  --platinum: #D5DCE3;
  --french-gray: #C9D1DA;
  --text-color: black;
  --white:  white;
  --headline-color: #868d95;
  --alabaster: #F9F9F9;

  --light-orange:#ffce5f;

  --button-next: #46a0f4;
  --button-prev: #d1e9ff;

  --main-font:  "Open Sans", sans-serif;
  --headline-font:  "Poppins", sans-serif;

  --headline-text-size: 15px;
  --plain-text-size: 13px;
  --label-text-size: 12px;
  --note-text-size: 10px;
}

[hidden]{
  display: none !important;
}

[disabled]{
  color: rgba(0,0,0,0.3);
  filter: contrast(80%);
  cursor: default !important;
  opacity: 0.5;
  pointer-events: none !important;
}

.iconButton{
  width: 15px !important;
  height: 15px;
  opacity: 0.5;
  cursor: pointer;
}

.iconButton:hover{
  opacity: 0.7;
}

.iconButton[disabled]{
  opacity: 0.3;
}

body{
  background-color: var(--flash-white);
  padding: 0px;
  margin: 0px;
} 

.content{
  width: calc(100% - 90px);
  height: calc(100vh - 180px);
  float: left;
  padding: 10px;
}

.pageHeader{
  /*position: fixed;
  top: 33px;*/
  font-family: var(--main-font);
  border-bottom: 1px solid rgba(0, 0, 0,0.1);
    width: calc(100% - 70px);
  float: left;
  padding: 15px;
  display: table;
  background-color: var(--alabaster);
}

.pageHeader h1{
  padding: 0px;
  margin: 0px;
  font-size: var(--headline-text-size);
  opacity: 0.7;
}

.pageHeader span{
  padding: 0px;
  margin: 0px;
  font-size: var(--label-text-size);
  opacity: 0.4;
}

.pageFooter{
  font-family: var(--main-font);
  border-top: 1px solid rgba(0, 0, 0,0.1);
  width: calc(100% - 430px);
  float: left;
  padding: 15px;
  display: table;
  background-color: var(--alabaster);
}



body header nav{
  background-color: var(--white);
  width: 100%;
  display: table;
  padding: 0px;
  margin: 0px;
} 

header nav ul{
  margin: 0px;
  display: table;
  z-index: 2;
  padding: 0px;
}

header nav ul li {
  background-color: var(--white);
  display: inline-table;
  position: relative;
}

header nav ul li a:hover{
  background-color: var(--flash-white) !important;
}



header nav ul li a{
  text-decoration: none;
  color: var(--text-color);
  font-family: var(--main-font);
  white-space: nowrap;
  font-size: var(--plain-text-size);
  font-weight: 600;
  padding: 10px 15px 8px 15px;
  display: flex;
  margin: 0px;
  align-items: center;
}

header nav ul li ul li a{
  padding: 15px !important;
}

header nav ul li a img{
  content: "";
  width: 15px;
  height: 15px;
  display: table;
  float: left;
  margin-right: 10px;
  margin-top: -1px;
  opacity: 0.6;
}


header nav ul li a:hover{
  background-color: var(--alice-blue);
}



header nav ul li a:has(+ ul)::after{
  content: "";
  margin-left: 10px;
  width: 10px;
  height: 10px;
  background-image: url("../data/images/icons/arrow.png");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: table;
  float: right;
  opacity: 0.5;

}



header nav ul li ul {
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 0; top: 33px;
  padding: 0px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  background-color: var(--alice-blue);
  z-index: 10;
}

header nav ul li ul li ul {
  transition: opacity 0.5s ease-in-out, visibility 0s linear 0.5s;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  left: 100%; top: 0px;
  padding: 0px;
  padding-top: 0px;
  z-index: 10;
}

header nav ul li:hover > ul,
ul li ul:hover {
  visibility: visible;
  opacity: 1;
  transition: 0.5s all;
  z-index: 15;
  transition-delay: 0s;
}

header nav ul li ul li {
  clear: both;
  width: 100%;
}


header nav ul li ul li a:hover {
  background-color: var(--flash-white);
}



header nav ul li:hover > ul,
ul li ul:hover > ul {
  visibility: visible;
  opacity: 1;
  display: block;
}





header nav ul li ul li a:has(+ ul li)::after{
  content: "";
  margin-left: 10px;
  width: 10px;
  height: 10px;
  background-image: url("../data/images/icons/arrow.png");
  transform: rotate(-90deg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: table;
  float: right !important;
  opacity: 0.5;
}



.side-bar{
  float: right;
  width: 70px;
  background-color: var(--white);
  position: fixed;
  right: 0px;
  top: 0px;
  height: 100vh;
  overflow: hidden;

}


.side-bar .chat-bar{
  float: right;
  height: 100%;
  display: table;
  width: 70px;
  background-color: var(--alice-blue);
}

.side-bar .planner-bar{
  display: none;
  float: left;
}

.side-bar .chat-bar .chat-bubble{
  width: 50px;
  height: 50px;
  border-radius: 100%;
  margin: 15px auto;
  background-color: var(--white);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  cursor: pointer;
  outline: 1px solid var(--alice-blue-dark);
}

.side-bar .chat-bar .chat-bubble:hover{
  outline: 1px solid rgba(0, 0, 0, 0.3);
}

.side-bar .chat-bar .chat-bubble::before{
  content: attr(messages);
  position: absolute;
  top: -5px;
  left: -5px;
  background-color: red;
  border-radius: 100%;
  width: 20px;
  color: white;
  font-family: var(--main-font);
  font-size: 11px;
  text-align: center;
  line-height: 20px;
  font-weight: bold;
}


.side-bar .planner{
  margin: 10px;
  width: calc(100% - 30px);
  padding: 5px;
  border-radius: 5px;
  min-height: 100px;
}

.side-bar .planner-bar h4{
  margin-left: 20px;
  margin-bottom: 5px;
  font-family: var(--main-font);
  color: var(--headline-color);
}

.side-bar .planner .task{
  width: calc(100% - 10px);
  padding: 5px;
  border-radius: 6px;
  background-color: var(--alabaster);
  display: table;
  border: 1px solid rgba(0, 0, 0, 0.08);
  min-height: 50px;
  margin-bottom: 7px;
}

.side-bar .planner .task:hover{
  background-color: var(--flash-white);
}


.side-bar .planner .task .text{
  float: left;
  width: calc(100% - 90px);
  font-family: var(--main-font);
  padding: 10px;
}

.side-bar .planner .task .text strong{
  font-size: var(--plain-text-size);
  width: 100%;
  display: table;
  margin-bottom: 5px;
}

.side-bar .planner .task .text span{
  font-size: var(--note-text-size);
  opacity: 0.6;
  width: 100%;
  display: table;
}


.side-bar .planner .task .buttons{
  float: right;
  width:30px;height: 30px;
  display: flex;
  align-items: center;
  background-color: var(--french-gray);
  background-image: url("../data/images/icons/check.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  margin: 10px;
  border-radius: 100%;
  color: var(--white);
  font-family: var(--main-font);
  transition: 0.2s all;
}




.side-bar .planner .task .buttons:hover{
  background-color: var(--light-green);
  cursor: pointer;
}


.w100{width: 100%;}
.w90{width: 90%;}
.w80{width: 80%;}
.w70{width: 70%;}
.w60{width: 60%;}
.w50{width: 50%;}
.w40{width: 40%;}
.w30{width: 30%;}
.w20{width: 20%;}
.w10{width: 10%;}


.wrap.w100{width: calc(100% - 62px);}
.wrap.w90{width: calc(90% - 62px);}
.wrap.w80{width: calc(80% - 62px);}
.wrap.w70{width: calc(70% - 62px);}
.wrap.w60{width: calc(60% - 62px);}
.wrap.w50{width: calc(50% - 62px);}
.wrap.w40{width: calc(40% - 62px);}
.wrap.w30{width: calc(30% - 62px);}
.wrap.w20{width: calc(20% - 62px);}
.wrap.w10{width: calc(10% - 62px);}

.left{float: left;}
.right{float: right;}

.itemsCenter {align-items: center;}

.flex {display: flex !important;}
.flexCenter{display: flex !important; align-items: center;}
.flexColumn{flex-direction: column !important;}
.flexEnd{justify-content: end;}
.table {display: table;}
.grid{display: grid !important; grid-row-gap: 8px; grid-column-gap: 10px;}
.grid.c1{grid-template-columns: 1fr;}
.grid.c2{grid-template-columns: 1fr 1fr;}
.grid.c3{grid-template-columns: 1fr 1fr 1fr;}
.grid.c4{grid-template-columns: 1fr 1fr 1fr 1fr;}
.grid.c5{grid-template-columns: 1fr 1fr 1fr 1fr 1fr;}
.grid.c6{grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;}
.grid.c7{grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;}
.grid.c8{grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;}
.grid.c9{grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;}

.button{
  display: table;
  outline: none !important;
  margin: 0px;
  padding: 5px 20px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.1);
  background-color: var(--flash-white);
  font-size: var(--label-text-size);
  font-weight: 600;
  color: rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(0,0,0,0.1);
  text-decoration: none;
}

.button:hover{
  filter: brightness(1.05);
  cursor: pointer;
}


.button.green{
  background-color: var(--light-green);
}

.button.blue{
  background-color: var(--light-blue);
}

.button.red{
  background-color: var(--light-red);
}



.wrap{
  background-color: var(--white);
  padding: 20px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  font-family: var(--main-font);
  display: table;
  height: fit-content;
}

.wrap .header{
  color: var(--headline-color);
  display: table;
  width: 100%;
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 10px;
}


.wrap .footer{
  display: table;
  width: 100%;
  border-top: 1px solid rgba(0,0,0,0.1);
  padding-top: 10px;
}

.wrap .header h4{
  margin: 0px;
  width: 50%;
  float: left;
  display: table;
  text-align: left;
}

.subtaskPopupConfirm .wrap .header h4{
    width: 658px;
    float: left;
    display: table;
    text-align: left;
}

.wrap .content{
  width: 100%;
  height: auto;
  margin: 10px 0px;
  padding: 0px;
}




label:not([stepHeader] label){
  display: table;
  height: auto;
  font-family: var(--main-font);
  font-size: var(--label-text-size);
  padding-bottom: 3px;
  font-style: italic;
  font-weight: 600;
  color: var(--headline-color);
}

input:not([type='checkbox']), textarea, select{
  width: calc(100% - 21px);
  display: table;
  outline: none !important;
  margin: 0px;
  padding: 5px 10px;
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,0.1);
  background-color: var(--alabaster);
  font-size: var(--label-text-size);
  position: relative;
}

select{
  width: 100%;
  padding: 4.2px 10px;
}

input::placeholder{
  opacity: 0.5;
}




.popupConfirm, .popupConfirms, .subtaskPopupConfirm {
  height: 100vh;
  width: 100%;
  position: fixed;
  display: flex;
  align-items: center;
  background-color: rgba(0,0,0,0.4);
  z-index: 9;
  backdrop-filter: blur(3px); 
  font-family: var(--main-font);
}

.popupConfirm div, .popupConfirms div, .subtaskPopupConfirm div{
  max-width: 800px;
  min-width: 300px;
  background-color: white;
  border-radius: 3px;
  padding: 25px 30px;
  margin: 0px auto;
  text-align: center;
  z-index: 10; 
}

.popupConfirm div span, .popupConfirms div span{
  font-size: 15px;
  font-weight: 800;
  color: rgba(0,0,0,0.7);
}

.subtaskPopupConfirm div span{
  font-size: 11px;
  font-weight: 800;
  color: rgba(0,0,0,0.7);
}


.popupConfirm div div, .popupConfirms div div, .subtaskPopupConfirm div div{
  margin: 10px auto 0px auto;
  padding: 0px;
}

.popupConfirm .button, .popupConfirms .button, .subtaskPopupConfirm .button{
  margin: 0px 2px;
}

.popupMessage {position: fixed; bottom: 50px; left: 0px; width: 100%; display: none;}
.popupMessage.correct span{background-color: #b3ffbb; color: #0a4510;}
.popupMessage.error span{background-color: #f29999; color: #630303;}
.popupMessage.warning span{background-color: #ffdaa3; color: #915609;}
.popupMessage span{
  z-index: 999;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Nunito', sans-serif;
  padding: 20px 40px;
  margin: 0px auto;
  display: table;
  max-width: 600px;
  border: 2px solid rgba(0,0,0,0.06);
  -webkit-box-shadow: 1px 5px 15px 0 rgba(0,0,0,0.01);
  box-shadow: 1px 5px 15px 0 rgba(0,0,0,0.01);
}

.errorPopup{
  position: fixed;
  bottom: 20px;
  right: -50%;
  border: 2px solid rgba(0,0,0,0.2);
  font-family: 'Russo One', sans-serif;
  color: white;
  z-index: 100;
  padding: 15px;
  font-size: 13px;
  transition: 0.3s all;
}

.errorPopup.active{
  right: 20px;
  transition: 0.3s all;
}

.errorPopup.red{
  background-color: darkred;
}

.errorPopup.green{
  background-color: darkgreen;
}

.errorPopup.orange{
  background-color: orange;
}

.content.login{
  width: calc(100% - 20px);
}



.stockUpTable{
  width: 100%;
}

.stockUpTable thead{
  font-size: 12px;
  text-align: left;
}

.stockUpTable thead th{
  border-bottom: 1px solid black;
  padding: 10px 5px 10px 0px;
}

.stockUpTable tbody{
  font-size: 12px;
  text-align: left;
}

.stockUpTable tr td{
  padding: 3px 0px;
  margin: 0px;
}

.stockUpTable input{
  background-color: rgba(0,0,0,0.05);
  border: none;
  border-radius: 0px;
  padding: 5px;
  width: 80%;
}

.stockUpTable .amount{width: 30px;}
.stockUpTable .bPrice{width: 130px;}
.stockUpTable .salePercentage{width: 40px;}
.stockUpTable .vat{width: 70px;}

.stockUpTable .button{float: left;}




/* Style the buttons that are used to open and close the accordion panel */
.accordion {
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
}

/* Add a background color to the button if it is clicked on (add the .active class with JS), and when you move the mouse over it (hover) */


/* Style the accordion panel. Note: hidden by default */

/* Style the accordion panel. Note: hidden by default */
.panel .stockUpTable {
  padding: 0px 0px;
  width: 100%;
}

.task .panel, .taskView .panel{
  width: 100%;
  display:block !important;
  float: left;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}



.noticeBubble{
  border: 2px solid;
  padding: 20px;
  margin: 10px;
  position: fixed;
  bottom: 10px;
  right: 10px;
  display: table;
  z-index: 2;
}

.noticeBubble.red{
  border-color: darkred;
  background-color: pink;
  color: red;
}
.noticeBubble.green{
  border-color: darkgreen;
  background-color: lightgreen;
  color: green;
}
.noticeBubble.orange {
  border-color: darkorange;
  background-color: #edac53;
  color: #8b5e0e;
}

.contentTable tbody tr:hover{
  background-color: whitesmoke;
}

.stockUpFooter{
  margin: 10px 0px 20px 0px;
}

.stockUpFooter input{
  background-color: rgba(0,0,0,0.05);
  border: none;
  border-radius: 0px;
  padding: 5px;
}

.stockUpFooter tr td{
  padding: 3px 0px;
  margin: 0px;
}

.stockUpFooter .bPrice{width: 130px;}
.stockUpFooter .salePercentage{width: 40px;}
.stockUpFooter .vat{width: 70px;}

.excelSheet .contentTable td{
  border: 1px solid black;
  padding: 3px;
}

.excelSheet .contentTable td input{
  border: none;
  background-color: transparent;
  margin: 0px;
}

.select-btn{
    display: flex;
    padding: 5px 10px !important;
    margin-top: 0px !important;
    border-radius: 2px;
    cursor: pointer;
    background-color: var(--alabaster);
    border: 1px solid rgba(0,0,0,0.1);
}
.select-btn .arrow-dwn{
    display: flex;
    height: 21px;
    width: 21px;
    color: #fff;
    font-size: 14px;
    border-radius: 50%;
    background: #6e93f7;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
}
.select-btn .btn-text{
    font-size: var(--label-text-size);
}

.list-items{
    padding: 16px;
    display: none;
    background-color: var(--alabaster);
    border: 1px solid rgba(0,0,0,0.1);
}
.select-btn.open ~ .list-items{
    display: block;
}
.list-items .item{
    display: flex;
    align-items: center;
    list-style: none;
    margin: 2px;
    cursor: pointer;
    transition: 0.3s;
    padding: 0 5px;
    border-radius: 8px;
    font-size: 11px;
}
.list-items .item:hover{
    background-color: #e5e5e5;
}
.item .checkbox{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 16px;
    width: 16px;
    border-radius: 4px;
    margin-right: 12px;
    border: 1.5px solid #c0c0c0;
    transition: all 0.3s ease-in-out;
}
.item.checked .checkbox{
    background-color: #4070f4;
    border-color: #4070f4;
}
.checkbox .check-icon{
    color: #fff;
    font-size: 11px;
    transform: scale(0);
    transition: all 0.2s ease-in-out;
}
.item.checked .check-icon{
    transform: scale(1);
}

.task.subtask{
    margin: 5px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.side-bar .task.subtask{
  width: calc(100% - 20px) !important;
}


.chatHeader{
  background-color: var(--light-blue);
  font-family: var(--main-font);
}

.chatHeader:hover{
  transition: 0.2s;
   background-color: #5cb0ff;
}

.chat{
  height: 35px;
  transition: 0.2s all;
  display: none;
}

.chatHolder{
  display: none;
  position: absolute;
  bottom: 0px;
  width: 100%;
  background-color: blue;
  height: 290px;
  transition: 0.2s all;
  border: solid 1px #b5b5b5;
  border-radius: 5px 5px 0px 0px;
}

.chat .chatHeader{
  min-height: 35px;
  max-height: 35px;
  padding: 10px;
  border-radius: 5px 5px 0px 0px;
}


.chatHolder .chatHeader{
  padding: 10px;
}

.chatHolder.active{
  transition: 0.2s all;
  display: block !important;
}

.chatContent{
  font-family: var(--main-font);
  overflow: auto;
  max-height: 210px;
  min-height: 210px;
  background-color: #edf3f7;
}

.chatMessage{
  font-family: var(--main-font);
      height: 30px;
    border-radius: 0px;
    border-top: solid 1px #b5b5b5;
    border-right: solid 1px #b5b5b5;
}

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    background-color: #555;
}
::-webkit-scrollbar-track {
    border-radius: 10px;
}

.chatContent .SENDED{
  float: left;
  text-align: left;
}

.chatContent .ACCEPTED{
  float:right;
  text-align: right;
}

.chatContent .ACCEPTED.system{
    text-align: center;
    background-color: transparent !important;
    color: grey;
    padding-top:15px;
}

.chatMessageSpan{
      padding: 5px 10px 5px 10px;
    background-color: #e1e1e1;
    border-radius: 5px;
    margin-top: 10px;
    margin-bottom: 10px;
    word-break: break-word;
    font-size: 13px;
}

.chatMessageHolder{
  width: calc(100% - 20px);
  height: 30px;
  padding: 0px 10px 0px 10px;
}

.chatMessageTime{
    width: 100%;
    font-size: 9px;
    color: #000000b5;
    margin-top: -5px;
    padding-top: 0px;
    font-family: var(--main-font);
    padding-bottom: 5px;
}

.userSystem{
    margin: 0px auto;
    text-align: center;
    background-color: transparent !important;
    color: grey;
    padding-top:15px;
    position: absolute;
    right: 30%;
}

input[colorPicker]
{
  color: transparent;
  display: table;
    float: left;
    margin-right: 5px;
    background-color: #a9a9a9;
    background-image: url(images/arrow-fill.png);
  background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
  cursor: pointer;
  font-size: 0px;
  height: 15px;
  width: calc(100% - 24px) !important;
}

/*Color picker*/
.colorPicker{
  background-color: white;
  border-radius: 2px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.1);
  border:1px solid rgba(0,0,0,0.2);
  display: table;
  max-width: 50px !important;
  height: auto;
  padding: 20px;
  z-index: 99999;
  position: absolute;
  margin: 10px 10px 0px -10px;
}

.colorPicker span{
  font-size: 14px;
  padding-bottom: 5px;
  padding-left: 3px;
  display: table;
  width: 100%;
  font-weight: 600;
}

.colorPicker .colorButton{
  width: 20px; 
  height: 20px;
  margin: 3px;
  float: left;
  cursor: pointer;
  border-radius: 50%;
}

.colorPicker .colorButton:hover{
  filter: brightness(1.1);
}

.colorPicker .colorButton.active{
  background-image: url("icons/check-white.png");
  background-size: 40%;
  background-position: center center;
  background-repeat: no-repeat;
}

.taskView{
  min-height: 680px;
  max-height: 680px;
  margin-bottom: 10px;
  overflow: auto;
  display: block;
}

.task{
  width: calc(100% - 10px);
  border-radius: 6px;
  background-color: var(--alabaster);
  margin-bottom: 7px;
  margin-top: 7px;
  transition: all .2s ease-in-out;
  display: -webkit-box;
}

.task:hover{
  background-color: var(--flash-white);
}


.task .text{
  float: left;
  width: calc(100% - 110px);
  font-family: var(--main-font);
  padding: 10px;
  display: inline;
}

.taskView .task .subtask .text{
  width: 215px;
}

.task .text strong{
  font-size: var(--plain-text-size);
  width: 100%;
  display: table;
  margin-bottom: 5px;
}

.task .text span{
  font-size: var(--note-text-size);
  opacity: 0.6;
  width: 100%;
  display: table;
}


.task .buttons{
  float: right;
  width:30px;height: 30px;
  display: flex;
  align-items: center;
  background-color: var(--french-gray);
  
  background-position: center;
  background-repeat: no-repeat;
  background-size: 50%;
  margin: 10px;
  border-radius: 100%;
  color: var(--white);
  font-family: var(--main-font);
  transition: 0.2s all;
}

.task .buttons.check{
  background-image: url("../data/images/icons/check.png");
  margin: 5px;
}

.task .buttons.close{
  background-image: url("../data/images/icons/close.png");
  margin: 5px;
}



.task .buttons.check:hover{
  background-color: var(--light-green);
  cursor: pointer;
  
}

.task .buttons.close:hover{
  background-color: var(--light-red);
  cursor: pointer;
  
}

.task .details{
    display: table;
    float: right;
    width: 37px;
    font-size: 28px;
    margin: 0px;
    padding: 0px;
    margin-top: -8px;
    transition: all .2s ease-in-out;
    color: #8f8f8f;
}

.createTask, .addSubtask{
  display: none;
}

.dropdown-content{
  display: none !important;
  position: absolute;
  background-color: #f1f1f1;
  overflow: auto;
  z-index: 1;
}

.show {display: block !important;}

.taskView .task div{
  display: flex;
}

.dropdown-content a {
  color: black;
  text-decoration: none;
  display: block;
  font-size: 11px;
  padding: 10px;
}

.dropdown-content a:hover {background-color: #ddd;}

.hideAuthor, .hideStatus, .hideDate{
  opacity: 0;
  transform: scale(0);
  max-height: 0px;
  display: flex;
  transition: all .2s ease-in-out;

}

.radioButton{
    float: left;
    width: 13px;
    margin-right: 10px;
}

.filter{
  margin: 5px 0px 5px 0px;
}

[tabsButtons]{
  width: calc(100% - 430px);
  display: table;
  padding: 0px 10px;
  /*position: fixed;
  top: 135px;*/
}

[tabsButtons] span{
  padding: 5px 15px;
  margin: 0px;
  font-size:  var(--label-text-size);
  font-family: var(--main-font);
  color: rgba(0,0,0,0.5);
  font-weight: 600;
  display: table;
  float: left;
  cursor: pointer;
 border: 1px solid rgba(0, 0, 0,0.1);
 background-color: var(--alabaster);
 border-bottom-right-radius: 5px;
 border-bottom-left-radius: 5px;
 margin-right: 5px;
  border-top: none;
}

[tabsButtons] span.active{
     background-color: #e9e9e9;
   
}

.side-bar [tabsButtons]{
  width: 100%;
  display: table-cell;
  padding: 0px 0px 0px 3px;
  margin-bottom: 20px;
  /*position: fixed;
  top: 135px;*/
}

.side-bar [tabsButtons] span{
     /* padding: 5px 15px; */
    margin: 0px;
    font-size: var(--label-text-size);
    font-family: var(--main-font);
    color: rgba(0,0,0,0.5);
    font-weight: 600;
    display: table;
    float: left;
    cursor: pointer;
    border: 1px solid rgba(0, 0, 0,0.1);
    /* background-color: var(--alabaster); */
    margin-right: 5px;
    background: white;
    border: none;
}

.side-bar [tabsButtons] span.active{
      background-color: white;
    text-decoration: underline;
    text-underline-position: under;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    text-decoration-color: var(--light-blue);
   
}

.taskImportance{
    background-color: red;
    width: 5px;
    display: table-cell;
    border-radius: 6px 0px 0px 6px;
}

.detailInfo{
  display: table !important;
}

.taskHeader{
  font-weight: bold;
  margin-top: 10px;
  margin-bottom: 10px;
  
}

.taskPlannerContent{
display:inline-block;
 width: calc(100% - 360px);
}

.taskPlannerContent .accordion{
  display: flex;
}

.taskPlannerContent .wrap{
  padding: 0px !important;
}

.taskPlannerHeader{
  background-color: #c5ced1; 
  padding: 10px;
  font-family: var(--main-font);
  font-weight: bold;
}

.wrap.taskPlannerHolder{
  text-align: center;
  display: inline-block; 
  width: 350px; 
  max-height: 340px; 
  min-height: 340px; 
  margin: 0px 10px 0px 10px;
  overflow: auto;
}

.taskPlannerContentSlider{
  width: 100%;
white-space: nowrap;
 overflow: auto;
 float: left;
 margin-left: 10px;
}

.taskPlannerRest{
  margin-left: 10px;
  display: inline-flex;
  width: 100%;
}

.taskPlannerContent .task{
    width: calc(100% - 14px);
    border-radius: 6px;
    background-color: var(--alabaster);
    transition: all .2s ease-in-out;
    display: inline-table;
    margin: 7px 0px 0px 0px;
}

.taskPlannerContent .text{
  padding: 10px;
  display: grid;
  float: left;
}


.taskPlannerContent strong{
  text-align: left;
}



.taskPlannerContent .subtask{
    margin: 5px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    display: -webkit-box;
    text-align: left;
}


.taskPlannerContent .detailsHolder{
  display: flex;
}

.createExcelTableContent{
}

.createExcelTablePartOne,.createExcelTablePartTwo,.createExcelTablePartThree{
  width: calc(100% - 20px);
}

input[type=time]{
  padding: 3px 10px !important;
}
input[type=date]{
  padding: 4px 10px !important;
}

.originCity,.destinationCity,.partDestination{
  align-items: end;
}

.simpleInvoiceHolder,.simpleCardLegendHolder{
    width: calc(100% - 70px);
    display: flex;
    align-items: center;
    font-family: Poppins;
    
  }

.simpleInvoiceHolder{
  justify-content: center;
}

  .simpleCardLegend{
    margin: 7px;
    display: flex;
    align-items: center;
    border-radius: 5px;
    border: 1px solid black;
    cursor: pointer;
  }

  .simpleCardLegendContent{
    display: flex;
  }

  .simpleCardLegend div{
    width: 23px;
    height: 100%;
    border-radius: 4px 0px 0px 4px;
    border-right:1px solid black;
  } 

  .simpleCardLegend div.cardWait{background-color: white;}
  .simpleCardLegend div.cardPending{background-color: #f7ffa7;}
  .simpleCardLegend div.cardDone{background-color: #a7ffb8;}

  .simpleInvoiceContent,.simpleCardLegendContent{
    padding: 15px;
    width: calc(100% - 30px);
  }
  .simpleInvoiceCards{
    width: calc(12.5% - 30px);
    padding: 8px;
    height: 100px;
    float: left;
    margin: 7px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    background-color: white;
    cursor: pointer;
  }

  .simpleInvoiceCards .simpleInvoiceHeader{
    font-weight: bold;
    font-size: 14px;
  }

  .simpleInvoiceCards .simpleInvoiceInfo{
    font-size: 12px;
  }

  .simpleInvoiceCards.Hotovo{
    background-color: #a7ffb8 !important;
  }
  .simpleInvoiceCards.Naskladněno{
    background-color: #f7ffa7 !important;
  }

  .simpleInvoiceCards:hover{
    transform: scale(1.05);
    outline: 1px solid black;
  }

  .simpleInvoiceCards.hide{
    display: none !important;
  }

  .simpleCardLegend span{
    padding: 0 6px;
    border-radius: 0px 4px 4px 0px;
  }


  .simpleCardLegend.active span{
    background-color: var(--blue);
    color: white;
    font-weight: bold;
  }


  .progress-container {
            width: 100%;
            background-color: #e0e0e0;
            border-radius: 5px;
            height: 30px;
    }

    /* Actual Bar */
    .progress-bar {
        height: 100%;
        width: 0;
        background-color: #4caf50;
        text-align: center;
        color: white;
        border-radius: 5px;
    }

    .addUserInterface{
      height: 100vh;
      width: 100%;
      position: fixed;
      display: flex;
      align-items: center;
      background-color: rgba(0,0,0,0.4);
      z-index: 9;
      backdrop-filter: blur(3px);
      font-family: var(--main-font);
      /* display: flex; */
      /* align-items: center; */
      justify-content: center;
    }

    .licenseListInterface{
      height: 100vh;
      width: 100%;
      position: fixed;
      display: flex;
      align-items: center;
      background-color: rgba(0,0,0,0.4);
      z-index: 10;
      backdrop-filter: blur(3px);
      font-family: var(--main-font);
      /* display: flex; */
      /* align-items: center; */
      justify-content: center;
    }

    .addUserInterface fieldset label{
      display: flex;
      align-items: center;
      margin-top: 7px;
    }

    .addUserInterface fieldset{
      border-radius: 7px;
    }

    .popupOkresParent{
      height: 100vh;
      width: 100%;
      position: fixed;
      display: flex;
      align-items: center;
      background-color: rgba(0,0,0,0.4);
      z-index: 9;
      backdrop-filter: blur(3px);
      font-family: var(--main-font);
      /* display: flex; */
      /* align-items: center; */
      justify-content: center;
    }

    .licenseListContent{
          height: 500px;
    overflow-y: auto;
    width: 200px;
    padding: 5px;
    }

    .licenseListContent label{
          display: flex;
    align-items: center;
    }

    .popupContainer{
      height: 100vh;
      width: 100%;
      position: fixed;
      display: flex;
      align-items: center;
      background-color: rgba(0,0,0,0.4);
      z-index: 9;
      backdrop-filter: blur(3px);
      font-family: var(--main-font);
      justify-content: center;
    }

    .userInterfaceContent label{
      margin-top:7px;
    }

    .userInterfaceContent .userInterfaceContainer{
      padding: 15px;
      background-color: white;
      height: 750px;
      max-height: 750px;
      width: 1200px;
      border-radius: 11px;
      overflow-y: auto;
        background-color: white;
      display: flex;
      flex-direction: column;
    }
    .userDataContainer fieldset{
      width: 33%;
    }

    .extraDataContainer fieldset{
      height: 265px;
      overflow-y: auto;
    }
    .extraDataContainer .paymentContainer,.extraDataContainer .logContainer{
      width: 50%;
    }
    .userInterfaceContent .userInterfaceContainer .userDataContainer,.userInterfaceContent .userInterfaceContainer .extraDataContainer{
      display: flex;
    }

    table.payments td{
      padding: 0px !important;
    }

    td.details img{
      cursor: pointer;
      width: 10px;
    }

    input[type=submit]{
      cursor: pointer;
    }

    .editUserInterfaceFooter{
      width: 100%;
    height: 35px;
    background-color: white;
    border-radius: 15px;
    position: absolute;
    bottom: 0px;
    display: flex;
    align-items: center;
    }

    .editUserInterfaceFooterContent{
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: calc(100% - 15px);
    }

    .editUserInterfaceHolder{
  width: 100%;
  position: fixed;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99; 
  display: flex;
  background-color: rgba(0, 0, 0, 0.7);
  align-items: center;
  justify-content: center;
  font-family: Poppins;
}

.editUserInterfaceHolder input{
      width: fit-content;
    margin-left: 10px;
}

.editUserInterfaceHolder span{
  display: flex;
  align-items: center;
}

.editUserInterfaceHolder input.warning{
  border-color: red !important;
}



.editUserInterfaceContent{
  width: 90%;
  height: 90vh;
  background-color:#f2f2f2;
  padding: 20px;
  border-radius: 15px;
  overflow: auto;
}

.editUserInterfaceBody{
      display: flex;
    align-items: center;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.mainUser{
  width: 100%;
  height: 200px;
  background-color: white;
  border-radius: 15px;
  margin-bottom: 5px;
}
.sideUsers{
    margin: 0px auto;
    width: 100%;
    max-height: 510px;
    min-height: 510px;
    overflow: auto;
}
.userCard{
  height: 175px;
    float: left;
    background-color: white;
    width: calc(50% - 10px);
    margin: 5px;
    border-radius: 15px;

}

.mainUser,.userCard{
  display: flex;
  flex-direction: column;
}

.mainUser span.userName{
  font-size: 24px;
    font-family: Poppins;
    font-weight: bold;
    padding: 20px 20px 10px 20px;
}

.sideUsers span.userName{
  font-size: 18px;
    font-family: Poppins;
    font-weight: bold;
    padding: 20px 20px 10px 20px;
}

.userCard{
  font-size: 13px;
  position: relative;
}

.allocatedCredit.warning,.periodicAllocatedCredit.warning{
  border-color: red;
  color: red;
  outline-color: red;
}

.systemInformation{
  align-self: baseline;
  font-size: 13px;
  padding: 0px 10px;
}

.systemInformation.warning{
  color: red;
}

.userCard.new input{
    margin-left: 5px;
    margin-bottom: 1px;
    border: none;
    border-bottom: 1px solid black;
    padding: 2px 10px;
    border-radius: 0px;
    flex: 1;
}

.userCard.new span{
  padding-left:20px;
  padding-right: 20px;
}

input.newUserFullName{
  font-size: 18px !important; 
}

.removeUser{
      border: none;
    width: 15px;
    height: 15px;
    outline: none;
    background-color: white;
    position: absolute;
    top: 12px;
    right: 17px;
    display: flex;
    align-items: center;
    cursor: pointer;
    justify-content: center;
}

button{
  cursor: pointer;
}

.licenceUserData{
      width: 100%;
    height: 35px;
    background-color: white;
    border-radius: 15px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    margin: 0px 5px 5px 5px;
}

.licenceUserData b{
  padding-left: 20px;
  display: flex;
  align-items: center;
}

.licenseInterfaceBody{
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
}

.defaultLicense,.extraLicense, .licenseHeader{
  display: flex;
  background-color: white;
  flex-direction: column;
  padding: 10px 22px;
  border-radius: 15px;
  width:550px;
  justify-content: space-between;
  margin-bottom: 15px;
}

.licenseInterfaceContent h3{
  margin:0px;
  margin-bottom: 10px;
} 

.licenseInterfaceContent{
  background-color:#f2f2f2;
  padding: 20px;
  border-radius: 15px;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.licenseInterfaceBody label,.licenseInterfaceBody span{
  display: flex;
  align-items: center;
}

.licenseInterfaceBody input[type=text]{
  padding: 5px;
  border:none;
  outline: none;
  background-color:#f2f2f2;
  border-radius: 7px;
  width: 65px;
}

.sendComponentsInvoice,.confirmlicenseChanges{
  display: none;
}

.sendComponentsInvoice.active,.confirmlicenseChanges.active{
  display: block;
}

input.allocatedCredit, input.periodicAllocatedCredit{
  width: 50px;
}

.maxCredits, .maxPeriodicCredits{
  padding-left: 5px !important;
}

a.button.disabled{
  pointer-events: none;
cursor: default;
opacity: 0.3;
}

.emailNotification{
  background-color: white;
  border-radius: 7px;
  padding: 20px;
}

.note-editable{
  font-size: 12px !important;
}

.hostingContent .tab {
  overflow: hidden;
  border: 1px solid #ccc;
  background-color: #f1f1f1;
}

/* Style the buttons that are used to open the tab content */
.hostingContent .tab button {
  background-color: inherit;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 14px 16px;
  transition: 0.3s;
}

/* Change background color of buttons on hover */
.hostingContent .tab button:hover {
  background-color: #ddd;
}

/* Create an active/current tablink class */
.hostingContent .tab button.active {
  background-color: #ccc;
}

/* Style the tab content */
.hostingContent .tabcontent {
  display: none;
  padding: 6px 12px;
  border: 1px solid #ccc;
  border-top: none;
}

.hostingContent .tabcontent {
  animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
  from {opacity: 0;}
  to {opacity: 1;}
}

.hostingContent fieldset{
  margin-bottom: 20px;
  width: 500px;
}

.hostingContent addDomainContainer div{
  margin: 5px 0px;
}

.hostingContent .addDomainContainer input{
  width: 200px;
}

.hostingContent .columns{

  padding: 10px;
  display: flex;
}

.hostingContent .packages{

  width: 880px;
  padding: 10px;
}

.hostingContent .packages fieldset{
  width: 700px;
}

.hostingContent .interactive{
  width: calc(100% - 600px);
  padding: 10px;
  font-size: 13px;
  left: 600px;
}

.hostingContent .domainData{
  display: inline-flex;
  width: 670px;
  float: left;
}

.hostingContent .domainData .columnData{
  width: calc(100% - 300px);
  float: left;
}
.hostingContent .dopmainData .columnQR{
  width: 300px;
}

.hostingContent .domainData .columnQR img{
  float: left;
  width : 150px;
}

.hostingContent .dataInformation fieldset{
  width: 600px;
}

.hostingContent .domainList .domain:hover{
  background: rgba(0,0,0,0.2);
}

.hostingContent .domainList .domain.active{
background: rgba(0,0,0,0.2);
}

.hostingContent table{
  width: 830px;
  font-family: "poppins";
  border: 2px solid black !important;
}

.hostingContent table thead{
  border: 2px solid black;
}

.hostingContent table thead tr th{
  background-color:rgba(0,0,0,0.1);
  padding: 7px 5px;
  text-align: left;
}

.hostingContent table,.hostingContent th,.hostingContent td {
  border: 1px solid black;
  border-collapse: collapse;
  padding: 4px;
  font-size: 13px;
}

.hostingContent table .price{
  font-size: 15px;
  font-weight: bold;
  border: 2px solid black;
}

.hostingContent .emailTemplate{
  padding: 5px;
}
.hostingContent .emailTemplate fieldset{
  width: 700px;
  height: 800px;
  padding: 10px;
}

.hostingContent .emailTemplate .border{
  border: solid black 1px;
  height: calc(100% - 10px);
}

.hostingContent .emailTemplate .border div{
  width: 100%;
}

.hostingContent .emailHeader{
  display: flex;
  justify-content: center;
  align-content: center;
  margin-top: 20px ;
}

.hostingContent .emailHeader img{
  width: 200px;
}


.hostingContent .nabidkaContainer, .hostingContainer{
  display: flex;
}

.hostingContent .nabidkaContainer input[type="number"]{
  width: 50px;
}

.hostingContent .nabidkaContainer input{

}

.hostingContent select{
  width: 270px;
      border: 1px solid rgba(0,0,0,0.8);
      border-radius: 5px;
      margin: 0px;
      height: 27px;
 }

.hostingContent .button{
        padding: 0px 7px;
    border-radius: 5px;
    margin: 7px;
    border: transparent 1px solid;
}

.hostingContent .button.add{
  border-color: #3ab122 !important;
  color: white;
  background-color: #3ab122;
  
}

.hostingContent .button.add:hover{
  border-color: #3ab122 !important;
  color: #3ab122;
  background-color: white;
  
}
.hostingContent .button.red{
  border-color: #b12222 !important;
  color: white;
  background-color: #b12222;
}

.hostingContent .button.red:hover{
  color: #b12222;;
  background-color: white;
  border-color: #b12222 !important;
}

.hostingContent .button.save{
  border-color: #2271b1 !important;
  color: white;
  background-color: #2271b1;
}

.hostingContent .button.save:hover{
  color: #2271b1;
  background-color: white;
  border-color: #2271b1 !important;
}

.hostingContent .emailArea input[type="text"]{
  width: 300px;
}

.hostingContent .emailButtons{
  display: flex;
  flex-direction: column;
}

.hostingContent .emailButtons form{
  margin: 5px 0px;
}

.hostingContent .nabidkaContainer span{
  display: flex;
  align-items: center;
  margin: 5px 0px;
}

.hostingContent .hostingContainer label{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px;
}

.hostingContent .hostingContainer .columnData div{
  display: flex;
  align-items: center;
}

.userProfileCards{
 width: 100%;
 position: relative;
}

.userProfile{
  cursor: pointer;
      padding: 10px !important;
    font-size: 16px;
    font-family: Poppins;
    border-radius: 0px;
}

.userProfile.active{
  border-bottom: 0px;
  font-weight: bold;
  z-index: 100;
}

.userProfileDetailContainer,.userProfileLicence{
  margin-top: -2px;
  position: relative;
  z-index: 0;
  height: 100%;
}



.userProfileDetail{
      width: 100%;
    height: calc(100% - 40px);
    display: flex;
}

input.error{
  color: red;
  outline-color: red;
  border-color: red;
}

.addNewUser{
      font-style: italic;
    color: var(--headline-color);
    font-size: 12px;
    align-self: end;
}

.userProfileHeader{
    border-bottom: 1px solid rgba(0,0,0,0.2);
    padding: 0px 100px 10px 10px;
    font-family: var(--headline-font);
    margin-bottom: 20px;
    justify-content: space-between;
}

.userHeaderName{
  font-size: 30px;
  font-weight: bold;
}

.userHeaderDetails{
  color: rgba(0,0,0,0.5);
}

.userHeaderDetails span{
  margin-left: 15px;
}

.addNewProfileInterface,.editLicenceInterface{
      position: relative;
    z-index: 200;
    width: 100%;
    height: 100vh;
    /*background-color: rgba(65,105,225,0.2);*/
}

.addNewProfileContent,.editLicenceContent{
  position: fixed;
  right: -500px;
  width: 500px;
  top:0px;
  height: 100vh;
  background-color: white;
   transition: 0.5s ease;
   -webkit-box-shadow: -2px 0px 6px 0px rgba(0,0,0,0.4);
-moz-box-shadow: -2px 0px 6px 0px rgba(0,0,0,0.4);
box-shadow: -2px 0px 6px 0px rgba(0,0,0,0.4);
justify-content: space-between;
}

.addNewProfileContent.active,.editLicenceContent.active{
  right: 0px;
  transition: 0.5s ease;
}

.addNewProfileContent label,.addNewProfileContent input,.editLicenceContent label,.editLicenceContent input{
  width: 100%;
}

.addNewProfileContent label,.editLicenceContent label{
  margin: 5px;
}

.addNewProfileFooter,.editLicenceFooter{
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  justify-content: end;
}

.userProfileDetailContainer.hidden{
  display: none !important;
}

.userProfileLicence{
  display: none;
}

.userProfileLicence.active{
  display: flex;
}

.userProfileLicenceContent{
    width: 100%;
    height: calc(100% - 40px) !important;
}

.userProfile[userID=licence]{
  position: absolute;
  right:5px;
}

.userProfileLicenceContent .userProfileHeader{
  border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}

.userProfileLicenceDetails fieldset{
  width: 100%;
  margin: 7px;
  border-radius: 5px;
}

.userProfileLicenceDetails fieldset label{
  width: 350px;
  justify-content: space-between;
}

.licensePerMonth{
    overflow-x: auto;
    width: 1600px;
}

.licensePerMonth button{
  margin: 0px 7px;
}

button.yellow{
  background-color: #ffff61;
}

.paymentTable{
  width: 100%;
  border: none;
    border-collapse: collapse;
}

.paymentTable tr th:first-child,.paymentTable tr td:first-child {
  text-align: left;
}

.paymentTable tr th:not(:first-child),.paymentTable tr td:not(:first-child) {
  text-align: right;
}

.bottomLine{
  border-bottom:1px solid rgba(0, 0, 0, 0.3);
  padding-bottom: 5px; 
  margin-bottom: 5px;
}

.profileComments button.button{
  margin-top: 5px;
}

.licencePaymentFooter{
  position: absolute;
  bottom: 0;
  left: 0;
  width: calc(100% - 20px);
  height: 30px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 10px;
}

.licenceProfileData{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.licenceProfileData label:first-child{
  width: 300px;
}

.licenceProfileDataInformative{
      color: #ff5c5c;
    font-size: 11px;
    margin-top: 15px;
}

.licenceProfileDataInformative span{
  display: flex;
}

table .upperTableHeader th{
  text-align: center;
}

table .upperTableHeader .thBorder{
  border-left: solid black 1px;
}

table .upperTableHeader .thBorder:last-child{
  border-right: 1px solid black;
}

table.storeSalesTable tbody tr:nth-child(odd){
  background-color: rgba(0, 0, 0, 0.1);
}

table.storeSalesTable tbody tr:hover{
  outline: 1px solid black;
}

table.storeSalesTable tbody tr:hover td{
  outline: 1px solid black;
}

.storeSalesTabs{
  display: flex;
}

.storeSalesTabs button{
 margin: 0px 5px;
}

.storeSalesTabs button.active{
  background-color: var(--blue);
  color: white;
}

.storeSalesTable tbody tr.disabled{
  filter: brightness(0.4);
}

.storeSalesTable tbody tr.disabled:hover {
  outline: none !important;
}

.storeSalesTable tbody tr.disabled:hover td{
  outline: none !important;
}


.addStoreSales, .monthlyStoreSales,.closeSalesPopup{
  display: none;  
}

.addStoreSales.active, .monthlyStoreSales.active,.closeSalesPopup.active,.dailySales.active{
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
}



.addStoreSales div[step]{
  display: none;
}

.addStoreSales div[step]{
  display: none;
}

.addStoreSales div[step].active{
  display: flex;
  flex-direction: column;
}

fieldset{
  margin: 5px;
}

.additionalRegisterMovement{
  display: none;
  align-items: center;
  justify-content: start;
  margin: 5px 0px;
}

.additionalRegisterMovement.active{
  display: flex !important;
}

.additionalRegisterMovement input{
 margin: 0px 5px;
}

label.orange{color: #ec8200 !important;}
label.green{color:darkgreen !important;}
label.red{color:red !important;}

.stepNext,.stepPrev,.stepDone{
  padding: 8px 20px;
  border-radius: 2px;
}

.stepNext{
  background-color: var(--button-next);
  color: white;
}

.stepDone{
  background-color: var(--light-green);
  color: white;
}

.stepPrev{
  background-color: var(--button-prev);
  color: var(--button-next);
}

[popupcontent]{
  width: 370px;
}

[popupcontent] input[fill]{
  padding: 8px;
  background-color: var(--alabaster);
}

[popupcontent] .header{
    border: none;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--button-next);
    color: white;
    width: calc(100% + 42px);
    margin-left: -21px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -21px;
    border-radius: 5px 5px 0px 0px;
    padding-bottom: 0px;
}

div[buttonDiv]{
  margin-top: 10px;
}

inputHeader{
  font-family: var(--main-font);
  color: black;
  font-size: 14px;
}

div[inputGroup]{
  margin: 6px 10px;
}

[stepHeader]{
  font-size: 16px;
  color: black;
  font-weight: bold;
  font-family: var(--main-font);
  margin: 10px 0px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
}


[stepContentPart]{
  margin: 5px 0px;
}

[stepContentParent]{
  margin: 10px;
}

.grid div[inputGroup]{
  margin: 6px 5px;
}

[removeButton]{
  background-color: var(--light-red);
  color: white;
}


[salesCalendarDays]{
    width: 100%;
    height: 117px;
    outline: 1px solid rgba(0,0,0,0.2);
    color: black;
    background-color: var(--alabaster);
    font-family: var(--main-font);
}

[salesCalendarDaysValue]:hover{
 color: white;
}

[salesCalendarDaysValue][status = red]{
  border-left: solid var(--light-red) 10px;
}
[salesCalendarDaysValue][status = green]{
  border-left: solid var(--light-green) 10px;
}
[salesCalendarDaysValue][status = orange]{
  border-left: solid var(--light-orange) 10px;
}
[salesCalendarDaysValue][status = none]{
  border-left: solid var(--french-gray) 10px;
}


[salesCalendarDaysValue]{
  justify-content: center;
  width: 100%;
  padding-left: 18px;
  border-left: 10px solid rgba(0, 0, 0, 0);
  position: relative; 
  z-index: 2;
  cursor: pointer;
}

[salesCalendarDaysValue][status = red]:after{background-color: var(--light-red);}
[salesCalendarDaysValue][status = green]:after{background-color: var(--light-green);}
[salesCalendarDaysValue][status = orange]:after{background-color: var(--light-orange);}
[salesCalendarDaysValue][status = none]:after{background-color: var(--french-gray);}

[salesCalendarDaysValue]:hover:after{ width: 100%; }
[salesCalendarDaysValue]:after{
  content: "";
  height: 100%; 
  left: 0; 
  top: 0; 
  width: 0px;  
  position: absolute; 
  transition: all 0.3s ease 0s; 
  -webkit-transition: all 0.3s ease 0s; 
  z-index: -1;
}


.salesData .header{
  font-size: 16px;
  font-weight: bold;
}

.salesData{
    display: none;
    flex-direction: column;
    width: 300px;
    justify-content: center;
    font-family: var(--main-font);
    margin-left: 80px;
}

[registerSales],[chitSales]{
  margin: 5px 0px;
}

.salesData.active{
  display: flex !important;
}

.salesHolidayButton{
  display: flex;
  justify-content: end;
      width: 410px;
    font-family: var(--headline-font);
    font-size: 11px;
    color: var(--flash-white);
    text-decoration: underline;
    cursor: pointer;
}


.calendarGrid{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-row-gap: 0px;
    grid-column-gap: 0px;
}


[popup]{display: none;}

[crm_popup]{
  display: none;
}

[crm_popup] .header{
    border: none;
    font-size: 18px;
    font-weight: bold;
    background-color: var(--button-next);
    color: white;
    width: calc(100% + 42px);
    margin-left: -21px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: -21px;
    border-radius: 5px 5px 0px 0px;
    padding-bottom: 0px;
}

[crm_popup].active{
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
}

[crm_popup_content]{
  border-radius: 7px;
  padding: 20px;
  background-color: white;
}


.advanceInvoices td{ 
  padding: 8px 20px !important;
}

.preparedInvoices tbody tr:hover,.advanceInvoices tbody tr:hover{
  outline:1px solid rgba(0, 0, 0, 0.2);
}


[newpopup]{
  display: flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  width: 100%;
  height: 100vh;
}

.invoiceFirm{
  border-left: 1px solid rgba(0, 0, 0, 0.3);
  margin-left: 10px;
  padding-left: 10px;
}

.invoiceButtons{
  border-left: 2px solid rgba(0, 0, 0, 0.3);
  margin-left: 20px;
}

.invoiceItems{
      margin-top: 70px;
    font-size: 12px;
}

.invoiceItems table tbody td{
  outline: 1px solid rgba(0,0,0,0.3);
}

.invoiceItems table tbody tr:nth-child(odd){
  background-color: var(--alabaster);
}

.addInvoiceItem,.paidInvoicePopup{
  font-family: var(--headline-font);
}

.addInvoiceItem [addInvoiceItemContent],.paidInvoicePopup [paidContent]{
  margin: 10px;
}

span.grey{
    color: var(--french-gray);
    padding: 4px 12px;
    background-color: var(--french-gray);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    min-width: 60px;
}

span.red{
    color: var(--red);
    padding: 4px 12px;
    background-color: var(--red);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    min-width: 60px;
}

span.green{
    color: var(--green);
    padding: 4px 12px;
    background-color: var(--green);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    min-width: 60px;
}

span.orange{
    color: var(--light-orange);
    padding: 4px 12px;
    background-color: var(--light-orange);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    min-width: 60px;
}

span.blue{
  color: var(--light-blue);
    padding: 4px 12px;
    background-color: var(--light-blue);
    color: white;
    border-radius: 4px;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    min-width: 60px;
}

.label{
    font-family: var(--main-font);
    font-size: var(--label-text-size);
    padding-bottom: 3px;
    font-style: italic;
    font-weight: 600;
    color: var(--headline-color);
}

.telemarketing{
  border-collapse: collapse;
}



.telemarketing th, .telemarketing td{
  text-align: left;
  padding: 5px 12px 5px 0px;
  padding-left:5px;
}

.telemarketing td:first-child{
  padding-right: 40px;
}

.campaign_progress-bar-container {
  border:1px solid black;
  width: 100%;
  background: #e0e0e0;
  border-radius: 5px;
  height: 12px;
  position: relative;
}
.campaign_progress-bar {
  height: 100%;
  background: #28a745;
  border-radius: 5px;
  transition: width 0.4s ease-in-out;
}

.telemarketing tbody tr:nth-child(odd){
  background-color: rgba(0, 0, 0, 0.05);
}

.campaignStepStatus{
  border: rgba(0,0,0,0.2) solid black;
  border-radius: 3px;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.campaignStepLabel{
  padding-right: 10px;
}
.campaignStepStatus.pending{
  background-color: rgba(0, 0, 0, 0.2);
}
.campaignStepStatus.done{
  background-color: var(--light-green);
}