/*
Theme Name: Steal Her Style
Theme Author: Linda Paiste
Description: custom theme for stealherstyle.net
Text Domain: sora
*/


article, section, aside, hgroup, nav, header, footer, figure, figcaption {
  display: block;
}

body {
	margin:0;
	padding:0;
	background:#d9eaec;
}

p {
	line-height: 1.5;
    margin: 1em 0;
}

img {
	border:0;
	max-width:100%;
	height: auto;
}

ul,ol {
	margin:0;
	padding:0 20px 0 20px;
}

ul li,ol li {
	padding:0;
	margin:0;
}

form {
	margin:0;
	padding:0;
}

input[type="text"], textarea {
	background:#F9F9F9;
	border:1px solid #dbdbdb;
	padding:4px;
	font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
	font-size:11px;
	color:#444444;
	margin:2px;
	-moz-box-shadow: inset 1px 1px 1px #dedede;
    -webkit-box-shadow: inset 1px 1px 1px #dedede;
    box-shadow: inset 1px 1px 1px #dedede;
}
textarea {
	width: 95%;
    max-width: 525px;
}

.clearer {
	clear:both;
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}


a:link,a:active,a:visited {
	color: #000;
    text-decoration: none;
}
.post-body a, p a{
    font-weight: bold;
	border-bottom: 1px dotted #39bbd1;
}
.post-body a:hover, p a:hover {
    background: #39bbd1;
    text-decoration: none;
}
.tags a {
    font-weight: normal;
}

a:hover {
	text-decoration:underline;
}

.sticky {
   z-index: 500;
   position: absolute;
   position: fixed;
   top: 0;
   left: 0;
   width: 100%;
   height: 50px;
   background: #000;
   color: #fff;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   box-shadow: 2px 2px 10px #25252591;
}
.sticky a, .sticky a:link, .sticky a:active, .sticky a:visited {
    color: #fff;
}
.header-title {
    align-self: center;
    margin: 2px auto;
}
.header-title img {
    height: 46px;
}
.sticky .search-close,
.sticky .search-toggle,
.sticky .menu-toggle,
.sticky .menu-close {
    font-size: 20px;
    padding: 15px;
    height: 50px;
    box-sizing: border-box;
}
.sticky .search-toggle:hover,
.sticky .menu-toggle:hover,
.sticky .search-form button:hover {
    background: #39bbd1;
}
button {
    background: none;
    border: none;
}
.sticky button {
    color: #fff;
}

.main-menu {
  min-width: 200px;
  background: #1a1a1a;
  position: absolute;
  top: 0;
  left: -100%;
  left: -100vw;
  max-width: 100%;
  max-width: 100vw;
  height: 100%;
  height: 100vh;
  transition: left 0.3s ease,
              box-shadow 0.3s ease;
  z-index: 999;
  color: #fff;
  font-style: italic;
}

.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  height: 100%;
  max-height: 450px;
}
.main-menu li {
  border-bottom: 1px solid #383838;
}
.main-menu a {
	display: block;
    font-size: 23px;
    line-height: 50px;
	height: 50px;
    padding: 0 20px;
  color: #fff;
  text-decoration: none;
  max-height: 12vh;
}
@media (max-height: 450px) {
  .main-menu a {
	line-height: 12vh;
  }
}
.main-menu a:hover,
.main-menu a:focus {
	background: #39bbd1;
}
.main-menu .close-container {
	text-align: left;
	display: flex;
	max-height: 11vh;
}
.main-menu .menu-close,
.search-overlay .search-close {
    margin: 0;
	text-align: center;
	display: inline-flex;
	align-self: flex-start;
}
.main-menu .menu-close:hover,
.search-overlay .search-close:hover {
   background: red;
}

.main-menu:target,
.main-menu[aria-expanded="true"] {
  left: 0;
  outline: none;
  -moz-box-shadow: 3px 0 12px rgba(0,0,0,.25);
  -webkit-box-shadow: 3px 0 12px rgba(0,0,0,.25);
  box-shadow: 3px 0 12px rgba(0,0,0,.25);
}

