@font-face {
  font-family: 'Roboto Thin';
  src: url('font/Roboto-Thin.ttf') format('truetype');
  font-weight: 100;
}

@font-face {
  font-family: 'Roboto Light';
  src: url('font/Roboto-Light.ttf') format('truetype');
  font-weight: 300;
}

@font-face {
  font-family: 'Roboto Regular';
  src: url('font/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
}

@font-face {
  font-family: 'Roboto Medium';
  src: url('font/Roboto-Medium.ttf') format('truetype');
  font-weight: 500;
}

@font-face {
  font-family: 'Roboto Bold';
  src: url('font/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
}

@font-face {
  font-family: 'Roboto Black';
  src: url('font/Roboto-Black.ttf') format('truetype');
  font-weight: 900;
}

::-webkit-scrollbar {
  width: 7px;
  height: 7px;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #F5F5F5; 
  border-radius: 5px;
}
 
::-webkit-scrollbar-thumb {
  background: #9A9898; 
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: #8a8989; 
}

html * {
  user-select: none;
  font-family: "Roboto Light";
}

h1, h2, h3, h4, h5, h6{
  font-family: "Roboto Regular";
}

.readonly{
  pointer-events: none;
}

.readonly .insertion-point{
  color: transparent !important;
}

/*

MESSAGES

*/

#alert{
  position: fixed;
  top: 0px;
  left: calc(50% - 150px);
  width: 300px;
  height: fit-content;
  border-radius: 25px;
  z-index: 9999999999999999;
}

#alert-msg{
  padding: 10px;
  line-height: 15px;
}

.success{
  background-color: rgba(235, 255, 232, 1);
  border: 1px solid rgba(108, 255, 81, 1);
}

.error{
  background-color: rgba(255, 202, 202, 1);
  border: 1px solid rgba(235, 0, 0, 1);
}

.statusIcon{
  width: 24px;
  border-radius: 12px;
  padding: 3px;
}

#toast-container{
  position: fixed;
  left: 0;
  bottom: 0px;
  z-index: 9999999999999;
}

.toast{
  margin: 5px;
}

/*

GENERAL RULES

*/

html, 
body,
#wrapper-editor{
  height: 100%; 
}

#loader{
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: white;
  z-index: 99999999999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loading-bar {
  display: none;
}

#createModal.loading-state .loading-bar {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 5px; 
  overflow: hidden;
  background-color: #e0e0e0; 
  border-bottom-right-radius: var(--bs-modal-border-radius);
  border-bottom-left-radius: var(--bs-modal-border-radius);
}

#createModal.loading-state .loading-bar::before {
  content: "";
  display: block;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, transparent, #0053A5, transparent);
  animation: wave 1.5s infinite;
}

@keyframes wave {
  0% {
      transform: translateX(-100%);
  }
  100% {
      transform: translateX(200%);
  }
}

.hidden{
  display: none !important;
}


a{
  color: #0053A5;
}

