
// ------------------------------------------------------------------------------------------------
// OTHER
// ------------------------------------------------------------------------------------------------

.page-title {
	width: 100%;
	border-bottom: 1px solid rgba(168, 168, 168, 0.15);
	position: relative;
	margin-top: -40px;
	margin-bottom: 40px;

	.entry-title,
	h1 {
		margin-bottom: 0;
		text-transform: uppercase;
	}

	.entry-header {

		.breadcrumbs,
		.yoast-breadcrumb {
			font-size: 0;

			> span,
			> a {
				font-size: 14px;
				display: inline-block;

				&:after {
					content: "/";
					display:inline-block;
					padding: 0 10px;
				}
			}
			
			> a {

				&:before {
					@include font-icon($icon-home);
					display: inline-block;
					margin-right: 5px;
				}
			}

			> span {

				&:last-child {

					&:after {
						content: none;
						padding: 0;
					}
				}
			}
		}
	@include clear-element;
	}

	&.color-scheme-light {

		.breadcrumbs,
		.yoast-breadcrumb {
			color:rgba(255,255,255,0.9);

			a,
			span {
				color:rgba(255,255,255,0.9);
			}

			a {

				&:hover {
					color:white;
				}
			}
		}
	}
}

// ------------------------------------------
// TITLE SIZE 
// ------------------------------------------

.title-size-small {
	padding: 15px 0;

	.entry-title,
	h1 {
		font-size: 36px;
	}
}

.title-size-default {
	padding: 60px 0;
	
	.entry-title,
	h1 {
		font-size: 48px;
	}
}

.title-size-large {
	padding: 100px 0;
	
	.entry-title,
	h1 {
		font-size: 56px;
	}
}

// ------------------------------------------
// TITLE DESIGN
// ------------------------------------------

.title-design-centered {

	.entry-header {
		text-align: center;
	}

	.breadcrumbs,
	.yoast-breadcrumb {
		// line-height: 1.6;
		margin-top: 5px;
	}
}

.title-design-default {

	.entry-title {
		float: left;
		line-height: 50px;
	}

	.breadcrumbs,
	.yoast-breadcrumb {
		float: right;
		line-height: 50px;
	}
}

// ------------------------------------------
// WRAPPER BOXED
// ------------------------------------------

.wrapper-boxed {

	.website-wrapper {
		max-width: 1200px;
	}

	.header-banner {
		max-width: 1200px;
		margin: 0 auto;
	}

	.scrollToTop {
		bottom: 40px;
		right: 20px;	
	}

	&.sticky-footer-on {

		.footer-container {
		   right:auto;
		   left:auto;
		   max-width: 1200px;
		   width: 100%;
		}
	}
}

// ------------------------------------------
// WRAPPER BOXED SMALL
// ------------------------------------------

.wrapper-boxed {

	.website-wrapper {
		overflow: hidden;
		margin: 0 auto;
		box-shadow: 0 1px 5px rgba(190, 190, 190, 0.26);
	}

	&.sticky-header-prepared .header-shop,
	&.basel-header-overlap .main-header,
	.sticky-header {
		left: auto;
		right: auto;
		max-width: inherit;		
	}

	.owl-carousel:not(.basel-slider) {

		.owl-nav {
			
			> div {
				background-color: white;
				box-shadow: 0 0 9px rgba(0, 0, 0, 0.1);
				filter: Alpha(Opacity=1);
				opacity: 1;

				&.disabled {
					color: rgba(0, 0, 0, 0.3);
				}

				&:before {
					width: 38px;
					font-size: 18px;
					height: 38px;
					line-height: 38px;
				}
			}

			.owl-next {
				right: 20px;
			}

			.owl-prev {
				left: 20px;
			}
		}

		&:hover .owl-nav div.owl-next {
			right:20px;
		}

		&:hover .owl-nav div.owl-prev {
			left:20px;
		}
	}

	.popup-quick-view {

		.owl-nav {
				
			> div {
				filter: Alpha(Opacity=0);
	   			opacity: 0;
			}
		}
	}
}

// ------------------------------------------
// WRAPPER FULL WIDTH
// ------------------------------------------

.wrapper-full-width-content {
	
	.container {
		width: 95%;
	}
}

