/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */


/*
 *  Owl Carousel - Core
 */

.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage: after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}
.owl-dots {
	text-align:center;
    margin-top: 2px;
}
.owl-carousel button.owl-dot {
	width: 70px;
    height: 3px;
    padding: 0;
    background-color: #4061b2;
    border-radius: 5px;
    margin: 0 5px;
    display: inline-block;
    outline: none;
    cursor: pointer;
    position: relative;
}
.owl-carousel button.owl-dot { padding-top:26px}
.owl-carousel button.owl-dot.active {
	background-color:#9fafd8;
}
.owl-carousel button.owl-dot.active:after {
    position: absolute;
    top: 3px;
    right: 3px;
    bottom: 3px;
    left: 3px;
    content: '';
    border-radius: 100%;
    background-color: #cdd2d8;
    width: 7px;
    height: 7px;
	display:none;
}
.owl-carousel .owl-nav {
	max-width: 100%;
	position:relative;
	margin:0 auto;
	width:100%;
}
.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	width:37px;
	height:37px;
	border: 1px solid #4061b2;
    background-color: #fff;
	color:#9fafd8;
	border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -11px;
    z-index: 20;
    outline: none;
    font-size: 15px;
    line-height: 15px;
}
.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
	background: #cfd7ec;
	color:#fff;
}
.owl-carousel .owl-nav button.owl-prev {
	left:0;
}
.owl-carousel .owl-nav button.owl-next {
	right:0;
}
.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}


/* No Js */

.no-js .owl-carousel {
    display: block;
}


/*
 *  Owl Carousel - Animate Plugin
 */

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


/*
 * 	Owl Carousel - Auto Height Plugin
 */

.owl-height {
    transition: height 500ms ease-in-out;
}


/*
 * 	Owl Carousel - Lazy Load Plugin
 */

.owl-carousel .owl-item {
    /**
			This is introduced due to a bug in IE11 where lazy loading combined with autoheight plugin causes a wrong
			calculation of the height of the owl-item that breaks page layouts
		 */
}

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    transition: opacity 400ms ease;
}

.owl-carousel .owl-item .owl-lazy[src^=""],
.owl-carousel .owl-item .owl-lazy:not([src]) {
    max-height: 0;
}

.owl-carousel .owl-item img.owl-lazy {
    transform-style: preserve-3d;
}


/*
 * 	Owl Carousel - Video Plugin
 */

.owl-carousel .owl-video-wrapper {
    position: relative;
    height: 100%;
    background: #000;
}

.owl-carousel .owl-video-play-icon {
    position: absolute;
    height: 80px;
    width: 80px;
    left: 50%;
    top: 50%;
    margin-left: -40px;
    margin-top: -40px;
    background: url("owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    transition: transform 100ms ease;
}

.owl-carousel .owl-video-play-icon:hover {
    -ms-transform: scale(1.3, 1.3);
    transform: scale(1.3, 1.3);
}

.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
    display: none;
}
.owl-carousel .owl-video-tn {
    opacity: 0;
    height: 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
}


/*----------------*/
.owl-carousel .owl-dots {
    text-align: center;
    position: absolute;
    bottom: 9px;
    left: 0;
    width: 100%;
    height: 4px;
}
.owl-carousel .owl-nav {
    max-width: 100%;
    position: absolute;
    margin: 0 auto;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 2;
}
.experiences_right_slider .owl-carousel .owl-dots,
.experiences_left_slider .owl-carousel .owl-dots {
    bottom: 5px;
}
.experiences_right_slider .owl-carousel .owl-nav button.owl-prev, 
.experiences_right_slider .owl-carousel .owl-nav button.owl-next,
.experiences_left_slider .owl-carousel .owl-nav button.owl-prev, 
.experiences_left_slider .owl-carousel .owl-nav button.owl-next {
    width: 50px;
    height: 50px;
    border: 1px solid #fff;
    background-color: transparent;
    color: #fff;
}
.experiences_right_slider .owl-carousel .owl-nav button.owl-prev:hover, 
.experiences_right_slider .owl-carousel .owl-nav button.owl-next:hover,
.experiences_left_slider .owl-carousel .owl-nav button.owl-prev:hover, 
.experiences_left_slider .owl-carousel .owl-nav button.owl-next:hover {
    background: #fff;
    color: #416DDB;
}
.experiences_right_slider .owl-carousel .owl-dots,
.experiences_left_slider .owl-carousel .owl-dots {
    padding: 0 58px;
}
.experiences_left_slider .owl-carousel button.owl-dot {
    width: 200px;
    height: 2px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.45);
}
.experiences_left_slider .owl-carousel button.owl-dot.active {
    background-color: #fff;
}
.experiences_right_slider .owl-carousel button.owl-dot {
    height: 2px;
    padding: 0;
    background-color: rgba(255, 255, 255, 0.45);
}
.experiences_right_slider .owl-carousel button.owl-dot.active {
    background-color: #fff;
}
.experiences_right_slider .owl-carousel .owl-nav {
    max-width: 100%;
    position: absolute;
    margin: 0 auto 0 35px;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    max-width: 750px;
}

