.cdw-bullet-accordion {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.cdw-bullet-accordion .process-content {
    display: flex;
    position: relative;
}

.cdw-bullet-accordion .bullets-list {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding-left: 30px;
}

.cdw-bullet-accordion .bullets-list::before {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 0;
    width: 1px;
    height: calc(100% - 100px);
    min-height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    content: "";
}

.cdw-bullet-accordion .bullet-item,
.cdw-bullet-accordion .bullet-item * {
    -webkit-tap-highlight-color: transparent;
}

.cdw-bullet-accordion .bullet-item {
    position: relative;
    margin-bottom: 32px;
    margin-left: 24px;
    padding-bottom: 32px;
    border-bottom: 1px solid #eeeeee;
}

.cdw-bullet-accordion .bullet-icon {
    position: absolute;
    top: 0;
    left: -51px;
    z-index: 1;
    width: 24px;
    height: 24px;
    opacity: 0.2;
}

.cdw-bullet-accordion .bullet-icon::before {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.2;
    content: "";
}

.cdw-bullet-accordion .bullet-icon span {
    position: absolute;
    top: 6px;
    left: 6px;
    width: 12px;
    height: 12px;
    border: 1px solid currentColor;
    border-radius: 50%;
    background: currentColor;
}

.cdw-bullet-accordion .bullet-item.open .bullet-icon {
    opacity: 1;
}

.cdw-bullet-accordion .bullet-header {
    position: relative;
    display: flex;
    width: 100%;
    align-items: flex-start;
    gap: 12px;
    padding: 0 32px 0 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
}

.cdw-bullet-accordion .bullet-header::after {
    position: absolute;
    top: 50%;
    right: 0;
    width: 12px;
    height: 12px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    content: "";
    transform: translateY(-65%) rotate(45deg);
    transition: transform 240ms ease;
}

.cdw-bullet-accordion .bullet-item.open .bullet-header::after {
    transform: translateY(-20%) rotate(225deg);
}

.cdw-bullet-accordion .bullet-title {
    font-size: 18px;
    font-weight: 500;
}

.cdw-bullet-accordion .bullet-body {
    display: flex;
    max-height: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    overflow: hidden;
    padding: 0 40px 0;
    opacity: 0;
    transition: max-height 400ms ease, opacity 300ms ease, padding 300ms ease;
}

.cdw-bullet-accordion .bullet-item.open .bullet-body {
    padding: 16px 43px 0 40px;
    opacity: 1;
}

.cdw-bullet-accordion .bullet-body-wrapper {
    width: 100%;
}

.cdw-bullet-accordion .bullet-description-wrapper {
    position: relative;
    overflow: visible;
}

.cdw-bullet-accordion .readmore-description-wrapper {
    overflow: hidden;
}

.cdw-bullet-accordion .bullet-description {
    overflow: hidden;
    opacity: 1;
    transition: max-height 500ms ease, opacity 300ms ease;
}

.cdw-bullet-accordion .bullet-description > :last-child {
    margin-bottom: 0;
}

.cdw-bullet-accordion .generic-btn {
    margin-top: 10px;
}

.cdw-bullet-accordion .bullet-readmore-toggle {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: currentColor;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.18em;
    transition: color 300ms ease;
}

.cdw-bullet-accordion .bullet-readmore-toggle:hover {
    opacity: 0.72;
}

.cdw-bullet-accordion .bullet-readmore-toggle[hidden] {
    display: none;
}

.cdw-bullet-accordion .bullet-link-wrap {
    margin-top: 12px;
}

.cdw-bullet-accordion .bullet-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    text-decoration: none;
}

.cdw-bullet-accordion .bullet-link::after {
    width: 0.45em;
    height: 0.45em;
    border-top: 1px solid currentColor;
    border-right: 1px solid currentColor;
    content: "";
    transform: rotate(45deg);
}

@media (max-width: 768px) {
    .cdw-bullet-accordion .process-content {
        flex-direction: column;
    }
}
