.sidebar {
	.container-wrapper,
	.tie-weather-widget{
		margin-bottom: 30px;

		@include breakpoint(max_min_md){
			margin-bottom: 15px;
		}

		body:not(.has-builder) &:last-child{
			margin-bottom: 0;
		}
	}

	@include breakpoint(max_min_md){
		.has-sidebar &{
			margin-top: 15px;
		}

		.magazine2.has-sidebar &{
			margin-top: 40px;
		}
	}
}

// Widgets Generals Style --------------------------------------
.widget-title {
	position: relative;

	.the-subtitle {
		@include font-size(15px);
		min-height: 15px;
	}
}

.widget-title-icon {
	position: absolute;
	right: 0;
	top: 1px;
	color: #b9bec3;
	font-size: 15px;

	&:before {
		content: "\f08d";
	}
}

.post-widget-body {
	padding-left: 125px;

	.posts-inverted &:not(.no-small-thumbs){
		padding-left: 0;
		padding-right: 125px;
	}

	.post-title {
		@include font-size(14px);
		line-height: 1.4;
		margin-bottom: 5px;
	}
}

.post-widget-thumbnail {
	float: left;
	margin-right: 15px;
	position: relative;

	.posts-inverted &{
		float: right;
		margin-left: 15px;
		margin-right: 0;
	}
}

.post-widget-thumbnail,
.review-thumbnail{ // Taqyeem plugin default widget
	img.tie-small-image{
		width: 110px;
	}
	.tie-small-image img{
		width: 110px;
	}
}

.widget {
	li {
		padding: 6px 0;

		&:first-child {
			padding-top: 0;
		}

		&:last-child {
			padding-bottom: 0;
			border-bottom: 0;
		}

		&:after {
			clear: both;
			display: table;
			content: "";
		}
	}

	.post-meta {
		margin: 2px 0 0;
		font-size: 11px;
		line-height: 17px;
	}
}


.widget-content-only {
	&:last-child{
		margin-bottom: 0;
	}

	&.tie-slider-widget {
		padding: 0;
		border: 0;
	}

	.widget-title {
		display: none;
	}
}

.widget-content-only,
.section-item .widget-content-only:last-child,
.side-aside .widget-content-only:last-child{
	margin-bottom: 30px;
}

// Posts Widgets
.widget_recent_entries,
.categort-posts,
.authors-posts,
.posts-list,
.widget_pages,
.widget_text,
.text-html,
.tie-slider-widget{
	.widget-title-icon:before {
		content: "\f0f6";
	}
}

.widget-posts-list-container{
	position: relative;

	&.is-loading{
		opacity: 0.5;
		transition: opacity 0.3s;
	}
}

.widget-pagination-wrapper{
	clear: both;
	overflow: hidden;
	margin-top: 15px !important;

	.slider-arrow-nav{
		display: flex;
		float: none;
		margin: 0;
		justify-content: center;

		li{
			margin: 0;
			padding: 0;
		}

		a{
			width: 30px;
			height: 30px;
			line-height: 28px;
		}
	}
	.widget-pagination{
		margin-top: 0 !important;
	}
}

// Posts List Layouts ------------------------------------------
.posts-list-big-first .posts-list-items li:first-child,
.posts-list-bigs .posts-list-items li,
.posts-list-half-posts .posts-list-items li{
	padding-bottom: 20px;
}

.posts-list-big-first li:first-child,
.posts-list-bigs li,
.posts-list-half-posts li{
	.post-widget-thumbnail{
		width: 100%;
		margin-right: 0;
		margin-bottom: 10px;

		a{
			min-height: 40px; // Fix post-cat-wrap issue if the post doesn't have a featured image
		}
	}

	.post-widget-body{
		padding-left: 0;
	}
}

.posts-list-big-first li:first-child,
.posts-list-bigs li{
	.post-title{
		@include font-size(18px);
	}
}

.posts-list-bigs li:last-child{
	padding-bottom: 0;
}

// Half Posts: Layout 5
.posts-list-half-posts{
	.posts-list-items{
		overflow: hidden;
		margin-bottom: -20px;
	}

	li{
		width: 47%;
		float: left;

		@include breakpoint_min_max($screen-phone,$screen-desktop){
			width: 48%;
		}

		&:nth-child(2){
			padding-top: 0;
		}

		&:nth-child(2n){
			float: right;
		}

		&:nth-child(2n + 1){
			clear: both;
		}

		.post-title {
			@include font-size(14px);
			line-height: 1.4;
		}
	}

	.post-meta{
		overflow: inherit;
	}
}

// Post Counter: Layout #7
.posts-list-counter{
	counter-reset: post-widget-counter;

	li.widget-post-list{
		&:before{
			display: block;
			width: 30px;
			height: 30px;
			content: counter(post-widget-counter, decimal);
			counter-increment: post-widget-counter;
			position: absolute;
			z-index: 2;
			top: 0;
			left: -15px;
			text-align: center;
			font-size: 14px;
			font-weight: 600;
			line-height: 26px;
			border: 2px solid #ffffff;
			background: $brand-color;
			color: $bright;
			border-radius: 100%;

			@include breakpoint(max_min_md){
				.magazine2 &{
					left: -10px;
				}
			}

			.dark-skin &{
				border-color: $dark-bg;
			}

			.site-footer &,
			.side-aside.dark-skin &{
				border-color: $darker-bg;
			}
		}

		&:nth-child(1):before{
			top: -10px;
			transform: scale(1.35,1.35);
		}

		&:nth-child(2):before{
			transform: scale(1.25,1.25);
		}

		&:nth-child(3):before{
			transform: scale(1.15,1.15);
		}

		&:nth-child(4):before{
			transform: scale(1.1,1.1);
		}

		.no-small-thumbs{
			padding-left: 30px !important;
		}
	}
}

@include breakpoint(max_min_md){
	.posts-list-big-first,
	.posts-list-bigs{
		.posts-list-items{
			overflow: hidden;
		}

		li{
			width: 48%;
			float: left;

			&:nth-child(2){
				padding-top: 0;
			}

			&:nth-child(2n){
				float: right;
			}

			&:nth-child(2n + 1){
				clear: both;
			}
		}
	}

	.posts-list-big-first{
		li{
			&:nth-child(2),
			&:nth-child(3){
				float: right;
				clear: none;
			}

			&:nth-child( n + 5){
				display: none;
			}
		}
	}

	.posts-list-half-posts li .post-title{
		font-size: 20px;
	}
}

@include breakpoint_max(670px){
	.posts-list-big-first{
		li{
			width: 100%;

			&:nth-child(2){
				padding-top: 12px;
			}

			&:nth-child( n + 5){
				display: block;
			}
		}
	}

	.posts-list-bigs{
		li{
			width: 100%;

			&:not(:last-child){
				padding-bottom: 12px;
			}
		}
	}

	.posts-list-half-posts li .post-title{
		font-size: 14px;
	}
}

