/** Shopify CDN: Minification failed

Line 190:7 Unexpected "{"

**/
back-in-stock{
  position: relative;
  z-index: 9999;
  isolation: isolate;
}
.ping_pong_back_in_stock_container{
  margin-inline: auto;
  margin-top: 1rem;
  margin-bottom: 1rem;

  &:hover{
    & > div.ping_pong_back_in_stock_subscribe, & > div.ping_pong_back_in_stock_delete_subscriptions {
        background-color: #292929;

    }
  }

  &  .ping_pong_back_in_stock_separator{
    width: 30%;
    height: 1px;
    margin-inline: auto;

    margin-bottom: 1.5rem;

    background-color: rgba(0, 0, 0, 0.114);
  }

  &  .ping_pong_back_in_stock_delete_subscriptions{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    
    & > p{
      display: inline-block;

      margin: 0;
      padding: 0.8rem 3.5rem;

      height: 100%;
      width: 100%;

      color: white;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1rem;
      line-height: 1.1;
      font-weight: 800;
      text-align: center;

      cursor: pointer;
    }


  }

  & .ping_pong_back_in_stock_success{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.8rem 3.5rem;
    
    & > p{
      margin: 0;

      color: white;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1rem;
      line-height: 1.1;
      font-weight: 800;
      text-align: center;
    }
  }

  &  .ping_pong_back_in_stock_error{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.8rem 3.5rem;
    
    & > p{
      margin: 0;

      color: white;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1rem;
      line-height: 1.1;
      font-weight: 800;
      text-align: center;
    }
  }

  &  .ping_pong_back_in_stock_change_location{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;

    padding: 0.8rem 2rem;
    
    & > p{
      margin: 0;

      color: white;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1rem;
      line-height: 1;
      font-weight: 800;
      text-align: center;
    }

    & > .ping_pong_change_location_actions{
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.6rem;


      & > p{
        flex: 1;
        background-color:white;
        border-radius: 1rem;
        padding: 0.4rem 1rem;
        margin: 0;
        
        color: black;
        font-family: "Roboto Condensed", sans-serif;
        font-size: 1rem;
        line-height: 1;
        font-weight: 800;
        text-align: center;
        
        transition: color 100ms ease-in-out, background-color 100ms ease-in-out;

        cursor: pointer;
        
        &:hover{
          background-color: #e1e1e1e1;
  
          
          color: #292929;
          
        }
      }
    }
  }
  & > div{
    display: block;
  
    width: 90%;
    margin-inline: auto;

    background-color: black;
    border-radius: var(--border-radius-buttons);
  }

  & .ping_pong_back_in_stock_subscribe_container{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;

    width: 100%;

    margin-inline: auto;

    @media screen and (max-width: 1200px){
      flex-direction: column;

    }

    & > * {
      width: 100%;
    }

    &> {
      height: 100%;
      background-color: black;
      border-radius: var(--border-radius-buttons);
      flex: 2.5;
    }


  }
  & .ping_pong_back_in_stock_subscribe{
    
    
    cursor: pointer;
  
    transition: background-color 100ms ease-in-out;


    & > p.ping_pong_back_in_stock_default_text{
      display: inline-block;

      margin: 0;
      padding: 0.6rem 1rem;

      height: 100%;
      width: 100%;

      color: white;
      font-family: "Roboto Condensed", sans-serif;
      font-size: 1rem;
      line-height: 1;
      font-weight: 800;
      text-align: center;

      transition: color 100ms ease-in-out;
    }
  }
}

/* not logged in */