.backdrop {
  position: absolute;
  position: fixed;
  display: block;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  z-index: 998;
  cursor: default;
}
.main-menu:target + .backdrop,
.main-menu[aria-expanded="true"] + .backdrop {
  width: 100%;
  height: 100%;
  background: #000;
  background: rgba(0,0,0,.85);
  transition: background .3s ease;
}
.search-overlay {
    position: absolute;
	position: fixed;
	top: 0;
    right: 0;
	width: 100%;
    height: 100%;
    transform: translate(100%,0);
	transform: scale(0,0);
    transform-origin: top right;
	transition: .3s ease;
	opacity: 0;
    background: #1a1a1a;
}
.search-overlay:target,
.search-overlay[aria-expanded="true"] {
    z-index: 1000;
    opacity: 1;
	transform: translate(0%,0%);
	transform: scale(1,1);
}
.search-overlay .search-close {
    position: absolute;
    position: fixed;
    top: 0;
    right: 0;
}
.search-overlay .search-form {
	color: #fff;
	margin: 68px 0 12px 0;
	margin: 17vh 0 3vh 0;
	min-height: 40px;
    min-height: 10vh;
    display: flex;
}
.search-overlay .search-form input {
  color: #FFF;
	background: inherit;
    border: none;
    font-family: inherit;
    margin: 0;
	text-align: center;
	font-size: 28px;
    font-size: 7vw;
	border-bottom: 1px solid #383838;
    flex: 9;
    width: 85vw;
}
.search-overlay .search-form button {
	color: #fff;
	font-size: 22px;
	font-size: calc(14px + 2vw );
    flex: 1;
}
.suggestions {
    text-align: left;
    display: inline-flex;
    flex-direction: column;
    padding: 0 5vw 0 0;
    margin: 0 auto;
}
.suggestions li {
    list-style: none;
}
.suggestions li a {
  text-decoration: none;
    color: #fff;
	width: 100%;
    display: block;
	font-size: 14px;
	font-size: 3.5vh;
    padding: .5vh;
}
@media (max-height: 400px) {
  .suggestions li a {
	font-size: 14px;
  }
}

.suggestions li a:hover,
.suggestions li a:focus,
.suggestions li.selected a {
  color: #39bbd1;
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.wrapper {
	margin:0;
	width: 100%;
	max-width:1000px;
	padding: 60px 0 0 0;
	background:#fff;
}

.container {
	width: 100%;
	max-width:1000px;
	margin:0;
	padding:0;
	overflow:hidden;
	background:#fff;
	font-family:Georgia,"Times New Roman",Times,serif;
	color: #222;
	text-align: left;
	/*line-height: 120%;*/
}

#content {
	width: 100%;
	padding:0;
	margin:0 1.7% 0 1.7%;
}

.entry {
	margin:0 0 30px 0;
}

h1, h2, h3, h4, h5 {
	color:#000;
	font-family:Georgia,"Times New Roman",Times,serif;
	font-weight: normal;
	font-style: italic;
	margin:0;
}
h1, h2 {
	font-size: 40px;
}
h3 {
	font-size: 30px;
}
h4 {
	font-size: 20px;
}

h2.celebrity-name-above-photo {
    font-size: 40px;
    margin: 0;
    text-align: center;
}
h2.celebrity-name-above-photo a {
    color: #000;
}
.entry h2, .full-width h2, .entry h1, .full-width h1 {
	margin:0;
	padding:3px;
	font-size: 40px;
	line-height: 40px;
	color:#000;
	font-weight:normal;
}

.entry h2 a, #content h2 a, .full-width h2 a, .entry h1 a, #content h1 a, .full-width h1 a {
	font-weight:normal;
	color: #000;
	font-style: italic;
}
.category-name a {
	border-bottom: 1px dotted #39BBD1;
}
.post-title {
	font-style: italic;
}

#content h2 a:hover {
	color:#ed397b; /*pink*/
}

.ehead {
	margin:0;
	padding:6px 0 6px 0;
}

.entryinfo {
	font-size:14px;
	font-family:Tahoma,Verdana,Arial,Helvetica,sans-serif;
}
.comment-link {
	display: inline;
}
@media all and (min-width: 480px) {
	.comment-link:before {
   		content: " - ";
   	}
}