.registration-warpper{
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.registration-warpper .center{
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 25px;
  box-shadow: 0 0 15px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.registration-warpper h3{
  margin-bottom: 20px;
}

.registration-warpper p, .registration-warpper form{
  margin-bottom: 0px;
}

.registration-warpper img{
  width: 300px;
  margin-bottom: 20px;
}

input[type="text"], input[type="email"], input[type="password"], input[type="number"], input[type="date"], input .multiselect{
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  height: 100%;
  background: white;
  padding: 10px;
}

select, textarea, .multiselect {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  background: white;
  padding: 10px;
  -webkit-appearance: none; 
  -moz-appearance: none;    
  appearance: none;         
}

.template-select-area{
  padding: 10px;
}

.user-select-assign{
  display: flex;
  align-items: center;
  justify-content: center; 
  padding: 5px;
  gap: 5px;
}

.left-wrapper hr{
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-top: 5px;
  margin-bottom: 5px;
}

.select-search-template-input-wrapper{
  display: flex;
  align-items: center;
}

.tool-btn{
  width: 32px;
  height: 32px;
  padding: 5px 15px;
  justify-content: center;
}

.multiselect{
  min-height: 40px;
  display: flex;  
  flex-wrap: wrap;
}

.multiselect img{
  margin-left: auto;
}

.multiselect-item-container{
  width: 90%;
  display: flex;
  flex-wrap: wrap;
}

.multiselect-item-search{
  width: 100%;  
}

.children-container-cascade {
  margin-left: 20px;
  padding-left: 10px;
  border-left: 1px solid #ccc;
}

.subsection-container{
  margin-left: 20px;
}

.subsection-content-wrapper{
  margin-top: 5px;
  margin-left: 16px;
}

.top-bar{
  height: 75px;
  width: 100%;
  padding-left: 10px;
  display: flex;
  position: relative;
  align-items: center;
  box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
  padding-right: 10px;
  background-color: white;
  z-index: 9;
}

.content-wrapper{
  height: calc(100% - 75px);
  display: flex;
  overflow: hidden;
}

.side-bar{
  width: 100px;
  height: 100%;
  box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
}

.side-item{
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
  opacity: 0.7;
}

.side-item.active{
  opacity: 1;
  box-shadow: inset 0 0 5px #0053A5;
}

.side-item.active .side-item-wrapper{
  transform: scale(0.95);
}

.side-item:hover{
  opacity: 1;
  background-color: #e9e9e9;
  cursor: pointer;
}

.side-item-wrapper{
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  display: flex;
  width: 100px;
  height: 100px;
  transition: transform 0.1s ease;
}

.side-item-wrapper:hover{
  transform: scale(0.95);
}

.side-item-img{
  width: 30px;
}

.side-item-title{
  position: absolute;
  width: 100%;
  text-align: center;
  bottom: 0;
  margin: 0px;
  font-size: small;
  font-family: "Roboto Bold";
}

.main-page{
  width: calc(100% - 100px);
  height: 100%;
  position: relative;
}

.modal-content{
  max-height: 75vh;
}

.modal-body{  
  overflow-y: auto;
}

#settingsArea{
    padding: 20px;
    width: 1000px;
    padding-bottom: 3rem;
    margin: auto;
}

#settingsAreaWrapper{
  width: 100%;
  height: 100%;
  overflow-y: auto; 
}

#settingsArea * {
  font-family: 'Roboto Regular';
}

#settingsArea h4{ 
  padding-left: 0px;
}

#settingsArea h5{ 
  padding-top: 0.5rem;
}

#settingsArea .row{   
  background-color: rgba(202, 219, 255, 0.5);
  border-radius: 3px;
  padding: 5px;
  margin: 5px;
}

#settingsArea .col, #settingsArea .col-4{  
  border-right: 1px solid rgb(163, 163, 163);
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;   
}

#settingsArea .col:last-child, #settingsArea .col-4:last-child{   
  border-right: 0px solid black;
}

#settingsArea .row-header-props .col, #settingsArea .row-header-props .col-4{   
  text-align: center;
  border-right: none;
}

.row-header-props{  
  background-color: white !important; 
}

.disabled-prop{
  background-color: rgba(224, 224, 224, 0.3) !important;
}

.properties-wrapper{
  transition: max-height 0.3s ease;
  overflow: hidden;
}

.collapsed-props{  
  cursor: pointer;
}

.collapsed-props::before {
  content: url("img/caret-right.svg");
  display: inline-block;
  transition: transform 0.3s ease;
  cursor: pointer;
  margin-right: 5px;
}

.expanded-props::before {
  transform: rotate(90deg);
}

.collapsed-props-wrapper{
  max-height: 0px !important;
  overflow: hidden;
}

#selectDefaultLang{
  width: 100px;
  height: 40px;
  display: flex;
  padding: 5px;
  text-align: center;
}

#langContainer{
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.multi-value-container{
  display: flex;
  flex-wrap: wrap;
}

.data-source-wrapper{
  margin-bottom: 20px;
  padding: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.cascade-header-wrapper, .propertie-header-wrapper{
  display: flex;
  align-items: center;
}

.disabled{
  opacity: 0.5;
  pointer-events: none;
}

.delete-icon{
  cursor: pointer;
}

.delete-item-btn{
  margin-top: 0px;
  margin-left: 5px;  
  border-radius: 20px;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center;
  align-items: center;

}

.render-select, .datasource-select{
  border-radius: 5px;
  padding: 1px;
  height: 26px;
}

.add-icon{  
  background-color: rgb(22 165 0 / 50%);
  padding: 5px;
  border-radius: 20px;
  display: block;
  margin: auto;
  cursor: pointer;
}

#searchArea .data-item{
  padding: 2px;
  margin: 2px;
  font-size: smaller;
  font-family: "Roboto Regular";
}

.data-item, .cascade-name{
  min-width: 40px;
  border-radius: 3px;
  background-color: rgba(202, 219, 255, 0.5);
  margin: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  padding: 5px;
  position: relative;
}

.add-cascade-item-btn{
  height: 30px;
  width: 30px;
  position: relative;
  background-color: transparent;
  color: #0053A5;
  border-radius: 20px;
}

