.owl-theme .owl-controls {
    margin-top: 10px;
    text-align: center;
    -webkit-tap-highlight-color: transparent; /* Updated by IAR - missing ";" */
}

.owl-theme .owl-controls .owl-nav [class*=owl-] {
    color: #fff;
    font-size: 14px;
    margin: 5px;
    padding: 4px 7px;
    background: #d6d6d6;
    display: inline-block;
    cursor: pointer;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px; /* Updated by IAR - missing ";" */
}

.owl-theme .owl-controls .owl-nav [class*=owl-]:hover {
    background: #869791;
    color: #fff;
    text-decoration: none; /* Updated by IAR - missing ";" */
}

.owl-theme .owl-controls .owl-nav .disabled {
    opacity: .5;
    cursor: default; /* Updated by IAR - missing ";" */
}

.owl-theme .owl-dots .owl-dot {
    display: inline-block;
    zoom: 1;
    display: inline; /* Original "*display: inline" Updated by IAR */
}

.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    margin: 5px 7px;
    background: #d6d6d6;
    display: inline-block; /* Original block; Updated by IAR */
    /* Btw, dots are enabled in assets/js/script.js - PARTNERS SLIDER section */
    backface-visibility: visible; /* Added by IAR - better compatibility with standards */
    -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; /* Updated by IAR - missing ; at the end */
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #FEDD71; /* Original #869791 Updated by IAR */
}