.bar {
  position: fixed;
  height: 80px;
  left: 4%;
  right: 4%;
  box-shadow: 0px 3px 7px rgba(51, 51, 51, 0.1);
  border-radius: 20px;
  background: #ffffff;
}

.bar.namebar {
  left: 8%;
  right: 8%;
  height: auto;
  padding-top: 30px;
  border-radius: 0 0 20px 20px;
}

.bar.timebar {
  right: 8%;
  left: 65%;
  height: auto;
  border-radius: 0 0 20px 20px;
}

.bar.infodialogbar {
  height: auto;
  border-radius: 10px;
}

.bottombar {
  bottom: 0;
  z-index: 802;
  height: 100px;
  border-radius: 20px 20px 0 0;
}

.topbar {
  top: -1px;
  border-radius: 0 0 20px 20px;
  height: auto;
  z-index: 802;
  animation: move-updown 0.8s ease-in-out forwards;
}

@keyframes move-updown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes move-updownup {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  40% {
    transform: translateY(8px);
    opacity: 1;
  }
  80% {
    transform: translateY(8px);
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes move-downup {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes opacity-zeroone {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.namebar {
  top: 45px;
  z-index: 801;
  text-align: center;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  transition-duration: 0.3s;
}

.timebar {
  padding-top: 50px;
  top: 60px;
  z-index: 800;
  text-align: center;
  visibility: hidden;
}

.infodialogbar {
  opacity: 0;
  visibility: hidden;
  /*
  transition: opacity 0.3s linear, visibility 0.2s;
  -webkit-transition: opacity 0.3s linear, visibility 0.2s;
  -moz-transition: opacity 0.3s linear, visibility 0.2s;
  -o-transition: opacity 0.3s linear, visibility 0.2s;
  */
  font-size: 18px;
  letter-spacing: 0.03rem;
  padding: 0.3rem;
  color: #ffffff;
  z-index: 999;
  text-align: center;
  display: flex;
}

.infodialogbar.success {
  background-image: linear-gradient(
    180deg,
    #58f777 0%,
    rgba(28, 166, 53, 0.7) 100%
  );
}

.infodialogbar.warning {
  background-image: linear-gradient(
    180deg,
    rgba(255, 243, 104, 0.75) 0%,
    rgba(243, 207, 0, 0.7) 50%
  );
}

.infodialogbar.danger {
  background-image: linear-gradient(
    180deg,
    #ff9871 0%,
    rgba(226, 54, 15, 0.7) 100%
  );
}

.infodialogbar.success,
.infodialogbar.warning,
.infodialogbar.danger {
  visibility: visible;
  animation: move-updownup 2.5s ease-in-out;
}

.notifyBannerIconContainer {
  align-items: center;
  justify-items: center;
  margin: 0.3em;
  padding: 0.5em;
  border: 1px solid white;
  border-radius: 8px;
  width: 2.5em;
  height: 2.5em;
}

.notifyBannerTextContainer {
  flex: 1;
  display: flex;
  align-content: center;
  justify-content: center;
  align-items: center;
}

.infodialog i {
  font-size: 20px;
}

.topbarContainer {
  font-size: 20px;
  text-align: center;
  margin: 0 auto;
  display: table;
}

.topbar .topbarContainer {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.topbar img {
  width: 150px;
  left: 30px;
  visibility: collapse;
}

.topbar span {
  right: 30px;
  text-align: center;
  font-size: 18px;
}

.topbar .topbarContainer {
  right: 30px;
  visibility: collapse;
}

.topbarContainer .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.topbarContainer .nav-link:hover {
  color: rgba(0, 0, 0, 0.7);
}

.topbarContainer .nav-link.active {
  color: rgba(0, 0, 0, 1);
}

.name-displayer-large {
  visibility: collapse;
}

.bottomBtn {
  position: absolute;
  width: 50px;
  height: 50px;
  top: 50%;
  -ms-transform: translateY(-60%);
  transform: translateY(-60%);
  border: none;
}

.bottomSpan {
  position: absolute;
  top: 50%;
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-align: center;
  font-size: 18px;
  visibility: hidden;
}

.bottomBtn.btnCircle {
  border-radius: 25px;
}

.bottomBtn i {
  font-size: 20px;
  text-align: center;
}

.bottombar .bottomBtn:nth-child(1) {
  left: 30px;
}

.bottombar .bottomBtn:nth-child(2) {
  left: 90px;
}

.bottombar .bottomBtn:nth-child(3) {
  left: 150px;
}

.bottombar .bottomSpan {
  right: 30px;
}

@media (max-width: 349px) {
  .namebar span:nth-child(1) {
    visibility: hidden;
  }
  .namebar span:nth-child(2) {
    visibility: visible;
  }

  .col-xs-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-xs-12 span {
    margin: auto;
  }

  .logo-displayer {
    display: none;
    visibility: collapse;
  }
}

@media (max-width: 767px) {
  .bottomBtn.btnDark span {
    visibility: visible;
  }
  .bottombar,
  .topbar {
    left: 0%;
    right: 0%;
    transition: 0.4s;
  }

  .topbar.shrink-top {
    top: -65px;
  }

  .bottombar.shrink-bottom {
    bottom: -80px;
  }

}

@media (max-width: 992px) {
  .timebar.out,
  .namebar.out,
  .topbar.out {
    transform: translateY(-100%);
    animation: move-downup 0.8s ease-in-out forwards;
  }
}

@media (min-width: 300px) {
  .bottomSpan {
    visibility: visible;
  }
}

@media (min-width: 350px) {
  .topbar img {
    visibility: visible;
  }
}

@media (min-width: 576px) {
  .bottombar .bottomBtn:nth-child(1) {
    left: 40px;
  }
  .bottombar .bottomBtn:nth-child(2) {
    left: 110px;
  }
  .bottombar .bottomBtn:nth-child(3) {
    left: 180px;
  }
  .bottombar .bottomSpan {
    right: 40px;
  }
}

@media (min-width: 768px) {
  .topbar .topbarContainer {
    visibility: visible;
  }
  .topbar .topbarContainer + span {
    visibility: collapse;
  }
  .bottombar {
    visibility: hidden;
  }
  .bottomSpan {
    visibility: hidden;
  }
  .timebar {
    visibility: visible;
  }

  .cw-displayer {
    visibility: hidden;
  }

  .name-displayer-small {
    visibility: collapse;
    display: none;
  }

  .name-displayer-large {
    visibility: visible;
  }
}

@media (min-width: 992px) {
  .bar.namebar {
    right: 8%;
    left: 50%;
  }
}

@media (min-width: 1200px) {
  .topbar .topbarContainer {
    left: 50%;
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
  .bar.namebar {
    right: 8%;
    left: 65%;
    box-shadow: none;
  }
}

.bottomBtn span {
  visibility: collapse;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: #5b5b5b;
}

.btnLight {
  background: rgba(255, 255, 255, 0);
  color: #5b5b5b;
}

.btnLight.btnDark,
.btnDark {
  background: #5b5b5b;
  color: #ffffff;
  transition: background-color 1s ease-out;
  -webkit-transition: background-color 1s ease-out;
}

.orderItemsContainer {
  margin-top: 10px;
  background: #f8f8f8;
  border-radius: 8px;
}

.timezone-table,
.orderItemsOverview-container {
  margin-top: 10px;
  background: #f8f8f8;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  box-shadow: 0px 3px 8px rgb(74 74 74 / 24%);
}

.timezone-table-entry,
.orderItemOverview-loadingspinner,
.orderItemOverview-item {
  display: flex;
  padding: 0.2em 0.6em;
}

.orderItemOverview-item.active {
  background-color: rgba(255, 243, 105, 0.72);
}

.timezone-table-entry:not(:last-child),
.orderItemOverview-item:not(:last-child) {
  border-bottom: 1px solid #dee2e6;
}

.timezone-table-entry:first-child,
.orderItemOverview-item:first-child {
  border-bottom: 2px solid #dee2e6;
  font-weight: bolder;
  padding-top: 0.6em;
}

.timezone-table-entry:last-child,
.orderItemOverview-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.timezone-table-entry div:not(:last-child) {
  padding-left: 0.2em;
  padding-right: 0.2em;
}

.timezone-table-entry div:not(:last-child),
.orderItemOverview-item div:not(:last-child) {
  flex: 1 0 0px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.orderItemOverview-item div:last-child {
  width: 160px;
  display: flex;
  align-items: center;
}

.timezone-table-entry div:last-child {
  width: 90px;
  display: flex;
  align-items: center;
}

.timezone-table-entry:not(:first-child) div:last-child,
.orderItemOverview-item:not(:first-child) div:last-child {
  justify-content: center;
}

.timezonecontainer-mobile-not-supported {
  display: block;
  text-align: center;
  visibility: collapse;
}

@media (max-width: 768px) {
  .timezonecontainer-pretext,
  .timezonecontainer,
  .timezoneadder {
    visibility: hidden;
  }

  .timezonecontainer-mobile-not-supported {
    visibility: visible;
  }

  .orderItemOverview-item div:last-child {
    width: 70px;
    flex-direction: column;
  }
}

.orderItembox {
  border-radius: 30px;
}

.orderItemBoxCtrl {
  position: relative;
  height: 65px;
  width: 220px;
  background: rgba(255, 255, 255, 0.83);
  border-radius: 20px;
  margin: 30px auto 0 auto;
  padding: 0 0.3em 0 0.3em;
  display: flex;
  align-content: center;
  align-items: center;
}

.orderItemBoxCtrl-playContainer,
.orderItemBoxCtrl-pauseContainer,
.orderItemBoxCtrl-stopContainer {
  flex: 1;
  display: flex;
  align-content: center;
  justify-content: center;
}

.controlBtn {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 24px;
  z-index: 200;
}

.controlBtn i {
  font-size: 20px;
  line-height: inherit;
  align-self: center;
  justify-self: center;
}

.orderItemBoxCtrl .controlBtn:nth-child(1) {
  left: 30px;
}

.orderItemBoxCtrl .controlBtn:nth-child(2) {
  left: 90px;
}

.orderItemBoxCtrl .controlBtn:nth-child(3) {
  left: 150px;
}

.controlBtnPointer {
  transform: translateX(90px) translateY(-50%);
  z-index: 100;
  /* transition: transform 0.8s ease-in-out;*/
}

.controlBtnPointer.cBtn-p-1 {
  transform: translateX(30px) translateY(-50%);
}

.controlBtnPointer.cBtn-p-2 {
  transform: translateX(90px) translateY(-50%);
}

.controlBtnPointer.cBtn-p-3 {
  transform: translateX(150px) translateY(-50%);
}

.assignsymbol {
  position: absolute;
  font-size: 24px;
  left: 35px;
  bottom: 105px;
}

.assignees {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
}

.blue {
  color: #0066ff;
}

.orderItemsContainer.withFormData {
  padding: 1rem;
}

.orderItemsContainer.settings {
  padding: 1rem;
}

@media (min-width: 768px) {
  .orderItemsContainer.withFormData,
  .orderItemsContainer.settings {
    padding: 40px 80px;
  }
}

.orderItemsContainer.multiplier {
  padding: 30px 4% 100px 4%;
}

.orderItemsContainer.selfresult {
  padding: 1em 2% 1em 2%;
  margin-top: 0px;
}

@media (min-width: 768px) {
  .orderItemsContainer.selfresult {
    padding: 1em 10% 1em 10%;
  }
}

.orderItemsContainer.selfresult > .custom-select-box,
.orderItemsContainer.selfresult .monthitem:not(:last-child){
  margin-bottom: 0.4em;
}

.orderItemsContainer.selfresult > .custom-select-box:nth-child(2){
  margin-bottom: 1.5em;
}

.timezonecontainer {
  margin-top: 50px;
  position: relative;
  padding: 50px 5%;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #dbdbdb;
}

.timezoneadder {
  width: 70%;
  max-width: 500px;
  height: auto;
  min-height: 50px;
  font-size: 20px;
  border-radius: 15px;
  background-color: #ff9871;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 30px;
}

.timezoneadder span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
}

.tctitle {
  height: 50px;
  width: 220px;
  color: #ffffff;
  background: #ff9871;
  border-radius: 15px;
}

.tctitle span {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.timezonecontainer .tctitle {
  position: absolute;
  top: -25px;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.correctioncontainer {
  margin-top: 50px;
  position: relative;
  padding: 50px 5% 30px 5%;
  background: #ffffff;
  border-radius: 15px;
}

.selresultmonth {
  cursor: pointer;
  position: relative;
  display: flex;
  font-size: 1.1rem;
}

.selfresult > div > .selresultmonth.open {
  border-radius: 10px 10px 0 0;
}

.selresultmonth span {
  flex-grow: 1;
}

.selresultmonth.info,
.orderitem-working-details-list,
.orderitem-working-details-chart {
  background-color: #ffffff;
  color: #3f3f3f;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  animation: opacity-zeroone 0.8s ease-in-out forwards;
}

.orderitem-working-details-list,
.orderitem-working-details-chart {
  border: 1px solid #dbdbdb;
  border-radius: 8px;
}

.selresultmonth.info {
  border: 1px solid #fda085;
  border-top: none;
  border-radius: 0 0 10px 10px;
}

.selresultmonth.info hr {
  border-color: #ff9871;
}

.resultentry,
.orderitem-working-details-list-entry {
  padding: 0.2em 0.5em;
  display: flex;
}

.resultentry:first-child:not(:last-child),
.orderitem-working-details-list-entry:first-child:not(:last-child) {
  border-bottom: 2px solid #eeeeee;
  font-weight: bolder;
}

.resultentry:not(:last-child),
.orderitem-working-details-list-entry:not(:last-child) {
  border-bottom: 1px solid #f8f8f8;
}

.selresultmonth.info .resultentry:not(:first-child):hover,
.orderitem-working-details-list
  .orderitem-working-details-list-entry:not(:first-child):hover {
  background-image: linear-gradient(to right, #fdc78598 0%, #fd9f8598 100%);
}

.selresultmonth.info .resultentry:last-child:hover {
  border-radius: 0 0 10px 10px;
}

.resultentry div:not(:first-child),
.orderitem-working-details-list-entry div:not(:first-child) {
  width: 65px;
}

.resultentry div:first-child,
.orderitem-working-details-list-entry div:first-child {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cctitle {
  height: 50px;
  width: 90%;
  color: #ffffff;
  background: #ff9871;
  border-radius: 15px;
}

.cctitle span {
  font-size: 20px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.correctioncontainer .cctitle {
  position: absolute;
  top: -25px;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.correctioncontainer.selfresult {
  margin-top: 0px;
  padding: 15px 5% 15px 5%;
}

.correctionupdater {
  width: 80%;
  max-width: 400px;
  height: auto;
  min-height: 40px;
  font-size: 18px;
  color: #ffffff;
  border-radius: 20px;
  background-color: #ff9871;
  position: absolute;
  left: 50%;
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  margin-top: 20px;
}

.correctionupdater:hover {
  background-color: #ffffff;
  color: #ff9871;
}

.orderItemTimeContainer {
  position: relative;
  width: 100%;
  height: auto;
  padding: 20px;
  background-color: white;
  margin: auto;
  margin-bottom: 10px;
  border-radius: 20px;
  border: 1px solid #dbdbdb;
}

.oitTitle {
  margin-bottom: 100px;
}

.oitStartContainer,
.oitEndContainer {
  padding: 20px;
}

.oitChangeBtn,
.oitDeleteBtn {
  height: 40px;
}

.oitChangeBtn {
  background-color: #ff9871;
  border-radius: 20px;
  color: #ffffff;
}

.oitChangeBtn:hover {
  background-color: #ffffff;
  border-radius: 20px;
  color: #ff9871;
}

.btn-custom.btn-outline.btnBack {
  border-radius: 10px;
}

.month-pointer {
  width: 30px;
  display: flex;
  position: relative;
  justify-content: center;
}

.month-pointer i {
  transition: transform 0.3s ease-in-out;
  align-self: center;
  justify-self: center;
}

.month-pointer i.down {
  transform: rotate(90deg);
}

/* override styles from style.css */

.features-boxed {
  padding-top: 150px;
  background: #ffffff;
  padding-bottom: 30px;
}

@media (max-width: 992px) {
  .features-boxed.multiplier,
  .features-boxed.addorder,
  .features-boxed.correction,
  .features-boxed.resultdetail {
    padding-top: 0px;
  }

  .features-boxed {
    padding-top: 100px;
    padding-bottom: 7em;
  }

  .features-boxed.multiplier,
  .features-boxed.addorder,
  .features-boxed.correction,
  .features-boxed.resultdetail,
  .features-boxed.home,
  .features-boxed.timeoverview,
  .features-boxed.settings {
    animation: opacity-zeroone 0.8s ease-in-out forwards;
  }
}

.intro.small .title {
  color: #000000;
  font-weight: light;
  letter-spacing: 0.15rem;
  padding: 30px 0 5px 10px;
  text-align: center;
}

.intro.large .title {
  color: #000000;
  font-weight: light;
  letter-spacing: 0.15rem;
  padding: 30px 0 5px 10px;
}

@keyframes blinkingCritical {
  0% {
    color: #ff7657;
  }
  49% {
    color: #ff7657;
  }
  70% {
    color: transparent;
  }
  99% {
    color: transparent;
  }
  100% {
    color: #ff7657;
  }
}

@-webkit-keyframes blinkingCritical {
  0% {
    color: #ff7657;
  }
  49% {
    color: #ff7657;
  }
  70% {
    color: transparent;
  }
  99% {
    color: transparent;
  }
  100% {
    color: #ff7657;
  }
}

.box-critical {
  /*box-shadow: 0 0 0 4px #ff7657;*/
  -webkit-animation: blinkingCritical 1.2s infinite;
  -moz-animation: blinkingCritical 1.2s infinite;
  -ms-animation: blinkingCritical 1.2s infinite;
  -o-animation: blinkingCritical 1.2s infinite;
  animation: blinkingCritical 1.2s infinite;
  font-weight: bolder;
}

@keyframes blinkingAssigned {
  0% {
    box-shadow: 0 0 0 4px #0066ff;
  }
  49% {
    box-shadow: 0 0 0 4px #0066ff;
  }
  70% {
    box-shadow: none;
  }
  99% {
    box-shadow: none;
  }
  100% {
    box-shadow: 0 0 0 4px #0066ff;
  }
}

@-webkit-keyframes blinkingAssigned {
  0% {
    box-shadow: 0 0 0 4px #0066ff;
  }
  49% {
    box-shadow: 0 0 0 4px #0066ff;
  }
  70% {
    box-shadow: none;
  }
  99% {
    box-shadow: none;
  }
  100% {
    box-shadow: 0 0 0 4px #0066ff;
  }
}

.orderitem-assigned {
  -webkit-animation: blinkingAssigned 1.5s infinite;
  -moz-animation: blinkingAssigned 1.5s infinite;
  -ms-animation: blinkingAssigned 1.5s infinite;
  -o-animation: blinkingAssigned 1.5s infinite;
  animation: blinkingAssigned 1.5s infinite;
}

.register-photo .intro.small + h2 {
  visibility: collapse;
}

input[type="text"]:focus,
input[type="password"]:focus,
input[type="date"]:focus,
input[type="file"]:focus,
select.form-control:focus,
textarea.form-control:focus {
  outline: none !important;
  border-color: #ff9871;
}

.orderitem-card-action i.fa-info {
  font-size: larger;
}

.login-clean input[type="text"],
.login-clean input[type="password"] {
  border-radius: 0;
}

.plannedTimeStatus.critical {
  background-image: linear-gradient(180deg, #ff9871 0%, #ff7657 100%);
  color: #ffffff;
  border-bottom: none;
  letter-spacing: 0.03rem;
}

.btn.btn-custom.resultBtn {
  height: 44px;
  width: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.1em;
  transition: 0.5s;
}

.btn.btn-custom.btn-outline.resultBtn {
  background-image: linear-gradient(to bottom, #ffffff75, #fffffff2);
}

.btn.btn-custom.btn-outline.resultBtn:hover {
  background-color: #fffffffa;
}

.input-group-text {
  border-top: 0;
  border-left: 0;
  border-right: 0;
}

#entryfilter {
  border-radius: 0 20px 20px 0;
  border: 1px solid #dbdbdb;
}

#entryFilterTitle {
  border-radius: 20px 0 0 20px;
  border: 1px solid #dbdbdb;
}

input.tcmultiplier {
  width: 70px;
  margin-right: 20px;
  padding: 5px 10px;
  border-radius: 10px;
}

input.tcmultiplier:disabled,
input:disabled {
  background-color: #e9ecef;
  border-width: 0px;
}

.logo-login {
  width: 80%;
  max-width: 200px;
  display: block;
  margin: 0 auto 20px auto;
}

.custom-select-box {
  position: relative;
}

.custom-select-box-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  pointer-events: none;
}
.showInstallationPrompt {
  height: 100vh;
  width: 100%;
  z-index: 1001;
  background-color: #e9ecef;
  position: fixed;
  transition: ease-in-out 0.7s;
  visibility: collapse;
}
.showInstallationPrompt.show {
  visibility: visible;
  transition: ease-in-out 0.7s;
}

.filter-container {
  padding: 15px;
  background-color: #ffffff8f;
  border-radius: 15px;
  border: thin solid #ff912b9e;
}

.filter-container .row {
  margin-left: 0;
  margin-right: 0;
  padding-top: 2px;
  padding-bottom: 3px;
}

.bg-custom {
  background-image: linear-gradient(to right, #fdc785 0%, #fda085 100%);
}

.chartContainer {
  width: 100%;
  display: flex;
  align-content: center;
  justify-content: center;
}

.chartContainer google-chart {
  border-radius: 8px;
}

.google-chart {
  overflow-x: auto;
  overflow-y: clip;
}

.orderitem-working-details {
  margin: 1em 0;
}

.orderitem-working-details-header {
  display: flex;
  align-items: center;
  align-content: center;
  margin-bottom: 1em;
}

.orderitem-working-details-header-title {
  font-weight: bolder;
  flex-grow: 1;
  text-align: left;
}

.orderitem-working-details-list,
.orderitem-working-details-chart {
  display: none;
}

.orderitem-working-details-list.show,
.orderitem-working-details-chart.show {
  display: flex;
}

.toggle-btn-group {
  display: flex;
  border-radius: 1em;
  line-height: 1em;
  padding: 0.2em;
  border: 1px solid #ff9871;
  align-content: center;
  align-items: center;
  justify-content: center;
}

.toggle-btn-group .toggleBtn {
  border-radius: 0.8em;
  flex: 1;
  text-align: center;
  color: #ff9871;
  background-color: #ffffff;
  padding: 0.6em;
  cursor: pointer;
}

.toggle-btn-group .toggleBtn.active {
  background-image: linear-gradient(to right, #fdc785 0%, #fda085 100%);
  color: #ffffff;
}
