/* START_SNIPPET:shipping-protection (INDEX:269) */
.hdt-cart-ship-protect{
    margin-block-start: 1.4rem;
    &:not([hidden]):has(+ .hdt-cart-actions){
      border-bottom: none;
    }  
    .hdt-inner-cart-ship-protect{
      padding: 1.2rem;
      border: 1px solid var(--color-line-border);
      display: grid;
      column-gap: 0.8rem;
      grid-template-columns: 2.2rem 1fr;
      .hdt-icon-shipping-protection{margin-block-start: 0.4rem;}
    }
    .hdt-cart-ship-tick{
      display: grid;
      grid-template: auto 1fr/ 1fr auto;
      .hdt-price-ship-pr{grid-area: 1/2/2/3; place-self: start end;}
      .hdt-gr-text{
        grid-area: 1/1/3/2;
        max-width: 22rem;
        label{line-height: 1.3; display: flex;}
      }
      .hdt-checkbox-wrapp{ 
        grid-area: 2/2/3/3; 
        place-self: start end;;
        input[type="checkbox"]{
          width: 3.3rem;
          height: 1.6rem;
          background: rgb(var(--color-text-rgb)/0.2);
          border: 1px solid rgb(var(--color-text-rgb)/0.4);
          border-radius: 7rem;
          transition: background-color .3s ease;
          position: relative;
          &::after{display: none;}
          &:before{
            content: "";
            position: absolute;
            inset-block: .1rem;
            inset-inline-start: .3rem;
            z-index: 2;
            width: 1.2rem;
            height: 1.2rem;
            border-radius: 50%;
            background: var(--color-foreground);
            transition: inset-inline-start .3s ease;
            margin: 0;
            border: none;
          }
          &:checked{
            background: rgb(var(--color-text-rgb)/0.4);
          }
          &:checked::before{
            inset-inline-start: 1.8rem;
          }
        }
      }
    }
  }
/* END_SNIPPET:shipping-protection */
