/*
Theme Name: lovebugWP
Theme URI: https://www.websitesforquilters.com/
Author: J Reid
Description: WP theme designed and built for Lovebug Studios
Version: 1.1
*/
@import "css/bootstrap.less";

@font-face {
    font-family: 'corbel';
    src: url('fonts/corbel-webfont.eot');
    src: url('fonts/corbel-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/corbel-webfont.woff') format('woff'),
         url('fonts/corbel-webfont.ttf') format('truetype'),
         url('fonts/corbel-webfont.svg#corbel') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'cinzel';
    src: url('fonts/cinzel-regular-webfont.eot');
    src: url('fonts/cinzel-regular-webfont.eot?#iefix') format('embedded-opentype'),
         url('fonts/cinzel-regular-webfont.woff') format('woff'),
         url('fonts/cinzel-regular-webfont.ttf') format('truetype'),
         url('fonts/cinzel-regular-webfont.svg#cinzel') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
	color: @textColor;
	font-family: 'corbel';
	font-size: 16px;
	background: @blue url('images/bg-pattern.png');
}

h1, h2, h3, h4, h5, h6 {
	font-family: 'cinzel';
	font-weight: normal;
}

li {
	line-height: inherit !important;
}

p {

}

a {
	color: @pink;
}

a:hover {
	color: @blue;
}

