.priceBox {
  box-sizing: border-box;
  width: 100%;
  background: #dce9fa;
  position: fixed;
  bottom: 0;
  left: 240px;
  box-shadow: 0 -3px 15px #ebebeb;
  font-weight: bold;
  display: none;
  padding: 0 240px 94px 0;
}

.priceBox p {
  margin: 0 0 0 0;
  font-weight: bold;
}

.priceBox .inner {
  box-sizing: border-box;
  max-width: 760px;
  width: calc(100% - 240px);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  font-size: 21px;
}

.priceBox .price {
  font-size: 38px;
}

.priceBox .inner .priceBtn:hover {
  cursor: pointer;
}

.priceBox .price-area {
  width: 100%;
  display: flex;
  align-items: baseline;
  text-align: center;
  justify-content: center;
}

.priceBox .price-area p {
  margin-right: 10px;
}

/* .priceBox .priceBtn {
  width: 250px;
}

.priceBox .priceBtn img {
  width: 100%;
} */


@media (max-width: 1259px) {
  .priceBox {
    width: 100%;
    left: 25%;
  }
  
  .priceBox .inner {
  width: 100%;
}
}