.cookie_info {
  font-size: .8rem;
  color: #000;
  text-align: center;
  margin: -10px 0 30px;
}
  .cookie_info span {
    margin: 0 5px 0 0;
  }

#cart {
}
#cart h1 {
  margin: 0;
}
#cart.checkout {
  margin-bottom: 30px;
}
#cart #cart_content {
  margin: 0 0 25px;
  transition: all .2s;
  -webkit-transition: all .2s;
}
#cart.checkout #cart_content {
  margin: 0 0 25px;
}
#cart_content.processing {
  opacity: .4;
  cursor: none;
}
  #cart_content .item {
    position: relative;
    background: rgb(243,153,0);
    background: linear-gradient(0deg, rgba(243,153,0,1) 0%, rgba(255,212,1,1) 100%);
    border-radius: 4px;
    box-shadow: 0 0 25px rgba(0,0,0, .2);
    box-sizing: border-box;
    padding: 10px 10px;
    margin: 0 0 8px;
  }
  #cart.checkout #cart_content .item {
    padding: 10px;
  }
  #cart_content .item:last-child {
    margin: 0;
  }
    #cart_content .item .img {
      display: inline-block;
      vertical-align: middle;
      width: 42px;
      height: auto;
      background: #fff;
      box-sizing: border-box;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      padding: 3px;
      margin: 0 15px 0 0;
    }
      #cart_content .item .img > div {
        width: 100%;
        height: 100%;
        background-position: center center;
        background-size: contain;
        background-repeat: no-repeat;
      }
    #cart_content .item .descr {
      display: inline-block;
      vertical-align: middle;
      width: calc(100% - (10px + (42px + 15px) + (45px + 10px) + (20px)));
      margin: 0 10px 0 0;
    }
      #cart_content .item .descr .title {
        font-size: .9rem;
        color: #000;
        font-weight: 500;
        line-height: 1rem;
        margin: 4px 0 0 0;
      }
        #cart_content .item .descr .title .alt {
          display: inline-block;
          vertical-align: top;
          background: rgba(0,0,0, .3);
          font-size: .7rem;
          color: #fff;
          line-height: .8rem;
          border-radius: 4px;
          -webkit-border-radius: 4px;
          box-sizing: border-box;
          padding: 2px 6px 1px;
          margin: 1px 0 0 2px;
        }
      #cart_content .item .descr .details {
        font-size: .75rem;
        color: rgba(0,0,0, .8);
        margin: 0 0 -2px 0;
      }
        #cart_content .item .descr .details def {
          color: rgba(255,255,255, .35);
          margin: 0 2px;
        }
        #cart_content .item .descr .details .item_discount_price {
          color: red;
        }
        #cart_content .item .descr .details .item_original_price {
          color: rgba(0,0,0, .5);
          text-decoration: line-through;
        }
    #cart_content .item .amount {
      display: inline-block;
      vertical-align: top;
      width: 45px;
      font-weight: 600;
      text-align: center;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      box-shadow: 0 0 12px rgba(0,0,0, .15);
      box-sizing: border-box;
      padding: 10px;
    }
      #cart.checkout #cart_content .item .amount {
        font-size: .9rem;
        font-weight: normal;
        color: #000;
        box-shadow: 0 0 12px rgba(0,0,0, .5);
      }
    #cart_content .item .item_total {
      float: right;
      width: 100px;
      font-size: .9rem;
      color: #fff;
      line-height: .9em;
      text-align: center;
      margin: 12px 0 0 0;
    }

    #cart_content .item .amount_edit {
      background: rgba(0,0,0, .3);
      display: inline-block;
      vertical-align: top;
      width: 45px;
      text-align: center;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      box-sizing: border-box;
      padding: 2px 4px 4px;
      margin: 3px 0 0 0;
    }
    #cart_content.processing .item .amount_edit {
      cursor: none;
    }
      #cart_content .item .amount_edit input {
        display: inline-block;
        vertical-align: middle;
        width: 30px;
        height: 30px;
        background: transparent;
        font-size: .75em;
        font-weight: bold;
        color: #fff;
        text-align: center;
        border-radius: 3px;
        -webkit-border-radius: 3px;
        border: none;
        box-sizing: border-box;
        -moz-appearance: textfield;
      }
        #cart_content .item .amount_edit input::-webkit-outer-spin-button,
        #cart_content .item .amount_edit input::-webkit-inner-spin-button {
          -webkit-appearance: none;
        }
      #cart_content .item .amount_edit input:focus {
        background: #ffd401;
        color: #000;
        border: none;
        outline: none;
      }
      #cart_content .item .amount_edit span {
        display: inline-block;
        vertical-align: middle;
        width: calc(100% - (30px));
        font-size: .8rem;
        color: #fff;
        line-height: .9em;
        text-align: center;
        box-sizing: border-box;
        padding: 2px 0 0 0;
      }

    #cart_content .item a.deleteItem {
      position: absolute;
      top: 24px;
      right: 11px;
      width: 18px;
      height: 18px;
      background: #580c0d;
      font-weight: 300;
      font-size: .8em;
      color: #fff;
      text-decoration: none;
      line-height: 16px;
      text-align: center;
      cursor: pointer;
      border-radius: 4px;
      -webkit-border-radius: 4px;
      box-sizing: border-box;
      padding: 0;
    }
    #cart_content .item a.deleteItem:hover {
      background: #af2626;
    }

#cart .items_adjusted {
  background: #e50042;
  font-size: .8em;
  color: #fff;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  box-shadow: 0 0 25px rgba(0,0,0, .2);
  box-sizing: border-box;
  padding: 12px 15px;
  margin: 0 0 8px;
}

#cart .vat_total {
  float: left;
  color: #fff;
  margin: 0;
}
  #cart .discount {
    font-size: 1.4em;
    color: red;
    line-height: .9em;
    margin: 0 0 3px;
  }
  #cart .vat {
    font-size: 1rem;
    font-weight: 600;
    color: #cc1a1c;
    margin: 0 0 3px;
  }
  #cart .total {
    font-size: 1.2rem;
    font-weight: bold;
    color: #673b16;
    line-height: .9rem;
  }
    #cart .vat_total .lbl {
      display: inline-block;
      vertical-align: top;
      width: auto;
      margin: 0 12px 0 0;
    }
    #cart .vat_total .val {
      display: inline-block;
      vertical-align: top;
    }
#cart .proceed_checkout {
  float: right;
  margin: 0;
}
  #cart .points_missing {
    width: 100%;
    background: #cc1a1c;
    font-size: .8em;
    color: #fff;
    text-align: center;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    box-shadow: 0 0 25px rgba(0,0,0, .2);
    box-sizing: border-box;
    padding: 12px 15px;
    margin: 0 0 10px;
  }
  #cart .proceed_checkout a.order_init.proc {
    background-color: #333;
    text-shadow: none;
    cursor: none;
  }

#nets-payment,
#nets-payment iframe {
  border-radius: 4px;
}




@media screen and (max-width: 600px){
  #cart .proceed_checkout {
    float: none;
    width: 100%;
    text-align: center;
    margin: 0 0 18px;
  }

  #cart .vat_total {
    float: none;
    text-align: center;
    margin: 0 auto;
  }
}