.add-cascade-item-btn:hover{
  background-color: #0052a57a;
  color: white;
}

.add-cascade-item-btn::before{
  content: "+";
  position: absolute;
  left: 0px;
  top: 0px;
  height: 30px;
  width: 30px;
  line-height: 30px;
}

.data-datacource-item{
  background-color: rgba(202, 219, 255, 0.5);
  cursor: text;
}

.content-element{
  min-width: 20px;
  cursor: text;
  text-align: center;
}

.delete-icon-data{
  position: absolute;
  right: -10px;
  top: -10px;
  cursor: pointer;
  border-radius: 15px;  
  background-color: rgba(255, 202, 202, 0.5);
  display: none;
  z-index: 9999;
}

.data-datasource-item:hover .delete-icon-data{
  display: block;
}

.drag-icon{
  cursor: grab;
}

.active-lang{
  background-color: rgba(202, 219, 255, 0.5);
}

.unactive-lang{
  background-color: rgba(161, 161, 161, 0.5);
}

.active-lang::after {
  content: "";
  background: url(img/check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: 1px;
  right: 1px;
  background-color: rgba(235, 255, 232);
  border-radius: 8px;
}

.main-page h4{
  padding-left: 20px;
  padding-right: 20px;
  padding-top: 20px;
}

#loadingSettingsWrapper{
  position: absolute;
  width:calc(100% - 40px);
  height: calc(100% - 40px);
  background-color: white;
}

#loading-main-page, #loading-settings-page, #loading-home-page{
  position: absolute;
  width: 80px;
  height: 80px;
  left: 50%;
  top: 50%;
  margin-top: -40px !important;
  margin-left: -40px !important;
  border-width: 7px;
}

.context-menu{
  position: absolute;
  background-color: white;
  box-shadow: 0px 0 5px rgba(0, 0, 0, 0.3);
  z-index: 1;
  min-width: 200px;
}

.context-menu-item{
  box-shadow: 0px 0 1px rgba(0, 0, 0, 0.2);
  padding: 4px;
  height: 30px;
  display: flex;
  align-items: center;
}

.context-menu-item img{
  margin-right: 3px;
}

.col-input-list{
  position: fixed;
  z-index: 99;
  background-color: white;
  box-shadow: 0px 0 5px rgba(0, 0, 0, 0.1);
  width: 200px;
}

.col-input-list-item{
  box-shadow: 0px 0 1px rgba(0, 0, 0, 0.1);
  padding: 2px;
  height: 30px;
  display: flex;
  align-items: center;
}

.col-input-list-item:hover{
  background-color: #ccc;
}

.col-input-list-item p{
  margin: 0px;
  padding: 5px;
}

.col-input-list-item input{
  margin-left: auto;
}

.context-menu-item:hover{
  background-color: #ccc;
}

.context-menu-item p{
  margin: 0px;
  display: flex;
  align-items: center;
}

input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 0;
  box-shadow: unset;
  border: 1px solid #0053A5 !important;
}

