.blin.recipe-page:before{
    height: 380px;
}
.blin.recipe-page__content--steps__step{
    margin-bottom: 10px;
}
.blin.recipe-page__content--steps__meta{
    margin-top: 90px;
}
.blin.header{
    z-index: 1049;
}

.blin-discount{
    display: flex; align-items: stretch; margin-block: 90px;
    background: #F4FAFF; border-radius: 16px;
    font-family: RotondaC;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1;
    text-align: center;
}
.blin-discount__left{
    width: 460px; flex-shrink: 0; background: #3095EB; color: #fff;
     height: 143px; border-radius: 16px; display: grid; place-items: center;
    font-size: 40px;
}
.blin-discount__right{
    padding: 16px 20px; display: flex; flex-direction: column; justify-content: space-between;
}
.blin-discount__text{
    font-size: 15px;
    color: #3095EB;

    img{
        margin-top: 6px;
    }
}

.blin-copy{
    background: #00569F; border-radius: 16px; display: flex; align-items: center; color: #fff; padding: 8px 8px 8px 16px; gap: 8px; margin-top: 12px;
}
.blin-copy__text{
    font-family: TTLimesSans; display: flex; align-items: center; gap: 8px; cursor: pointer;
    font-weight: 700;
    font-size: 21px;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}
.blin-copy__btn{
    height: 40px; display: inline flex; align-items: center; background: #fff; border-radius: 16px; flex:1;
    font-family: RotondaC; color: #2F5290; justify-content: center; cursor: pointer;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    text-align: center; text-decoration: none;

    &:hover{
        background: #3095EB; color: #fff; text-decoration: none;
    }
}
.blin-copy__img{
    img{
        width: 20px;
        &:last-child{
            display: none;
        }
    }
}
.blin-copy.copied{
    .blin-copy__img{
        img{
            display: none;
            &:last-child{
                display: block;
            }
        }
    }
}
.blin-count{
    display: flex; justify-content: center; align-items: center; gap: 18px; margin-bottom: 85px; margin-top: -40px;

    .form-control{
        width: 170px;
    }
    .btn{
        max-height: 48px;
    }
}

.blin-main{
    margin-bottom: 90px; position: relative;
}
.blin-main__img{
    img {
        width: 100%; height: 100dvh; object-fit: cover;
    }
}
.blin-main__block{
    position: absolute; bottom: 1.5vw; left: 42%; z-index: 10;
}
.blin-main__title{
    --stroke: 0.2vw;
    margin-bottom: 1vw; text-align: center;
    font-family: TTLimesSans; color: #0060AF;
    font-weight: 700;
    font-size: 2.3vw;
    line-height: 1;
    text-transform: uppercase;
    -webkit-text-stroke: var(--stroke) white;
    -webkit-text-fill-color: #0060AF; /* optional */
    /* For Firefox support */
    paint-order: stroke fill;
    stroke: white;
    stroke-width: var(--stroke);
}
.blin-main__list{
    display: flex; gap: 3vw; justify-content: center; width: 100%;
}

.blin-person{
    text-decoration: none; color: white;
    &:hover{
        text-decoration: none; color: white;
    }
}
.blin-person__img{
    margin-bottom: 1vw; text-align: center;

    img{
        width: 9vw; aspect-ratio: 1; border-radius: 50%; margin-inline: auto;
        box-shadow: 0px 9.15px 13.08px 0px #00000040;
    }
}
.blin-person__text{
    font-family: TTLimesSans;
    font-weight: 700;
    font-size: 1.5vw;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
}

.blin-form{
    .form-group--error{
        .form-error{
            display: block;
        }
    }
    .form-group:not(.form-group--error){
        .form-error{
            display: none!important;
        }
    }
    .form-select__dropdown{
        display: grid;
    }
    .form-select__option{
        input{
            display: none;
        }
    }
}

@media screen and (max-width: 890px) {
    .blin-discount__left{
        width: 250px;
        font-size: 25px;
    }
}
@media screen and (max-width: 767px) {
    .blin-discount{
        flex-direction: column;
    }
    .blin-discount__left{
        width: 100%; height: 100px; font-size: 35px;
    }
}
@media screen and (max-width: 580px) {
    .blin-m-hidden{
        display: none;
    }
}