.padding-null {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.social-icons {
	position: fixed;
	top: 230px;
	left: 0px;
	background: @white;
	padding: 25px;
	li {
		margin: 5px;
	}
}


/***************
HEADER
***************/

header {
	background: @white;
	padding: 20px 0px;
}

nav {
	background: @white;
	-webkit-border-top-left-radius: 30px;
	-webkit-border-bottom-right-radius: 30px;
	-moz-border-radius-topleft: 30px;
	-moz-border-radius-bottomright: 30px;
	border-top-left-radius: 30px;
	border-bottom-right-radius: 30px;
}

.header-center {
	margin-top: 20px;
	margin-left: 250px;
	span {
		color: @blueDark;
		font-size: 33px;
		text-transform: uppercase;
		font-family: 'cinzel';
	}
	.search {
		position: relative;
		width: 100%;
		margin-top: 20px;
		input[type="text"] {
			background: @white;
			border: 1px solid @blueDark;
			height: 31px;
			padding: 0px 105px 0px 10px;
			-webkit-border-top-right-radius: 15px;
			-webkit-border-bottom-left-radius: 15px;
			-moz-border-radius-topright: 15px;
			-moz-border-radius-bottomleft: 15px;
			border-top-right-radius: 15px;
			border-bottom-left-radius: 15px;
			width: 100%;
		}
		button {
			position: absolute;
			top: 0;
			right: -1px;
			background: @pink;
			color: @white;
			font-family: 'cinzel';
			text-transform: uppercase;
			font-size: 15px;
			height: 31px;
			padding: 0px 20px;
			-webkit-border-top-right-radius: 15px;
			-moz-border-radius-topright: 15px;
			border-top-right-radius: 15px;
			border: 0px;
			text-align: center;
			-webkit-transition: all .3s ease-in-out;
  			-moz-transition: all .3s ease-in-out;
  			-o-transition: all .3s ease-in-out;
  			transition: all .3s ease-in-out;
		}
		button:hover {
			background: @blueDark;
		}
	}
}

.login-links {
	width: 135px;
	li {
		a {
			background-color: @pink;
			width: 66px;
			height: 66px;
			display: block;
			color: @white;
			text-align: center;
			float: left;
			margin-left: 1px;
			margin-bottom: 1px;
			background-position: center 20px;
			background-repeat: no-repeat;
			text-transform: uppercase;
			font-size: 10px;
			-webkit-transition: all .3s ease-in-out;
  			-moz-transition: all .3s ease-in-out;
  			-o-transition: all .3s ease-in-out;
  			transition: all .3s ease-in-out;
		}
		a:hover {
			background-color: @blueDark;
			text-decoration: none;
		}
	}
	li.login-links-1 {
		a {
			background-image: url('images/icon-login.png');
			-webkit-border-radius: 20px;
			-webkit-border-top-left-radius: 0;
			-moz-border-radius: 20px;
			-moz-border-radius-topleft: 0;
			border-radius: 20px;
			border-top-left-radius: 0;
			padding-top: 40px;
		}
	}
	li.login-links-2 {
		a {
			background-image: url('images/icon-cart.png');
			-webkit-border-radius: 20px;
			-webkit-border-top-right-radius: 0;
			-moz-border-radius: 20px;
			-moz-border-radius-topright: 0;
			border-radius: 20px;
			border-top-right-radius: 0;
			padding-top: 45px;
			background-position: center 15px;
		}
	}
	li.login-links-3 {
		a {
			background-image: url('images/icon-service.png');
			-webkit-border-radius: 20px;
			-webkit-border-bottom-left-radius: 0;
			-moz-border-radius: 20px;
			-moz-border-radius-bottomleft: 0;
			border-radius: 20px;
			border-bottom-left-radius: 0;
			padding-top: 32px;
			background-position: center 8px;
		}
	}
	li.login-links-4 {
		a {
			background-image: url('images/icon-checkout.png');
			-webkit-border-radius: 20px;
			-webkit-border-bottom-right-radius: 0;
			-moz-border-radius: 20px;
			-moz-border-radius-bottomright: 0;
			border-radius: 20px;
			border-bottom-right-radius: 0;
			padding-top: 40px;
		}
	}
}

.top-menu {
	ul {
		margin: 0;
		list-style: none;
		text-align: center;
		padding: 20px 0px;
		li {
			position: relative;
			display: inline;
			font-size: 22px;
			font-family: 'cinzel';
			text-transform: uppercase;
			a {
				color: @pink;
				padding: 24px 25px;
			}
			a:hover {
				text-decoration: none;
				color: @white;
				background: @pink;
			}
			ul {
				position: absolute;
				z-index: 300;
				top: 49px;
				left: 1px;
				padding: 0px;
				min-width: 100%;
				li {
					display: block;
					white-space: nowrap;
					font-family: 'corbel';
					text-align: left;
					background: @pink;
					padding: 10px 0px;
					text-transform: none;
					font-size: 15px;
					height: 0px;
					opacity: 0;
					-webkit-transition: all .3s ease-in-out;
  					-moz-transition: all .3s ease-in-out;
  					-o-transition: all .3s ease-in-out;
  					transition: all .3s ease-in-out;
					a {
						color: @white;
						padding: 10px;
						background: transparent;
					}
					a:hover {
						background: transparent;
					}
				}
				li:hover {
					background: @blueDark;
				}
			}
		}
		li:hover a {
			color: @white;
			background: @pink;
		}
		li:hover {
			ul {
                            width: 170px;
				li {
					height: 41px;
					opacity: 1;
					float: none;
				}
			}
		}
	}
}
.mobile-nav {
	display: none;
}


/***************
PAGE
***************/
.post{
	font-size:16px;
}
.page {
	background: url('images/header-btm.png') repeat-x center top;
	padding: 30px 0px;
}

.content {
	background: @white;
	padding: 25px;
	margin-top: 30px;
	-webkit-border-top-right-radius: 30px;
	-webkit-border-bottom-left-radius: 30px;
	-moz-border-radius-topright: 30px;
	-moz-border-radius-bottomleft: 30px;
	border-top-right-radius: 30px;
	border-bottom-left-radius: 30px;
}

.blue-bg {
	background: rgba(0,126,177,.85);
}

.pink-bg {
	background: rgba(236,66,154,.85);
}

.blue-bg, .pink-bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 220px;
}

.homepage-btns {
	a {
	}
	a:hover {
		color: @white;
		text-decoration: none;
		.blue-bg, .pink-bg {
			opacity: 0;
		}
	}
}

.btn-wrapper {
	position: relative;
	margin-top:1px;
}