.global-header-vertical {

	.container {
   		max-width: none;
   		width: 100%;
   		padding-left: 30px;
   		padding-right: 30px;

		.container {
   			padding-left: 0;
   			padding-right: 0;
		}
	}

	.vc_row:not(.vc_inner) {
   		margin-left: -30px;
   		margin-right: -30px;
   		padding-left: 15px;
   		padding-right: 15px;
	}

	&.wrapper-full-width {

		.container {
			max-width: 1200px;
		}
	}

	&.wrapper-wide {

		.container {
			max-width: 1600px;
			width: 100%;
		}	
	}

	&.wrapper-boxed {
		padding-left: 280px;

		.website-wrapper {
			padding-left: 0;
		}

		.container {
			max-width: 1200px;
		}
	}
}

// ------------------------------------------
// CLOSE BUTTON MOBILE NAV AND SIDEBAR CART
// ------------------------------------------

.basel-close-side {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 400;
	opacity: 0;
	visibility: hidden;
	background-color: rgba(0,0,0,.7);
	-webkit-transition:all 0.3s ease;
	transition:all 0.3s ease;
}

// ------------------------------------------
// PAGINATION
// ------------------------------------------

.basel-pagination {
	text-align:center;

	.current, 
	.inactive {
		border:1px solid transparent;
		border-bottom-color:#B1B1B1;
		display: inline-block;
		text-align: center;
		width: 34px;
		line-height: 32px;
		margin-right:6px;
		font-size:16px;
		color:black;
	}

	.current {
		background-color:black;
		border-color:black;
		color:white;
	}

	.inactive {

		&:hover,
		&:focus {
			text-decoration:none;
			border-color:#B1B1B1;
		}

		&:focus {
			background-color:black;
			border-color:black;
			color:white;
		}
	}
}

// ------------------------------------------
// BUTTON SCROLL TO TOP
// ------------------------------------------

.scrollToTop {
	width: 45px;
	height: 45px;
	text-align: center;
	color: black;
	z-index: 350;
	font-size: 0;
	border: 1px solid black;
	border-radius: 50%;
	text-decoration: none;
	background-color: white;
	position: fixed;
	bottom: 75px;
	right: 40px;
	visibility: hidden;
	opacity: 0;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;

	transform:scale(1);
	-webkit-transform:scale(1);

	transition: 0.2s all ease;
	-webkit-transition: 0.2s all ease;

	&.button-show {
		visibility: visible;
		opacity: 1;
	}

	.basel-tooltip-label {
		display:none;
	}

	&:after {
		content:"\e607";
		display:inline-block;
		font-size: 18px;
		line-height: 42px;
		font-family: 'simple-line-icons';
	}

	&:hover,
	&:focus {
		text-decoration:none;
		background: $primary-color;
		border-color:$primary-color;
		color:white;
		transform:scale(0.91);
		-webkit-transform:scale(0.91);
	}
}

// ------------------------------------------
// PROMO POPUP
// ------------------------------------------

.basel-promo-popup,
.basel-content-popup,
.basel-sizeguide {
	display: none;
	max-width: 900px;
	margin: 0 auto;
	background: white;
	padding: 20px;
	position: relative;
	opacity: 0;
	transform:translateY(50px);
	-webkit-transform:translateY(50px);
	-webkit-transition:all 0.3s ease;
	transition:all 0.4s ease;

	.mfp-close {
		font-size:0;
		@include close-btn( $height:1px, $width:30px, $color: black);
		opacity:1;
		
		&:after {
			transform:rotate(-45deg);
			-webkit-transform:rotate(-45deg);
			-ms-transform:rotate(-45deg);
		}

		&:before {
			-webkit-transform:rotate(45deg);
			-ms-transform:rotate(45deg);
			transform:rotate(45deg);
		}

		&:after,
		&:before {
			right: 9px;
		}
	}

	.mfp-wrap & {
		display: block;
	}

	.basel-popup-effect.mfp-ready & {
		-webkit-transform:translateY(0px);
		transform:translateY(0px);
		opacity: 1;
	}

	.basel-popup-effect.mfp-removing & {
		-webkit-transform:translateY(-50px);
		transform:translateY(-50px);
		opacity: 0;
	}
}

