﻿.heading {
    position: relative;
    z-index: 5;
}

.content-wrapper .heading {
    z-index: 6;
}

.heading .heading-title {
    font-weight: 400;
    font-weight: 500;
    line-height: 1.3;
}

    .heading .heading-title.no-margin {
        margin: 0;
    }

.heading .heading-line {
    margin-bottom: 20px;
    position: relative;
}

    .heading .heading-line .short-line {
        display: inline-block;
        width: 30px;
        height: 3px;
        background-color: #00A0E1;
        border-radius: 10px;
        position: relative;
        margin-right: 10px;
        -webkit-transition: all .4s linear;
        transition: all .4s linear;
    }

.heading .heading-title .circle {
    background-color: #00A0E1;
    color: #fff;
    width: 32px;
    height: 32px;
    display: inline-block;
    text-align: center;
    border-radius: 1em;
}

.heading .heading-line .short-line.bg-yellow-color {
    background-color: #fcd846;
}

.heading .heading-line .long-line {
    display: inline-block;
    width: 100px;
    height: 3px;
    background-color: #00A0E1;
    border-radius: 10px;
    position: relative;
    -webkit-transition: all .4s linear;
    transition: all .4s linear;
}

    .heading .heading-line .long-line.bg-yellow-color {
        background-color: #fcd846;
    }

.heading .heading-subtitle {
    margin-bottom: 15px;
}

.heading p {
    margin-bottom: 30px;
}

.heading .heading-text {
    font-size: 24px;
    line-height: 30px;
    color: #87959c;
}

@media (max-width: 980px) {
    .heading .heading-text {
        font-size: 20px;
    }
}

@media (max-width: 570px) {
    .heading .heading-text {
        font-size: 16px;
    }
}

.heading .read-more {
    font-size: 18px;
    color: #ccc;
    padding: 5px 0 0 30px;
    border-left: 1px solid #f0f2f2;
    margin: 15px 0 0 30px;
    display: block;
    float: left;
}

    .heading .read-more i {
        margin-left: 10px;
        font-size: 12px;
    }

    .heading .read-more:hover {
        color: #00A0E1;
    }

.heading:hover .heading-line .short-line {
    width: 0;
    -webkit-animation: move-short 1.5s infinite linear;
    animation: move-short 1.5s infinite linear;
}

@-webkit-keyframes move-short {
    100% {
        width: 140px;
        margin-right: 0;
    }
}

@keyframes move-short {
    100% {
        width: 140px;
        margin-right: 0;
    }
}
/*  .heading:hover .heading-line .long-line {
    width: 130px;
    -webkit-animation: move 1.5s infinite linear;
    animation: move 1.5s infinite linear; } */

@-webkit-keyframes move {
    100% {
        width: 0;
    }
}

@keyframes move {
    100% {
        width: 0;
    }
}

/*------------- #HEADER --------------*/
.header {
    padding: 22px 0 0;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,47,90,.25);
    position: fixed;
    width: 100%;
    z-index: 20;
    left: 0;
    top: 0;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (max-width: 768px) {
    .header {
        position: relative;
    }
}

.header .logo {
    margin-bottom: 0;
    /*margin-right: 82px;*/
    float: left;
}

@media (max-width: 768px) {
    .header .logo {
        float: left;
        margin-right: 50px;
    }
}

@media (max-width: 480px) {
    .header .logo {
        margin: 0;
    }
}

.header.header-absolute {
    position: absolute;
    top: 30px;
    left: 0;
}

.header.absolute {
    position: absolute;
}

.header .nav-menu {
    position: relative;
    margin-top: 22px;
    background-color: #e5edef;
}

header.headroom--not-top .nav-menu {
    margin-top: 12px;
}

.header nav {
    float: left;
    padding: 0;
    width: 100%;
}

    .header nav .menu {
        display: inline-block;
    }

        .header nav .menu .menu-item {
            display: inline-block;
            padding: 0 13px;
            position: relative;
        }

            .header nav .menu .menu-item:first-child {
                padding-left: 0;
            }

            .header nav .menu .menu-item.mega-menu-item {
                position: static;
            }

            .header nav .menu .menu-item:hover > a {
                color: #00A0E1;
            }

                .header nav .menu .menu-item:hover > a:after, .header nav .menu .menu-item:hover > a:before {
                    opacity: 1;
                }

                .header nav .menu .menu-item:hover > a + i {
                    color: #00A0E1;
                }

            .header nav .menu .menu-item > a {
                position: relative;
                font-size: 17px;
                text-transform: capitalize;
                font-weight: 500;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                margin-right: 3px;
            }

                .header nav .menu .menu-item > a:after {
                    content: '';
                    display: block;
                    position: absolute;
                    width: 15%;
                    height: 2px;
                    background-color: #00A0E1;
                    left: 0;
                    bottom: -10px;
                    opacity: 0;
                    -webkit-transition: all .3s ease;
                    transition: all .3s ease;
                }

                .header nav .menu .menu-item > a:before {
                    content: '';
                    display: block;
                    width: 80%;
                    height: 2px;
                    background-color: #00A0E1;
                    position: absolute;
                    right: 0;
                    bottom: -10px;
                    opacity: 0;
                    -webkit-transition: all .3s ease;
                    transition: all .3s ease;
                }

            .header nav .menu .menu-item i {
                font-size: 10px;
                color: #e1e1e1;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
            }


@media (max-width: 768px) {
    .header nav.not-nav-add {
        padding-right: 100px;
    }
}

@media (max-width: 480px) {
    .header nav.not-nav-add {
        padding-right: 0;
    }
}

.header .header-content-wrapper {
    position: static;
    float: left;
    width: 100%;
    min-height: 60px;
}

.header.headroom--not-top {
    padding-top: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    /*-webkit-box-shadow: 9px 9px 9px 0 rgba(47, 44, 44, 0.2);
    box-shadow: 9px 9px 9px 0 rgba(47, 44, 44, 0.2);*/
}
    /*.header.headroom--not-top .primary-menu-menu > li {
      padding: 0 13px 33px; }*/
    .header.headroom--not-top .user-menu {
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

.header-spacer {
    position: relative;
    width: 100%;
    height: 186px;
    background: #fff;
}

@media (max-width: 768px) {
    .header-spacer {
        display: none;
    }
}

.nav-menu .js-open-search {
    position: absolute;
    right: 15px;
    top: 8px;
    margin: 0;
    line-height: 40px;
    cursor: pointer;
}

    .nav-menu .js-open-search img {
        margin-left: 10px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        height: 28px;
        position: relative;
    }

@media (min-width: 768px) {
    .nav-menu .js-open-search {
        display: none;
    }
}


.nav-add {
    float: right;
    padding: 2px 0;
    margin: 0;
}

header.headroom--not-top .nav-add {
    padding: 2px 0;
}

.nav-add li.favorite img, .nav-add li.reorder img {
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: relative;
    width: 30px;
    height: 30px;
    display: block;
    margin: 10px auto;
}

.nav-add li span {
    display: none;
    font-size: .9rem;
}

@media (max-width: 980px) {
    .nav-add {
        float: left;
    }
}

@media (max-width: 768px) {
    .nav-add {
        position: absolute;
        right: 15px;
        padding: 0;
        top: 60px;
    }

        .nav-add li {
            margin-left: 10px
        }
}

.nav-add li {
    display: inline-block;
}

    .nav-add li.cart {
        position: relative;
    }

        .nav-add li.cart .cart-count {
            display: block;
            position: relative;
            top: 1px;
            height: 24px;
            line-height: 22px;
            font-size: 11px;
            color: #fff;
            text-align: left;
            white-space: nowrap;
            top: -1px;
            display: none;
        }

            .nav-add li.cart .cart-count .ccount {
                display: inline-block;
                background-color: #009ee3;
                width: 18px;
                text-align: center;
                margin-right: -2px;
                border-top-left-radius: 3px;
                border-bottom-left-radius: 3px;
                position: absolute;
                top: -180%;
                right: 35%;
                border-radius: 50%;
                height: 18px;
                line-height: 14px;
                border: 2px solid #fff;
                font-size: 11px;
            }

            .nav-add li.cart .cart-count .cprice {
                display: inline-block;
                background-color: #005590;
                padding: 0 4px;
                border-radius: 3px;
            }

                .nav-add li.cart .cart-count .cprice span {
                    display: inline-block;
                }

                    .nav-add li.cart .cart-count .cprice span + span {
                        margin-left: 6px;
                    }

                        .nav-add li.cart .cart-count .cprice span + span:before {
                            content: "+";
                            font-weight: 800;
                            margin-left: -5px;
                            opacity: .5;
                        }

                    .nav-add li.cart .cart-count .cprice span strong {
                        font-weight: bolder;
                        font-size: 10px;
                    }

        .nav-add li.cart i {
            font-size: 28px;
            margin-left: 10px;
            color: #00305c;
        }

        .nav-add li.cart img {
            width: 30px;
            height: 30px;
            display: block;
            margin: 10px auto 10px auto;
        }

    .nav-add li.search {
        position: relative;
    }

@media (min-width: 980px) {
    .nav-add li.cart .cart-count {
        display: block;
    }

    .nav-add li.search {
        display: none;
    }

    .nav-add li {
        margin-left: 15px;
    }

        .nav-add li.cart {
            margin-left: 20px;
            max-width: 88px;
            max-width: 110px;
        }

        .nav-add li span.hidden-xs {
            display: block
        }
}

.nav-add li.search i {
    margin-left: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    font-size: 26px;
    color: #00305c;
    position: relative;
}

    .nav-add li.search i:hover {
        color: #00b1e8;
    }

.nav-add li.search img {
    margin-left: 10px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    height: 28px;
    position: relative;
}

.nav-add li.search .popup-search .search-btn i:hover {
    color: #f15b26;
}

.logo {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
}

@media (max-width: 768px) {
    .logo {
        float: none;
        margin-right: 0;
        overflow: hidden;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.logo img {
    float: left;
    margin-right: 15px;
    transition: .2s all ease-in-out;
}

header.headroom--not-top .logo img {
    height: 64px;
    margin: 6px 15px 0 0;
}

.logo .logo-text {
    float: left;
    margin-top: 10px;
    line-height: 1;
}

    .logo .logo-text .logo-title {
        font-size: 27px;
        text-transform: uppercase;
        color: #2f2c2c;
    }

    .logo .logo-text .logo-sub-title {
        font-size: 10px;
        text-transform: uppercase;
    }

@media (max-width: 768px) {
    .logo img {
        float: left;
        margin-right: 15px;
        transition: .2s all ease-in-out;
        height: 60px;
    }
}

.user-menu {
    position: absolute;
    right: 85px;
    bottom: -35px;
    width: 70px;
    height: 70px;
    border: 3px solid #2f2c2c;
    border-radius: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
}

@media (max-width: 768px) {
    .user-menu {
        bottom: -51px;
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 570px) {
    .user-menu {
        display: none;
    }
}

.user-menu .user-menu-content {
    display: table-cell;
    vertical-align: middle;
    width: 64px;
    height: 64px;
    background-color: #f15b26;
    border: 4px solid #fff;
    border-radius: 50%;
    position: relative;
}

@media (max-width: 768px) {
    .user-menu .user-menu-content {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
}

.user-menu .user-menu-content span {
    display: block;
    height: 3px;
    background: #fff;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 10px;
    margin: 3px auto;
}

    .user-menu .user-menu-content span:first-of-type {
        width: 25%;
    }

    .user-menu .user-menu-content span:nth-child(2) {
        width: 50%;
    }

    .user-menu .user-menu-content span:last-of-type {
        width: 40%;
    }

.user-menu .user-menu-content:hover span {
    width: 70%;
}

/*================= Animation for primary menu =========*/
.primary-menu-menu > li:hover > a:after {
    width: 15%;
    -webkit-animation: primary-short .5s linear;
    animation: primary-short .5s linear;
}

@-webkit-keyframes primary-short {
    0% {
        width: 0;
    }

    50% {
        width: 40%;
    }

    100% {
        width: 15%;
    }
}

@keyframes primary-short {
    0% {
        width: 0;
    }

    50% {
        width: 40%;
    }

    100% {
        width: 15%;
    }
}

.primary-menu-menu > li:hover > a:before {
    width: 80%;
    -webkit-animation: primary-long .5s linear;
    animation: primary-long .5s linear;
}

@-webkit-keyframes primary-long {
    0% {
        width: 100%;
    }

    50% {
        width: 55%;
    }

    100% {
        width: 80%;
    }
}

@keyframes primary-long {
    0% {
        width: 100%;
    }

    50% {
        width: 55%;
    }

    100% {
        width: 80%;
    }
}

/*================= Styles for sticky-Header =========*/
.animated {
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    will-change: transform,opacity;
}

@media (max-width: 480px) {
    .animated {
        -webkit-animation-fill-mode: none;
        animation-fill-mode: none;
        will-change: unset;
    }
}

@-webkit-keyframes swingInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes swingInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
        transform: perspective(400px) rotateX(-90deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
    }
}

.animated.swingInX {
    -webkit-transform-origin: top;
    -ie-transform-origin: top;
    -ms-transform-origin: top;
    transform-origin: top;
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: swingInX;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: swingInX;
    -o-backface-visibility: visible !important;
    -o-animation-name: swingInX;
    backface-visibility: visible !important;
    animation-name: swingInX;
}

@media (max-width: 480px) {
    .animated.swingInX {
        -webkit-animation-name: none;
        animation-name: none;
        -webkit-transform-origin: unset;
        -ms-transform-origin: unset;
        transform-origin: unset;
    }
}

@-webkit-keyframes swingOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
    }
}

@keyframes swingOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
        transform: perspective(400px) rotateX(-90deg);
    }
}

.animated.swingOutX {
    -webkit-transform-origin: top;
    -webkit-animation-name: swingOutX;
    -webkit-backface-visibility: visible !important;
    -moz-animation-name: swingOutX;
    -moz-backface-visibility: visible !important;
    -o-animation-name: swingOutX;
    -o-backface-visibility: visible !important;
    animation-name: swingOutX;
    backface-visibility: visible !important;
}

@media (max-width: 480px) {
    .animated.swingOutX {
        -webkit-animation-name: none;
        animation-name: none;
        -webkit-transform-origin: unset;
        -ms-transform-origin: unset;
        transform-origin: unset;
    }
}

@-webkit-keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes slideDown {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.animated.slideDown {
    -webkit-animation-name: slideDown;
    animation-name: slideDown;
}

@media (max-width: 480px) {
    .animated.slideDown {
        -webkit-animation-name: none;
        animation-name: none;
    }
}

@-webkit-keyframes slideUp {
    0% {
        -webkit-transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
    }
}

@keyframes slideUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
}

.animated.slideUp {
    -webkit-animation-name: slideUp;
    animation-name: slideUp;
}

@media (max-width: 480px) {
    .animated.slideUp {
        -webkit-animation-name: none;
        animation-name: none;
    }
}

@-webkit-keyframes swingInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
    }
}

@keyframes swingInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(-90deg);
        transform: perspective(400px) rotateX(-90deg);
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
    }
}

@-webkit-keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

@keyframes flipInX {
    0% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }
}

.animated.flipInX {
    -webkit-backface-visibility: visible !important;
    -webkit-animation-name: flipInX;
    -moz-backface-visibility: visible !important;
    -moz-animation-name: flipInX;
    -o-backface-visibility: visible !important;
    -o-animation-name: flipInX;
    backface-visibility: visible !important;
    animation-name: flipInX;
}

@media (max-width: 480px) {
    .animated.flipInX {
        -webkit-animation-name: none;
        animation-name: none;
    }
}

@-webkit-keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

@keyframes flipOutX {
    0% {
        -webkit-transform: perspective(400px) rotateX(0deg);
        transform: perspective(400px) rotateX(0deg);
        opacity: 1;
    }

    100% {
        -webkit-transform: perspective(400px) rotateX(90deg);
        transform: perspective(400px) rotateX(90deg);
        opacity: 0;
    }
}

.animated.flipOutX {
    -webkit-animation-name: flipOutX;
    -webkit-backface-visibility: visible !important;
    -moz-animation-name: flipOutX;
    -moz-backface-visibility: visible !important;
    -o-animation-name: flipOutX;
    -o-backface-visibility: visible !important;
    animation-name: flipOutX;
    backface-visibility: visible !important;
}

@media (max-width: 480px) {
    .animated.flipOutX {
        -webkit-animation-name: none;
        animation-name: none;
    }
}

@-webkit-keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
    }
}

@keyframes bounceInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateY(30px);
        transform: translateY(30px);
    }

    80% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }
}

.animated.bounceInDown {
    -webkit-animation-name: bounceInDown;
    animation-name: bounceInDown;
}

@media (max-width: 480px) {
    .animated.bounceInDown {
        -webkit-animation-name: none;
        animation-name: none;
    }
}

@-webkit-keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
    }
}

@keyframes bounceOutUp {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(20px);
        transform: translateY(20px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-200px);
        transform: translateY(-200px);
    }
}

.animated.bounceOutUp {
    -webkit-animation-name: bounceOutUp;
    animation-name: bounceOutUp;
}

@media (max-width: 480px) {
    .animated.bounceOutUp {
        -webkit-animation-name: none;
        animation-name: none;
        -webkit-transform-origin: unset;
        -ms-transform-origin: unset;
        transform-origin: unset;
    }
}

.top-bar-link {
    display: none;
    visibility: hidden;
}

@media (max-width: 1024px) {
    .top-bar-link {
        position: absolute;
        display: block;
        visibility: visible;
        z-index: 9;
        top: 0;
        left: 0;
        width: 100%;
    }

        .top-bar-link:after {
            border-top: 2px solid #00A0E1;
            border-left: 2px solid #00A0E1;
            content: '';
            display: block;
            height: 10px;
            right: 20px;
            top: 12px;
            pointer-events: none;
            position: absolute;
            -webkit-transform-origin: 50% 50%;
            -ms-transform-origin: 50% 50%;
            transform-origin: 50% 50%;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: all 0.15s ease-in-out;
            transition: all 0.15s ease-in-out;
            width: 10px;
        }
}
/*------------- #SLIDERS --------------*/
.main-slider {
    position: relative;
    cursor: pointer;
}

    .main-slider .swiper-slide {
        /* Center slide text vertically */
        display: -webkit-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
        height: auto;
        background-size: auto 100% !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
    }

    .main-slider .main-slider-bg-dark .slider-content .slider-content-title {
        color: #fff;
    }

    .main-slider .main-slider-bg-dark .slider-content .slider-content-text {
        color: #fff;
        opacity: 1;
    }

    .main-slider .main-slider-bg-dark .slider-content {
        background-color: rgba(47, 61, 68, 0.78);
    }

    .main-slider .container {
        padding: 20px 0;
    }

    .main-slider .slider-content-fullwidth {
        width: 100%;
    }

    .main-slider .swiper-pagination {
        position: absolute;
        bottom: 15px;
        left: 50%;
        transform: translateX(-50%);
    }

@media (max-width: 640px) {
    .main-slider .table-cell {
        float: none;
    }
}

.main-slider .slider-content-half-width {
    width: 50%;
}

@media (max-width: 980px) {
    .main-slider .slider-content-half-width {
        float: left;
    }
}

@media (max-width: 360px) {
    .main-slider .slider-content-half-width {
        width: 100%;
        float: none;
    }
}

@media (max-width: 980px) {
    .main-slider .slider-content-half-width.table-cell {
        display: block;
    }
}

.main-slider .slider-content {
    max-width: 940px;
    margin: 30px auto 120px;
    background-color: rgba(255, 255, 255, 0.65);
    padding: 1px 30px 19px 29px;
}

@media (max-width: 980px) {
    .main-slider .slider-content {
        padding: 20px 0 20px 15px;
    }
}

.main-slider .slider-content .slider-content-title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 500;
    white-space: nowrap;
}

.main-slider .slider-content .slider-content-text {
    margin-bottom: 10px;
    line-height: 1.3;
}

.main-slider .slider-thumb {
    overflow: hidden;
    padding: 20px 15px;
}

@media (max-width: 768px) {
    .main-slider .slider-thumb {
        height: auto;
        overflow: visible;
    }
}

.main-slider .btn-prev {
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    transition: .2s all ease-in;
    opacity: 0;
}

@media (max-width: 1280px) {
    .main-slider .btn-prev {
        display: none;
    }
}

.main-slider .btn-next {
    top: 50%;
    right: 60px;
    transform: translateY(-50%);
    transition: .2s all ease-in;
    opacity: 0;
}

.main-slider:hover .btn-prev, .main-slider:hover .btn-next {
    opacity: 1;
}

@media (max-width: 1280px) {
    .main-slider .btn-next {
        display: none;
    }
}

.main-slider .main-slider-btn-wrap .btn + .btn {
    margin-left: 30px;
}

