/*order-option*/
/*order-option*/
.buttonBar {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: var(--buttonHeight);
  background-color: #ffffff;
  -webkit-box-shadow: 0 -5px 20px rgba(49, 39, 39, 0.2);
          box-shadow: 0 -5px 20px rgba(49, 39, 39, 0.2);
}
.buttonBar .buttonBarItem {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1;
  padding: 10px;
  padding-right: calc(var(--buttonMarginRight) * 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.buttonBar .buttonBarItem .buttonBarTxt {
  margin-left: 10px;
}
.buttonBar .buttonBarItem .buttonBarTxt .btn-blackBg {
  color: #eeeeee;
  background-color: #010101;
  margin: 5px 0;
}
.buttonBar .buttonBarItem .buttonBarTxt .btn-blackBg:hover {
  color: #010101;
  background-color: #eeeeee;
}
.buttonBar .buttonBarItem .buttonBarTxt .btn-greyBg {
  color: #010101;
  background-color: #eeeeee;
  margin: 5px 0;
}
.buttonBar .buttonBarItem .buttonBarTxt .btn-greyBg:hover {
  background-color: #cccccc;
}
.buttonBar .buttonBarItem .buttonBarIconTxt {
  margin: 5px 0 5px 10px;
  padding: 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.buttonBar .buttonBarItem .buttonBarIconTxt .buttonBarIconTxt-icon {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 auto;
}
.buttonBar .buttonBarItem .buttonBarIconTxt .buttonBarIconTxt-txt {
  color: #010101;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}
.buttonBar .buttonBarItem .buttonBarIconTxt:hover {
  background-color: #eeeeee;
}

@media screen and (max-width: 991px) {
  .buttonBar .buttonBarItem {
    padding-right: 10px;
  }
}
@media screen and (max-width: 600px) {
  .buttonBar .buttonBarItem .buttonBarTxt .btn {
    padding: 12px 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 368px) {
  .buttonBar .buttonBarItem .buttonBarIconTxt {
    padding: 0 5px;
  }
}