.options {
    line-height: 24px;
}
.options-item {
    display: flex;
}
.options-item:first-child {
    border-top: 2px solid #5aa2ae;
    border-bottom: 2px solid #5aa2ae;
}
.options-item:last-child {
    border-bottom: 2px solid #5aa2ae;
}
.options-item:first-child .options-item-left {
    padding: 0 30px 0 120px;
    font-weight: 700;
}
.options-item:first-child .options-item-right {
    padding: 0 30px;
    font-weight: 700;
    justify-content: center;
}
.options-item:nth-child(even) .options-item-left {
    background-color: #d4e2e4;
}
.options-item:nth-child(even) .options-item-right {
    background-color: #deecef;
}
.options-item:nth-child(odd) .options-item-left {
    background-color: #f2f2f2;
}
.options-item:nth-child(odd) .options-item-right {
    background-color: #fff;
}
.options-item-left {
    flex: 0 0 33.333%;
    padding: 20px 30px 20px 120px;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 700;
}
.options-item-left:before {
    position: absolute;
    content: "";
    width: 42px;
    height: 42px;
    top: 50%;
    margin-top: -21px;
    left: 32px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
}
.options-item:nth-child(2) .options-item-left:before {
    background-image: url("../img/options/img01.png");
}
.options-item:nth-child(3) .options-item-left:before {
    background-image: url("../img/options/img02.png");
}
.options-item:nth-child(4) .options-item-left:before {
    background-image: url("../img/options/img03.png");
}
.options-item:nth-child(5) .options-item-left:before {
    background-image: url("../img/options/img04.png");
}
.options-item:nth-child(6) .options-item-left:before {
    background-image: url("../img/options/img05.png");
}
.options-item:nth-child(7) .options-item-left:before {
    background-image: url("../img/options/img06.png");
}
.options-item-right {
    flex: 0 0 66.666%;
    padding: 20px 30px;
    display: flex;
    align-items: center;
}


@media (max-width: 1200px) {
    .options-item-left {
        flex: 0 0 40%;
    }
    .options-item-right {
        flex: 0 0 60%;
    }
}
@media (max-width: 992px) {
    .options-item-left {
        flex: 0 0 50%;
    }
    .options-item-right {
        flex: 0 0 50%;
    }
}
@media (max-width: 768px) {
    .options-item-left {
        flex: 0 0 50%;
        padding: 20px 25px 20px 100px;
        word-break: break-all;
        white-space: normal;
    }
    .options-item-right {
        flex: 0 0 50%;
        padding: 20px 25px;
    }
}
@media (max-width: 576px) {
    .options-item {
        flex-direction: column;
    }
    .options-item:first-child {
        display: none;
    }
    .options-item:nth-child(2) {
        border-top: 2px solid #5aa2ae;
    }
    .options-item:nth-child(even) .options-item-left {
        background-color: #f2f2f2;
    }
    .options-item:nth-child(even) .options-item-right {
        background-color: #deecef;
    }
    .options-item:nth-child(odd) .options-item-left {
        background-color: #f2f2f2;
    }
    .options-item:nth-child(odd) .options-item-right {
        background-color: #deecef;
    }
}
