.pros-cons div {
    font-weight: bold;
    font-size: 21px;
}

.pros-in {
    margin-right: 10px;
}

.pros-in,
.cons-in {
    list-style: none;
    padding-left: 15px;
    margin-top: 10px;
}

.pros-in li,
.cons-in li {
    position: relative;
    padding-left: 30px;
    margin: 7px 0px;
}

.pros-in li:before,
.cons-in li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: red;
}

.pros-in li:before {
    background: url("/wp-content/uploads/2024/08/plus.svg");
    background-size: contain;
}

.cons-in li:before {
    background: url("/wp-content/uploads/2024/08/minus.svg");
    background-size: contain;
}

.yellow-box {
    position: relative;
    background-color: #e3f0ff;
    padding: 20px 20px 20px 50px;
    border-radius: 10px;
}

.yellow-box {
    margin: 15px 0px;
    padding-left: 70px;
    background-color: #fca0333b;
}

.yellow-box:before {
    content: "!";
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translate(0px, -50%);
    width: 20px;
    height: 20px;
    background-color: #2568ef;
    color: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.yellow-box:before {
    content: "";
    background-image: url('../editor-img/star-orange.svg');
    background-size: 90%;
    background-position: center;
    background-color: #ffffff;
    width: 40px;
    height: 40px;
}

ol.steps {
    list-style: none;
    counter-reset: item;
}

.steps {
    margin: 15px 0px;
    overflow: hidden;
}

.steps li {
    counter-increment: item;
    margin-bottom: 13px;
    list-style: none;
    position: relative;
    padding-left: 50px;
}

.steps li strong {
    display: block;
    font-size: 18px;
}

.steps li:before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(0, -50%);
    background: #fca033;
    border-radius: 100%;
    color: white;
    width: 28px;
    height: 28px;
    font-size: 18px;
    text-align: center;
    display: block;
    align-items: center;
    z-index: 1;
}

.readmore {
    position: relative;
    color: rgb(33, 37, 41) !important;
    overflow: hidden;
    height: 80px;
}

.readmore:before {
    content: "";
    width: 100%;
    height: 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: linear-gradient(0deg, #ffffff, transparent);
}

.readmore-button {
    background: #0d6efd;
    color: #fff;
    padding: 10px;
    margin: 10px 0;
}

.readmore.show-all:before {
    display: none;
}

.show-all {
    height: auto !important;
}