.body {
  margin: 0;
  font-family: sans-serif;
  font-size: 10pt;
  background-color: #191e2a;
}

.pageDiv {
  position: absolute;
  width: 100%;
  height: -webkit-fill-available;
  display: flex;
  flex-direction: column;
}

.headerDiv {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 40px;
  background-color: #444d63;
}

.brandingDiv {
  margin: 10px 10px 4px 14px;
}

.brandLogo {
  width: 100px;
}

.profileDiv {
  margin: auto 10px;
}

.userProfileIcon {
  font-size: 16pt;
  font-weight: 200;
  background-color: #7886aa;
  width: 28px;
  height: 28px;
  line-height: 1.4;
  text-align: center;
  border-radius: 17px;
  color: #fafafa;
  cursor: pointer;
}

.userProfileIcon:hover {
  color: #ffffff;
  background-color: #91a2ce;
}

.userProfileBG {
  position: absolute;
  margin: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}

.userProfileDiv {
  position: absolute;
  right: 10px;
  top: 50px;
  border: 1px solid #444d63;
  display: flex;
  flex-direction: column;
  background-color: #444d63;
  box-shadow: rgb(100 100 111 / 20%) 0px 7px 29px 0px;
}

.userProfileIconDiv {
  margin: 20px 100px 15px 100px;
  color: #888888;
  background: #fafafa;
  font-size: 30pt;
  font-weight: 200;
  border-radius: 50px;
  border: 1px solid #d0d0d0;
  width: 50px;
  height: 50px;
  text-align: center;
}

.userProfileRow {
  margin: 10px 0;
  border-top: 1px solid #7886aa;
}

.userProfileRowLabel {
  margin: 10px 20px 0 20px;
  font-size: 8pt;
  font-weight: 600;
  color: #a6dbf0;
}

.userProfileRowValue {
  margin: 0 30px;
  text-align: center;
  color: #ffffff;
}

.userProfileRowActions {
  display: flex;
  flex-direction: row;
  justify-content: end;
  margin-top: 10px;
  border-top: 1px solid #e0e0e0;
  background-color: #fafafa;
}

.contentDiv {
  margin: 40px 0px 22px 0px;
  height: calc(100% - 62px);
  display: flex;
  flex-direction: row;
  justify-content: center;
  overflow-y: auto;
}

.contentDiv::-webkit-scrollbar {
  width: 10px;
}

.footerDiv {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: #3c3c3c;
  font-size: 10pt;
  text-align: center;
  padding: 3px 10px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  color: #999999;
}

.footerStatusLeft {
  min-width: 100px;
  text-align: left;
}

.footerStatusBarIcon {
}

.footerStatusBarText {
}

.footerCopyright {
}

.footerStatusRight {
  min-width: 100px;
  text-align: right;
}

.loginDiv {
  width: 280px;
  align-self: center;
  justify-self: center;
  color: #aeb0b2;
  background-color: #2b2f3e;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.loginTitle {
  margin: 20px 20px;
  font-size: 20pt;
  font-weight: 200;
  color: #aeb0b2;
}

.loginRow {
  margin: 10px 30px;
}

.loginRow:nth-child(5) {
  text-align: center;
}

.loginRowLabel {
  font-size: 8pt;
  font-weight: 600;
  color: #aeb0b2;
}

.loginSeperator {
  border-top: 1px solid #7a88a9;
  border-bottom: 1px solid #4e5970;
  border-left: none;
  border-right: none;
}

