 
.owl-nav div { 
    background: #fff !important;
    color: #999!important;
    opacity: 1 !important;
    -webkit-transition: all 200ms linear;
    -moz-transition: all 200ms linear;
    -o-transition: all 200ms linear;
    -ms-transition: all 200ms linear;
    transition: all 200ms linear;
    position: absolute;
    top: calc(45% - 12px);
    -webkit-border-radius: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    -webkit-box-shadow:0px 7px 15px rgb(0 0 0 / 12%);
    -moz-box-shadow:0px 7px 15px rgb(0 0 0 / 12%);
    box-shadow: 0px 7px 15px rgb(0 0 0 / 12%);
}
.owl-nav div.owl-prev {
	display: inline-block !important;
	padding: 6px 11px 4px 9px!important;
	left: -10px;
}
.owl-nav div.owl-next {
	display: inline-block !important;
	padding: 6px 9px 4px 11px!important;
	right: -10px;
}

/*dots*/

.owl-dots {
	position: absolute;
	top: calc(100% + 15px);
	left: 50%;
	margin-right:-50%;
	-webkit-transform:translateX(-50%);
	-moz-transform:translateX(-50%);
	transform:translateX(-50%);
}
.owl-dots .owl-dot {
	width:10px;
	height:10px;
	border-radius:100%;
	display:inline-block;
	margin:0 3px;
	background:#fff;
	border: 1px solid #ffa409;
}
.owl-dots .owl-dot.active {
	background:#ffa409;border-color: #ffa409;
}

.owl-carousel .owl-item img {
    width: 100%;
}

@media only screen and (min-width:320px) and (max-width:767px) {
	.owl-nav{
		display:none
	}
    .owl-dots .owl-dot {
		width:7px;
		height:7px; 
		margin:0 4px;
	}
}