/*--------------------------
      Video
--------------------------*/
.video__btn {
    text-align: center;
    display: inline-flex;
    position: relative;
    padding-left: 70px;
    height: 60px;
    align-items: center;

    .video__player {
        position: absolute;
        top: 0;
        left: 0;
        width: 60px;
        height: 60px;
        line-height: 60px;
        border-radius: 50%;
        color: $color-white;
        background-color: $color-primary;
        box-shadow: 0 0 0 7px rgba(0, 0, 0, .15);
        @include prefix(transition, all .3s linear, webkit moz ms o);
    }

    &:hover {
        .video__player {
            box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.15);
        }
    }

    .video__btn-title {
        font-size: 15px;
        font-weight: 700;
        line-height: 1;
        display: inline-block;
        white-space: nowrap;
        margin-left: 12px;
    }

    &-lg {
        padding-left: 80px;
        height: 80px;

        .video__player {
            width: 80px;
            height: 80px;
            line-height: 80px;
        }
    }
}

.video__btn-white {
    .video__player {
        background-color: $color-white !important;
        color: $color-heading;
    }

    .video__player-animation {
        border-color: $color-white !important;
    }
}

.video-banner {
    position: relative;
    z-index: 2;

    img {
        border-radius: 15px;
    }

    .video__btn {
        position: absolute;
        top: 50%;
        left: 50%;
        @include prefix(transform, translate(-50%, -50%), webkit moz ms o);
    }

    .video__btn-title {
        position: absolute;
        bottom: -30px;
        left: -7px;
        line-height: 1.5;
    }
}

.video-banner-layout2 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;

    &.bg-overlay:before {
        z-index: 0;
        background-color: transparent;
        background-image: linear-gradient(180deg, #00000000 66%, #061733 97%);
    }

    .video__btn {
        position: absolute;
        left: 40px;
        bottom: 40px;
        padding-left: 60px;
        height: 36px;
    }

    .video__player {
        width: 54px;
        height: 36px;
        line-height: 36px;
        border-radius: 10px;
        box-shadow: 0 0 0 5px rgba(0, 0, 0, .1);
    }

    &:hover {
        .video__player {
            box-shadow: 0 0 0 6px rgba(0, 0, 0, 0.1);
        }
    }
}

.video-banner-layout3 {
    position: relative;
    border-radius: 10px;
    overflow: hidden;

    &.bg-overlay:before {
        z-index: 0;
        background-color: transparent;
        background-image: linear-gradient(180deg, #00000000 66%, #061733 97%);
    }

    .video__btn {
        position: absolute;
        top: 50%;
        left: 50%;
        @include prefix(transform, translate(-50%, -50%), webkit moz ms o);
    }
}