﻿
/* loader */
#preloader {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 9999999;
    width: 100%;
    height: 100%;
    overflow: visible;
    background: #fff;
    display: table;
    text-align: center;
}

.loader {
    display: table-cell;
    vertical-align: middle;
    position: relative;
    width: 200px;
    height: 200px;
}

.loader-icon {
    width: 80px;
    height: 80px;
    border: 5px solid #03a9f5;
    border-right-color: #eee;
    border-radius: 50%;
    position: relative;
    animation: loader-rotate 1s linear infinite;
    margin: 0 auto;
}

@keyframes loader-rotate {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}
/* theme color and basic options */
body {
    overflow-x: hidden;
}

a:hover, a:active, a:focus {
    color: #03a9f5;
    text-decoration: none;
    outline: none;
}

.img-style {
    padding: 5px;
    border: 1px solid #e8e8e8;
    border-radius: 4px;
}

.lead {
    font-size: 16px;
    line-height: 30px;
    font-weight: 500;
}

.max-width-500 {
    max-width: 500px;
}

.height-300 {
    height: 300px;
}

.bd-example button, .bd-example .btn-group {
    margin-top: .25rem;
    margin-bottom: .25rem;
}

.bg-theme {
    background-color: #03a9f5;
}

.theme-overlay[data-overlay-dark]:before, .theme-overlay[data-overlay-light]:before {
    background: #03a9f5;
}

.text-theme-color {
    color: #03a9f5;
}

.line-through {
    text-decoration: line-through;
}

@media screen and (min-width: 1200px) {
    .container {
        max-width: 1170px;
        width: 100%;
    }
}

@media screen and (max-width: 767px) {
    .lead {
        font-size: 15px;
    }
}
/* primary listing */
.primary-list {
    padding-left: 0;
}

    .primary-list li {
        font-size: 14px;
        font-weight: 500;
        margin-bottom: 15px;
        list-style-type: none;
        position: relative;
        padding: 0 0 0 20px;
    }

        .primary-list li:last-child {
            margin-bottom: 0;
        }

        .primary-list li:before {
            content: '\e649';
            font-weight: 700;
            font-family: 'themify';
            padding: 0 8px 0 0;
            font-size: 10px;
            position: absolute;
            left: 0;
            top: 0;
        }

        .primary-list li i {
            color: #03a9f5;
            padding-right: 10px;
        }

/* default listing */
.default-list {
    list-style-position: inside;
    margin-bottom: 20px;
}

    .default-list li {
        list-style: inside;
    }

/* discount listing */
.side-bar .widget .list-discount li {
    border-bottom: none;
    padding: 0 0 0 24px;
    margin-bottom: 12px;
}

    .side-bar .widget .list-discount li:before {
        content: none;
    }

/* list-style-16 */
.list-style-16 li:after {
    color: #03a9f5;
}

/* scroll to top */
.scroll-to-top {
    font-size: 20px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: none;
    border-radius: 50%;
    background: #000;
    border: 1px solid #2a2a2a;
    width: 35px;
    height: 35px;
    line-height: 30px;
    z-index: 9999;
    outline: 0;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all 0.3s ease;
}

    .scroll-to-top i {
        color: #fff;
    }

    .scroll-to-top:hover {
        color: #232323;
        background: #fff;
    }

        .scroll-to-top:hover i {
            color: #232323;
        }

    .scroll-to-top:visited {
        color: #232323;
        text-decoration: none;
    }

@media screen and (max-width: 575px) {
    .no-mobile-margin-15px-bottom {
        margin-bottom: 0 !important;
    }

    .mobile-margin-15px-bottom {
        margin-bottom: 15px;
    }

    .mobile-margin-20px-bottom {
        margin-bottom: 20px;
    }

    .mobile-margin-25px-bottom {
        margin-bottom: 25px;
    }

    .mobile-margin-30px-bottom {
        margin-bottom: 30px;
    }

    .mobile-margin-35px-bottom {
        margin-bottom: 35px;
    }
}
/* common block and inner title */
.inner-title {
    border-bottom: 1px solid rgba(0, 0, 0, 0.09);
    margin-bottom: 35px;
    padding-bottom: 15px;
}

    .inner-title h1, .inner-title h2, .inner-title h3, .inner-title h4, .inner-title h5, .inner-title h6 {
        font-weight: 500;
    }

    .inner-title h3, .inner-title h4 {
        font-size: 26px;
        font-weight: 500;
    }

.common-block {
    padding: 35px;
    border: 1px solid rgba(0, 0, 0, 0.09);
    border-radius: 4px;
}

@media screen and (max-width: 991px) {
    .inner-title {
        margin-bottom: 30px;
    }

        .inner-title h3, .inner-title h4 {
            font-size: 24px;
        }

    .common-block {
        padding: 30px;
    }
}

@media screen and (max-width: 575px) {
    .inner-title h3, .inner-title h4 {
        font-size: 22px;
    }

    .common-block {
        padding: 25px;
    }
}