.btn-global {
	width: 272px;
	height: 186px;
	display: table-cell;
	vertical-align: middle;
	color: @white;
}

.btn-blog, .btn-events, .btn-cut, .btn-quilt, .btn-love {
	position: relative;
	text-align: center;
	overflow: hidden;
	font-size: 27px;
	font-family: 'cinzel';
	text-transform: uppercase;
}

.btn-blog span, .btn-events span, .btn-cut span, .btn-quilt span, .btn-love span {
	position: relative;
	border-top: 1px dashed @white;
	border-bottom: 1px dashed @white;
	z-index: 50;
}

.btn-blog {
	background: url('images/quilt1.jpg') no-repeat;
	float: left;
-webkit-border-radius: 30px;
-webkit-border-top-right-radius: 0;
-moz-border-radius: 30px;
-moz-border-radius-topright: 0;
border-radius: 30px;
border-top-right-radius: 0;	
}

.btn-events {
	background: url('images/quilt2.jpg') no-repeat;
	left: 1px;
	float: left;
-webkit-border-radius: 30px;
-webkit-border-top-left-radius: 0;
-moz-border-radius: 30px;
-moz-border-radius-topleft: 0;
border-radius: 30px;
border-top-left-radius: 0;
}

.btn-cut {
	background: url('images/cut.jpg') no-repeat;
-webkit-border-radius: 30px;
-webkit-border-top-right-radius: 0;
-moz-border-radius: 30px;
-moz-border-radius-topright: 0;
border-radius: 30px;
border-top-right-radius: 0;
}

.btn-quilt {
	background: url('images/quilt.jpg') no-repeat;
-webkit-border-radius: 30px;
-webkit-border-bottom-right-radius: 0;
-moz-border-radius: 30px;
-moz-border-radius-bottomright: 0;
border-radius: 30px;
border-bottom-right-radius: 0;
}

.btn-love {
	background: url('images/love.jpg') no-repeat;
-webkit-border-radius: 30px;
-webkit-border-top-right-radius: 0;
-moz-border-radius: 30px;
-moz-border-radius-topright: 0;
border-radius: 30px;
border-top-right-radius: 0;
}



.slid-btns, .homepage-btns {
    .carousel-inner {
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
	img {
		width: 100%;
	}
    }
}

.featured {
	margin-top: 20px;
	h2 {
		text-transform: uppercase;
		font-size: 22px;
		text-align: center;
	}
	.crop {
		position: relative;
		overflow: hidden;
		-webkit-border-radius: 30px;
		-moz-border-radius: 30px;
		border-radius: 30px;
	}
	img {
		width: 100%;
	}
	.col-md-4 {
		padding-left: 1px;
		padding-right: 0px;
	}
	h3 {
		position: absolute;
		text-align: center;
		background: rgba(0,126,177,.85);
		text-transform: uppercase;
		color: @white;
		bottom: 0;
		left: 0;
		width: 100%;
		margin: 0;
		font-size: 16px;
		padding: 10px 0px;
			-webkit-transition: all .3s ease-in-out;
  			-moz-transition: all .3s ease-in-out;
  			-o-transition: all .3s ease-in-out;
  			transition: all .3s ease-in-out;
	}
	.crop:hover h3 {
		padding: 20px 0px;
	}
}

.pink_button {
	border: 0px;
	background-color: @pink;
	text-align: center;
	color: @white;
	text-transform: uppercase;
	font-family: 'cinzel';
	font-size: 14px;
	padding: 10px 20px;
	-webkit-border-top-left-radius: 20px;
	-webkit-border-bottom-right-radius: 20px;
	-moz-border-radius-topleft: 20px;
	-moz-border-radius-bottomright: 20px;
	border-top-left-radius: 20px;
	border-bottom-right-radius: 20px;
	-webkit-transition: all .3s ease-in-out;
  	-moz-transition: all .3s ease-in-out;
  	-o-transition: all .3s ease-in-out;
  	transition: all .3s ease-in-out;
}

.pink_button:hover {
	opacity: .7;
}

/***************
SIDEBARS
***************/