// Timeline : Layout #2
.timeline-widget {
	.widget-title-icon:before {
		content: "\f073";
	}

	ul {
		position: relative;
		padding-left: 15px;

		&:before {
			content: "";
			position: absolute;
			left: 0;
			top: 0;
			width: 2px;
			height: 100%;
			background: $base-border-opic-color;
		}
	}

	li {
		border-bottom: 0;
		padding-bottom: 10px;

		.date {
			@include font-size(10px);
			display: block;
			position: relative;
			color: $post-meta-color;
			line-height: 12px;
			margin-bottom: 5px;

			&:before {
				content: "";
				width: 12px;
				height: 12px;
				background: $base-border-opic-color;
				border: 3px solid rgba(255,255,255,0.8);
				position: absolute;
				left: -20px;
				display: inline-block;
				vertical-align: middle;
				border-radius: 50%;
				transform: translateZ(0);
				backface-visibility: hidden;
				@include font-smoothing();
				transition-duration: 0.3s;
			}
		}

		h3 {
			@include font-size(14px);
			line-height: 1.4;
		}

		a:hover .date:before {
			background: $brand-color;
			transform: scale(1.2);
		}
	}

}

// Posts in Picture: Layout #6
.posts-pictures-widget {
	.tie-row {
		margin: 0 -4px -8px;

		> div:nth-child(3n + 1){
			clear: both;
		}
	}

	.tie-col-xs-4 {
		padding: 0 4px 8px;
	}
}

// Latest Items: woocommerce-----------
// .latest-items-widget {
// 	.widget-title-icon:before {
// 		content: "\f07a";
// 	}
// 	li {
// 		clear: both;
// 		overflow: hidden;
// 	}
// 	.item-img {
// 		width: 60px;
// 		height: 60px;
// 		float: left;
// 		margin-bottom: 5px;
// 		background: #eff2f7;
// 	}
// 	.price {
// 		margin-top: 10px;
// 		display: block;
// 	}
// }


// Post Authoer (displayed at single only) ---------------------
// Will be removed soon
.widget_author {
	.widget-title-icon:before {
		content: "\f007";
	}

	.multiple-authors{

		.about-author{
			border-width: 0;
			border-bottom-width: 1px;
			padding: 0 0 10px;
			margin-bottom: 20px;

			&:last-child{
				margin-bottom: 0;
				padding: 0;
				border-bottom-width: 0;
			}
		}
	}

	.single-author{

		.about-author{
			padding: 0;
			border: 0;
			margin: 0;
		}

		.author-name{
			display: none;
		}
	}

	@include breakpoint(md){
		div.author-avatar {
			float: none;

			a {
				display: block;
				width: 90px;
				margin: 0 auto 10px;
			}
		}

		.author-info {
			padding: 0 !important;
		}
	}
}

// About Me-----------------------------------------------------
.aboutme-widget {
	.widget-title-icon:before {
		content: "\f007";
	}

	.about-content-wrapper{
		overflow: hidden;

		.fullwidth-area &{
			padding: 0 15%;
		}

		@include breakpoint(max_min_md){
			text-align: center;

			.aboutme-widget-content{
				max-width: 500px;
				margin: 0 auto;
			}

			.social-icons{
				li.social-icons-item{
					float: none;
					display: inline-block;
				}
			}
		}
	}

	.aboutme-widget-content {
		overflow: hidden;
		min-width: 140px;

		h3 {
			margin-bottom: 10px;
		}

		span.tie-social-icon {
			margin-right: 5px;
			@include font-size(16px);
			line-height: 25px;
		}
	}

	.about-author-img {
		float: left;
		margin: 7px 20px 15px 0;
		width: auto;
		height: auto;

		&.lazy-img[data-src]{
			width: 100px;
			height: 100px;
		}

		@include breakpoint(max_min_md){
			float: none;
			margin: 7px auto 15px;
		}
	}

	.social-icons {
		margin: 15px 0 0;

		&:before{
			display: table;
			content: "";
			clear: both;
		}
	}

	ul.about-info {
		margin-top: 10px;
	}

	@include breakpoint(md){
		.is-centered{
			&.about-content-wrapper{
				text-align: center;
			}

			img.about-author-img{
				float: none;
				margin: 0 auto 10px;
			}

			.social-icons{
				li.social-icons-item{
					float: none;
					display: inline-block;
				}
			}
		}
	}

	.image-is-circle{
		.about-author-img {
			border-radius: 100%;
		}
	}

	.tie-padding{
		margin-bottom: 0;
	}
}


// Search Input-------------------------------------------------
.widget_search,
.widget_display_search,
.widget_product_search{
	.widget-title-icon:before {
		content: "\f002";
	}
}

form {
	&.woocommerce-product-search {
		overflow: hidden;
	}

	&.search-form {
		overflow: auto;
		position: relative;
		width: 100%;
		margin-top: 10px;
	}
}

.search-field {
	float: left;
	width: 73%;
	padding: 8px 15px;
}

.woocommerce-product-search [type="submit"],
.search-submit[type="submit"] {
	float: right;
	padding: 10px 5px;
	margin-left: 2%;
	width: 25%;
}

// Text Widget -------------------------------------------------
.widget_text,
.text-html{
	p{
		line-height: 24px;
	}

	p,
	ul,
	ol{
		&:not(:last-child){
			margin-bottom: 20px;
		}
	}

	ol li{
		list-style: inside decimal;
	}

	ul li{
		list-style: inside disc;
	}

	.fa{
		width: 16px;
		text-align: center;
	}
}

.widget_text .textwidget{
	overflow: hidden;
}


// Login Area---------------------------------------------------
.login-widget,
.bbp_widget_login,
.widget_bp_core_login_widget{
	.widget-title-icon:before {
		content: "\f023";
	}
}

.login-widget {
	form {
		input[type="text"],
		input[type="password"] {
			width: 100%;
			float: none;
			margin-bottom: 15px;
		}
	}

	.pass-container {
		position: relative;
		input[type="password"] {
			padding-right: 70px;
		}
	}

	.forget-text {
		position: absolute;
		right: 10px;
		line-height: 37px;
		top: 0;
		font-size: 12px;

		&:not(:hover){
			color: $base-color;
		}
	}

	.rememberme {
		display: block;
		margin-bottom: 15px;
	}

	.register-link {
		margin: 8px 0 0;
		display: block;
		text-align: center;
	}

	.wp-social-login-widget{
		padding-top: 15px;
	}

	.wp-social-login-provider-list{
		padding: 5px 0 0;
	}

	.is-logged-login {
		.author-avatar {
			text-align: center;
			margin: 0 auto 10px;
		}

		.welcome-text {
			text-align: center;
			margin-bottom: 15px;
		}

		li{
		  list-style: none;
		}
	}
}


// Social Statistics--------------------------------------------
.social-statistics-widget {
	.widget-title-icon:before {
		content: "\f164";
	}

	ul {
		overflow: hidden;
	}

	li {
		float: left;
		width: 50%;
		margin-left: 0;
		padding: 10px 5px 0;
		border-bottom: 0;

		&:last-child{
			margin-bottom: 0;
		}
	}

	.followers-num{
		font-weight: 600;
	}

	.followers-name{
		@include font-size(11px);
	}

	a {
		display: block;
		padding: 10px;
		position: relative;
		overflow: hidden;
		border-radius: $base-border-radius;

		&:hover {
			opacity: 0.8;
		}
	}

	a span{
		&.counter-icon {
			float: left;
			color: #ffffff;
			background-color: $dark-color;
			width: 30px;
			height: 30px;
			line-height: 30px;
			text-align: center;
			@include font-size(18px);
			border-radius: $base-border-radius;
			transition: 0.3s;
		}
	}

	.followers {
		float: left;
		margin-left: 10px;
		line-height: 15px;

		.followers-num,
		.followers-name {
			color: #ffffff;
			display: block;
			transition: 0.3s;
			white-space: nowrap;
			word-wrap: normal; // IE fix
		}

		.followers-name{
			opacity: 0.8;
		}
	}
}

