/* Single Recipe */


.single-recipe .image-text .flex-row {
    align-items: flex-start;
}

.recipe-print__additional-info ul li:before {
    background: var(--color-lime);
}

blockquote {
    margin-bottom: 0;
}


.btn-print {
    min-width: 190px;
    text-align: center;
}

.share {
    text-align: center;
    margin-top: 30px;
}

.share__text {
    padding: 20px 0;
}

.single-recipe .share__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 0;
}

.share__social li {
    padding: 0;
    margin: 0;
}

.share__social li::before {
    display: none;
}

.share__social li a {
    font-size: 42px;
    color: #108B44;
    border-bottom: none;
}

.image-text__img__back {
    position: absolute;
    top: -40px;
    right: -20px;
    z-index: -1;
    width: 120px;
    height: auto;
}

.wysiwyg--image-bg.bg-orange a:not(.btn) {
    color: var(--color-primary-orange);
}


@media (min-width: 768px) {
    .image-text__img__back {
        top: -40px;
        right: -190px;
        width: 320px;
    }

    .share__text {
        padding: 0;
    }
    
    .share {
        text-align: left;
        display: flex;
        align-items: center;
        gap: 32px;
        margin-top: 50px;
    }
}

@media (min-width: 1200px) {

    .image-text__img__back {
        top: -76px;
        right: -238px;
    }

    .image-text__img {
        min-height: 475px;
    }

    .share {
        margin-top: 70px;
    }

    .share__text {
        margin-right: 10px;
    }

    .single-recipe .share__social {
        gap: 17px;
    }

    .share__social li a {
        font-size: 45px;
        transition: all ease-in-out 0.2s;
    }

    .share__social li a:hover {
        opacity: 0.7;
    }

    .wysiwyg--image-bg.bg-orange a:not(.btn):hover {
        color: var(--color-primary-orange-hover);
    }
}

/* Video Section */

.full-width-video__top-content {
    margin-bottom: 30px;
}

.video {
    position: relative;
    height: 300px;
}

.video img {
    border-radius: 30px;
}

.video-open {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    border: none;
}

.video__play-button::before, 
.video__play-button::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 50%;
    width: 108px;
    height: 108px;
    cursor: pointer;
    animation: ripple 1.8s ease-out infinite;
    z-index: -1;
}

.video__play-button:hover::before, 
.video__play-button:hover::after  {
    animation-play-state: paused;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}

.video__play-button svg {
    display: block;
    width: 65px;
    height: auto;
    transition: all ease-in-out 0.2s;
}

@media (min-width: 768px) {
    .full-width-video--padding {
        padding-bottom: 140px;
    }

    .video {
        position: relative;
        height: 500px;
    }

    .video__play-button svg {
        width: 108px;
    }
}


@media (min-width: 1200px) {

    .video {
        height: 720px;
    }

    .video-open:hover {
        background: rgba(0, 0, 0, 0.55);
    }

    .video-open:hover .video__play-button svg path {
        fill: #F27838;
    }

    .video-open:hover .video__play-button svg {
        width: 120px;
        transition: all ease-in-out 0.2s;
    }

}