.checkout {
  .title {
    transition: all 0.2s;
    padding-bottom: 0;
    cursor: pointer;
    &:hover {
      @apply text-primary;
      transition: all 0.2s;
    }
  }
  .desc {
    line-height: 28px;
  }
  &-items {
    @apply overflow-hidden mb-10 shadow-lg;
    border-radius: 15px 15px 0px 0px;

    &__header {
      @apply hidden md:flex bg-secondary text-white;
      padding: 11px 100px 14px 0;
      font-size: 18px;
      font-weight: 600;
    }

    &__item {
      @apply relative flex  bg-white flex-wrap justify-end items-center py-spacer border-b border-grayLight last:border-b-0 pl-2;
      .title {
        font-size: 20px;
      }
      &:nth-child(odd) {
        @apply bg-washedPink;
      }
    }
    .top-quantity {
      margin-right: 150px;
    }
    .top-price {
      margin-right: 150px;
    }
    .bottom-price {
      margin-right: 150px;
    }
    .bottom-quantity {
      margin-right: 150px;
    }
    .bottom-sumary {
      margin-right: 95px;
    }
    .col {
      @apply py-col px-spacer w-auto;

      &.product {
        @apply w-full md:flex-1;
      }

      &.quantity {
        @apply w-40 text-center;
        .form--input {
          @apply m-0;
        }
      }
      &.controls {
        @apply md:w-10 px-0;
        margin-right: 10px;
        .delete {
          @apply absolute top-4 md:static hover:text-red;
          color: #2b2a2a;

          .icon {
            @apply block;
            width: 30px;
            height: 30px;
          }
        }
      }

      &.price,
      &.summary {
        @apply text-center w-28;
      }

      &.price {
        @apply hidden md:block;
      }
    }

    .product-link {
      @apply inline-flex items-center text-black hover:text-primary;

      img {
        @apply block rounded-md flex-none w-14 sm:w-24;
        margin-right: 20px;
        margin-left: 12px;
      }

      span {
        @apply block;
      }

      .text {
        @apply pr-12 md:pr-0 min-w-0;
      }

      .title {
        @apply block font-semi text-base sm:text-xl w-4/5 md:w-full;
      }

      .desc {
        @apply text-grayDark text-xs sm:text-sm overflow-hidden max-h-8 sm:leading-4;
        max-width: 225px;
      }
    }
  }
  &-items {
    border-radius: 15px;
  }
  &-items__item {
    border: none;
  }
  &-summary {
    @apply text-black overflow-hidden mb-10 bg-washedWhite;
    border-radius: 15px;
    margin-bottom: 80px;

    .item {
      @apply flex items-center py-5 px-2 border-b border-secondary20;

      &.discount {
        @apply bg-opacity-15 bg-pink;

        .form {
          @apply flex items-center;

          .form--input {
            @apply flex-1 sm:flex-none m-0;
            width: 390px;
            margin-right: 10px;
            input {
              @apply bg-white border border-gray text-black;
              border-radius: 30px;
            }
          }

          .promo-btn {
            @apply relative bg-transparent border border-primary;
            width: 45px;
            height: 45px;
            border-radius: 30px;
            &::after {
              @apply absolute border-primary;
              content: "";
              border-width: 1.25px 1.25px 0 0;
              display: block;
              height: 10px;
              width: 10px;
              top: 1px;
              bottom: 0;
              margin-top: auto;
              margin-bottom: auto;
              left: 19.4px;
              transition: left 0.1s;
              transform: rotate(45deg);
            }
            &::before {
              content: "";
              width: 15px;
              height: 1.25px;
              border-radius: 30px;
              top: 21.5px;
              left: 0;
              right: 0;
              margin-left: auto;
              margin-right: auto;
              @apply bg-primary absolute;
            }
          }
        }

        .label {
          @apply text-sm text-pink;
          font-weight: normal;
          font-size: 14px;
        }
        .code {
          @apply text-base;
          position: relative;
          font-weight: normal;
          font-size: 18px;

          &::after {
            content: "";
            position: absolute;
            width: 20px;
            height: 20px;
          }
        }

        //.end {
        //  @apply text-pink;
        //}
      }

      &.total {
        @apply font-bold text-lg border-0;
      }

      .col {
        @apply flex-1 w-half;

        &.start {
          @apply flex-1 text-left break-all;
          font-weight: 600;
          font-weight: normal;
          font-size: 18px;
        }

        &.end {
          @apply flex-none w-auto whitespace-nowrap font-semi break-all;
          font-size: 18px !important;
        }
      }

      .summary-left {
          @apply pl-small md:pl-big;
      }
    }
  }
  .title-check {
    color: #000000;
  }
  &-steps {
    @apply bg-washedWhite pt-7.5 md:pt-10;
    .step {
      @apply flex flex-col h-full;
      //margin-top: 40px;

      &__header {
        @apply flex flex-wrap justify-center items-center select-none;

        .num {
          @apply flex justify-around items-center w-10 h-10 md:w-16 md:h-16 bg-black text-white text-xl md:text-3xl leading-none rounded-full;
          width: 70px;
          height: 70px;
          font-weight: normal;
          font-size: 36px;
          line-height: 27px;
        }

        .txt {
          @apply flex-1 md:flex-none md:w-full md:text-center md:pt-5 text-base md:text-lg px-3 leading-tight;
          padding-left: 20px;
        }

        .desc {
          @apply font-bold;
        }
      }
      .step__panel {
        border-radius: 15px;
      }
      &__panel {
        @apply flex-1 bg-white shadow-lg mb-5;

        .panel__header,
        .panel__body {
          @apply px-3.75 py-5 md:px-5;
        }

        .panel__header {
          @apply bg-secondary text-white text-lg font-semi py-3;
          border-radius: 15px 15px 0 0;
        }

        .panel__body {
          .form--input:last-child {
            @apply mb-0;
          }
        }
      }
    }

    textarea {
      @apply rounded-lg shadow-lg;
    }

    .form--check {
      @apply mb-5;
      margin-top: 20px;

      label {
        @apply inline-flex;

        a {
          @apply text-primary hover:text-pink;
          text-decoration: underline;
        }
      }
      .terms {
        @apply leading-normal text-left;
      }
    }

    .btn--primary {
      @apply w-56;
    }
  }
}