.active-select input, .multiselect.active{
  border-bottom-left-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.multiselect.active{
  border-bottom: none;
  border-color: #0053A5;
}

.multiselect-item-search{  
  border-left: 1px solid #0053A5;
  border-right: 1px solid #0053A5;
  border-bottom: 1px solid #0053A5;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;

  padding: 10px;
}

.option-container{
  position: absolute;
  top: 40px;
  width: 100%;
  background-color: white;
  z-index: 123123;
  border-left: 1px solid #0053A5;
  border-right: 1px solid #0053A5;
  border-bottom: 1px solid #0053A5;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0px 10px 0px 10px;
  display: flex;
  max-height: 200px;
  overflow-y: auto;
  flex-direction: column;
}

.option-container-comment {
  position: absolute;
  top: 50px;
  width: calc(100% + 2px);
  background-color: white;
  z-index: 123123;
  border-left: 1px solid #0053A5;
  border-right: 1px solid #0053A5;
  border-bottom: 1px solid #0053A5;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 0px 10px 0px 10px;
  display: flex
;
  max-height: 200px;
  overflow-y: auto;
  flex-direction: column;
}

.option-container-option{
  width: 100%;
  padding: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

.option-container-option:hover{
  background-color: rgba(0, 0, 0, 0.25);
}

.option-container-option:last-child{
  border-bottom: none;
}

.locked-obj::before{
  content: url("img/lock-fill.svg");
  display: block;
  position: absolute;
  margin: auto;
  padding: 10px;
}

.tabGroup{
  height: 30px;
  width: fit-content;
  text-align: left;
  vertical-align: middle;
  border-radius: 15px;
}

.tab{
  padding-left: 20px;
  padding-right: 20px;
  height: 100%;
  float: left;
  position: relative;
}

.tab:nth-child(n+2) {
 margin-left: 5px;
}

.tab:hover{
  background-color: #9A9898;
  border-radius: 15px;
}

.tabActive{
  box-shadow: inset 0px 0px 4px;
  border-radius: 15px;
}

.ui-btn{
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: white;
  width: 50px;
  height: 50px;
  border-radius: 25px;  
  transition: transform 0.1s ease;
}

.ui-btn-small{
  border: none;
  color: white;
  display: flex;
  border-radius: 20px;
  transition: transform 0.1s ease;
  align-items: center;
  background-color: #0053A5;
  font-family: "Roboto Regular";
  box-shadow: 0px 0 5px rgba(0, 0, 0, 0.1);
}

.ui-btn-align-left{
  margin-right: auto;
}

.ui-btn-align-center{
  margin: auto;
}

.ui-btn-align-right{
  margin-left: auto;
}

.ui-btn:hover{
  transform: scale(0.95);
  background-color: #0053A54b;
}

.ui-btn-small:hover{
  transform: scale(0.95);
}

.ui-btn-icon{
  height: 25px;
}

.page-item{
  cursor: pointer;
}

.page-item.disabled{
  cursor: unset;
}

.ui-search-wrapper{
  position: absolute;
  top: 16px;
  left: calc(50% - 250px);
  z-index: 1;
}

.ui-search-bar{
  width: 500px;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  position: relative;
  background-color: white;
}

.ui-search-input{
  width: 100%;
  height: 100%;
  background: white;
  border: none;
  border-radius: 8px;
  padding: 10px;
}

.ui-search-icon{
  position: absolute;
  right: 10px;
  height: 20px;
  top: 8px;
  opacity: 0.7;
  pointer-events: none;
}

.ui-search-datalist-item{
  font-size: 19px;
  line-height: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  padding-left: 10px;
  padding-right: 10px;
}

.ui-search-datalist-item:last-child{
  font-size: 19px;
  line-height: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.ui-search-datalist-item:hover{
  background-color: #e9e9e9;
}

.main-page-wrapper{
  display: flex;
  height: 100%;
  overflow: hidden; 
}

.ui-expanded{
  width: 20vw;
  max-width: 25vw;
}

.ui-collapsed{
  width: 0px;
  position: relative;
}

.ui-collapsed > :not(.ui-expand-button){
  display: none;
  opacity: 0 !important;
}

.left-wrapper > :not(.ui-expand-button){
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}
/*
#rightWrapper{
  user-select: all;
}*/

.right-wrapper > :not(.ui-expand-button){
  visibility: visible;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.ui-collapsed .ui-expand-button{
  position: absolute;
}

.ui-collapsed .ui-left{
  right: -40px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-bottom-right-radius: 20px;

  transition: right 0.3s ease-in-out;
}

.ui-collapsed .ui-right{
  left: -40px;
  box-shadow: -5px 5px 5px rgba(0, 0, 0, 0.1);
  z-index: 1;
  border-bottom-left-radius: 20px;

  transition: left 0.3s ease-in-out;
}

.ui-right{
  position: absolute;
  left: 0px;
}

.ui-left{
  position: absolute;
  right: 0px;
}

.left-wrapper{
  height: 100%;
  display: flex;
  position: relative;
  transition: width 0.3s ease-in-out;
  flex-direction: column;  
  box-shadow: 5px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.left-wrapper input, #publishFrom input{
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  height: 100%;
  background: white;
  padding: 10px;
  height: 40px;
}

.left-wrapper select, #publishFrom select{
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 8px;
  background: white;
  padding: 5px;
  height: 40px;
}

.left-wrapper textarea, #publishFrom textarea{
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  background: white;
  border-radius: 20px;
  padding: 10px;
}

.extended-search-field{
  display: flex;
  position: relative;
  margin-bottom: 15px;
  gap: 5px;
}

.extended-search-field:last-child{
  margin-bottom: 0px;
}

.left-wrapper select:focus-visible{
  box-shadow: none;
  outline: 0;
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.extended-search-field-name{
  position: absolute;
  left: 20px;
  top: -6px;
  padding-left: 4px;
  padding-right: 4px;
  line-height: 12px;
  font-size: 12px;
  font-family: "Roboto Medium";
  background-color: white;
}

.extended-search-field-operator-select{
  width: 30% !important;
  text-align: center;
}

.main-content-wrapper{
  min-width: 50%;
  flex: 1;
  height: 100%; 
  position: relative;
}

.ui-create-button{
  position: absolute;
  right: 20px;
  bottom: 20px;
  background-color: #008d008c !important;
  box-shadow: inset 0 0 5px #030303;
}

.right-wrapper{
  height: 100%; 
  display: flex;
  position: relative;

  transition: width 0.3s ease-in-out;
  flex-direction: column;
  align-items: end;
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.1);
  z-index: 3;
}

.ui-expand-button{
  width: 40px;
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0);
  background-color: transparent;
  transition: transform 0.1s ease;
}

.ui-expand-button:hover{
  transform: scale(0.95);
  background-color: transparent;
}

#iconType{
  width: 28px;
}