@media (max-width: 980px) {
    .main-slider .main-slider-btn-wrap .btn + .btn {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 320px) {
    .main-slider .main-slider-btn-wrap .btn + .btn {
        margin-top: 20px;
    }
}

.main-slider .main-slider-btn-wrap .btn i {
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}

@media (max-width: 768px) {
    .main-slider .main-slider-btn-wrap .btn i {
        right: 8px;
    }
}

.main-slider .main-slider-btn-wrap .btn:hover i {
    right: 12px;
}

@media (max-width: 768px) {
    .main-slider .main-slider-btn-wrap .btn:hover i {
        right: 6px;
    }
}

.main-slider .main-slider-btn-wrap .btn-border:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-slider.main-slider-bg-dark .slider-content .slider-content-title {
    color: #fff;
}

.main-slider.main-slider-bg-dark .slider-content .slider-content-text {
    color: #fff;
    opacity: 1;
}

.main-slider.thumb-left {
    direction: rtl;
}

    .main-slider.thumb-left .slider-content {
        direction: ltr;
    }

.main-slider.thumb-right {
    direction: ltr;
}

@media (max-width: 768px) {
    .main-slider .table {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-slider .container > .row.table-cell {
        display: block;
    }
}

@media (max-width: 570px) {
    .main-slider .container > .row.table-cell {
        float: none;
    }
}

.main-slider.main-slider-bg-photo-wrap {
    height: 100vh;
}

.main-slider > .container > .table {
    margin: 0 -15px 0 -15px;
    height: 100%;
}

@media (max-width: 980px) {
    .main-slider > .container > .table {
        padding-top: 40px;
    }
}

@media (max-width: 640px) {
    .main-slider > .container > .table {
        margin: 0 auto;
    }
}

.main-slider.no-labels {
    padding-bottom: 0;
}

@media (min-width: 1600px) {
    .main-slider .swiper-slide {
        background-size: cover !important;
        background-repeat: no-repeat !important;
        background-position: center !important;
        padding: 5vh 0;
    }
}

.slider-shadow {
    -webkit-box-shadow: 25px 62px 62px rgba(0, 0, 0, 0.42);
    box-shadow: 25px 62px 62px rgba(0, 0, 0, 0.42);
}

.btn-next {
    position: absolute;
    cursor: pointer;
    width: 64px;
    height: 64px;
    display: block;
    z-index: 10;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    fill: #e1e1e1;
    stroke: inherit;
}

    .btn-next:hover {
        fill: #00A0E1;
        margin-right: -2px;
    }

    .btn-next.btn-next-gray {
        fill: #4a4240;
    }

        .btn-next.btn-next-gray:hover {
            fill: #00A0E1;
        }

    .btn-next.btn-next-black:hover {
        fill: #2f2c2c;
    }

    .btn-next.btn-next-white {
        fill: #fff;
    }

@media (max-width: 460px) {
    .btn-next {
        width: 30px;
        height: 30px;
    }
}

.btn-prev {
    position: absolute;
    cursor: pointer;
    width: 64px;
    height: 64px;
    display: block;
    z-index: 10;
    -webkit-transition: all .2s ease-in;
    transition: all .2s ease-in;
    fill: #e1e1e1;
    stroke: inherit;
}

    .btn-prev:hover {
        fill: #00A0E1;
        margin-left: -2px;
    }

    .btn-prev.btn-prev-gray {
        fill: #4a4240;
    }

        .btn-prev.btn-prev-gray:hover {
            fill: #00A0E1;
        }

    .btn-prev.btn-prev-black:hover {
        fill: #2f2c2c;
    }

    .btn-prev.btn-prev-white {
        fill: #fff;
    }

@media (max-width: 460px) {
    .btn-prev {
        width: 30px;
        height: 30px;
    }
}

.slider-slides {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: table;
    width: 100%;
}

@media (min-width: 1200px) {
    .slider-slides {
        position: absolute;
        bottom: 0;
        left: 50%;
        right: auto;
        display: table;
        transform: translateX(-50%);
        width: 1170px;
        z-index: 1;
    }
}

.slider-slides .slides-item {
    display: table-cell;
    padding: 13px 46px;
    padding: 13px 20px;
    position: relative;
    z-index: 1;
}

.slider-slides .slides-item {
    background-color: rgba(72, 153, 207, 0.78);
    background-color: rgba(0, 48, 91, 0.45);
}

    .slider-slides .slides-item:nth-child(2n+1) {
        background-color: rgba(0, 48, 91, 0.6);
    }

    .slider-slides .slides-item:nth-child(3n) {
        background-color: rgba(0, 145, 200, 0.43);
    }

    .slider-slides .slides-item.slide-active {
        background-color: #fff;
    }

        .slider-slides .slides-item.slide-active .content .text-wrap .slides-title {
            color: #00305b;
        }

        .slider-slides .slides-item.slide-active .content .slides-number {
            color: rgba(0, 48, 91, 0.2);
        }

@media (max-width: 1024px) {
    .slider-slides .slides-item {
        padding: 10px;
    }
}

@media (max-width: 360px) {
    .slider-slides .slides-item {
        padding: 5px;
    }
}

.slider-slides .slides-item .content {
    position: relative;
    overflow: hidden;
}

    .slider-slides .slides-item .content .text-wrap {
        position: absolute;
        z-index: 2;
        top: 50%;
        transform: translate(0, -50%);
        -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
    }

        .slider-slides .slides-item .content .text-wrap .slides-title {
            font-size: 18px;
            line-height: 30px;
            color: #fff;
            text-transform: capitalize;
        }

@media (max-width: 800px) {
    .slider-slides .slides-item .content .text-wrap .slides-title {
        font-size: 20px;
    }
}

@media (max-width: 640px) {
    .slider-slides .slides-item .content .text-wrap .slides-title {
        font-size: 14px;
        line-height: 1;
    }
}

@media (max-width: 480px) {
    .slider-slides .slides-item .content .text-wrap .slides-title {
        display: none;
    }
}

.slider-slides .slides-item .content .text-wrap .slides-sub-title {
    color: #fff;
    font-size: 14px;
    margin-bottom: 5px;
}

@media (max-width: 640px) {
    .slider-slides .slides-item .content .text-wrap .slides-sub-title {
        display: none;
    }
}

.slider-slides .slides-item .content .slides-number {
    font-size: 104px;
    font-size: 26px;
    color: rgba(255, 255, 255, 0.1);
    position: relative;
    float: right;
    line-height: 1;
}

@media (max-width: 800px) {
    .slider-slides .slides-item .content .slides-number {
        font-size: 90px;
    }
}

@media (max-width: 640px) {
    .slider-slides .slides-item .content .slides-number {
        font-size: 70px;
    }
}

@media (max-width: 570px) {
    .slider-slides .slides-item .content .slides-number {
        font-size: 50px;
    }
}

@media (max-width: 360px) {
    .slider-slides .slides-item .content .slides-number {
        font-size: 30px;
    }
}

.slider-slides .slides-item.slide-active .triangle-slides {
    opacity: 1;
    top: -34px;
}

.slider-slides .slides-item.main-slider-bg-light .content .text-wrap .slides-title {
    color: #2f2c2c;
}

.slider-slides .slides-item.main-slider-bg-light .content .text-wrap .slides-sub-title {
    color: #2f2c2c;
}

.slider-slides .slides-item.main-slider-bg-light .content .slides-number {
    color: rgba(137, 137, 137, 0.1);
}

.slider-slides .triangle-slides {
    border: 20px solid transparent;
    display: block;
    border-bottom: 15px solid transparent;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -20px;
    opacity: 0;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
}

    .slider-slides .triangle-slides.dark {
        border-bottom-color: #30302d;
    }

    .slider-slides .triangle-slides.primary {
        border-bottom-color: #00A0E1;
    }

    .slider-slides .triangle-slides.secondary {
        border-bottom-color: #f15b26;
    }

    .slider-slides .triangle-slides.orange {
        border-bottom-color: #fcb03b;
    }

    .slider-slides .triangle-slides.green {
        border-bottom-color: #3cb878;
    }

/*------------- Main-Slider-bg-photo --------------*/
.main-slider-bg-photo-wrap {
    min-height: 680px;
}

    .main-slider-bg-photo-wrap .slider-slides {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
    }

    .main-slider-bg-photo-wrap .main-slider-bg-photo {
        background-size: cover;
    }

        .main-slider-bg-photo-wrap .main-slider-bg-photo .slider-content {
            position: relative;
            padding: 170px 0;
            max-width: 870px;
        }

@media (max-width: 768px) {
    .main-slider-bg-photo-wrap .main-slider-bg-photo .slider-content {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .main-slider-bg-photo-wrap .main-slider-bg-photo .slider-content {
        padding: 300px 0;
    }
}

.main-slider-bg-photo-wrap .main-slider-bg-photo .slider-content.left {
    margin: 0;
    max-width: 670px;
    float: left;
}

@media (max-width: 768px) {
    .main-slider-bg-photo-wrap .main-slider-bg-photo .slider-content.left {
        max-width: 100%;
    }
}

.main-slider-bg-photo-wrap .main-slider-bg-photo .slider-content.right {
    margin: 0;
    max-width: 570px;
    float: right;
}

@media (max-width: 768px) {
    .main-slider-bg-photo-wrap .main-slider-bg-photo .slider-content.right {
        max-width: 100%;
    }
}

.main-slider-bg-photo-wrap .main-slider-bg-photo .slider-content .slider-content-text {
    margin-bottom: 40px;
}

.main-slider-bg-photo-wrap .main-slider-bg-photo .btn-prev {
    top: 50%;
    left: 60px;
}

.main-slider-bg-photo-wrap .main-slider-bg-photo .btn-next {
    top: 50%;
    right: 60px;
}

@media (max-width: 768px) {
    .main-slider-bg-photo-wrap .main-slider-bg-photo .table-cell {
        display: table-cell;
    }
}

@media (max-width: 570px) {
    .main-slider-bg-photo-wrap .main-slider-bg-photo .table-cell {
        float: none;
    }
}

@media (max-width: 320px) {
    .main-slider-bg-photo-wrap .main-slider-bg-photo .btn + .btn {
        margin-left: 0;
        margin-top: 20px;
    }
}

/*------------- Main Slider / Category ----------*/
.categories-bg {
    padding: 150px 0 50px 0;
    /*background-image: url('../assets/503x775.jpg');*/
    background-repeat: no-repeat;
    background-position: left;
    background-size: 26%;
    background-position-y: center;
}

    .categories-bg .categories {
        position: relative;
    }

        .categories-bg .categories:before {
            content: "";
            position: absolute;
            top: -30px;
            bottom: -30px;
            left: 0;
            width: 95%;
            /* height: 100%; */
            background-color: #e3ebee;
        }

@media(max-width: 980px) {
    .categories-bg {
        padding: 50px 0 40px 0;
        background-position: left;
        background-size: 302px;
        background-position-y: top;
    }
}

.categories .pretitle {
    color: #87959c;
    letter-spacing: 1px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.categories h3 {
    font-weight: 600;
}

.categories .button {
    position: relative;
    color: #00A0E1;
    padding-right: 15px;
}

    .categories .button:after {
        border-top: 1px solid #00A0E1;
        border-right: 1px solid #00A0E1;
        content: '';
        display: block;
        height: 10px;
        margin-top: -5px;
        pointer-events: none;
        position: absolute;
        right: 0;
        top: 50%;
        -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        transform: rotate(45deg);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        width: 10px;
    }

.categories.text-center {
    margin-bottom: 200px;
}

    .categories.text-center .button {
        margin-top: 50px;
    }

.homepage .categories {
    padding-bottom: 200px;
}

.categories .category-box h6 {
    /*position: absolute;
      top: 25px;
      left: 0;*/
    width: 100%;
    text-align: center;
    z-index: 1;
    color: #171717;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 0;
}

.categories .category-box p {
    font-size: 13px;
    color: #5f5f5f;
    line-height: 26px;
    padding: 10px 30px 26px;
}

.slick-categories {
    width: 1100px;
    width: 48vw;
    float: right;
}

@media(max-width: 980px) {
    .slick-categories {
        width: auto;
        float: none;
    }
}

.slick-categories .slick-slide img {
    display: inline-block;
}

.categories .category-box img {
    margin: 0;
    min-height: 90px;
}

.categories .category-box {
    position: relative;
    box-shadow: 0 0 18px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.app-feature-slick img {
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0,0,0,.2);
    margin: 15px;
}

.slick-categories .category-box {
    margin: 15px;
    background-color: #f2f6f7;
}

.slick-categories .slick-dots {
    background-color: #cadce6;
    list-style: none;
    border-radius: 4px;
    font-size: 0;
    display: inline-block;
    padding: 0;
    position: absolute;
    right: 62px;
}

    .slick-categories .slick-dots li {
        display: inline-block;
        border-radius: 4px;
    }

    .slick-categories .slick-dots button:focus,
    .slick-categories .slick-dots button:active {
        outline: 0;
        border: none;
    }

    .slick-categories .slick-dots li button {
        border: none;
        background-color: transparent;
        height: 7px;
        width: 30px;
    }

    .slick-categories .slick-dots .slick-active {
        background-color: #00A0E1;
    }

.product-item {
    position: relative;
    border: 1px solid #eee;
    border-radius: 0;
    margin-top: 100px;
    margin: 55px 15px 15px;
    background-color: #fff;
    flex-direction: column;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    min-height: calc( 100% - 50px );
}

.products-bg {
    padding: 50px 0 40px 0;
    background-image: url('../assets/parallax.jpg');
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.product-item p {
    color: #535353;
    margin: 20px 20px;
}

.product-item .btn-discard {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 16px;
    color: #171717;
    z-index: 1;
    display: block;
    width: 32px !important;
    padding: 10px;
    text-align: center;
}

    .product-item .btn-discard i {
        margin-left: 0;
        font-size: 16px;
    }

.product-item .btn-remember {
    color: #0595d1;
    font-weight: 600;
    font-size: 14px;
}

    .product-item .btn-remember + .btn {
        margin: 0;
    }

.product-item .product-name {
    color: #171717;
    font-size: 18px;
    font-weight: 600;
    padding: 15px 0;
    margin-top: 10px;
    text-align: center;
    min-height: 108px;
    margin-bottom: 0;
}

    .product-item .product-name + .price-value {
        margin-bottom: 20px;
    }

.product-item .price-value + .product-name {
    border-top: 1px solid #e5e5e5;
}

.product-item img {
    display: block;
    min-height: 180px;
    margin: 10px auto 0 auto;
}

.product-item.empty img {
    background: aliceblue;
    padding: 100px;
}

.product-item h3 {
    font-weight: 600;
}

.product-item .pretitle {
    color: #87959c;
    letter-spacing: 1px;
    margin-top: 18px;
    margin-bottom: 8px;
}

.product-item hr {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    overflow: visible;
    border-bottom: 0;
    background-color: #fff;
    border-top: 1px solid #e5e5e5;
    margin: 0;
}

.product-item .price-value {
    font-size: 18px;
    line-height: 18px;
    font-weight: 400;
    color: #00A0E1;
    padding: 10px 0 0 0;
    text-align: center;
}

    .product-item .price-value span:not(.not-span) {
        font-size: 13px;
    }

    .product-item .price-value .bar {
        display: block;
        font-size: 14px;
        color: #333;
    }

.product-item .btn {
    width: 100%;
    margin-top: auto;
}

.products-slick .slick-dots, .similar-slick .slick-dots {
    background-color: #cadce6;
    list-style: none;
    border-radius: 4px;
    font-size: 0;
    display: inline-block;
    padding: 0;
    position: absolute;
    left: 50%;
    bottom: -40px;
    transform: translateX(-50%);
}

@media(max-width: 768px) {
    .products-slick .slick-dots, .similar-slick .slick-dots {
        height: 7px;
    }
}

.products-slick .slick-dots li, .similar-slick .slick-dots li {
    display: inline-block;
    border-radius: 4px;
}

.similar-slick .slick-dots button:focus,
.similar-slick .slick-dots button:active,
.products-slick .slick-dots button:focus,
.products-slick .slick-dots button:active {
    outline: 0;
    border: none;
}

.products-slick .slick-dots li button, .similar-slick .slick-dots li button {
    border: none;
    background-color: transparent;
    height: 7px;
    width: 30px;
}

.products-slick .slick-dots .slick-active, .similar-slick .slick-dots .slick-active {
    background-color: #00A0E1;
}

.products-slick .product-item, .similar-slick .product-item {
    box-shadow: 0 0 10px 5px rgba(0,0,0,.1);
    border: none;
    height: auto;
    display: flex !important;
    flex-direction: column;
}

.products .slick-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.similar-slick .slick-prev, .similar-slick .slick-next {
    background-color: transparent;
    position: relative;
    overflow: hidden;
    width: 48px;
    height: 64px;
    text-indent: -9999px;
    z-index: 2
}

.similar-slick .slick-next {
    position: absolute;
    right: -48px;
    top: 50%;
}

.similar-slick .slick-prev {
    position: absolute;
    left: -48px;
    top: 50%;
}

    .similar-slick .slick-prev:hover:after, .similar-slick .slick-next:hover:after {
        border-color: #00A0E1 !important;
    }

    .similar-slick .slick-prev:after {
        border-left: 1px solid #2f2c2c;
        border-bottom: 1px solid #2f2c2c;
        content: '';
        display: block;
        height: 34px;
        /* margin-top: -5px; */
        pointer-events: none;
        position: absolute;
        left: 17px;
        top: 50%;
        -webkit-transform-origin: 50% 50%;
        -ms-transform-origin: 50% 50%;
        transform-origin: 50% 50%;
        -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
        -ms-transform: rotate(45deg) translateX(-50%) translateY(-50%);
        transform: rotate(45deg) translateX(-50%) translateY(-50%);
        -webkit-transition: all 0.15s ease-in-out;
        transition: all 0.15s ease-in-out;
        width: 34px;
        margin-top: 6px;
    }

.similar-slick .slick-next:after {
    border-top: 1px solid #2f2c2c;
    border-right: 1px solid #2f2c2c;
    content: '';
    display: block;
    height: 34px;
    /* margin-top: -5px; */
    pointer-events: none;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: rotate(45deg) translateX(-50%) translateY(-50%);
    -ms-transform: rotate(45deg) translateX(-50%) translateY(-50%);
    transform: rotate(45deg) translateX(-50%) translateY(-50%);
    -webkit-transition: all 0.15s ease-in-out;
    transition: all 0.15s ease-in-out;
    width: 34px;
    margin-top: 6px;
}

/*------------- Filters -------------------------*/

.filters_listing {
    padding: 10px 0 5px 0;
    background: #fff;
    border-bottom: 1px solid #ededed;
    z-index: 99 !important;
    position: relative;
}

    .filters_listing ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .filters_listing ul li {
            margin-right: 10px;
        }

            .filters_listing ul li:first-child {
                float: left;
            }

            .filters_listing ul li:nth-child(2) {
                float: right;
                margin-right: 0;
            }

            .filters_listing ul li:nth-child(3) {
                float: right;
                margin-right: 0;
            }

@media (max-width: 767px) {
    .filters_listing ul li:nth-child(3) {
        display: none;
    }
}

.filters_listing ul li:nth-child(4) {
    float: right;
}

@media (max-width: 767px) {
    .filters_listing ul li:nth-child(4) {
        margin-right: 0;
    }
}

.filters_listing.version_2 ul {
    margin: 0;
}

    .filters_listing.version_2 ul li {
        margin-right: 10px;
    }

        .filters_listing.version_2 ul li:first-child {
            float: left;
        }

        .filters_listing.version_2 ul li:nth-child(2) {
            float: right;
            margin-right: 0;
        }

@media (max-width: 767px) {
    .filters_listing.version_2 ul li:nth-child(2) {
        display: none;
    }
}

.filters_listing.version_2 ul li:nth-child(3) {
    float: right;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .filters_listing.version_2 ul li:nth-child(3) {
        display: block;
        margin-right: 0;
    }
}

.filters_listing.version_3 {
    margin: 0 -15px 0 -15px;
}

    .filters_listing.version_3 ul {
        margin: 2px 0 0 0;
    }

        .filters_listing.version_3 ul li {
            margin-right: 10px;
        }

            .filters_listing.version_3 ul li:first-child {
                float: left;
            }

            .filters_listing.version_3 ul li:nth-child(2) {
                float: right;
                margin-right: 0;
            }

.switch-field {
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
}

    .switch-field input {
        position: absolute !important;
        clip: rect(0, 0, 0, 0);
        height: 1px;
        width: 1px;
        border: 0;
        overflow: hidden;
    }

        .switch-field input:checked + label {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
            color: rgba(0, 0, 0, 0.9);
        }

    .switch-field label {
        float: left;
        display: inline-block;
        min-width: 65px;
        color: rgba(0, 0, 0, 0.5);
        font-weight: 600;
        font-size: 14px;
        text-align: center;
        text-shadow: none;
        padding: 10px 8px 8px 8px;
        line-height: 1;
        border-right: 1px solid rgba(0, 0, 0, 0.08);
        -moz-transition: all 0.2s ease-in-out;
        -o-transition: all 0.2s ease-in-out;
        -webkit-transition: all 0.2s ease-in-out;
        -ms-transition: all 0.2s ease-in-out;
        transition: all 0.2s ease-in-out;
        margin: 0;
    }

@media (max-width: 575px) {
    .switch-field label {
        min-width: inherit;
    }
}

.switch-field label:first-of-type {
    border-left: 0;
}

.switch-field label:last-of-type {
    border-right: 0;
}

.switch-field label:hover {
    cursor: pointer;
    color: #219cd8;
}

#filters_col {
    background-color: #fff;
    padding: 20px 20px 15px 20px;
    margin-bottom: 25px;
    border: 1px solid #ededed;
}

    #filters_col label {
        color: #333;
        font-weight: normal;
    }

a#filters_col_bt {
    display: block;
    color: #333;
    position: relative;
    font-size: 16px;
    font-size: 1rem;
    font-weight: 600;
}

    a#filters_col_bt:before {
        font-family: "ElegantIcons";
        content: "\66";
        font-size: 26px;
        font-size: 1.625rem;
        position: absolute;
        right: 0;
        top: 0;
        line-height: 1;
        font-weight: normal;
    }

.filter_type h6 {
    border-top: 1px solid #ededed;
    margin: 15px 0;
    padding: 15px 0 0 0;
    font-size: 13px;
    font-size: 0.8125rem;
}

.filter_type ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
}

    .filter_type ul li {
        margin-bottom: 5px;
    }

        .filter_type ul li small {
            float: right;
            position: relative;
            top: 4px;
        }

        .filter_type ul li:last-child {
            margin-bottom: 0;
        }

.category_filter {
    border-bottom: 1px solid #ddd;
    margin-bottom: 25px;
    padding-bottom: 10px;
}

    .category_filter .container_radio {
        display: inline-block;
        margin-right: 15px;
    }

a.btn_filt, a.btn_filt_map {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    padding: 8px 12px 8px 10px;
    line-height: 1;
    margin-bottom: 5px;
    display: inline-block;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-weight: 600;
    font-size: 14px;
    color: #fff !important;
    position: relative;
    height: 32px;
    overflow: hidden;
    margin: 0;
}

    a.btn_filt img {
        display: inline-block;
        height: 39px;
        margin-top: -20px;
    }

@media (max-width: 767px) {
    a.btn_filt, a.btn_filt_map {
        display: block;
        width: 32px;
        height: 32px;
        padding: 0;
    }

        a.btn_filt img {
            display: inline-block;
            height: 39px;
            margin-top: -4px;
        }
}

a.btn_filt:hover, a.btn_filt_map:hover {
    color: #219cd8;
}

@media(min-width: 768px) {
    a.btn_filt, a.btn_filt_map {
        display: none;
    }
}


#filters {
    background-color: #fff;
    border-bottom: 1px solid #ededed;
}

    #filters h6 {
        margin-bottom: 15px;
        font-size: 16px;
        font-weight: 500;
    }

    #filters ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        #filters ul li small {
            font-weight: 600;
            float: right;
            position: relative;
            top: 4px;
        }

.map_view#filters {
    margin: 0 -15px;
}

.distance {
    margin-bottom: 15px;
}

    .distance span {
        font-weight: 600;
        color: #004dda;
    }

.rangeslider__handle {
    border: 2px solid #004dda !important;
    box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.15);
}

.rangeslider__fill {
    background: #004dda !important;
}

.filters_listing {
    padding: 10px 0 5px 0;
    background: #fff;
    border-bottom: 1px solid #ededed;
    z-index: 99 !important;
    position: relative;
}

    .filters_listing ul {
        margin: 0;
    }

        .filters_listing ul li {
            margin-right: 10px;
        }

            .filters_listing ul li:first-child {
                float: left;
            }

            .filters_listing ul li:nth-child(2) {
                float: right;
                margin-right: 0;
            }

            .filters_listing ul li:nth-child(3) {
                float: right;
                margin-right: 0;
            }

@media (max-width: 767px) {
    .filters_listing ul li:nth-child(3) {
        display: none;
    }
}

.filters_listing ul li:nth-child(4) {
    float: right;
}

@media (max-width: 767px) {
    .filters_listing ul li:nth-child(4) {
        margin-right: 0;
    }
}