.loginAUXActions {
  border: none;
  /* display: flex; */
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.rememberMeView {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.passwordStrength {
  letter-spacing: 1;
  user-select: none;
  cursor: none;
}

.loginAUXForgot {
  letter-spacing: -1;
  user-select: none;
  cursor: pointer;
}

.loginAUXForgot:hover {
  text-decoration: underline;
}

.loginInfoBox::before{
  content: "\2139";
  margin: 2px;
}

.loginInfoBox{
  overflow: hidden;
  font-size: 10pt;
  color: yellow;
  text-align: start;
  min-height: 32px;
}

.loginMessageBox {
  overflow: hidden;
  font-size: 10pt;
  color: red;
  text-align: center;
  min-height: 32px;
}

.buttonDesign {
  width: 100%;
  padding: 10px 20px;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  outline: none;
  user-select: none;
}

.buttonDesign:disabled {
  cursor: default;
  color: #999999;
  background-color: #d0d0d0;
}

.buttonDesign:hover {
  background-color: #f8f8f8;
}

.buttonDesign:active {
  color: #666666;
  background-color: #e0e0e0;
}

.buttonDesignPrimary:hover {
}

.buttonDesignPrimary {
  color: #aeb0b2;
  background-color: #161d27;
}

.buttonDesignPrimary:hover {
  color: #ffffff;
  background-color: #0c0f14;
}

.buttonDesignPrimary:active {
  color: #f0f0f0;
  background-color: #0c0f14;
}

/* //DELTE BUTTON */
.buttonDelete {
  color: #aeb0b2;
  background-color: #6d1515;
}

.buttonDelete:hover {
  color: #ffffff;
  background-color: #8c1a1a;
}

.buttonDelete:active {
  color: #f0f0f0;
  background-color: #909090;
}

.buttonDesignPrimary:disabled {
  cursor: default;
  color: #999999;
  background-color: #d0d0d0;
}

.textboxDesign {
  width: 100%;
  padding: 10px 5px 5px 5px;
  background-color: #b3c1d1;
  border: none;
  outline: none;
}

.textboxDesign:focus {
  background-color: #d0dce9;
}

.textboxDesign:disabled {
  color: #707070;
  background-color: #a4a9af;
  cursor: default;
}

.dropdownDesign {
  padding: 5px;
  max-width: 150px;
  background-color: #b3c1d1;
  border: none;
  outline: none;
}

.dropdownDesign:focus {
  background-color: #d0dce9;
}

.dropdownDesign:disabled {
  color: #707070;
  background-color: #a4a9af;
  cursor: default;
}

.checkboxDesign {
  padding: 5px 10px;
  color: #d0d0d0;
  background-color: #000000;
  outline: none;
}

.projsView {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: flex-start;
  width: -webkit-fill-available;
  color: #eff0f2;
  overflow-y: auto;
}

.projView {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 10px;
  height: 150px;
  width: 200px;
  background-color: #2b2f3e;
  user-select: none;
}

.projViewTop {
}

.projViewIcon {
}

.projIcon {
  margin: 10px 10px 0px 10px;
  width: 36px;
}

.projViewName {
  margin: 0 10px 0px 10px;
  font-size: 13pt;
}

.projViewDesc {
  margin: 0 10px 10px 10px;
  font-size: 8pt;
  max-height: 48px;
  overflow-y: hidden;
  text-overflow: ellipsis;
  letter-spacing: -1;
  color: #9296ae;
}

.projViewBottom {
}

.projViewRoles {
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 10px;
}

.projViewRole {
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  cursor: pointer;
}

.projViewRoleUX {
  background-image: url("../root/assets/designer.png");
}

.projViewRoleUI {
  background-image: url("../root/assets/uidev.png");
}

.projViewRoleAPI {
  background-image: url("../root/assets/web.png");
}

.projViewRoleADM {
  background-image: url("../root/assets/admin.png");
}

.projNewView {
  display: flex;
  flex-direction: column;
  margin: 10px;
  border: 4px solid #2b2f3e;
  height: 142px;
  width: 192px;
}

.projNewLink {
  margin: 2px 18px 2px 18px;
  cursor: pointer;
  user-select: none;
}

.projNewLink:hover {
  color: #ffffff;
}

.projNewLink:first-child {
  margin: 14px 18px 2px 18px;
}

.projNewLink:last-child {
  margin: 2px 18px 14px 18px;
}

.projNewLink:only-child {
  margin: 14px 18px;
}

.rootView {
  margin: 10px;
  color: #eff0f2;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.rootViewHeader {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.rootViewBackArrow {
  width: 21px;
  height: 32px;
  margin: 0 10px 0 10px;
  background-image: url(./assets/arrow-left.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: 6px;
  cursor: pointer;
}

.rootViewTitle {
  font-size: 12pt;
}

.rootViewDetails {
  margin: 10px;
  width: calc(100% - 20px);
  height: -webkit-fill-available;
  border-radius: 3px;
}

.rootViewProj {
  margin: 10px;
  width: calc(100% - 20px);
  height: -webkit-fill-available;
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: #2b2f3e;
}

.usersView {
  display: flex;
  flex-wrap: wrap;
  color: #eff0f2;
}

.userView {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 10px;
  height: 150px;
  width: 200px;
  background-color: #2b2f3e;
  user-select: none;
}

.userTopView {
  display: flex;
  flex-direction: column;
}

.userBottomView {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  margin: 10px;
}

.userActionButton {
  margin: 0 4px;
  width: 20px;
  height: 20px;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.7;
  cursor: pointer;
}

.userActionButton:hover {
  opacity: 1;
}

.userActionButtonEdit {
  background-image: url("../root//assets/edit.png");
}

.userActionButtonDel {
  background-image: url("../root//assets/del.png");
}

.userActionButtonProjs {
  background-image: url("../root//assets/projs.png");
}

.userTitle {
  margin: 10px;
  font-size: 14pt;
  overflow: hidden;
  height: 24px;
}

.userAttrib {
  margin: 10px;
}

.userAttribKey {
  color: #9298a6;
  font-size: 8pt;
  font-weight: bolder;
  overflow: hidden;
}

.menuBG {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.menu {
  position: absolute;
  font-family: sans-serif;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  display: flex;
  flex-direction: column;
}

.menuItem {
  background-color: #fafafa;
  padding: 8px 16px;
  font-size: 10pt;
  cursor: pointer;
  border: none;
  border-top: 1px solid #d0d0d0;
  outline: none;
}

.menuItem:hover {
  background-color: #fdfdfd;
}

.menuItem:disabled {
  cursor: default;
  color: #5f5f5f;
  background-color: #d3d1d1;
}

.menuItem:first-child {
  border-top: 0px;
}


.userAttribVal {
  font-size: 10pt;
  overflow: hidden;
}

.userNewView {
  display: flex;
  flex-direction: column;
  margin: 10px;
  border: 4px solid #2b2f3e;
  height: 142px;
  width: 192px;
}

.userNewLink {
  margin: 2px 18px 2px 18px;
  cursor: pointer;
  user-select: none;
}

.userNewLink:hover {
  color: #ffffff;
}

.userNewLink:first-child {
  margin: 14px 18px 2px 18px;
}

.userNewLink:last-child {
  margin: 2px 18px 14px 18px;
}

.userNewLink:only-child {
  margin: 14px 18px;
}

.newUserView {
  background-color: #444863;
  color: #eff0f2;
}

.newUserTitle {
  margin: 10px 20px;
  font-size: 14pt;
}

.newUserAttrib {
  margin: 10px 30px;
}

.newUserAttribInline {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: flex-end;
}

.newUserAttribLbl {
  margin: 0 5px;
  font-size: 8pt;
  font-weight: 600;
  color: #a3b7e6;
}

.newUserAttribTxt {
}

.newUserActions {
  display: flex;
  flex-direction: row;
}

.projPropView {
  display: flex;
  flex-direction: row;
  height: -webkit-fill-available;
}

.projPropLeft {
  width: calc(50% - 10px);
  background-color: #4a516c;
  height: calc(100% - 0px);
  overflow-y: auto;
}

.projPropAttrib {
  margin: 10px 40px 5px 20px;
}

.projPropAttribLbl {
  margin: 10px 10px 5px 10px;
}

.projPropAttribText {
  margin: 10px 0px 5px 0px;
  color: #84ddff;
  text-transform: capitalize;
  cursor: pointer;
}

.projPropAttribCntls {
  display: flex;
  flex-direction: row;
}

.projPropAttribColl {
  min-height: 100px;
  background-color: #191e2a;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.projPropAttribList {
}

.projPropAttribActn {
  height: 20px;
  background-color: #42434c;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.projPropActionAdd {
  width: 16px;
  height: 16px;
  margin: 2px;
  background-image: url("./assets/add.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  cursor: pointer;
}

.projPropActionAdd:hover {
  opacity: 1;
}

.projPropActionDel {
  width: 16px;
  height: 16px;
  margin: 2px 10px;
  background-image: url("./assets/del.png");
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  cursor: pointer;
}

.projDepView {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background-color: #4a516c;
  margin: 10px;
}

.projDepText {
  margin: 10px 20px;
}

.projDepActionDel {
  margin: auto 3px;
  width: 30px;
  height: 30px;
  background-image: url(./assets/del.png);
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.5;
  cursor: pointer;
}

.projDepActionDel:hover {
  opacity: 1;
}

.projPropRight {
  width: calc(50% - 10px);
  margin-left: 10px;
  background-color: #4a516c;
}

.projPropDepTitle {
  margin: 10px;
  font-size: 12pt;
}

.projPropActions {
  display: flex;
  flex-direction: row;
  margin: 10px 20px;
}

.projPropAttribCheck {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  margin: 0 20px;
}

.projPropAttribPerm {
  margin: 10px 40px 5px 20px;
}

.projPropAttribPerms {
  display: flex;
  flex-wrap: wrap;
}

.projPropPermButton {
  margin: 5px 10px;
  background-color: #2b2f3e;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 5px 10px;
  border-radius: 3px;
  cursor: pointer;
}

.projPropPermButtonSel {
  background-color: #939eca;
}

.projPropAttribCntl {
  display: flex;
  flex-direction: row;
}

.projPropAttribCntlBtn {
  max-width: 30px;
  padding: 0;
  border-left: 1px solid #000000;
}

.modalBG {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.propModelBG {
  position: absolute;
  margin: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
}

.messageBox {
  background-color: #4c546a;
  color: #fafafa;
  max-width: 500px;
}

.messageTitle {
  margin: 10px 15px;
  font-size: 15pt;
}

.messageText {
  margin: 10px 15px;
  font-size: 12pt;
  overflow-wrap: break-word;
  text-align: justify;
}

.messageActions {
  display: flex;
  flex-direction: row;
  margin: 15px;
}

.messageButtonSpacer {
  width: 40px;
}

.toastBG {
  position: relative;
  margin: 0 auto;
  width: 600px;
  overflow: hidden;
  z-index: 102;
}

.toastView {
  display: flex;
  width: 600px;
  min-width: 600px;
  max-width: 600px;
  color: #ffffff;
  background-color: #2b2f3e;
  border-radius: 5px;
}

.toastView:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.toastIcon {
  height: 20px;
  margin: 6px -10px 0px 20px;
}

.toastText {
  margin: 10px 20px;
  overflow: hidden;
}

.previewPane {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.900);
  z-index: 1;
}

.previewPaneCntls {
  position: fixed;
  top: -50px;
  width: 60px;
  height: auto;
  font-size: 35pt;
  text-align: center;
  line-height: 1.3;
  color: #d0d0d0;
  background-color: rgba(0, 0, 0, 0.5);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  transition: top ease-in-out 0.2s;
  cursor: pointer;
  z-index: 101;
}

.previewPaneCntls:hover {
  top: 0px;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.8);
}

.previewView {
  width: 100%;
  overflow: auto;
}

.previewViewPhone {
  width: 450px;
  height: 930px;
}

.previewViewTablet {
  width: 900px;
}

.previewBody {
  background-color: #ffffff;
  overflow-y:scroll;
  height:100vh;
}

.previewBodyPhone {
  margin: 13px;  
  width: auto;
  height: calc(100% - 23px);
  overflow-y: auto;
}

.previewBodyTablet {
}

.exportView {
  color: #dcedfc;
  background-color: #444d63;
 
}



.modalExport{
  /* height: 300px;  */
}

.exportTitle {
  margin: 10px 20px;
  font-size: 16pt;
}

.exportTarget {
  margin: 10px 20px;
  display: flex;
  flex-direction: row;
}

.exportTargetLbl {
  margin: 10px 20px;
}

.exportTargetVal {
}

.exportActions {
  margin: 10px 20px;
  display: flex;
  flex-direction: row;
}

li{
  margin-left: 10px;
}

ol {
  /* list-style: none; */
  margin-left: 0 !important;
  padding-left: 10 !important;
}
.checkBox-parent{
  overflow-y: scroll;
  max-height: 300px;
}
.second-list{
  display: none;
}
.checkbox-paa{
  display: block;
}

.list-first
{
  display: flex;
}
.label-proj{
  margin-top: 5px;

}


.colapsibleDiv{
  content:"\25B6";
  display: inline-block;
  /* margin-right: 6px; */
  color: rgb(246 250 255);
  width: 10px;
  height: 20px;

}

  .colapsibleDivtoggle::before{
    content:"\25B6";
    display: inline-block;
    color: rgb(246 250 255);
    width: 15px;
    height: 20px;
    -ms-transform: rotate(90deg); /* IE 9 */
    -webkit-transform: rotate(90deg); /* Safari */
    transform: rotate(90deg);  

}
.page-name{
  margin-left: 25px;
}
.comp-name{
  margin-left: 25px;
}

.projNewButtonDrop {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin: 2px 18px 2px 18px;
  color: #fafafa;
  /* background-color: #9C27B0; */
  background-color: #42434c;
  transition: backgroundColor ease-in-out 0.2s;
  border-radius: 0px;
  cursor: pointer;
  user-select: none;
}

.projNewButtonDropLabel {
  margin: 6px 10px;
}

.projNewButtonDropCaret {
  margin: 6px 10px;
  transform: rotate(-45deg);
}

.colapsibleDiv::before {
  content: "\25B6";
  color: rgb(246 250 255);
  display: inline-block;
  margin-right: 6px;
}
.jsonExport{
margin-left: 10px;
}

