.accordion-two-column details {
  /* border: 1px solid var(--dark-color); */
  border: none;
  border-bottom: 1px solid #c1c1c1;
  &:first-child {
    border-top: 1px solid #c1c1c1;
  }
}
/* stylelint-disable-next-line no-descending-specificity */
.accordion-two-column details + details {
  margin-top: 0;
}
.accordion-two-column details summary {
  color: var(--blue);
  width: calc(100% - 48px);
  position: relative;
  padding: 1.6rem 2rem 1.6rem 4.8rem;
  cursor: pointer;
  list-style: none;
  overflow: auto;
  transition: background-color 0.2s;
}
.accordion-two-column details[open] summary {
  background-color: var(--light-color);
  &:before {
    transform: translateY(-50%) rotate(-90deg);
  }
}
.accordion-two-column details summary:hover {
  /* background-color: var(--gray); */
  h3 , h4, .accordion-item-label, strong, summary, p {
    color: var(--link-hover-color) !important;
  }
  &:before {
    background-color: var(--link-hover-color) !important;;
  }
}
.accordion-two-column details summary::-webkit-details-marker {
  display: none;
}
.accordion-two-column  details summary:before {
  content: '';
  background-image: url('../../../icons/arrow-white.svg');
  background-color: #0378cd;
  background-size: 30%;
  background-repeat: no-repeat;
  background-position: 54%;
  width: 2.4rem;
  height: 2.4rem;
  position: absolute;
  border-radius: 50%;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transition: transform 0.5s ease, color 0.5s ease;
}


/* .accordion-two-column details summary:after {
  content: "";
  position: absolute;
  top: 48%;
  right: 18px;
  transform: translateY(-50%) rotate(135deg);
  width: 9px;
  height: 9px;
  border: 2px solid;
  border-width: 2px 2px 0 0;
  transition: transform 0.2s;
} */
.accordion-two-column details[open] summary:after {
  /* transform: translateY(-50%) rotate(-45deg); */
  transform: scaleY(-1) rotate(-225deg);
}
.accordion-two-column details .accordion-item-body {
  padding: 0 3.2rem 0 4.8rem !important;
  @media (width <=600px) {
    padding: 0 .9rem;
  }
}
.accordion-two-column details[open] .accordion-item-body {
  border-top: 1px solid var(--dark-color);
  background-color: none;
}
.accordion-two-column-wrapper {
  clear: both;
  .accordion-two-column {
    margin: 0 auto !important;
    padding: 3.2rem 0 !important;
    .accordion-item {
      .accordion-item-label {
        color: #007dc3;
        h4, h5 {
          margin: 0 !important;
        }
        p {
          margin: 0 !important;
        }
        :hover{
          color: #3aaafc;
        }
      }
      .accordion-item-body {
        padding: 2.4rem 0;
      }
    }
  }
  .skp-blue-accordion-2 {
    margin: 3.2rem 0!important;
    border-left: 4px solid #007dc3;
    position: relative;
    background: rgba(0, 125, 195, 0.07);
    width: auto;
    box-sizing: border-box;
    padding: 1.6rem 0 !important;
    h3 {
      font-size: 2.4rem;
      line-height: 1;
    }
    &.accordion details summary {
      padding: 0 !important;
      padding-right: 48px;
    }
    details {
      border-bottom: none;
    }
    .accordion-item {
      line-height: 1;
      border-top: 0;
      .accordion-item-label {
        padding-left: 4.8rem;
      }
      .accordion-item-body {
        padding: 0 2.4rem 0 4.8rem !important;
        margin-bottom: 0 !important;
        border: none !important;
      }
    }
    div.accordion-two-column {
      margin: 0 auto !important;
      padding: 3.2rem 0 !important;
      .accordion-item {
        .accordion-item-label {
          color: var(--blue);
          h4, h5 {
            margin: 1.6rem 0 !important;
          }
          p {
            margin: 0 !important;
          }
          :hover{
            color: #3aaafc;
          }
        }
        .accordion-item-body {
          padding-bottom: 0;
          margin-bottom: 0 !important;
        }
      }
    }
    div > div:nth-child(1) {
      min-width: 58%;
    }
    div > div:nth-child(2) {
      padding-top: 0;
      width: 38%;
      min-width: 38%;
    }
  }
  @media (width <= 900px) {
    .skp-blue-accordion-2 {
      div > div:nth-child(2) {
        max-width: 100%;
      }
    }
  }
}

/* .accordion-item-body {
  margin-bottom: 32px;
  p {
    clear: both;
  }
} */
.accordion-item-body.accordion-double {
  display: flex;
  flex-direction: row;
  gap: 2em;
  h5 {
    margin: 0 0 4px 0 !important;
  }
  h5 + p {
    margin: 0 0 16px 0 !important;
  }
  .accordion-col-1 {
    /* width: 50%; */
    padding-top: 1em;
    
  }
  .accordion-col-2 {
    /* width: 50%; */
    padding-top: 1em;
    p {
      font-size: var(--body-font-size-xs);
      margin-bottom: 0;
    }
  }
  @media (width <=900px) {
    flex-direction: column;
    gap: 0;
    .accordion-col-1, .accordion-col-2 {
      width: 100% !important;
      padding-top: 0;
    }
  }
}
