.recipe-container .images-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow-clip-margin: unset;
    overflow: hidden;
    border-radius: 10px;
}

.recipe-container .title {
    font-weight: 700;
    font-size: 16px;
}

.recipe-container .text-1 {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
}

.recipe-container .main-img {
    max-height: 500px;
}

.recipe-container .secound-img {
    width: 130px;
    aspect-ratio: 100 / 90;
    padding-left: 7.5px;
    padding-right: 7.5px;
    margin-top: 15px;
}

.recipe-container .little-images {
    padding-left: 7.5px;
    padding-right: 7.5px;
}

.recipe-container .name {
    font-size: 32px;
}

.recipe-container .name img {
    margin-left: 10px;
    cursor: pointer;
}

.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, 148px);
    justify-content: center;
    grid-auto-rows: auto;
}

.grid-products .image-container {
    height: 135px;
}

.grid-products .item-container .title {
    padding: 0px 10px;
    word-break: break-word;
    font-size: 14px;
    padding-bottom: 5px;
}

iframe {
    width: 100%;
    aspect-ratio: 1.7;
    border-radius: 10px;
}

@media (max-width:1199px) {
    .recipe-container .secound-img {
        width: 136.2px;
    }

    .grid-products {
        grid-template-columns: repeat(auto-fit, 123px);
    }

    .grid-products .image-container {
        height: 110px;
    }
}

@media (max-width:991px) {
    .recipe-container .secound-img {
        width: 135px;
    }

    .grid-products {
        grid-template-columns: repeat(auto-fit, 135px);
    }
}

@media (max-width:767px) {
    .recipe-container .name {
        font-size: 22px;
    }

    .recipe-container .title.big {
        font-size: 20px;
    }

    .recipe-container .line {
        height: 1px;
        background: #D9D9D9;
        margin: 10px 0px;
    }

    .expandable-content {
        font-size: 14px;
        color: #666666;
        font-weight: 300;
    }

    .expandable .sign {
        font-weight: 600;
    }

    .recipe-container .secound-img {
        width: 33.33%;
    }

    .grid-products {
        grid-template-columns: repeat(auto-fit, 33.33%);
    }
}

@media (max-width:575px) {
    .recipe-container .secound-img {
        width: 50%;
    }

    .grid-products {
        grid-template-columns: repeat(auto-fit, 50%);
    }
}

@media (max-width:400px) {
    .padding-right-0 {
        padding-right: 7px !important;
    }

    .padding-left-0 {
        padding-left: 7px !important;
    }

    .grid-products .image-container {
        height: 81px;
    }
}