/*!
Theme Name: Fashioblog
Theme URI: http://codepixar.com/fashioblog
Author: CodePixar
Author URI: http://codepixar.com/
Description: Fashion blog WordPress Theme.
Version: 1.0.2
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: fashioblog
Tags: custom-header, custom-menu, featured-image-header, featured-images, full-width-template, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

Fashioblog is based on Underscores https://underscores.me/, (C) 2012-2017 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/


*/
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/
/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
/* normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */

html {
	line-height: 1.15; /* 1 */
	-webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
	 ========================================================================== */

/**
 * Remove the margin in all browsers.
 */

body {
	margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */


/* Grouping content
	 ========================================================================== */

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */

hr {
	box-sizing: content-box; /* 1 */
	height: 0; /* 1 */
	overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

pre {
	font-size: 1em; /* 2 */
}

/* Text-level semantics
	 ========================================================================== */

/**
 * Remove the gray background on active links in IE 10.
 */

a {
	background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */

abbr[title] {
	border-bottom: none; /* 1 */
	text-decoration: underline; /* 2 */
	text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */

b,
strong {
	font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */

code,
kbd,
samp {
	font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */

small {
	font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sub {
	bottom: -0.25em;
}

sup {
	top: -0.5em;
}

/* Embedded content
	 ========================================================================== */

/**
 * Remove the border on images inside links in IE 10.
 */

img {
	border-style: none;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
optgroup,
textarea {
	line-height: 1.5;
}
input:focus::-webkit-input-placeholder,textarea:focus::-webkit-input-placeholder {
    color: transparent;
}
.form-control:focus {
    color: #777777;
    background-color: #f9f9ff;
    border-color: none;
    outline: 0;
    box-shadow: none;
}
.comment-form input,#search input,.comment-form textarea {
	background: #f9f9ff;
	border-radius: 0;
	border: none;
	font-size: 12px;
	color: #777777;
	padding: 15px 10px;
}


h1, h2, h3, h4, h5, h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn, cite, em, i {
	font-style: italic;
}

blockquote p {
  padding: 30px;
  font-size: 14px;
  line-height: 24px;
  color: #777777;
  border-left: 5px solid #c43afe;
  background: #f9f9ff;
  box-shadow: -20.84px 21.58px 30px 0px rgba(176, 176, 176, 0.1);
}


address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code, kbd, tt, var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr, acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark, ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after {
	/* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see https://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff;
	/* Fallback for when there is no custom background color defined. */
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul, ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: disc;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto;
	/* Make sure images are scaled correctly. */
	max-width: 100%;
	/* Adhere to container width. */
}

figure {
	margin: 1em 0;
	/* Extra wide images within figure tags don't overflow the content area. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

textarea {
	width: 100%;
}


/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.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; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	display: block;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

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

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
	/* Make sure select elements fit in widgets. */
}

.widget select {
	width: 100%;
	padding: 6px 20px;
	border: none;
	background: #f9f9ff;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {  /*safari and chrome*/
    select {
        height:40px;
        line-height:30px;
        background:#f4f4f4;
    } 
}
select::-moz-focus-inner { /*Remove button padding in FF*/ 
    border: 0;
    padding: 0;
}
@-moz-document url-prefix() { /* targets Firefox only */
    select {
        padding: 15px 0;
    }
}        
@media screen\0 { /* IE Hacks: targets IE 8, 9 and 10 */        
    select {
        height:40px;
        line-height:30px;
    }     
}
#search input {
	position: relative;
}

#search button {
    position: absolute;
    top: 41px;
    right: 12%;
    background: #f9f9ff;
    border: none;
    cursor: pointer;
    padding: 15px 20px;
}
#search button i {
	color: #222;
}
/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.post-area {
	padding: 100px 0;
}
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 50px;
}

.updated:not(.published) {
	display: none;
}

.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}
.single-title {
	font-weight: bold;
	-ms-word-wrap: break-word;
	word-wrap: break-word;
}
.single-post article {
	border-bottom: 1px solid #eeeeee;
}
.single-post .top-wrapper h2 {
	white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-author-metadata {
    padding-bottom: 30px;
}
.post-author-metadata .img{
	margin-right: 15px;
	float: left;
}
.post-author-metadata .img img{
    border: 2px solid #eee;
    margin-top: 6px;
}
.post-author-metadata .info a{
    font-size: 18px;
    font-weight: 500;
}
.post-author-metadata .info {
	overflow: hidden;
}
.post-navigation {
	margin-top: 20px;
	padding-bottom: 70px;
}
.post-navigation h4 {
	font-weight: bold;
	font-size: 20px;
}
.pagination {
	margin: 0;
}
/*about-me-author*/
.about-me-author {
	border: 1px solid #eeeeee;
    padding: 40px 30px;
    text-align: center;
}
.about-me-author p {
	line-height: 24px;
	margin-bottom: 0;
}
.about-me-author img {
	margin-bottom: 35px;
}
.about-me-author .widget-title {
	text-transform: uppercase;
    font-size: 16px;
    font-weight: bold;
    color: #333333;
    margin-bottom: 25px;
}
.about-me-author a {
	display: inline-block;
	text-transform: uppercase;
	font-weight: bold;
	font-size: 14px;
	background: #f9f9ff;
	padding: 10px 30px;
	color: #222222;
	border-radius: 50px; 

}
.about-me-author a:hover {
	background-image: -moz-linear-gradient( 0deg, rgb(204,45,255) 0%, rgb(82,255,242) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(204,45,255) 0%, rgb(82,255,242) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(204,45,255) 0%, rgb(82,255,242) 100%);
	box-shadow: -13.893px 14.387px 20px 0px rgba(176, 176, 176, 0.5);
	color: #fff;
}
.about-me-author i {
	margin-right: 20px;
}
/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-count {
	font-weight: bold;
	text-transform: uppercase;
	margin-top: 50px;
	margin-bottom: 70px;
}
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}
.comment-item {
	margin-bottom: 20px;
}
.comment-item .avatar {
	margin-right: 20px;
}
.comment-item .media-body h5 cite {
	font-weight: bold;
	font-style: inherit;
}
.comment-item .media-body .comment-time {
	color: #cccccc;
	font-size: 14px;
	display: block;
	margin-bottom: 15px;
}
.comment-item .media-body p {
	line-height: 24px;
	color: #777777;
}
.comment-edit a,
.comment-reply a {
	display: inline-block;
	font-size: 12px;
	text-transform: uppercase;
	color: #222222;
	padding: 5px 15px;
	border: 1px solid #eeeeee;
}
.comment-edit a {
	padding: 5px 16px;
	margin-top: 10px;
}
.comment-edit a:hover,
.comment-reply a:hover {
	background: #222222;
	color: #fff;
}

.comment-reply-title {
	font-weight: bold;
	text-transform: uppercase;
	margin-bottom: 50px;
}
.comment-form input {
	height: 40px;
}

.comment-form .form-group {
	margin-bottom: 20px;
}
.comment-form textarea {
	height: 160px;
}
 
.commentlist {
	padding-bottom: 35px;
	margin-bottom: 75px;
	border-bottom: 1px solid #eee;
}
.comment-form .form-submit {
	text-align: right;
}
.comment-form .form-submit input,.wpcf7-submit{
	background-image: -moz-linear-gradient( 0deg, rgb(204,45,255) 0%, rgb(82,255,242) 100%);
	background-image: -webkit-linear-gradient( 0deg, rgb(204,45,255) 0%, rgb(82,255,242) 100%);
	background-image: -ms-linear-gradient( 0deg, rgb(204,45,255) 0%, rgb(82,255,242) 100%);
	box-shadow: -13.893px 14.387px 20px 0px rgba(176, 176, 176, 0.5);
	font-size: 14px;
	color: #fff!important;
	text-transform: uppercase;
	text-align: center;
	padding: 10px 50px!important;
	border-radius: 50px!important;
	transition: all 0.5s ease;
	cursor: pointer;
}
.bnr-slider-item a:hover,
.form-submit input:hover {
    -ms-transform: skewY(3deg); /* IE 9 */
    -webkit-transform: skewY(3deg); /* Safari */
    transform: skewY(3deg);
}
.comment.depth-2,
.comment.depth-3,
.comment.depth-4 {
	margin-left: 40px;
}
.wpcf7-submit{
	margin-top: 10px;
}
.comment-form-cookies-consent label{
	display: inline;
	margin-left: 8px;
}
.comment-form-cookies-consent input {
	height: auto;
}
/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	/* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	padding-right: 6px;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}