#main-page-content{
  width: 100%;
  height: calc(100% - 110px);
  position: relative;
}

#main-page-content .col{
  min-width: 200px;
}

#main-page-content .row{
  flex-wrap: nowrap;
}

.row{
  --bs-gutter-x: 0; 
}

.obj_media{
  width: 100%;
  height: auto;
}

#content-wrapper-results{
  position: relative;
  height: 100%;
  width: 100%;
  overflow: auto;
}

.content-result-row{
  cursor: pointer;
  z-index: -2;
  font-size: 14px;
}

.content-result-row .col{  
  padding-left: 10px;
  padding-right: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 4px;
  padding-bottom: 4px;
  display: flex;
  align-items: center;
  word-break: break-word;
  justify-content: left;
}

.content-result-row .col:first-child{  
  padding-left: 30px;
}

.content-result-row:hover{
  background-color: rgba(0, 0, 0, 0.1);
}

.content-result-row:first-child{
  border-top: none;
}

.item-properties-list{
  max-width: 100%;
  width: 100%;
  height: calc(100% - 96px);
  word-break: break-all;
  overflow: auto;
  padding: 10px;
}

#attributes{  
  height: 40%;
}

#elements{
  height: 60%;
}

#elements h6{
  margin: 0px;
  font-size: 80%;
  font-family: 'Roboto Bold';
}

.item-properties-list .row{
  min-height: 18px;
}

.item-propertie{
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;  
  font-family: "Roboto Regular";
}

.item-properties-list .row:first-child .item-propertie{
  border-top: none !important; 
}

.item-value{
  font-size: smaller;
  display: flex;
}

.history-item{
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 5px;
  line-height: 16px;
  border-radius: 5px;
}

.history-item:hover{  
  background-color: #e9e9e9;
  cursor: pointer;
}

.history-item *{  
  user-select: none !important;
}

.history-item:first-child{
  border-top: none;
}

.history-heading *{
  font-style: normal;
}

.history-heading{
  
}

.history-action{
  font-family: "Roboto Bold";
  text-decoration: none;
}

.history-time{
font-size: small;
}

.history-user{
  font-size: small;
}

.history-changes img{
  height: 12px;
}

.history-changes{
  font-size: small;
}

/**

focused

**/


.options{
  margin-left: 45px;
  margin-right: 45px;
  position: relative;
  height: 60px;
  align-items: center;
  display: flex;
}

.info{
  position: relative;
  height: 50px;
  align-items: center;
  justify-content: center;
  background: white;
  gap: 5px;
  display: flex;
  box-shadow: 0 -5px 5px rgba(0, 0, 0, 0.1);
  z-index: 2;
} 

.info ul{
  margin-bottom: 0;;
}

#objCount{
  position: absolute;
  top: 12px;
  left: 10px;
}

.nav-wrapper #objCount{
  top: 8px;
}

.nav-wrapper{
  position: relative;
  width: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.header-row{
  height: 40px;
  position: sticky;
  top: 0px;
  z-index: 1;
  background-color: white;
}

.header-row .col{
  height: 100%;
  display: flex;
  align-items: center;
  font-size: large;
  font-family: "Roboto Bold";
  padding-left: 30px;
  padding-right: 30px;
  justify-content: center;
  position: relative;  
  background-color: white;
}

.header-row .col:hover::before{    
  content: url(img/arrow-down.svg);
  position: absolute;
  left: 10px;
}

.header-row .col.sortDESC::before{  
  content: url(img/arrow-down.svg);
  position: absolute;
  left: 10px;
}

.header-row .col.sortDESC:hover::before{    
  content: url(img/arrow-up.svg);
  position: absolute;
  left: 10px;
}

.header-row .col.sortASC::before{    
  content: url(img/arrow-up.svg);
  position: absolute;
  left: 10px;
}

.header-row .col.sortASC:hover::before{    
  content: url(img/arrow-down.svg);
  position: absolute;
  left: 10px;
}

.manager-input{
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.5);
  border-radius: 20px;
  height: 100%;
  background: white;
  border-radius: 20px;
  padding: 10px;
}

