/* Video Section */
#product-video {
    position: relative;
    height: 600px;
    overflow: hidden;
    padding: 0;
    margin: 0;
}

#product-video .poster-image {
    height: 600px;
    background-size: cover;
    background-position: 50%;
    background-repeat: no-repeat;
    transition: all 0.66s ease-in;
}

#product-video .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

#product-video button.cta {
    position: absolute;
    z-index: 9;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    opacity: 0.85;
    padding: 0;
    border: none;
    background-color: transparent;
    transition: opacity 0.25s ease-in;
    outline: none;
    cursor: pointer;
}

#product-video button.cta:hover {
    opacity: 1;
}

#product-video .video-overlay {
    position: fixed;
    z-index: 1500;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(59, 60, 57, 0.95);
    visibility: hidden;
    opacity: 0;
    transition: all 0.25s ease-in;
}

#product-video .video-overlay.opened {
    visibility: visible;
    opacity: 1;
}

#product-video .video-overlay .close {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
    z-index: 10000;
    transition: opacity 0.3s ease;
}

#product-video .video-overlay .close:hover {
    opacity: 0.7;
}

#product-video .video-player {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 85%;
    transform: translate(-50%, -50%);
}

#product-video .video-player .video-wrapper {
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
}

#product-video .video-player .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Product Text Entry Section */
#product-text-entry {
    padding: 80px 0;
    background-color: #eff3e8;
}

#product-text-entry h2 {
    margin-bottom: 20px;
}

#product-text-entry .h5 {
    margin-top: 32px;
    color: #589209;
    font-size: 18px;
    line-height: 120%;
}