/** Shopify CDN: Minification failed

Line 63:24 Unexpected "{"
Line 63:32 Expected ":"
Line 81:24 Unexpected "{"
Line 81:32 Expected ":"
Line 88:24 Unexpected "{"
Line 88:32 Expected ":"
Line 98:24 Unexpected "{"
Line 98:32 Expected ":"
Line 107:24 Unexpected "{"
Line 107:32 Expected ":"
... and 10 more hidden warnings

**/
      .custom-customer-account {
      padding: var(--section-padding-desktop);
      background:#1A1A1A;
    }
    .custom-customer-account .header-title{
  font-weight: 400;
  font-size: 28px;
  line-height: 100%;
  letter-spacing: 0%;
  color:White;
  margin:0px;
  margin-bottom:10px;
  }
  .custom-customer-account .subtext{
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  letter-spacing: 0%;
  margin:0px;
  }
  .custom-customer-account .customer-account-steps{
      margin-top:60px;
      display: flex;
      flex-direction: column;
      gap: 60px;
  }
  .custom-customer-account .customer-account-steps .step{
      display:grid;
      align-items: center;
      grid-template-columns:1fr auto;
      gap:24px;
  }
  .custom-customer-account .customer-account-steps .step h4{
  font-weight: 500;
  font-size: 24px;
  line-height: 130%;
  letter-spacing: 0%;
  margin:0px;
  margin-bottom:10px;
  }
  .custom-customer-account .customer-account-steps .step p{
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;
  margin:0px;
  letter-spacing: 0%;
  }
      #shopify-section-{{section.id}} .watch-video-popup{
          position: fixed;
      top: 0px;
      left: 0px;
      width: 100%;
      z-index: 44;
      display: flex;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s
  linear, visibility 0s
  linear 0.3s;
      align-items: center;
      justify-content: center;
      padding: 50px 0px;
      background: #000000cc;
      height: 100vh;
      }
      #shopify-section-{{section.id}} .watch-video-popup.active{
          opacity: 1;
      visibility: visible;
      transition: opacity 0.3s
  linear, visibility 0s
  linear 0s;
      }
      #shopify-section-{{section.id}} .watch-popup-video-main{
              width: fit-content;
      position: relative;
      z-index: 434545;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 1280px;
      }
      #shopify-section-{{section.id}} .video_cont{
      aspect-ratio: 16 / 9;
      width:auto;
      height:697.5px;
   border-radius: 16px;
  overflow:hidden;
  max-height:100%;
  position:relative;
      }
      #shopify-section-{{section.id}} .video_player{
   width:100%;
   height:100%;
   object-fit:cover;
   position:relative;
      }
          #shopify-section-{{section.id}} .control{
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: transparent;
      border: none;
      border-radius: 500px;
      padding: 0px;
      cursor: pointer;
  }
  #shopify-section-{{section.id}} .closepopupoverly{
          position: absolute;
      top: 0px;
      left: 0px;
      width: 100%;
      height: 100%;
      display: block !important;
  }
  #shopify-section-{{section.id}} .video_overly {
  position: absolute;
      top: 0px;
      left: 0px;
      height: 100%;
      width: 100%;
      z-index: 55;
  }
  #shopify-section-{{section.id}} .watch-popup-video-main.is-playing .control {
      display: none;
  }
  #shopify-section-{{section.id}} .watch-popup-video-main.is-playing .video_overly {
      display:block !important;
  }
  @media only screen and (max-width:767px){
      .custom-customer-account {
        padding: var(--section-padding-mobile);
      }
      .custom-customer-account .customer-account-steps{
          margin-top:30px;
          gap:30px;
      }
  }