/*
| ====================================================================
| = BASE CSS FLEX GRID
| ====================================================================
*/

.sas-grid {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
    list-style: none;
}
.sas-grid>* {
    margin: 0;
}
.sas-grid>*>:last-child {
    margin-bottom: 0;
}

/* MARGIN Base 30px */
.sas-grid {
    margin-left: -30px;
}
.sas-grid>* {
    padding-left: 30px;
}
.sas-grid+.sas-grid,
.sas-grid>.sas-grid-margin,
*+.sas-grid-margin {
    margin-top: 30px;
}
@media (min-width:1200px) {
    .sas-grid {
        margin-left: -40px;
    }
    .sas-grid>* {
        padding-left: 40px;
    }
    .sas-grid+.sas-grid,
    .sas-grid>.sas-grid-margin,
    *+.sas-grid-margin {
        margin-top: 40px;
    }
}

/* MARGIN Small 15px */
.sas-grid-small {
    margin-left: -15px;
}
.sas-grid-small>* {
    padding-left: 15px;
}
.sas-grid+.sas-grid-small,
.sas-grid-small>.sas-grid-margin,
*+.sas-grid-margin-small {
    margin-top: 15px;
}


/* MARGIN Medium 15px */
.sas-grid-medium {
    margin-left: -30px;
}
.sas-grid-medium>* {
    padding-left: 30px;
}
.sas-grid+.sas-grid-medium,
.sas-grid-medium>.sas-grid-margin,
*+.sas-grid-margin-medium {
    margin-top: 30px;
}


/* MARGIN Large 15px */
.sas-grid-large {
    margin-left: -40px;
}
.sas-grid-large>* {
    padding-left: 40px;
}
.sas-grid+.sas-grid-large,
.sas-grid-large>.sas-grid-margin,
*+.sas-grid-margin-large {
    margin-top: 40px;
}
@media (min-width:1200px) {
    .sas-grid-large {
        margin-left: -70px;
    }
    .sas-grid-large>* {
        padding-left: 70px;
    }
    .sas-grid+.sas-grid-large,
    .sas-grid-large>.sas-grid-margin,
    *+.sas-grid-margin-large {
        margin-top: 70px;
    }
}


/* ************************* */
/* ******* SIZE GRID ******* */
/* ************************* */

[class*='sas-child-width']>* {
    box-sizing: border-box;
    width: 100%
}

.sas-child-width-1-2>* {
    width: 50%
}

.sas-child-width-1-3>* {
    width: calc(100% * 1 / 3.001)
}

.sas-child-width-1-4>* {
    width: 25%
}

.sas-child-width-1-5>* {
    width: 20%
}

.sas-child-width-1-6>* {
    width: calc(100% * 1 / 6.001)
}

.sas-child-width-auto>* {
    width: auto
}

.sas-child-width-expand>:not([class*='sas-width']) {
    flex: 1;
    min-width: 1px
}

@media (min-width:640px) {
    .sas-child-width-1-1\@s>* {
        width: 100%
    }
    .sas-child-width-1-2\@s>* {
        width: 50%
    }
    .sas-child-width-1-3\@s>* {
        width: calc(100% * 1 / 3.001)
    }
    .sas-child-width-1-4\@s>* {
        width: 25%
    }
    .sas-child-width-1-5\@s>* {
        width: 20%
    }
    .sas-child-width-1-6\@s>* {
        width: calc(100% * 1 / 6.001)
    }
    .sas-child-width-auto\@s>* {
        width: auto
    }
    .sas-child-width-expand\@s>: not([class*='sas-width']) {
        flex: 1;
        min-width: 1px
    }
}

@media (min-width:960px) {
    .sas-child-width-1-1\@m>* {
        width: 100%
    }
    .sas-child-width-1-2\@m>* {
        width: 50%
    }
    .sas-child-width-1-3\@m>* {
        width: calc(100% * 1 / 3.001)
    }
    .sas-child-width-1-4\@m>* {
        width: 25%
    }
    .sas-child-width-1-5\@m>* {
        width: 20%
    }
    .sas-child-width-1-6\@m>* {
        width: calc(100% * 1 / 6.001)
    }
    .sas-child-width-auto\@m>* {
        width: auto
    }
    .sas-child-width-expand\@m>: not([class*='sas-width']) {
        flex: 1;
        min-width: 1px
    }
}

