/* Start Common Nudge */
.explore-panel-nudge {
    max-width: 330px;
    margin: 50px auto;
    padding: 25px 15px;
    border: 1px solid rgba(50, 31, 31, 0.16);
    background: var(--white-100, #fff);
}
.explore-panel-nudge svg {
    width: 24px;
    height: 24px;
    margin-bottom: 15px;
}
.explore-panel-nudge span {
    color: #321f1fa3;
    text-decoration-line: line-through;
}
.explore-panel-nudge h1,
.explore-panel-nudge .h1 {
    color: var(--dark-100, #321f1f);
    text-align: center;
    font-family: Archivo;
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 5px;
}
.explore-panel-nudge p {
    color: var(--dark-80, rgba(50, 31, 31, 0.8));
    text-align: center;
    font-family: Archivo;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.28px;
}
.explore-panel-nudge .btn-secondary {
    margin-top: 15px;
    border-radius: 2px;
    border: 1px solid #f33;
    color: #f33;
    text-align: center;
    font-family: Archivo;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.28px;
    display: block;
    width: 100%;
}
.explore-panel-nudge .btn-secondary:hover {
    border: 1px solid #f33;
    color: #f33;
}


.homePage-side-panel-nudge {
    border-radius: 4px;
    padding: 30px;
    max-width: 330px;
    margin: 50px auto;
    text-align: center;
}
.homePage-side-panel-nudge.new-editorial-product {
    /*background: #d5e2eb !important;*/
    background: #e4d6e7 url(../svg/gift-confetti.svg) no-repeat;
    background-size: 250%;
}
.homePage-side-panel-nudge.alternate-product {
    background: #f2dede !important;
}
.homePage-side-panel-nudge.alternate-product svg {
    margin-bottom: 10px;
}
.homePage-side-panel-nudge img {
    height: 180px;
    width: 180px;
    margin-bottom: 20px;
}
.homePage-side-panel-nudge .tiny-text {
    color: #f33;
    text-align: center;
    font-family: Archivo;
    font-size: 11px;
    font-style: normal;
    font-weight: 500;
    line-height: 16px;
    letter-spacing: 0.6px;
    text-transform: uppercase;
    padding-bottom: 5px;
}
.homePage-side-panel-nudge h3,
.homePage-side-panel-nudge .h3 {
    color: var(--dark-100, #321f1f);
    text-align: center;
    font-family: Archivo;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 22px;
    letter-spacing: 0.16px;
    margin-bottom: 5px;
}
.homePage-side-panel-nudge p {
    color: var(--dark-80, rgba(50, 31, 31, 0.8));
    text-align: center;
    font-family: Archivo;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: 0.28px;
}
.homePage-side-panel-nudge .btn-secondary {
    border-radius: 2px;
    border: 1px solid var(--Primary, #f33);
    padding: 14px 25px;
    margin-top: 20px;
}
.homePage-side-panel-nudge .btn-secondary:hover {
    border: 1px solid var(--Primary, #f33);
    color: #f33;
}
.homePage-side-panel-nudge a {
    color: var(--Primary, #f33);
    text-align: center;
    font-family: Archivo;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 0.28px;
    width: 100%;
    display: block;
}

/* End Common Nudge */

/* Start Story Page Nudge */
.story_page_full_width_nudge{
  background-color: #fff;
  background: #fff url(../svg/gift-confetti.svg) no-repeat top;
    .story_page_full_width_nudge_container{
      display: flex;
      padding: 30px 15px;
      flex-direction: column;
      align-items: center;
      max-width: 720px;
       margin:auto;

      .icon{
        margin-bottom:15px;
      }

      h1{
        color: var(--dark-100, #321F1F);
        text-align: center;
        /* Mobile/Non-Editorial/H2 semibold */
        font-family: Archivo;
        font-size: 22px;
        font-style: normal;
        font-weight: 600;
        line-height: 24px; /* 109.091% */
      }
      p{
        color: var(--dark-80, rgba(50, 31, 31, 0.80));
        text-align: center;
        /* Mobile/Non-Editorial/H4 regular */
        font-family: Archivo;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 22px; /* 137.5% */
        letter-spacing: 0.16px;
      }
      .cta-conatiner{
          margin-top:15px;
          a{
            color: var(--white-100, var(--system-white, #FFF));
            text-align: center;
            /* Mobile/Non-Editorial/P1 semibold */
            font-family: Archivo;
            font-size: 14px;
            font-style: normal;
            font-weight: 600;
            line-height: 20px; /* 142.857% */
            letter-spacing: 0.28px;
          }
        }
       
    }
  
}

@media(min-width:768px){

  .story_page_full_width_nudge {
    .story_page_full_width_nudge_container{

      padding:40px 0px;
      margin:auto;
      max-width: 720px;

      .icon{
          margin-bottom:15px;
      }
      h1{
        font-size: 32px;
        line-height: 32px; /* 100% */
      }

      p{
        font-size: 18px;
        line-height: 24px; /* 133.333% */
      }
      .cta-conatiner{
        margin-top:25px;
      }
    }
  }
}

/* End Story Page Nudge */


/* Piracy Prevention Motice Modal */

    .ip-piracy-prevention-notice-modal-3-0 .modal-dialog {
        display: flex;
        justify-content: center;
        align-items: flex-end;
        height: 100%;
        margin: 0 auto;
    }
    .ip-piracy-prevention-notice-modal-3-0 .modal-content {
        background-color: #fff;
        padding: 30px 15px;
    }
  .ip-piracy-prevention-notice-modal-3-0 .modal-body {
      border: none;
    }
  .ip-piracy-prevention-notice-modal-3-0 .close{
    position: absolute;
    top: -20px;
    right: -5px;
    border-radius: 50%;
    height: 30px;
    width: 30px;
    background: #eee7e7;
    padding: 0 !important;
  }

  .ip-piracy-prevention-notice-modal-3-0 img{
    margin-bottom: 20px;
    max-width: 60px;
    filter: grayscale(100%);
  }

  .ip-piracy-prevention-notice-modal-3-0 h2,
  .ip-piracy-prevention-notice-modal-3-0 .h2 {
      color:#321f1f;
      text-align: center;
      font-family: Archivo;
      font-size: 18px;
      font-style: normal;
      font-weight: 600;
      line-height: 22px;
      margin-bottom: 10px;
  }
  .ip-piracy-prevention-notice-modal-3-0 p {
      color: rgba(50, 31, 31, 0.8);
      text-align: center;
      font-family: Archivo;
      font-size: 14px;
      font-style: normal;
      font-weight: 400;
      line-height: 20px;
      letter-spacing: 0.28px;
  }

  .ip-piracy-prevention-notice-modal-3-0 .cta-conatiner{
    display: flex;
    gap:10px;
    margin-top:20px;
    flex-direction: column;
    width: 100%;
  }
  .ip-piracy-prevention-notice-modal-3-0 .cta-conatiner .btn-social{
    background:#4285f4;
    color:#fff;
    display: flex;
    justify-content: center;
    align-items: center;
  }
    
@media (min-width:1024px){
    .ip-piracy-prevention-notice-modal-3-0 .modal-dialog {
      align-items: center;
    }
    .ip-piracy-prevention-notice-modal-3-0 .modal-content {
        padding: 50px;
        min-width: 520px;
    }
    .ip-piracy-prevention-notice-modal-3-0 .close{
      top: -30px;
      right:-30px;
    }
    .ip-piracy-prevention-notice-modal-3-0 h2,
    .ip-piracy-prevention-notice-modal-3-0 .h2 {
        font-size: 22px;
        line-height: 24px;
        margin-bottom: 15px;
    }
    .ip-piracy-prevention-notice-modal-3-0 p {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.16px;
    }
   
   .ip-piracy-prevention-notice-modal-3-0 .cta-conatiner{
      display: flex;
      gap:10px;
      margin-top:10px;
      flex-direction: column;
      width: 100%;
    }

    .ip-piracy-prevention-notice-modal-3-0 a {
        font-size: 16px;
        line-height: 22px;
        letter-spacing: 0.16px;
        /*margin-top: 10px;*/
    }
}

/* Piracy Prevention Motice Modal */