.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
    z-index: 0;
}
.owl-carousel .owl-animated-out {
    z-index: 1;
}
.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}
@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* 
 *  Owl Carousel - Auto Height Plugin
 */

.owl-height {
    -webkit-transition: height 500ms ease-in-out;
    -moz-transition: height 500ms ease-in-out;
    -ms-transition: height 500ms ease-in-out;
    -o-transition: height 500ms ease-in-out;
    transition: height 500ms ease-in-out;
}
/* 
 *  Core Owl Carousel CSS File
 */

.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;
}
.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-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-prev {
    float: left;
    position: relative;
    left: 30px;
    text-indent: -99999px;
}
.owl-prev:after {
    content: "/";
    width: 20px;
    height: 2px;
    background: #ececec;
    position: absolute;
    left: 15px;
    top: 7px;
}
.owl-prev:hover:after,
.owl-next:hover:after {
    background: #E91E63;
}
.owl-next {
    float: right;
    position: relative;
    right: 30px;
    text-indent: -99999px;
}
.owl-next:after {
    content: "/";
    width: 20px;
    height: 2px;
    background: #ececec;
    position: absolute;
    right: 15px;
    top: 7px;
}
.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 {
    display: none;
}
.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
    -webkit-user-select: auto;
    -moz-user-select: auto;
    -ms-user-select: auto;
    user-select: auto;
}
.owl-carousel .owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    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 - Lazy Load Plugin
 */

.owl-carousel .owl-item .owl-lazy {
    opacity: 0;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
    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("file:///C|/Users/VINAY/Downloads/owl.carousel (1)/owl.carousel.2.0.0-beta.2.4/assets/owl.video.play.png") no-repeat;
    cursor: pointer;
    z-index: 1;
    -webkit-backface-visibility: hidden;
    -webkit-transition: scale 100ms ease;
    -moz-transition: scale 100ms ease;
    -ms-transition: scale 100ms ease;
    -o-transition: scale 100ms ease;
    transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
    -webkit-transition: scale(1.3, 1.3);
    -moz-transition: scale(1.3, 1.3);
    -ms-transition: scale(1.3, 1.3);
    -o-transition: scale(1.3, 1.3);
    transition: 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;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -o-background-size: contain;
    background-size: contain;
    -webkit-transition: opacity 400ms ease;
    -moz-transition: opacity 400ms ease;
    -ms-transition: opacity 400ms ease;
    -o-transition: opacity 400ms ease;
    transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
    position: relative;
    z-index: 1;
}
.owl-theme .owl-controls {
    -webkit-tap-highlight-color: transparent;
}
.owl-nav {
    position: absolute;
    top: 50%;
    width: 100%;
}
.owl-theme .owl-controls .owl-nav [class*=owl-] {
    font-size: 14px;
    margin: 5px;
    background: #fff;
    display: inline-block;
    cursor: pointer;
    border-radius: 100px;
    width: 15px;
    height: 15px;
    text-align: center;
    line-height: 30px;
	display:block;
}
.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
    background: #E91E63;
    color: #fff;
    text-decoration: none;
}
.owl-theme .owl-controls .owl-nav .disabled {
    opacity: .5;
    cursor: default;
}
.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    *display: inline;
    position: relative;
}
.owl-dots {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 30px;
}
.owl-theme .owl-dots .owl-dot span {
    display: block;
    width: 13px;
    height: 13px;
    margin: 5px 15px;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    border-radius: 20px;
    background: #fff;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity 200ms ease;
    -moz-transition: opacity 200ms ease;
    -ms-transition: opacity 200ms ease;
    -o-transition: opacity 200ms ease;
    transition: opacity 200ms ease;
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #E91E63!important;
}
.owl-dot span:after {
    content: "";
    width: 26px;
    height: 3px;
    background: #fff;
    bottom: -4px;
    position: absolute;
    left: 9px;
    right: 0;
}
.owl-dot.active span:after,
.owl-dot:hover span:after {
    background-color: #E91E63;
}

/* Slider Title
------------------------------------------------------*/

.slide-title {
    position: absolute;
    top: 88px;
    transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    width: 50%;
}
.slide-title h2 {
    color: #fff;
    font-size: 60px;
}
.slide-title p {
    font-size: 20px;
    font-weight: 100;
    line-height: 35px;
    color: #fff!important;
}
.slide-title a {
    float: left;
    display: block;
    margin-right: 23px;
    margin-top: 45px;
    padding: 15px 25px;
    font-size: 15px;
    letter-spacing: 1px;
    font-weight: 100;
}
.left-align {
    float: left;
    position: absolute;
    left: 773px;
}
.right-align {
    float: left;
    position: absolute;
    right: 0;
    height: 117px;
}
/* Artist Title
------------------------------------------------------*/