.social-counter-total{
	margin-bottom: 15px;
	font-size: 120%;
	text-align: center;

	ul + &{
		margin-bottom: 0;
		margin-top: 15px
	}

	.tie-icon-heart{
		color: red;
	}
}

// Two Columns
.two-cols{
	margin-left: -5px;
	margin-right: -5px;

	&:not(.fullwidth-stats-icons){
		li:nth-child(2){
			padding-top: 0;
		}
	}

	li{
		&:nth-last-child(-n + 2){
			margin-bottom: 0;
		}

		&:nth-child(2n + 1){
			clear: both;
		}

		@media (min-width: 1050px) {
			&:nth-child(odd):last-child{
	  		width: 100%;
			}
		}
	}
}

.two-cols:not(.transparent-icons):not(.white-bg),
.fullwidth-stats-icons:not(.transparent-icons):not(.white-bg){
	a span.counter-icon{
		background: $dark-color!important;
	}
}

// Social Statistics: fullwidth Statistics Icons
.fullwidth-stats-icons {
	li {
		width: 100%;
		margin-left: 0;
		margin-right: 0;
		padding: 10px 0 0;
		position: relative;


		&:before {
			content: "";
			position: absolute;
			z-index: 1;
			width: 1px;
			height: calc(100% - 10px);
			left: 50px;
			top: 10px;
			background: rgba(255, 255, 255, 0.3);
		}

		&:first-child{
			padding-top: 0;

			&:before{
				height: 100%;
				top: 0;
			}
		}
	}

	.followers {
		margin-left: 30px;

		span {
			float: left;
			line-height: 30px;
			margin-right: 5px;
		}
	}
}

// Social Statistics: Transparent icons
.transparent-icons {
	li a {
		span.counter-icon{
			background-color: transparent;
		}
	}
}

// Social Statistics: White bg Icons
.white-bg {
	.social-icons-item {
		&:before {
			background: $base-border-color;
		}

		a {
			border: $primary-border!important;
			background: transparent!important;

			span.followers span {
				color: $base-color;

				.dark-skin &{
					color: $dark-base-color;
				}
			}
		}
	}
}

// Social Statistics: Two Col,White bg, Circle Icons
.circle-icons{
	.social-icons-item {
		a {
			span {
				&.counter-icon{
					border-radius: 50%;
					width: 35px;
					height: 35px;
					line-height: 35px;
				}
			}
		}
	}

	&.two-cols{
		.social-icons-item {
			a {
				border: 0 !important;
			}
		}
	}
}

// Social Statistics: Three Columns
.three-cols {
	&:not(.three-cols-without-spaces){
		margin-right: -5px;
		margin-left: -5px;
	}

	.social-icons-item {
		width: 33.3333%;
		margin: 0;
		overflow: hidden;

		&:nth-child(-n + 3){
			padding-top: 0;
		}

		&:nth-child(3n + 1){
			clear: both;
		}

		&:nth-last-child(-n + 3){
			margin-bottom: 0;
		}

		a {
			padding: 0;

			span.counter-icon{
				line-height: 60px;
				height: 60px;
				@include font-size(25px);
				width: 100%;
				text-align: center;
				background-color: transparent;
				color: #ffffff;
			}
		}

		.followers {
			background: rgba(255, 255, 255, 0.2);
			margin: 0;
			width: 100%;
			min-height: 58px;
			padding: 10px 0;
			text-align: center;
			line-height: 19px;
		}
	}
}

// Social Statistics: Three Cols Without Spaces
.three-cols-without-spaces{
	.social-icons-item:nth-child(n){
		padding: 0;

		a{
			border-radius: 0;

			span.counter-icon {
				padding-top: 5px;
			}
		}

		.followers{
			background-color: transparent;
			padding-top: 0;
		}

		.followers-num{
			@include font-size(18px);
		}
	}
}

// Circle Social Statistics: Three Columns
.circle-three-cols {
	margin-right: -10px;
	margin-left: -10px;

	.social-icons-item {
		width: calc(100% / 3);
		margin-right: 0;
		height: 125px;
		overflow: hidden;
		padding: 0;

		&:before {
			background: $base-border-color;
		}

		a {
			position: relative;
			background: transparent!important;

			.followers-num,
			.followers-name{
				color: $base-color;

				.dark-skin &{
					color: $dark-base-color;
				}
			}

			span {
				position: relative;
				z-index: 2;

				&.counter-icon{
					color: #ffffff !important;
					width: 70px;
					height: 70px;
					line-height: 70px;
					font-size: 25px;
					position: relative;
					left: 50%;
					margin-left: -35px;
				}
			}
		}

		.followers{
			margin: 10px 0 0 0;
			width: 100%;
			text-align: center;
		}

		.followers-num{
			@include font-size(15px);
		}
	}
}

//Social Statistics: Colored squered four cols
.squared-four-cols{
	margin-right: -10px;
	margin-left: -10px;

	li{
		width: 25%;
		margin: 0;

		&:nth-child(-n + 4){
			padding-top : 0;
		}

		&:nth-child(4n + 1){
			clear: both;
		}

		&:nth-child(n){
			a{
				border: 0!important;
				padding-top: 0;

				.counter-icon {
					position: relative;
					left: 50%;
					width: 54px;
					height: 54px;
					line-height: 54px;
					margin-left: -27px;
					@include font-size(20px);
				}
			}

			.followers{
				text-align: center;
				margin: 10px 0 0;
				display: block;
 				width: 100%;
			}
		}
	}
}

// Media Queries
@include breakpoint_min_max($screen-md, 1050px){
	.two-cols.white-bg:not(.circle-icons),
	.two-cols.transparent-icons,
	.two-cols:not(.transparent-icons):not(.white-bg){
		li{
			width: 100%;

			&:nth-child(2){
				padding-top: 10px;
			}
		}
	}

	.two-cols.white-bg.circle-icons{
		li a{
			padding: 10px 0;
		}
	}

	.squared-four-cols li{
		width: 33.3334%;

		&:nth-child(4n + 1){
			clear: none;
		}

		&:nth-child(3n + 1){
			clear: both;
		}
	}
}

@include breakpoint_min_max($screen-sm, $screen-md - 1){
	.two-cols.white-bg,
	.two-cols.transparent-icons,
	.two-cols:not(.transparent-icons):not(.white-bg),
	.fullwidth-stats-icons{
		margin-left: -5px;
  		margin-right: -5px;

		li{
			width: 25%;
			padding-left: 5px;
			padding-right: 5px;

			&:before{
				left: 55px;
			}

			&:nth-child( -n + 4){
				padding-top: 0;

				&:before{
					top: 0;
					height: 100%;
				}
			}

			&:nth-child(2n + 1){
				clear: none;
			}

			&:nth-child(4n + 1){
				clear: both;
			}

			.followers span{
				float: none;
				line-height: inherit;
			}
		}
	}

	.three-cols,
	.white-bg.two-cols,
	.circle-three-cols,
	.squared-four-cols{
		.social-icons-item{
			width: 20%;

			&:nth-child(-n + 5){
				padding-top: 0;
			}

			&:nth-child( 5n + 1){
				clear: both;
			}

			&:nth-child( 3n + 1),
			&:nth-child( 4n + 1){
				clear: none;
			}
		}
	}
}

