
.fzt-video-box {
    display: flex;
    width: 100%;
    position: relative;
    padding: 0 15px 60px 0;
}

.fzt-video-box .fzt-video-box-image
{
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    border-radius: 120px 0;
    overflow: hidden;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.fzt-video-box .fzt-video-box-image img {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.fzt-video-box .fzt-video-box-image img:first-child {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    opacity: 0;
    -webkit-transform: translateX(50%) scaleX(2);
        transform: translateX(50%) scaleX(2);
    -webkit-filter: blur(10px);
        filter: blur(10px);
    z-index: 1;
}

.fzt-video-box:hover .fzt-video-box-image img:first-child {
    opacity: 1;
    -webkit-transform: translateX(0) scaleX(1);
        transform: translateX(0) scaleX(1);
    -webkit-filter: blur(0);
        filter: blur(0);
}

.fzt-video-box:hover .fzt-video-box-image img:nth-child(2) {
    opacity: 0;
    -webkit-transform: translateX(-50%) scaleX(2);
        transform: translateX(-50%) scaleX(2);
    -webkit-filter: blur(10px);
        filter: blur(10px);
}

.fzt-video-box .fzt-video-box-image .fzt-video-box-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    z-index: 1;
}

.fzt-video-box .fzt-video-box-image .fzt-video-box-trigger i {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    top: 50%;
    border: 2px solid var(--kidizro-primary-color);
    width: 65px;
    height: 65px;
    font-size: var(--kidizro-h6-font-size);
    padding: 0;
    border-radius: 50%;
    -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
}

.fzt-video-box .fzt-video-box-image .fzt-video-box-trigger i:after {
    content: '';
    display: flex;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background: rgba(var(--kidizro-light-color-rgb), 0.5);
    z-index: 1;
    border-radius: inherit;
    -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
    -webkit-transition: var(--transition);
            transition: var(--transition)
}

.fzt-video-box .fzt-video-box-image .fzt-video-box-trigger i:before {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--kidizro-primary-color);
    color: transparent;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    -webkit-transition: var(--transition);
    transition: var(--transition);
}

.fzt-video-box .fzt-video-box-image .fzt-video-box-trigger:hover i:before {
    color: var(--kidizro-primary-color);
}

.fzt-video-box .fzt-video-box-image .fzt-video-box-trigger:hover i:after {
    background: rgba(var(--kidizro-primary-color-rgb), 0.08);
}

.fzt-video-box .fzt-video-box-secondary-image {
    position: absolute;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    width: 318px;
    height: 257px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.fzt-video-box .fzt-video-box-secondary-image img {
    position: relative;
    -webkit-mask-image: url(images/video-shape.svg);
    -webkit-mask-size: contain;
    -webkit-mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    width: 100%;
    height: 100%;
    -webkit-mask-size: 95% auto;
        mask-size: 95% auto;
    object-fit: cover;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 1;
}

.fzt-video-box .fzt-video-box-secondary-image:before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    -webkit-mask-image: url(images/video-shape.svg);
    -webkit-mask-size: 100% auto;
        mask-size: 100% auto;
    -webkit-mask-position: center center;
        mask-position: center center;
    -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    background-color: var(--kidizro-light-color);
    -webkit-transition: var(--transition);
    transition: var(--transition);
    z-index: 0;
}

.fzt-video-box .fzt-video-box-secondary-image .fzt-video-box-shapes {
    position: absolute;
    display: flex;
    width: 162px;
    height: 107px;
    top: auto;
    bottom: -25px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 1;
}

.fzt-video-box .fzt-video-box-secondary-image .fzt-video-box-shapes:before {
    content:"";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 70px;
    background-image: url(images/bear-img.png);
    background-size: 100% auto;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: var(--transition);
        transition: var(--transition);
}

.fzt-video-box:hover .fzt-video-box-secondary-image .fzt-video-box-shapes:before {
    top: 10px;
}

.fzt-video-box .fzt-video-box-secondary-image .fzt-video-box-shapes > span {
    position: absolute;
    -webkit-mask-size: 100% auto;
    mask-size: 100% auto;
    -webkit-mask-position: center center;
    mask-position: center center;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-animation: animation-color 4s linear infinite both;
    animation: animation-color 4s linear infinite both;
}

.fzt-video-box .fzt-video-box-secondary-image .fzt-video-box-shapes > span:nth-child(1) {
    width: 33px;
    height: 42px;
    bottom: 0;
    left: 0;
    -webkit-mask-image: url(images/bear-ribbon-1.svg);
    background-color: var(--kidizro-custom-color-1);
}

.fzt-video-box .fzt-video-box-secondary-image .fzt-video-box-shapes > span:nth-child(2) {
    width: 30px;
    height: 42px;
    bottom: -15px;
    left: 35px;
    -webkit-mask-image: url(images/bear-ribbon-2.svg);
    background-color: var(--kidizro-primary-color);
    animation-duration: 6s;
}

.fzt-video-box .fzt-video-box-secondary-image .fzt-video-box-shapes > span:nth-child(3) {
    width: 31px;
    height: 40px;
    bottom: -23px;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-mask-image: url(images/bear-ribbon-3.svg);
    background-color: var(--kidizro-custom-color-3);
    animation-duration: 10s;
}

.fzt-video-box .fzt-video-box-secondary-image .fzt-video-box-shapes > span:nth-child(4) {
    width: 30px;
    height: 42px;
    bottom: -18px;
    right: 35px;
    -webkit-mask-image: url(images/bear-ribbon-4.svg);
    background-color: var(--kidizro-custom-color-4);
    animation-direction: reverse;
    animation-duration: 8s;
}