.filters_listing.version_2 ul {
    margin: 0;
}

    .filters_listing.version_2 ul li {
        margin-right: 10px;
    }

        .filters_listing.version_2 ul li:first-child {
            float: left;
        }

        .filters_listing.version_2 ul li:nth-child(2) {
            float: right;
            margin-right: 0;
        }

@media (max-width: 767px) {
    .filters_listing.version_2 ul li:nth-child(2) {
        display: none;
    }
}

.filters_listing.version_2 ul li:nth-child(3) {
    float: right;
    margin-right: 10px;
}

@media (max-width: 767px) {
    .filters_listing.version_2 ul li:nth-child(3) {
        display: block;
        margin-right: 0;
    }
}

.filters_listing.version_3 {
    margin: 0 -15px 0 -15px;
}

    .filters_listing.version_3 ul {
        margin: 2px 0 0 0;
    }

        .filters_listing.version_3 ul li {
            margin-right: 10px;
        }

            .filters_listing.version_3 ul li:first-child {
                float: left;
            }

            .filters_listing.version_3 ul li:nth-child(2) {
                float: right;
                margin-right: 0;
            }

.margin_30_5 {
    padding-top: 30px;
    padding-bottom: 5px;
}

/* Checkbox style */
.container_check {
    display: block;
    position: relative;
    font-size: 14px;
    font-size: 0.875rem;
    padding-left: 30px;
    line-height: 1.4;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .container_check input {
        position: absolute;
        opacity: 0;
        cursor: pointer;
    }

        .container_check input:checked ~ .checkmark {
            background-color: #01548f;
            border: 1px solid transparent;
        }

    .container_check .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        border: 1px solid #d2d8dd;
        -webkit-border-radius: 3px;
        -moz-border-radius: 3px;
        -ms-border-radius: 3px;
        border-radius: 3px;
        -moz-transition: all 0.3s ease-in-out;
        -o-transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -ms-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
    }

        .container_check .checkmark:after {
            content: "";
            position: absolute;
            display: none;
            left: 7px;
            top: 3px;
            width: 5px;
            height: 10px;
            border: solid white;
            border-width: 0 2px 2px 0;
            -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
            transform: rotate(45deg);
        }

    .container_check input:checked ~ .checkmark:after {
        display: block;
    }

/* Radio buttons */
.container_radio {
    display: block;
    position: relative;
    font-size: 15px;
    font-size: 0.9375rem;
    padding-left: 30px;
    line-height: 1.3;
    margin-bottom: 10px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.container_radio_flex {
    display: flex;
    flex-direction: row;
    gap: 30px;
    justify-content: center;
}
.container_radio input {
    position: absolute;
    opacity: 0;
}
.container_radio label {
    font-weight: 500;
    font-size: 16px;
}

        .container_radio input:checked ~ .checkmark:after {
            opacity: 1;
        }

    .container_radio .checkmark {
        position: absolute;
        top: 0;
        left: 0;
        height: 20px;
        width: 20px;
        border: 1px solid #ccc;
        border-radius: 50%;
    }

        .container_radio .checkmark:after {
            display: block;
            content: "";
            position: absolute;
            opacity: 0;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
            top: 3px;
            left: 3px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #29538e;
            -moz-transition: all 0.3s ease-in-out;
            -o-transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -ms-transition: all 0.3s ease-in-out;
            transition: all 0.3s ease-in-out;
        }


/*------------- Testimonial-SLIDER --------------*/
.testimonial-slider {
    background-color: #fcb03b;
    padding: 120px 0 80px 0;
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .testimonial-slider .testimonial-item {
        margin-top: 40px;
    }
}

.testimonial-slider .testimonial-item .quote {
    position: absolute;
    right: 70px;
    bottom: 20px;
}

    .testimonial-slider .testimonial-item .quote i {
        font-size: 140px;
        color: #3b3432;
    }

@media (max-width: 360px) {
    .testimonial-slider .testimonial-item .quote {
        right: 0;
    }
}

.testimonial-slider .testimonial-item .pagination, .testimonial-slider .testimonial-item .swiper-pagination {
    right: 100px;
    bottom: -80px;
}

@media (max-width: 640px) {
    .testimonial-slider .testimonial-item .pagination, .testimonial-slider .testimonial-item .swiper-pagination {
        right: 0;
    }
}

.testimonial-slider .testimonial-item .pagination .pagination-item, .testimonial-slider .testimonial-item .pagination .swiper-pagination-bullet, .testimonial-slider .testimonial-item .swiper-pagination .pagination-item, .testimonial-slider .testimonial-item .swiper-pagination .swiper-pagination-bullet {
    background-color: #2f2c2c;
}

    .testimonial-slider .testimonial-item .pagination .pagination-item.active, .testimonial-slider .testimonial-item .pagination .pagination-item.swiper-pagination-bullet-active, .testimonial-slider .testimonial-item .pagination .swiper-pagination-bullet.active, .testimonial-slider .testimonial-item .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .testimonial-slider .testimonial-item .swiper-pagination .pagination-item.active, .testimonial-slider .testimonial-item .swiper-pagination .pagination-item.swiper-pagination-bullet-active, .testimonial-slider .testimonial-item .swiper-pagination .swiper-pagination-bullet.active, .testimonial-slider .testimonial-item .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: transparent;
        border: 2px solid #fff;
    }

@media (max-width: 768px) {
    .testimonial-slider .testimonial-item .pagination, .testimonial-slider .testimonial-item .swiper-pagination {
        bottom: -50px;
    }
}

.testimonial-slider .testimonial-item .testimonial__thumb-img {
    position: absolute;
    top: 0;
    right: 90px;
}

@media (max-width: 360px) {
    .testimonial-slider .testimonial-item .testimonial__thumb-img {
        display: none;
    }
}

.testimonial-slider .testimonial-slider-item {
    position: relative;
}

@media (max-width: 768px) {
    .testimonial-slider .testimonial-slider-item {
        margin-top: 40px;
        z-index: 50;
    }
}

@media (max-width: 360px) {
    .testimonial-slider .testimonial-slider-item .avatar {
        left: 40px;
    }
}

.testimonial-slider .testimonial-slider-item .avatar img {
    width: auto;
    display: inline-block;
}

