.owl-theme .owl-controls{
    position: absolute;
    bottom: 0;
    left: 0;

	text-align: center;
}

/* Styling Next and Prev buttons */

.owl-theme .owl-controls .owl-buttons div{
	display: inline-block;
	width: 35px;
    height: 35px;
    margin-left: 1px;

    position: relative;

    background-color: #192789;
}

.owl-theme .owl-controls .owl-buttons div:before {
    width: 9px;
    height: 16px;

    position: absolute;
    top: 10px;
    left: 12px;

    background: url(../../../../img/spritesheet.png) -235px -130px;

    content : '';
}

.owl-theme .owl-controls .owl-buttons div.owl-next:before{
    left: auto;
    right: 12px;

    background-position: -235px -146px;
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-theme .owl-controls.clickable .owl-buttons div:hover{
	background-color: #f06d1e;
}

.owl-theme .owl-controls .owl-buttons div.disabled {
    background-color: #d7d7d7;
    cursor: default;
}


.owl-theme .owl-controls .owl-buttons div.disabled:hover{
    background-color: #d7d7d7;
}

/* Styling Pagination*/

.owl-theme .owl-controls .owl-page{
	display: inline-block;
	zoom: 1;
	*display: inline;/*IE7 life-saver */
}
.owl-theme .owl-controls .owl-page span{
	display: block;
	width: 9px;
	height: 9px;
	margin: 1px 3px 0;
	-webkit-border-radius: 9px;
	-moz-border-radius: 9px;
	border-radius: 9px;
	background: rgba(255, 255, 255, .3);;
}

.owl-theme .owl-controls .owl-page.active span,
.owl-theme .owl-controls.clickable .owl-page:hover span{
	background: #fff;
}

.model__qualities.owl-theme .owl-controls .owl-page.active span { background: #374354; }
.model__qualities.owl-theme .owl-controls.clickable .owl-page:hover span { background: #7088a3; }

/* If PaginationNumbers is true */

.owl-theme .owl-controls .owl-page span.owl-numbers{
	height: auto;
	width: auto;
	color: #FFF;
	padding: 2px 10px;
	font-size: 12px;
	-webkit-border-radius: 30px;
	-moz-border-radius: 30px;
	border-radius: 30px;
}

/* preloading images */
.owl-item.loading{
	min-height: 150px;
	background: url(AjaxLoader.gif) no-repeat center center
}

/* Owl Main Theme */

.owl-main-theme .owl-controls{
    width: 100%;
    position: relative;
    bottom: 55px;
    left: 0;
}

/* Styling Next and Prev buttons */
.owl-main-theme .owl-controls .owl-buttons {
    box-sizing: border-box;
    max-width: 1400px;
    margin: auto;
    padding: 0 15px;
    min-width: 320px;

    position: relative;
}

.owl-main-theme .owl-controls .owl-buttons div {
    width: 24px;
    height: 52px;

    position: absolute;
    bottom: 124px;

    background: url(../../../../img/spritesheet.png) no-repeat;
}

.owl-main-theme .owl-controls .owl-buttons div.owl-next{
    right: 0;

    background-position: -252px -167px;
}

.owl-main-theme .owl-controls .owl-buttons div.owl-prev{
    left: 0;

    background-position: -204px -197px;
}

@media screen and (min-width: 960px) {
    .owl-main-theme .owl-controls .owl-buttons div.owl-next{
        right: 20px;
    }

    .owl-main-theme .owl-controls .owl-buttons div.owl-prev{
        left: 20px;
    }
}

@media screen and (min-width: 1200px) {
    .owl-main-theme .owl-controls .owl-buttons div.owl-next{
        right: 10px;
    }

    .owl-main-theme .owl-controls .owl-buttons div.owl-prev{
        left: 10px;
    }
}

/* Clickable class fix problem with hover on touch devices */
/* Use it for non-touch hover action */
.owl-main-theme .owl-controls .owl-buttons div.owl-next:hover{
    background-position: -276px -167px;
}

.owl-main-theme .owl-controls .owl-buttons div.owl-prev:hover{
    background-position: -228px -197px;
}