

.owl-theme .owl-dots .owl-dot span {
    width: 50px;
    height: 5px;
    margin: 5px 7px;
    background: #cb0000;
    display: block;
    -webkit-backface-visibility: visible;
    transition: opacity .2s ease;
    border-radius: 0;
}


.newTheme .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    border-radius: 100%;
    height: 20px ;
    margin: 5px 7px;
    background: #D9D9D9;
    display: block;
    transition: opacity .2s ease;
}

.newTheme .owl-item.active {
    background-color: transparent !important;
}
.newTheme .owl-dot.active span {
    background-color: #cb0000 !important;
}

.newTheme .owl-dots{
    margin-top: 0px;
}


/*Scrollup*/

#scrollUp {
    position: fixed;
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
    line-height: 41px;
    text-align: center;
    background: #cb0000;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 0 2px rgba(0,0,0,.5);
    display: flex;
    justify-content: center;
    align-items: center;
}

#scrollUp:hover {
    background: #fff;
}
 
.fa-angle-up{
    font-size: 24px;
    color: #fff;
}

#scrollUp:hover .fa-angle-up{ 
    color: #cb0000;
}

.dataLoader {
    position: relative;
    left: auto;
    right: auto;
    border: 11px solid rgb(197 91 30);
    border-radius: 50%;
    border-top: 11px solid #3498db;
    width: 40px;
    height: 40px;
    -webkit-animation: spin 1.2s linear infinite;
    animation: dataLoader 1.2s linear infinite;
    animation-name: dataLoader;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    margin: 0 auto;
}


@keyframes dataLoader {
    from {
        transform:rotate(0deg);
    }
    to {
        transform:rotate(360deg);
    }
}
@media screen and (max-width: 640px) {
    .dataLoader {
        /* top:110%; */
    }
} 