@media (min-width:1200px) {
    .sas-child-width-1-1\@l>* {
        width: 100%
    }
    .sas-child-width-1-2\@l>* {
        width: 50%
    }
    .sas-child-width-1-3\@l>* {
        width: calc(100% * 1 / 3.001)
    }
    .sas-child-width-1-4\@l>* {
        width: 25%
    }
    .sas-child-width-1-5\@l>* {
        width: 20%
    }
    .sas-child-width-1-6\@l>* {
        width: calc(100% * 1 / 6.001)
    }
    .sas-child-width-auto\@l>* {
        width: auto
    }
    .sas-child-width-expand\@l>: not([class*='sas-width']) {
        flex: 1;
        min-width: 1px
    }
}

@media (min-width:1600px) {
    .sas-child-width-1-1\@xl>* {
        width: 100%
    }
    .sas-child-width-1-2\@xl>* {
        width: 50%
    }
    .sas-child-width-1-3\@xl>* {
        width: calc(100% * 1 / 3.001)
    }
    .sas-child-width-1-4\@xl>* {
        width: 25%
    }
    .sas-child-width-1-5\@xl>* {
        width: 20%
    }
    .sas-child-width-1-6\@xl>* {
        width: calc(100% * 1 / 6.001)
    }
    .sas-child-width-auto\@xl>* {
        width: auto
    }
    .sas-child-width-expand\@xl>: not([class*='sas-width']) {
        flex: 1;
        min-width: 1px
    }
}
/*
| ====================================================================
| = BLOG LAYOUTS
| ====================================================================
*/

/* Grid Layout */
.sas-grid_blog_container .grid__post--content_holder:nth-child(5) {
    margin-bottom: 0;
}
/* Classic Layout */
.sas-classic_blog_container .classic__post--content_holder:nth-child(5) {
    margin-bottom: 0;
}

/* Ajax Grid Loading */
.sas-post_loadmore span:nth-child(2) {
	opacity: 0;
	display: none;
}
.sas-post_loadmore.sas-load-more-loading span:nth-child(1) {
	opacity: 0;
	display: none;
}
.sas-post_loadmore.sas-load-more-loading span:nth-child(2) {
	opacity: 1;
	display: block;
}




/*
| ====================================================================
| = MAP WIDGET
| ====================================================================
*/
.bdt-alert-warning {
    background: #fff6ee;
    color: #faa05a;
}
.bdt-alert {
    position: relative;
    margin-bottom: 20px;
    padding: 15px 29px 15px 15px;
    background: #f8f8f8;
    color: #666;
}

.bdt-alert-close {
    position: absolute;
    top: 20px;
    right: 15px;
}
.bdt-close {
    color: #999;
}
.bdt-icon {
    margin: 0;
    border: none;
    border-radius: 0;
    overflow: visible;
    font: inherit;
    color: inherit;
    text-transform: none;
    padding: 0;
    background-color: transparent;
    display: inline-block;
    fill: currentcolor;
    line-height: 0;
}
/* Google Map Widget */
.bdt-advanced-gmap{min-height:360px;height:100%;width:100% !important}


/*
| ===================================================================
| ====== Isotope FILTER (portfolio)
| ===================================================================
*/
.sas-iso_filter {
	text-align: center;
	position: relative;
    z-index: 1;
}
.sas-iso_filter ul{
	list-style: none;
	margin: 0;
	padding: 0;
}
.sas-iso_filter ul li{
	display: inline-block;
	border: none;
	color: #333;
	font-size: 12px;
	line-height: 14px;
	text-transform: uppercase;
	cursor: pointer;
	transition: color 0.2s linear;
	-moz-transition: color 0.2s linear;
	-webkit-transition: color 0.2s linear;
	-o-transition: color 0.2s linear;
}
.sas-iso_filter ul li:hover{
	color: #999;
	
}
.sas-iso_filter ul li.sas-current{
	color: #5f5f60;
}


