/* Review Slider CSS */
.al-carousel-container .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    /*transition: all 200ms linear;*/
    /*transform: scale(0.8);*/
    flex-direction: column;
    flex-wrap: wrap;
    opacity: 0.4;
}
.al-carousel-container .swiper-slide .review-carousel-thumb {
    transition: all 200ms linear;
    transform: scale(0.7);
}
.al-carousel-container .carousel-item.swiper-slide.swiper-slide-active {
    /*transform: scale(1);*/
    opacity: 1;
}
.al-carousel-container .carousel-item.swiper-slide.swiper-slide-active .review-carousel-thumb {
    transform: scale(1);
}
.review-carousel-thumb {
    height: 260px;
    width: 100%;
    margin-bottom: 25px;
}
.al-carousel-container .review-carousel-thumb img {
    width: 100%;
    height: 100% ;
    object-fit: cover;
    object-position: center;
}
.review-carousel-title {
    font-family: Heebo;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
    margin-bottom: 10px;
    color: #1A1A1A;
    margin-top: -45px;
    transition: all 200ms linear;
}
.al-carousel-container .carousel-item.swiper-slide.swiper-slide-active .review-carousel-title {
    margin-top: 0;
}
.review-carousel-description {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    color: #666666;
}
.review-carousel-author {
    font-size: 14px;
    font-weight: 700;
}
.al-carousel-container .swiper-pagination {
    position: static;
    margin-top: 20px;
}
.al-carousel-container .swiper-pagination-bullet {
    transition: all 200ms linear;
}
.al-carousel-container .swiper-pagination-bullet-active {
    transform: scale(1.3);
}
.al-carousel-container .swiper-wrapper {
    min-height: 400px;
}


/* END Review Slider CSS */


/* Pix Menu CSS */
ul#pix-menu-ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: center;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  margin-left: 0;
}
ul#pix-menu-ul > li > a {
  color: #ffffff;
  padding: 0px 15px 0px 15px;
  font-size: 15px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  text-transform: none;
  font-weight: 500;
  letter-spacing: normal;
  line-height: 50px;
  display: inline-block;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
}
ul#pix-menu-ul > li > a:hover {
  color: #0baaf7;
}

/* Pix Menu CSS END */



/* Ajax Search CSS */
.morphsearch {
	width: 200px;
	min-height: 40px;
	background: #f1f1f1;
	position: absolute;
	z-index: 10000;
	top: 39px;
	left: 50px;
	-webkit-transform-origin: 100% 0;
	transform-origin: 100% 0;
	-webkit-transition-property: min-height, width, top, right, left;
	transition-property: min-height, width, top, right, left;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}
.elem_search_bar.morphsearch {
    top: 0;
    right: 0;
    left: 0;
    max-width: 100%;
    opacity: 0;
    z-index: -1;
}
.morphsearch.open {
    position: fixed;
    width: 100%;
    min-height: 100%;
    top: 0px;
    left: 0px;
    opacity: 1;
    z-index: 9999;
    /* right: 0px; */
    height: 100vh;
    overflow: hidden;
    overflow-y: scroll;
}