// Social Statistics Icons In Dark
.dark-skin {
	.social-statistics-widget {
		.white-bg {
			li.social-icons-item {
				&:before {
					background: $base-border-color-in-white;
				}

				a {
					border-color: $base-border-color-in-white !important;

					&:after {
						background: $base-border-color-in-white;
					}
				}
			}
		}
	}
}



// Arqam Plugin -----------------------
.social-icons-item{
	.arqicon-goodreads{
		line-height: 2.5 !important;

		svg{
			width: 20px;
			height: 20px;
		}
	}
}

.social-statistics-widget ul.three-cols,
.social-statistics-widget ul.circle-three-cols,
.social-statistics-widget ul.squared-four-cols{
	.arqicon-goodreads{
		line-height: 3 !important;

		svg{
			width: 25px;
			height: 25px;
		}
	}
}

.social-statistics-widget ul.circle-three-cols .arqicon-goodreads{
	line-height: 3.7 !important;
}

.social-statistics-widget svg path {
	fill: #FFF;
}

// [Edge] CSS transition property - colors inside link do not behave correctly (inconsistent with other browsers) - by jackplug
@supports (-ms-accelerator:true) {
	.social-statistics-widget a{
	   transition: none;
	}
}


// Recent Comments ---------------------------------------------
.recent-comments-widget {
	.widget-title-icon:before {
		content: "\f086";
	}
	.comment-author {
		font-weight: bold;
		display: block;
		@include font-size(14px);
	}
}

.authors-posts .post-widget-body,
.recent-comments-widget .comment-body,
.tab-content-comments .comment-body {
	padding-left: 80px;
}


// Default Recent Comments Widget ------------------------------
.widget_recent_comments {
	.widget-title-icon:before {
		content: "\f086";
	}
}


// Flickr Widget------------------------------------------------
.flickr-widget {
	.widget-title-icon:before {
		content: "\f16e";
	}

	.flickr_badge_image {
		width: 33.33333%;
		padding: 0 2px 4px;
		position: relative;
		min-height: 1px;
		float: left;
		line-height: 0;
	}

	.flickr-images-wrapper {
		margin: 0 -2px;
	}

	a {
		display: block;
	}

	img {
		width: 100%;
		transition: 0.3s;
		&:hover {
			opacity: 0.8;
		}
	}

	a.button {
		margin-top: 10px;
	}

}

// TikTok Widget ------------------------------
.widget_tie-tiktok-theme {
	.widget-title-icon:before {
		content: "\e90b";
	}

	.tiktok-feed-feed{
		.tiktok-feed-list{
			.tiktok-feed-item {
				padding: 5px !important;

				.tiktok-feed-video-mask-content,
				.tiktok-feed-icon{
					> span{
						font-weight: 400 !important;
						font-size: 12px !important;
					}
				}
			}
		}

		.tiktok-feed-actions{
			margin-bottom: 0;
			margin-right: -5px;
			margin-left: -5px;

			.tiktok-feed-button{
				width: 100%;
				margin: 0;

				&:hover{
					box-shadow: 0px 9px 20px -5px #ff5374;
				}
			}
		}
	}
}

.tie-tiktok-avatar {
	a{
		width: 70px;
		height: 70px;
		display: block;
		position: relative;
		float: left;
    margin-right: 15px;
	}

	img{
		border-radius: 50%;
	}
}

.tie-tiktok-username{
	display: block;
	font-size: 1.4em;
}

.tie-tiktok-verified{
	background-color: #20d5ec;
	color: #fff;
	border-radius: 50%;
	font-size: 12px;
	padding: 4px;
	margin: 0 5px;
}

.tie-tiktok-desc{
	margin-top: 8px;
}

.tie-tiktok-counts{
	padding: 10px 0;

	li{
		display: inline-block;
		padding: 0 10px 0 0;
	}

	.counts-number{
		font-weight: bold;
	}

	span:last-child{
		opacity: 0.7;
		font-size: 90%;
	}
}