.testimonial-slider .testimonial-img {
    position: absolute;
    bottom: -200px;
    left: 40%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

@media (max-width: 360px) {
    .testimonial-slider .testimonial-img {
        display: none;
    }
}

/*------------- Testimonial-SLIDER-standard --------------*/
.testimonial-slider-standard {
    position: relative;
    z-index: 2;
}

@media (max-width: 600px) {
    .testimonial-slider-standard {
        margin-top: 35px;
    }
}

@media (max-width: 360px) {
    .testimonial-slider-standard {
        margin-top: 70px;
    }
}

.testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .testimonial-text {
    font-size: 30px;
    color: #fff;
    margin-bottom: 40px;
    line-height: 1.3;
}

@media (max-width: 640px) {
    .testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .testimonial-text {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .testimonial-text {
        font-size: 18px;
    }
}

.testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .author-info-wrap {
    position: relative;
}

    .testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .author-info-wrap .testimonial-img-author {
        border-radius: 100%;
        overflow: hidden;
        margin-bottom: 15px;
        margin-right: 0;
    }

        .testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .author-info-wrap .testimonial-img-author img {
            border-radius: 50%;
        }

    .testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .author-info-wrap .author-info .author-name {
        font-size: 18px;
        color: #00A0E1;
        margin-bottom: 5px;
    }

    .testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .author-info-wrap .author-info .author-company {
        font-size: 14px;
        color: #797676;
    }

    .testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .author-info-wrap.display-flex .testimonial-img-author {
        margin-right: 30px;
    }

@media (max-width: 360px) {
    .testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .avatar {
        top: -75%;
    }
}

@media (max-width: 320px) {
    .testimonial-slider-standard .testimonial-slider-standard-item .testimonial-item .avatar {
        top: -155px;
    }
}

.testimonial-slider-standard .btn-next {
    right: 95px;
    bottom: 0;
}

@media (max-width: 980px) {
    .testimonial-slider-standard .btn-next {
        right: 5px;
    }
}

.testimonial-slider-standard .btn-prev {
    bottom: 0;
    left: 95px;
}

@media (max-width: 980px) {
    .testimonial-slider-standard .btn-prev {
        left: 5px;
    }
}

.testimonial-slider-standard .swiper-pagination {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

.testimonial-slider-standard .pagination-bottom {
    padding-bottom: 150px;
    margin-bottom: -100px;
}

    .testimonial-slider-standard .pagination-bottom .swiper-pagination {
        bottom: 80px;
    }

        .testimonial-slider-standard .pagination-bottom .swiper-pagination .swiper-pagination-bullet {
            background-color: #d7d7d7;
        }

            .testimonial-slider-standard .pagination-bottom .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
                background-color: transparent;
                border: 2px solid #00A0E1;
            }

    .testimonial-slider-standard .pagination-bottom .btn-next, .testimonial-slider-standard .pagination-bottom .btn-prev {
        bottom: 150px;
    }

@media (max-width: 360px) {
    .testimonial-slider-standard .pagination-bottom .btn-next, .testimonial-slider-standard .pagination-bottom .btn-prev {
        display: none;
    }
}

.testimonial-slider-standard.avatar-top .swiper-container {
    padding-top: 155px;
    margin-top: -155px;
}

.testimonial-slider-standard.avatar-top .avatar {
    top: -100%;
    left: 50%;
    transform: translate(-50%, 50%);
    -webkit-transform: translate(-50%, 50%);
    -ms-transform: translate(-50%, 50%);
}

@media (max-width: 800px) {
    .testimonial-slider-standard.avatar-top .avatar {
        top: -110px;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }
}

@media (max-width: 360px) {
    .testimonial-slider-standard.avatar-top .avatar {
        top: -110px;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }
}

/*------------- Recent-post-slider --------------*/
.recent-post-slider {
    position: relative;
}

    .recent-post-slider .heading {
        margin-bottom: 40px;
        display: inline-block;
    }

        .recent-post-slider .heading .heading-title {
            float: left;
        }

        .recent-post-slider .heading .heading-line {
            clear: both;
        }

    .recent-post-slider .read-more {
        font-size: 18px;
        color: #ccc;
        padding: 5px 0 0 30px;
        border-left: 1px solid #f0f2f2;
        margin: 15px 0 0 30px;
        display: block;
        float: left;
    }

@media (max-width: 980px) {
    .recent-post-slider .read-more {
        padding-left: 0;
        margin-left: 0;
        float: none;
        border-left: none;
    }
}

.recent-post-slider .pagination, .recent-post-slider .swiper-pagination {
    right: 0;
    top: -120px;
    z-index: 50;
}

@media (max-width: 980px) {
    .recent-post-slider .pagination, .recent-post-slider .swiper-pagination {
        top: 80px;
    }
}

@media (max-width: 320px) {
    .recent-post-slider .pagination, .recent-post-slider .swiper-pagination {
        top: 40px;
    }
}

.recent-post-slider .top-pagination {
    padding-top: 125px;
    top: -125px;
    margin-bottom: -100px;
}

    .recent-post-slider .top-pagination .swiper-pagination {
        top: 0;
    }

@media (max-width: 640px) {
    .recent-post-slider .top-pagination .swiper-pagination {
        top: 30px;
    }
}

@media (max-width: 360px) {
    .recent-post-slider .top-pagination .swiper-pagination {
        top: 80px;
        right: auto;
    }
}

/*------------- Client-carousel --------------*/
.client-carousel {
    background-color: #f7f9f9;
    position: relative;
}

    .client-carousel .btn-prev {
        bottom: 0;
        left: 42%;
    }

@media (max-width: 980px) {
    .client-carousel .btn-prev {
        left: 30%;
    }
}

@media (max-width: 480px) {
    .client-carousel .btn-prev {
        left: 20%;
    }
}

.client-carousel .btn-next {
    bottom: 0;
    right: 42%;
}

@media (max-width: 980px) {
    .client-carousel .btn-next {
        right: 30%;
    }
}

@media (max-width: 480px) {
    .client-carousel .btn-next {
        right: 20%;
    }
}

.client-carousel .clients-item-wrap {
    position: relative;
    padding: 13px 0 104px 0;
    text-align: center;
}

.client-carousel .pagination-bottom {
    padding-bottom: 120px;
    top: 40px;
}

@media (max-width: 570px) {
    .client-carousel .pagination-bottom {
        padding-bottom: 40px;
    }
}

.clients-item-wrap {
    text-align: center;
}

/*------------- Recent Case Slider --------------*/
.recent-case-slider {
    position: relative;
}

    .recent-case-slider .heading {
        margin-bottom: 48px;
        display: inline-block;
    }

        .recent-case-slider .heading .heading-title {
            float: left;
        }

@media (max-width: 640px) {
    .recent-case-slider .heading .heading-title {
        float: none;
    }
}

.recent-case-slider .heading .heading-line {
    clear: both;
}

.recent-case-slider .pagination, .recent-case-slider .swiper-pagination {
    right: 0;
    top: 0;
    z-index: 5;
}

@media (max-width: 980px) {
    .recent-case-slider .pagination, .recent-case-slider .swiper-pagination {
        top: 30px;
    }
}

@media (max-width: 640px) {
    .recent-case-slider .read-more {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
    }
}

.recent-case-slider .top-pagination {
    padding-top: 125px;
    top: -125px;
    margin-bottom: -100px;
}

.recent-case-slider .pagination-bottom {
    padding-bottom: 80px;
}

    .recent-case-slider .pagination-bottom .pagination, .recent-case-slider .pagination-bottom .swiper-pagination {
        left: 0;
        bottom: 0;
        right: auto;
        top: auto;
    }

/*------------- Testimonial-arrow-slider --------------*/
.testimonial-arrow-slider {
    position: relative;
}

    .testimonial-arrow-slider .heading {
        margin-bottom: 60px;
        display: inline-block;
    }

        .testimonial-arrow-slider .heading .heading-title {
            float: left;
        }

        .testimonial-arrow-slider .heading .heading-line {
            clear: both;
        }

@media (max-width: 980px) {
    .testimonial-arrow-slider .heading .read-more {
        margin-left: 10px;
        padding-left: 10px;
        border-left: none;
    }
}

@media (max-width: 570px) {
    .testimonial-arrow-slider .heading .read-more {
        margin-left: 0;
        padding-left: 0;
        float: none;
    }
}

.testimonial-arrow-slider .pagination, .testimonial-arrow-slider .swiper-pagination {
    left: 0;
    bottom: 0;
    z-index: 5;
}

@media (max-width: 1024px) {
    .testimonial-arrow-slider .pagination, .testimonial-arrow-slider .swiper-pagination {
        bottom: 20px;
    }
}

.testimonial-arrow-slider .pagination .swiper-pagination-bullet, .testimonial-arrow-slider .swiper-pagination .swiper-pagination-bullet {
    background-color: #d7d7d7;
}

    .testimonial-arrow-slider .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .testimonial-arrow-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: transparent;
        border: 2px solid #00A0E1;
    }

.testimonial-arrow-slider .pagination.top-right, .testimonial-arrow-slider .swiper-pagination.top-right {
    left: auto;
    bottom: auto;
    right: 0;
    top: 150px;
}

.testimonial-arrow-slider .pagination-bottom {
    padding-bottom: 80px;
    top: 0;
}

/*------------- Slider-profit --------------*/
.slider-profit-wrap {
    position: relative;
}

    .slider-profit-wrap .pagination-vertical {
        padding-left: 100px;
        margin-left: -100px;
    }

    .slider-profit-wrap .slider-profit {
        position: relative;
    }

        .slider-profit-wrap .slider-profit .slider-profit-thumb {
            position: relative;
        }

@media (max-width: 480px) {
    .slider-profit-wrap .slider-profit .slider-profit-thumb {
        margin-top: 40px;
    }
}

.slider-profit-wrap .slider-profit .btn {
    margin-bottom: 30px;
}

.slider-profit-wrap .pagination, .slider-profit-wrap .swiper-pagination {
    display: block;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

@media (max-width: 1280px) {
    .slider-profit-wrap .pagination, .slider-profit-wrap .swiper-pagination {
        left: 70px;
    }
}

@media (max-width: 640px) {
    .slider-profit-wrap .pagination, .slider-profit-wrap .swiper-pagination {
        left: 50%;
        top: auto;
        bottom: -20px;
    }
}

.slider-profit-wrap .pagination .swiper-pagination-bullet, .slider-profit-wrap .swiper-pagination .swiper-pagination-bullet {
    display: block;
    margin: 9px 5px;
    background-color: #acd373;
}

@media (max-width: 640px) {
    .slider-profit-wrap .pagination .swiper-pagination-bullet, .slider-profit-wrap .swiper-pagination .swiper-pagination-bullet {
        display: inline-block;
    }
}

.slider-profit-wrap .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .slider-profit-wrap .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    border-color: #fff;
    background-color: transparent;
}

.swiper-slide > .main-slider {
    height: 100%;
    padding-bottom: 0;
    padding-top: 0;
}

@media (max-width: 1280px) {
    .swiper-slide > .main-slider {
        height: auto;
    }
}

@media (max-width: 360px) {
    .swiper-slide > .main-slider {
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -webkit-box;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        -webkit-justify-content: center;
        justify-content: center;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        align-items: center;
    }
}

/*------------- #SEO-SCORE --------------*/
.seo-score {
    background-color: #2f2c2c;
    padding: 130px 0 200px;
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .seo-score {
        padding: 65px 0 100px;
    }
}

@media (max-width: 460px) {
    .seo-score {
        padding: 65px 0 180px;
    }
}

.seo-score .seo-score-content {
    z-index: 2;
    position: relative;
}

    .seo-score .seo-score-content .heading .heading-title {
        color: #fff;
        margin-bottom: 10px;
    }

    .seo-score .seo-score-content .heading .heading-text {
        color: #797676;
    }

    .seo-score .seo-score-content .input-drop-shadow input {
        -webkit-box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
        box-shadow: 25px 20px 20px -15px rgba(0, 0, 0, 0.3);
    }

    .seo-score .seo-score-content .seo-score-form input.site {
        border-radius: 50px 0 0 50px;
    }

@media (max-width: 1024px) {
    .seo-score .seo-score-content .seo-score-form input.site {
        border-radius: 50px;
        margin-bottom: 30px;
    }
}

.seo-score .seo-score-content .seo-score-form input.e-mail {
    border-radius: 0 50px 50px 0;
    margin-left: 2px;
}

@media (max-width: 1024px) {
    .seo-score .seo-score-content .seo-score-form input.e-mail {
        border-radius: 50px;
    }
}

@media (max-width: 640px) {
    .seo-score .seo-score-content .seo-score-form .no-padding {
        padding: 0 15px;
    }
}

.seo-score .seo-score-content .seo-score-form button {
    margin-top: 30px;
}

.seo-score .images img {
    position: absolute;
    opacity: 0;
}

    .seo-score .images img:first-of-type {
        top: -100px;
        left: 50%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }

    .seo-score .images img:nth-child(2) {
        bottom: -100%;
        left: 50%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }

    .seo-score .images img:last-of-type {
        bottom: -100%;
        left: 50%;
        transform: translate(-50%, 0);
        -webkit-transform: translate(-50%, 0);
        -ms-transform: translate(-50%, 0);
    }

/*------------- #OFFERS --------------*/
.our-video {
    overflow: hidden;
}

@media (max-width: 640px) {
    .our-video {
        display: block;
    }
}

.our-video .video {
    min-height: 500px;
    background: url("../img/video2.png") no-repeat 50% 50%, #3cb878;
    background-size: contain;
}

    .our-video .video .video-control {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

.our-video .content {
    padding-right: 15px;
    padding-left: 15px;
}

    .our-video .content .heading .heading-text {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 40px;
    }

/*------------- #COUNTERS --------------*/
.counters {
    overflow: hidden;
    padding: 80px 0;
}

@media (max-width: 1024px) {
    .counters {
        text-align: center;
    }
}

@media (max-width: 800px) {
    .counters {
        padding: 35px 0;
    }
}

@media (max-width: 1024px) {
    .counters .counter-item {
        margin-bottom: 30px;
    }
}

.counters .counter-item .counter-numbers {
    font-size: 100px;
    color: rgba(255, 255, 255, 0.2);
    line-height: 1;
    margin-bottom: -36px;
}

@media (max-width: 640px) {
    .counters .counter-item .counter-numbers {
        font-size: 50px;
    }
}

@media (max-width: 570px) {
    .counters .counter-item .counter-numbers {
        margin-bottom: 0;
    }
}

.counters .counter-item .counter-numbers .units {
    display: inline-block;
    margin-left: -25px;
}

@media (max-width: 640px) {
    .counters .counter-item .counter-numbers .units {
        margin-left: -15px;
    }
}

.counters .counter-item .counter-title {
    font-size: 24px;
    color: #fff;
    text-transform: uppercase;
}

@media (max-width: 640px) {
    .counters .counter-item .counter-title {
        font-size: 18px;
    }
}

.counters .counter-item .counter-line .short-line {
    display: inline-block;
    width: 20px;
    height: 3px;
    background-color: #66c491;
    border-radius: 10px;
    position: relative;
    margin-right: 10px;
}

.counters .counter-item .counter-line .long-line {
    display: inline-block;
    width: 50px;
    height: 3px;
    background-color: #66c491;
    border-radius: 10px;
    position: relative;
}

/*------------- #Counter modern --------------*/
.counters-modern {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

    .counters-modern .counter-item-modern {
        padding-right: 35px;
    }

@media (max-width: 1024px) {
    .counters-modern .counter-item-modern {
        margin-bottom: 30px;
    }
}

@media (max-width: 640px) {
    .counters-modern .counter-item-modern {
        padding-right: 0;
    }
}

.counters-modern .counter-item-modern i {
    margin-bottom: 20px;
    color: #64d8ff;
    font-size: 70px;
    display: block;
}

    .counters-modern .counter-item-modern i.c-primary {
        color: #00A0E1;
    }

    .counters-modern .counter-item-modern i.c-secondary {
        color: #f15b26;
    }

    .counters-modern .counter-item-modern i.c-green {
        color: #3cb878 !important;
    }

    .counters-modern .counter-item-modern i.c-orange {
        color: #fcb03b !important;
    }

.counters-modern .counter-item-modern .counter-numbers-modern {
    font-size: 100px;
    line-height: 1;
}

@media (max-width: 1024px) {
    .counters-modern .counter-item-modern .counter-numbers-modern {
        font-size: 80px;
    }
}

@media (max-width: 640px) {
    .counters-modern .counter-item-modern .counter-numbers-modern {
        font-size: 50px;
    }
}

.counters-modern .counter-item-modern .counter-numbers-modern .units {
    display: inline-block;
    margin-left: -25px;
}

@media (max-width: 640px) {
    .counters-modern .counter-item-modern .counter-numbers-modern .units {
        margin-left: -10px;
    }
}

.counters-modern .counter-item-modern .counter-numbers-modern.negative-margin {
    margin-bottom: -36px;
}

@media (max-width: 640px) {
    .counters-modern .counter-item-modern .counter-numbers-modern.negative-margin {
        margin-bottom: 0;
    }
}

.counters-modern .counter-item-modern .counter-title-modern {
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
}

.counters-modern .counter-item-modern .counter-line-modern .short-line-modern {
    display: inline-block;
    width: 20px;
    height: 3px;
    border-radius: 10px;
    position: relative;
    margin-right: 10px;
}

.counters-modern .counter-item-modern .counter-line-modern .long-line-modern {
    display: inline-block;
    width: 50px;
    height: 3px;
    border-radius: 10px;
    position: relative;
}

/*------------- #RECENT-CASE --------------*/
.recent-case {
    overflow: hidden;
}

    .recent-case .case-item-wrap {
        overflow: hidden;
        margin-bottom: 55px;
    }

@media (max-width: 640px) {
    .recent-case .case-item-wrap {
        padding: 0 15px;
    }
}

.recent-case .pagination, .recent-case .swiper-pagination {
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

.recent-case .pagination-bottom {
    padding-bottom: 80px;
}

.case-item {
    padding: 30px;
    background-color: #f7f9f9;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (max-width: 800px) {
    .case-item {
        margin-bottom: 30px;
    }
}

.case-item .case-item__thumb {
    margin-bottom: 34px;
    -webkit-box-shadow: 0 16px 16px -8px rgba(0, 0, 0, 0.3);
    box-shadow: 0 16px 16px -8px rgba(0, 0, 0, 0.3);
}

.case-item .case-item__title {
    text-transform: uppercase;
    color: #2f2c2c;
    margin-bottom: 5px;
}

.case-item .case-item__cat a {
    display: inline-block;
    color: #acacac;
    font-size: 14px;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.case-item:hover {
    background-color: #00A0E1;
}

    .case-item:hover .case-item__title {
        color: #fff;
    }

    .case-item:hover .case-item__cat a {
        color: rgba(255, 255, 255, 0.5);
    }

        .case-item:hover .case-item__cat a:hover {
            color: #fff;
        }

.case-item.big {
    padding-bottom: 60px;
}

    .case-item.big .case-item__thumb {
        margin-bottom: 60px;
    }

    .case-item.big .case-item__cat a {
        font-size: 16px;
    }

.cat-list {
    margin: 50px 0;
    padding: 0;
    list-style: none;
}

    .cat-list .cat-list__item {
        display: inline-block;
        padding: 0 20px;
    }

@media (max-width: 980px) {
    .cat-list .cat-list__item {
        margin-bottom: 20px;
    }
}

.cat-list .cat-list__item a {
    font-size: 17px;
    color: #2f2c2c;
    position: relative;
    text-transform: capitalize;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    .cat-list .cat-list__item a:before {
        content: '';
        display: block;
        width: 80%;
        height: 2px;
        background-color: #00A0E1;
        position: absolute;
        right: 0;
        bottom: -10px;
        opacity: 0;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

    .cat-list .cat-list__item a:after {
        content: '';
        display: block;
        position: absolute;
        width: 15%;
        height: 2px;
        background-color: #00A0E1;
        left: 0;
        bottom: -10px;
        opacity: 0;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

    .cat-list .cat-list__item a:hover {
        color: #00A0E1;
    }

        .cat-list .cat-list__item a:hover:after, .cat-list .cat-list__item a:hover:before {
            opacity: 1;
        }

.cat-list .cat-list__item.active a {
    color: #00A0E1;
}

    .cat-list .cat-list__item.active a:after, .cat-list .cat-list__item.active a:before {
        opacity: 1;
    }

/*================= Animation for primary menu =========*/
.cat-list > li:hover > a:after {
    width: 15%;
    -webkit-animation: cat-short .5s linear;
    animation: cat-short .5s linear;
}

@-webkit-keyframes cat-short {
    0% {
        width: 0;
    }

    50% {
        width: 40%;
    }

    100% {
        width: 15%;
    }
}

@keyframes cat-short {
    0% {
        width: 0;
    }

    50% {
        width: 40%;
    }

    100% {
        width: 15%;
    }
}

.cat-list > li:hover > a:before {
    width: 80%;
    -webkit-animation: cat-long .5s linear;
    animation: cat-long .5s linear;
}

@-webkit-keyframes cat-long {
    0% {
        width: 100%;
    }

    50% {
        width: 55%;
    }

    100% {
        width: 80%;
    }
}

@keyframes cat-long {
    0% {
        width: 100%;
    }

    50% {
        width: 55%;
    }

    100% {
        width: 80%;
    }
}

.cat-list-bg-style {
    margin: 50px 0;
    padding: 0;
    list-style: none;
}

    .cat-list-bg-style .cat-list__item {
        display: inline-block;
        background-color: #f7f9f9;
        margin: 0 5px;
        border-radius: 30px;
        overflow: hidden;
    }

        .cat-list-bg-style .cat-list__item a {
            font-size: 18px;
            color: #acacac;
            position: relative;
            text-transform: capitalize;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
            padding: 10px 20px;
            display: block;
        }

            .cat-list-bg-style .cat-list__item a:hover {
                color: #fff;
                background-color: #00A0E1;
            }

        .cat-list-bg-style .cat-list__item.active {
            background-color: #00A0E1;
        }

            .cat-list-bg-style .cat-list__item.active a {
                color: #fff;
            }

/*------------- #PRICING-TABLES --------------*/
.pricing-tables .pricing-tables-wrap {
    background-color: #fff;
    overflow: hidden;
    -webkit-box-shadow: 0 14px 32px 10px rgba(0, 0, 0, 0.2);
    box-shadow: 0 14px 32px 10px rgba(0, 0, 0, 0.2);
    margin: 0 15px;
    border-radius: 10px;
}

    .pricing-tables .pricing-tables-wrap :nth-child(3) .pricing-tables-item .dots {
        display: none;
    }

.pricing-tables-item {
    text-align: center;
    padding: 60px;
    position: relative;
}

@media (max-width: 1024px) {
    .pricing-tables-item {
        padding: 15px;
    }
}

@media (max-width: 570px) {
    .pricing-tables-item {
        margin-bottom: 30px;
    }
}

.pricing-tables-item:hover .btn {
    background-color: #00A0E1;
}

.pricing-tables-item:hover .pricing-title {
    color: #00A0E1;
}

.pricing-tables-item .pricing-tables-icon {
    width: 130px;
    height: 130px;
    border: 15px solid #f7f9f9;
    border-radius: 50%;
    position: relative;
    margin: 0 auto 15px;
}

    .pricing-tables-item .pricing-tables-icon img {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
    }

.pricing-tables-item .pricing-title {
    font-size: 34px;
    margin-bottom: 11px;
    display: block;
}

@media (max-width: 980px) {
    .pricing-tables-item .pricing-title {
        font-size: 26px;
    }
}

.pricing-tables-item .pricing-tables-position {
    font-size: 16px;
    margin: 0 0 21px 0;
    padding: 0;
    list-style: none;
}

    .pricing-tables-item .pricing-tables-position .position-item {
        margin-bottom: 5px;
    }

        .pricing-tables-item .pricing-tables-position .position-item.include {
            color: #fcb03b;
        }

        .pricing-tables-item .pricing-tables-position .position-item .count {
            color: #2f2c2c;
            font-weight: 600;
        }

.pricing-tables-item .rate {
    font-size: 24px;
    color: #00A0E1;
    margin-bottom: 31px;
}

.pricing-tables-item .dots {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
}

@media (max-width: 570px) {
    .pricing-tables-item .dots {
        display: none;
    }
}

.pricing-tables-head .pricing-tables-item {
    border-radius: 10px;
    padding: 0;
    overflow: hidden;
    -webkit-box-shadow: 8px 0 87px rgba(0, 0, 0, 0.15);
    box-shadow: 8px 0 87px rgba(0, 0, 0, 0.15);
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    .pricing-tables-head .pricing-tables-item .pricing-head {
        position: relative;
        min-height: 125px;
    }

    .pricing-tables-head .pricing-tables-item .pricing-content-wrap {
        margin-top: -60px;
        background-color: #fff;
        padding: 0 60px 60px;
    }

        .pricing-tables-head .pricing-tables-item .pricing-content-wrap .pricing-tables-icon {
            background-color: #fff;
        }

    .pricing-tables-head .pricing-tables-item:hover {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
        z-index: 5;
    }

        .pricing-tables-head .pricing-tables-item:hover .btn {
            background-color: #f15b26;
        }

.pricing-tables-classic .pricing-tables-item {
    background-color: #fff;
    -webkit-box-shadow: 15px 0 80px rgba(0, 0, 0, 0.2);
    box-shadow: 15px 0 80px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.pricing-tables-colored .pricing-tables-item {
    -webkit-box-shadow: 15px 0 80px rgba(0, 0, 0, 0.2);
    box-shadow: 15px 0 80px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

    .pricing-tables-colored .pricing-tables-item .pricing-tables-icon {
        border: none;
    }

    .pricing-tables-colored .pricing-tables-item .pricing-title:hover {
        color: #2f2c2c;
    }

    .pricing-tables-colored .pricing-tables-item .pricing-tables-position .position-item {
        color: #fff;
    }

        .pricing-tables-colored .pricing-tables-item .pricing-tables-position .position-item .count {
            color: #fff;
        }

    .pricing-tables-colored .pricing-tables-item .rate {
        color: #2f2c2c;
    }

    .pricing-tables-colored .pricing-tables-item:hover .btn {
        border-color: transparent;
        background-color: #2f2c2c;
    }

    .pricing-tables-colored .pricing-tables-item:hover .pricing-title {
        color: #2f2c2c;
    }

/*------------- #RECENT-POST --------------*/
/*------------- #CLIENTS --------------*/
.client-item {
    display: inline-block;
    position: relative;
    padding: 0 39px;
}

@media (max-width: 768px) {
    .client-item {
        padding: 0 20px;
    }
}

@media (max-width: 570px) {
    .client-item {
        margin-bottom: 30px;
    }
}

.client-item .client-image {
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    text-align: center;
}

    .client-item .client-image img {
        position: relative;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }

.client-item:hover .client-image {
    opacity: 0.5;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.client-item-style2 {
    padding: 60px 40px;
    text-align: center;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    float: left;
}

    .client-item-style2 .client-image {
        position: relative;
        margin-bottom: 60px;
        text-align: center;
    }

        .client-item-style2 .client-image img {
            position: relative;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
        }

            .client-item-style2 .client-image img.hover {
                opacity: 0;
                position: absolute;
                left: 50%;
                transform: translate(-50%, 0);
                -webkit-transform: translate(-50%, 0);
                -ms-transform: translate(-50%, 0);
            }

    .client-item-style2 .clients-item-title {
        font-size: 20px;
        margin-bottom: 30px;
        text-transform: uppercase;
    }

    .client-item-style2 .clients-item-text {
        margin-bottom: 30px;
    }

    .client-item-style2:hover {
        background-color: #00A0E1;
    }

        .client-item-style2:hover .client-image .hover {
            opacity: 1;
        }

        .client-item-style2:hover .clients-item-text {
            color: #fff;
        }

        .client-item-style2:hover .btn {
            color: #fff;
            background-color: #2f2c2c;
            border-color: #2f2c2c;
        }

            .client-item-style2:hover .btn .semicircle::after {
                border-color: #fff;
            }

.load-more {
    text-align: center;
    margin: 0 auto;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    display: block;
    max-width: 120px;
}

    .load-more .load-more-img-wrap {
        margin-bottom: 20px;
        position: relative;
        display: block;
        background-image: url("../img/load-more-arrow.png");
        background-position: 54% 50%;
        background-repeat: no-repeat;
    }

        .load-more .load-more-img-wrap img {
            position: relative;
        }

    .load-more .load-more-text {
        color: #d7d7d7;
        font-size: 16px;
        text-transform: uppercase;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

    .load-more:hover .load-more-text {
        color: #00A0E1;
    }

    .load-more:hover .load-more-img-wrap {
        -webkit-animation: rotate-img 1.5s infinite linear;
        animation: rotate-img 1.5s infinite linear;
    }

        .load-more:hover .load-more-img-wrap img {
            -webkit-animation: rotate-img 2s infinite linear;
            animation: rotate-img 2s infinite linear;
        }

@-webkit-keyframes rotate-img {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate-img {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.load-more.last-page:hover .load-more-img-wrap {
    -webkit-animation: none;
    animation: none;
}

    .load-more.last-page:hover .load-more-img-wrap img {
        -webkit-animation: none;
        animation: none;
    }

/*------------- #SUBSCRIBE --------------*/
.subscribe {
    padding: 72px 0;
    overflow: hidden;
    position: relative;
}

@media (max-width: 640px) {
    .subscribe {
        padding: 70px 0 170px;
    }
}

.subscribe .subscribe-title {
    font-size: 30px;
    color: #fff;
    margin-bottom: 23px;
}

.subscribe .sub-title {
    color: rgba(255, 255, 255, 0.5);
    float: left;
}

.subscribe .subscribe-form {
    margin-bottom: 25px;
}

    .subscribe .subscribe-form .email {
        background-color: #fff;
        padding: 16px 40px;
        font-size: 16px;
        color: #797676;
        border-color: transparent;
        border-radius: 50px 0 0 50px;
        width: 70%;
        float: left;
    }

@media (max-width: 360px) {
    .subscribe .subscribe-form .email {
        width: 100%;
        margin-bottom: 20px;
        border-radius: 50px;
    }
}

.subscribe .subscribe-form .subscr-btn {
    display: inline-block;
    background-color: #2f2c2c;
    padding: 17px 40px;
    border-radius: 0 50px 50px 0;
    font-size: 15px;
    text-transform: uppercase;
    width: 30%;
    cursor: pointer;
    position: relative;
    color: #fff;
    text-align: center;
}

@media (max-width: 1024px) {
    .subscribe .subscribe-form .subscr-btn {
        padding: 19px 6px 22px;
        font-size: 13px;
    }
}

@media (max-width: 980px) {
    .subscribe .subscribe-form .subscr-btn .semicircle--right {
        display: none;
    }
}

@media (max-width: 360px) {
    .subscribe .subscribe-form .subscr-btn {
        padding: 20px;
        width: 100%;
        border-radius: 50px;
    }
}

.subscribe .images-block img {
    position: absolute;
    opacity: 0;
}

    .subscribe .images-block img.mail {
        left: 0;
        bottom: -100%;
    }

@media (max-width: 1024px) {
    .subscribe .images-block img.mail {
        width: 40%;
    }
}

@media (max-width: 768px) {
    .subscribe .images-block img.mail {
        width: 16%;
    }
}

@media (max-width: 640px) {
    .subscribe .images-block img.mail {
        width: 40%;
    }
}

@media (max-width: 360px) {
    .subscribe .images-block img.mail {
        width: 60%;
    }
}

.subscribe .images-block img.gear {
    top: 50px;
    right: 0;
}

@media (max-width: 800px) {
    .subscribe .images-block img.gear {
        top: 10px;
    }
}

.subscribe .images-block img.mail-2 {
    bottom: -50px;
    right: -100%;
}

/*------------- #FOOTER --------------*/
.footer {
    padding-top: 70px;
    background-color: #e5edef;
    color: #00305c;
}

@media (max-width: 768px) {
    .footer {
        padding-top: 60px;
    }
}

.footer .info {
    padding-bottom: 50px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

@media (max-width: 1024px) {
    .footer .info {
        padding-bottom: 40px;
    }
}

.footer .info .heading {
    margin-bottom: 23px;
}

    .footer .info .heading .heading-title {
        color: #00305c;
        font-size: 20px;
    }

    .footer .info .heading .heading-text {
        font-size: 16px;
        line-height: 1.6;
        opacity: .4;
    }

.footer .info .services ul {
    float: left;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .footer .info .services ul {
        width: 100%;
    }
}

.footer .info .services .list--primary > li i {
    margin-right: 15px;
    margin-top: 3px;
    color: #acacac;
}

.footer .info .services .list--primary > li a {
    font-size: 14px;
    opacity: 1;
}

.footer .info .services .list--primary > li:hover i {
    color: #00A0E1;
    margin-left: 10px;
}

.footer .info .services .list--primary > li:hover a {
    color: #00A0E1;
}

@media (max-width: 1024px) {
    .footer .info .socials {
        margin-bottom: 30px;
    }
}

.footer .contacts {
    padding: 0 0 40px 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

@media (max-width: 570px) {
    .footer .contacts {
        display: block;
        padding-bottom: 60px;
    }
}

.footer .contacts a {
    font-size: 24px;
    color: #fff;
}

.footer .contacts .contacts-item .content .sub-title {
    opacity: .4;
}

.footer a {
    color: #00A0E1;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    .footer a:hover {
        color: #00A0E1;
    }

.footer .sub-footer {
    background-color: #f2f6f7;
    color: #00305c;
    padding: 60px 0;
    position: relative;
}

@media (max-width: 768px) {
    .footer .sub-footer {
        padding: 30px 0;
    }
}

.footer .sub-footer span {
    font-size: 14px;
    margin-right: 30px;
    color: #504D4E;
}

@media (max-width: 980px) {
    .footer .sub-footer span {
        margin-right: 0;
        margin-left: 0;
        margin-bottom: 10px;
        display: block;
    }
}

.footer .sub-footer span:last-of-type {
    padding-right: 70px;
}

.footer.js-fixed-footer {
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    position: fixed;
    z-index: 1;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: 0.4s;
    transition-duration: 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0, 0, 0, 1);
    transition-timing-function: cubic-bezier(0, 0, 0, 1);
}

@media (max-width: 768px) {
    .footer.js-fixed-footer {
        position: relative;
    }
}

.content-wrapper {
    position: relative;
    z-index: 2;
    background-color: #fff;
    -webkit-margin-bottom-collapse: separate;
}

.mobileFilter-firstpos + div .row, .row-flex {
    margin-right: -15px;
    margin-left: -15px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.block-footer-height {
    position: relative;
    width: 100%;
}

@media (max-width: 768px) {
    .block-footer-height {
        display: none;
    }
}

/*------------- #OVERLAY-MENU --------------*/
body:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(47, 44, 44, 0.85);
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
    z-index: -999;
}

body.overlay-enable:before {
    opacity: .8;
    z-index: 500;
}

#overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    background: rgba(47, 44, 44, 0.85);
    opacity: .8;
    z-index: 25;
}

.overlay_search {
    float: left;
    padding: 16px 0;
    margin: 0;
    width: 400px;
    width: calc( 100% - 670px );
    max-width: 100%;
}

.form_search-wrap {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
}

header.headroom--not-top .overlay_search {
    padding: 15px 0;
}

@media(max-width: 768px) {
    .overlay_search {
        z-index: 100;
        position: fixed;
        top: -250%;
        left: 50%;
        width: 70vw;
        height: 200px;
        -webkit-transform: translate3d(-50%, 165px, 0);
        transform: translate3d(-50%, 165px, 0);
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        overflow: hidden;
    }

    .overlay_search {
        width: 100vw;
    }

        .overlay_search:before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            bottom: 0;
            left: 0;
            margin: auto;
            background: #00568f;
            width: 100%;
            height: 0;
            padding-bottom: 100%;
            border-radius: 100%;
            -webkit-transform: scale(0.04) translateY(9999px);
            -ms-transform: scale(0.04) translateY(9999px);
            transform: scale(0.04) translateY(9999px);
            overflow: hidden;
        }

        .overlay_search .form_search-wrap {
            position: absolute;
            top: 50%;
            transform: translate(0, -50%);
            -webkit-transform: translate(0, -50%);
            -ms-transform: translate(0, -50%);
            /* min-width: 100%; */
            opacity: 0;
            /* margin: 20px; */
            left: 15px;
            right: 15px;
        }
}

@media (max-width: 1024px) {
    .overlay_search .form_search-wrap {
        min-width: 90%;
        padding: 0;
    }
}

@media (max-width: 980px) {
    .overlay_search .form_search-wrap {
        min-width: 72%;
    }

        .overlay_search .form_search-wrap form .overlay_search-input {
            margin-top: 42px;
            font-size: 16px !important;
        }
}

.top-bar .container, .top-bar + .header .container {
    position: relative;
}

.search-header {
    background-color: #fac3c5;
    color: #ed1c24;
    padding: 1px 7px;
    text-align: center;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 600;
    margin: 2px 0;
    position: absolute;
    left: 333px;
    top: -14px;
    /* transform: translateX(-50%); */
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    max-width: 400px;
    width: 100%;
}

.top-bar .search-header {
    background-color: transparent;
    color: #fff;
    padding: 0 5px;
    text-align: center;
    border-radius: 0;
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    max-width: 100%;
    text-align: left;
}

header .search-header {
    display: none;
}

@media(max-width: 768px) {
    header .search-header {
        display: block;
    }

    .search-header {
        left: 22px;
        top: -28px;
        max-width: 100%;
    }
}

header.headroom--unpinned .search-header {
    display: block;
}

.overlay_search .form_search-wrap form {
    position: relative;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

    .overlay_search .form_search-wrap form .overlay_search-input {
        background-color: #fff;
        padding: 10px 29px 10px 9px;
        width: 100% !important;
        border: none;
        border: 2px solid #00305c;
        color: #00305c;
        font-size: 14px;
        margin: 0;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

    .overlay_search .form_search-wrap form input::placeholder, .overlay_search .form_search-wrap form input::-moz-placeholder, .overlay_search .form_search-wrap form input::-webkit-input-placeholder {
        color: #00305c;
    }

.overlay_search .submit-search {
    position: absolute;
    right: 10px;
    top: 8px;
    margin: 0;
    cursor: pointer;
}

    .overlay_search .submit-search img {
        margin-left: 10px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        height: 28px;
        position: relative;
    }

.overlay_search .form_search-wrap form .overlay_search-input:hover {
    border-color: rgb(208, 213, 214);
    color: #acacac;
}

    .overlay_search .form_search-wrap form .overlay_search-input:hover + .overlay_search-close span {
        background: #acacac;
    }

.overlay_search .form_search-wrap form .overlay_search-input:focus {
    border-color: rgb(208, 213, 214);
    color: #acacac;
}

    .overlay_search .form_search-wrap form .overlay_search-input:focus + .overlay_search-close span {
        background: #fff;
    }

.overlay_search .form_search-wrap form .overlay_search-close {
    width: 30px;
    height: 30px;
    position: absolute;
    display: block;
    right: -5px;
    top: -55px;
}

    .overlay_search .form_search-wrap form .overlay_search-close span {
        display: block;
        height: 2px;
        background: rgba(255, 255, 255, 0.48);
        border-radius: 10px;
        margin: auto;
        width: 100%;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        top: 50%;
        position: absolute;
    }

        .overlay_search .form_search-wrap form .overlay_search-close span:first-of-type {
            -webkit-transform: rotate(-45deg);
            -moz-transform: rotate(-45deg);
            -o-transform: rotate(-45deg);
        }

        .overlay_search .form_search-wrap form .overlay_search-close span:last-of-type {
            -webkit-transform: rotate(45deg);
            -moz-transform: rotate(45deg);
            -o-transform: rotate(45deg);
        }

.open .overlay_search {
    top: 0;
}

    .open .overlay_search:before {
        -webkit-animation: menu-animation 0.8s ease-out forwards;
        animation: menu-animation 0.8s ease-out forwards;
    }

    .open .overlay_search .form_search-wrap {
        opacity: 1;
        -webkit-transform: translate3d(0, -50%, 0);
        transform: translate3d(0, -50%, 0);
        -webkit-transition: opacity 3s ease-out, -webkit-transform 1s ease-out;
        transition: opacity 1s ease-out, -webkit-transform .5s ease-out;
        -webkit-transition: opacity 1s ease-out, -webkit-transform .5s ease-out;
        transition: transform .5s ease-out, opacity 1s ease-out;
        transition: transform .5s ease-out, opacity 1s ease-out, -webkit-transform .5s ease-out;
        -webkit-transition-delay: .5s;
        transition-delay: .5s;
    }

@media (min-width: 980px) {
    .overlay_search .form_search-wrap form .overlay_search-close {
        display: none;
    }
}

@-webkit-keyframes menu-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.04) translateY(300%);
        transform: scale(0.04) translateY(300%);
    }

    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
        -webkit-transition: ease-out;
        transition: ease-out;
    }

    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(0.02) translateY(0px);
        transform: scale(0.02) translateY(0px);
    }

    61% {
        -webkit-transform: scale(0.04);
        transform: scale(0.04);
    }

    99.9% {
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        height: 100%;
        padding-bottom: 0;
        border-radius: 0;
    }
}

@keyframes menu-animation {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.04) translateY(300%);
        transform: scale(0.04) translateY(300%);
    }

    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
        -webkit-transition: ease-out;
        transition: ease-out;
    }

    40% {
        -webkit-transform: scale(0.04) translateY(0);
        transform: scale(0.04) translateY(0);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(0.02) translateY(0px);
        transform: scale(0.02) translateY(0px);
    }

    61% {
        -webkit-transform: scale(0.04);
        transform: scale(0.04);
    }

    99.9% {
        height: 0;
        padding-bottom: 100%;
        border-radius: 100%;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        height: 100%;
        padding-bottom: 0;
        border-radius: 0;
    }
}

.right-menu {
    position: fixed;
    right: 0;
    top: 0;
    max-width: 500px;
    height: 100%;
    z-index: 555;
    -webkit-transition: all .4s ease;
    transition: all .4s ease;
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
    will-change: transform;
    background-color: #fff;
}

    .right-menu.opened {
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }

        .right-menu.opened .right-menu-wrap .user-menu-close {
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
            opacity: 1;
        }

    .right-menu .right-menu-wrap {
        padding: 0 75px 0;
        background-color: #fff;
    }

        .right-menu .right-menu-wrap .user-menu-close {
            position: absolute;
            left: 16px;
            top: 16px;
            width: 54px;
            height: 54px;
            z-index: 35;
            -webkit-transform: scale(0);
            -ms-transform: scale(0);
            transform: scale(0);
            opacity: 0;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
            -webkit-transition-delay: .3s;
            transition-delay: .3s;
        }

@media (max-width: 768px) {
    .right-menu .right-menu-wrap .user-menu-close {
        width: 50px;
        height: 50px;
        border-width: 3px;
        left: 15px;
        top: 15px;
    }
}

.right-menu .right-menu-wrap .user-menu-close .user-menu-content {
    width: 48px;
    height: 48px;
    background-color: #1d394c;
    position: relative;
    display: block;
}

@media (max-width: 768px) {
    .right-menu .right-menu-wrap .user-menu-close .user-menu-content {
        width: 44px;
        height: 44px;
        border-width: 2px;
    }
}

.right-menu .right-menu-wrap .user-menu-close .user-menu-content span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 10px;
    margin: auto;
    width: 50%;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    left: 25%;
    top: 50%;
    position: absolute;
}

    .right-menu .right-menu-wrap .user-menu-close .user-menu-content span:first-of-type {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
    }

    .right-menu .right-menu-wrap .user-menu-close .user-menu-content span:last-of-type {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
    }

.right-menu .text {
    margin-bottom: 0;
}

.login {
    padding: 20px;
    min-height: 375px;
}

    .login .login-title, .login .heading-title {
        font-size: 30px;
        font-weight: 500;
        font-size: 20px;
        margin-bottom: 20px;
    }

    .login .login-btn-wrap {
        overflow: hidden;
        padding-bottom: 20px;
        display: table;
    }

        .login .login-btn-wrap .btn {
            float: left;
            margin-right: 20px;
        }

        .login .login-btn-wrap .remember-wrap {
            display: table-cell;
            vertical-align: middle;
        }

            .login .login-btn-wrap .remember-wrap .checkbox {
                position: relative;
            }

                .login .login-btn-wrap .remember-wrap .checkbox input[type=checkbox] {
                    display: none;
                }

                .login .login-btn-wrap .remember-wrap .checkbox label {
                    padding-left: 30px;
                    color: #2f2c2c;
                }

                    .login .login-btn-wrap .remember-wrap .checkbox label:before {
                        content: "";
                        display: inline-block;
                        width: 14px;
                        height: 14px;
                        position: absolute;
                        left: 0;
                        bottom: 5px;
                        border-radius: 3px;
                        background-color: #00A0E1;
                        border: none;
                    }

                .login .login-btn-wrap .remember-wrap .checkbox input[type=checkbox]:checked + label:before {
                    content: "\2714";
                    font-size: 14px;
                    color: #fff;
                    text-align: center;
                    line-height: 14px;
                }

    .login .helped, .right-menu .login .helped a {
        color: #00A0E1;
        font-size: 16px;
        cursor: pointer;
        margin-bottom: 5px;
    }

    .login input {
        margin-bottom: 25px;
    }

.right-menu .contacts {
    display: block;
}

    .right-menu .contacts .contacts-title, .right-menu .contacts .heading-title {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .right-menu .contacts .contacts-text {
        margin-bottom: 30px;
    }

    .right-menu .contacts .contacts-item {
        margin-bottom: 20px;
    }

        .right-menu .contacts .contacts-item img {
            float: left;
            margin: auto 30px auto auto;
        }

        .right-menu .contacts .contacts-item .content {
            overflow: hidden;
        }

            .right-menu .contacts .contacts-item .content a {
                font-size: 22px;
                color: #2f2c2c;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
            }

                .right-menu .contacts .contacts-item .content a:hover {
                    color: #00A0E1;
                }

            .right-menu .contacts .contacts-item .content .sub-title {
                font-size: 14px;
                color: #acacac;
                margin-bottom: 0;
            }

.right-menu .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: #00A0E1;
}

.right-menu .mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
    background-color: rgba(6, 149, 209, 0.85);
}

.right-menu .mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.right-menu .mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
    background-color: rgba(6, 149, 209, 0.9);
}

.right-menu .mCSB_scrollTools .mCSB_draggerRail {
    background-color: rgba(6, 149, 209, 0.5);
}

.right-menu .widget {
    padding: 30px 20px 20px;
    margin-bottom: 0;
}

    .right-menu .widget .btn + .btn {
        margin-left: 0px;
    }

    .right-menu .widget.cart {
        padding: 0;
        margin-bottom: 0;
    }

    .right-menu .widget:nth-child(even) {
        background-color: transparent;
    }

    .right-menu .widget:nth-child(odd) {
        background-color: #f7f9f9;
    }

    .right-menu .widget.cart table {
        margin-bottom: 0;
    }

@media (max-width: 768px) {
    .right-menu .widget .btn-medium {
        width: 100%;
        margin-bottom: 5px;
        padding: 15px 10px;
        font-size: 13px;
    }

    .right-menu .widget .btn-small {
        width: 100%;
        margin-bottom: 5px;
    }
}
/*------------- #FEATURES --------------*/
.features-item {
    text-align: center;
    padding: 20px 0;
}

    .features-item:hover a {
        color: #00A0E1;
    }

    .features-item:hover .read-more {
        color: #00A0E1;
    }

    .features-item .features-item__thumb {
        margin-bottom: 30px;
    }

    .features-item a {
        margin-bottom: 10px;
        font-size: 30px;
        display: block;
    }

@media (max-width: 570px) {
    .features-item a {
        font-size: 24px;
    }
}

.features-item a:hover {
    color: #00A0E1;
}

.features-item .features-text {
    font-size: 16px;
    margin-bottom: 19px;
    -moz-hyphens: auto;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
}

.features-item .read-more {
    font-size: 16px;
    color: #ccc;
    display: block;
}

    .features-item .read-more:hover {
        color: #00A0E1;
    }

    .features-item .read-more i {
        margin-left: 10px;
        font-size: 13px;
    }

@media (max-width: 1024px) {
    .contacts {
        display: block;
    }
}

@media (max-width: 1024px) {
    .contacts .contacts-item {
        margin-bottom: 25px;
    }
}

.contacts .contacts-item .icon {
    width: 70px;
    height: 70px;
    float: left;
    margin-right: 30px;
}

.contacts .contacts-item img {
    float: left;
    margin: auto 30px auto auto;
}

.contacts .contacts-item .content {
    margin-left: auto;
    overflow: hidden;
}

    .contacts .contacts-item .content .title {
        font-size: 24px;
        font-weight: 500;
    }

@media (max-width: 1024px) {
    .contacts .contacts-item .content .title {
        font-size: 13px;
    }
}

.contacts .contacts-item .content .title:hover {
    color: #00A0E1;
}

.contacts .contacts-item .content .sub-title {
    font-size: 16px;
}

@media (max-width: 1024px) {
    .contacts .contacts-item .content .sub-title {
        font-size: 13px;
    }
}

.contacts-shadow {
    -webkit-box-shadow: 40px 0 80px rgba(0, 0, 0, 0.15);
    box-shadow: 40px 0 80px rgba(0, 0, 0, 0.15);
}

#map {
    width: 100%;
    height: 620px;
}

/*------------- #CONTACT-FORM --------------*/
textarea {
    width: 100%;
    min-height: 140px;
}

.contact-form {
    margin-top: 30px;
    position: relative;
}

    .contact-form label {
        display: block;
        margin-bottom: 10px;
    }

    .contact-form abbr {
        text-decoration: none;
    }

    .contact-form .checked {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translate(-50%, -50%);
        -webkit-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        margin-top: -15px;
    }

    .contact-form .checked-icon {
        position: relative;
        display: block;
    }

        .contact-form .checked-icon:after {
            content: "\e908";
            font-family: 'seosight';
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translate(-50%, -50%);
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            margin-top: -15px;
            color: #00A0E1;
        }

    .contact-form .focus-white:focus {
        background-color: #fff;
    }

    .contact-form textarea {
        min-height: 200px;
        padding: 15px 20px;
    }

    .contact-form input {
        margin-bottom: 30px;
        padding: 15px 20px;
    }

    .contact-form .nice-select.open .list {
        max-height: 300px;
        overflow: auto;
    }

.input-title {
    color: #fff;
    font-size: 16px;
    margin-bottom: 15px;
    display: block;
}

    .input-title abbr[title] {
        color: #f04e4e;
        margin-left: 3px;
    }

    .input-title .optional {
        color: #797676;
        font-size: 14px;
        margin-left: 10px;
    }

.submit-block {
    overflow: hidden;
    padding-bottom: 30px;
}

    .submit-block .btn {
        width: 100%;
        text-align: center;
        text-transform: uppercase;
    }

@media (max-width: 768px) {
    .submit-block .btn {
        margin-bottom: 30px;
    }
}

.submit-block .submit-block-text {
    font-size: 14px;
}

@media (max-width: 360px) {
    .submit-block {
        display: block;
    }
}

@media (max-width: 768px) {
    .submit-block .table-cell {
        float: left;
    }
}

.remember-wrap {
    display: table-cell;
    vertical-align: middle;
}

    .remember-wrap .checkbox {
        position: relative;
    }

        .remember-wrap .checkbox input[type=checkbox] {
            display: none;
        }

        .remember-wrap .checkbox label {
            padding-left: 30px;
            color: #2f2c2c;
        }

            .remember-wrap .checkbox label:before {
                content: "";
                display: inline-block;
                width: 14px;
                height: 14px;
                position: absolute;
                left: 0;
                bottom: 5px;
                border-radius: 3px;
                background-color: #00A0E1;
                border: none;
            }

        .remember-wrap .checkbox input[type=checkbox]:checked + label:before {
            content: "\2714";
            font-size: 14px;
            color: #fff;
            text-align: center;
            line-height: 14px;
        }

        .remember-wrap .checkbox.gray label:before {
            background-color: #dce1e1;
        }

        .remember-wrap .checkbox.gray input[type=checkbox]:checked + label:before {
            color: #00A0E1;
        }

    .remember-wrap .choose-select {
        position: relative;
        display: block;
    }

        .remember-wrap .choose-select:after {
            content: '\e908';
            display: block;
            width: 60px;
            height: 64px;
            background-color: #f1f3f3;
            position: absolute;
            right: 0;
            top: 0;
            border-left: 2px solid #e3e9e9;
            border-radius: 0 50px 50px 0;
            font-family: seosight;
            line-height: 64px;
            text-align: center;
            cursor: pointer;
        }

        .remember-wrap .choose-select .checked {
            color: #cfcfcf;
            right: 15px;
            margin-top: 0;
        }

.choose-select {
    position: relative;
    display: block;
}

    .choose-select:after {
        content: '\e908';
        display: block;
        width: 60px;
        height: 64px;
        background-color: #f1f3f3;
        position: absolute;
        right: 0;
        top: 0;
        border-left: 2px solid #e3e9e9;
        border-radius: 0 50px 50px 0;
        font-family: seosight;
        line-height: 64px;
        text-align: center;
        cursor: pointer;
    }

    .choose-select .checked {
        color: #cfcfcf;
        right: 15px;
        margin-top: 0;
    }

.create-form .nice-select {
    padding: 10px 60px 10px 20px;
    font-size: 16px;
    margin-bottom: 30px;
    border-radius: 0;
    background-color: #f7f9f9;
    color: #ccc;
    color: #87959c;
    border: 1px solid #87959c;
    color: #87959c;
    display: inline-block;
    border-radius: 4px;
    width: 100%;
    background-color: #fff;
}

.create-form input {
    margin-bottom: 30px;
    border: 1px solid #87959c;
    padding: 10px 10px 10px 10px;
    font-size: 16px;
    border-radius: 4px;
    width: 100%;
    background-color: #fff;
}

.create-form .btn-xsmall {
    font-size: 14px;
    padding: 10px 20px;
}

.create-form .remove {
    padding: 10px 10px;
    display: inline-block;
    text-align: center;
    background-color: #e5edef;
    border: 1px solid #dce2e7;
    border-radius: 4px;
}

.contact-form .quantity {
    overflow: hidden;
    color: #87959c;
    display: inline-block;
    border-radius: 4px;
    margin-bottom: 15px;
    border: 1px solid #cfcfcf;
}

    .contact-form .quantity .quantity-minus {
        display: block;
        float: left;
        padding: 0 5px;
        background-color: #f1f3f3;
        border-radius: 3px 0 0 3px;
        font-size: 24px;
        font-weight: 500;
        border-right: 2px solid #e3e9e9;
        color: #cfcfcf;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

@media (max-width: 980px) {
    .contact-form .quantity .quantity-minus {
        font-size: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .contact-form .quantity .quantity-minus {
        font-size: 14px;
        padding: 0 5px;
    }
}

.contact-form .quantity .quantity-minus:hover {
    background-color: #1e394c;
    color: #fff;
    border-color: #1e394c;
}

.contact-form .quantity input {
    max-width: 30px;
    float: left;
    background-color: #fff;
    padding: 7px 10px;
    font-size: 14px;
    text-align: center;
    border-radius: 0;
    border-width: 0;
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .contact-form .quantity input {
        font-size: 18px;
        padding: 0 10px;
        max-width: 40px;
    }
}

@media (max-width: 480px) {
    .contact-form .quantity input {
        font-size: 14px;
        padding: 0 5px;
        max-width: 30px;
    }
}

.contact-form .quantity .quantity-plus {
    display: block;
    float: left;
    padding: 0 5px;
    background-color: #f1f3f3;
    border-radius: 0 3px 3px 0;
    font-size: 24px;
    font-weight: 500;
    border-left: 2px solid #e3e9e9;
    color: #cfcfcf;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (max-width: 980px) {
    .contact-form .quantity .quantity-plus {
        font-size: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .contact-form .quantity .quantity-plus {
        font-size: 14px;
        padding: 0 5px;
    }
}

.contact-form .quantity .quantity-plus:hover {
    background-color: #1e394c;
    color: #fff;
    border-color: #1e394c;
}

.create-form .switch-field {
    overflow: hidden;
    border: none;
    width: auto;
    margin-bottom: 20px;
}

    .create-form .switch-field label {
        padding: 15px 8px 15px 8px;
        background-color: #ffffff;
        border: 1px solid #e5edef;
        margin-left: 10px;
        margin-top: 5px;
    }

    .create-form .switch-field input:checked + label {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        color: rgba(255, 255, 255, 0.9);
        background-color: #085187;
    }

    .create-form .switch-field label small {
        display: block;
    }

/*------------- #CART --------------*/
.cart-main {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
}

    .cart-main table {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        border: 1px solid #d4d8d8;
    }

    .cart-main .accordion table {
        border: none;
    }

    .cart-main tbody {
        background-color: #fff;
    }

        .cart-main tbody .cart_item {
            position: relative;
            border-bottom: 1px solid #d4d8d8;
        }

            .cart-main tbody .cart_item:after {
                content: '';
                display: block;
                width: 95%;
                height: 2px;
                background-color: #f7f9f9;
                position: absolute;
                bottom: 0;
                left: 50%;
                transform: translate(-50%, 0);
                -webkit-transform: translate(-50%, 0);
                -ms-transform: translate(-50%, 0);
            }

    .cart-main .cart-product-wrap-title-main tr > th {
        color: #1d394c;
        font-size: 16px;
        text-transform: uppercase;
        background-color: #f2f3f3;
        padding: 30px 0;
        text-align: center;
    }

tr.sub-head > th {
    color: #1d394c;
    font-size: 16px;
    text-transform: uppercase;
    background-color: #d4d4d4;
    padding: 0 15px;
    font-weight: 600;
}

.cart-main .cart-product-wrap-title-main tr > th.product-quantity {
    text-align: left;
}

.cart-main .cart-product-wrap-title-main tr > th.product-subtotal {
    text-align: left;
}

@media (max-width: 460px) {
    .cart-main .cart-product-wrap-title-main tr > th {
        font-size: 12px;
    }
}

.cart-main .cart_item td {
    padding: 30px 10px 0 0;
}

.cart-main .cart_item .product-remove .product-del {
    position: relative;
    font-size: 20px;
    cursor: pointer;
    padding: 0 10px;
    color: #ed1c24;
    display: block;
}

@media (max-width: 768px) {
    .cart-main .cart_item .product-remove .product-del {
        padding: 0 15px;
    }
}

@media (max-width: 460px) {
    .cart-main .cart_item td {
        padding: 30px 00 0;
    }

        .cart-main .cart_item td.product-quantity {
            width: 68px;
        }

    .cart-main .cart_item .product-remove .product-del {
        padding: 0 7px;
        font-size: 9px;
    }

    .cart-main .cart_item .product-thumbnail .cart-product__item .cart-product-content .cart-author {
        margin-bottom: 5px;
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }
}

.cart-main .cart_item .product-thumbnail .cart-product__item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

    .cart-main .cart_item .product-thumbnail .cart-product__item + span {
        margin-left: 90px;
        color: #f1575d;
        font-size: 14px;
        font-weight: 600;
    }

.cart-main .cart_item .product-thumbnail .cart-empty__item {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 35px 35px 35px;
    min-width: 259px;
}

    .cart-main .cart_item .product-thumbnail .cart-empty__item img {
        width: 30px;
        margin-right: 10px;
    }

@media (max-width: 360px) {
    .cart-main .cart_item .product-thumbnail .cart-product__item {
        display: block;
    }
}

.cart-main .cart_item .product-thumbnail .cart-product__item img {
    float: left;
    width: 90px;
    max-width: 100%;
    margin-right: 0;
    display: table-cell;
    vertical-align: middle;
}

@media (max-width: 460px) {
    .cart-main .cart_item .product-thumbnail .cart-product__item img {
        margin-right: 0;
    }

    .cart-main .cart_item .product-thumbnail .cart-product__item img {
        width: 40px;
    }
}

.cart-main .cart_item .product-thumbnail .cart-product__item .cart-product-content {
    text-align: left;
    margin-right: 10px;
    max-width: 120px;
}

    .cart-main .cart_item .product-thumbnail .cart-product__item .cart-product-content .cart-author {
        margin-bottom: 5px;
        font-size: 12px;
        line-height: 1.6;
    }

    .cart-main .cart_item .product-thumbnail .cart-product__item .cart-product-content .cart-product-title {
        font-size: 16px;
        line-height: 1;
    }

.cart-main .cart_item .product-quantity .quantity {
    overflow: hidden;
    min-width: 80px
}

    .cart-main .cart_item .product-quantity .quantity .quantity-minus {
        display: block;
        float: left;
        padding: 0 5px;
        background-color: #f1f3f3;
        border-radius: 3px 0 0 3px;
        font-size: 24px;
        font-weight: 500;
        border-right: 2px solid #e3e9e9;
        color: #cfcfcf;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

@media (max-width: 980px) {
    .cart-main .cart_item .product-quantity .quantity .quantity-minus {
        font-size: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .cart-main .cart_item .product-quantity .quantity .quantity-minus {
        font-size: 14px;
        padding: 0 5px;
    }
}

.cart-main .cart_item .product-quantity .quantity .quantity-minus:hover {
    background-color: #1e394c;
    color: #fff;
    border-color: #1e394c;
}

.cart-main .cart_item .product-quantity .quantity input {
    max-width: 30px;
    float: left;
    background-color: #f7f9f9;
    padding: 7px 5px;
    font-size: 14px;
    text-align: center;
    border-radius: 0;
    margin-bottom: 0;
}

@media (max-width: 980px) {
    .cart-main .cart_item .product-quantity .quantity input {
        font-size: 18px;
        padding: 0 10px;
        max-width: 40px;
    }
}

@media (max-width: 480px) {
    .cart-main .cart_item .product-quantity .quantity input {
        font-size: 14px;
        padding: 0 5px;
        max-width: 30px;
    }
}

.cart-main .cart_item .product-quantity .quantity .quantity-plus {
    display: block;
    float: left;
    padding: 0 5px;
    background-color: #f1f3f3;
    border-radius: 0 3px 3px 0;
    font-size: 24px;
    font-weight: 500;
    border-left: 2px solid #e3e9e9;
    color: #cfcfcf;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

@media (max-width: 980px) {
    .cart-main .cart_item .product-quantity .quantity .quantity-plus {
        font-size: 20px;
        padding: 0 10px;
    }
}

@media (max-width: 480px) {
    .cart-main .cart_item .product-quantity .quantity .quantity-plus {
        font-size: 14px;
        padding: 0 5px;
    }
}

.cart-main .cart_item .product-quantity .quantity .quantity-plus:hover {
    background-color: #1e394c;
    color: #fff;
    border-color: #1e394c;
}

.cart-main .cart_item.subtotal .cart-product-title, .cart-main .cart_item.total .cart-product-title {
    padding-left: 15px;
    font-size: 20px;
}

.cart-main .cart_item.subtotal .cart-product-title {
    font-size: 16px;
}

.cart-main tbody .cart_item.subtotal, .cart-main tbody .cart_item.total {
    background-color: #f7f9f9;
}

.cart-main .cart_item .product-subtotal {
    padding-right: 10px;
}

@media (max-width: 570px) {
    .cart-main .cart_item .product-subtotal {
        padding-right: 10px;
    }
}

.cart-main .cart_item .product-subtotal .total {
    color: #00A0E1;
    font-size: 20px;
    white-space: nowrap;
    text-align: right;
    position: relative;
}

    .cart-main .cart_item .product-subtotal .total + .total {
        border-top: 1px solid #eee;
    }

    .cart-main .cart_item .product-subtotal .total span {
        position: absolute;
        bottom: 6px;
        line-height: 0.7;
        font-size: 14px;
        text-align: left;
        margin-left: 5px;
    }

    .cart-main .cart_item .product-subtotal .total small {
        font-size: 71%;
        display: inline-block;
        letter-spacing: 1px;
    }

.cart-main .cart_item.total .product-subtotal .total {
    font-size: 23px;
}

.cart-main .cart_item.total td {
    padding: 10px 10px 10px 0;
}

.cart-service-fee {
    text-align: left;
    display: block;
    padding: 0 10px;
}

.cart-main .actions {
    padding: 40px 70px;
    background-color: #f1f3f3;
    overflow: hidden;
}

@media (max-width: 570px) {
    .cart-main .actions {
        padding: 30px;
    }

    .cart-main .cart_item .product-subtotal .total {
        font-size: 15px;
        text-align: right;
    }
}

.cart-main .actions .coupon {
    float: left;
}

@media (max-width: 980px) {
    .cart-main .actions .coupon {
        margin-bottom: 30px;
    }
}

.cart-main .actions .coupon input {
    width: auto;
    border-radius: 50px 0 0 50px;
    background-color: #fff;
    padding: 19px 40px;
    float: left;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .cart-main .actions .coupon input {
        border-radius: 50px;
        margin-bottom: 30px;
    }
}

.cart-main .actions .coupon .btn-medium {
    border-radius: 0 50px 50px 0;
    float: left;
}

@media (max-width: 768px) {
    .cart-main .actions .coupon .btn-medium {
        padding: 23px 31px;
    }
}

@media (max-width: 600px) {
    .cart-main .actions .coupon .btn-medium {
        border-radius: 50px;
    }
}

.cart-main .actions .btn {
    float: right;
}

@media (max-width: 980px) {
    .cart-main .actions .btn {
        float: left;
    }
}

.cart-total {
    text-align: center;
}

    .cart-total .cart-total-title {
        font-size: 40px;
        margin-bottom: 30px;
    }

    .cart-total .cart-total-subtotal {
        margin-bottom: 5px;
    }

    .cart-total .cart-total-total {
        margin-bottom: 40px;
    }

        .cart-total .cart-total-total .price {
            color: #f26522;
        }

    .cart-total .btn-medium {
        padding-left: 105px;
        padding-right: 105px;
    }

.cart-title {
    text-align: center;
    margin-bottom: 60px;
}

@media (max-width: 980px) {
    .cart-total .btn-medium {
        padding-left: 45px;
        padding-right: 45px;
        width: 100%;
        margin-bottom: 5px;
    }

        .cart-total .btn-medium + .btn {
            margin-left: 0;
        }
}

.cart-empty {
    border-left: 10px solid #d4d8d8;
}

    .cart-empty .cart-author strong {
        color: #ed1c24;
        font-weight: 500;
        font-size: 75%;
    }

    .cart-empty .cart-product__item img {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
    }

.cart-main .cart_item.cart-empty .product-thumbnail .cart-product__item img {
    float: left;
    width: 86px;
    max-width: 100%;
    margin-right: 0;
    padding: 0 12px 0 6px;
    display: table-cell;
    vertical-align: middle;
}

.cart-main .cart_item.cart-empty .product-thumbnail .cart-product__item .cart-product-content .cart-product-title {
    line-height: 1;
    font-size: 18px;
}

.cart-main .cart_item.cart-empty .product-thumbnail .cart-product__item .cart-product-content .cart-author {
    margin-bottom: 5px;
    font-size: 15px;
}

.cart-main .cart_item.cart-empty .product-thumbnail .cart-product__item .empty-text {
    position: absolute;
    top: 50%;
    left: 0;
    writing-mode: vertical-lr;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 500;
    z-index: 3;
    transform: translateY(-26px);
}
/*------------- #INTERESTED-PRODUCTS --------------*/
.interested-products .heading {
    margin-bottom: 50px;
}

.interested-products .books-item {
    margin-bottom: 60px;
}

/*/ Effect 2: Move Up /*/
#items-grid > div.animate {
    -webkit-transform: translateY(200px);
    -ms-transform: translateY(200px);
    transform: translateY(200px);
    -webkit-animation: moveUp 0.65s ease forwards;
    animation: moveUp 0.65s ease forwards;
}

@-webkit-keyframes moveUp {
    0% {
    }

    100% {
        -webkit-transform: translateY(0);
        opacity: 1;
    }
}

@keyframes moveUp {
    0% {
    }

    100% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }
}

/*------------- #TIME-LINE --------------*/
/* --------------------------------

Main Components

-------------------------------- */
.cd-horizontal-timeline {
    opacity: 0;
    margin: 2em auto;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
}

    .cd-horizontal-timeline::before {
        /* never visible - this is used in jQuery to check the current MQ */
        content: 'mobile';
        display: none;
    }

    .cd-horizontal-timeline.loaded {
        /* show the timeline after events position has been set (using JavaScript) */
        opacity: 1;
    }

    .cd-horizontal-timeline .timeline {
        position: relative;
        height: 100px;
        margin: 0 auto;
    }

    .cd-horizontal-timeline .events-wrapper {
        position: relative;
        height: 100%;
        margin: 0 60px;
        overflow: hidden;
    }

        .cd-horizontal-timeline .events-wrapper::after, .cd-horizontal-timeline .events-wrapper::before {
            /* these are used to create a shadow effect at the sides of the timeline */
            content: '';
            position: absolute;
            z-index: 2;
            top: 49px;
            height: 6px;
            width: 20px;
        }

        .cd-horizontal-timeline .events-wrapper::before {
            left: 0;
            background-image: -webkit-linear-gradient(left, #f8f8f8, rgba(248, 248, 248, 0));
            background-image: -webkit-gradient(linear, left top, right top, from(#f8f8f8), to(rgba(248, 248, 248, 0)));
            background-image: linear-gradient(to right, #f8f8f8, rgba(248, 248, 248, 0));
        }

        .cd-horizontal-timeline .events-wrapper::after {
            right: 0;
            background-image: -webkit-linear-gradient(right, #f8f8f8, rgba(248, 248, 248, 0));
            background-image: -webkit-gradient(linear, right top, left top, from(#f8f8f8), to(rgba(248, 248, 248, 0)));
            background-image: linear-gradient(to left, #f8f8f8, rgba(248, 248, 248, 0));
        }

    .cd-horizontal-timeline .events {
        /* this is the grey line/timeline */
        position: absolute;
        z-index: 1;
        left: 0;
        top: 49px;
        height: 6px;
        /* width will be set using JavaScript */
        background: #fecb16;
        -webkit-transition: -webkit-transform 0.4s;
        transition: -webkit-transform 0.4s;
        transition: transform 0.4s;
        transition: transform 0.4s, -webkit-transform 0.4s;
    }

        .cd-horizontal-timeline .events ol {
            list-style: none;
            margin: 0;
        }

    .cd-horizontal-timeline .filling-line {
        /* this is used to create the green line filling the timeline */
        position: absolute;
        z-index: 1;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        background-color: #00A0E1;
        -webkit-transform: scaleX(0);
        -ms-transform: scaleX(0);
        transform: scaleX(0);
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-transition: -webkit-transform 0.3s;
        transition: -webkit-transform 0.3s;
        transition: transform 0.3s;
        transition: transform 0.3s, -webkit-transform 0.3s;
    }

    .cd-horizontal-timeline .events a {
        position: absolute;
        bottom: -60px;
        z-index: 2;
        text-align: center;
        font-size: 1.3rem;
        padding-bottom: 15px;
        color: #acacac;
        /* fix bug on Safari - text flickering while timeline translates */
        -webkit-transform: translateZ(0);
        -ms-transform: translateZ(0);
        transform: translateZ(0);
    }

        .cd-horizontal-timeline .events a::after {
            /* this is used to create the event spot */
            content: '';
            position: absolute;
            left: 50%;
            right: auto;
            -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
            transform: translateX(-50%);
            bottom: 50px;
            height: 30px;
            width: 30px;
            border-radius: 50%;
            border: 2px solid #fecb16;
            background-color: #fff;
            -webkit-transition: background-color 0.3s, border-color 0.3s;
            transition: background-color 0.3s, border-color 0.3s;
        }

.no-touch .cd-horizontal-timeline .events a:hover::after {
    background-color: #00A0E1;
    border-color: #00A0E1;
}

.cd-horizontal-timeline .events a.selected {
    pointer-events: none;
    color: #00A0E1;
}

    .cd-horizontal-timeline .events a.selected::after {
        background-color: #00A0E1;
        border-color: #00A0E1;
    }

.cd-horizontal-timeline .events a.older-event::after {
    border-color: #00A0E1;
}

.cd-horizontal-timeline .events a.older-event {
    color: #00A0E1;
}

.cd-timeline-navigation {
    list-style: none;
    margin: 0;
}

    .cd-timeline-navigation a {
        /* these are the left/right arrows to navigate the timeline */
        position: absolute;
        z-index: 1;
        top: 50%;
        bottom: auto;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
        height: 40px;
        width: 40px;
        border-radius: 50%;
        border: 2px solid #dfdfdf;
        /* replace text with an icon */
        overflow: hidden;
        color: transparent;
        white-space: nowrap;
        -webkit-transition: border-color 0.3s;
        transition: border-color 0.3s;
    }

        .cd-timeline-navigation a:before {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            color: #d7d7d7;
            font-size: 20px;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
        }

        .cd-timeline-navigation a.prev {
            left: 0;
            -webkit-transform: translateY(-50%) rotate(180deg);
            -ms-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
        }

        .cd-timeline-navigation a.next {
            right: 0;
        }

.no-touch .cd-timeline-navigation a:hover {
    border-color: #00A0E1;
}

    .no-touch .cd-timeline-navigation a:hover:before {
        color: #00A0E1;
    }

.cd-timeline-navigation a.inactive {
    cursor: not-allowed;
}

.no-touch .cd-timeline-navigation a.inactive:hover {
    border-color: #dfdfdf;
}

.cd-timeline-navigation a.inactive:hover:before {
    color: #d7d7d7;
}

.cd-horizontal-timeline .events-content {
    position: relative;
    width: 100%;
    margin: 80px 0;
    -webkit-transition: height 0.4s;
    transition: height 0.4s;
}

    .cd-horizontal-timeline .events-content ol {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .cd-horizontal-timeline .events-content li {
        position: absolute;
        z-index: 1;
        width: 100%;
        left: 0;
        top: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        padding: 0;
        opacity: 0;
        -webkit-animation-duration: 0.4s;
        animation-duration: 0.4s;
        -webkit-animation-timing-function: ease-in-out;
        animation-timing-function: ease-in-out;
    }

        .cd-horizontal-timeline .events-content li.selected {
            /* visible event content */
            position: relative;
            z-index: 2;
            opacity: 1;
            -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
            transform: translateX(0);
        }

        .cd-horizontal-timeline .events-content li.enter-right, .cd-horizontal-timeline .events-content li.leave-right {
            -webkit-animation-name: cd-enter-right;
            animation-name: cd-enter-right;
        }

        .cd-horizontal-timeline .events-content li.enter-left, .cd-horizontal-timeline .events-content li.leave-left {
            -webkit-animation-name: cd-enter-left;
            animation-name: cd-enter-left;
        }

        .cd-horizontal-timeline .events-content li.leave-right, .cd-horizontal-timeline .events-content li.leave-left {
            -webkit-animation-direction: reverse;
            animation-direction: reverse;
        }

        .cd-horizontal-timeline .events-content li > * {
            margin: 0 auto;
        }

    .cd-horizontal-timeline .events-content h2 {
        font-weight: bold;
        font-size: 2.6rem;
        font-family: "Playfair Display", serif;
        font-weight: 700;
        line-height: 1.2;
    }

    .cd-horizontal-timeline .events-content em {
        display: block;
        font-style: italic;
        margin: 10px auto;
    }

        .cd-horizontal-timeline .events-content em::before {
            content: '- ';
        }

    .cd-horizontal-timeline .events-content em {
        line-height: 1.6;
    }

.time-line-content .time-line-subtitle {
    color: #acacac;
    margin-bottom: 20px;
}

.time-line-content .time-line-title {
    margin-bottom: 20px;
    font-size: 30px;
    line-height: 1.2;
}

.time-line-content .time-line-text {
    font-size: 18px;
    color: #acacac;
}

@media (max-width: 570px) {
    .time-line-thumb {
        margin-bottom: 30px;
    }
}

@-webkit-keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@keyframes cd-enter-right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100%);
        -ms-transform: translateX(100%);
        transform: translateX(100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

@-webkit-keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
    }
}

@keyframes cd-enter-left {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateX(0%);
        -ms-transform: translateX(0%);
        transform: translateX(0%);
    }
}

.field-validation-error span, .field-validation-valid span {
    line-height: 24px;
    margin-top: -20px;
    margin-bottom: 15px;
    position: relative;
    padding: 10px 26px;
    padding-right: 50px;
    border-radius: 3px;
    color: #3184ae;
    background-color: #E9F7FE;
    display: block;
}

.teammembers-item {
    text-align: center;
}

    .teammembers-item img {
        margin-bottom: 30px;
    }

    .teammembers-item .teammembers-item-name {
        margin-bottom: 5px;
    }

    .teammembers-item .teammembers-item-prof {
        margin-bottom: 15px;
    }

    .teammembers-item .socials .social__item {
        margin-left: 10px;
    }


.skills .skills-item {
    margin-bottom: 25px;
}

    .skills .skills-item .skills-item-info {
        margin-bottom: 15px;
    }

        .skills .skills-item .skills-item-info .skills-item-title {
            font-size: 16px;
            color: #797676;
        }

        .skills .skills-item .skills-item-info .skills-item-count {
            font-size: 16px;
            color: #fff;
            float: right;
        }

    .skills .skills-item .skills-item-meter {
        padding: 0 5px;
        width: 100%;
        border-radius: 10px;
        background-color: #373434;
        position: relative;
        height: 17px;
    }

        .skills .skills-item .skills-item-meter .skills-item-meter-active {
            position: relative;
            height: 6px;
            display: inline-block;
            border-radius: 5px;
            bottom: 6px;
            opacity: 0;
            -webkit-transition: all .2s ease;
            transition: all .2s ease;
        }

            .skills .skills-item .skills-item-meter .skills-item-meter-active.skills-animate {
                -webkit-animation: skills-animated 1.2s ease-out;
                animation: skills-animated 1.2s ease-out;
            }

            .skills .skills-item .skills-item-meter .skills-item-meter-active.skills-animate-opacity {
                -webkit-animation: skills-animated-opacity .2s ease-out;
                animation: skills-animated-opacity .2s ease-out;
            }

            .skills .skills-item .skills-item-meter .skills-item-meter-active:after {
                content: '';
                display: block;
                width: 25px;
                height: 25px;
                border: 4px solid;
                border-color: inherit;
                border-radius: 100%;
                position: absolute;
                right: -23px;
                top: 50%;
                transform: translate(0, -50%);
                -webkit-transform: translate(0, -50%);
                -ms-transform: translate(0, -50%);
            }

        .skills .skills-item .skills-item-meter.bg-border-color {
            background-color: #f7f9f9;
        }

@-webkit-keyframes skills-animated {
    0% {
        width: 0;
    }
}

@keyframes skills-animated {
    0% {
        width: 0;
    }
}

@-webkit-keyframes skills-animated-opacity {
    100% {
        opacity: 1;
    }
}

@keyframes skills-animated-opacity {
    100% {
        opacity: 1;
    }
}


.books-grid .books-grid-control {
    text-align: center;
    margin-bottom: 60px;
}

    .books-grid .books-grid-control .showing {
        margin-right: 60px;
        display: inline-block;
        font-size: 16px;
        color: #acacac;
    }

@media (max-width: 480px) {
    .books-grid .books-grid-control .showing {
        margin-right: 30px;
    }
}

.books-grid .books-grid-control .showing span {
    color: #2f2c2c;
}

.books-grid .books-grid-control .sort {
    display: inline-block;
    font-size: 16px;
    position: relative;
}

    .books-grid .books-grid-control .sort .nice-select {
        min-width: 300px;
    }

    .books-grid .books-grid-control .sort .dropdown-sort-menu {
        padding: 15px;
        text-align: left;
        background-color: #00A0E1;
        opacity: 0;
        visibility: hidden;
        position: absolute;
        top: 100%;
        right: 0;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        z-index: 10;
    }

        .books-grid .books-grid-control .sort .dropdown-sort-menu .dropdown-sort-submenu {
            padding: 10px;
        }

            .books-grid .books-grid-control .sort .dropdown-sort-menu .dropdown-sort-submenu a {
                color: #fff;
                -webkit-transition: all .3s ease;
                transition: all .3s ease;
                width: 100%;
                display: block;
            }

            .books-grid .books-grid-control .sort .dropdown-sort-menu .dropdown-sort-submenu:hover a {
                color: #2f2c2c;
            }

.books-item {
    text-align: center;
    background-color: #f7f9f9;
    padding: 60px;
}

@media (max-width: 1024px) {
    .books-item {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .books-item {
        margin: 0 15px 30px;
    }
}

.books-item .books-item-thumb {
    position: relative;
    max-width: 170px;
    margin: 0 auto 40px;
}

    .books-item .books-item-thumb .overlay-books {
        background-color: rgba(255, 255, 255, 0.7);
        opacity: 0;
    }

    .books-item .books-item-thumb .new {
        width: 55px;
        height: 55px;
        line-height: 55px;
        text-align: center;
        position: absolute;
        top: -15px;
        left: -15px;
        background-color: #8dc63f;
        font-size: 14px;
        color: #fff;
        border-radius: 100%;
        display: none;
    }

    .books-item .books-item-thumb .sale {
        width: 55px;
        height: 55px;
        line-height: 55px;
        text-align: center;
        position: absolute;
        top: -15px;
        left: -15px;
        background-color: #f15b26;
        font-size: 14px;
        color: #fff;
        border-radius: 100%;
        display: none;
    }

.books-item .books-item-info {
    margin-bottom: 30px;
}

    .books-item .books-item-info .books-author {
        font-size: 14px;
        color: #acacac;
        margin-bottom: 20px;
    }

    .books-item .books-item-info .books-title {
        margin-bottom: 20px;
    }

    .books-item .books-item-info .books-price {
        font-size: 16px;
        color: #f26522;
    }

        .books-item .books-item-info .books-price .del {
            font-size: 14px;
            color: #acacac;
            text-decoration: line-through;
            margin-right: 5px;
        }

        .books-item .books-item-info .books-price.free {
            color: #8dc63f;
        }

.books-item.new .new {
    display: block;
}

.books-item.sale .sale {
    display: block;
}

.books-item.added .overlay-books {
    opacity: 1;
}

.books-item.added .books-item-info .books-title {
    color: #00A0E1;
}

/*------------- #PIE-CHARTS --------------*/
@media (max-width: 570px) {
    .pie-chart-item {
        margin-bottom: 30px;
    }
}

.pie-chart-item .pie-chart {
    width: 170px;
    height: 170px;
    position: relative;
    border-radius: 100%;
    border: 5px solid #f7f9f9;
    float: left;
    margin-right: 30px;
}

@media (max-width: 980px) {
    .pie-chart-item .pie-chart {
        float: none;
        margin-bottom: 30px;
    }
}

.pie-chart-item .pie-chart:after {
    content: '';
    display: block;
    width: 145px;
    height: 145px;
    background-color: transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    border-radius: 100%;
    border: 5px solid #f7f9f9;
    z-index: -1;
}

.pie-chart-item .pie-chart .content {
    font-size: 40px;
    color: #2f2c2c;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.pie-chart-item .pie-chart img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.pie-chart-item .pie-chart-content {
    overflow: hidden;
}

    .pie-chart-item .pie-chart-content .pie-chart-content-title {
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .pie-chart-item .pie-chart-content .pie-chart-content-text {
        margin-bottom: 20px;
    }

    .pie-chart-item .pie-chart-content a {
        color: #acacac;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        font-size: 16px;
    }

        .pie-chart-item .pie-chart-content a i {
            margin-left: 10px;
            -webkit-transition: all .3s ease;
            transition: all .3s ease;
            font-size: 12px;
        }

        .pie-chart-item .pie-chart-content a:hover {
            color: #00A0E1;
        }

            .pie-chart-item .pie-chart-content a:hover i {
                color: #00A0E1;
            }

.pie-chart canvas {
    max-width: 100%;
}

/*------------- #PRODUCT-DETAILS --------------*/
@media (max-width: 570px) {
    .product-details {
        overflow: hidden;
    }
}

.product-details .product-details-thumb {
    padding: 30px 40px 130px;
    position: relative;
    background-color: #fff;
    /*-webkit-box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);
  box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3);*/
    border: 1px solid #e3e9e9;
    text-align: center;
    margin-bottom: 30px;
}

@media (max-width: 980px) {
    .product-details .product-details-thumb {
        padding: 30px;
    }
}

.product-details .product-details-thumb .product-details-img-wrap {
    position: relative;
    /*max-width: 271px;*/
    margin: 0 auto;
}

    .product-details .product-details-thumb .product-details-img-wrap .sale {
        width: 80px;
        height: 80px;
        line-height: 80px;
        text-align: center;
        position: absolute;
        top: -25px;
        left: -43px;
        background-color: #f15b26;
        font-size: 18px;
        color: #fff;
        border-radius: 100%;
    }

.product-details .product-details-thumb .pagination, .product-details .product-details-thumb .swiper-pagination {
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

@media (max-width: 980px) {
    .product-details .product-details-thumb .pagination, .product-details .product-details-thumb .swiper-pagination {
        bottom: 10px;
    }
}

.product-details .product-details-thumb .pagination .swiper-pagination-bullet, .product-details .product-details-thumb .swiper-pagination .swiper-pagination-bullet {
    background-color: #d7d7d7;
}

    .product-details .product-details-thumb .pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .product-details .product-details-thumb .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
        background-color: transparent;
        border: 2px solid #00A0E1;
    }

.product-details .swiper-container {
    padding-bottom: 80px;
    margin-bottom: -80px;
    /*overflow: visible; */
}

    .product-details .swiper-container .swiper-wrapper {
        width: 100% !important;
    }

    .product-details .swiper-container .swiper-slide {
        opacity: 0 !important;
    }

        .product-details .swiper-container .swiper-slide.swiper-slide-active {
            opacity: 1 !important;
        }

@media (max-width: 570px) {
    .product-details .swiper-container .swiper-slide.swiper-slide-active {
        position: absolute;
        left: 50%;
        -webkit-transform: translate(-50%, 0) !important;
        -ms-transform: translate(-50%, 0) !important;
        transform: translate(-50%, 0) !important;
        display: block;
    }
}

.product-details .product-details-info {
    padding-bottom: 40px;
    margin-bottom: 40px;
    border-bottom: 2px solid #f7f9f9;
    position: relative;
    z-index: 10;
}

    .product-details .product-details-info .btn {
        position: relative;
        min-width: 190px;
    }

        .product-details .product-details-info .btn + .btn {
            margin-left: 10px;
        }

        .product-details .product-details-info .btn.c-secondary:hover, .product-details .product-details-info .btn.c-secondary.active {
            background-color: #085187;
            border-color: #085187 !important;
            color: #fff !important;
        }

        .product-details .product-details-info .btn img {
            position: absolute;
            left: 10px;
            top: 8px;
            height: auto;
            bottom: 6px;
            /* max-height: calc( 100% - 12px ); */
            width: 24px;
        }

    .product-details .product-details-info .switch-field {
        overflow: hidden;
        border: none;
        width: auto;
        margin-bottom: 20px;
    }

        .product-details .product-details-info .switch-field label {
            padding: 15px 8px 15px 8px;
            background-color: #f7f9f9;
        }

        .product-details .product-details-info .switch-field input:checked + label {
            -webkit-box-shadow: none;
            -moz-box-shadow: none;
            box-shadow: none;
            color: rgba(255, 255, 255, 0.9);
            background-color: #085187;
        }

@media (max-width: 570px) {
    .product-details .product-details-info {
        padding-top: 40px;
    }
}

.product-details .product-details-info .product-details-info-price {
    color: #f26522;
    font-size: 24px;
    margin-bottom: 15px;
}

    .product-details .product-details-info .product-details-info-price .del {
        color: #cccccc;
        font-size: 18px;
        margin-right: 15px;
        text-decoration: line-through;
    }

.product-details .product-details-info .product-details-info-title {
    font-weight: 500;
    margin-bottom: 0px;
}

.product-details .product-details-info .product-details-info-sub-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 10px;
}

.product-details .product-details-info .product-details-info-ratings {
    margin-bottom: 35px;
}

    .product-details .product-details-info .product-details-info-ratings .ratings {
        display: inline-block;
        margin-right: 20px;
        color: #cccccc;
    }

        .product-details .product-details-info .product-details-info-ratings .ratings .fa-star {
            color: #fcd846;
        }

    .product-details .product-details-info .product-details-info-ratings .reviews {
        display: inline-block;
        font-size: 16px;
        color: #00A0E1;
    }

.product-details .product-details-info .product-details-info-text {
    margin-bottom: 40px;
}

.product-details .product-details-info .quantity {
    overflow: hidden;
    margin-right: 0;
    float: left;
}

@media (max-width: 980px) {
    .product-details .product-details-info .quantity {
        margin-bottom: 30px;
        margin-right: 15px;
    }

    .product-details-add, .product-details-empty {
        margin-left: 0 !important;
        width: 100%;
        border-radius: 4px !important;
    }

    .product-flex {
        flex-direction: column;
    }

    .product-details .product-details-info .btn + .btn {
        margin-left: 0;
        margin-top: 10px;
    }

    .product-details .product-details-info .btn + .btn, .product-details .product-details-info .btn {
        width: 100%;
    }
}

.product-details .product-details-info .quantity .quantity-minus {
    display: block;
    float: left;
    padding: 0 20px;
    background-color: #f1f3f3;
    border-radius: 3px 0 0 3px;
    font-size: 40px;
    border-right: 2px solid #e3e9e9;
    color: #cfcfcf;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    height: 46px;
    line-height: 46px;
}

    .product-details .product-details-info .quantity .quantity-minus:hover {
        color: #fff;
        background-color: #085187;
        border-right-color: #085187;
    }

.product-details .product-details-info .quantity input {
    max-width: 70px;
    float: left;
    background-color: #f7f9f9;
    padding: 18px 20px;
    font-size: 16px;
    text-align: center;
    border-radius: 0;
    height: 46px;
    margin: 0;
}

.product-details .product-details-info .quantity .quantity-plus {
    display: block;
    float: left;
    padding: 0 20px;
    background-color: #f1f3f3;
    border-radius: 0 3px 3px 0;
    font-size: 40px;
    border-left: 2px solid #e3e9e9;
    color: #cfcfcf;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    height: 46px;
    line-height: 46px;
}

    .product-details .product-details-info .quantity .quantity-plus:hover {
        color: #fff;
        background-color: #085187;
        border-right-color: #085187;
    }

.product-details .product-details-info .btn i {
    font-size: 18px;
}

.product-details .product-details-add-info .author {
    font-size: 16px;
    color: #2f2c2c;
    margin-bottom: 15px;
}

    .product-details .product-details-add-info .author .author-name {
        color: #00A0E1;
    }

.product-details .product-details-add-info .tags {
    font-size: 16px;
    color: #2f2c2c;
    margin-bottom: 15px;
}

    .product-details .product-details-add-info .tags .tags-item {
        color: #acacac;
    }

        .product-details .product-details-add-info .tags .tags-item:hover {
            color: #00A0E1;
        }

.product-details .product-details-add-info .socials {
    font-size: 16px;
    color: #2f2c2c;
    margin-bottom: 15px;
}

    .product-details .product-details-add-info .socials .social__item i {
        font-size: 20px;
        color: #d7d7d7;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

    .product-details .product-details-add-info .socials .social__item:hover i {
        color: #08acee;
    }

    .product-details .product-details-add-info .socials .social__item:first-child {
        margin-left: 15px;
    }

.product-details-add {
    background-color: #fcfcfc;
    margin: 10px 0;
    border-radius: 4px;
    padding: 10px;
    display: inline-block;
    margin-left: -10px;
    border: 2px solid #e3e9e9;
    min-width: 209px;
}

    .product-details-add .nice-select {
        margin-bottom: 0;
        padding: 11px 40px 11px 20px;
    }

        .product-details-add .nice-select .option {
            padding-left: 20px;
            white-space: nowrap;
            text-align: left;
        }

.product-details-empty {
    background-color: #e3e9e9;
    margin: 10px 0;
    border-radius: 4px;
    padding: 10px;
    display: inline-block;
    margin-left: -5px;
    border: 2px solid #e3e9e9;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

    .product-details-empty .product-details-info-sub-title {
        font-weight: 500;
        margin-bottom: 10px;
        font-size: 14px;
    }

.product-details .product-details-info .product-details-empty .quantity {
    margin-right: 0;
}

.product-details-empty .quantity .quantity-minus, .product-details-empty .quantity .quantity-plus {
    color: #2f2c2c;
    /*
    height: 36px!important;
    line-height: 36px!important;*/
}
/*.product-details-empty .quantity input {
    height: 36px!important;
    margin: 0;
}*/
.product-details-empty .btn-small {
    padding: 10px 35px;
    text-transform: none;
    font-size: 16px;
    /*height: 36px;*/
    line-height: 1;
}

.product-description {
    background-color: #e5edef;
    position: relative;
    padding-bottom: 120px;
}

    .product-description:before {
        content: '';
        display: block;
        width: 100%;
        height: 77px;
        background-color: #fff;
        position: relative;
    }

    .product-description .tab-content > .tab-pane {
        display: none;
    }

        .product-description .tab-content > .tab-pane.active {
            display: block;
        }

    .product-description .product-description-control {
        margin-top: -57px;
        margin-bottom: 50px;
        float: left;
        padding: 0;
    }

    .product-description .btn {
        position: relative;
        padding-left: 50px;
    }

        .product-description .btn img {
            position: absolute;
            left: 10px;
            top: 6px;
            width: 30px;
        }

    .product-description .product-description-control li {
        display: inline-block;
    }

        .product-description .product-description-control li .control-item {
            padding: 15px 40px;
            text-align: center;
            text-transform: uppercase;
            background-color: #f1f3f3;
            border-right: 2px solid #e3e9e9;
            position: relative;
            font-size: 18px;
            float: left;
        }

@media (max-width: 480px) {
    .product-description .product-description-control li .control-item {
        padding: 25px 14px;
        font-size: 16px;
    }
}

@media (max-width: 320px) {
    .product-description .product-description-control li .control-item {
        padding: 15px;
        font-size: 14px;
    }
}

.product-description .product-description-control li .control-item:before {
    content: '';
    display: block;
    width: 60%;
    height: 2px;
    background-color: #00A0E1;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
    opacity: 0;
}

.product-description .product-description-control li .control-item.reviews {
    border-right: none;
}

.product-description .product-description-control li.active .control-item {
    color: #00A0E1;
    background-color: #e5edef;
}

    .product-description .product-description-control li.active .control-item:before {
        opacity: 1;
    }

.product-description .product-description-control li:last-child {
    margin-left: -4px;
}

@media (max-width: 480px) {
    .product-description .product-description-control {
        margin-top: -74px;
    }
}

@media (max-width: 320px) {
    .product-description .product-description-control {
        margin-top: -51px;
        margin-bottom: 30px;
    }
}

.product-description .product-description-title {
    font-size: 40px;
    color: #2f2c2c;
    margin-bottom: 40px;
}

.product-description ul {
    padding: 0;
}

    .product-description ul > li {
        margin-bottom: 18px;
        font-size: 18px;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

@media (max-width: 640px) {
    .product-description ul > li {
        font-size: 14px;
    }
}

.product-description ul > li a, .product-description ul > li, .product-description ul > li li {
    color: #00305c;
    display: block;
    overflow: hidden;
}

    .product-description ul > li i {
        margin-right: 30px;
        margin-top: 8px;
        font-size: 12px;
        float: left;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
    }

@media (max-width: 1024px) {
    .product-description .product-description-title {
        font-size: 26px;
    }
}

.product-description .comments__list-review .comments__item-review .comment-content p {
    margin-bottom: 30px;
}

.product-description .add-review .your-rating {
    padding-left: 40px;
    font-size: 16px;
}

    .product-description .add-review .your-rating .ratings {
        display: inline-block;
        margin-left: 50px;
        color: #ccc;
        margin-bottom: 30px;
    }

        .product-description .add-review .your-rating .ratings .fa-star {
            color: #fcd846;
        }

.product-description .add-review .contact-form {
    padding-bottom: 20px;
}

    .product-description .add-review .contact-form input, .product-description .add-review .contact-form textarea {
        background-color: #fff;
    }

    .product-description .add-review .contact-form textarea {
        min-height: 230px;
    }

.product-description .product-description-text {
    margin-bottom: 30px;
}

.product-description-ver2 .product-description-ver2-thumb {
    position: relative;
}

@media (max-width: 768px) {
    .product-description-ver2 .product-description-ver2-thumb {
        margin-bottom: 100px;
    }

    .product-description .btn {
        position: relative;
        padding-left: 50px;
        display: block;
        margin-bottom: 10px;
        width: 100%;
        margin: 10px 0;
    }
}

.product-description-ver2 .pagination, .product-description-ver2 .swiper-pagination {
    bottom: -80px;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -ms-transform: translate(-50%, 0);
}

@media (max-width: 768px) {
    .product-description-ver2 .product-description-ver2-content {
        padding-top: 90px;
    }
}

.product-description-ver2 .product-description-ver2-content .post__date {
    background: #fff;
    float: left;
}

.product-description-ver2 .product-description-ver2-content .heading {
    clear: both;
    margin-bottom: 50px;
}

.product-description-ver2 .product-description-ver2-content .likes-block .btn {
    display: inline-block;
    margin-right: 30px;
}

.product-description-ver2 .product-description-ver2-content .likes-block a {
    display: inline-block;
    color: #ff454f;
    margin-bottom: -10px;
}

    .product-description-ver2 .product-description-ver2-content .likes-block a .count-likes {
        font-size: 18px;
        float: left;
    }

    .product-description-ver2 .product-description-ver2-content .likes-block a i {
        font-size: 26px;
        float: left;
        margin-right: 5px;
    }

.product-description-ver2 .swiper-container {
    -webkit-box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
    overflow: visible;
}

    .product-description-ver2 .swiper-container .swiper-slide {
        opacity: 0;
    }

        .product-description-ver2 .swiper-container .swiper-slide.swiper-slide-active {
            opacity: 1;
        }

.likes-block .btn {
    display: inline-block;
    margin-right: 30px;
}

.likes-block a {
    display: inline-block;
    color: #ff454f;
    margin-bottom: -10px;
}

    .likes-block a .count-likes {
        font-size: 18px;
        float: left;
    }

    .likes-block a i {
        font-size: 26px;
        float: left;
        margin-right: 5px;
    }

.likes-block .btn {
    display: inline-block;
    margin-right: 30px;
    margin-bottom: 30px;
}

.likes-block a {
    display: inline-block;
}

    .likes-block a .count-likes {
        color: #ff454f;
        font-size: 18px;
    }

.challenge-solutions .challenge-solutions-thumb {
    border: 2px solid #f7f9f9;
    border-radius: 10px;
    padding: 30px;
}

    .challenge-solutions .challenge-solutions-thumb img {
        margin-bottom: 30px;
    }

    .challenge-solutions .challenge-solutions-thumb .text {
        padding-left: 30px;
        font-size: 14px;
        margin-bottom: 0;
    }

.challenge-solutions .challenge-solutions-content .heading:first-child {
    margin-bottom: 60px;
}

.seo-results .seo-results-thumb canvas {
    margin-bottom: 60px;
}

.seo-results .seo-results-thumb .points {
    padding-left: 50px;
}

@media (max-width: 1024px) {
    .seo-results .seo-results-thumb .points {
        padding-left: 0;
    }
}

.seo-results .seo-results-thumb .points .points-item {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 20px;
}

    .seo-results .seo-results-thumb .points .points-item .point-sircle {
        display: inline-block;
        width: 20px;
        height: 20px;
        border-radius: 100%;
        border-color: transparent;
        margin-right: 20px;
        float: left;
    }

    .seo-results .seo-results-thumb .points .points-item .points-item-count {
        font-size: 14px;
        color: #2f2c2c;
        display: inline-block;
    }

.seo-results .seo-results-content .heading {
    margin-bottom: 80px;
}

.seo-results .seo-results-content .results {
    padding-left: 100px;
}

@media (max-width: 980px) {
    .seo-results .seo-results-content .results {
        padding-left: 0;
    }
}

.seo-results .seo-results-content .results .results-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
}

    .seo-results .seo-results-content .results .results-item i {
        display: inline-block;
        margin-right: 30px;
        font-size: 70px;
        color: #00A0E1;
    }

    .seo-results .seo-results-content .results .results-item .results-item-info {
        display: inline-block;
        font-size: 30px;
        color: #2f2c2c;
    }

@media (max-width: 980px) {
    .seo-results .seo-results-content .results .results-item .results-item-info {
        font-size: 24px;
    }
}

.product-description-ver3 {
    position: relative;
}

    .product-description-ver3 .product-description-ver3-thumb {
        position: absolute;
        top: 60px;
    }

.product-description-challenge {
    position: relative;
    margin-top: 60px;
}

@media (max-width: 640px) {
    .product-description-challenge {
        padding: 0 15px;
    }
}

.product-description-challenge .product-description-thumb {
    z-index: 5;
    margin-top: -60px;
    margin-left: -30px;
    position: relative;
}

@media (max-width: 640px) {
    .product-description-challenge .product-description-thumb {
        margin-left: 0;
    }
}

.product-description-challenge .product-description-content {
    padding: 95px 0 40px;
}

    .product-description-challenge .product-description-content .heading .heading-title {
        line-height: 1;
    }

    .product-description-challenge .product-description-content .heading p {
        line-height: 1.4;
    }

.product-description-challenge .product-description-border {
    border: 6px solid #f7f9f9;
    position: absolute;
    height: 100%;
    width: 80%;
    top: 0;
    right: 0;
}

@media (max-width: 640px) {
    .product-description-challenge .product-description-border {
        width: 100%;
    }
}

.product-description-solution {
    position: relative;
    margin-top: 60px;
}

@media (max-width: 640px) {
    .product-description-solution {
        padding-left: 20px;
        margin-top: 0;
    }
}

.product-description-solution .product-description-thumb {
    z-index: 5;
    margin-top: -60px;
    margin-left: 60px;
    position: relative;
}

@media (max-width: 640px) {
    .product-description-solution .product-description-thumb img {
        margin-bottom: -30px;
    }
}

@media (max-width: 640px) {
    .product-description-solution .product-description-thumb {
        margin-top: 0;
        margin-left: 0;
    }
}

.product-description-solution .product-description-content {
    padding: 95px 0 40px;
}

@media (max-width: 640px) {
    .product-description-solution .product-description-content {
        padding-top: 25px;
    }
}

.product-description-solution .product-description-content .heading .heading-title {
    line-height: 1;
}

.product-description-solution .product-description-content .heading p {
    line-height: 1.4;
    margin-bottom: 30px;
}

    .product-description-solution .product-description-content .heading p:last-child {
        margin-bottom: auto;
    }

.product-description-solution .product-description-border {
    border: 6px solid #f7f9f9;
    position: absolute;
    height: 100%;
    width: 80%;
    top: 0;
    left: 0;
}

@media (max-width: 640px) {
    .product-description-solution .product-description-border {
        width: 100%;
    }
}

.seo-results-ver2 .seo-results-content .list {
    padding-left: 60px;
}

@media (max-width: 1024px) {
    .seo-results-ver2 .seo-results-content .list {
        padding-left: 0;
    }
}

.seo-results-ver2 .seo-results-thumb {
    border-radius: 10px;
    border-color: transparent;
    -webkit-box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
    box-shadow: 24px 50px 60px rgba(0, 0, 0, 0.3);
}

.seo-results-ver2 .results {
    padding-left: 100px;
}

@media (max-width: 1024px) {
    .seo-results-ver2 .results {
        padding-left: 0;
    }
}

.seo-results-ver2 .results .results-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px;
    width: 33.33%;
    float: left;
}

@media (max-width: 980px) {
    .seo-results-ver2 .results .results-item {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .seo-results-ver2 .results .results-item {
        margin-bottom: 15px;
    }
}

.seo-results-ver2 .results .results-item i {
    display: inline-block;
    margin-right: 30px;
    font-size: 70px;
    color: #00A0E1;
}

.seo-results-ver2 .results .results-item .results-item-info {
    display: inline-block;
    font-size: 30px;
    color: #2f2c2c;
}

@media (max-width: 768px) {
    .seo-results-ver2 .results .results-item .results-item-info {
        font-size: 24px;
    }
}

/*------------- #COMMENTS --------------*/
.comments {
    overflow: hidden;
    float: none;
}

    .comments .heading {
        margin-bottom: 45px;
    }

        .comments .heading .heading-title {
            margin-bottom: 0;
        }

    .comments .comments__list {
        list-style: none;
        margin: 0 0 73px 0;
        padding: 0;
    }

        .comments .comments__list .comments__item .comments__article {
            border-bottom: 2px solid #f1f3f3;
            padding-bottom: 40px;
            margin-bottom: 30px;
        }

            .comments .comments__list .comments__item .comments__article .comment-content {
                margin-bottom: 30px;
            }

            .comments .comments__list .comments__item .comments__article .comments__header .comments__author {
                margin-right: 15px;
                font-size: 18px;
                color: #2f2c2c;
                font-style: normal;
            }

                .comments .comments__list .comments__item .comments__article .comments__header .comments__author a {
                    color: #2f2c2c;
                }

                .comments .comments__list .comments__item .comments__article .comments__header .comments__author .replied {
                    font-size: 16px;
                    color: #acacac;
                }

            .comments .comments__list .comments__item .comments__article .comments__header .comments__time {
                position: relative;
                color: #ccc;
                font-size: 14px;
                display: block;
            }

            .comments .comments__list .comments__item .comments__article .comments__avatar {
                float: left;
                margin-right: 30px;
            }

                .comments .comments__list .comments__item .comments__article .comments__avatar .avatar {
                    border-radius: 100%;
                }

            .comments .comments__list .comments__item .comments__article .comments__body {
                overflow: hidden;
            }

                .comments .comments__list .comments__item .comments__article .comments__body .reply {
                    float: left;
                    font-size: 26px;
                    color: #d7d7d7;
                    margin-right: 30px;
                }

                    .comments .comments__list .comments__item .comments__article .comments__body .reply:hover {
                        color: #00A0E1;
                    }

        .comments .comments__list .comments__item .children {
            margin: 30px 0 0 60px;
            list-style: none;
            padding: 0;
        }

@media (max-width: 980px) {
    .comments .comments__list .comments__item .children {
        margin-left: 30px;
        padding-left: 0;
    }
}

.comments__item-review {
    margin-bottom: 40px;
    border-bottom: 2px solid #f1f3f3;
}

    .comments__item-review .ratings {
        color: #ccc;
    }

        .comments__item-review .ratings .fa-star {
            color: #fcd846;
        }

.comments__list-review {
    list-style: none;
    margin: 0 0 73px 0;
    padding: 0;
}

.comments__avatar-review {
    float: left;
    margin-right: 30px;
}

.comments__author-review {
    margin-right: 15px;
    font-size: 18px;
    color: #2f2c2c;
    font-style: normal;
}

    .comments__author-review a {
        color: #2f2c2c;
    }

.comments__header-review {
    margin-bottom: 15px;
}

    .comments__header-review > a {
        position: relative;
        color: #ccc;
        font-size: 14px;
    }

.leave-reply {
    background-color: #f7f9f9;
    overflow: hidden;
    padding: 70px 60px 80px;
}

@media (max-width: 800px) {
    .leave-reply {
        padding: 30px;
    }
}

.leave-reply .heading {
    margin-bottom: 60px;
}

.leave-reply input, .leave-reply textarea {
    background-color: #fff;
}

.leave-reply textarea {
    margin-bottom: 40px;
}

@media (max-width: 360px) {
    .leave-reply .submit-block {
        display: block;
    }
}

.leave-reply .submit-block .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 360px) {
    .leave-reply .submit-block .btn {
        margin-bottom: 30px;
    }
}

.leave-reply .submit-block .submit-block-text {
    font-size: 12px;
    line-height: 1.2;
    color: #acacac;
}

    .leave-reply .submit-block .submit-block-text span {
        color: #cccccc;
    }

#comment-nav-above,
#comment-nav-below {
    padding: 0 0 60px 0;
}

/*------------- #SOCIALS-PANEL --------------*/
.socials-panel .socials-panel-item {
    width: 20%;
    text-align: center;
    padding: 25px;
    display: inline-block;
    float: left;
    min-height: 80px;
}

@media (max-width: 1024px) {
    .socials-panel .socials-panel-item {
        width: 33.33%;
    }
}

@media (max-width: 570px) {
    .socials-panel .socials-panel-item {
        width: 50%;
    }
}

@media (max-width: 480px) {
    .socials-panel .socials-panel-item {
        width: 100%;
    }
}

.socials-panel .socials-panel-item .social__item {
    margin-right: 15px;
    display: inline-block;
}

    .socials-panel .socials-panel-item .social__item i {
        font-size: 25px;
        color: #fff;
    }

.socials-panel .socials-panel-item .socials-panel-title {
    display: inline-block;
    color: #fff;
}

/*------------- #SHOP-USER-FORM --------------*/
.shop-user-form .item-title {
    font-size: 30px;
    padding-bottom: 40px;
    display: block;
    position: relative;
}

@media (max-width: 640px) {
    .shop-user-form .item-title {
        font-size: 20px;
    }
}

.shop-user-form .item-title:after {
    content: '';
    display: block;
    border: 30px solid transparent;
    border-bottom: 20px solid #f7f9f9;
    position: absolute;
    bottom: 0;
    left: 0;
    opacity: 0;
}

.shop-user-form .item-title.active {
    color: #00A0E1;
}

    .shop-user-form .item-title.active:after {
        opacity: 1;
    }

.shop-user-form input {
    background-color: #fff;
    margin-bottom: 30px;
}

.shop-user-form .helped {
    padding: 20px 0;
    color: #00A0E1;
    display: block;
}

.shop-user-form .login-btn-wrap {
    overflow: hidden;
    padding-bottom: 20px;
    display: table;
}

    .shop-user-form .login-btn-wrap .btn {
        float: left;
        margin-right: 20px;
    }

@media (max-width: 360px) {
    .shop-user-form .login-btn-wrap .btn {
        margin-bottom: 30px;
    }
}

.shop-user-form .login-btn-wrap .remember-wrap {
    display: table-cell;
    vertical-align: middle;
}

@media (max-width: 320px) {
    .shop-user-form .login-btn-wrap .remember-wrap {
        display: block;
    }
}

.shop-user-form .login-btn-wrap .remember-wrap .checkbox {
    position: relative;
}

    .shop-user-form .login-btn-wrap .remember-wrap .checkbox input[type=checkbox] {
        display: none;
    }

    .shop-user-form .login-btn-wrap .remember-wrap .checkbox label {
        padding-left: 30px;
        color: #2f2c2c;
    }

        .shop-user-form .login-btn-wrap .remember-wrap .checkbox label:before {
            content: "";
            display: inline-block;
            width: 14px;
            height: 14px;
            position: absolute;
            left: 0;
            bottom: 5px;
            border-radius: 3px;
            background-color: #00A0E1;
            border: none;
        }

    .shop-user-form .login-btn-wrap .remember-wrap .checkbox input[type=checkbox]:checked + label:before {
        content: "\2714";
        font-size: 14px;
        color: #fff;
        text-align: center;
        line-height: 14px;
    }

.shop-user-form .shop-user-form-return p {
    margin-bottom: 30px;
}

.billing-details .billing-details-title {
    margin-bottom: 60px;
}

/*------------- #ORDER --------------*/
.order .order-title {
    margin-bottom: 60px;
}

.order .cart-main .cart_item td {
    padding-left: 100px;
}

@media (max-width: 640px) {
    .order .cart-main .cart_item td {
        padding-left: 20px;
    }
}

.cart-main .cart_item td .checkbox label:before {
    width: 24px;
    height: 24px;
}

.cart-main .cart_item td .checkbox input[type=checkbox] + label:before {
    background-color: #e9f6ff;
    border: 2px solid #005690;
}

.cart-main .cart_item td .checkbox input[type=checkbox]:checked + label:before {
    line-height: 24px;
    background-color: #005690;
}

.order .cart-main .cart_item.subtotal {
    background-color: #f7f9f9;
}

    .order .cart-main .cart_item.subtotal .cart-product-title {
        text-transform: uppercase;
    }

    .order .cart-main .cart_item.subtotal .product-subtotal .total {
        color: #2f2c2c;
    }

    .order .cart-main .cart_item.subtotal:after {
        display: none;
    }

.order .cart-main .cart_item.total {
    background-color: #00A0E1;
}

    .order .cart-main .cart_item.total .cart-product-title {
        color: #fff;
        text-transform: uppercase;
    }

    .order .cart-main .cart_item.total .product-subtotal .total {
        color: #fff;
    }

    .order .cart-main .cart_item.total:after {
        display: none;
    }

    .order .cart-main .cart_item.total .product-thumbnail:after {
        content: '';
        display: block;
        border: 30px solid transparent;
        border-top: 20px solid #00A0E1;
        position: absolute;
        bottom: -50px;
        left: 100px;
        opacity: 1;
    }

.order .cart-main .cart-product-wrap-title-main tr > th {
    padding-left: 100px;
}

@media (max-width: 640px) {
    .order .cart-main .cart-product-wrap-title-main tr > th {
        padding-left: 20px;
    }
}

.order .cart-main .product-quantity .quantity {
    font-size: 18px;
    color: #2f2c2c;
}

.order .cart-main .actions {
    padding: 40px 100px;
}

.order .cheque {
    padding: 85px 100px;
    overflow: hidden;
}

@media (max-width: 460px) {
    .order .cheque {
        padding: 30px;
    }
}

.order .cheque .cheque-content .cheque-content-title {
    margin-bottom: 15px;
}

.order .cheque .cheque-content .cheque-content-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
}

.order .cheque .logos a {
    margin-right: 8px;
    margin-top: 22px;
    display: inline-block;
}

@media (max-width: 480px) {
    .order .cheque .logos a {
        float: left;
    }
}

.order .cheque .logos a.pay-pal {
    margin-right: 60px;
    margin-top: 9px;
}

.order .cheque .logos .btn {
    float: right;
    padding: 25px 80px;
}

@media (max-width: 800px) {
    .order .cheque .logos .btn {
        float: left;
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .order .cheque .logos .btn {
        padding: 25px 30px;
    }
}

.social {
    position: fixed;
    right: 0;
    top: 50%;
    z-index: 3;
    transition: right .2s ease;
    background-color: #0595d1;
}

    .social ul {
        padding: 0;
        margin: 0;
        max-width: 64px;
        text-align: center;
        padding-top: 6px;
    }

        .social ul li {
            width: 44px;
            text-align: center;
            list-style-type: none;
            padding: 0;
            margin: 0;
            display: inline-block;
        }

            .social ul li.right-wrapped {
                position: relative;
                text-align: center;
                width: 58px;
            }

                .social ul li.right-wrapped a {
                    /* transform: scaleX(-1); */
                    line-height: 1;
                    font-size: 14px;
                    display: block;
                    text-align: center;
                    padding: 10px 5px;
                    height: 50px;
                }

                    .social ul li.right-wrapped a:hover {
                        font-size: 15px;
                    }

            .social ul li a {
                color: #fff;
                font-size: 24px;
                font-weight: 400;
                line-height: 40px;
                padding: 10px 12px;
                text-decoration: none;
                transition: .2s all ease-in-out;
            }

                .social ul li a:hover {
                    font-size: 28px;
                }
/*Form Wizard*/
.progress {
    overflow: hidden;
    height: 20px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
    box-shadow: inset 0 1px 2px rgba(0,0,0,.1);
}

.progress-bar {
    float: left;
    width: 0;
    height: 100%;
    font-size: 12px;
    line-height: 20px;
    color: #fff;
    text-align: center;
    background-color: #428bca;
    -webkit-box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    box-shadow: inset 0 -1px 0 rgba(0,0,0,.15);
    -webkit-transition: width .6s ease;
    transition: width .6s ease;
}

.bs-wizard {
    border-bottom: solid 1px #e0e0e0;
    padding: 30px 0 10px 0;
}

    .bs-wizard > .bs-wizard-step {
        padding: 0;
        position: relative;
    }

        .bs-wizard > .bs-wizard-step + .bs-wizard-step {
        }

        .bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
            color: #595959;
            font-size: 16px;
            margin-bottom: 5px;
        }

        .bs-wizard > .bs-wizard-step .bs-wizard-info {
            color: #999;
            font-size: 14px;
        }

        .bs-wizard > .bs-wizard-step > .bs-wizard-dot {
            position: absolute;
            width: 30px;
            height: 30px;
            display: block;
            background: #e0e8ef;
            top: 45px;
            left: 50%;
            margin-top: -15px;
            margin-left: -15px;
            border-radius: 50%;
        }

            .bs-wizard > .bs-wizard-step > .bs-wizard-dot:after {
                content: ' ';
                width: 14px;
                height: 14px;
                background: #0595d1;
                border-radius: 50px;
                position: absolute;
                top: 8px;
                left: 8px;
            }

        .bs-wizard > .bs-wizard-step > .progress {
            position: relative;
            border-radius: 0px;
            height: 8px;
            box-shadow: none;
            margin: 20px 0;
        }

            .bs-wizard > .bs-wizard-step > .progress > .progress-bar {
                width: 0px;
                box-shadow: none;
                background: #e0e8ef;
            }

        .bs-wizard > .bs-wizard-step.complete > .progress > .progress-bar {
            width: 100%;
        }

        .bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
            width: 50%;
        }

        .bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
            width: 0%;
        }

        .bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
            width: 100%;
        }

        .bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
            background-color: #f5f5f5;
        }

            .bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
                opacity: 0;
            }

        .bs-wizard > .bs-wizard-step:first-child > .progress {
            left: 50%;
            width: 50%;
        }

        .bs-wizard > .bs-wizard-step:last-child > .progress {
            width: 50%;
        }

        .bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
            pointer-events: none;
        }
/*END Form Wizard*/


/*--------------------
Chat
--------------------*/
.chat {
    position: absolute;
    width: 300px;
    z-index: 2;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    bottom: 0;
    right: 61px;
    position: fixed;
    width: 300px;
}

.chat-close {
    color: #0595d1;
    display: block;
    float: right;
    font-size: 22px;
    height: 21px;
    line-height: 21px;
    margin: 2px 0 0 0;
    text-align: center;
    width: 22px;
}
/*--------------------
Chat Title
--------------------*/
.chat-title {
    -webkit-box-flex: 0;
    flex: 0 1 45px;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.2);
    background: #005690;
    color: #fff;
    text-transform: uppercase;
    text-align: left;
    padding: 10px 10px 10px 50px;
    cursor: pointer;
}

    .chat-title h1, .chat-title h2 {
        font-weight: normal;
        font-size: 16px;
        color: #fff;
        margin: 0;
        padding: 0;
    }

    .chat-title h2 {
        color: rgba(255, 255, 255, 0.5);
        font-size: 8px;
        letter-spacing: 1px;
    }

    .chat-title .avatar {
        position: absolute;
        z-index: 1;
        top: 8px;
        left: 9px;
        /* border-radius: 30px; */
        width: 30px;
        height: 36px;
        overflow: hidden;
        margin: 0;
        padding: 0;
    }

        .chat-title .avatar img {
            width: 100%;
            height: auto;
        }

.chat .mCSB_container {
    overflow: hidden;
}
/*--------------------
Messages
--------------------*/
.messages {
    -webkit-box-flex: 1;
    flex: 1 1 auto;
    height: 300px;
    color: rgba(255, 255, 255, 0.5);
    overflow: hidden;
    position: relative;
    width: 100%;
}

    .messages .messages-content {
        position: absolute;
        top: 0;
        left: 0;
        height: 101%;
        width: 100%;
        padding: 0 5px;
    }

    .messages .message {
        clear: both;
        float: left;
        padding: 6px 10px 7px;
        border-radius: 10px 10px 10px 0;
        background: rgba(0, 0, 0, 0.3);
        background: #6e7c82;
        color: #fff;
        font-weight: 600;
        margin: 8px 0;
        font-size: 12px;
        line-height: 1.4;
        margin-left: 5px;
        position: relative;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
        background-color: #fff;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        color: #4a4a4a;
    }

        .messages .message a {
            color: #0595d1;
            font-weight: 700;
        }

    .messages .button {
        clear: both;
        float: left;
        padding: 6px 10px 7px;
        border-radius: 10px;
        background: rgba(0, 0, 0, 0.3);
        background: #0595d1;
        color: #fff;
        margin: 8px 0;
        font-size: 12px;
        line-height: 1.4;
        margin-left: 5px;
        position: relative;
        text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
        cursor: pointer;
    }

        .messages .button:hover {
            background-color: #00305b;
        }

    .messages .message .timestamp {
        position: absolute;
        bottom: -15px;
        font-size: 9px;
        color: rgba(255, 255, 255, 0.3);
    }

    .messages .message::before {
        content: '';
        position: absolute;
        bottom: -6px;
        border-top: 6px solid #fff;
        left: 0;
        border-right: 7px solid transparent;
    }

    .messages .message .avatar {
        position: absolute;
        z-index: 1;
        bottom: -15px;
        left: -35px;
        border-radius: 30px;
        width: 30px;
        height: 30px;
        overflow: hidden;
        margin: 0;
        padding: 0;
        border: 2px solid rgba(255, 255, 255, 0.24);
    }

        .messages .message .avatar img {
            width: 100%;
            height: auto;
        }

    .messages .message.message-personal {
        float: right;
        color: #fff;
        text-align: right;
        background: linear-gradient(120deg, #248A52, #257287);
        border-radius: 10px 10px 0 10px;
    }

        .messages .message.message-personal::before {
            left: auto;
            right: 0;
            border-right: none;
            border-left: 5px solid transparent;
            border-top: 4px solid #257287;
            bottom: -4px;
        }

    .messages .message:last-child {
        margin-bottom: 30px;
    }

    .messages .message.new {
        -webkit-transform: scale(0);
        transform: scale(0);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0;
        -webkit-animation: bounce 500ms linear both;
        animation: bounce 500ms linear both;
    }

    .messages .message.loading::before {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
        content: '';
        display: block;
        width: 3px;
        height: 3px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.5);
        z-index: 2;
        margin-top: 4px;
        -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
        animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
        border: none;
        -webkit-animation-delay: .15s;
        animation-delay: .15s;
    }

    .messages .message.loading span {
        display: block;
        font-size: 0;
        width: 20px;
        height: 10px;
        position: relative;
    }

        .messages .message.loading span::before {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            content: '';
            display: block;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            z-index: 2;
            margin-top: 4px;
            -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
            animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
            margin-left: -7px;
        }

        .messages .message.loading span::after {
            position: absolute;
            top: 50%;
            left: 50%;
            -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
            content: '';
            display: block;
            width: 3px;
            height: 3px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            z-index: 2;
            margin-top: 4px;
            -webkit-animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
            animation: ball 0.45s cubic-bezier(0, 0, 0.15, 1) alternate infinite;
            margin-left: 7px;
            -webkit-animation-delay: .3s;
            animation-delay: .3s;
        }

/*--------------------
Message Box
--------------------*/
.message-box {
    display: none;
    -webkit-box-flex: 0;
    flex: 0 1 40px;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px;
    position: relative;
}

    .message-box .message-input {
        background: none;
        border: none;
        outline: none !important;
        resize: none;
        color: rgba(255, 255, 255, 0.7);
        font-size: 11px;
        height: 17px;
        margin: 0;
        padding-right: 20px;
        width: 265px;
        min-height: 0;
        padding: 0;
    }

    .message-box textarea:focus:-webkit-placeholder {
        color: transparent;
    }

    .message-box .message-submit {
        position: absolute;
        z-index: 1;
        top: 9px;
        right: 10px;
        color: #fff;
        border: none;
        background: #248A52;
        font-size: 10px;
        text-transform: uppercase;
        line-height: 1;
        padding: 6px 10px;
        border-radius: 10px;
        outline: none !important;
        -webkit-transition: background .2s ease;
        transition: background .2s ease;
    }

        .message-box .message-submit:hover {
            background: #1D7745;
        }

/*--------------------
Custom Srollbar
--------------------*/
.mCSB_scrollTools {
    margin: 1px -3px 1px 0;
    opacity: 0;
}

.mCSB_inside > .mCSB_container {
    margin-right: 0px;
    padding: 0 20px 0 5px;
}

.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: rgba(0, 0, 0, 0.5) !important;
}

.mCSB_scrollTools {
    width: 30px !important;
}

/*--------------------
Bounce
--------------------*/
@-webkit-keyframes bounce {
    0% {
        -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    4.7% {
        -webkit-transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    9.41% {
        -webkit-transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    14.11% {
        -webkit-transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    18.72% {
        -webkit-transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    24.32% {
        -webkit-transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    29.93% {
        -webkit-transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    35.54% {
        -webkit-transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    41.04% {
        -webkit-transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    52.15% {
        -webkit-transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    63.26% {
        -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    85.49% {
        -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    100% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
}

@keyframes bounce {
    0% {
        -webkit-transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    4.7% {
        -webkit-transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.45, 0, 0, 0, 0, 0.45, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    9.41% {
        -webkit-transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.883, 0, 0, 0, 0, 0.883, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    14.11% {
        -webkit-transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.141, 0, 0, 0, 0, 1.141, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    18.72% {
        -webkit-transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.212, 0, 0, 0, 0, 1.212, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    24.32% {
        -webkit-transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.151, 0, 0, 0, 0, 1.151, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    29.93% {
        -webkit-transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.048, 0, 0, 0, 0, 1.048, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    35.54% {
        -webkit-transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.979, 0, 0, 0, 0, 0.979, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    41.04% {
        -webkit-transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.961, 0, 0, 0, 0, 0.961, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    52.15% {
        -webkit-transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.991, 0, 0, 0, 0, 0.991, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    63.26% {
        -webkit-transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1.007, 0, 0, 0, 0, 1.007, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    85.49% {
        -webkit-transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(0.999, 0, 0, 0, 0, 0.999, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }

    100% {
        -webkit-transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
        transform: matrix3d(1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1, 0, 0, 0, 0, 1);
    }
}

@-webkit-keyframes ball {
    from {
        -webkit-transform: translateY(0) scaleY(0.8);
        transform: translateY(0) scaleY(0.8);
    }

    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes ball {
    from {
        -webkit-transform: translateY(0) scaleY(0.8);
        transform: translateY(0) scaleY(0.8);
    }

    to {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.typeahead {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    margin-top: -2px;
    -webkit-transition-delay: 0.75s;
    transition-delay: 0.75s;
    -webkit-transition: display 1s;
    transition: display 1s;
    padding: 0;
    z-index: 1;
    max-height: 300px;
    overflow: hidden;
    overflow-y: scroll;
    border-bottom: 1px solid #eee;
}

.typeahead-dropdown:hover {
    display: block;
}

.typeahead > li:first-child {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

    .typeahead > li:first-child:not(:last-child) {
        border-radius: 0;
    }

.typeahead:focus {
    z-index: 101;
    display: block;
}

.typeahead li {
    position: relative;
    display: block;
    padding: 10px 15px;
    margin-bottom: -1px;
    background-color: #fff;
    border: 1px solid #ddd;
    border-left-width: 2px;
    border-right-width: 2px;
}

.typeahead::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background-color: #F5F5F5;
}

.typeahead::-webkit-scrollbar {
    width: 10px;
    background-color: #F5F5F5;
}

.typeahead::-webkit-scrollbar-thumb {
    background-color: #00a0e1;
    background: #00a0e1;
    background: -webkit-gradient(linear,left top,right top,from(#00a0e1),to(#006c96));
    background: -webkit-linear-gradient(top,#00a0e1,#006c96);
    background: -moz-linear-gradient(left,#00a0e1,#006c96);
    background: -ms-linear-gradient(left,#00a0e1,#006c96);
    background: -o-linear-gradient(left,#00a0e1,#006c96);
}


/* ---------------------------------- */
/* Radio Button
------------------------------------- */

.radio {
    display: inline-block;
    vertical-align: top;
}

    .radio label {
        margin: 3px 0;
        cursor: pointer;
        position: relative;
        padding-left: 29px;
        line-height: 25px;
    }

    .radio input[type="radio"] {
        position: absolute;
        opacity: 0;
    }

        .radio input[type="radio"] + label .radio-label {
            content: '';
            background: #fff;
            border-radius: 100%;
            border: 2px solid #b4b4b4;
            display: inline-block;
            width: 18px;
            height: 18px;
            position: relative;
            margin-right: 5px;
            vertical-align: top;
            cursor: pointer;
            text-align: center;
            transition: all 250ms ease;
            background-color: #fff;
            box-shadow: inset 0 0 0 8px #fff;
            z-index: 100;
            position: absolute;
            top: 2px;
            left: 0;
        }

            .radio input[type="radio"] + label .radio-label:after {
                background-color: #66676b;
                content: "";
                top: 3px;
                left: 0;
                right: 0;
                margin: 0 auto;
                position: absolute;
                opacity: 1;
                transition: 0.3s;
                border-radius: 50%;
                transform: scale(0);
                position: absolute;
                top: 0;
                left: 0;
                box-sizing: border-box;
                width: 100%;
                height: 100%;
                z-index: 99;
            }

        .radio input[type="radio"]:checked + label .radio-label {
            background-color: #66676b;
            border-color: #66676b;
            box-shadow: inset 0 0 0 3px #fff;
        }

.radio-label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    border-radius: 50%;
    background-color: transparent;
    display: block
}

/* Sevk Adres Se�imi */
.address-select strong {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: block;
}

    .address-select strong + span {
        font-size: 14px;
    }

.address-select .radio {
    margin-right: 15px;
}

.address-select .radio {
    width: 100%;
}

.address-select {
    margin-bottom: 15px;
}

    .address-select .leave-rating {
        transform: scale(1.1);
        margin: 3px 0 10px 3px;
    }

    .address-select .radio label {
        background-color: #fff;
        border: 2px solid #eee;
        padding: 20px 20px 20px 40px;
    }

    .address-select .radio input[type="radio"] + label .radio-label {
        top: 50%;
        transform: translateY(-50%);
        left: 10px;
    }

    .address-select .radio input[type="radio"]:checked + label {
        border: 2px solid #00a0e1;
    }

.support-p {
    max-width: 165px;
    display: block;
    text-align: center;
    border: 2px solid #2f2c2c;
    padding: 10px;
    float: right;
    margin-left: 50px;
}

    .support-p strong {
        font-size: 19px;
        font-weight: 500;
        letter-spacing: -1px;
        text-align: center;
    }

    .support-p span {
        font-size: 14px;
        font-weight: 300;
        display: block;
        text-align: center;
    }

@media(max-width: 768px) {
    .support-p {
        float: none;
        margin-left: auto;
        margin-right: auto;
    }
    .widget.products {
        overflow: hidden;
    }
}