.morphsearch-form {
	width: 100%;
	height: 40px;
	margin: 0 auto;
	position: relative;
	-webkit-transition-property: width, height, -webkit-transform;
	transition-property: width, height, transform;
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.morphsearch.open .morphsearch-form {
	width: 80%;
	height: 160px;
	-webkit-transform: translate3d(0,3em,0);
	transform: translate3d(0,3em,0);
}

.morphsearch-input {
	width: 100%;
	height: 100%;
	padding: 0 10% 0 10px;
	font-weight: 700;
	border: none;
	background: transparent;
	font-size: 0.8em;
	color: var( --e-global-color-primary );
	-webkit-transition: font-size 0.5s cubic-bezier(0.7,0,0.3,1);
	transition: font-size 0.5s cubic-bezier(0.7,0,0.3,1);
}

.morphsearch-input::-ms-clear { /* remove cross in IE */
    display: none;
}

.morphsearch.hideInput .morphsearch-input {
	color: transparent;
	-webkit-transition: color 0.3s;
	transition: color 0.3s;
}

.morphsearch.open .morphsearch-input {
	font-size: 5em;
    border: none;
    outline: none;
}
.elem_widget_search_input {
    margin-left: 10px;
}
.elem_widget_search_input.alr_search_icon {
    position: relative;
    width: 35px;
}
.elem_widget_search_input.alr_search_icon input.elem_input_search {
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    height: 36px;
    position: relative;
    z-index: 1;
}
.elem_widget_search_input.alr_search_icon i {
    color: #fff;
    position: absolute;
    left: 0;
    font-size: 18px;
    line-height: 2;
    cursor: pointer;
}

/* placeholder */
.morphsearch-input::-webkit-input-placeholder {
	color: #c2c2c2;
}

.morphsearch-input:-moz-placeholder {
	color: #c2c2c2;
}

.morphsearch-input::-moz-placeholder {
	color: #c2c2c2;
}

.morphsearch-input:-ms-input-placeholder {
	color: #c2c2c2;
}

/* hide placeholder when active in Chrome */
.gn-search:focus::-webkit-input-placeholder {
	color: transparent;
}

input[type="search"] { /* reset normalize */
	-webkit-box-sizing: border-box; 
	box-sizing: border-box;	
}

.morphsearch-input:focus,
.morphsearch-submit:focus {
	outline: none;
}

.morphsearch-submit {
	position: absolute;
	width: 80px;
	height: 80px;
	text-indent: 100px;
	overflow: hidden;
	right: 0;
	top: 50%;
	background: transparent url(../img/magnifier.svg) no-repeat center center;
	background-size: 100%;
	border: none;
	pointer-events: none;
	transform-origin: 50% 50%;
	opacity: 0;
	-webkit-transform: translate3d(-30px,-50%,0) scale3d(0,0,1);
	transform: translate3d(-30px,-50%,0) scale3d(0,0,1);
}

.morphsearch.open .morphsearch-submit {
	pointer-events: auto;
	opacity: 1;
	-webkit-transform: translate3d(-30px,-50%,0) scale3d(1,1,1);
	transform: translate3d(-30px,-50%,0) scale3d(1,1,1);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.morphsearch-close {
	width: 36px;
	height: 36px;
	position: absolute;
	right: 1em;
	top: 2em;
	overflow: hidden;
	text-indent: 100%;
	cursor: pointer;
	pointer-events: none;
	opacity: 0;
	-webkit-transform: scale3d(0,0,1);
	transform: scale3d(0,0,1);
}

.morphsearch.open .morphsearch-close {
	opacity: 1;
	pointer-events: auto;
	-webkit-transform: scale3d(1,1,1);
	transform: scale3d(1,1,1);
	-webkit-transition: opacity 0.3s, -webkit-transform 0.3s;
	transition: opacity 0.3s, transform 0.3s;
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.morphsearch-close::before,
.morphsearch-close::after {
	content: '';
	position: absolute;
	width: 2px;
	height: 100%;
	top: 0;
	left: 50%;
	border-radius: 3px;
	opacity: 0.2;
	background: #000;
}

.morphsearch-close:hover.morphsearch-close::before,
.morphsearch-close:hover.morphsearch-close::after {
	opacity: 1;
}

.morphsearch-close::before {
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
}

.morphsearch-close::after {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.morphsearch-content {
	color: #333;
	margin-top: 8.5em;
	width: 100%;
	height: 0;
	overflow: hidden;
	padding: 0 10.5%;
	background: #f1f1f1;
	position: absolute;
	pointer-events: none;
	opacity: 0;
}

.morphsearch.open .morphsearch-content {
	opacity: 1;
	height: auto;
	overflow: visible; /* this breaks the transition of the children in FF: https://bugzilla.mozilla.org/show_bug.cgi?id=625289 */
	pointer-events: auto;
	-webkit-transition: opacity 0.3s 0.5s;
	transition: opacity 0.3s 0.5s;
}

.dummy-column {
	width: 100%;
	padding: 0 0 6em;
	float: right;
	opacity: 0;
	-webkit-transform: translate3d(0,100px,0);
	transform: translateY(100px);
	-webkit-transition: -webkit-transform 0.5s, opacity 0.5s;
	transition: transform 0.5s, opacity 0.5s;
}

.morphsearch.open .dummy-column:first-child {
	-webkit-transition-delay: 0.4s;
	transition-delay: 0.4s;
}

.morphsearch.open .dummy-column:nth-child(2) {
	-webkit-transition-delay: 0.45s;
	transition-delay: 0.45s;
}

.morphsearch.open .dummy-column:nth-child(3) {
	-webkit-transition-delay: 0.5s;
	transition-delay: 0.5s;
}

.morphsearch.open .dummy-column {
	opacity: 1;
	-webkit-transform: translate3d(0,0,0);
	transform: translate3d(0,0,0);
}

.dummy-column:nth-child(2) {
	margin: 0 5%;
}

.dummy-column h2 {
	font-size: 1em;
	letter-spacing: 1px;
	text-transform: uppercase;
	font-weight: 800;
	color: #c2c2c2;
	padding: 0.5em 0;
	margin: 0;
}
.searchresult-column-cont {
    display: flex;
    flex-wrap: wrap;
}
.searchresult-column-cont .dummy-media-object {
    flex-grow: 1;
    width: calc(33.333% - 0.6em);
    height: 90px;
    margin-left: 0.6em;
    display: flex;
    align-items: center;
    max-width: calc(33.333% - 0.6em);
}

.round {
	border-radius: 50%;
}

.dummy-media-object {
	padding: 0.75em;
	display: block;
	margin: 0.3em 0;
	cursor: pointer;
	border-radius: 5px;
	background: rgba(118,117,128,0.05);
}

.dummy-media-object:hover,
.dummy-media-object:focus {
	background: rgba(118,117,128,0.1);
}

.dummy-media-object img {
	display: inline-block;
	width: 50px;	
	margin: 0 10px 0 10px;
	vertical-align: middle;
}

.dummy-media-object h3 {
	vertical-align: middle;
	font-size: 0.85em;
	display: inline-block;
	font-weight: 700;
	margin: 0 0 0 0;
	width: calc(100% - 70px);
	color: rgba(145,145,145,0.7);
}

.dummy-media-object:hover h3 {
	color: rgba(236,90,98,1);
}
input.elem_input_search {
    background-image: url(../images/search-icon.svg);
    background-repeat: no-repeat;
    background-position: 10px center;
    max-width: 125px;
    float: left;
}
/* Overlay */
.overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	opacity: 0;
	pointer-events: none;
	-webkit-transition: opacity 0.5s;
	transition: opacity 0.5s;
	-webkit-transition-timing-function: cubic-bezier(0.7,0,0.3,1);
	transition-timing-function: cubic-bezier(0.7,0,0.3,1);
}

.morphsearch.open ~ .overlay {
	opacity: 1;
}

@media screen and (max-width: 53.125em) {
	.morphsearch-input {
		padding: 0 25% 0 10px;
	}
	.morphsearch.open .morphsearch-input {
		font-size: 2em;
	}
	.dummy-column {
		float: none;
		width: auto;
		padding: 0 0 2em;
	}
	.dummy-column:nth-child(2) {
		margin: 0;
	}
	.morphsearch.open .morphsearch-submit {
		-webkit-transform: translate3d(0,-50%,0) scale3d(0.5,0.5,1);
		transform: translate3d(0,-50%,0) scale3d(0.5,0.5,1);
	}
}

@media screen and (max-width: 60.625em) {
	.morphsearch {
		width: 80%;
		top: 10%;
		right: 10%;
	}
}

/*For 320-384px up Mobile Layout*/
@media (max-width: 767px) {
    
.elem_widget_search_input.alr_search_icon {
    width: 25px;
}
.elem_widget_search_input.alr_search_icon input.elem_input_search {
    caret-color: transparent;
}
.searchresult-column-cont .dummy-media-object {
    width: calc(100%);
    margin-left: 0;
    max-width: calc(100%);
}
.al-carousel-container .swiper-slide .review-carousel-thumb {
    transform: scale(1);
}
.review-carousel-title {
    margin-top: 0;
}

    
}

/* END Ajax Search CSS */