/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/

/*************** ADD CUSTOM CSS HERE.   ***************/
 .btn-x {
    flex: 0 0 calc(33.333% - 40px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 200px;
	 margin-right:0px !important;
}
.btn-android {
    animation: neon-pulse-android 1.5s infinite;
    background-color: #F94A6E;
}
.btn-android::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #F94A6E, #E04FF0, #F49D49, #FF1F2C, #FF6830, #F94A6E);
    background-size: 300% 100%;
    z-index: -1;
    filter: blur(5px);
    animation: gradientMove 5s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}
@keyframes neon-pulse-android{
	0% {
		box-shadow: 0 0 5px rgba(249, 74, 110, 0.7), 0 0 10px rgba(224, 79, 240, 0.7), 0 0 15px rgba(244, 157, 73, 0.7), 0 0 20px rgba(255, 31, 44, 0.7);
	}
	50% {
		box-shadow: 0 0 20px rgba(249, 74, 110, 0.7), 0 0 20px rgba(224, 79, 240, 0.7), 0 0 30px rgba(244, 157, 73, 0.7), 0 0 40px rgba(255, 31, 44, 0.7);
	}
	100% {
		box-shadow: 0 0 5px rgba(249, 74, 110, 0.7), 0 0 10px rgba(224, 79, 240, 0.7), 0 0 15px rgba(244, 157, 73, 0.7), 0 0 20px rgba(255, 31, 44, 0.7);
	}
}
.btn-android:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(249, 74, 110, 0.7);
}
.btn-android:hover::before {
    opacity: 1;
}
@keyframes gradientMove{
	0% {
    background-position: 0% 50%;
}
	100% {
    background-position: 300% 50%;
}
}
.btn-ios::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #007AFF, #5AC8FA, #4CD964, #FF2D55, #5856D6, #007AFF);
    background-size: 300% 100%;
    z-index: -1;
    filter: blur(5px);
    animation: gradientMove 5s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-ios {
    animation: neon-pulse-ios 1.5s infinite;
    background-color: #007AFF;
}
@keyframes neon-pulse-ios{
	0% {
    box-shadow: 0 0 5px rgba(0, 122, 255, 0.7), 0 0 10px rgba(90, 200, 250, 0.7), 0 0 15px rgba(76, 217, 100, 0.7), 0 0 20px rgba(255, 45, 85, 0.7);
}
	50% {
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.7), 0 0 30px rgba(90, 200, 250, 0.7), 0 0 40px rgba(76, 217, 100, 0.7), 0 0 50px rgba(255, 45, 85, 0.7);
}
	100% {
    box-shadow: 0 0 5px rgba(0, 122, 255, 0.7), 0 0 10px rgba(90, 200, 250, 0.7), 0 0 15px rgba(76, 217, 100, 0.7), 0 0 20px rgba(255, 45, 85, 0.7);
}
}
.btn-ios:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 122, 255, 0.7);
}
.btn-ios:hover::before {
    opacity: 1;
}
.btn-watch {
    animation: neonPulse 1.5s infinite;
    background-color: #F49D49;
}
@keyframes neonPulse{
	0%, 100% {
    box-shadow: 0 0 5px rgba(249, 74, 110, 0.7), 0 0 10px rgba(224, 79, 240, 0.7), 0 0 15px rgba(244, 157, 73, 0.7), 0 0 20px rgba(255, 31, 44, 0.7);
}
	50% {
    box-shadow: 0 0 10px rgba(249, 74, 110, 0.7), 0 0 20px rgba(224, 79, 240, 0.7), 0 0 30px rgba(244, 157, 73, 0.7), 0 0 40px rgba(255, 31, 44, 0.7);
}
}
.btn-watch::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(90deg, #F94A6E, #E04FF0, #F49D49, #FF1F2C, #FF6830, #F94A6E);
    background-size: 300% 100%;
    z-index: -1;
    filter: blur(5px);
    animation: gradientMove 5s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.btn-watch:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(244, 157, 73, 0.7);
}
.btn-watch:hover::before {
    opacity: 1;
}
.box_content_home {
    position: relative;
    padding: 15px;
    height: 400px;
    overflow-y: scroll;
    box-sizing: border-box;
    border-image-slice: 1;
    border: 1px solid;
    border-image: linear-gradient(to right, #743ad5 0%, #d53a9d 100%) 1;
    border-width: 2px;
    border-style: solid;
}
.box_content_home::-webkit-scrollbar-track
{
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
	border-radius: 10px;
	background-color: #F5F5F5;
}

.box_content_home::-webkit-scrollbar
{
	width: 12px;
	background-color: #F5F5F5;
}

.box_content_home::-webkit-scrollbar-thumb
{
	border-radius: 10px;
	-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
	background-color: #555;
}
@media only screen and (max-width: 48em) {
/*************** ADD MOBILE ONLY CSS HERE  ***************/

	.slider_mobile{
		height:180px !important;
	}
}