blockquote,blockquote blockquote blockquote {
	font-style: italic;
}

blockquote blockquote {
	padding:0 0 0 8px;
	margin-bottom:10px;
	color:#555555;
	border-left:5px solid #f93b81;
}

.alignleft {
	float:left;
}

.alignright {
	float:right;
}

.aligncenter {
	clear:both;
	display:block;
	margin-left:auto;
	margin-right:auto;
}

.navigation {
	display:block;
}

.tags {
	font-family: serif;
	font-size: 16px;
	line-height: 27px;
	display: inline;
}

.tags a {
	color: #fff;
	background-color: #000;
	margin: 5px;
	padding: 3px 10px;
	display: inline-block;
}

.tags a:hover {
	color: #fff;
	background-color: #ed397b; /*pink*/
}

.main-column {
	width: 100%;
	padding:0;
	margin:0;
	text-align:center;
}
.main-column .ehead {
	text-align: center;
}
.main-column h2 {
	font-style: italic;
}
.main-column .post-body {
	width: 100%;
	max-width: 510px;
	margin-left: auto;
	margin-right: auto;
}
.post-body {
	line-height: 150%;
	text-align: left;
}
.shop-single {
	max-width: 562px;
	margin-left: auto;
	margin-right: auto;
}

.side-column {
	width: 100%;
	text-align: center;
	margin: 0;
}
.side-column h2 {
	font-weight: normal;
	font-size: 30px;
	line-height: 30px;
	font-style: italic;
	text-align: center;
	margin: 5px 0 10px 0;
}
.side-column h2 a {
	color: #000;
}

.full-width {
	width: 94%;
	max-width: 850px;
	margin-left: auto;
	margin-right: auto;
}
.narrow {
	max-width: 510px;
    margin-left: auto;
    margin-right: auto;
}
.centered {
	text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.tattoo-page .clearer {
  clear: none;
}

.full-width h2, .footer-title, .footer-title h2 {
	font-size: 40px;
	line-height: 40px;
	font-weight: normal;
}
.footer-title {
	text-align: center;
}
.footer-title h2 {
	margin: 10px 0;
}
.more-celebrity {
	text-align: center;
}
.more-celebrity a {
	color: #39BBD1;
	font-weight: bold;
	background-color: #000;
	padding: 7px;
	display: inline-block;
}
.more-celebrity a:hover {
	color: #000;
	background-color: #39bbd1; /*bright teal*/
}
.post-break, hr {
	margin: 0;
	border-style: dotted;
	border-width: 0 0 1px 0;
}

#sidebar {
	width: 35.9%;
	float:right;
	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-size:11px;
	color:#444444;
	text-align:left;
	padding:0 0 0 1%;
	margin:10px 1.7% 0 1.7%;
}


#sidebar ul li,#sidebar ol li {
	line-height:19px;
}

.widget {
	margin:0 0 15px 0;
}

#sidebar h2 {
	margin:0 0 10px 0;
	font-family:"Century Gothic",Verdana,Arial,Helvetica,sans-serif;
	color:#f8f8f8;
	font-weight:normal;
	font-size:16px;
	text-transform:lowercase;
	background-color:#000000;
	padding:3px 6px 4px 6px;
	border-bottom:3px solid #39BBD1;
	border-top-right-radius:12px;
	-moz-border-top-right-radius:12px;
}

#sidebar ul,#sidebar ol {
	padding-right:0;
	color:#2ea7c4;
}

#sidebar ul li,#sidebar ol li {
	margin-bottom:3px;
}

#sidebar ul li a,#sidebar ol li a {
	padding:3px;
	font-weight:normal;
	margin:0;
}

#sidebar ul li a:hover,#sidebar ol li a:hover {
	background:#38bcd2;
	color:#f8f8f8;
	text-decoration:none;
}

#wp-calendar,#wp-calendar caption {
	width:100%;
	text-align:center;
}

.wp-caption, .gallery-caption, .wp-block-image {
	margin: 3px auto 10px auto;
	outline: 5px solid #000;
	padding-top: 5px;
	text-align:center;
	background-color:#000000;
	max-width: 100%;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}	