aside {
	h2 {
		background: @pink;
		color: @white;
		text-transform: uppercase;
		text-align: center;
		font-size: 20px;
		font-family: cinzel;
		-webkit-border-radius: 20px;
		-webkit-border-top-left-radius: 0;
		-moz-border-radius: 20px;
		-moz-border-radius-topleft: 0;
		border-radius: 20px;
		border-top-left-radius: 0;
		padding:15px 0px;
		margin: 0;
	}
	.box {
		margin-bottom: 20px;
	}
	ul {
		a {
			color: @grayDark;
			font-size: 15px;
			display: block;
			padding: 10px 0px;
			border-bottom: 1px dashed @grayLighter;
			-webkit-transition: all .3s ease-in-out;
  			-moz-transition: all .3s ease-in-out;
  			-o-transition: all .3s ease-in-out;
  			transition: all .3s ease-in-out;
		}
		a:hover {
			padding-left: 10px;
		}
	}
}

.newsletter {
	form {
		position: relative;
	}
	input[type="submit"] {
		background-color: @blueDark;
		color: @white;
		height: 39px;
		border: 0px;
		padding: 0px 15px;
		vertical-align: top;
		position: absolute;
		top: 0;
		right: 0;
		-webkit-border-top-right-radius: 20px;
		-webkit-border-bottom-right-radius: 20px;
		-moz-border-radius-topright: 20px;
		-moz-border-radius-bottomright: 20px;
		border-top-right-radius: 20px;
		border-bottom-right-radius: 20px;
	}
	input[type="submit"]:hover {
		background-color: @blue;
	}
	input[type="text"] {
		border: 1px solid @blueDark;
		height: 39px;
		margin-right: 0px;
		padding: 0px 90px 0 20px;
		width: 100%;
		-webkit-border-radius: 20px;
		-webkit-border-top-left-radius: 0;
		-moz-border-radius: 20px;
		-moz-border-radius-topleft: 0;
		border-radius: 20px;
		border-top-left-radius: 0;
	}
}


/***************
FOOTER
***************/

.pinked {
	width: 100%;
	position: absolute;
	top: -8px;
	z-index: 50;
	background: url('images/footer-btm.png') repeat-x center top;
	height: 17px;
}

footer {
	position: relative;
	background: @pink;
	color: @white;
	padding: 30px 0px;
	a {
		color: @white;
	}
}

/* WP Stuff */

.attachment-thumb{
	float: left;
margin: 5px;
-webkit-border-radius: 20px;
-webkit-border-top-left-radius: 0;
-moz-border-radius: 20px;
-moz-border-radius-topleft: 0;
border-radius: 20px;
border-top-left-radius: 0;
}
.entry img{
margin: 5px;
-webkit-border-radius: 20px;
-webkit-border-top-left-radius: 0;
-moz-border-radius: 20px;
-moz-border-radius-topleft: 0;
border-radius: 20px;
border-top-left-radius: 0;
max-width:100%;
}
#commentform textarea {
	width: 400px;
	height: 100px;
}

ul.commentlist {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
	margin-top: 0px;
}

ul.commentlist li {
	margin-bottom: 10px;
}

ul.children {
	list-style-type: none;
	margin: 3px;
	margin-left: 10px;
	padding: 0px;
}

ul.children li {
	margin: 0px;
	padding: 0px;
	margin-top: 3px;
}

.comment-time {
	font-size: 0.75em;
}

#respond {
	padding: 5px;
}

#sidebar ul {
	list-style-type: none;
	margin: 0px;
	padding: 0px;
}

#sidebar li {
	list-style-type: none;
	margin: 0px;
	margin-bottom: 10px;
	padding: 3px;
}

#sidebar h3 {
	font-size: 1.25em;
	margin: 0px;
	font-weight: normal;
}

#sidebar ul ul li {
	border: 0px;
	padding: 0px;
	margin: 0px;
}

#sidebar ul ul ul {
	margin-left: 10px;
}
code {
	white-space: pre-wrap;
}
#submit-comment{
	background-color: #007eb1;