/*
| ===================================================================
| ====== PORTFOLIO STYLE 1
| ===================================================================
*/
.sas-style_1 .tile {
	display: block;
	text-align: left;
	opacity: .99;
	overflow: hidden;
	position: relative;
}
.sas-style_1 .tile:before {
	content: '';
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
	width: 100%;
	height: 50%;
	opacity: 0;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 2;
	transition-property: top, opacity;
	transition-duration: 0.3s;
}
.sas-style_1 .tile img {
	display: block;
	max-width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.sas-style_1 .tile .details {
	font-size: 16px;
	padding: 20px;
	color: #fff;
	position: absolute;
	bottom: 0;
	left: 0;
	z-index: 3;
}
.sas-style_1 .tile .details span {
	display: block;
	opacity: 0;
	position: relative;
	top: 100px;
	transition-property: top, opacity;
	transition-duration: 0.3s;
	transition-delay: 0s;
}
.sas-style_1 .tile .details .title {

}
.sas-style_1 .tile .details .category {

}
.sas-style_1 .tile:focus:before,
.sas-style_1 .tile:focus span, 
.sas-style_1 .tile:hover:before,
.sas-style_1 .tile:hover span {
	opacity: 1;
}
.sas-style_1 .tile:focus:before, 
.sas-style_1 .tile:hover:before {
	top: 50%;
}
.sas-style_1 .tile:focus span, 
.sas-style_1 .tile:hover span {
	top: 0;
}
.sas-style_1 .tile:focus .title, .sas-style_1 .tile:hover .title {
	transition-delay: 0.15s;
}
.sas-style_1 .tile:focus .category, .sas-style_1 .tile:hover .category {
	transition-delay: 0.25s;
}


/*
| ===================================================================
| ====== PORTFOLIO STYLE 2 & 4
| ===================================================================
*/
.sas-style_2 .tile,
.sas-style_4 .tile {
	box-sizing: content-box;
	overflow: hidden;
	display: block;
	color: white;
	position: relative;
}
.sas-style_2 .tile img,
.sas-style_4 .tile img {
	display: block;
	max-width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.sas-style_2 .details,
.sas-style_4 .details {
	position: absolute;
	bottom: 5px;
	left: 20px;
	opacity: 0.0;
	transition: transform 0.3s ease, opacity 0.3s ease;
}
.sas-style_2 .grid__portfolio--img,
.sas-style_4 .grid__portfolio--img {
	position: relative;
}
.sas-style_2 .box_mask,
.sas-style_4 .box_mask {
	width: 100%;
	height: 100%;
	background-color:rgba(0, 0, 0, 0);
	position: absolute;
	top: 0;
	left: 0;
	transition: background-color 0.3s ease;
}
.sas-style_2 .grid__portfolio--img:hover .box_mask,
.sas-style_4 .grid__portfolio--img:hover .box_mask  {
	background-color:rgba(0, 0, 0, 0.5);
}
.sas-style_2 .tile:hover .details,
.sas-style_4 .tile:hover .details {
	transform: translateY(-20px);
	opacity: 1.0;
}
.sas-style_2 .details span,
.sas-style_4 .details span {
	display: block;
}
.sas-style_2 .details span.title,
.sas-style_4 .details span.title {
	font-size: 30px;
}
.sas-style_2 .details span.category,
.sas-style_4 .details span.category {
	font-size: 12px;
}

/*
| ===================================================================
| ====== PORTFOLIO STYLE 3
| ===================================================================
*/
.sas-style_3 .tile {
	box-sizing: content-box;
	overflow: hidden;
	display: block;
	color: white;
	position: relative;
}
.sas-style_3 .tile img {
	display: block;
	max-width: 100%;
	backface-visibility: hidden;
	-webkit-backface-visibility: hidden;
}
.sas-style_3 .details {
	position: absolute;
	opacity: 0.0;
	transition: transform 0.3s ease, opacity 0.3s ease;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-align: center;
}
.sas-style_3 .box_mask {
	width: 100%;
	height: 100%;
	background-color:rgba(0, 0, 0, 0);
	position: absolute;
	top: 0;
	left: 0;
	transition: background-color 0.3s ease;
}
.sas-style_3 .tile:hover .box_mask {
	background-color:rgba(0, 0, 0, 0.5);
}
.sas-style_3 .tile:hover .details {
	opacity: 1.0;
}
.sas-style_3 .details span {
	display: block;
}
.sas-style_3 .details span.title {
	font-size: 30px;
}
.sas-style_3 .details span.category {
	font-size: 12px;
}

/*
| ===================================================================
| ====== PORTFOLIO STYLE 4
| ===================================================================

.sas-style_4 .tile {
	display: block;
}
.sas-style_4 .img-container {
	width: 100%;
	margin: 0px;
	overflow: hidden;
}
.sas-style_4 .img-container:hover .img-content-hover {
	display: block;
}
.sas-style_4 .img-container img {
	display: block;
	max-width: 100%;
	height: auto;
	-o-object-fit: cover;
	object-fit: cover;
	-webkit-transform: scale(1);
	-ms-transform: scale(1);
	transform: scale(1);
	-webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.sas-style_4 .img-container img:hover {
	-webkit-transform: scale(2.05);
	-ms-transform: scale(2.05);
	transform: scale(2.05);
}
.sas-style_4 .img-container .img-content-hover {
	position: absolute;
	z-index: 1;
	white-space: nowrap;
	display: none;
	padding: 1rem;
	background: #fff;
	font-weight: 400;
	margin-top: 1.25rem;
	margin-left: -2rem;
}
.sas-style_4 .img-container .title {
	color: #2e2e2e;
	font-size: 1.5rem;
	font-weight: 700;
}
.sas-style_4 .img-container .category {
	font-size: 1rem;
	color: #787878;
}
.sas-style_4 .img-container .img-content {
	display: none;
}
*/
/*
| ====================================================================
| = FANCY HEADING
| ====================================================================
*/

.sas-fancy-heading .sas-sub-heading-content,
.sas-fancy-heading .sas-main-heading {
    display: inline-block;
    vertical-align: middle;
}
.sas-main-heading > .sas-main-heading-inner,
.sas-fancy-heading .sas-main-heading > .sas-main-split-text {
    display: inline-flex;
    box-sizing: border-box;
}
.sas-main-heading-inner,
.sas-main-split-text,
.sas-sub-heading {
	z-index: 1;
	position: relative;
}

/* Outline class */
.sas-heading_outline {
	-webkit-text-fill-color: white; 
	-webkit-text-stroke-width: 1px;
	-webkit-text-stroke-color: black;
}

/* Gradient class */
.sas-heading_gradient {
	position: relative;
}

/* Background Text */
.sas-background_heading_content {
    width: 100%;
    position: absolute;
    
    color: rgba(156,156,156,0.12);
    z-index: 0;
    font-size: 60px;
    text-transform: uppercase;
    font-weight: 700;
    line-height: 1;
}
.sas-background_heading_content > div {
    background-color: transparent;
}
.sas-background_color-yes .sas-background_heading_content > div {
    background-color: transparent;
    background-image: linear-gradient(240deg, #0E83CD 0, #8062d4 100%);
    background-clip: text;
    text-fill-color: transparent;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sas-background_heading_content > div {
	transform: translate(0px, -50px) rotate(0deg);
}



/*
| ====================================================================
| = TESTIMONIAL
| ====================================================================
*/


/* == Loading Slick Slider */
.sas-testimonials_slide { 
	opacity: 0; 
}
.sas-testimonials_slide.slick-initialized  { 
	opacity: 1;
	position: relative;
	transition: opacity 0.2s ease-in;	
}

/* == Testimonials Style */
.sas-testimonials_slide div:focus{
	outline:none;
}
.sas-testimonials_slide .wrap_description {
	margin: 0 auto;
	color: var(--El_def_one); 
}
.sas-testimonials_slide .description {
	margin-bottom: 20px;
}

/* == Meta */
.sas-testimonials_slide .cont_meta_showcase {
	align-items: center;
    margin: 0 auto;
}
.sas-testimonials_slide .meta_showcase p {
	margin: 0rem;
}

/* == Icon & Image Style1 */
.sas-testimonials_style_1 .wrap_img_icon,
.sas-testimonials_style_3 .wrap_img_icon {
	text-align: center;
	margin-bottom: 15px;
}
.sas-testimonials_slide .wrap_testimonial_icon {
	font-size: 60px;
	text-align: center;
}
.sas-testimonials_style_1 .wrap_testimonial_icon img {
	margin: 0 auto;
} 

.sas-testimonials_style_1 .wrap_avatar_image {
	margin: 0 auto;
}
/* == Icon & Image Style2 */
.sas-testimonials_slide .wrap_avatar_image img {
	width: 75px;
	margin-bottom: 0.3125rem;
	margin: 0 auto;
	border-radius: 100%;
	height: 75px;
}
.sas-testimonials_style_2 .wrap_avatar_image {
	display: block;
	margin-right: 1.25rem;
	text-align: center;
	max-width: 4.6875rem;
}
.sas-testimonials_style_2 .wrap_img_icon .wrap_testimonial_icon {
	margin-right: 20px;
}


@media (max-width:1000px) {
	.sas-testimonials_slide .cont_meta_showcase {
		display: block;
	}
	.sas-testimonials_slide .wrap_avatar_image {
	    max-width: 100%;
	    width: 100%;
	    margin-right: 0;
	}
	.sas-testimonials_slide .meta_showcase  {
		text-align: center;
		margin-top: 15px;
	}
	.sas-testimonials_style_2 .cont_meta_showcase {
	flex-direction: column;
	}
}

/* == Fade & opacity external slide  */
.sas-testimonials_slide .slick-cloned,
.sas-testimonials_slide .slick-slide {
	opacity: 0.3;
	-webkit-transition: -webkit-transform 1s ease 0s, opacity .7s ease 0s;
    -moz-transition: -moz-transform 1s ease 0s, opacity .7s ease 0s;
    -ms-transition: -ms-transform 1s ease 0s, opacity .7s ease 0s;
    -o-transition: -o-transform 1s ease 0s, opacity .7s ease 0s;
    transition: transform 1s ease 0s, opacity .7s ease 0s
}
.sas-testimonials_slide .slick-active {
	opacity: 1;
	-webkit-transition: -webkit-transform 1s ease 0s, opacity .7s ease 0s;
    -moz-transition: -moz-transform 1s ease 0s, opacity .7s ease 0s;
    -ms-transition: -ms-transform 1s ease 0s, opacity .7s ease 0s;
    -o-transition: -o-transform 1s ease 0s, opacity .7s ease 0s;
    transition: transform 1s ease 0s, opacity .7s ease 0s
}

/* == Testimonials arrow navigation */
button[type='button'].slick-prev {
	background: transparent !important;
	border: none;
}
.sas-testimonials_slide .slick-prev:before, .sas-testimonials_slide [dir="rtl"] .slick-prev:before {
    display: none;
}
.sas-testimonials_slide .slick-next:before, .sas-testimonials_slide [dir="rtl"] .slick-next:before {
    display: none;
}

.sas-testimonials_slide .slick-arrow {
    position: absolute;
    top: 0;
    height: 100%;
    padding: 0;
    background: none;
    border: none;
    font-size: 0;
    z-index: 15;
    outline: none;
    cursor: pointer;
}

.sas-testimonials_slide .slick-prev,
.sas-testimonials_slide .slick-next {
	opacity: 0;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
}

.sas-testimonials_slide.slick-slider:hover .slick-prev,
.sas-testimonials_slide.slick-slider:hover .slick-next {
	opacity: 1;
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
}

.sas-testimonials_slide .slick-prev:hover:before,
.sas-testimonials_slide .slick-prev:focus:before {
	transition: all 0.3s ease 0s;
	-webkit-transition: all 0.3s ease 0s;
	-o-transition: all 0.3s ease 0s;
	-moz-transition: all 0.3s ease 0s;
	opacity: 1;
}
.sas-testimonials_slide button.slick-prev,
.sas-testimonials_slide button.slick-next,
.sas-testimonials_slide button.slick-prev i,
.sas-testimonials_slide button.slick-next i {
	color: var(--El_def_one);
}

/* Text arrow */
.sas-testimonials_slide button.slick-prev {
	color: var(--El_def_one);
	font-size: 18px;
}
.sas-testimonials_slide button.slick-next {
	color: var(--El_def_one);
	font-size: 18px;
}



/* === Dots ===  */ 
	.sas-testimonials_slide .slick-dots {
		display: flex;
		justify-content: center;
		width: 100%;
		margin: 0;
		padding: 1rem 0;
		list-style-type: none;
		z-index: 11;
		position: relative;
	}
	.sas-testimonials_slide .slick-dots li {
		margin: 0 0.25rem;
	}
	.sas-testimonials_slide .slick-dots li button {
		display: block;
		padding: 0;
		border: none;
		border-radius: 100%;
		background-color: var(--El_def_three);
		text-indent: -9999px;
		width: 10px;
		height: 10px;
	}
	.sas-testimonials_slide .slick-dots li.slick-active button {
		background-color: var(--El_def_one);
	}


/* == Testimonials STYLE */
.sas-testimonials_style_1,
.sas-testimonials_style_3 {
	text-align: center;
}
.sas-testimonials_style_1 .sas-testimonials_slide .wrap_description,
.sas-testimonials_style_3 .sas-testimonials_slide .wrap_description {
	max-width: 850px;
}
.sas-testimonials_style_2 .cont_meta_showcase {
	width: 100%;
}
.sas-testimonials_style_3 .cont_meta_showcase {
	width: 100%;
	text-align: center;
}
.sas-testimonials_style_2 .sas-testimonial_meta_inner,
.sas-testimonials_style_3 .sas-testimonial_meta_inner {
    display: inline-block;
}
.sas-testimonials_style_2 .wrap_img_icon,
.sas-testimonials_style_3 .wrap_img_icon {
	display: table-cell;
    vertical-align: middle;
    padding-right: 10px;
}
.sas-testimonials_style_2 .meta_showcase,
.sas-testimonials_style_3 .meta_showcase {
	display: table-cell;
    vertical-align: middle;
    text-align: left;
}


/*
| ====================================================================
| = INSTAGRAM (sas Custom)
| ====================================================================
*/

.sas-instagram .sas-instagram-item img {
    width: 100%;
    object-fit: cover;
    vertical-align: bottom;
}

.sas-instagram .sas-grid {
	margin-left: 0px !important;
}


/*
| ====================================================================
| = Circle Text
| ====================================================================
*/


#id_rotate_text {
	opacity:0;
}

/*
| ====================================================================
| = Post Data
| ====================================================================
*/

.sas-dinamic_featured_image {
	display: -ms-flexbox;
    display: flex;
}


/*
| ====================================================================
| = CART
| ====================================================================
*/

.sas-cart_container {
	display: flex;
	display: -ms-flexbox;
}
.cart-icon-wrapper {
    display: inline-block;
}
.cart_menu {
	margin: 0px 0;
}
.cart-icon-wrapper .cart_menu div {
	display: inline-block;
}
.cart-icon-wrapper .cart_menu div:first-child {
	margin-left: 0;
	margin-right: 10px;
	display: inline-block;
    cursor: pointer;
	font-size: 15px; /* Cart icon size */
	color: var(--El_def_one); 
}
.cart_icon,
a.cart_icon {
	color: var(--El_def_one); 
	transition: all 0.8s ease 0s;
	-webkit-transition: all 0.8s ease 0s;
	-o-transition: all 0.8s ease 0s;
	-moz-transition: all 0.8s ease 0s;

}
.cart_icon:hover,
a.cart_icon:hover {
	color: var(--El_def_three); 
}
/* Count number
* ------------------------------------------ */
.cart-icon-wrapper .cart_menu  div.count_icon {
	color: var(--El_def_two); 
	background-color: var(--El_def_one);
	padding: 2px;
	font-size: 11px;
	text-align: center;
	box-sizing: content-box;
	min-width: 12px;
	border-radius: 50px 50px 50px 50px;
	position: absolute;
	margin: -23px 0 0 -6px; /* Count Position */
}

/*
| ====================================================================
| = PRODUCT SLIDER
| ====================================================================
*/

.bottom-bar {
	padding: 10px 50px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}