.file-upload{
  width: calc(100% - 10px);
  height: 300px;
  position: relative;
  margin: 5px;
  margin-bottom: 10px;
}

.preview-container{
  display: flex;
  position: absolute;
  top: 0px;
  overflow-y: auto;
  flex-wrap: wrap;
  margin: 5px;
  max-height: calc(100% - 20px);
}

.preview-container img, .preview-container video{
  width: calc(33% - 10px);
  object-fit: cover;
  margin: 5px;
  border: 1px solid #ccc;
  padding: 5px;
  border-radius: 5px;
}

.upload-icon{
  width: 30px;

  position: absolute;
  left: 50%;
  top: 50%; 
  margin-left: -15px;
  margin-top: -15px;

  pointer-events: none;  
}

.preview{
  overflow: scroll;
  height: 100%;
  width: 100%;
}

.load-more{
  font-size: small;
  text-align: center;
  margin: 5px;
  color: var(--bs-blue);
  cursor: pointer;
}

.dropzone{
  border: 2px dashed #ccc;
  border-radius: 10px;
  width: 100%;
  height: 100%;
  margin-bottom: 10px;
}

.dropzone input{
  width: 100%;
  height: 100%;
  cursor: pointer;
  opacity: 0;
}

.btn-bar-search, .btn-bar-detailsmode{
  height: 50px;
  padding: 5px;
  width: 100%;
  display: flex;
  justify-content: end;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

#importSearchModal, #importSearchModal .modal-content{
  min-width: 95vw;
  min-height: calc(90vh - 75px);
}

.job-wrapper{
  position: relative;
  display: contents;
}

.job-content{
  position: absolute;
  width: 400px;
  height: 200px;
  background-color: white;    
  z-index: 99;
  overflow-y: scroll;
  word-break: break-all;
  right: 150px;
  top: 50px;
  box-shadow: 00px 0px 5px;
  border-radius: 5px;
  padding-top: 5px;
  padding-bottom: 5px;
  cursor: pointer;
}

.job-item-wrapper{ 
  margin: 8px;
  padding: 2px;
  display: flex;
  box-shadow: 0px 0px 3px;
  flex-wrap: wrap;
  align-items: center;  
  border-radius: 5px;
}

.job-subitem-wrapper{
  padding-left: 5px;
  padding-right: 5px;
  border-bottom: 1px solid black;
}

.job-subitem-wrapper:last-child{
  border-bottom: 0px solid black;
}

.job-item-id, .job-subitem-id{
  font-size: x-small;
  font-family: 'Roboto Light';
  text-align: end;

  flex: 1 1 calc(50% - 10px);
  box-sizing: border-box; 
}

.job-item-date, .job-subitem-date{
  font-size: xx-small; 
  font-family: 'Roboto Medium';

  flex: 1 1 calc(50% - 10px);
  box-sizing: border-box; 
}

.job-item-message, .job-subitem-message{
  font-size: small;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 3; 
  line-clamp: 3; 
  word-break: keep-all;
  font-size: small;
  flex-basis: calc(100% - 25px); 
  box-sizing: border-box;
  white-space: pre-line; 
  position: relative;
}

.type-completed.collapsedJob, .statusIcon.completed{
  background-color: rgba(235, 255, 232, 0.5) !important; 
}

.type-queued.collapsedJob, .type-in_progress, .statusIcon.in_progress, .statusIcon.queued {
  background-color: rgb(202, 219, 255, 0.5) !important;
}

.type-error.collapsedJob, .statusIcon.error{
  background-color: rgba(255, 202, 202, 0.5) !important;
}

.type-warning.collapsedJob, .statusIcon.warning{
  background-color: rgba(244, 255, 202, 0.5) !important;
}

.expandedJob.type-completed, .expandedJob.type-queued, .expandedJob.type-error, .expandedJob.type-in_progress{
  background-color: rgba(224, 224, 224, 0.3);
  border: 0px solid #0053A5;
}

.type-completed.collapsedJob::after{
  content: url("img/check.svg");
}

.type-queued.collapsedJob::after, .type-in_progress.collapsedJob::after{
  content: url("img/loading.svg");
}