@media screen and (min-width: 1200px) and (orientation: landscape){
    .blin-main__block{
        bottom: 1.5vw; left: 42%;
    }
    .blin-main__title{
        margin-bottom: 1vw;
        font-size: 2.3vw;
    }
    .blin-main__list{
        gap: 3vw;
    }

    .blin-person__img{
        margin-bottom: 1vw;

        img{
            width: 9vw;
        }
    }
    .blin-person__text{
        font-size: 1.5vw;
    }
}
@media screen and (min-width: 1200px) and (orientation: portrait) {
    .blin-main__block{
        bottom: 10vw; left: 0; width: 100%;
    }
    .blin-main__title{
        --stroke: 0.5vw;
        margin-bottom: 3.3vw;
        font-size: 5.8vw;
    }
    .blin-main__list{
        gap: 8vw;
    }

    .blin-person__img{
        margin-bottom: 3.3vw;

        img{
            width: 17.5vw;
        }
    }
    .blin-person__text{
        font-size: 3.6vw;
    }
}
@media screen and (min-width: 760px) and (max-width: 1024px) and (orientation: landscape) {
    .blin-main__block{
        bottom: 2.5vw; left: 45.5vw; width: auto;
    }
    .blin-main__title{
        --stroke: 0.25vw;
        margin-bottom: 0.8vw;
        font-size: 2.75vw;
    }
    .blin-main__list{
        gap: 3.5vw;
    }

    .blin-person__img{
        margin-bottom: 1.2vw;

        img{
            width: 10vw;
        }
    }
    .blin-person__text{
        font-size: 1.6vw;
    }
}
@media screen and (min-width: 760px) and (max-width: 1024px) and (orientation: portrait) {
    .blin-main__block{
        bottom: 6.2vw; left: 0; width: 100%;
    }
    .blin-main__title{
        --stroke: 0.4vw;
        margin-bottom: 3.8vw;
        font-size: 4.9vw;
    }
    .blin-main__list{
        gap: 7.3vw;
    }

    .blin-person__img{
        margin-bottom: 3vw;

        img{
            width: 15vw;
        }
    }
    .blin-person__text{
        font-size: 3.2vw;
    }
}
@media screen and (min-width: 320px) and (max-width: 600px) and (orientation: landscape) {
    .blin-main__block{
        bottom: 1.5vw; left: 38vw; width: auto;
    }
    .blin-main__title{
        --stroke: 0.4vw;
        margin-bottom: 1.8vw;
        font-size: 2.3vw;
    }
    .blin-main__list{
        gap: 3vw;
    }

    .blin-person__img{
        margin-bottom: 1vw;

        img{
            width: 8.8vw;
        }
    }
    .blin-person__text{
        font-size: 1.4vw;
    }
}
@media screen and (min-width: 375px) and (max-width: 900px) and (orientation: landscape) {
    .blin-main__block{
        bottom: 1.5vw; left: 38vw; width: auto;
    }
    .blin-main__title{
        --stroke: 0.4vw;
        margin-bottom: 1.8vw;
        font-size: 2.3vw;
    }
    .blin-main__list{
        gap: 3vw;
    }

    .blin-person__img{
        margin-bottom: 1vw;

        img{
            width: 8.8vw;
        }
    }
    .blin-person__text{
        font-size: 1.4vw;
    }
}
@media screen and (min-width: 320px) and (max-width: 600px) and (orientation: portrait) {
    .blin-main__block{
        bottom: 3.8vw; left: 0; width: 100%;
    }
    .blin-main__title{
        --stroke: 0.4vw;
        margin-bottom: 2.5vw;
        font-size: 3.7vw;
    }
    .blin-main__list{
        gap: 9vw;
    }

    .blin-person__img{
        margin-bottom: 2.5vw;

        img{
            width: 13.5vw;
        }
    }
    .blin-person__text{
        font-size: 2.5vw;
        br{
            display: none;
        }
    }
}

@media print {
    .blin-discount{
        display: none!important;
    }
}