.artist-title {
    width: 100%;
    position: absolute;
    bottom: 0;
}
.color {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 100%);
}
.color-1 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(244, 67, 54, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(244, 67, 54, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(244, 67, 54, 1) 100%);
}
.color-2 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(233, 30, 99, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(233, 30, 99, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(233, 30, 99, 1) 100%);
}
.color-3 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(156, 39, 176, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(156, 39, 176, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(156, 39, 176, 1) 100%);
}
.color-4 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(103, 58, 183, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(103, 58, 183, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(103, 58, 183, 1) 100%);
}
.color-5 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(21, 101, 192, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(21, 101, 192, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(21, 101, 192, 1) 100%);
}
.color-6 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(76, 175, 80, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(76, 175, 80, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(76, 175, 80, 1) 100%);
}
.color-7 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(255, 87, 34, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(255, 87, 34, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(255, 87, 34, 1) 100%);
}
.color-8 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 150, 136, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(0, 150, 136, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 150, 136, 1) 100%);
}
.color-9 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(121, 85, 72, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(121, 85, 72, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(121, 85, 72, 1) 100%);
}
.color-10 {
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(96, 125, 139, 1) 100%);
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 0%, rgba(96, 125, 139, 1) 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(96, 125, 139, 1) 100%);
}
.artist-title {
    color: #fff;
    padding: 80px 0px 30px 0px;
}
.artist-title h4 {
    margin-bottom: 5px;
    color: #fff;
    padding: 0 30px;
}
.artist-title p {
    color: #fff!important;
    font-size: 15px;
    padding: 0 30px;
}
.artist-title i {
    margin-right: 10px;
    color: #333!important;
    font-size: 12px!important;
    background: #fff;
    width: 30px;
    height: 30px;
    text-align: center;
    line-height:30px;
    border-radius: 100%;
}
.shop-content .artist-title i{
	line-height:0px;
}
.related-products .artist-title i{
	line-height:0px;
}
/* Latest News
------------------------------------------------------*/

.voice-news .owl-dots {
    bottom: -47px;
}
.voice-news .owl-dot span {
    background: #333!important;
}
.voice-news .owl-dot span:after {
    background: #333;
}
.voice-news .owl-dot.active span:after,
.voice-news .owl-dot:hover span:after {
    background-color: #E91E63!important;
}
.voice-news .owl-dot span:after {
    content: "";
    width: 26px;
    height: 3px;
    background: #333;
    bottom: -4px;
    position: absolute;
    left: 9px;
    right: 0;
}

/* Testimonial
------------------------------------------------------*/

.voice-testimonial .owl-nav [class*=owl-],
.voice-testimonial .owl-next:after,
.voice-testimonial .owl-prev:after {
    background: #333!important;
}
.voice-testimonial .owl-prev:hover,
.voice-testimonial .owl-next:hover,
.voice-testimonial .owl-prev:hover:after,
.voice-testimonial .owl-next:hover:after {
    background: #E91E63!important;
}
.voice-testimonial .owl-prev {
    left: -6%;
}
.voice-testimonial .owl-next {
    right: -6%;
}
.testimonial {
    width: 50%;
    margin: 0px auto;
    background: #fff;
    padding: 4%;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.247059) 0px 14px 45px, rgba(0, 0, 0, 0.219608) 0px 10px 18px;
}
.testimonial .item h4 {
    color: #333!important;
    margin-bottom: 0px !important;
    text-align: center!important;
    line-height: 35px;
}
.testimonial .item span {
    background-color: #E91E63;
    height: 3px;
    width: 10%;
    display: block;
    margin: 0px auto;
    margin-top: 25px;
}
.testimonial-img {
    display: table;
    margin: 0px auto;
    margin-top: 30px;
}
.testimonial-img img {
    float: left;
    border-radius: 100%;
    width: 70px!important;
    height: 70px;
}
.testimonial-img div {
    float: right;
}
.testimonial-img div {
    float: right;
    margin-Left: 15px;
    margin-top: 10px;
}
span.quote {
    background: #ffffff;
    color: #333;
    width: 70px;
    height: 70px;
    position: absolute;
    top: 6px;
    border-radius: 100%;
    text-align: center;
    font-size: 65px;
    line-height: 95px;
    left: -40px;
    box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.2);
}
/* About Us
------------------------------------------------------*/
.about-us .owl-dots {
    bottom: -47px;
}
.about-us .owl-dot span {
    background: #333!important;
}
.about-us .owl-dot span:after {
    background: #333;
}
.about-us .owl-dot.active span:after,
.about-us .owl-dot:hover span:after {
    background-color: #E91E63!important;
}
/* Shopping
------------------------------------------------------*/
.shopping .artist-title i {
    margin-right: 20px;
    color: #fff!important;
    font-size: 15px!important;
    background: transparent;
    width: 0;
    height: 0;
}
