/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */


/*
 * 	Default theme - Owl Carousel CSS File
 */

.owl-theme .owl-nav {
    margin-top: 22px;
    padding-left: 22px;
    text-align: center;
    -webkit-tap-highlight-color: transparent;
}

.owl-theme .owl-nav [class*='owl-'] {
    color: #FFF;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #D6D6D6;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px;
}

.owl-theme .owl-nav [class*='owl-']:hover {
    /* background: #869791;
      color: #FFF; */
    background: transparent;
    color: #BF4074;
    text-decoration: none;
}

.owl-theme .owl-nav .disabled {
    opacity: 0.5;
    cursor: default;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px;
    /* margin-top: 30px;  */
}

.owl-theme .owl-dots {
    text-align: center;
    -webkit-tap-highlight-color: transparent;
    position: absolute;
    /* top: 22rem;
  left: 0; */
    bottom: 2rem;
    left: 50%;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    /* display: block; */
    zoom: 1;
    *display: inline;
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    /* width: 15px;
      height: 25px; */
    /* margin: 5px 27px; */
    margin: 5px 7px;
    background: #fff;
    color: #333333;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity 200ms ease;
    border-radius: 30px;
    font-size: 16px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #c1ae84;
    color: #c1ae84;
    /* text-decoration: underline; */
    border-bottom: 1px solid #c1ae84;
    padding-bottom: 5px;
    border-radius: 50;
    width: 25px;
    height: 10px;
}


/*Aml*/

.slide-home .owl-nav {
    display: none;
}

.owl-theme .owl-nav svg:hover {
    color: #BF4074;
    text-decoration: none;
}

@media only screen and (max-width: 1024px) {
    .owl-theme .owl-dots {
        /* top: 160px;
        left: 0; */
        left: 46%;
    }
}

@media only screen and (max-width: 992px) {
    .owl-theme .owl-dots {
        /* top: 120px;
        left: 0; */
        left: 46%;
    }
}

@media only screen and (max-width: 575px) {
    .owl-theme .owl-dots {
        /* top: 30px;
        left: 0; */
        left: 40%;
        display: none;
    }
    .owl-theme .owl-dots .owl-dot span {
        font-size: 14px;
    }
}