// Instagram Widget---------------------------------------------
.widget_tie-instagram-theme {
	.widget-title-icon:before {
		content: "\f16d";
	}

	.tie-insta-photos{
		margin: 0 -2px;
		clear: both;
	}

	.tie-insta-post{
		padding: 0 2px 4px !important;
	}

	.button{
		padding-top: 12px;
		padding-bottom: 12px;
		font-size: 14px;
		font-weight: bold;
		margin-top: 10px;
		background: #da2e7d;
		background: linear-gradient(29.61deg, #f38334 0%, #da2e7d 50.39%, #6b54c6 100%);
		transition: all 0.25s;

		&:hover{
			margin-top: 8px;
			margin-bottom: 2px;
			box-shadow: 0px 9px 20px -5px #6b54c6;
			background: linear-gradient(150deg, #f38334 0%, #da2e7d 50.39%, #6b54c6 100%);
		}

		.tie-icon-instagram{
			font-size: 12pt;
			vertical-align: text-bottom;
		}
	}
}

.tie-insta-header{
	margin-bottom: 15px;
}

.tie-insta-avatar {
	a{
		width: 70px;
		height: 70px;
		display: block;
		position: relative;
		float: left;
    margin-right: 15px;
    margin-bottom: 15px;

    &:before{
			content: '';
			position: absolute;
			width: calc(100% + 6px);
			height: calc(100% + 6px);
			left: -3px;
			top: -3px;
			border-radius: 50%;
			background: #d6249f;
  		background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%,#d6249f 60%,#285AEB 90%);
		}

		&:after{
			position: absolute;
			content: '';
			width: calc(100% + 3px);
			height: calc(100% + 3px);
			left: -2px;
			top: -2px;
			border-radius: 50%;
			background: #fff;

			.dark-skin &{
				background: $dark-bg;
			}
		}
	}

	img{
		border-radius: 50%;
		position: relative;
		z-index: 2;
		transition: all 0.25s;

    &:hover{
			box-shadow: 0px 0px 15px 0 #6b54c6;
    }
	}
}

.tie-insta-info{
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 5px;
}


// Tags Widget--------------------------------------------------
.widget_tag_cloud,
.widget_product_tag_cloud{
	.widget-title-icon:before {
		content: "\f02c";
	}
}

.widget_product_tag_cloud,
.widget_tag_cloud,
.post-tags,
.widget_layered_nav_filters{
	.tagcloud{
		margin: 0 -3px;
		font-size: 0; // to remove the space between display:inline-block elements.
		display: block;
	}

	a {
		font-size: 12px !important;
		display: inline-block;
		background: rgba(0,0,0,0.03);
		border: $base-border;
		line-height: 14px;
		margin: 3px;
		padding: 6px 10px;
		border-radius: $base-border-radius;

		&:not(:hover){
			color: $base-color;
		}
	}
}

.fullwidth-area{
	.widget_tag_cloud{
	   text-align: center;

		.widget-title{
			padding-bottom: 0;
			margin-bottom: 20px;

			.the-subtitle{
   			font-weight: 700;
   			font-size: 32px;
			}

			&:before,
			&:after{
				display: none;
			}

			.block-head-4 &{
				padding-top: 10px;
				padding-bottom: 10px;

				&:before{
					display: block;
				}
			}

			.block-head-7 &{
				padding: 7px 10px;
			}
		}

		.tagcloud {
			a{
				background: rgba(0, 0, 0, 0.2);
				border-radius: 0;
		    @include font-size(20px !important);
		    font-weight: 600;
		    margin: 0 2px 6px 2px;
		    padding: 14px 18px;
		    border: none;
		    text-transform: capitalize;

				@include breakpoint(max_min_sm){
					font-size: 14px !important;
			    margin: 0 2px 6px 2px;
			    padding: 10px 15px;
				}

				&:hover{
					background-color: $brand-color;
					color: $bright;
				}
			}
		}
	}
}


// Posts Topics Widget ---------------------------------------
.widget-posts-list + .button{
	margin-top: 24px!important;
}

li.widget-post-list,
.recent-comments-widget li {
	padding: 7px 0;
	position: relative;
}

// Rss widget---------------------------------------------------
.widget_rss {
	.widget-title-icon:before {
		content: "\f09e";
	}
	img.rss-widget-icon {
		display: none;
	}
}

// Meta widget--------------------------------------------------
.widget_meta {
	.widget-title-icon:before {
		content: "\f0c1";
	}
}


//Social widgets------------------------------------------------
// Soundcloud
.soundcloud-widget {
	.widget-title-icon:before {
		content: "\f1be";
	}
}

// Facebook
.facebook-widget {
	.widget-title-icon:before {
		content: "\f09a";
	}

	.fb_iframe_widget{
		margin: 0 auto;
		max-width: 100%;
		display: table !important;
	}
}


// YouTube
.widget_youtube-widget {
	.widget-title-icon:before {
		content: "\f16a";
	}

	.youtube-box{
		text-align: center;
	}
}


//Media widgets-------------------------------------------------
// Video
.widget_media_video {
	.widget-title-icon:before {
		content: "\f04b";
	}

	iframe, video{
		max-width: 100%;
	}
}

// Image
.widget_media_image{
	.widget-title-icon:before {
		content: "\f030";
	}

	img{
		margin: 0 auto;
		display: block;
	}
}

// Audio
.widget_media_audio{
	.widget-title-icon:before {
		content: "\f025";
	}
}


//Arrow Bullet List widget--------------------------------------
.widget_categories,
.widget_product_categories{
	.widget-title-icon:before {
		content: "\f07b";
	}
}

.widget_categories,
.widget_product_categories,
.widget_archive{
	li{
		text-align: right;

		a{
			float: left;
			white-space: nowrap;
			word-wrap: normal; // IE fix
		}
	}
}

.widget_categories li,
.widget_product_categories li,
.widget_layered_nav li,
.widget_archive li,
.widget_nav_menu li,
.widget_meta li,
.widget_pages li,
.widget_recent_entries li,
.widget_display_forums li,
.widget_display_views li,
.widget_rss li,
.widget_display_stats dt{
	padding: 5px 0 5px 12px;
	font-size: 105%;
}

.widget_categories li a,
.widget_product_categories li a,
.widget_layered_nav li a,
.widget_archive li a,
.widget_nav_menu li a,
.widget_meta li a,
.widget_pages li a,
.widget_recent_entries li a,
.widget_display_forums li a,
.widget_display_views li a,
.widget_rss li a,
.widget_display_stats dt{ // Fourms Statistics Widget
	&:before {
		content: "\f106";
		font-family: 'tiefonticon';
		color: #2c2f34;
		font-size: 13px;
		display: inline-block;
		line-height: 18px;
		width: 12px;
		margin-left: -12px;
		text-align: left;

		.dark-skin &{
			color: $dark-base-color;
		}
	}
}

// children menu
.widget_categories .children,
.widget_product_categories .children,
.widget_nav_menu .sub-menu,
.widget_pages .children{
	margin-top: 0;
	clear: both;

	li{
		padding-left: 15px;

		&:first-child{
			padding-top: 10px;
		}
	}
}

// dropdown list
.widget_categories,
.widget_archive{
	select {
		width: 100%;
	}
}


// Menu Widget
.widget_nav_menu {
	.widget-title-icon:before {
		content: "\f0c9";
	}

	.site-footer & li{
		padding-left: 0;
		padding-right: 0;

		a:before{
			display: none;
		}
	}
}

// default Recent Posts & Forums widgets -----------------------
.widget_recent_entries a + span,
.widget_display_replies li div,
.widget_display_topics li div,
.widget_rss .rss-date{
	display: inline;
	color: $post-meta-color;
	font-size: 90%;

	&:before{
		content: ' - ';
	}
}

.widget_display_replies,
.widget_display_topics{
	img{
		margin-bottom: -2px;
		border-radius: 50%;
	}
}


//Colored Count Categorie Widget -------------------------------
.tie-widget-categories li a:hover + span{
	box-shadow: inset 0 0 0 11px rgba(0,0,0,0.3);
}

div.tie-widget-categories .children li{ // override the rtl padding
	padding-left: 0;
	padding-right: 0;
}

.cat-counter a + span{
	display: inline-block;
	background-color: $brand-color;
	text-align: center;
	font-size: 85%;
	padding: 0 5px;
	min-width: 24px;
	height: 22px;
	line-height: 22px;
	color: $bright;
	border-radius: $base-border-radius;
	transition: box-shadow 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

// Archive
.widget_archive {
	.widget-title-icon:before {
		content: "\f187";
	}
}


//Calender Widget ----------------------------------------------
#wp-calendar {
	width: 100%;

	caption {
		font-weight: bold;
		margin-bottom: 15px;
		text-align: center;
	}

	thead th{
		text-align: center;
		border: none;
	}

	tbody {
		color: #aaa;

		td {
			border: none;
			padding: 10px;
			text-align: center;
		}

		.pad {
			background: none;
			border: none;
		}
	}

	tfoot #next {
		text-align: right;
	}

	#today {
		background-color: $brand-color;
		&,
		a{
			color: $bright;
		}
	}
}


//Weather Widget -----------------------------------------------
.tie-weather-widget {
	&.widget{
		background: $brand-color;
		color: $bright;
		border-width: 0;
		padding: 0;
		position: relative;
		overflow: hidden;

		.icon-basecloud-bg:after{
			color: $brand-color;
		}

		.user-weather-error{
			position: absolute;
			width: 100%;
			top: 0;

			.theme-notice{
				background: rgba( 255, 0, 0, 0.5 );
				color: #fff !important;
				text-align: center;
				padding: 0;
			}
		}
	}

	.widget-title {
		border-bottom: 0!important;
		background-color: transparent;
		margin-bottom: 0;
		padding: 20px 20px 0;

		&:after,
		&:before{
			display: none;
		}

		.the-subtitle {
			@include font-size(18px);
			color: color-contrast($brand-color);
			margin: 0;
			padding: 0;

			&:after,
			&:before,
			.widget-title-icon {
				display: none;
			}
		}

		span {
			font-weight: normal;
			@include font-size(14px);
		}
	}

	[class^="icon-"],
	[class*=" icon-"]{
		&:before,
		&:after{
			font-family: "tiefonticon";
		}
	}
}