// ------------------------------------------
// SIZE GUIDE
// ------------------------------------------

.basel-sizeguide {

	.responsive-table {
		margin-bottom: 0;
	}
}

.basel-sizeguide-title {
	font-size: 24px;
	text-transform: uppercase;
	text-align: center;
}

.basel-sizeguide-content {
	margin-bottom: 30px;
	// line-height: 1.5;
}

// ------------------------------------------
// LINER CONTAINER
// ------------------------------------------

.liner-continer {
	display: table-row;

	.left-line,
	.right-line {
		display: table-cell;
		vertical-align: middle;
		width: 50%;

		&:after {
			content:"";
			width: 100%;
			display: inline-block;
			height: 1px;
			vertical-align: middle;
		}
	}

	.left-line {
		padding-right: 20px;

	}

	.right-line {
		padding-left: 20px;
	}

	&.position-left {

		.right-line {
			display:none;
		}

		.left-line {
			width:100%;
		}
	}

	&.position-right {

		.right-line {
			width:100%;
		}

		.left-line {
			display:none;
		}
	}
}

// ------------------------------------------
// Font Awesome icon spacing
// ------------------------------------------

i.fa {

	&:before {
		margin-left:1px;
		margin-right:1px;
	}
}

// ------------------------------------------
// SLIDER TITLE
// ------------------------------------------

.slider-title {
	text-align: center;
	font-size: 26px;
	margin-bottom:30px;
	text-transform:uppercase;
	position:relative;

	&:before {
		content: " ";
		position:absolute;
		bottom:-12px;
		left:50%;
		margin-left:-15px;
		width:30px;
		height: 2px;
		display: inline-block;
		background-color: $primary-color;
	}
}

// ------------------------------------------
// REV SLIDER ADD TO CART
// ------------------------------------------

.rev_slider_wrapper {

	.add_to_cart_button {

		&.loading {
			padding-right:35px!important;
			padding-left:15px!important;
		}
	}

	.btn,
	.button,
	 button,
	.added_to_cart {
		color: #5F5F5F;
		-webkit-transition:all 0.25s ease-in-out!important;
		transition:all 0.25s ease-in-out!important;

		&:hover {
			color:white;
		}
	}
}

// ------------------------------------------
// ADMIN BAR POSITION ELEMENTS
// ------------------------------------------

.admin-bar {

	.sticky-header.act-scroll {
		top: 32px;
	}

	&.sticky-navigation-only.sticky-header-prepared {
		
		.main-header {

			&.act-scroll {

				.navigation-wrap {
					top: 32px;
				}
			}
		}
	}

	.cart-widget-side,
	.mobile-nav {
		top: 32px;
	}
}

// ------------------------------------------
// BASEL GRADIENT
// ------------------------------------------

.basel-row-gradient-enable {
	position: relative;
}

.basel-row-gradient {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
}

// ------------------------------------------
// LOGIN TO SEE PRICES
// ------------------------------------------

a.login-to-prices-msg {
	font-size: 13px;
	font-weight: 600;
	color: $primary-color;

	&:hover {
		opacity: .6;
		color: $primary-color;
		text-decoration: none;
	}
}

.login-see-prices  {

	.basel-hover-alt,
	.basel-hover-link {

		&.purchasable {

			&:hover {

				.swap-elements {
					transform: none;
					-webkit-transform: none;
				}
			}
		}
	}
}

// ------------------------------------------
// STOCK PROGRESS BAR
// ------------------------------------------

.basel-stock-progress-bar {

	.stock-info {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-orient: horizontal;
		-webkit-box-direction: normal;
		-ms-flex-direction: row;
		flex-direction: row;
		-webkit-box-pack: justify;
		-ms-flex-pack: justify;
		justify-content: space-between;
		-ms-flex-wrap: wrap;
		flex-wrap: wrap;
		margin-bottom: 5px;

		span {
			font-weight: 600;
			margin-left: 3px;
		}
	}

	.progress-area,
	.progress-bar {
		height: 7px;
	}

	.progress-area {
		width: 100%;
		background-color: #F4F4F4;
	}

	.progress-bar {
		background-color: $primary-color;
	}
}