.btn-check {
  margin-bottom: 15px;
}
.form--radio {
  &:last-child {
    .btn-check {
      margin-bottom: 0px;
    }
  }
}
// .form-check {
//   margin-bottom: 15px !important;
// }

.form-select {
  margin-top: 15px;
}
#delivery-block {
  @apply space-y-2.5;
}

// .form {
//   padding: 9px 0 !important;
// }

.form-check-second {
  margin-top: -15px;
}

.select2-selection--single {
  padding: 21.5px 0;
}
.check-input {
  border-radius: 20px ;
}
.step__header {
  margin-bottom: 20px;
}
.form--input textarea {
  height: 100px;
}

.promo-form {
  padding: 0px 0 !important;
}
.col-end {
  font-weight: 600 !important;
}

.check-container {
  background: #f9fdfd;
}
.col.product {
  padding-left: 12px;
}
.col.product.title-product {
  padding-left: 30px !important;
}

.col.price {
  font-size: 18px;
}
.col.quantity {
  font-size: 18px;
}
.col.summary {
  font-size: 18px;
}
.col.start.col-end.summary-left.end-price,
.col.end.final-price.end-price {
  font-size: 24px !important;
}
.form--input.promo-input input {
  padding: 12.5px 15px;
}


.col.end {
  padding-right: 22px !important;
}

.check-input.input-coment {
  box-shadow: 0px 0px 10px 2px rgba(112, 112, 112, 0.15);
  border-radius: 15px;
}

.condition-check {
  width: 20px !important;
  height: 20px !important;
  border: 1px solid #FF6E8E !important;
  border-radius: 7px !important;
}
.input.condition-check.input-condition :after{

}

.btn.btn-plus.cantity-plus {
  top: 35px ;
}

.btn.btn-minus.cantity-minus {
  top:36px ;
}
.left-delivery-btn {
  margin-right: 20px;
}

.checkout-items.product-link.title {
  &:hover {
    color: #FF6E8E;
    transition: all 0.5s;
  }
}

.second-container-check {
  background: #f9fdfd !important;
  max-width: 100%;
}

.title.check-title-box {
  padding-bottom: 10px !important;
}

.checkout-summary.item.col.end {
  font-size: 20px !important;
}

.checkbox-titles {
  font-size: 20px;
  font-weight: 500 !important;
}

.btn__text.clear-filter {
  font-size: 16px !important;
}

.filters__body > .simplebar-scrollbar {
  margin-left: 20px;
}
.contact__body {
  margin-bottom: 25px;
}

.form--input.form-select {
  z-index: 2;
}

.btn__text.text-check {
  font-size: 14px;
}

.checkout-summary {
  margin-bottom: 40px;
}
.contact-address-content {
  max-width: 200px;
}

//.btn.btn-plus.check-plus {
//  right: -15px;
//}

.checkout-items .product-link .text {
  padding-right: 0;
}


//.form--check input:checked + .input.condition-check.input-condition{
//color: rgb(245,101,101);
//}

.show-filters .icon{
  margin-top: 7px;
}

.dropmenu__toggle .icon{
  margin-top: -1px;
}


.input-to-price{
  height: 45px;
}
.buttons__row {
  @apply flex gap-y-2;
}
.btn_container {
  @apply flex justify-center md:block;
}