.accordion-title {
    background-color: white;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    padding: 24px 52px 24px 16px;
}
/*.accordion-item{
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}*/
.accordion-item.active .accordion-title {
    background-color: white;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.open-icon {
    display: block;
}

.close-icon {
    display: none;
}

.accordion-item.active .open-icon {
    display: none;
}

.accordion-item.active .close-icon {
    display: block;
}

.accordion-content {
    overflow-y: auto;
    opacity: 0;
    max-height: 0;
    transition: height 0.4s ease-in-out;
    border-bottom-width: 1px;
    background-color: white;
}

.accordion-item.active .accordion-content {
    opacity: 1;
    /*max-height: 400px;*/
    /*height: auto;*/
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    -webkit-box-pack: start;
    justify-content: flex-start;
    background: rgb(255, 255, 255);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1)
}
.accordion-item.active .accordion-content .noticeContentDiv{
    font-size: 14px;
    line-height: 20px;
    letter-spacing: -0.2px;
    font-weight: 400;
    text-align: left;
    white-space: pre-line;
    width: auto;
    max-width: 761px;
    padding: 0;
}

.accordion-title .subTitle{
    font-size: 12px;
    line-height: 16px;
    letter-spacing: -0.2px;
    font-weight: 500;
    color: rgb(126, 128, 130);
    margin-bottom: 2px;
}

.accordion-title .mainTitle{
    overflow: hidden;
    overflow-wrap: break-word;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;

    font-size: 16px;
    line-height: 25px;
    letter-spacing: -0.2px;
    color: rgb(24, 26, 28);
    font-weight: 500;
    text-align: left;

}
.accordion-item.active .accordion-title .mainTitle{
    font-weight: 700;
}

.accordion-title img.open-icon{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotateZ(0deg);
    transition: transform 0.3s ease 0s;
}

.accordion-title img.close-icon{
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%) rotateZ(180deg);
    transition: transform 0.3s ease 0s;
}

.itz-editor-input{
    background-color: white; !important;
}

.itz-editor-image{
    background-color: white; !important;
}

.editableFalse {
    /*pointer-events: none;*/
}