.fzt-video-box .fzt-video-box-secondary-image .fzt-video-box-shapes > span:nth-child(5) {
    width: 34px;
    height: 43px;
    bottom: 0px;
    right: 0;
    -webkit-mask-image: url(images/bear-ribbon-5.svg);
    background-color: var(--kidizro-custom-color-2);
    animation-direction: reverse;
    animation-duration: 6s;
}

/* Light box */

.mfp-iframe-holder .mfp-close {
    top: -50px;
    background: var(--kidizro-primary-color);
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin: 0;
    right: 0;
    padding: 0px;
    text-align: center;
    color: var(--kidizro-light-color);
    opacity: 1;
}

.mfp-iframe-holder .mfp-close:hover {
    background: var(--kidizro-teritary-color);
    color: var(--kidizro-primary-color);
}

/* Kidizro Custom Colors */

.fzt-video-box.fzt-custom-color-1 .fzt-video-box-image .fzt-video-box-trigger i {
    border-color: var(--kidizro-custom-color-1);
}

.fzt-video-box.fzt-custom-color-2 .fzt-video-box-image .fzt-video-box-trigger i {
    border-color: var(--kidizro-custom-color-2);
}

.fzt-video-box.fzt-custom-color-3 .fzt-video-box-image .fzt-video-box-trigger i {
    border-color: var(--kidizro-custom-color-3);
}

.fzt-video-box.fzt-custom-color-4 .fzt-video-box-image .fzt-video-box-trigger i {
    border-color: var(--kidizro-custom-color-4);
}

.fzt-video-box.fzt-custom-color-5 .fzt-video-box-image .fzt-video-box-trigger i {
    border-color: var(--kidizro-custom-color-5);
}

.fzt-video-box.fzt-custom-color-1 .fzt-video-box-image .fzt-video-box-trigger i:before {
    -webkit-text-stroke-color: var(--kidizro-custom-color-1);
}

.fzt-video-box.fzt-custom-color-2 .fzt-video-box-image .fzt-video-box-trigger i:before {
    -webkit-text-stroke-color: var(--kidizro-custom-color-2);
}

.fzt-video-box.fzt-custom-color-3 .fzt-video-box-image .fzt-video-box-trigger i:before {
    -webkit-text-stroke-color: var(--kidizro-custom-color-3);
}

.fzt-video-box.fzt-custom-color-4 .fzt-video-box-image .fzt-video-box-trigger i:before {
    -webkit-text-stroke-color: var(--kidizro-custom-color-4);
}

.fzt-video-box.fzt-custom-color-5 .fzt-video-box-image .fzt-video-box-trigger i:before {
    -webkit-text-stroke-color: var(--kidizro-custom-color-5);
}

.fzt-video-box.fzt-custom-color-1 .fzt-video-box-image .fzt-video-box-trigger:hover i:before {
    color: var(--kidizro-custom-color-1);
}

.fzt-video-box.fzt-custom-color-2 .fzt-video-box-image .fzt-video-box-trigger:hover i:before {
    color: var(--kidizro-custom-color-2);
}

.fzt-video-box.fzt-custom-color-3 .fzt-video-box-image .fzt-video-box-trigger:hover i:before {
    color: var(--kidizro-custom-color-3);
}

.fzt-video-box.fzt-custom-color-4 .fzt-video-box-image .fzt-video-box-trigger:hover i:before {
    color: var(--kidizro-custom-color-4);
}

.fzt-video-box.fzt-custom-color-5 .fzt-video-box-image .fzt-video-box-trigger:hover i:before {
    color: var(--kidizro-custom-color-5);
}

.fzt-video-box.fzt-custom-color-1 .fzt-video-box-image .fzt-video-box-trigger:hover i:after {
    background: rgba(var(--kidizro-custom-color-1-rgb),0.08);
}

.fzt-video-box.fzt-custom-color-2 .fzt-video-box-image .fzt-video-box-trigger:hover i:after {
    background: rgba(var(--kidizro-custom-color-2-rgb),0.08);
}

.fzt-video-box.fzt-custom-color-3 .fzt-video-box-image .fzt-video-box-trigger:hover i:after {
    background: rgba(var(--kidizro-custom-color-3-rgb),0.08);
}

.fzt-video-box.fzt-custom-color-4 .fzt-video-box-image .fzt-video-box-trigger:hover i:after {
    background: rgba(var(--kidizro-custom-color-4-rgb),0.08);
}

.fzt-video-box.fzt-custom-color-5 .fzt-video-box-image .fzt-video-box-trigger:hover i:after {
    background: rgba(var(--kidizro-custom-color-5-rgb),0.08);
}

/* Responsive */

/* Tablets - Landscape, 1025px and up */
@media (min-width: 1025px) and (max-width: 1280px) {
    .fzt-video-box .fzt-video-box-image{
        border-radius: 80px 0;
    }
}

/* Tablets - Portrait, 768px and up */
@media (min-width: 768px) and (max-width: 1024px) {

    .fzt-video-box .fzt-video-box-secondary-image {
        width: 368px;
        height: 307px;
    }
}

/* Mobile - Landscape, less than 767px */
@media (min-width: 576px) and (max-width: 767px) {

    .fzt-video-box .fzt-video-box-secondary-image {
        bottom: -50px;
    }

}

/* Mobile - Portrait, less than 575px */
@media (max-width: 575px) {

    .fzt-video-box .fzt-video-box-image{
        border-radius: 50px 0;
    }

    .fzt-video-box .fzt-video-box-secondary-image {
        width: 298px;
        height: 247px;
        bottom: -80px;
    }

}