#course__answers{
    margin-top: 40px;
}
.answers-item:first-child {
    border-top: 1px solid rgb(39 39 39 / 50%);
}
.answers-item {
    border-bottom: 1px solid #0000004D;
}
.answers-item__header {
    padding: 15px 0 !important;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-transition-duration: .3s;
    -o-transition-duration: .3s;
    transition-duration: .3s;
}
.answers-item__content {
    display: none;
    margin: 0 0 15px 0;
    font-family: Wix Madefor Display;
    font-size: 16px;
    font-weight: 500;
}
.answers-item.answers-item--open .answers-item__content {
    display: block;
}

.answers-item__content ul li{
    font-family: Wix Madefor Display;
    font-size: 16px;
    font-weight: 400;
}
.answers-item__content ul li::before{
    border-radius: 50%;
    background: #093EB4;
    content: "";
    width: 9px !important;
    height: 9px !important;
    flex-shrink: 0;
    display: block;
    position: absolute;
    left: 0;
    margin: 0;
}

.i-answers-plus {
    color:rgba(39, 39, 39, 1) !important;
    width: 32px !important;
    height: 32px !important;
    transition: transform .2s ease-out;
}
.answers-item.answers-item--open .i-answers-plus {
    transform: rotate(45deg);
}

.answers-item__header-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
}

.answers-item__plus {
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    position: relative;
    color: #3079d2;
    margin-left: 20px;
    flex-shrink: 0;
    background: #FFFFFF !important;
    width: 58px !important;
    height: 58px !important;
    border-radius: 50%;
}
.answers__item-text {
    font-family: Wix Madefor Display;
    font-weight: 500;
    font-size: 22px;
    line-height: 120%;
    color: rgba(39, 39, 39, 1);
}

@media (max-width: 1100px) {
    .answers__item-text {
        font-size: 20px;
    }
    .answers-item__content{
        font-size: 14px;
    }
}
@media (max-width: 980px) {
    .answers-item__content {
        font-size: 12px !important;
    }
}
@media (max-width: 670px) {
    .answers__item-text {
        font-size: 14px;
        line-height: 120%;
    }
    .answers-item__plus {
        width: 30px !important;
        height: 30px !important;
    }
    .i-answers-plus {
        width: 17px !important;
        height: 17px !important;
    }
}