.kylSoldProductContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999999999999999;
  display: none;
}
.kylSoldProductContainer:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #000000;
  opacity: 0.5;
}
.kylSoldProductContainer .innerContainer {
  position: absolute;
  top: 0;
  right: -100%;
  height: 100%;
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  padding: 20px;
  display: flex;
  align-items: center;
}
.kylSoldProductContainer .innerContainer .close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
  width: 22px;
  height: 22px;
  background-image: url(../img/close_black_24dp.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.kylSoldProductContainer .innerContainer > div {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
.kylSoldProductContainer .innerContainer > div h2 {
  font-family: 'Quicksand', sans-serif;
  font-size: 27px;
  font-weight: 400;
}
.kylSoldProductContainer .innerContainer > div form {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}
.kylSoldProductContainer .innerContainer > div form button {
  margin-top: 20px;
}