.tie-weather-user-location{
	position: absolute;
	font-size: 22px;
	display: block;
	top: 10px;
	right: 10px;

	&.has-title{
		top: 20px;
		right: 20px;
	}

	&:not(.is-loading){
		cursor: pointer;
	}

	.tie-icon-gps:not(:hover){
		opacity: 0.5;
	}

	.tie-icon-spinner{
		animation: tie-spin 1s infinite linear;
		opacity: 0.5;
	}
}

.weather-wrap {
	clear: both;
	overflow: hidden;
	text-align: center;
	padding: 15px 0 20px;
	line-height: 1;
}

.weather-icon {
	position: relative;
	margin: 0 auto 0.1em;
	font-size: 75px;
	width: 1em;
	height: 0.9em;
}

.weather-icon-and-city {
	display: inline-block;
	padding: 0 10px;

	.icon-sun,
	.icon-cloud,
	.icon-mist,
	.icon-mist-animi{
		&:after,
		&:before{
			top: 0;
		}
	}
}

.weather-name {
	@include font-size(32px);
	padding-top: 5px;
	font-weight: bold;
	white-space: nowrap;
}

.weather-todays-stats {
	display: inline-block;
	padding: 0 10px;
	vertical-align: top;
}

.weather-more-todays-stats{
	text-align: left;
	line-height: 1.6;
	font-size: 90%;
	padding-top: 12px;
	padding-left: 10px;

	[class^="tie-icon-"],
	[class*=" tie-icon-"]{
		&:before{
			width: 15px;
			display: inline-block;
			text-align: center;
		}
	}
}

.weather-current-temp {
	@include font-size(70px);
	font-weight: bold;

	sup {
		@include font-size(17px);
		vertical-align: super;
		font-weight: normal;
	}
}

.weather-desc {
	margin-top: 5px;
}

.weather-forecast {
	clear: both;
	padding: 20px 10px;
	overflow: hidden;
  margin: 20px 0 -20px;
  //background: rgba(0,0,0,.05);
}

.small-weather-icons{
	.animi-icons-wrap {
    font-size: 0.2em;
    width: 2em;
  }

  .icon-sun-animi:after {
    right: -0.35em;
  }

	.icon-windysnow-animi{
		&:before{
	    top: 0.5em;
	    left: 0.1em;
	  }

	  &:after{
	  	width: 0.5em;
	  	height: 1.2em;
	    top: 1em;
	  }
	}

	.icon-thunder-animi:before{
    left: 50%;
    top: 40%;
    font-size: 2em;
  }

	.icon-mist:before{
		font-size: 0.8em;
  }

  .icon-mist-animi{
  	display: none;
  }

  .icon-cloud-behind:after{
  	left: -0.4em;
  }

  .icon-moon-animi:before{
  	right: -0.4em;
  	top: 0.1em;
  }
}

// days weather
.weather-forecast-day {
	position: relative;
	width: 1%;
	display: table-cell;
	text-align: center;

	.weather-icon{
		font-size: 35px;

		// Small animated icons
		.icon-cloud:after,
		.icon-basecloud-bg:after,
		.basecloud:before{
			font-size: inherit;
			line-height: 1.05;
		}

		.icon-rainy-animi-5,
		.icon-thunder-animi:after,
		.icon-windysnow-animi-2 {
			display: none;
		}
	}
}

.weather-forecast-day-abbr {
	font-weight: bold;
	font-size: 0.8em;
	margin-top: 3px;
	line-height: 1.4;
}

.weather-forecast-day-temp {
	@include font-size(14px);
}

.weather-forecast-day-temp sup {
	@include font-size(8px);
	padding-left: 2px;
}

// Clouds
.basecloud:before{
	font-size: 0.86em;
	font-family: 'tiefonticon';
	content: '\f105';
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	z-index: 2;
}

// Thunder
.icon-thunder-animi {
	position: absolute;
	width: 100%;
	height: 100%;

	&:before,
	&:after{
		content: "\f114";
    position: absolute;
    width: 100%;
    z-index: 2;
    font-size: 3em;
    left: 40%;
    transform: translateX(-50%) translateY(-30%);
	}

	&:before {
		.is-animated & {
			animation: flashing 2s ease-out infinite;
		}
	}

	&:after {
		color: rgb(255, 165, 0);
		z-index: 2;
		font-size: 2.5em;
    top: 90%;

		.is-animated & {
			animation: flashing-reverse 2s steps(1) infinite;
		}
	}
}

@keyframes(flashing){
	0%,
	100%,
	50% {
		opacity: 1;
	}

	25%,
	75% {
		opacity: 0;
	}
}

@keyframes(flashing-reverse){
	0%,
	100%,
	50% {
		opacity: 0;
	}

	25%,
	75% {
		opacity: 1;
	}
}

// Rainy and Snowy Animation
.icon-rainy-animi,
.icon-rainy-animi-2,
.icon-rainy-animi-4,
.icon-rainy-animi-5,
.icon-windysnow-animi,
.icon-windysnow-animi-2,
.icon-moon{
	position: absolute;
  width: 100%;
  height: 100%;
}

.icon-rainy-animi,
.icon-rainy-animi-2,
.icon-rainy-animi-4,
.icon-rainy-animi-5,
.icon-windysnow-animi,
.icon-windysnow-animi-2{
	&:before,
	&:after {
		content: "\f107";
		position: absolute;
		z-index: 2;
		opacity: 0.6;
	}

	&:after {
		opacity: 0;
		animation-fill-mode: forwards;
	}
}

@keyframes(rain-animi-effect){
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		transform: translateY(3em);
	}
}

@keyframes(rain-animi-effect-with-rotate){
	0% {
		opacity: 1;
		transform: translateY(0) rotate(0deg);
	}
	100% {
		opacity: 0;
		transform: translateY(1em) rotate(360deg);
	}
}

@keyframes(drizzle-animi-effect){
	0% {
		opacity: 1;
		transform: translateY(0) translateX(0) rotate(10deg);
	}
	100% {
		opacity: 0;
		transform: translateY(3em) translateX(-3em) rotate(20deg);
	}
}

.animi-icons-wrap{
  font-size: 0.14em;
  position: absolute;
  z-index: 2;
  left: 48%;
  bottom: 0;
  transform: translateX(-50%);
  width: 2.5em;
  height: 2.5em;
}

.icon-rainy-animi,
.icon-rainy-animi-2,
.icon-rainy-animi-4,
.icon-rainy-animi-5{
	&:before,
	&:after {
		content: "\f078";
		top: calc(50% - 0.43em);
		left: 0;
		right: auto;
		width: 0.96em;
		height: 0.96em;
	}
}

.is-animated .icon-rainy-animi {
	&:after {
		animation: rain-animi-effect 0.2s ease-out infinite;
	}
}

.icon-rainy-animi-2 {
	&:before,
	&:after {
		right: 0;
		left: auto;
		top: calc(50% - 0.43em);
	}

	.is-animated &:after {
		animation: rain-animi-effect 0.25s ease-out infinite;
	}
}

.icon-rainy-animi-4 {
	&:before,
	&:after {
		left: calc(50% - 0.43em);
		top: calc(100% - 0.96em);
	}

	.is-animated &:after {
		animation: rain-animi-effect 0.35s ease-out infinite;
	}
}

