/* ----------------------------------------------------------------
	Custom CSS

	Add all your Custom Styled CSS here for New Styles or
	Overwriting Default Theme Styles for Better Handling Updates
-----------------------------------------------------------------*/


@-webkit-keyframes scrollDown {
	0% {
		top: 10px;
		opacity: 0;
	}
	15% {
		top: 10px;
		opacity: 1;
	}
	30% {
		top: 10px;
		opacity: 1;
	}
	45% {
		top: 28px;
		opacity: 1;
	}
	100% {
		top: 28px;
		opacity: 0;
	}
}
@keyframes scrollDown {
	0% {
		top: 10px;
		opacity: 0;
	}
	15% {
		top: 10px;
		opacity: 1;
	}
	30% {
		top: 10px;
		opacity: 1;
	}
	45% {
		top: 28px;
		opacity: 1;
	}
	100% {
		top: 28px;
		opacity: 0;
	}
}
.scroll-down {
	position: absolute;
	top: auto;
	bottom: 20px;
	left: 50%;
	display: inline-block;
	width: auto;
	margin: 0 auto;
	text-align: center;
	background-color: transparent;
	border: none;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 9;
	opacity: .8;
}
.scroll-mouse {
	position: relative;
	display: inline-block;
	width: 28px;
	height: 46px;
	margin: 0 auto;
	border: 2px solid #fff;
	border-radius: 20px;
}
.scroll-wheel {
	position: absolute;
	top: 14px;
	left: 10px;
	width: 4px;
	height: 4px;
	background-color: #fff;
	border-radius: 50%;
	-webkit-animation: scrollDown 2.5s infinite;
			animation: scrollDown 2.5s infinite;
}

.play-icon {
    position: relative;
    display: block;
    font-size: 23px;
    width: 50px;
    height: 50px;
    line-height: 50px;
    left: 50%;
    margin-left: -30px;
    border-radius: 50%;
    color: #007bff !important;
    background-color: #ffffff;
    -webkit-transition: transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
}



.button-border-icon {
	background-color: transparent !important;
}

.button-border-icon i {
	margin-right: 0;
	border-radius: 50%;
	border: 1px solid #DDD;
	width: 50px;
	height: 50px;
	text-align: center;
	line-height: 50px;
	background-color: transparent !important;
}

.button-border-icon i::before {
	position: relative;
	font-size: 16px;
	left: 2px;
}

.button-border-icon span { margin-left: 0.75rem; }

@media (max-width: 575px) {
	.slider-arrow-left,
	.slider-arrow-right {
		top: auto;
		right: 0;
		background-color: #000;
		bottom: 0;
		margin-top: 0;
		width: 52px;
		height: 52px;
		border: 0;
		border-radius: 0 3px 3px 0;
	}

	.slider-arrow-left {
		left: auto;
		right: 52px;
	}
}


.masonry-thumbs a i {
	opacity: 0;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	color: rgba(0, 0, 0);
	z-index: 99;
	background-color: rgb(255 255 255);
	padding: 5px;
	font-size: 14px;
	width: 40px;
	height: 40px;
	margin-top: -20px;
	margin-left: -20px;
	line-height: 30px;
	text-align: center;
	border-radius: 50%;
	-webkit-transform: scale(0.8);
	-o-transform: scale(0.8);
	transform: scale(0.8);
	-webkit-transition: transform .4s ease;
	-o-transition: transform .4s ease;
	transition: transform .4s ease;
	-webkit-backface-visibility: hidden;
}
.masonry-thumbs a:hover i {
	opacity: 1;
	-webkit-transform: scale(1);
	-o-transform: scale(1);
	transform: scale(1);
}


