@charset "utf-8";

.recipe .recipe-border>div:not(:first-child) {
    margin-top: 40px;
}

.recipe .title {
    font-weight: bold;
    color: #e56c6e;
    font-size: 24px;
    line-height: 33px;
}

.recipe .title-border i {
    margin-right: 5px;
}

.recipe .img-border {
    display: flex;
}

.recipe .recipe-step>div:not(:first-child) {
    margin-top: 30px;
}

.recipe .items-border {
    display: flex;
    justify-content: center;
}

.recipe .items-no {
    margin: auto 0;
    margin-right: 20px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    line-height: 80px;
    color: #555;
    text-align: center;
    font-size: 30px;
    background: #ffb11b;
}

.recipe .items:nth-child(even) .items-no {
    background: #e56c6e;
}

.recipe .items-text {
    display: flex;
    background: #f1f1f1;
    text-align: left;
    align-items: center;
    box-sizing: border-box;
    width: 500px;
    height: 110px;
    padding: 10px;
    font-size: 18px;
    background-position: right center;
    background-repeat: no-repeat;
    border: 3px solid #ffb11b;
    color: #555;
    border-radius: 20px;
    line-height: 1.6;
}

.recipe .items:nth-child(even) .items-text {
    border: 3px solid #e56c6e;
}

@media screen and (max-width: 767px) {
    .recipe .items-no {
        width: 100%;
        height: 100%;
        line-height: 40px;
        border-radius: 20px 20px 0 0;
        font-size: 20px;
    }

    .recipe .items-border {
        flex-direction: column;
    }

    .recipe .items-text {
        border-radius: 0 0 20px 20px;
        width: 100%;
    }
}