/* ========= INFORMATION ============================
	- document:  WP Coder!
	- author:    Dmytro Lobov 
	- url:       https://wow-estore.com/
==================================================== */
.qode_video_box_button {
        display: inline-block;
    border: 2px solid #001f62;
    color: #fff;
    background: #001f62;
    padding: 5px 20px;
    border-radius: 0;
    font-size: 18px;
    overflow:visible !important;
    font-weight: 300;
    position: relative;
    transition: all ease .5s;
}
.qode_video_box_button:hover, .qode_video_box_button:focus {
    color: #000000;
    background-color: #fff;
    text-decoration: none;
}
.qode_video_box_button:before {
    content: '';
    position: absolute;
    border: 11px solid rgb(6, 191, 255);
		border-radius:50% !important;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    border-radius: 0px;
    -webkit-animation: hvr-ripple-out 1s infinite;
    animation-name: hvr-ripple-out 1s infinite;
}
@-webkit-keyframes hvr-ripple-out {
	100% {
		top: -15px;
		right: -15px;
		bottom: -15px;
		left: -15px;
		opacity: 0;
	}
}
@-moz-keyframes hvr-ripple-out {
	100% {
		top: -15px;
		right: -15px;
		bottom: -15px;
		left: -15px;;
		opacity: 0;
	}
}

@keyframes hvr-ripple-out {
	100% {
		top: -15px;
		right: -15px;
		bottom: -15px;
		left: -15px;
		opacity: 0;
	}
}