/* NEW CS PAGE REDESIGN CSS STARTING HERE */
  /* Returns FAQ styles */
  .dropdown-container {
    position: relative;
    display: inline-block;
    padding: 0px 10px 10px 0px;
    width: 100%;
    border-bottom: 2px solid #000;
  }

  .notesSection ol {
    list-style: decimal;
    padding-left: 15px;
}
  /* New Styles */
  .dropdown-container-redesign {
      position: relative;
      display: inline-block;
      padding: 10px;
      width: 100%;
      border: 1px solid #666;
      border-radius: 4px;
  }
  .dropdown-container:after,
  /* New Styles */
  .dropdown-container-redesign:after {
      content: "\25BC";
      position: relative;
      font-size: 14px;
      float: right;
  }
  /* New Styles */
  .display-brand {
      position: absolute;
      background:#fff;
      top:-10px;
      margin:0;
      padding:0px 6px;
      font-size:12px;
  }
  .display-value {
    height: 39px;
    width: 100%;
    display: flex;
    width: 100%;
    position: absolute;
  }

  .value-text {
    display: flex;
    padding-left: 10px;
    line-height: norma;
  }
  .select-container {
    width: 100%;
    padding: 0px;
    position: absolute;
    visibility: hidden;
    margin: 0px;
    height: fit-content;
    background-color: #fff;
    list-style-type: none;
    display: block;
  }
  .select-container:focus {
    outline: none;
  }
  .select-option {
    display: none;
    height: 40px;
    display: flex;
    padding-left: 10px;
    font-family: sans-serif;
    align-items: center;
    color: #666;
  }
  .select-option:hover {
    background-color: #eee;
  }

  .faq_question {
    padding: 0px 0px 8px 0px;
    font-size: 15px;
    margin: 0px 0px 6px 0px;
    font-weight: bold;
  }
  p.faq_question:not(:first-of-type) {
    margin: 30px 0px 6px 0px;
  }

  p.faq_question.flex_question {
    margin-top: 10px;
  }
  
  ul.faq_list li {
    list-style-type: none;
    padding-top: 0px;
    padding-left: 25px;
    margin-bottom: 0px;
    line-height: 1.5em;
    position: relative;
  }
  p.footnote {
    font-size: 11px;
    line-height: normal;
  }
  /* updated on 10-Sept-24 */
  .csTop {
    display: flex;
    flex-direction: row;
    gap: 40px;
    justify-content: space-between;
  }

  .cs_card {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 230px;
    padding: 20px 16px 0px 16px;
    opacity: 0px;
    box-shadow: 0px 1px 6px 0px #00000080;
  }

  .cs_card div {
    display: flex;
    flex: 1;
    justify-content: center;
    align-items: center;
  }

  .cs_card div p {
    font-family: Arial;
    font-size: 20px;
    font-weight: 400;
    line-height: 26px;
    text-align: center;
    width: 80%;
  }

  .hairline {
    border-bottom: 1px solid #cccccc;
    width: 80%;
    height: 0;
    margin: 0;
    padding: 0;
  }

  .csMid {
    background: #F2F2F2;
    padding: 15px 20px;
  }

  .csMid ul {
    display: block;
    list-style-type: disc;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 30px;
    unicode-bidi: isolate;
  }

  .in-store-flex{
    display: flex;
    align-items: flex-start;
    gap:2rem;
    margin-bottom: 1rem;
  }

  ul.newCircleList { list-style-type:disc; padding:6px 0 2px 25px }
  ul.newCircleList li { font-size:15px; color:#4d4d4d; line-height:18px; padding:0 0 5px }

  /* subContentIntro Div */
  .subDirContentIntro p {
    padding: 0;
    margin: 0 0 14px;
    font-size: 15px;
    color: #333;
    line-height: 22px;
  }

  .subDirContentIntro a {
    font-size: 15px;
    line-height: 22px;
  }
  .subDirContentIntro ul li {
    /*font-size:15px; color:#666; line-height:22px*/
  }
  .subDirContentIntro ul li div {
    float: left;
    margin-top: 1px;
  }
  .subDirContentIntro ul li p {
    padding-left: 27px;
    font-size: 15px;
    color: #333;
    line-height: 22px;
  }
  .subDirContentIntro ul.discList li,
  .subDirContentIntro ul.circleList li {
    font-size: 15px;
    color: #333;
    line-height: 22px;
  }
  .subDirContentIntro ul.numberedList li {
    font-size: 15px;
    color: #333;
    line-height: 22px;
    padding: 0 0 10px 21px;
  }
  .subDirContentIntro ul.discList li p,
  .subDirContentIntro ul.circleList li p {
    padding-left: 0;
  }
    /* subContentIntro END */

  @media only screen and (max-width: 768px) {
    .csTop {
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
  }



  .return-process-button {
    width: 323px;           /* Width of the button */
    height: 44px;           /* Height of the button */
    padding: 9px 50px 7px 50px; /* Padding: top-right-bottom-left */
    gap: 10px;              /* Gap between elements inside the button */
    background-color: #003764; /* Background color (example) */
    color: white;           /* Text color */
    border: none;           /* Remove default border */
    font-size: 16px;        /* Font size */
    cursor: pointer;        /* Cursor changes to pointer on hover */
    text-align: center;     /* Center align text */
    display: inline-flex;   /* Flexbox for alignment */
    align-items: center;    /* Align items vertically in the center */
    justify-content: center; /* Center content horizontally */
    font-weight: 350;
  margin-bottom: 40px;
  margin-top: 15px
  }


  .label-text{
    font: Arial;
    font-weight: 400;
    size: 15px;
    line-height: 22px;
  }
  .container {
    display: flex;         /* Use flexbox for side-by-side layout */
    align-items: center;   /* Vertically center items */
    gap: 30px;             /* Space between image and text */
  }

  .side-image {
    width: 50px;           /* Adjust size as needed */
    height: auto;          /* Maintain aspect ratio */
  }

  .side-text {
    margin: 0;             /* Remove default margin */
    font-size: 15px;       /* Font size for the text */
    color: #000;
    font: Arial;
    font-weight: 700;
    line-height:22px  /* Text color */
  }
  .bottom-container {
    background-color: #f0f0f0; /* Grey color for the box */
    padding: 20px;
    border-radius: 8px;
    max-width: 600px;
    margin: 20px auto;
  }

  .highlight {
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color:#000000;
  }

  .underline {
    text-decoration: underline;
  }
  .dark-text {
    font-size: 15px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #666666; /* White text color for contrast */
    border-radius: 8px;
    max-width: 600px;
    margin-left: 10px;
  }

  /* TO add default padding to list tags */
  .cdMidListContainer ul {
      display: block;
      list-style-type: disc;
    margin-block-start: 0em;
    margin-block-end: 0em;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    padding-inline-start: 20px;
    unicode-bidi: isolate;
    margin-bottom: 20px;
  }

  .cdMidListContainer ul li {
    margin-bottom: 10px;
  }

  .item-text {
    position: relative;
  }

  .item-text::before {
    content: "*";
    position: absolute;
    top: 0px;
    left: -5px;
    font-size: 14px;
  }