/*
General CSS
*/

#downloadableArea{
	position: relative;
	box-shadow: 0 0 20px #333;
}

#backgroundSelection{
	background-color: #b7e2ff; 
	padding: 5px 20px;
	border-bottom: solid 1px #bfe6ff;
	height: 15vh;
    overflow: hidden;
}

.bkgImageOuter, .bkgsearchresult {
	padding: 10px;
	max-height: 150px;
}

#previewOuter{
	height: 80vh;
	padding: 25px;
}

#toolOptionsDesk{
	height: 60vh;
	padding: 25px;
	background-color: #fafafa;
	overflow: auto;
}

#toolOptionsMob{
	display: none;
}

#downloadButtonOuter{
	height: 20vh;
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 10px;
}

#downloadableAreaOuter{
	border: dashed 2px #999;
	overflow: hidden;
	margin: 0 auto;
	float: none;
	display: block;
}

#downloadableArea{

	overflow: hidden;
	cursor: move;
}

.centerObject{
	margin: 0 auto !important;
	float: none !important;
	display: block !important;
}

.cursorPointer{
	cursor: pointer;
}

#loading{
	position: fixed;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: rgba(0, 0, 0, 0.5);
}

.hidden{
	display: none;
}

#searchTermDesktop{
	margin: 5px;
}

.slick-slide img {
    display: block;
    max-height: 75px;
    margin: 0 auto;
}

.slick-prev {
    left: 0px;
}

.slick-prev:before, .slick-next:before {
    color: #fff;
    opacity: 0.7;
}

.slick-next {
    right: 0px;
}

#verseOuter:hover{
	background-color: rgba(0,0,0,0.25);
}

.optionHeading{
	margin-bottom: 3px;
	font-weight: 600;
	color: #999;
}

.optionsDivider{
	margin: 25px -25px;
	height: 1px;
	background-color: #dadada;
}

#downloadImage{
	width: 100%;
    margin: 0 auto;
    float: none;
    display: block;
    height: 50px;
}

.btn-primary{
	background-color: #46b5FF;
	border-color: #46b5FF;
}

.gradientBackground{
	background-image: -webkit-linear-gradient( 135deg, rgba(70,181,255, 1) 0%, rgba(191,230,255, 1) 100%) !important;
    background-image: -ms-linear-gradient( 135deg, rgba(70,181,255, 1) 0%, rgba(191,230,255, 1) 100%) !important;
    background-image: linear-gradient( 135deg, rgba(70,181,255, 1) 0%, rgba(191,230,255, 2) 100%) !important;
}

.shareButton{
	font-size: 25px;
	cursor: pointer;
	color: #46b5FF;
}

.shareButton:hover{
	color: #0069d9;
}

.desktop{
	display: block;
}

.mobile{
	display: none;
}

.btn-sidebar{
	margin-bottom: 10px;
	border-radius: 0 10px 10px 0;
}

#mobileOptions{
	background-color: #b7e2ff;
    padding: 5px;
    border-bottom: solid 1px #bfe6ff;
}

.searchInput{
	border-radius: 5px;
    border: solid 1px #dadada;
    padding: 5px 10px;
    max-width: 100%;
}

#bottomNote{
	position: fixed;
    bottom: 0;
    padding: 10px 10px 5px 20px;
    text-align: right;
    background-color: #46b5FF;
    font-size: 14px;
    width: 300px;
    right: 0;
    float: right;
    -webkit-clip-path: polygon(100% 0%, 100% 100%, 0 100%, 15% 0);
    clip-path: polygon(100% 0%, 100% 100%, 0 100%, 15% 0);
}

#bottomNote a{
	color: #fff;
}

.btn-info{
	position: fixed;
	bottom: 10px;
	left: 0;
}

.fakeLink{
	color: #007bff;
	text-decoration: underline;
	cursor: pointer;
}

@media (max-width: 768px) {

	.desktop{
		display: none;
	}

	.mobile{
		display: block;
		
	}

	#toolOptionsMob{
		height: inherit;
		width: 100%;
		padding: 25px;
		background-color: #fafafa;
	}

	#toolOptionsDesk{
		display: none;
	}

	#downloadButtonOuter{
		height: inherit;
		position: fixed;
		top: 175px;
		left: 0;
		padding: 10px 10px 10px 0px;
		z-index: 9;
	}

	#backgroundSelection{
		padding: 5px;
		height: inherit;
		max-height: 15vh;
	    overflow: hidden;
	    text-align: center;
	    min-height: 100px;
	}

	.btn-search{
		padding: 5px 10px;
	    height: 30px;
	    font-size: 14px;
	    margin-top: 10px;
	}

}