/* Variables */
/* Cart page styles */
.block-12 select {
  width: 190px; }

.block-12 .discount-tag {
  position: absolute;
  top: 10px;
  left: 10px; }

.block-12 .summary {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px; }

.block-12 input[type="text"] {
  width: 100%; }

.block-12 .quantity-block {
  width: 94px; }
  .block-12 .quantity-block input[type="number"] {
    width: 63px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 10px 0px 0px 10px;
    padding: 0px;
    text-align: center;
    padding: 0px 15px; }
    .block-12 .quantity-block input[type="number"]:focus {
      outline: -webkit-focus-ring-color auto 0px; }
  .block-12 .quantity-block .buttons-block {
    width: 31px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    border-right: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 0px 10px 10px 0px; }
    .block-12 .quantity-block .buttons-block .quantity-arrow-plus, .block-12 .quantity-block .buttons-block .quantity-arrow-minus {
      cursor: pointer;
      height: 50%;
      opacity: 0.3;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: center;
      -ms-flex-pack: center;
      justify-content: center;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-transition: all 0.2s;
      -o-transition: all 0.2s;
      transition: all 0.2s; }
      .block-12 .quantity-block .buttons-block .quantity-arrow-plus:hover, .block-12 .quantity-block .buttons-block .quantity-arrow-minus:hover {
        opacity: 0.6; }

@media (max-width: 1200px) {
  .block-12 select {
    width: 100px; } }