.icon-rainy-animi-5 {
	&:before,
	&:after {
		left: calc(50% - 0.43em);
		top: 0;
	}

	.is-animated &:after {
		animation: rain-animi-effect 0.4s ease-out infinite;
	}
}

// Drizzle icons
.drizzle-icons {
	.icon-rainy-animi,
	.icon-rainy-animi-2,
	.icon-rainy-animi-4,
	.icon-rainy-animi-5{
		&:before,
		&:after {
			transform: rotate(30deg);
		}
	}

	.icon-rainy-animi {
		.is-animated &:after {
			animation: drizzle-animi-effect 2.2s ease-out infinite;
		}
	}

	.icon-rainy-animi-2 {
		.is-animated &:after {
			animation: drizzle-animi-effect 2.3s ease-out infinite;
		}
	}

	.icon-rainy-animi-4 {
		.is-animated &:after {
			animation: drizzle-animi-effect 2.5s ease-out infinite;
		}
	}

	.icon-rainy-animi-5 {
		.is-animated &:after {
			animation: drizzle-animi-effect 2.6s ease-out infinite;
		}
	}
}

// Showers icons
.showers-icons {
	.icon-rainy-animi {
		.is-animated &:after {
			animation: drizzle-animi-effect 0.2s ease-out infinite;
		}
	}

	.icon-rainy-animi-2 {
		.is-animated &:after {
			animation: drizzle-animi-effect 0.23s ease-out infinite;
		}
	}

	.icon-rainy-animi-4 {
		.is-animated &:after {
			animation: drizzle-animi-effect 0.18s ease-out infinite;
		}
	}

	.icon-rainy-animi-5 {
		.is-animated &:after {
			animation: drizzle-animi-effect 0.44s ease-out infinite;
		}
	}
}

// Windy Snow icons
.icon-windysnow-animi,
.icon-windysnow-animi-2 {
	&:before,
	&:after {
		content: "\f103";
		width: 100%;
		height: 100%;
		font-size: 1.8em;
		top: 0;
		left: 0.3em;
	}

	&:after {
		width: 2em;
    height: 2em;

		.is-animated & {
			animation: rain-animi-effect-with-rotate 2s ease-out infinite;
		}
	}
}

.icon-windysnow-animi-2 {
	&:before,
	&:after {
		font-size: 1em;
		top: 1.5em;
    right: 0.7em;
    left: auto;
	}

	&:after {
		width: 2em;
    height: 2em;
    left: -0.5em;

		.is-animated & {
			animation: rain-animi-effect-with-rotate 1.5s ease-out infinite;
		}
	}
}

// Moon
.icon-moon {
	&:after {
		content: "\f10d";
		position: absolute;
		font-size: 0.65em;
		left: 0;
		right: 0;
		top: 0.2em;

		.is-animated & {
			animation: tie-float-y 2s linear infinite;
		}
	}

	&:before {
		display: none;
	}
}

.icon-moon-animi:before {
	content: "\f10d";
	position: absolute;
	right: -0.3em;
	font-size: 0.35em;
	top: 0.2em;

	.is-animated & {
		animation: tie-float-y 2s linear infinite;
	}
}

@keyframes(tie-float-y){
	0% {
		transform: translateY(0);
	}

	50% {
		transform: translateY(-6px);
	}

	100% {
		transform: translateY(0);
	}
}

// Sun
.icon-sun:after {
	content: "\f113";
	position: absolute;
	color: rgb(255, 165, 0);
	font-size: 0.9em;
	left: 0;
	right: 0;

	.is-animated & {
		animation: tie-spin 8s infinite linear;
	}
}

.icon-sun-animi:after {
	content: "\f113";
	position: absolute;
	color: rgb(255, 165, 0);
  right: -0.3em;
  top: 0.07em;
  font-size: 0.4em;

	.is-animated & {
		animation: tie-spin 8s infinite linear;
	}
}