.wp-caption img, .wp-block-image img {
	margin:0;
	padding:0;
	width: auto;
	height: auto;
	outline: 1px solid #fff;
}

.wp-caption p.wp-caption-text, .wp-block-image figcaption {
	font-size: 15px;
	padding: 6px 0 0 0;
	margin: 0;
	font-family: serif;
	font-style: italic;
	color: #fff;
}
.wp-caption p.wp-caption-text a, .wp-block-image figcaption a {
    color: #fff;
}
.photo-details .wp-caption, .gallery-caption {
	outline: 0;
	background-color:#ffffff;
	color: #000;
}

ol.commentlist {
	list-style-type:none;
	padding:0;
	margin:25px;
}

ol.commentlist li {
	padding:10px;
	list-style-type:none;
}

ol.commentlist li cite {
	font-style:normal;
	font-weight:bold;
	font-size:16px;
	list-style-type:none;
}

#content .commentmetadata a {
	font-weight:normal;
	font-size:11px;
}

.commentator {
	display:inline;
}

#content ol.commentlist li .avatar {
	float:left;
	margin-right:5px;
}

#commentform #submit {
	cursor:pointer;
	color:#f8f8f8;
	font-family:Arial,Helvetica,sans-serif;
	background-color:#000000;
	border:none;
	text-align:center;
	width:125px;
	height:29px;
	font-size:12px;
	font-weight:bold;
	border-radius:5px;
	-moz-border-radius:5px;
}

#comment-nav-above {
	padding-top:15px;
	overflow:hidden;
}

#comment-nav-below {
	padding-bottom:15px;
	overflow:hidden;
}

#comment-nav-above .nav-previous,#comment-nav-below .nav-previous {
	float:left;
}

#comment-nav-above .nav-next,#comment-nav-below .nav-next {
	float:right;
}

label {
	cursor:pointer;
}

.comment-form-author,.comment-form-email,.comment-form-url {
	overflow:hidden;
	clear:left;
	float:left;
	margin:5px 0;
}

.comment-form-comment {
	clear:left;
}

.comment-form-comment label {
	display:none;
}

#commentform input[type="text"] {
	float:left;
	line-height:18px;
	height:18px;
}

#commentform textarea {
	margin-top:5px;
}

.comment-form-author label,.comment-form-email label,.comment-form-url label {
	float:right;
	width:60px;
	display:block;
	font-size:11px;
	margin-left:5px;
	color:#888888;
}

ol.archive {
	padding:0;
	margin:0;
	list-style-type:none;
	list-style-image:none;
}

ol.archive li {
	margin:0 0 25px 0;
}

#footer {
	width:950px;
	font-family:Verdana,Arial,Helvetica,sans-serif;
	background-color:#d9eaec;
	color:#444444;
	font-size:11px;
	margin-top:15px;
	padding:0;
}

.footerwidget {
	padding: 20px 1% 30px 2%;
	display:block;
	float:left;
	text-align:left;
	width: 30%;
	color:#444444;
	font-family:Verdana,Arial,Helvetica,sans-serif;
	font-size:12px;
}

.footerwidget h2 {
	margin:0 0 10px 0;
	font-weight:normal;
	font-size:16px;
	padding:3px 6px 4px 0;
	border-bottom:3px solid #000000;
}

.hairtitle {
	margin:25px 0 0 0;
	font-family:"Century Gothic",Verdana,Arial,Helvetica,sans-serif;
	color:#f8f8f8;
	font-weight:normal;
	font-size:16px;
	text-transform:lowercase;
	background:#f93b81;
	padding:3px 6px 3px 10px;
}

.hair {
	background-color:#D9EAEC;
	padding:5px 0 0 0;
	text-align:center;
	border:1px solid #f93b81;
}

.hair a img {
	margin:3px;
	border:2px solid #238199; /*dark teal*/
}

.hair a:hover img {
	margin:3px;
	border:2px solid #ed397b; /*pink*/
}

.morepics {
	width:150px;
	float:right;
	font-family:"Century Gothic",Verdana,Arial,Helvetica,sans-serif;
	color:#f8f8f8;
	font-weight:normal;
	font-size:14px;
	text-transform:lowercase;
	background-color:#f93b81;
	padding:6px;
}

