/**
 * Owl Carousel v2.2.1
 * Copyright 2013-2017 David Deutsch
 * Licensed under  ()
 */
/*
 * 	Default theme - Owl Carousel CSS File
 */
.owl-carousel.owl-loaded {
    margin-bottom: 30px;
}
.owl-theme .owl-dots,.owl-theme .owl-nav {
    text-align: center;
    -webkit-tap-highlight-color: transparent
}

.owl-theme .owl-nav {
	width: 100%;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-50%);
}

.owl-theme .owl-nav [class*=owl-] {
	color: #c32404;
	font-size: 30px;
	font-weight: 400;
    /* margin: 0; */
    padding: 0 5px;
    display: inline-block;
    cursor: pointer;
    border-radius: 3px
}

.owl-theme .owl-nav [class*=owl-]:hover {
	background: transparent;
    text-decoration: none
}

.owl-theme .owl-nav .disabled {
    opacity: .5;
    cursor: default
}

.owl-carousel .owl-nav .owl-next {
	float: right;
}

.owl-carousel .owl-nav .owl-prev {
	float: left;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 10px
}

.owl-theme .owl-dots {
	width: 100%;
    position: absolute;
	right: 0;
	left: 0;
	bottom: -50px;
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom:1
}

.owl-theme .owl-dots .owl-dot span {
    width: 15px;
    height: 15px;
    margin: 5px 7px;
    background: #D6D6D6;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 30px
}

.owl-theme .owl-dots .owl-dot.active span,.owl-theme .owl-dots .owl-dot:hover span {
    background: #ffe464;
}

.owl-carousel .owl-item img {
	width: auto;
}

@media (min-width: 768px) {
	.owl-theme .owl-nav {
		width: 75%;
	}
}
@media all and (max-width:480px) {
    .owl-carousel .owl-nav .owl-next {
        margin-right:77px;
    }
    .owl-carousel .owl-nav .owl-prev {
        margin-left:95px;
    }
}