/*** ARCHIVIO POST ***/
.archive-header {
	width: 100%;
  height: 120px;
  top: 40px;
  position: fixed;
  z-index: 10;
  padding-top: 60px;
	display: flex;
	background-color: #424242;
	align-items: center;
	opacity: 0;
	-webkit-transform: translateX(-100%);
	-moz-transform: translateX(-100%);
	transform: translateX(-100%);
	-webkit-transition: all .5s ease-in;
	-moz-transition: all .5s ease-in;
	transition: all .5s ease-in;
}

	.archive .archive-header, 
	.search .search-header {
		position: relative;
		top: 0;
		padding: 110px 15px 10px;
		flex-flow: column;
		height: auto;
		justify-content: center;
		margin-top: -100px;
	}

	.archive.category-5  .archive-header { background-color: rgba(238, 119, 54, .75); }
	.archive.category-56 .archive-header { background-color: rgba(231, 177, 37, .75); }
	.archive.category-3 .archive-header  { background-color: rgba(78, 121, 159, .75); }
	.archive.category-55 .archive-header { background-color: rgba(79, 171, 132, .75); }

	.loaded .archive-header {
		opacity: 1;
		-webkit-transform: translateX(0);
		-moz-transform: translateX(0);
		transform: translateX(0);
	}
	
	body:not(.archive):not(.search) .condensed .archive-header {
    height: 60px;
		padding-top: 0px;
	}

	.archive-header .page-title {
    position: relative;
    top: 5px;
    text-align: left;
    padding-left: 80px;
    width: 100%;
    margin: 0;
    text-transform: uppercase;
    font-family: "Myriad Pro", sans-serif;
    font-weight: 400;
    font-size: 60px;
    letter-spacing: 2.5px;
    line-height: 60px;
		color: #FFFFFF;
	}
	
		.archive .archive-header .page-title,
		.search .archive-header .page-title {
			width: auto;
			padding-left: 0;
			font-size: 1.2em;
			line-height: 1.3em;
			letter-spacing: 0.5px;
			margin-bottom: 10px;
			padding-left: 45px;
		}
			
			.search .archive-header .page-title .s-query {	
			  font-style: italic;
			  display: inline-block;
			  width: 100%;
			}

	
		.archive .archive-header .page-title:before {
			content: "Blog / ";
		}
		
		.archive-header .page-title .imm-arrow {
			position: absolute;
			display: block;
			width: 30px;
			height: 30px;
			border-width: 7.5px 7.5px 0 0;
			border-style: solid;
			border-color: currentColor;
			left: -3.5px;
			top: 6px;
			opacity: .5;
			-webkit-transform: rotate(45deg);
			-moz-transform: rotate(45deg);
			transform: rotate(45deg);
		}
		
			.archive-header .page-title .imm-arrow:nth-child(1) {
				opacity: .8;
				left: 2.5px;
			}
			
			.archive-header.search-header .page-title {
				font-size: 22px;
				letter-spacing: 0.25px;
			}
	
	.archive-header img {
		height: 50px;
    width: auto;
    position: absolute;
    bottom: 5px;
    left: 15px;
		margin: auto;
	}
	
	.archive .archive-header .archive-description { 
		color: #FFFFFF;
		text-align: center;
	}
	
	