@keyframes(tie-spin){
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

// Cloud
.icon-basecloud-bg:after,
.icon-cloud:after {
	content: "\e904";
	font-size: 0.86em;
	position: absolute;
	left: 0;
	right: 0;
	z-index: 2;
}

.icon-basecloud-bg:after{
	content: '\e905';
	z-index: 1;
}

.icon-cloud-behind:after {
	font-size: 0.48em;
	content: "\e904";
	position: absolute;
	left: -0.2em;
	top: 0.4em;
	z-index: 1;
	opacity: 0.6;

	.is-animated & {
		animation: passing 2s linear infinite;
	}
}

@keyframes(passing){
	0% {
		transform: translateX(50%);
		opacity: 0;
	}

	50% {
		transform: translateX(0);
		opacity: 1;
	}

	100% {
		transform: translateX(-50%);
		opacity: 0;
	}
}

// Mist
.icon-mist:before {
	content: '\f108';
	position: absolute;
	left: 0;
	right: 0;

	.is-animated & {
		animation: tie-float-x 2s infinite ease;
	}
}

.icon-mist-animi:before {
	content: '\f108';
	position: absolute;
	left: 0;
	right: 0;
	display: none;

	.is-animated & {
		display: inline-block;
		animation: burst 2s infinite linear;
	}
}

@keyframes(burst){
	0% {
		opacity: .6;
	}

	50% {
		transform: scale(1.8);
		opacity: 0;
	}

	100% {
		opacity: 0;
	}
}

@keyframes(tie-float-x){
	0% {
		transform: translateX(0);
	}

	50% {
		transform: translateX(-6px);
	}

	100% {
		transform: translateX(0);
	}
}


//Latest Tweets widget------------------------------------------
$font-size: 13px;
$line-height: 1.4;
$lines-to-show: 2;

.latest-tweets-widget {
	position: relative;
	min-height: 80px;

	.widget-title-icon:before {
		content: "\f099";
	}

	li {
		padding: 0 0 10px;

		&:last-child {
			padding: 0;
			margin-bottom: 0;
			border-bottom: 0;
		}
	}

	.widget-title + ul{
		margin-bottom: 20px;
	}

	@at-root .twitter-icon-wrap {
		width: 20px;
		float: left;

		span {
			color: $brand-color;
			margin-top: 5px;
		}
	}

	.tweetaya-body {
		padding-left: 20px;
	}

	.tweetaya-meta {
		display: block;
		@include font-size(11px);
		text-align: right;
	}

	// latest tweets slider
	.tie-slick-slider {
		display: none;
		position: relative;
		border-radius: $base-border-radius;

		.slick-list{
			width: 100%;
		}

		li {
			border: 0;
			height: 58px;
			padding-bottom: 0;
			overflow: hidden;
		}

		.twitter-icon-wrap {
			width: 40px;
			height: 40px;
			line-height: 40px;
			background: $twitter-color;
			border-radius: $base-border-radius;
			margin-right: 20px;
			text-align: center;
			display: none;
		}

		.tweetaya-body {
			padding: 0;

			p {
				margin: 0;
			}
		}
	}

	.slider-links {
		float: right;
		display: none;

		.button {
			line-height: 23px;
			padding: 1px 10px;
			margin-right: 10px;
		}

		.tie-slider-nav {
			margin: 0;
			opacity: 1;
			float: right;
			position: static;
			width: auto;

			li {
				padding: 0;
				border: 0;
				margin-bottom: 0;
				margin-left: 5px;
				float: right;

				span {
					width: 25px;
					height: 25px;
					border: $base-border;
					line-height: 23px;
					position: relative;
					top: 0;
					cursor: pointer;
					@include font-size(14px);

					.dark-skin &:not(:hover){
						background-color: transparent;
					}
				}
			}
		}
	}

	.slick-initialized ~ .slider-links{
		display: block;
	}

	// restrict tweet text in just two lines and show ellipsis if there are more text...
	.normal-side &{
		.tie-slick-slider{
			.tweetaya-body {
				p {
					white-space: normal;
				  display: block;
				  display: -webkit-box;
				  height: $font-size*$line-height*$lines-to-show;
				  margin: 0 auto;
				  font-size: $font-size;
				  line-height: $line-height;
				  -webkit-line-clamp: $lines-to-show;
				  -webkit-box-orient: vertical;
				  overflow: hidden;
				  text-overflow: ellipsis;
				}
			}
		}
	}
}


// Fullwidth Latest Tweets Slider At Footer
.fullwidth-area .latest-tweets-widget {
	padding-bottom: 0;

	@include breakpoint(max_min_sm){
		max-height: inherit;
	}

	.tie-slick-slider {
		margin-bottom: 0;
		background: rgba(0, 0, 0, 0.15);
		padding: 20px;

		.slide {
			margin: 2px 0;
			height: auto;
		}

		.twitter-icon-wrap {
			display: inline-block;

			 span {
				color: #ffffff !important;
			}
		}

		.tweetaya-body {
			width: calc(100% - 160px);
			padding-left: 60px;

			p {
			  display: block;
			  overflow: hidden;
			  white-space: nowrap;
			  word-wrap: normal; // IE fix
			  text-overflow: ellipsis;
			}

			.tweetaya-meta {
				display: inline;
			}
		}

		@include breakpoint(max_min_sm){
			.slide {
				height: 58px;
			}

			.tweetaya-body {
				p {
					white-space: normal;
				  display: block; // Fallback for non-webkit
				  display: -webkit-box;
				  height: $font-size*$line-height*$lines-to-show; // Fallback for non-webkit
				  margin: 0 auto;
				  font-size: $font-size;
				  line-height: $line-height;
				  -webkit-line-clamp: $lines-to-show;
				  -webkit-box-orient: vertical;
				  overflow: hidden;
				  text-overflow: ellipsis;
				}
			}
		}
	}

	ul:not(.tie-slick-slider){
		.tweetaya-meta {
			text-align: left;
		}
	}

	.slider-links {
		margin: 0;
		right: 20px;
		top: 40px;
		bottom: 35px;
		position: absolute;
	}

	@include breakpoint_min(601px){
		.widget-title ~ .slider-links{
			top: 100px;
		}
	}

	@include breakpoint_max(600px){
		.tie-slick-slider {
			padding-bottom: 60px;

			.tweetaya-body {
				width: 100%
			}
		}

		.slider-links {
			top: auto;
			bottom: 35px;
		}
	}

	@include breakpoint(max_min_xs){
		.tie-slick-slider {
			.tweetaya-body {
				padding-left: 0;
			}

			.twitter-icon-wrap{
				display: none;
			}
		}
	}
}


// Subscribe (NewsLetter) widget--------------------------------
.subscribe-widget {
	.widget-inner-wrap{
		text-align: center;
	}

	.widget-title {
		text-align: left;
	}

	.widget-title-icon:before {
		content: "\f0e0";
	}

	.newsletter-icon {
		color: rgba(0, 0, 0, 0.2);
		font-size: 40px;
		display: block;
		margin: 0 0 20px;
		line-height: 0.8;
	}

	.subscribe-widget-content{
		margin-bottom: 20px;

		h4 {
			@include font-size(15px);
			position: relative;
			padding-bottom: 10px;
			margin-bottom: 10px;

			&:after {
				content: "";
				position: absolute;
				width: 50px;
				height: 1px;
				background-color: $base-border-color;
				bottom: 0;
				@include center(x);
				transition: 0.15s;
			}
		}

		h3 {
			@include font-size(28px);
			color: $dark-color;
			margin-bottom: 10px;
		}
	}

	form {
		position: relative;

		&:before {
			font-size: 15px;
			position: absolute;
			left: 12px;
			top: 10px;
			color: rgba(0, 0, 0, 0.2);
			@include font-size(18px);
			content: "\f0e0";
			font-family: tiefonticon;
		}
	}

	.subscribe-input {
		padding: 8px 30px;
		width: 100%;
		text-align: center;
		@include font-size(13px);

		@include placeholder(){
			text-align: center;
		}
	}

	.button {
		margin-top: 10px;
		padding: 10px !important;
		width: 100%;
		@include font-size(14px);
	}
}


// Social Icons widget------------------------------------------
.social-icons-widget {
	.widget-title-icon:before {
		content: "\f1e0";
	}

	ul{
		margin: 0 -3px;
	}

	.social-icons-item {
		float: left;
		margin: 3px;
		border-bottom: 0;
		padding: 0;

		.social-link {
			width: 40px;
			height: 40px;
			line-height: 40px;
			@include font-size(18px);
		}
	}

	.is-centered{
		text-align: center;
		overflow: hidden;

		.social-icons-item{
			float: none;
			display: inline-block;
		}
	}

	@include breakpoint(max_min_xs){
		.solid-social-icons{
			text-align: center;
		}

		.social-icons-item{
			float: none;
			display: inline-block;
		}
	}
}

// Advertisement -----------------------------------------------
.stream-item,
.stream-item-widget{
	.widget-title-icon:before {
		content: "\f0a1";
	}
}

.stream-item-widget{
	a{
		display: block;
	}

	img {
		display: block;
		margin-right: auto;
		margin-left: auto;
		height: auto;
	}

	.stream-item-widget-content{
		text-align: center;
	}
}

// Advertisement-125x125-widget
.stream-item-125-widget {
	.widget-title-icon:before {
		content: "\f0a1";
	}

	ul {
		text-align: center;
		margin: 0 -5px -5px;
	}

	li {
		display: inline-block;
		padding: 0;
		margin: 5px;
		width: 125px;
		height: 125px;
	}

	li a {
		display: block;
	}
}

/* WPCOVID-19 */
.container-wrapper{
	.wpcv-global-updates,
	.wpcv-chart,
	.wpcv-map{
		margin: 0;
	}
}

.entry{
	.wpcv-widget{
		margin-bottom: 30px;
	}
}

// Snapchat
.widget_tie-snapchat-theme .widget-title-icon::before {
	content: "\f2ac";
}

.tie-snapchat-badge{
	display: block;
	background-repeat: no-repeat;
	background-position: center;
	font-size: 0;
	line-height: 0;
	border: 3px solid #000;
	overflow: hidden;
	width: 200px;
	margin: 0 auto;
	border-radius: 20px;
	transition: all 0.25s;

	&.is-circle{
		border-radius: 100%;
	}
}

.tie-snapchat-badge-wrap{

	a:hover{
		color: #e6e419;
	}

	.snapchat-username,
	.snapchat-userid{
		text-align: center;
		display: block;
	}

	.snapchat-username{
		margin-top: 10px;
		font-size: 20px;
		font-weight: bold;
	}
}
