.messages-box {
  position: fixed;
  right: 20px;
  top: 14px;
  width: 320px;
  z-index: 100000001;
}
.message-box {
  border-radius: 4px;
  margin: 5px 0;
  min-height: 3rem;
  padding: 15px;
  position: relative;
  z-index: 1;
}
.tooltip-icon {
  background-color: antiquewhite;
  border: 1px solid;
  border-radius: 50%;
  cursor: pointer;
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  height: 16px;
  line-height: 16px;
  margin-left: 2px;
  position: relative;
  text-align: center;
  vertical-align: middle;
  width: 16px;
}
.message-box .fa, .tooltip-box .fa {
  cursor: pointer;
  height: 8px;
  position: absolute;
  right: 5px;
  top: 5px;
  width: 8px;
}
.message-box-info {
  background-color: #ffffff;
  color: #222222;
}
.message-box-info .fa {
  background-color: #222222;
}
.message-box-warning {
  background-color: #fff6e5;
  color: #ffa500;
}
.message-box-warning .fa {
  background-color: #ffa500;
}
.message-box-error {
  background-color: #fbebeb;
  color: #d12f14;
}
.message-box-error .fa {
  background-color: #d12f14;
}
.message-box-success {
  background-color: #e7f6ef;
  color: #6bba00;
}
.message-box-success .fa {
  background-color: #6bba00;
}
.fader {
  align-items: center;
  background-color: #ffffff;
  background-image: var(--fader-image);
  background-origin: padding-box;
  background-position-x: center;
  background-position-y: center;
  background-repeat: no-repeat;
  background-size: 100px;
  bottom: 0;
  display: none;
  justify-content: center;
  left: 0;
  opacity: .8;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9999999999;
}
.fader-active {
  display: initial;
}
.tooltip-box {
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
  box-shadow: -3px -3px 10px #dddddd;
  font-size: 12px;
  max-width: fit-content;
  min-height: 3rem;
  padding: 15px;
  position: absolute;
  width: 200px;
  white-space: normal;
  z-index: 1;
}
.tooltip-box-cart {
  right: 20px;
  top: 0;
}
.tooltip-box-product {
  bottom: 100%;
  right: 0;
}