.type-error.collapsedJob::after{
  content: url("img/x.svg");
}

.type-warning.collapsedJob::after{
  content: url("img/x.svg");
}

.collapsedJob .job-item-messages{
  display: none;
}

.expandedJob{  
  border: 1px solid #0053A5;
}

.processing-que, .error-que, .completed-que, .warning-que {
  position: relative; 
}

.processing-que::after {
  content: "";
  background: url(img/loading.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: 2px;
  right: 2px;
  background-color: rgb(202, 219, 255);
  border-radius: 8px;
}

.error-que::after {
  content: "";
  background: url(img/x.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: 2px;
  right: 2px;
  background-color: rgba(255, 202, 202);
  border-radius: 8px;
}

.warning-que::after{
  content: "";
  background: url(img/exclamation-diamond.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: 2px;
  right: 2px;
  background-color: rgba(244, 255, 202);
  border-radius: 8px;
}

.completed-que::after {
  content: "";
  background: url(img/check.svg) no-repeat center center;
  background-size: contain;
  position: absolute;
  width: 12px;
  height: 12px;
  bottom: 2px;
  right: 2px;
  background-color: rgba(235, 255, 232);
  border-radius: 8px;
}

.job-item-messages{  
  flex-basis: 100%;       
  flex: 1 1 calc(50% - 10px); 
  box-sizing: border-box;    
  max-width: 100%;
}

.obj_publication::before{
  content: url("img/globe.svg");
  margin: 5px;
  vertical-align: middle;
}

.selected{
  background-color: rgba(0, 0, 0, 0.05);
}

*:focus-visible{
  outline: none;
}

@keyframes pulse {
  0% {
      font-size: 100%;
  }
  50% {
    font-size: 105%
  }
  100% {
    font-size: 100%
  }
}

@media (max-height: 1000px) {
  .main-page{
    width: calc(100% - 75px);
  }

  .side-bar{
    width: 80px;    
  }

  .side-item-wrapper{
    width: 80px;
    height: 80px;
  }

  .log-item{
    bottom: 80px; 
  }

  .side-item-title{
    font-size: x-small;
  }

  .extended-search-field-name{
    font-size: 10px;
  }

  .left-wrapper input, #publishFrom input{
    height: 30px;
  }

  .left-wrapper select, #publishFrom select {
    height: 30px;
  }

  .option-container{
    top: 30px;
  }

  .multiselect{
    min-height: 30px;
  }

  * {
    font-size: 12px;
  }
}

.pulsing {
  animation: pulse 0.5s ease-in-out;
}

#newLangBody .col ,#newReviewBody .col, #newReleaseBody .col{
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  padding: 2px;
  font-size: smaller;
  display: flex;
  align-items: center;
  justify-content: center;
}

#newLangBody .col:nth-child(1) ,#newReviewBody .col:nth-child(1), #newReleaseBody .col:nth-child(1){
  min-width: 35%;
}

#newLangBody .col:nth-child(2) ,#newReviewBody .col:nth-child(2), #newReleaseBody .col:nth-child(2){
  min-width: 20%;
}

#newLangBody .col:nth-child(3) ,#newReviewBody .col:nth-child(3), #newReleaseBody .col:nth-child(3){
  min-width: 10%;
}

#newLangBody .col:nth-child(4) ,#newReviewBody .col:nth-child(4), #newReleaseBody .col:nth-child(4){
  min-width: 30%;
}

#newLangBody .col:nth-child(5) ,#newReviewBody .col:nth-child(5), #newReleaseBody .col:nth-child(5){
  min-width: 5%;
}

#newLangBody .row, #newReviewBody .row, #newReleaseBody .row{
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

#newLangBody .col:last-child, #newReviewBody .col:last-child, #newReleaseBody .col:last-child{
  border-right: 0px;
}

#newLangBody .row:last-child, #newReviewBody .row:last-child, #newReleaseBody .row:last-child{
  border-bottom: 0px;
}

.dialog-container{
  margin-bottom: 15px;
  padding: 5px;
}

.dialog-container .col{
  width: 25%;
}

.loading img{
  width: 20px;
}

button:disabled {
  background-color: rgba(0, 0, 0, 0.1) !important;
}

.element-icon, .element-swap-icon{
  height: 22px;
  margin: 5px;
  display: inline-block;
  width: unset;
}

.element-swap-icon{
  padding: 3px;
  border-radius: 3px;
}

.element-swap-icon:hover{
  background-color: #ccc;
}