.archive-content {
	width: 100%;
  margin-left: 0;
  padding: 15px;
  opacity: 0;
  -webkit-transform: translateY(300px);
	-moz-transform: translateY(300px);
	transform: translateY(300px);
  -webkit-transition: all .5s ease-in .3s;
	-moz-transition: all .5s ease-in .3s;
	transition: all .5s ease-in .3s;
}

	.loaded .archive-content {
		opacity: 1;
		-webkit-transform: translateY(0);
		-moz-transform: translateY(0);
		transform: translateY(0);
	}

	.archive-content #post-container {	
		display: flex;
		width: 100%;
		flex-wrap: wrap;
		align-items: stretch;
		justify-content: space-evenly;
	}

		.archive-content article {
		  width: 100%;
		  padding: 15px;
		  margin-bottom: 0;
			-webkit-transition: all 1s ease-out .5s;
			-moz-transition: all 1s ease-out .5s;
			transition: all 1s ease-out .5s;
		}
		
		.archive-content article:nth-child(5n+2),
		.loaded .archive-content article.added.animate:nth-child(5n+1) { 
			-webkit-transform: translateY(100%);
			-moz-transform: translateY(100%);
			transform: translateY(100%);
		}
		.archive-content article:nth-child(5n+3),
		.loaded .archive-content article.added.animate:nth-child(5n+2) { 
			-webkit-transform: translateY(200%);
			-moz-transform: translateY(200%);
			transform: translateY(200%);
		}
		.archive-content article:nth-child(5n+4),
		.loaded .archive-content article.added.animate:nth-child(5n+3) { 
			-webkit-transform: translateY(300%);
			-moz-transform: translateY(300%);
			transform: translateY(300%);
		}
		.archive-content article:nth-child(5n+5),
		.loaded .archive-content article.added.animate:nth-child(5n+4) { 
			-webkit-transform: translateY(400%);
			-moz-transform: translateY(400%);
			transform:  translateY(400%);
		}
		
		.loaded .archive-content article.added.animate:nth-child(5n+5) { 
			-webkit-transform: translateY(500%);
			-moz-transform: translateY(500%);
			transform:  translateY(500%);
		}
		
			.loaded .archive-content article.added.animate { opacity: 0; }
			
			.loaded .archive-content article.added { 
				-webkit-transition-duration: .5s;
				-moz-transition-duration: .5s;
				transition-duration: .5s;
			}
			
			.loaded .archive-content article { 
				opacity: 1;
				-webkit-transform: translateY(0);
				-moz-transform: translateY(0);
				transform: translateY(0);
				-webkit-transition-delay: unset;
				-moz-transition-delay: unset;
				transition-delay: unset;		
			}
		
			.archive-content article .article-wrapper {
				padding: 10px 10px 50px 10px;
				height: 100%;
				-webkit-transition: all .3s linear;
				-moz-transition: all .3s linear;
				transition: all .3s linear;
			}
			
				.archive-content article .article-wrapper:hover a { color: #FFF; }
				.archive-content article .article-wrapper:hover a:hover { color: #383838; }
				
				.archive-content article:nth-child(5n + 1) .article-wrapper:hover { background-color: rgba(238, 119, 54, .75); }
				.archive-content article:nth-child(5n + 2) .article-wrapper:hover { background-color: rgba(231, 177, 37, .75); }
				.archive-content article:nth-child(5n + 3) .article-wrapper:hover	{ background-color: rgba(78, 121, 159, .75); }
				.archive-content article:nth-child(5n + 4) .article-wrapper:hover	{ background-color: rgba(79, 171, 132, .75); }
				.archive-content article:nth-child(5n + 5) .article-wrapper:hover	{ background-color: rgba(202, 46,  75, .75); }

			.archive-content article .thumbnail {
				position: relative;
				display: block;
				width: 100%;
				height: 0;
				padding-top: 75%;
				margin-bottom: 10px;
				overflow: hidden;
			}
				
				.archive-content article .thumbnail img {
					position: absolute;	
					top: 50%;
					left: 50%;
					-webkit-transform: translate(-50%, -50%);
					-moz-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
					-webkit-transition: all .3s ease-out;
					-moz-transition: all .3s ease-out;
					transition: all .3s ease-out;
				}
				
				.archive-content article .thumbnail:hover img {
					-webkit-transform: scale(1.25) rotate(2deg) translate(-39%, -39%);
					-moz-transform: scale(1.25) rotate(2deg) translate(-39%, -39%);
					transform: scale(1.25) rotate(2deg) translate(-39%, -39%);
				}
			
			.archive-content article .entry-header .entry-meta .posted-on i {
				font-size: 24px;
				margin-right: 2px;
			}
			
			.archive-content article .entry-header .entry-meta .posted-on .entry-date {
				display: inline-block;
				bottom: 2px;
				position: relative;
			}
			
			.archive-content article .entry-header .entry-meta .edit-link { 
				float: right; 
				font-size: 24px;
			}
			
			.archive-content article .entry-header .entry-title {
				margin-top: 10px;
				margin-bottom: 10px;
				font-family: "Myriad Pro", sans-serif;
				font-weight: 400;
			}
			
			.archive-content article .entry-content {
				margin: 5px 0;
			}
			
				.archive-content article .entry-content p { margin: 0; }
				.archive-content article .entry-content p.byline { margin-top: 5px; }
				
				.archive-content article .readmore {
					position: absolute;
					bottom: 0;
					left: 0;
					width: 100%;
				}
				
				.archive-content article a.readmore-btn {
					position: relative;
					display: inline-block;
					padding: 5px 25px 5px 10px;
					margin: 15px 0 15px 0;
					-webkit-transition: all .3s linear;
					-moz-transition: all .3s linear;
					transition: all .3s linear;
				}
				
					.archive-content article a.readmore-btn:hover {
						-webkit-transform: scale(1.1);
						-moz-transform: scale(1.1);
						transform: scale(1.1);
					}
				
					.archive-content article a.readmore-btn:before,
					.archive-content article a.readmore-btn:after {
						content: " ";
						display: block;
						position: absolute;
						height: 15px;
						width: 15px;
						top: 6px;
						right: 5px;
						opacity: .8;
						border-width: 0 5px 5px 0;
						border-style: solid;
						border-color: currentColor;
						-webkit-transform: rotate(-45deg);
						-moz-transform: rotate(-45deg);
						transform: rotate(-45deg);
					}
					
					.archive-content article a.readmore-btn:before {
						right: 9px;
						opacity: .5;
					}
				
.loadmore {
  width: 100%;
  text-align: center;
  padding: 30px 0 30px 0;
  background-size: 70px;
}

	.loadmore.loading .loadmore-btn {
		visibility: hidden;
	}

	.loadmore .loadmore-btn {
    text-align: center;
    padding: 12px 15px 10px 15px;
    border: 1px solid currentColor;
    margin: 40px 0;
    border-radius: 3px;
	}

/*** TABLET ***/
@media only screen and (min-width: 768px) {	
	.archive-content article {
		  width: 50%;
	}
}

/*** LAPTOP ***/
@media only screen and (min-width: 992px) {
	body:not(.archive):not(.search) .archive-header, body:not(.archive):not(.search) .condensed .archive-header {
		width: 16.666667%;
		top: 0;
		height: 100%;
		padding-top: 0px;
		z-index: 0;
	}
	
		.archive .archive-header, 
		.search .archive-header {
			flex-flow: row;
		}
	
		body:not(.archive):not(.search) .archive-header .page-title {
			position: absolute;
		  top: 25%;
		  top: calc(25% - 30px);
      text-align: center;
      padding-left: 0;
		}
		
		.archive-header img {
			width: 62.491338%;
			height: auto;
			position: relative;
			bottom: unset;
			left: unset;
		}
		
		.archive .archive-header .archive-description {
			text-align: right;
		}
	
	body:not(.archive):not(.search) .archive-content {
		width: 83.333333%;
		margin-left: 16.666667%;
	}
	
	.archive-content article {
		  width: 33.3333333333%;
	}
}

/*** WIDE LAPTOPS ***/
@media only screen and (min-width: 1100px) {
	.archive-content article {
			width: 25%;
	}
}

/*** DESKTOP ***/
@media only screen and (min-width: 1300px) {
	.archive-header, .condensed .archive-header {
		width: 16.666667%;
		top: 0;
		height: 100%;
		padding-top: 0px;
		z-index: 0;
	}
	
	.archive .archive-header,
	.search .archive-header {
		position: fixed;
		padding: 40px 5px;
    flex-wrap: wrap;
    flex-flow: column;
		justify-content: center;
    height: 100%;
    margin-top: 0;
	}
	
		.archive .archive-header .page-title,
		.search .archive-header .page-title {
			font-size: 1.2em;
		  line-height: 1.3em;
		  position: relative;
		  letter-spacing: 0.5px;
		  top: unset;
		  text-align: right;
		  margin-bottom: .25em;
		  padding-left: 0;
		}
		
		.search .archive-header .page-title {
			font-size: 1.2em;
			line-height: 1.3em;
			position: relative;
			top: -15%;
			text-align: right;
			margin-bottom: .25em;
			padding-left: 35px;
		}
				
				.archive .archive-header .page-title span.vcard:before {
					content: " ";
					display: block;
				}
				
				.archive .archive-header .page-title .imm-arrow,
				.search .archive-header .page-title .imm-arrow {
					position: absolute;
					display: block;
					width: 30px;
					height: 30px;
					border-width: 7.5px 7.5px 0 0;
					border-style: solid;
					border-color: currentColor;
					left: -3.5px;
					top: 8px;
					opacity: .5;
					-webkit-transform: rotate(45deg);
					-moz-transform: rotate(45deg);
					transform: rotate(45deg);
				}
				
					.archive .archive-header .page-title .imm-arrow:nth-child(1),
					.search .archive-header .page-title .imm-arrow:nth-child(1) {
						opacity: .8;
						left: -10.5px;					
					}
		
		.archive .archive-header .archive-description {
			color: #FFFFFF;
	    text-align: right;
		}
		
	.archive-content {
		width: 83.333333%;
		margin-left: 16.666667%;
	}

		.archive-content article {
				width: 20%;
		}
}

/*** WIDE DESKTOP ***/
@media only screen and (min-width: 1400px) {
	.archive .archive-header, 
	.search .archive-header {
		padding: 40px 15px;
	}
}
/*** END - ARCHIVIO POST ***/

/*** ARTICOLO ***/
img.wp-smiley, img.emoji {
  height: 1.4em !important;
  width: auto !important;
  top: 4px !important;
  position: relative;
}


.single #content {
	background-color: #FFFFFF;
	background-image: url(../img/arrows-bg.png);
	background-repeat: repeat;
	background-position: center;
}

	.single #primary {
		padding: 15px 0;
		display: flex;
		flex-wrap: wrap;
	}
	
		.single #primary > * {
			width: 100%;
			/*opacity: 0;
			-webkit-transform: translate(0, 300px);
			-moz-transform: translate(0, 300px);
			transform: translate(0, 300px);
			-webkit-transition: all .5s ease-out;
			-moz-transition: all .5s ease-out;
			transition: all .5s ease-out;*/
		}
			
			/*.loaded.single #primary > * {
				opacity: 1;
				-webkit-transform:translate(0, 0);
				-moz-transform: translate(0, 0);
				transform: translate(0, 0);
			}*/
		
		.single article {
			background-color: #FFFFFF;
			box-shadow: 2px 2px 4px rgba(66, 66, 66, .25), -2px -2px 4px rgba(66, 66, 66, .25), 2px -2px 4px  rgba(66, 66, 66, .25), -2px 2px 4px rgba(66, 66, 66, .25);
		}
		
			.single article .thumbnail {
				line-height: 0;
			}
		
				.single article .thumbnail img {
					width: 100%;
					height: auto;
				} 
			
			.single article .content-wrap {
				padding: 15px;
			}
			
			.single article header {
				position: relative;
			}
			
				.single article .entry-meta > * {
					display: block;
					margin-bottom: 7.5px;
					padding-left: 25px;
					position: relative;
					line-height: 1.2em;
				}
				
					.single article .entry-meta > * > i {
						position: absolute;
						left: 0;
						top: 0;
					}
					
			.single article .entry-title {
				margin: 15px 0 7.5px 0;
				font-family: "Myriad Pro", sans-serif;
				font-weight: 400;
				font-size: 26px;
			}
			
				.single article .content-wrap.orange .entry-title { color: #ee7736; }
				.single article .content-wrap.yellow .entry-title { color: #e7b125; }
				.single article .content-wrap.blue .entry-title	 	{ color: #4e799f; }
				.single article .content-wrap.green .entry-title  { color: #4fab84; }
				.single article .content-wrap.red .entry-title		{ color: #ca2e4b; }
				
			.single article header .tag-links {
				display: block;
				margin-bottom: 7.5px;
				padding-left: 25px;
				position: relative;
				line-height: 1.2em;
			}
			
			.single article header .tag-links i {
				position: absolute;
				left: 0;
				top: 0;
			}
		
			.single article header .edit-link {
				position: absolute;
		    top: -5px;
				right: -5px;
				font-size: 24px;
			}
			
			.single article .entry-content {
				margin-top: 0;
			}
			
				.single article .entry-content h1 { font-size: 26px; }
				.single article .entry-content h2 { font-size: 22px; }
			
				.single article .entry-content p {
					line-height: 1.7em;
				}
				
				.single article .entry-content ul {
					margin: 0;
		  		padding: 0 0 0 20px;
				}
			
					.single article .entry-content ul li {
						line-height: 1.7em;
					}
					
			.single article .readingtime_box {
				margin-top: 15px;
				margin-bottom: 30px;
			}
			
			.single article .readingtime_box p {
				margin: 0;
				text-align: center;
				font-style: italic;
				line-height: 1;
			}
			
			.single article .readingtime_box .readingtime_border {
				width: 100%;
				height: 15px;
				margin: 5px 0 15px;
				border: 1px solid #424242;				
			}
			
				.single article .readingtime_box .readingtime_border .readingtime_bar {
					background-color: rgba(66, 66, 66, 0.5);
					height: 100%;
					width: 0;
					-webkit-transition: width linear;
					-moz-transition: width linear;
					transition: width linear;
				}
				
					.single article .content-wrap.orange .readingtime_box .readingtime_border .readingtime_bar { background-color: rgba(238, 119, 54, .5); }
					.single article .content-wrap.yellow .readingtime_box .readingtime_border .readingtime_bar { background-color: rgba(231, 177, 37, .5); }
					.single article .content-wrap.blue .readingtime_box .readingtime_border .readingtime_bar	 { background-color: rgba(78, 121, 159, .5); }
					.single article .content-wrap.green .readingtime_box .readingtime_border .readingtime_bar  { background-color: rgba(79, 171, 132, .5); }
					.single article .content-wrap.red .readingtime_box .readingtime_border .readingtime_bar		 { background-color: rgba(202, 46,  75, .5); }
					
					.loaded.single article .readingtime_box .readingtime_border .readingtime_bar { 
						width: 100%;
					}	
					
					
					.related-posts {
						margin: 50px 0 15px 0;
					}	
					
						.single article .entry-content .related-posts > .rp-title {
							position: relative;
							margin: 0;
							padding-left: 15px;
							font-family: "Myriad Pro SB", sans-serif;
							font-size: 24px;
							text-transform: uppercase;
							color: #424242;
							line-height: 1.3em;
						}

							.single article .content-wrap.orange .related-posts > .rp-title { border-color: #ee7736; }
							.single article .content-wrap.yellow .related-posts > .rp-title { border-color: #e7b125; }
							.single article .content-wrap.blue .related-posts > .rp-title		{ border-color: #4e799f; }
							.single article .content-wrap.green .related-posts > .rp-title  { border-color: #4fab84; }
							.single article .content-wrap.red .related-posts > .rp-title		{ border-color: #ca2e4b; }

								.related-posts > .rp-title:before, .related-posts > .rp-title:after {
									content: " ";
									display: block;
									height: 20px;
									width: 20px;
									position: absolute;
									border-width: 5px 5px 0 0;
									border-style: solid;
									border-color: inherit;
									-webkit-transform: rotate(45deg);
									-moz-transform: rotate(45deg);
									transform: rotate(45deg);
									top: 3px;
									left: -15px;
									opacity: .75;
								}

								.related-posts > .rp-title:after {
									left: -11px;
									opacity: .5;
								}
							
							.single article .entry-content .related-posts .rp-list {
								padding: 0;
								display: flex;
								align-items: stretch;
								flex-wrap: wrap;
								list-style: none;
							}
							
								.single article .entry-content .related-posts .rp-list .rp-item { width: 100%; }
								
									.single article .entry-content .related-posts .rp-list .rp-item a {
										display: flex;
										flex-flow: column;
										justify-content: space-between;
										height: 100%;
										padding: 15px;
										-webkit-transition: all .3s linear;
										-moz-transition: all .3s linear;
										transition: all .3s linear;
									}
								
									.single article .entry-content .related-posts .rp-list .rp-item:nth-child(6n + 1) a:hover { background-color: rgba(66, 66, 66, .75); }
									.single article .entry-content .related-posts .rp-list .rp-item:nth-child(6n + 2) a:hover { background-color: rgba(238, 119, 54, .75); }
									.single article .entry-content .related-posts .rp-list .rp-item:nth-child(6n + 3) a:hover { background-color: rgba(231, 177, 37, .75); }
									.single article .entry-content .related-posts .rp-list .rp-item:nth-child(6n + 4) a:hover	{ background-color: rgba(78, 121, 159, .75); }
									.single article .entry-content .related-posts .rp-list .rp-item:nth-child(6n + 5) a:hover	{ background-color: rgba(79, 171, 132, .75); }
									.single article .entry-content .related-posts .rp-list .rp-item:nth-child(6n + 6) a:hover	{ background-color: rgba(202, 46,  75, .75); }
									
									.single article .entry-content .related-posts .rp-list .rp-item a .rp-content { width: 100%; }
									
									.single article .entry-content .related-posts .rp-list .rp-item a .rp-thumb {
										position: relative;
										display: block;
										width: 100%;
										height: 0;
										padding-top: 75%;
										margin-bottom: 10px;
										overflow: hidden;
									}
									
										.single article .entry-content .related-posts .rp-list .rp-item a .rp-thumb img {
											position: absolute;
											top: 50%;
											left: 50%;
											-webkit-transform: translate(-50%, -50%);
											-moz-transform: translate(-50%, -50%);
											transform: translate(-50%, -50%);
											-webkit-transition: all .3s ease-out;
											-moz-transition: all .3s ease-out;
											transition: all .3s ease-out;
										}
										
										.single article .entry-content .related-posts .rp-list .rp-item a:hover .rp-thumb img {
											-webkit-transform: scale(1.25) rotate(2deg) translate(-39%, -39%);
											-moz-transform: scale(1.25) rotate(2deg) translate(-39%, -39%);
											transform: scale(1.25) rotate(2deg) translate(-39%, -39%);
										}
										
									.single article .entry-content .related-posts .rp-list .rp-item a .rp-title {
										position: relative;
										display: block;
										width: 100%;
										font-size: 20px;
										line-height: 1.3em;
										color: #424242;
										-webkit-transition: all .3s linear;
										-moz-transition: all .3s linear;
										transition: all .3s linear;
									}
									
										.single article .entry-content .related-posts .rp-list .rp-item a:hover .rp-title { color: #FFFFFF;	}
										
									 .single article .entry-content .related-posts .rp-list .rp-item a .readmore {
										display: block;
										width: 100%;
										margin: 5px 0;
										-webkit-transition: all .3s linear;
										-moz-transition: all .3s linear;
										transition: all .3s linear;
									}
									
										.single article .entry-content .related-posts .rp-list .rp-item a:hover .readmore { color: #FFFFFF; }
										
										.single article .entry-content .related-posts .rp-list .rp-item a .readmore .readmore-btn {
											position: relative;
											display: inline-block;
											color: #949494;
											-webkit-transition: all .3s linear;
											-moz-transition: all .3s linear;
											transition: all .3s linear;
										}
										
											.single article .entry-content .related-posts .rp-list .rp-item a:hover .readmore .readmore-btn {
												color: #FFFFFF;
												-webkit-transform: scale(1.1);
												-moz-transform: scale(1.1);
												transform: scale(1.1);
											}
										
											.single article .entry-content .related-posts .rp-list .rp-item a .readmore .readmore-btn:before,
											.single article .entry-content .related-posts .rp-list .rp-item a .readmore .readmore-btn:after {
												content: " ";
												display: block;
												height: 15px;
												width: 15px;
												position: absolute;
												border-width: 4px 4px 0 0;
												border-style: solid;
												border-color: inherit;
												-webkit-transform: rotate(45deg);
												-moz-transform: rotate(45deg);
												transform: rotate(45deg);
												top: 5px;
												right: -15px;
												opacity: .75;
											}
												
											.single article .entry-content .related-posts .rp-list .rp-item a .readmore .readmore-btn:after {
												right: -19px;
												opacity: .5;
											}
											
/*** SIDEBAR ***/				
aside .widget {
  background-color: #FFF;
  margin: 0 0 35px 0;
  padding: 15px 15px 22.5px 15px;
  box-shadow: 2px 2px 4px currentColor, -2px -2px 4px currentColor, 2px -2px 4px currentColor, -2px 2px 4px currentColor;
}

	aside .widget:nth-child(5n + 1) { color: rgba(238, 119, 54, .25); }
	aside .widget:nth-child(5n + 2) { color: rgba(231, 177, 37, .25); }
	aside .widget:nth-child(5n + 3) { color: rgba(78, 121, 159, .25); }
	aside .widget:nth-child(5n + 4) { color: rgba(79, 171, 132, .25); }
	aside .widget:nth-child(5n + 5) { color: rgba(202, 46,  75, .25); }

		aside .widget .widget-title {
			position: relative;
		  margin: 0 0 15px 0;
		  padding-left: 15px;
		  font-family: "Myriad Pro", sans-serif;
		  font-size: 22px;
		  font-weight: 400;
		  text-transform: uppercase;
		  line-height: 1.3em;
		  color: #424242;
		}
		
			aside .widget:nth-child(5n + 1) .widget-title { border-color: #ee7736; }
			aside .widget:nth-child(5n + 2) .widget-title { border-color: #e7b125; }
			aside .widget:nth-child(5n + 3) .widget-title	{ border-color: #4e799f; }
			aside .widget:nth-child(5n + 4) .widget-title { border-color: #4fab84; }
			aside .widget:nth-child(5n + 5) .widget-title	{ border-color: #ca2e4b; }
		
			aside .widget .widget-title:before, aside .widget .widget-title:after {
				content: " ";
				display: block;
				height: 15px;
				width: 15px;
				position: absolute;
				border-width: 4px 4px 0 0;
				border-style: solid;
				border-color: inherit;
				-webkit-transform: rotate(45deg);
				-moz-transform: rotate(45deg);
				transform: rotate(45deg);
				top: 3.5px;
				left: -12.5px;
				opacity: .75;
			}
			
				aside .widget .widget-title:after {
					left: -8.5px;
 					opacity: .5;
				}
				
			aside .widget.widget_search .searchform {
				margin-top: 22.5px;
			}
			
			aside .widget ul {
				position: relative;
				margin: 0;
				padding: 0 0 0 15px;
				list-style: none;
				line-height: 1.6em;
			}
			
				aside .widget ul li {
					position: relative;
					margin-bottom: .25em;
				}
				
					aside .widget ul li:before {
						content: " ";
						display: inline-block;
						width: 10px;
						height: 10px;
						border-width: 3px 3px 0 0;
						border-style: solid;
						border-color: currentColor;
						-webkit-transform: rotate(45deg);
						-moz-transform: rotate(45deg);
						transform: rotate(45deg);
						position: absolute;
						top: 6px;
						left: -16px;
					}
		
		aside .widget .tagcloud { text-align: center; }
		
		aside .widget .tagcloud a:nth-child(6n + 1):hover { color: #424242; }
		aside .widget .tagcloud a:nth-child(6n + 2):hover { color: #ee7736; }
		aside .widget .tagcloud a:nth-child(6n + 3):hover { color: #e7b125; }
		aside .widget .tagcloud a:nth-child(6n + 4):hover { color: #4e799f; }
		aside .widget .tagcloud a:nth-child(6n + 5):hover { color: #4fab84; }
		aside .widget .tagcloud a:nth-child(6n + 6):hover { color: #ca2e4b; }
		


/*** END - SIDEBAR ***/

					
/*** TABLET ***/
@media only screen and (min-width: 768px) {
	.flex-reverse-md {
		display: flex;
		flex-direction: column-reverse;
	}
	
	.single article .entry-meta > * {
		display: inline-block;
		padding-left: 0;
	}
	
		.single article .entry-meta > .byline:before {
			content: " | ";
			font-size: 1.2em;
		}
		
		
		.single article .entry-meta > .cat-links {
			float: right;
			text-align: right;
			max-width: 50%;
		}
	
		.single article .entry-meta > * > i {
			position: relative;
			top: unset;
			left: unset;
		}
		
		.logged-in.single article .entry-title {
			padding-right: 35px;
		}
		
		.logged-in.single article header .tag-links {
			padding-right: 35px;
		}
		
		.logged-in.single article header .edit-link {
	    top: auto;
	    bottom: 0;
	    right: 0;
	  }
	  
	  .single article .readingtime_box {
	  	margin-top: 0;
	  }
	  
	  .single article .readingtime_box p {
	  	float: left;
	  	margin-top: 5px;
	  	text-align: left;
	  }
	  
	  .single article .readingtime_box .readingtime_border {
	  	float: right;
	  	margin-bottom: 5px;
	  	width: 300px;
	  }
}

/*** LAPTOP ***/
@media only screen and (min-width: 992px) {
	.single #primary {
		padding: 35px 0;
	}
	
	.single #primary #main { 
		width: 66.666667%; 
		padding-right: 15px;
	}
	
	.single #primary aside { 
		width: 33.333333%;
		padding-left: 15px;
		/*-webkit-transform: translate(100%, 0);
		-moz-transform: translate(100%, 0);
		transform: translate(100%, 0);
		-webkit-transition-delay: .25s;
		-moz-transition-delay: .25s;
		transition-delay: .25s;
		-webkit-transition-duration: 1s;
		-moz-transition-duration: 1s;
		transition-duration: 1s;*/
	}
	
	.single article .entry-content .related-posts .rp-list .rp-item { width: 33.333333%; }
}

/*** DESKTOP ***/
@media only screen and (min-width: 1300px) {
	.single #primary #main { width: 75%; }
	
	.single #primary aside { width: 25%; }
}

/*** WIDE DESKTOP ***/
@media only screen and (min-width: 1400px) {
	
}
/*** END - ARTICOLO ***/

/*** BANNER NEWSLETTER ***/
.newsletter-banner {
    margin: 50px -15px 15px;
    padding: 15px 15px 25px 15px;
    background-color: #424242;
    color: #ffffff;
}
	
	.orange .newsletter-banner { background-color: #ee7736; }
    .yellow .newsletter-banner { background-color: #e7b125; }
    .blue .newsletter-banner { background-color: #4e799f; }
    .green .newsletter-banner { background-color: #4fab84; }
    .red .newsletter-banner { background-color: #ca2e4b; }

    .newsletter-banner .nb-title {
        position: relative;
        margin: 0;
        padding-left: 15px;
        font-family: "Myriad Pro SB", sans-serif;
        font-size: 24px;
        text-transform: uppercase;
        line-height: 1.3em;
        border-color: #fff;
    }

        .newsletter-banner .nb-title:before,
        .newsletter-banner .nb-title:after {
            content: " ";
            display: block;
            height: 20px;
            width: 20px;
            position: absolute;
            border-width: 5px 5px 0 0;
            border-style: solid;
            border-color: inherit;
            -webkit-transform: rotate(
        45deg);
            -moz-transform: rotate(45deg);
            transform: rotate(
        45deg);
            top: 7px;
            left: -15px;
            opacity: .75;
        }

        .newsletter-banner .nb-title:after {
            left: -11px;
            opacity: .5;
        }

.btn-wrapper {
	margin-top: 20px;
}

.btn-wrapper .btn {
    display: inline-block;
    position: relative;
    font-family: "ImmaginiFont",sans-serif;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 28px;
    line-height: 28px;
    opacity: .8;
    -webkit-transition: right .15s linear,left .15s linear,opacity .15s linear;
    -moz-transition: right .15s linear,left .15s linear,opacity .15s linear;
    transition: right .15s linear,left .15s linear,opacity .15s linear;
}

	.btn-wrapper .btn.btn-solid-bg {
		background-color: #ffffff;
		color: #424242;
	    padding: 10px 15px;
	}
	
		.orange .btn-wrapper .btn.btn-solid-bg { color: #ee7736; }
		.yellow .btn-wrapper .btn.btn-solid-bg { color: #e7b125; }
		.blue .btn-wrapper .btn.btn-solid-bg { color: #4e799f; }
		.green .btn-wrapper .btn.btn-solid-bg { color: #4fab84; }
		.red .btn-wrapper .btn.btn-solid-bg { color: #ca2e4b; }

    
    .btn-wrapper .btn:hover {
        opacity: 1;
    }

    .btn-wrapper .btn.btn-alignright {
        right: 0;
        padding-right: 25px;
    }
    	
    	.btn-wrapper .btn.btn-alignright.btn-solid-bg {
		    padding-right: 35px;
		}

        .btn-wrapper .btn.btn-alignright:hover {
            right: -5px;
        }

        .btn-wrapper .btn:before,
        .btn-wrapper .btn:after {
            content: " ";
            position: absolute;
            display: block;
            top: 5px;
            height: 15px;
            width: 15px;
            border-width: 0 0 5px 5px;
            border-style: solid;
            border-color: currentColor;
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            transform: rotate(45deg)
        }
        
        	 .btn-wrapper .btn.btn-solid-bg:before,.btn-wrapper .btn.btn-solid-bg:after {
        	 	top: 15px;
        	 }

        .btn-wrapper .btn.btn-alignright:before,.btn-wrapper .btn.btn-alignright:after {
            border-width: 5px 5px 0 0;
        }

        .btn-wrapper .btn.btn-alignright:before {
            right: 7px;
            opacity: .75;
        }
        
        	.btn-wrapper .btn.btn-solid-bg.btn-alignright:before {
		        right: 10px;
		    }

	    .btn-wrapper .btn.btn-alignright:after {
	        right: 11px;
	    }

		    .btn-wrapper .btn.btn-solid-bg.btn-alignright:after {
		        right: 14px;
		    }
        
        
/*** END - BANNER NEWSLETTER ***/