.course_treatment_wrap .owl-carousel .owl-stage {
    display: flex;
    padding-bottom: 105px;
}
.course_treatment_wrap .last_item .experiences_testimonial_bg { background-color: #fff3ef; }
.course_treatment_wrap .owl-item.active.last_item .author_img::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 3;
    background-color: rgba(255,243,239, 0.6);
	border-radius: 50%;
}
.course_treatment_wrap .owl-carousel .owl-dots,
.course_treatment_wrap .owl-carousel .owl-nav { max-width: 1070px; }
.course_treatment_wrap .owl-carousel button.owl-dot {
    width: 13.1%;
    background-color: #ffc6c6;
}
.course_treatment_wrap .owl-carousel .owl-dots { padding: 0 50px; }
.course_treatment_wrap .owl-carousel button.owl-dot.active { background-color: #ff8ab1; }
.course_treatment_wrap .owl-carousel .owl-nav button.owl-prev,
.course_treatment_wrap .owl-carousel .owl-nav button.owl-next {
    color: #ffc0c0;
    background-color: #ffebe5;
    border-color: #ff8db2;
}
.course_treatment_wrap .owl-carousel .owl-nav button.owl-prev:hover,
.course_treatment_wrap .owl-carousel .owl-nav button.owl-next:hover {
    background-color: #ffcccc;
    color: #fff;
}

.result_slider_wrap .owl-carousel .owl-stage-outer { padding-bottom: 29px; }

.result_slider_wrap .owl-item {
    position: relative;
    z-index: 11;
    opacity: 1;
}
.result_slider_wrap .owl-item.active { opacity: 1; z-index: 12 }
.result_slider_wrap .active .result_item {
    transform: scale(1.23, 1);
}
.result_slider_wrap .result_item {
    transition: 0.4s ease all;
    transform: scale( 0.78, 0.78);
}
.result_slider_wrap .owl-carousel .owl-nav {
    left: 0;
    right: 0;
    max-width: 120px;
    height: 0;
}

.upper_eyelid_wrap .owl-carousel .owl-dots {
    max-width: 1070px;
    display: flex;
    align-items: center;
    bottom: -11px;
    padding: 0 65px;
}
.clinics_carousel_box .owl-carousel .owl-dots {
    padding: 0 65px;
}

.clinics_carousel_box .owl-carousel button.owl-dot {
    width: 32%;
}
.upper_eyelid_wrap .owl-carousel button.owl-dot {
    width: 32.8%;
}
.clinics_carousel_box .owl-carousel button.owl-dot,
.upper_eyelid_wrap .owl-carousel button.owl-dot {
    background-color: #9fafd8;
}
.clinics_carousel_box .owl-carousel button.owl-dot.active,
.upper_eyelid_wrap .owl-carousel button.owl-dot.active {
    background-color: #4061b2;
}
.upper_eyelid_wrap .owl-carousel button.owl-dot:first-child,
.clinics_carousel_box .owl-carousel button.owl-dot:first-child { margin-left: 0; }
.clinics_carousel_box .owl-carousel button.owl-dot:last-child,
.upper_eyelid_wrap .owl-carousel button.owl-dot:last-child { margin-right: 0; }

.clinics_carousel_box .owl-carousel .owl-nav button.owl-prev { left: 14px; }
.clinics_carousel_box .owl-carousel .owl-nav button.owl-next { right: 14px; }

@media screen and (max-width: 991px ){
.owl-carousel .owl-nav.disabled, 
.owl-carousel .owl-dots.disabled {
    display: block
}
.experiences_left_slider .owl-carousel button.owl-dot {
    width: 70px;
    height: 2px;
}
.experiences_right_slider .owl-carousel .owl-nav button.owl-prev, 
.experiences_right_slider .owl-carousel .owl-nav button.owl-next,
.experiences_left_slider .owl-carousel .owl-nav button.owl-prev, 
.experiences_left_slider .owl-carousel .owl-nav button.owl-next {
    width: 36px;
    height: 36px;
}

.experiences_left_slider .owl-carousel .owl-dots {
    bottom: 9px;
}
.course_treatment_wrap .owl-carousel button.owl-dot {
    width: 27.78%;
}
.clinics_carousel_box .owl-carousel button.owl-dot { width: 32%; }

.result_slider_wrap .owl-carousel .owl-nav {
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    height: 0;
}
.result_slider_wrap .owl-carousel .owl-nav button.owl-prev { left: -6px; }
.result_slider_wrap .owl-carousel .owl-nav button.owl-next { right: -6px; }
.result_slider_wrap .owl-carousel .owl-nav button.owl-prev, 
.result_slider_wrap .owl-carousel .owl-nav button.owl-next {
    margin-top: -15px;
}

.result_slider_wrap .owl-item.active {
    opacity: 1;
	z-index: 3;
}
.result_slider_wrap .owl-item {
    opacity: 0.5;
	z-index: 1;
}
.result_slider_wrap .active .result_item {
    transform: scale(1.4, 1.4);
	z-index: 3;
}
.result_slider_wrap .result_item {
    transform: scale( 0.78, 1.2);
	z-index: 1;
}

}
@media screen and (max-width: 635px ){
    .experiences_right_slider .owl-carousel .owl-dots { bottom: 23px; }
    .clinics_carousel_box .owl-carousel button.owl-dot { width: 29.8%; }
}
@media screen and (max-width: 395px ){
    .experiences_left_slider .owl-carousel .owl-dots { bottom: 23px; }
    .experiences_right_slider .owl-carousel .owl-dots { bottom: 35px; }
}