color: #fff;
height: 39px;
border: 0;
padding: 0 15px;
vertical-align: top;
-webkit-border-radius: 20px;
-webkit-border-top-left-radius: 0;
-moz-border-radius: 20px;
-moz-border-radius-topleft: 0;
border-radius: 20px;
border-top-left-radius: 0;
}
textarea{
border: 1px solid #007eb1;
margin-right: 0;
padding: 0 90px 0 20px;
width: 100%;
-webkit-border-radius: 20px;
-webkit-border-top-left-radius: 0;
-moz-border-radius: 20px;
-moz-border-radius-topleft: 0;
border-radius: 20px;
border-top-left-radius: 0;
}
img.alignright {float:right; margin:0 0 1em 1em}
img.alignleft {float:left; margin:0 1em 1em 0}
img.aligncenter {display: block; margin-left: auto; margin-right: auto}
.alignright {float:right; }
.alignleft {float:left; }
.aligncenter {display: block; margin-left: auto; margin-right: auto}

/* -- @MEDIA STATEMENTS -- */ 
@media (max-width: 1200px){

}

@media (max-width: 1030px){
	.header-center {
		margin-left: 150px;
	}
	.top-menu {
		ul {
			li {
				font-size: 20px;
				a {
					padding: 23px 15px;
				}
				ul {
					top: 46px;
					left: 0;
				}
			}
		}
	}
	.btn-blog, .btn-events, .btn-cut, .btn-quilt, .btn-love {
		width: 222px;
		height: 154px;
	}
	.carousel-inner {
		max-width: 445px;
	}
}

@media (max-width: 980px){
	.header-center {
		margin-left: 25px;
	}
	aside.left {
		display: none;
	}
	.top-menu {
		display: none;
	}
	.mobile-nav {
		display: block;
		#main-menu {
			text-align: center;
			padding: 15px 0px;
			font-size: 20px;
			border-top: 0px;
		}
		a {
			display: block;
			padding: 5px 0px;
			border-top: 1px dashed @grayLighter;
		}
		li {
			list-style: none;
		}
	}
}

@media (max-width: 650px){
	.header-center {
		width: 55%;
		span {
			font-size: 23px;
		}
	}
	.carousel-inner {
		max-width: 100%;
	}
	.slide-btns {
		float: none !important;
	}
	.login-links {
		clear: both;
		width: 270px;
	}
	.homepage-btns br {
		display: none;
	}
	.btn-blog, .btn-events {
		width: 50%;
	}
	.btn-cut, .btn-quilt, .btn-love {
		float: left;
		width: 33%;
		margin-right: 1px;
	}
}

@media (max-width: 480px) {
	.social-icons {
		display: none;
	}
	.logo {
		width: 100%;
		text-align: center;
	}
	.header-center {
		width: 90%;
		span {
			font-size: 20px;
		}
	}
	.login-links {
		margin-top: 15px;
	}
	.btn-blog, .btn-events, .btn-cut, .btn-quilt, .btn-love {
		width: 100%;
	}
}

#id_username, #id_password {
    max-width: 200px !important;
}

.reg {
    input[type=text] {
        max-width: 200px !important;
    }
    input[type=password] {
        max-width: 200px !important;
    }
    #id_newsletter, #id_email {
        max-width: 200px !important;
        margin-bottom: 10px;
    }
}

.top-menu .menu > .menu-item .menu-sub {
  left: 0;
  position: absolute;
  top: 100%;
  width: 175px;
}
.newsletter a {
background-color: #007eb1;
display: block;
color: #fff;
height: 39px;
border: 0;
padding: 0px 15px;
padding-top: 7px;
vertical-align: top;
-webkit-border-radius: 20px;
-moz-border-radius: 20px;
border-radius: 20px;
margin-top: 20px;
}
.newsletter h3 {
margin-top: 0;
text-align: center;
}
body.amzn-taggable-text .top-menu .menu>.menu-item a {
	padding: 20px 21px;
    font-size: 18px;
}