.ping_pong_back_in_stock_not_logged_in {
  position: fixed;
  top: 50%;
  left: 50%;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  min-width: 300px;
  width: 90%;
  max-width: 800px;

  padding: 3rem;

  background-color: #f5f5f5;
  border-radius: 1rem;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);

  transform: translateX(-50%) translateY(-50%);
  @media screen and (max-width: 768px){
    padding: 3rem 1rem;
    
  }


  & > .ping_pong_back_in_stock_not_logged_in_exit{
    position: absolute;
    top: 1rem;
    right: 1rem;

    width: 1.5rem;
    height: 1.5rem;

    cursor: pointer;

    & > svg{
      width: 100%;
      height: 100%;

      fill: var(--color-text-main);

      transition: fill 100ms ease-in-out;
    }

    &:hover{
      & > svg{
        fill: #292929;
      }
    }
  }
  & > .ping_pong_back_in_stock_form_container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;

      & > form{
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        
        width: 100%;

        & .ping_pong_back_in_stock_checkbox_container{
          display: flex;

          flex-direction: column;
          align-items: start;
          justify-content: center;
          gap: 0.2rem;
          width: 100%;

          & > span {
            font-size: 1.1rem;
            font-weight: 500;
            color: #000000;
            line-height: 1.1;
            font-family: "Roboto Condensed", sans-serif;
          }
          

         & > div {
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: start;
            gap: 0.8rem;

            width: 100%;
            & > input{

              display: flex;
              align-items: center;
              justify-content: center;

              aspect-ratio: 1;
              height: 1.2rem !important;
              width: 1.2rem !important;

              padding: 0;
              margin: 0;
              
              font-size: 1.2rem;
              font-weight: 900;

              appearance: none;
              background-color: #f9f9f9;
              
              outline: none;
              border-radius: 5px;
              border: 2px solid #292929;

              cursor: pointer;

              &::before{
                content: "";

                display: block;

                width: 100%;
                height: 100%;
                
                background-color: #58a77c;

                border-radius: 3px;

                transition: scale 50ms ease-in-out;

                scale: 0;
              }

              &:checked{
                &::before{
                  scale: 1;
                }
              }
                
            }
            & > span {
              font-size: 1rem;
              font-weight: 300;
              color: #5c5c5c;
              line-height: 1.1;
              font-family: "Roboto Condensed", sans-serif;
            }
         }
        }

        & > label {
          display: flex;
          flex-direction: column;
          align-items: center;
          justify-content: start;
          gap: 0.2;

          width: 100%;

          font-size: 0.9em;
          font-weight: 300;
          color: #5c5c5c;
        }
        & > .ping_pong_back_in_stock_form_options{
          display: flex;
          flex-direction: row;
          align-items: center;
          justify-content: center;
          gap: 0.5rem;

          @media screen and (max-width: 1200px){
            flex-direction: column;
            
          }
      
          & > select{
            flex: 1;

            padding: 0.8rem 1rem;

            border-radius: var(--border-radius-buttons);
            background-color: #f9f9f9;
            border: 2px solid var(--color-borders-main);
            color: black;
            font-family: "Roboto Condensed", sans-serif;
            font-size: 1rem;
            line-height: 1;
            font-weight: 800;
          }
        }
        & > * {
          width: 100%;
        }
        &  input{
          width: 100%;

          padding: 0.5rem 1rem;
          &::placeholder{
            
            
            font-size: 1rem;
            color: black;
          }

          border-radius: var(--border-radius-buttons);
          border: 2px solid var(--color-borders-main);
          @media screen and (max-width: 1024px){
            padding: 0.5rem;

            font-size: 1rem;
          }
        }

        & > button {
          padding: 0.8rem 1.5rem;

          color: white;
          font-family: var(--font-stack-body);
          font-size: 1rem;
          line-height: 1.1;
          font-weight: 800;

          border-radius: var(--border-radius-buttons);
          background-color: black;

          transition: color 100ms ease-in-out, background-color 100ms ease-in-out;

          @media screen and (max-width: 1024px){
            padding: 0.8rem 1.5rem;
            font-size: 1rem;
          }

          &:hover{
            
            background-color: #292929;
          }
        }
      } 
    }
  
}
