.ac-rw-section-wrapper {
    width: 100%;
    margin: 20px 0px;
}
.ac-rw-section {
    display: grid;
    grid-template-columns: 1fr 0.01fr 0.01fr;
    gap: 0px 20px;
    font-size: 14px;
    align-items: center;
}
.ac-rw-sections-cont {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.ac-rw-line-text {
    padding: 5px;
}
.ac-rw-line-stars {
    white-space: nowrap;
    min-width: 70px;
}
.ac-rw-line-stars img {
    width: 12px;
    display: inline!important;
}
.ac-rw-title {
    font-size: 14px;
    margin-bottom: 5px;
}
.ac-rw-section-title {
    font-size: 12px;
    color: #4B5563;
    grid-column: 1/4;
    margin-bottom: 5px;
}
.ac-rw-line-explanation-icon {
    display: inline-block;
    margin-right: 10px;
    border: 1px solid black;
    border-radius: 8px;
    cursor: pointer;
    width: 12px;
    height:12px;
    text-align: center;
    line-height: 10px;
    font-size: 9px;
    vertical-align: middle;
}
#ac-rw-explanation-popup {
    position: absolute;
    width: 400px;
    background: white;
    border: 1px solid black;
    border-radius: 5px;
    left: -9999px;
    top: -9999px;
    box-shadow: 0px 24px 50px 0px rgba(55, 65, 81, 0.25);
    overflow: hidden;
}
.bx-media-phone #ac-rw-explanation-popup {
    left: 5px!important;
    right: 5px!important;
    width: unset!important;
}
#ac-rw-explanation-popup .header {
    padding: 10px 10px;
    display: flex;
    gap: 10px;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
}
#ac-rw-explanation-popup .header .close i {
    cursor: pointer;
    margin-right: 10px;
}
#ac-rw-explanation-popup .body {
    background: #f4f5f6;
    padding: 10px 10px;
    font-size: 12px;
}
#ac-rw-explanation-popup .tags {
    display: flex;
    background: #f4f5f6;
    gap: 10px;
    flex-wrap: wrap;
    padding: 0px 15px 20px;
}
#ac-rw-explanation-popup .tags > div {
    font-size: 14px;
    background: white;
    border: 1px solid rgba(17, 24, 39, 1);
    border-radius: 20px;
    padding: 3px 7px;
}

/* see more/less */
.ac-rw-section {
    display: none;
}
.ac-rw-section:first-child,
.ac-rw-section-wrapper.expanded .ac-rw-section {
    display: grid;
}
.ac-rw-showmoreless {
    display: none;
    text-align: center;
}
.ac-rw-showmoreless a {
    color: inherit;
}
.ac-rw-section-wrapper.expanded .ac-rw-showmoreless a:first-child,
.ac-rw-section-wrapper .ac-rw-showmoreless a:last-child {
    display: none;
}
.ac-rw-section-wrapper.expanded .ac-rw-showmoreless a:last-child {
    display: inline;
}