* {
  font-family: -apple-system, BlinkMacSystemFont, Avenir, "Helvetica Neue",
    "Segoe UI", Arial, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
}
/*
Floor Editor (BEM Convention)
*/
.FE__layout {
  position: relative;
}

.toolbar {
  padding: 20px 10px;
  border: 1px solid #212529;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
}

.FE__inspector {
  border: 1px solid #212529;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.9);
  /* overflow: scroll; */
  padding: 14px !important;
}

@keyframes slide-in {
  0% {
    transform: translateX(100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}
@keyframes slide-in-10 {
  0% {
    transform: translateX(10%);
    opacity: 0;
  }
  100% {
    transform: translateX(0%);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in {
  0% {
    -webkit-transform: translateX(50%);
  }
  100% {
    -webkit-transform: translateX(0%);
  }
}

.FE__inspector--menu {
  height: calc(100% - 46px);
  /* overflow-y: scroll; */
  overflow-y: auto;
}

.JobTaskMenu .SubMenu {
  /* animation: slide-in 0.2s ease-in-out;
  position: absolute;
  width: 210px;
  right: calc(100% + 10px);
  top: -4px; */
  animation: 0.2s ease-in-out 0s 1 normal none running slide-in-10;
  position: absolute;
  /* width: 100vw; */
  width: calc(100vw - 344px);
  overflow-x: hidden;
  right: calc(100% + 1px);
  top: 0px;
  overflow-y: auto;
  /* max-height: 85vh; */
  height: 85vh;
  background: #ebe9e9b3;
}
.SubMenu .SubMenu{
  background: #f9f9f900;
  height: unset;
  max-height: 400px;
  max-width: 110%;
  margin-right: 5px;
  /* margin-right: -24px; */
}

.JobTaskMenu .SubMenu p {
  padding: 10px;
}

.JobTaskMenu .Container {
   margin-top: 4px;
  margin-bottom: 4px;
  position: relative;
  min-height: 30px; 
}
.SubMenu .Container {
  position: relative;
    /* right: -64vw; */
    left: calc(100% - 197px);
    width: 200px;
    padding-right: 10px;
}

.FE__inspector--menu .Label,
.JobTaskMenu .Label {
  /* margin-bottom: 10px; */
  padding: 8px;
  border: 1px solid #212529;
  border-radius: 4px;
  box-shadow: 1px 1px #212529;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: white;
}
.JobTaskMenu .Label.Selected {
  /* background: #ddd; */
  background: #d2f0ff;
  transform: scale(1.05);
}
.JobTaskMenu .Label.Disabled {
  background: #ddd;
}


.FE__inspector .InspectorButton {
  width: 100%;
  margin-top: 10px;
  padding: 10px 10px;
  text-align: center;
}
.FE__inspector .ContentContainer {
  height: calc(100% - 160px); 
 /* height: 65vh;*/
  overflow-y: auto;
  /* overflow-y: scroll; */
}
.FE__inspector .ButtonContainer {
  position: absolute;
  bottom: 10px;
  z-index: 10;
  right: 14px;
  left: 14px;
}

.FE__inspector--menu .ColorBox {
  position: absolute;
  right: 10px;
  top: 7px;
  height: 30px;
  width: 30px;
  border: 1px solid black;
}

.FE__inspector .FloatingButton {
  position: absolute;
  top: 14px;
  right: 14px;
}

.PR__layout .panel {
  overflow: auto;
  padding: 20px 10px;
  border: 1px solid #212529;
  border-radius: 10px;
  background-color: rgba(255, 255, 255, 0.9);
  position: absolute;
  bottom: 30px;
  left: 36px;
  right: 30px;
  display: flex;
  justify-content: space-between;
}

.PR__layout .tracker-container {
  display: flex;
  justify-content: start;
  align-items: center;
}

.PR__layout .tracker {
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 10px;
  border: 2px solid gainsboro;
  margin-right: 10px;
}

.PR__layout .tracker input {
  margin-right: 10px;
}

.PR__layout .circle {
  height: 20px;
  width: 20px;
  margin-right: 10px;
  border-radius: 100%;
  border-width: 4px;
}

/* POPUP */
.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
}
.popup {
  position: relative;
  padding: 10px;
  min-width: 240px;
  background-color: white;
  border-radius: 4px;
  box-shadow: 0px 0px 10px 10px #0003;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: slide-up 0.2s ease-in-out;
}
@keyframes slide-up {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0%);
    opacity: 1;
  }
}

@-webkit-keyframes slide-up {
  0% {
    -webkit-transform: translateY(50%);
  }
  100% {
    -webkit-transform: translateY(0%);
  }
}
.popup .title {
  padding: 8px 10px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
}
.popup .content {
  padding: 20px 24px;
  text-align: left;
}
.popup .button-container {
  padding: 8px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-button {
  color: white;
  outline: none;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  border: 1px solid transparent !important;
  font-size: 16px;
}
.c-button.success,
.c-button.error {
  width: 100px;
}
.error {
  background: #fa5457 !important;
}
.success {
  background: #5fa55a !important;
}
.warning {
  background: #fa8925 !important;
}
.info {
  background: #01b4bc !important;
}
.error.outline {
  border-color: #fa5457 I !important;
  color: #fa5457 !important;
  background: white !important;
}
.success.outline {
  border-color: #5fa55a !important;
  color: #5fa55a !important;
  background: white !important;
}
.warning.outline {
  border-color: #fa8925 !important;
  color: #fa8925 !important;
  background: white !important;
}

.MuiOutlinedInput-input {
  padding: 8px !important;
  border: 1px solid #212529 !important;
  border-color: rgb(29, 29, 29) !important;
  border-radius: 6px !important;
}
.not-allowed{
  cursor: not-allowed! important; 
 }