.look {
	clear:both;
	margin:0;
	padding:0;
}

.look li {
	background-color:#ffffff;
	margin:0;
	padding:5px;
	float:left;
	font-family:sans-serif;
	font-size:10px;
	color:#000000;
	text-align:center;
	line-height:15px;
	overflow:hidden;
}

.look img {
	border:1px solid #238199; /*dark teal*/
}

.blueborder {
}

.blueborder img,.blueborder a img {
	outline:3px solid #000000;
}

.blueborder a:hover img {
	outline:3px solid #238199; /*dark teal*/
}

.captionwhite {
	background-color:#ffffff;
	margin:0;
	padding:5px;
	float:left;
	font-family:sans-serif;
	font-size:10px;
	color:#000000;
	text-align:center;
	line-height:15px;
	overflow:hidden;
}

.captionwhite img {
	border:1px solid #238199; /*dark teal*/
}

.portal-container {
	margin: auto;
	width: 100%;
	max-width: 984px;
}

.portal-container.columns-1 { max-width: 168px; }
.portal-container.columns-2 { max-width: 336px; }
.portal-container.columns-3 { max-width: 504px; }
.portal-container.columns-4 { max-width: 672px; }
.portal-container.columns-5 { max-width: 840px; }

.portal-image {
	margin: 0;
	padding: 7px;
	float:left;
}

.portal-image img {
	width: 100%;
	height: auto;
	outline: 2px solid #000;
	display: block;
}