.tree-icon{
  height: 22px;
  margin: 5px;
  display: inline-block;
  width: unset;
}

.loading-preview-container{
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-preview-container::before{
  content: url(img/loading.svg);
  position: absolute;
  width: 48px;
  height: 48px;
  left: calc(50% - 24px);
  top: calc(50% - 24px);
}

.cascade-container, .propertie-container {
  margin-bottom: 20px;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.propertie-container {
  margin: 10px;
}

.cascade-content-wrapper, .sub-data-wrapper {
  transition: max-height 0.4s ease;
}

.object-wrapper{
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.1);
}

.cascade-header, .data-source-name, .propertie-header {
  font-size: 18px;
  font-family: 'Roboto Regular' !important;
  border-radius: 4px;
  width: 100%;
  box-sizing: border-box;
  cursor: text;
  min-height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.toggle-span{
  padding: 5px;
  border-radius: 20px;
  width: 26px;
  height: 26px;
  display: inline-block;
  margin-left: 10px;

  text-align: center;
}

.toggle-span:hover{
  background-color: #ccc;
}

.cascade-name{
  display: inline-block;
  margin-left: 10px;
  cursor: text;
}

.data-wrapper {
  margin-left: 0px;
  padding-left: 10px;
  border-left: 2px solid #ddd;
}

.cascade-data-item {
  border-radius: 3px;
  position: relative;
  cursor: pointer;
  box-sizing: border-box;
  line-height: 30px;
}

.cascade-data-item[contenteditable="true"] {
  cursor: text;
  min-height: 30px; 
}

.name-wrapper{
  display: inline-block;
  position: relative;
}

.name-wrapper:hover .delete-icon-data{
  display: block;
}

.sub-data-wrapper {
  margin-left: 20px; 
  padding-left: 10px;
  border-left: 2px dashed #ddd;
}

button {
  padding: 5px 10px;
  background-color: #0053A5;
  color: white;
  border: none;
  border-radius: 3px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

.add-main-element-button {
  margin-top: 15px;
}

.delete-icon-data {
  width: 20px;
  height: 20px;
  cursor: pointer;
  float: right;
}

.cascade-container:not(:last-child) {
  margin-bottom: 20px;
}

.value-display-div {
  border: 1px solid #ccc;
  padding: 5px;
  min-height: 30px;
  cursor: pointer;
  display: flex;
  flex-wrap: wrap;
}

.option-label {
  display: inline-block;
  margin-left: 10px;
}

.toggle-icon {
  cursor: pointer;
  display: inline-block;
}

.preview-true #obj-properties{
  height: calc(50% - 93px);
}

.preview-true #obj-properties *, #obj-preview *{
  user-select: text;
}

#obj-properties img{
  width: 20px;
}

.properties-tabs{
  height: 30px;
  width: 100%;
}

.properties-tab{
  margin: 3px;
  padding: 3px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  width: 24px;
  height: 24px;
  cursor: pointer;
  border-radius: 3px;
}

.properties-tab.active{
  box-shadow: inset 0 0 2px #0053A5;
}

#obj-preview{
  display: none;
  overflow: auto;
}

.preview-true hr{
  border-top: 1px solid rgba(0, 0, 0, 0.1); 
  width: 100%;
}

.preview-true #obj-preview{
  display: block;
  position: relative;
  height: calc(50% - 43px);
}

.requiredChar{
  color: red;
  margin-left: 5px;
}

.verical-line {
  display: inline-block;  
  width: 1px;                 
  height: 40px;             
  background-color: #ccc;     
  margin: 5px 10px;          
}

.editor-pallete{  
  display: flex;
  align-items: center;
}

.hide-bar .verical-line{
  display: none;
}

.langcode{  
  justify-content: center;
  display: flex;
  align-items: center;
  font-family: 'Roboto Regular';
}

.langProgressBar{
  text-align: center;
  position: relative;
}

.langProgressBarVisual {
  position: absolute;
  top: calc(50% - 8px);
  left: var(--left);
  width: var(--percentage);
  height: 16px;
  z-index: 0;
}

.langProgressBarVisual:nth-child(2){
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

.langProgressBarVisual:last-child{
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.editState{
  background-color: #00039c61;  
}

.reviewState{
  background-color: #929c0061;  
}

.translationState{
  background-color: #9c000861;  
}

.releasedState{
  background-color: #009c0661;  
}

.inputIcon{
  position: absolute;
  height: 24px;
  top: calc(50% - 12px);
  right: 8px;
  cursor: pointer;
}

#objName{
  margin-bottom: 0px;
}