.cart_items_checkout {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--gray);
  justify-content: center; }

.cart_item {
  padding: 15px 17px;
  width: 90%;
  background: #fff;
  border-bottom: 1px solid var(--gray);
  position: relative; }
  .cart_item .del_from_cart {
    position: absolute;
    left: 0;
    top: 55px;
    cursor: pointer; }
  .cart_item.out_of_stock .stock_rest {
    color: #f04949 !important; }
  .cart_item .top {
    display: flex;
    align-items: center; }
    .cart_item .top .photo {
      border: 1px solid var(--gray); }
    .cart_item .top .thumbnail {
      display: block; }
    .cart_item .top .content {
      flex-grow: 1;
      padding: 0px 15px;
      align-self: flex-start;
      display: flex;
      flex-wrap: wrap;
      row-gap: 15px; }
      .cart_item .top .content .name {
        color: var(--text1);
        font-size: 15px;
        font-weight: 400;
        flex-basis: 100%; }
      .cart_item .top .content .qty_panel {
        width: 55px;
        display: flex;
        align-items: center;
        border: 1px solid var(--black);
        max-height: 20px; }
        @media (min-width: 2000px) {
          .cart_item .top .content .qty_panel {
            border: 2px solid var(--black); } }
        .cart_item .top .content .qty_panel input {
          text-align: center;
          margin: 0;
          border: none !important;
          transition: .2s;
          font-size: 12px;
          color: var(--black);
          height: min-content; }
          .cart_item .top .content .qty_panel input.loading {
            opacity: .4;
            pointer-events: none; }
        .cart_item .top .content .qty_panel span {
          -webkit-touch-callout: none;
          /* iOS Safari */
          -webkit-user-select: none;
          /* Safari */
          -khtml-user-select: none;
          /* Konqueror HTML */
          -moz-user-select: none;
          /* Old versions of Firefox */
          -ms-user-select: none;
          /* Internet Explorer/Edge */
          user-select: none;
          /* Non-prefixed version, currently */
          cursor: pointer;
          transition: .2s;
          align-self: flex-start; }
          .cart_item .top .content .qty_panel span i {
            color: var(--black);
            font-size: 18px; }
          .cart_item .top .content .qty_panel span:hover i {
            color: var(--c1); }
      .cart_item .top .content .prices {
        flex-basis: 100%; }
        .cart_item .top .content .prices .current_price {
          font-size: 16px;
          font-weight: 500;
          color: var(--text1); }
        .cart_item .top .content .prices .stable_price {
          display: none; }
  .cart_item .bottom {
    display: flex;
    justify-content: space-between;
    padding: 5px 0; }
  .cart_item:last-child {
    border-bottom: unset; }