.portal-container.columns-1 .portal-image { width: 100%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
.portal-container.columns-2 .portal-image { width: 50%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
.portal-container.columns-3 .portal-image { width: 33.33%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
.portal-container.columns-4 .portal-image { width: 25%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
.portal-container.columns-5 .portal-image { width: 20%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
.portal-container.columns-6 .portal-image { width: 16.66%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
.portal-container.columns-7 .portal-image { width: 14.28%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }
.portal-container.columns-8 .portal-image { width: 12.5%; box-sizing: border-box; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; }

@media all and (max-width: 708px) {
  .portal-container.columns-8 .portal-image,
  .portal-container.columns-7 .portal-image { width: 16.66%; }
}

.portal-txt {
	background-color: #FFF;
	color:#000;
	font-weight:500;
	margin: 0 -2px;
	font-family:Helvetica,sans-serif;
	font-variant:small-caps;
	font-size:11px;
	text-align:center;
	line-height:20px;
	white-space:nowrap;
	overflow:hidden;
}
.portal-txt.white {
}
.portal-txt.black {
	background-color: #000;
	color:#FFF;
	font-weight:300;
}

a:hover .portal-image, a:hover .portal-txt {
  background-color: #000;
  color: #39bbd1;
}

ul.portal {
	list-style:none;
	margin:0;
	padding:0;
}

ul.portal li {
	display: inline-block;
}

.portal ul>li {
	display: inline-block;
}

.portal li a {
	display: inline-block;
	/*float:left;*/
	background-color:#000000;
	margin:7px;
	padding:2px;
	font-family:Helvetica,sans-serif;
	font-variant:small-caps;
	font-weight:300;
	font-size:11px;
	color:#FFFFFF;
	text-align:center;
	line-height:20px;
	white-space:nowrap;
	overflow:hidden;
	box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

.portal li img {
	margin-bottom:3px;
}

.portal li:hover a {
	background-color:#39bbd1; /*bright teal*/
	text-decoration:none;
}
.post-type-box {
	background: #000;
	width: 30%;
    float: left;
    margin: 0 1%;
    text-align: center;
    padding: 0 .5% 5px .5%;
    color: #fff;
}
.post-type-box:hover {
	background: #39bbd1;
}
.post-type-box h3 {
    margin: 5px 0 1px 0;
    color: #fff;
}
.post-type-box .portal-image {
    padding: 5px;
}
.post-type-box .portal-image img {
    outline: 1px solid #fff;
}


.celebrity-columns {
	float: left;
	width: 25%;
}
.category-list a {
  color: #444;
}
.category-list a:hover {
  background: #000;
  color: #fff;
  text-decoration: none;
}

.category-posts {
	float: left;
	background-color: #000000;
	margin: 1%;
	padding: 2px;
	width: 29%;
	max-width: 154px;
}

.category-posts img {
	width: 100%;
	height: auto;
}

.morelink {
	list-style:none;
}

.morelink ul {
	list-style:none;
	margin:0;
}

.morelink li a {
	width:552px;
	float:left;
	background-color:#000000;
	margin:7px;
	padding:7px;
	font-size:20px;
	font-weight:300;
	text-align:center;
	font-family:Helvetica,sans-serif;
	font-variant:small-caps;
	color:#FFFFFF;
	line-height:30px;
}

.morelink li:hover a {
	background-color:#39bbd1; /*bright teal*/
	text-decoration:none;
}

.shopstyle-container {
    position: relative;
    padding-bottom: 244px;
    height: 0;
    overflow: hidden;
}
.shopstyle-container iframe {
    position: absolute;
    top:0;
    left: 0;
    width: 100%;
    height: 100%;
}
iframe {
	max-width: 100%;
}


/* "Photos" singular views */

.photo {
	float:left;
	clear:left;
	width: 53%; /*508px;*/
}

.breadcrumb {
    margin-bottom: 8px;
}

.main-image {
  text-align: center;
}

.main-image img.attachment-large.wp-post-image {
    outline: 4px solid #000;
    width: 100%;
    max-width: 500px;
}
.main-image .video-tutorial {
    outline: 4px solid #000;
    width: 100%;
    max-width: 500px;
    background: #000;
    margin-left: auto;
    margin-right: auto;
}
.main-image .ratingblock {
    max-width: 150px;
    margin-left: auto;
    margin-right: auto;
}
.image-wrapper {
	position: relative;
    max-width: 508px;
}
.byline {
    position: absolute;
    bottom: 0;
    right: 0;
    font-size: 70%;
    text-align: right;
    color: #fff;
    max-width: 508px;
    padding: 5px;
    background: rgba(0, 0, 0, 0.5);
}
.byline a {
    color: #fff;
}
.content-single {
	max-width:500px;
	margin-left: auto;
	margin-right: auto;
}

.photo-details {
	float:right;
	clear:right;
	width: 44%;
	font-family:Georgia,"Times New Roman",Times,serif;
	font-size:16px;
}

.photo-details h2, .photo h2 {
	text-transform:none;
	padding:0 0 3px;
	margin-bottom:15px;
	font-family:Georgia,"Times New Roman",Times,serif;
	border-bottom:2px solid #000;font-size: 24px;
	font-weight: normal;
}

.photo-details h2.subheading {
	margin-top:15px;
}

.photo-details p {
	margin:0 0 10px;
	line-height:normal;
}

.photo-details .content {
	padding:5px 0 10px;
}

.photo-details .content p {
	line-height:22px;
}

.photo-details p.terms {
	line-height:24px;
	margin-bottom:5px;
	text-transform:lowercase;
	overflow:hidden;
}

.terms span {
	display:block;
	float:left;
	margin-right:9px;
}

.terms a:link,.terms a:active,.terms a:visited {
	background:#000;
	color:#fff;
	padding:0 7px;
	text-decoration:none;
	display: inline-block;
	margin: 0 9px 4px 0;
    border: 0;
    font-weight: normal;
}

.social-icons {
	float: left;
	max-width: 20%;
}

/* Upload form */

.page-template-form-page-php {
	background:#fff;
}

.page-template-form-page-php #wrapper,.page-template-form-page-php #container {
	width:100%;
	margin:0;
	padding:0;
}

.page-template-form-page-php #content {
	float:none;
	width:auto;
	margin:20px;
}

.upload-form {
	padding:0;
	list-style:none;
	width:204px;
	margin:auto;
	overflow:hidden;
}

.upload-form li {
	float:left;
	width:90px;
	height:35px;
	line-height:35px;
	text-align:center;
	font-size:16px;
	font-family:Georgia,"Times New Roman",Times,serif;
	text-transform:lowercase;
	margin:0 12px 15px 0;
}

.upload-form a {
	display:block;
	color:#fff;
	background:#000;
}

.upload-form a:hover {
	background:#47bbd4;
	text-decoration:none;
}

.upload-form input[type="submit"] {
	float:left;
	width:90px;
	height:35px;
	line-height:35px;
	font-size:16px;
	font-family:Georgia,"Times New Roman",Times,serif;
	text-transform:lowercase;
	margin:0 12px 15px 0;
	color:#fff;
	background:#000;
	border:none;
	cursor:pointer;
}

.upload-form input[type="submit"]:hover {
	background: #47bbd4;
}

ul.google_search {
	position:absolute;
	margin:0;
	padding:0;
	list-style:none;
	z-index:10000000000;
}

input.gsc-search-button{ cursor:pointer;}

.google_search h2 {
	display:none;
}

form.gsc-search-box {
	padding:0 !important;
}

input.gsc-search-button {
	background-color:#000 !important;
	border-color:#000 !important;
}

input.gsc-input {
	border-color: #000 !important;
}

.footer-search {
    width: 30%;
    min-width: 200px;
    margin: 5px auto 10px auto;
}
form.search-form {
    display: flex;
    justify-content: center;
    align-items: center;
}
.search-form label {
    flex: 4 4 calc(100% - 50px);
}
input.search-field {
    width: 100%;
	height: 30px;
    font-size: 20px;
    font-family: Georgia, serif;
}
button.search-submit {
    font-size: 20px;
    flex: 1 1 40px;
}
.search-results ul {
    margin-top: 10px;
}
.search-results li {
    font-size: 25px;
    line-height: 40px;
}

/*********** Ajay ***********/

.container2{ padding:0 14px;}

.aj_box{ width:300px; margin:8px; float:left; background:#000; color:#fff; font-family:Georgia, "Times New Roman", Times, serif; font-size:14px; text-align:left; padding:4px;}

.aj_thumb img{ width:300px; height:auto; }

.aj_box h1{ color: #fff; font-size:24px; margin:0; padding:0; font-weight:normal;}

.aj_box h2{ color: #fff; font-size:14px; float:left;margin:0; padding:0 0 5px 0;}

.txt{ padding:5px;}

.aj_box p{ padding:5px; margin: 0;font-size: 14px;}

.rating{ float:right;}

.aj_thumb .wp-caption{ width:300px !important; margin:0 !important; padding:0 !important;}

.aj_thumb .wp-caption img{ border:none !important;}

.aj_tags a { float: left; color: #000; background-color: #39bbd1; font-weight: bold; margin: 5px; padding: 3px; line-height: 16px;}

.aj_tags a:hover { color: #000; background-color: #ed397b; /*pink*/}

.add_photo{ text-align:right; padding:0 10px 0 0;}

.add_photo a{ background:#000; color:#fff; font-size:16px; font-weight:bold; font-family:Arial, Helvetica, sans-serif; line-height:36px; height:36px; padding:0 12px; display:inline-block;}

.top_link{ font-weight:bold; padding:10px 25px 3px 22px; text-transform:uppercase;}

.top_link .left{ float:left; }

.top_link .right{ float:right;}

.top_link a{ color:#000; font-size:14px; text-decoration:none;}

.aj_rating{ float:right;}

.aj_name{ float:left; font-size:17px; font-weight:bold;}

.aj_name a{ color:#fff;}

.ratingtext{ display:none;}

.aj_pname{ float:left; font-weight:bold;}

.aj_report_ph{ float:right;font-weight:bold;}

.aj_box2{ width:175px; margin:8px; float:left; background:#000; color:#fff; font-family:Georgia, "Times New Roman", Times, serif; font-size:12px; text-align:left; padding:4px;}

.aj_thumb2 img{ width:175px !important; height: auto; }

.tagcloud a{ color:#000 !important;} 

.aj_box2 p{ font-size:11px; line-height:16px; padding:0 5px;}

.aj_nav{ margin: 10px 0; padding: 0; list-style: none;}

.aj_nav li{ display: inline-block; }

.aj_nav li a{ color:#000; background:#ececec; font-family:Georgia, "Times New Roman", Times, serif; font-size:18px; padding:8px 16px; margin:5px; border-radius: 5px; display: block;}

.aj_nav li a.current { color:#fff; background:#000; }

.aj_nav li a:hover, .aj_nav li a.act{background:#47BBD4; text-decoration:none;}

.aj_title{ font-size:18px;  border-bottom:2px solid #000; }

.aj_title span{ color:#fff !important; background:#000;padding:0 8px; display:inline-block;line-height:28px; height:28px;}

.aj_sidebar .aj_line{border-bottom:2px solid #000; }

/*.textwidget{ padding:10px;}*/

.aj_similar_photo{ border:1px solid #000; width:408px; margin-bottom:12px;}

.aj_similar_photo img{ border:1px solid #000; float:left;}

.aj_title2{ background:black; line-height:24px; height:24px; padding:0 10px; color:#fff; display:inline-block;}

input.gsc-input{ width:150px !important;}

table.gsc-search-box td.gsc-input {padding-right: 0 !important;text-align: right;}

#cse-search-form{ width:250px !important;}

.categories{ font-size:20px; list-style:none; font-weight:bold;}

.categories ul{ margin:10px 0; padding:0;  list-style:none;}

.categories li{ background:#666; color:#fff; float:left; padding:2px 15px; margin:3px; font-size:12px;}

.categories li a{ color:#fff; font-weight:bold;}

.wpuf-category-checklist li{ display:block; float:none; width:300px;}

.medium{ background:#F9F9F9; border:1px solid #CCCCCC;}



#preview_form_container { margin:0 auto; width:500px; background-color:#d9eaec; border: 3px solid #000000; }

.lp-product { margin: 0; padding: 0; }
.lp-product li { width: 31.3%; max-width: 142px; float: left; text-align: center; color: #000; font-size: 80%; list-style: none; margin: 0 0 7px 0; padding: 1%; overflow: hidden; white-space: nowrap;}
.lp-product.columns-4 li { width: 23%;}
.lp-product li a { color: #000; }
.lp-product a li:hover { background-color: #d9eaec; text-decoration: none; }
.lp-product li img { max-width: 100%; max-height: 140px; height: auto; margin-left: auto; margin-right: auto;}
.img-square { width: 100%; height: 0; padding-bottom: 100%; }


.photo-details .products { clear:both; padding:8px 0; overflow:hidden; }

.photo-details .product { float:left; width:200px; text-align:center; }

.photo-details .product-detail { float:left; width:220px; margin-left:5px; }

.photo-details .product-detail h1 { margin:0 0 5px; padding:0; font-family:Georgia,"Times New Roman",Times,serif; }

.photo-details .product-detail h1 a { color:#e83b7e; text-decoration:none;  }

.photo-details .product-detail h1 a:hover { color:#e83b7e; text-decoration:underline; }

.photo-details .product-detail p.price { float:right; font-size:20px; color:#090a09;  }

.photo-details .product-detail p.posted { font-size:12px; color:#090a09; font-weight:bold; clear:both; }


.cat_title { font-size: 30px; line-height: 100%; color: #000; text-align: left; font-weight: normal; font-family: Georgia,"Times New Roman",Times,serif; margin: 5px 0 5px 10px;} 

.ad-wrapper { text-align: center; margin: 15px auto; }
.ad-300 { min-height: 250px; text-align: center; width: 300px; margin-left: auto; margin-right: auto; }
.ad-160 { text-align: center; margin-left: auto; margin-right: auto; }

.desktop-only { display: none; }
.mobile-only { display: none; }
.mobile-hide { display: inline-block; }
.desktop-hide { display: inline-block; }
.mobile-clearer {}

.lp-menu-column { float: left; width: 33%; min-width: 100px; max-width: 156px; padding: 10px 0 10px 10px; }
.lp-menu-column a { color: #000; margin: 5px 0 5px 0;}

.pagination > h3 { display: inline; padding: 0; }

.more-button { margin-left: auto; margin-right: auto; text-align: center; background: #000; color: #fff; text-transform: uppercase; padding: 5px;}
.hide, .hidden, .hidden-content { display: none; }
.show, .shown, .visible { display: block; }
.icon { display: inline; text-transform: uppercase; font-family: arial, sans-serif;}