﻿/*

CSS IMOBILIÁRIA


CORES:
	Body 		: #333
	Cor Padrão (verde-turquesa)	: #4682B4


    
/*=========================================================
	01 -> GERAL
===========================================================*/

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    color: #333;
}

p {
    font-family: "Quicksand", sans-serif;
    font-size: 18px;
}


h1, h2, h3, h4, h5, h6 {
    color: #2B2D42;
    font-weight: 700;
    margin: 0 0 10px;
}

a {
    color: #2B2D42;
    font-weight: 500;
    -webkit-transition: 0.2s color;
    transition: 0.2s color;
}

    a:hover, a:focus {
        color: #4682B4;
        text-decoration: none;
        outline: none;
    }

ul, ol {
    margin: 0;
    padding: 0;
    list-style: none
}

/*----------------------------*\
	Buttons
\*----------------------------*/

.primary-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #4682B4;
    border: none;
    border-radius: 40px;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    text-align: center;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

    .primary-btn:hover, .primary-btn:focus {
        opacity: 0.9;
        color: #FFF;
    }

/*----------------------------*\
	Inputs
\*----------------------------*/

/*-- Text input --*/

.input {
    height: 40px;
    padding: 0px 15px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    width: 100%;
}

textarea.input {
    padding: 15px;
    min-height: 90px;
}

/*-- Number input --*/

.input-number {
    position: relative;
}

    .input-number input[type="number"]::-webkit-inner-spin-button, .input-number input[type="number"]::-webkit-outer-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

    .input-number input[type="number"] {
        -moz-appearance: textfield;
        height: 40px;
        width: 100%;
        border: 1px solid #E4E7ED;
        background-color: #FFF;
        padding: 0px 35px 0px 15px;
    }

    .input-number .qty-up, .input-number .qty-down {
        position: absolute;
        display: block;
        width: 20px;
        height: 20px;
        border: 1px solid #E4E7ED;
        background-color: #FFF;
        text-align: center;
        font-weight: 700;
        cursor: pointer;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .input-number .qty-up {
        right: 0;
        top: 0;
        border-bottom: 0px;
    }

    .input-number .qty-down {
        right: 0;
        bottom: 0;
    }

        .input-number .qty-up:hover, .input-number .qty-down:hover {
            background-color: #E4E7ED;
            color: #4682B4;
        }

/*-- Select input --*/

.input-select {
    padding: 0px 15px;
    background: #FFF;
    border: 1px solid #E4E7ED;
    height: 40px;
}

/*-- checkbox & radio input --*/

.input-radio, .input-checkbox {
    position: relative;
    display: block;
}

    .input-radio input[type="radio"]:not(:checked), .input-radio input[type="radio"]:checked, .input-checkbox input[type="checkbox"]:not(:checked), .input-checkbox input[type="checkbox"]:checked {
        position: absolute;
        margin-left: -9999px;
        visibility: hidden;
    }

    .input-radio label, .input-checkbox label {
        font-weight: 500;
        min-height: 20px;
        padding-left: 20px;
        margin-bottom: 5px;
        cursor: pointer;
    }

    .input-radio input[type="radio"] + label span, .input-checkbox input[type="checkbox"] + label span {
        position: absolute;
        left: 0px;
        top: 4px;
        width: 14px;
        height: 14px;
        border: 2px solid #E4E7ED;
        background: #FFF;
    }

    .input-radio input[type="radio"] + label span {
        border-radius: 50%;
    }

        .input-radio input[type="radio"] + label span:after {
            content: "";
            position: absolute;
            left: 50%;
            top: 50%;
            -webkit-transform: translate(-50%, -50%) scale(0);
            -ms-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
            background-color: #FFF;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            opacity: 0;
            -webkit-transition: all 0.2s;
            transition: all 0.2s;
        }

    .input-checkbox input[type="checkbox"] + label span:after {
        content: '✔';
        position: absolute;
        top: -2px;
        left: 1px;
        font-size: 10px;
        color: #FFF;
        opacity: 0;
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        transform: scale(0);
        -webkit-transition: all 0.2s;
        transition: all 0.2s;
    }

    .input-radio input[type="radio"]:checked + label span, .input-checkbox input[type="checkbox"]:checked + label span {
        background-color: #4682B4;
        border-color: #4682B4;
    }

        .input-radio input[type="radio"]:checked + label span:after {
            opacity: 1;
            -webkit-transform: translate(-50%, -50%) scale(1);
            -ms-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
        }

        .input-checkbox input[type="checkbox"]:checked + label span:after {
            opacity: 1;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            transform: scale(1);
        }

    .input-radio .caption, .input-checkbox .caption {
        margin-top: 5px;
        max-height: 0;
        overflow: hidden;
        -webkit-transition: 0.3s max-height;
        transition: 0.3s max-height;
    }

    .input-radio input[type="radio"]:checked ~ .caption, .input-checkbox input[type="checkbox"]:checked ~ .caption {
        max-height: 800px;
    }

/*----------------------------*\
	Section
\*----------------------------*/

.section {
    padding-top: 30px;
    padding-bottom: 30px;
}

.section-title {
    position: relative;
    margin-bottom: 30px;
    margin-top: 15px;
}

    .section-title .title {
        display: inline-block;
        text-transform: uppercase;
        margin: 0px;
    }

    .section-title .section-nav {
        float: right;
    }

        .section-title .section-nav .section-tab-nav {
            display: inline-block;
        }

.section-tab-nav li {
    display: inline-block;
    margin-right: 15px;
}

    .section-tab-nav li:last-child {
        margin-right: 0px;
    }

    .section-tab-nav li a {
        font-weight: 700;
        color: #8D99AE;
    }

        .section-tab-nav li a:after {
            content: "";
            display: block;
            width: 0%;
            height: 2px;
            background-color: #4682B4;
            -webkit-transition: 0.2s all;
            transition: 0.2s all;
        }

    .section-tab-nav li.active a {
        color: #4682B4;
    }

        .section-tab-nav li a:hover:after, .section-tab-nav li a:focus:after, .section-tab-nav li.active a:after {
            width: 100%;
        }

.section-title .section-nav .products-slick-nav {
    top: 0px;
    right: 0px;
}

/*----------------------------*\
	Breadcrumb
\*----------------------------*/

#breadcrumb {
    padding: 30px 0px;
    background: #FBFBFC;
    border-bottom: 1px solid #E4E7ED;
    margin-bottom: 30px;
}

    #breadcrumb .breadcrumb-header {
        display: inline-block;
        margin-top: 0px;
        margin-bottom: 0px;
        margin-right: 15px;
        text-transform: uppercase;
    }

    #breadcrumb .breadcrumb-tree {
        display: inline-block;
    }

        #breadcrumb .breadcrumb-tree li {
            display: inline-block;
            font-size: 12px;
            font-weight: 500;
            text-transform: uppercase;
        }

            #breadcrumb .breadcrumb-tree li + li {
                margin-left: 10px;
            }

                #breadcrumb .breadcrumb-tree li + li:before {
                    content: '/';
                    display: inline-block;
                    color: #8D99AE;
                    margin-right: 10px;
                }

            #breadcrumb .breadcrumb-tree li a {
                color: #8D99AE;
            }

                #breadcrumb .breadcrumb-tree li a:hover {
                    color: #4682B4;
                }

/*=========================================================
	02 -> HEADER
===========================================================*/

/*----------------------------*\
	Top header
\*----------------------------*/

#top-header {
    padding-top: 10px;
    padding-bottom: 10px;
    background-color: #1E1F29;
}

.header-links li {
    display: inline-block;
    margin-right: 15px;
    font-size: 12px;
}

    .header-links li:last-child {
        margin-right: 0px;
    }

    .header-links li a {
        color: #FFF;
    }

        .header-links li a:hover {
            color: #4682B4;
        }

    .header-links li i {
        color: #4682B4;
        margin-right: 5px;
    }

/*----------------------------*\
	Logo
\*----------------------------*/

#header {
    padding-top: 15px;
    padding-bottom: 15px;
    background-color: #15161D;
}

.header-logo {
    float: left;
}

    .header-logo .logo img {
        display: block;
    }

/*----------------------------*\
	Search
\*----------------------------*/

.header-search {
    padding: 15px 0px;
}

    .header-search form {
        position: relative;
    }

        .header-search form .input-select {
            margin-right: -4px;
            border-radius: 40px 0px 0px 40px;
        }

        .header-search form .input {
            width: calc(100% - 150px);
            margin-right: -4px;
        }

        .header-search form .search-btn {
            height: 40px;
            width: 100px;
            background: #4682B4;
            color: #FFF;
            font-weight: 700;
            border: none;
            border-radius: 0px 40px 40px 0px;
        }

/*----------------------------*\
	Cart
\*----------------------------*/

.header-ctn {
    float: right;
    padding: 15px 0px;
}

    .header-ctn > div {
        display: inline-block;
    }

        .header-ctn > div + div {
            margin-left: 15px;
        }

        .header-ctn > div > a {
            display: block;
            position: relative;
            width: 90px;
            text-align: center;
            color: #FFF;
        }

            .header-ctn > div > a > i {
                display: block;
                font-size: 18px;
            }

            .header-ctn > div > a > span {
                font-size: 12px;
            }

            .header-ctn > div > a > .qty {
                position: absolute;
                right: 15px;
                top: -10px;
                width: 20px;
                height: 20px;
                line-height: 20px;
                text-align: center;
                border-radius: 50%;
                font-size: 10px;
                color: #FFF;
                background-color: #4682B4;
            }

    .header-ctn .menu-toggle {
        display: none;
    }

.cart-dropdown {
    position: absolute;
    width: 300px;
    background: #FFF;
    padding: 15px;
    -webkit-box-shadow: 0px 0px 0px 2px #E4E7ED;
    box-shadow: 0px 0px 0px 2px #E4E7ED;
    z-index: 99;
    right: 0;
    opacity: 0;
    visibility: hidden;
}

.dropdown.open > .cart-dropdown {
    opacity: 1;
    visibility: visible;
}

.cart-dropdown .cart-list {
    max-height: 180px;
    overflow-y: scroll;
    margin-bottom: 15px;
}

    .cart-dropdown .cart-list .product-widget {
        padding: 0px;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .cart-dropdown .cart-list .product-widget:last-child {
            margin-bottom: 0px;
        }

        .cart-dropdown .cart-list .product-widget .product-img {
            left: 0px;
            top: 0px;
        }

        .cart-dropdown .cart-list .product-widget .product-body .product-price {
            color: #2B2D42;
        }

.cart-dropdown .cart-btns {
    margin: 0px -17px -17px;
}

    .cart-dropdown .cart-btns > a {
        display: inline-block;
        width: calc(50% - 0px);
        padding: 12px;
        background-color: #4682B4;
        color: #FFF;
        text-align: center;
        font-weight: 700;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .cart-dropdown .cart-btns > a:first-child {
            margin-right: -4px;
            background-color: #1e1f29;
        }

        .cart-dropdown .cart-btns > a:hover {
            opacity: 0.9;
        }

.cart-dropdown .cart-summary {
    border-top: 1px solid #E4E7ED;
    padding-top: 15px;
    padding-bottom: 15px;
}

/*=========================================================
	03 -> Navigation
===========================================================*/

#navigation {
    background: #FFF;
    border-bottom: 2px solid #E4E7ED;
    border-top: 3px solid #4682B4;
}

/*----------------------------*\
	Main nav
\*----------------------------*/

.main-nav > li + li {
    margin-left: 30px
}

.main-nav > li > a {
    padding: 20px 0px;
}

    .main-nav > li > a:hover, .main-nav > li > a:focus, .main-nav > li.active > a {
        color: #4682B4;
        background-color: transparent;
    }

    .main-nav > li > a:after {
        content: "";
        display: block;
        width: 0%;
        height: 2px;
        background-color: #4682B4;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .main-nav > li > a:hover:after, .main-nav > li > a:focus:after, .main-nav > li.active > a:after {
        width: 100%;
    }

.header-ctn li.nav-toggle {
    display: none;
}

/*----------------------------*\
	responsive nav
\*----------------------------*/

@media only screen and (max-width: 991px) {
    .header-ctn .menu-toggle {
        display: inline-block;
    }

    #responsive-nav {
        position: fixed;
        left: 0;
        top: 0;
        background: #15161D;
        height: 100vh;
        max-width: 250px;
        width: 0%;
        overflow: hidden;
        z-index: 22;
        padding-top: 60px;
        -webkit-transform: translateX(-100%);
        -ms-transform: translateX(-100%);
        transform: translateX(-100%);
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        #responsive-nav.active {
            -webkit-transform: translateX(0%);
            -ms-transform: translateX(0%);
            transform: translateX(0%);
            width: 100%;
        }

    .main-nav > li > a:after {
        content: "";
        display: block;
        width: 0%;
    }

    .main-nav {
        margin: 0px;
        float: none;
    }

        .main-nav > li {
            display: block;
            float: none;
        }

            .main-nav > li + li {
                margin-left: 0px;
            }

            .main-nav > li > a {
                padding: 15px;
                color: #FFF;
            }
}

/*=========================================================
	04 -> CATEGORY SHOP
===========================================================*/

.shop {
    position: relative;
    overflow: hidden;
    margin: 15px 0px;
}

    .shop:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 10px;
        width: 60%;
        background: #4682B4;
        opacity: 0.9;
        -webkit-transform: skewX(-45deg);
        -ms-transform: skewX(-45deg);
        transform: skewX(-45deg);
    }

    .shop:after {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        left: 10px;
        width: 100%;
        background: #4682B4;
        opacity: 0.9;
        -webkit-transform: skewX(-45deg) translateX(-100%);
        -ms-transform: skewX(-45deg) translateX(-100%);
        transform: skewX(-45deg) translateX(-100%);
    }

    .shop .shop-img {
        position: relative;
        background-color: #E4E7ED;
        z-index: -1;
        left: 10%;
    }

        .shop .shop-img > img {
            -webkit-transition: 0.2s all;
            transition: 0.2s all;
        }

    .shop:hover .shop-img > img {
        -webkit-transform: scale(1.1);
        -ms-transform: scale(1.1);
        transform: scale(1.1);
    }

    .shop .shop-body {
        position: absolute;
        top: 0;
        width: 75%;
        padding: 30px;
        z-index: 10;
    }

        .shop .shop-body h3 {
            color: #FFF;
        }

        .shop .shop-body .cta-btn {
            color: #FFF;
            text-transform: uppercase;
        }

/*=========================================================
	05 -> HOT DEAL
===========================================================*/

#hot-deal.section {
    padding: 60px 0px;
    margin: 30px 0px;
    background-color: #E4E7ED;
    background-image: url('../img/hotdeal.png');
    background-position: center;
    background-repeat: no-repeat;
}

.hot-deal {
    text-align: center;
}

    .hot-deal .hot-deal-countdown {
        margin-bottom: 30px;
    }

        .hot-deal .hot-deal-countdown > li {
            position: relative;
            display: inline-block;
            width: 100px;
            height: 100px;
            background: #4682B4;
            text-align: center;
            border-radius: 50%;
            margin: 0px 5px;
        }

            .hot-deal .hot-deal-countdown > li > div {
                position: absolute;
                left: 0;
                right: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                transform: translateY(-50%);
            }

                .hot-deal .hot-deal-countdown > li > div h3 {
                    color: #FFF;
                    margin-bottom: 0px;
                }

                .hot-deal .hot-deal-countdown > li > div span {
                    display: block;
                    font-size: 10px;
                    text-transform: uppercase;
                    color: #FFF;
                }

    .hot-deal p {
        text-transform: uppercase;
        font-size: 24px;
    }

    .hot-deal .cta-btn {
        margin-top: 15px;
    }

/*=========================================================
	06 -> PRODUCT
===========================================================*/

/*----------------------------*\
	product
\*----------------------------*/

.product {
    position: relative;
    margin: 15px 0px;
    -webkit-box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    box-shadow: 0px 0px 0px 0px #E4E7ED, 0px 0px 0px 1px #E4E7ED;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

    .product:hover {
        -webkit-box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px#4682B4;
        box-shadow: 0px 0px 6px 0px #E4E7ED, 0px 0px 0px 2px#4682B4;
    }

    .product .product-img {
        background-size: cover;
    }

#product-image {
    width: 100%;
    height: inherit;
}

.product .product-img .product-label {
    position: absolute;
    top: 15px;
    right: 15px;
}

    .product .product-img .product-label > span {
        border: 2px solid;
        padding: 2px 10px;
        font-size: 12px;
    }

        .product .product-img .product-label > span.sale {
            background-color: #FFF;
            border-color: #4682B4;
            color: #4682B4;
        }

        .product .product-img .product-label > span.new {
            background-color: #4682B4;
            border-color: #4682B4;
            color: #FFF;
        }

.product .product-body {
    position: relative;
    padding: 15px;
    background-color: #FFF;
    text-align: center;
    z-index: 20;
    height: 295px;
}

    .product .product-body .product-category {
        text-transform: uppercase;
        font-size: 12px;
        color: #8D99AE;
    }

    .product .product-body .product-name {
        text-transform: uppercase;
        font-size: 14px;
    }

        .product .product-body .product-name > a {
            font-weight: 700;
        }

            .product .product-body .product-name > a:hover, .product .product-body .product-name > a:focus {
                color: #4682B4;
            }

    .product .product-body .product-price {
        color: #4682B4;
        font-size: 18px;
    }

        .product .product-body .product-price .product-old-price {
            font-size: 70%;
            font-weight: 400;
            color: #8D99AE;
        }

    .product .product-body .product-rating {
        position: relative;
        margin: 15px 0px 10px;
        height: 14px;
    }

        .product .product-body .product-rating > i {
            position: relative;
            width: 14px;
            margin-right: -1px;
            background: #FFF;
            color: #E4E7ED;
            z-index: 10;
        }

            .product .product-body .product-rating > i.fa-star {
                color: #4682B4;
            }

.product-rating > i.fa-star-half-full {
    color: #4682B4;
}

.product-rating > i.fa-star {
    color: #4682B4;
}

.product .product-body .product-rating:after {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    height: 1px;
    background-color: #E4E7ED;
}

.product .product-body .product-btns > button {
    position: relative;
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: transparent;
    border: none;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

    .product .product-body .product-btns > button:hover {
        background-color: #E4E7ED;
        color: #4682B4;
        border-radius: 50%;
    }

    .product .product-body .product-btns > button .tooltipp {
        position: absolute;
        bottom: 100%;
        left: 50%;
        -webkit-transform: translate(-50%, -15px);
        -ms-transform: translate(-50%, -15px);
        transform: translate(-50%, -15px);
        width: 150px;
        padding: 10px;
        font-size: 12px;
        line-height: 10px;
        background: #1e1f29;
        color: #FFF;
        text-transform: uppercase;
        z-index: 10;
        opacity: 0;
        visibility: hidden;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

    .product .product-body .product-btns > button:hover .tooltipp {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate(-50%, -5px);
        -ms-transform: translate(-50%, -5px);
        transform: translate(-50%, -5px);
    }

.product .add-to-cart {
    position: absolute;
    left: 1px;
    right: 1px;
    bottom: 1px;
    padding: 15px;
    background: #1e1f29;
    text-align: center;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
    z-index: 2;
}

.product:hover .add-to-cart {
    -webkit-transform: translateY(100%);
    -ms-transform: translateY(100%);
    transform: translateY(100%);
}

.product .add-to-cart .add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #4682B4;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.add-to-cart-btn {
    position: relative;
    border: 2px solid transparent;
    height: 40px;
    padding: 0 30px;
    background-color: #4682B4;
    color: #FFF;
    text-transform: uppercase;
    font-weight: 700;
    border-radius: 40px;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

.product .add-to-cart .add-to-cart-btn > i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #4682B4;
    opacity: 0;
    visibility: hidden;
}

.add-to-cart-btn > i {
    position: absolute;
    left: 0;
    top: 0;
    width: 40px;
    height: 40px;
    line-height: 38px;
    color: #4682B4;
    opacity: 0;
    visibility: hidden;
}

.product .add-to-cart .add-to-cart-btn:hover {
    background-color: #FFF;
    color: #4682B4;
    border-color: #4682B4;
    padding: 0px 30px 0px 50px;
}

.add-to-cart-btn:hover {
    background-color: #FFF;
    color: #4682B4;
    border-color: #4682B4;
    padding: 0px 30px 0px 50px;
}

.product .add-to-cart .add-to-cart-btn:hover > i {
    opacity: 1;
    visibility: visible;
}

.add-to-cart-btn:hover > i {
    opacity: 1;
    visibility: visible;
}

/*----------------------------*\
	Widget product
\*----------------------------*/

.product-widget {
    position: relative;
}

    .product-widget + .product-widget {
        margin: 30px 0px;
    }

    .product-widget .product-img {
        position: absolute;
        left: 0px;
        top: 0px;
        width: 60px;
    }

        .product-widget .product-img > img {
            width: 100%;
        }

    .product-widget .product-body {
        padding-left: 75px;
        min-height: 60px;
    }

        .product-widget .product-body .product-category {
            text-transform: uppercase;
            font-size: 10px;
            color: #8D99AE;
        }

        .product-widget .product-body .product-name {
            text-transform: uppercase;
            font-size: 12px;
        }

            .product-widget .product-body .product-name > a {
                font-weight: 700;
            }

                .product-widget .product-body .product-name > a:hover, .product-widget .product-body .product-name > a:focus {
                    color: #4682B4;
                }

        .product-widget .product-body .product-price {
            font-size: 14px;
            color: #4682B4;
        }

            .product-widget .product-body .product-price .product-old-price {
                font-size: 70%;
                font-weight: 400;
                color: #8D99AE;
            }

            .product-widget .product-body .product-price .qty {
                font-weight: 400;
                margin-right: 10px;
            }

    .product-widget .delete {
        position: absolute;
        top: 0;
        left: 0;
        height: 14px;
        width: 14px;
        text-align: center;
        font-size: 10px;
        padding: 0;
        background: #1e1f29;
        border: none;
        color: #FFF;
    }

/*----------------------------*\
	Products slick
\*----------------------------*/

.products-slick .slick-list {
    padding-bottom: 60px;
    margin-bottom: -60px;
    z-index: 2;
}

.products-slick .product.slick-slide {
    margin: 15px;
}

.products-tabs > .tab-pane {
    display: block;
    height: 0;
    opacity: 0;
    visibility: hidden;
    overflow-y: hidden;
    padding-bottom: 60px;
    margin-bottom: -60px;
}

    .products-tabs > .tab-pane.active {
        opacity: 1;
        visibility: visible;
        height: auto;
    }

.products-slick-nav {
    position: absolute;
    right: 15px;
    z-index: 10;
}

    .products-slick-nav .slick-prev, .products-slick-nav .slick-next {
        position: static;
        -webkit-transform: none;
        -ms-transform: none;
        transform: none;
        width: 20px;
        color: red;
        height: 20px;
        display: inline-block !important;
        margin: 0px 2px;
    }

        .products-slick-nav .slick-prev:before, .products-slick-nav .slick-next:before {
            font-size: 14px;
        }

/*=========================================================
	07 -> PRODUCTS PAGE
===========================================================*/

/*----------------------------*\
	Aside
\*----------------------------*/

.aside + .aside {
    margin-top: 30px;
}

.aside > .aside-title {
    text-transform: uppercase;
    font-size: 18px;
    margin: 15px 0px 30px;
}

/*-- checkbox Filter --*/

.checkbox-filter > div + div {
    margin-top: 10px;
}

.checkbox-filter .input-radio label, .checkbox-filter .input-checkbox label {
    font-size: 12px;
}

    .checkbox-filter .input-radio label small, .checkbox-filter .input-checkbox label small {
        color: #8D99AE;
    }


/*-- Price Filter --*/

#price-slider {
    margin-bottom: 15px;
}

.noUi-target {
    background-color: #FFF;
    -webkit-box-shadow: none;
    box-shadow: none;
    border: 1px solid #E4E7ED;
    border-radius: 0px;
}

.noUi-connect {
    background-color: #4682B4;
}

.noUi-horizontal {
    height: 6px;
}

    .noUi-horizontal .noUi-handle {
        width: 12px;
        height: 12px;
        left: -6px;
        top: -4px;
        border: none;
        background: #4682B4;
        -webkit-box-shadow: none;
        box-shadow: none;
        border-radius: 50%;
    }

.noUi-handle:before, .noUi-handle:after {
    display: none;
}

.price-filter .input-number {
    display: inline-block;
    width: calc(50% - 7px);
}
/*----------------------------*\
	Store
\*----------------------------*/

.store-filter {
    margin-bottom: 15px;
    margin-top: 15px;
}

/*-- Store Sort --*/

.store-sort {
    display: inline-block;
}

    .store-sort label {
        font-weight: 500;
        font-size: 12px;
        text-transform: uppercase;
        margin-right: 15px;
    }

/*-- Store Grid --*/

.store-grid {
    float: right;
}

    .store-grid li {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        background-color: #FFF;
        border: 1px solid #E4E7ED;
        text-align: center;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .store-grid li + li {
            margin-left: 5px;
        }

        .store-grid li:hover {
            background-color: #E4E7ED;
            color: #4682B4;
        }

        .store-grid li.active {
            background-color: #4682B4;
            border-color: #4682B4;
            color: #FFF;
            cursor: default;
        }

        .store-grid li a {
            display: block;
        }

/*-- Store Pagination --*/

.store-pagination {
    float: right;
}

    .store-pagination li {
        display: inline-block;
        width: 40px;
        height: 40px;
        line-height: 40px;
        text-align: center;
        background-color: #FFF;
        border: 1px solid #E4E7ED;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .store-pagination li + li {
            margin-left: 5px;
        }

        .store-pagination li:hover {
            background-color: #E4E7ED;
            color: #4682B4;
        }

        .store-pagination li.active {
            background-color: #4682B4;
            border-color: #4682B4;
            color: #FFF;
            font-weight: 500;
            cursor: default;
        }

        .store-pagination li a {
            display: block;
        }

.store-qty {
    margin-right: 30px;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 12px;
}

/*=========================================================
	08 -> PRODUCT DETAILS PAGE
===========================================================*/

/*----------------------------*\
	Product view
\*----------------------------*/

#product-main-img .slick-prev {
    -webkit-transform: translateX(-15px);
    -ms-transform: translateX(-15px);
    transform: translateX(-15px);
    left: 15px;
}

#product-main-img .slick-next {
    -webkit-transform: translateX(15px);
    -ms-transform: translateX(15px);
    transform: translateX(15px);
    right: 15px;
}

#product-main-img .slick-prev, #product-main-img .slick-next {
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

#product-main-img:hover .slick-prev, #product-main-img:hover .slick-next {
    -webkit-transform: translateX(0%);
    -ms-transform: translateX(0%);
    transform: translateX(0%);
    opacity: 1;
    visibility: visible;
}

#product-main-img .zoomImg {
    background-color: #FFF;
}

#product-imgs .product-preview {
    margin: 0px 5px;
    border: 1px solid #E4E7ED;
}

    #product-imgs .product-preview.slick-current {
        border-color: #4682B4;
    }

#product-imgs .slick-prev {
    top: -20px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-next {
    top: calc(100% - 20px);
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}

#product-imgs .slick-prev:before {
    content: "\f106";
}

#product-imgs .slick-next:before {
    content: "\f107";
}

.product-preview img {
    width: 100%;
}

/*----------------------------*\
	Product details
\*----------------------------*/

.product-details .product-name {
    text-transform: uppercase;
    font-size: 18px;
}

.product-details .product-rating {
    display: inline-block;
    margin-right: 15px;
}

    .product-details .product-rating > i {
        color: #E4E7ED;
    }

        .product-details .product-rating > i.fa-star {
            color: #4682B4;
        }

.product-details .review-link {
    font-size: 12px;
}

.product-details .product-price {
    display: inline-block;
    font-size: 24px;
    margin-top: 10px;
    margin-bottom: 15px;
    color: #4682B4;
}

    .product-details .product-price .product-old-price {
        font-size: 70%;
        font-weight: 400;
        color: #8D99AE;
    }

.product-details .product-available {
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 700;
    margin-left: 30px;
    color: #4682B4;
}

.product-details .product-options {
    margin-top: 30px;
    margin-bottom: 30px;
}

    .product-details .product-options label {
        font-weight: 500;
        font-size: 12px;
        text-transform: uppercase;
        margin-right: 15px;
        margin-bottom: 0px;
    }

    .product-details .product-options .input-select {
        width: 90px;
    }

.product-details .add-to-cart {
    margin-bottom: 30px;
}

    .product-details .add-to-cart .add-to-cart-btn {
        position: relative;
        border: 2px solid transparent;
        height: 40px;
        padding: 0 30px;
        background-color: #4682B4;
        color: #FFF;
        text-transform: uppercase;
        font-weight: 700;
        border-radius: 40px;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .product-details .add-to-cart .add-to-cart-btn > i {
            position: absolute;
            left: 0;
            top: 0;
            width: 40px;
            height: 40px;
            line-height: 38px;
            color: #4682B4;
            opacity: 0;
            visibility: hidden;
        }

        .product-details .add-to-cart .add-to-cart-btn:hover {
            background-color: #FFF;
            color: #4682B4;
            border-color: #4682B4;
            padding: 0px 30px 0px 50px;
        }

            .product-details .add-to-cart .add-to-cart-btn:hover > i {
                opacity: 1;
                visibility: visible;
            }

    .product-details .add-to-cart .qty-label {
        display: inline-block;
        font-weight: 500;
        font-size: 12px;
        text-transform: uppercase;
        margin-right: 15px;
        margin-bottom: 0px;
    }

        .product-details .add-to-cart .qty-label .input-number {
            width: 90px;
            display: inline-block;
        }

.product-details .product-btns li {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
}

    .product-details .product-btns li + li {
        margin-left: 15px;
    }

.product-details .product-links {
    margin-top: 15px;
}

    .product-details .product-links li {
        display: inline-block;
        text-transform: uppercase;
        font-size: 12px;
    }

        .product-details .product-links li + li {
            margin-left: 10px;
        }

/*----------------------------*\
	 Product tab
\*----------------------------*/

#product-tab {
    margin-top: 60px;
}

    #product-tab .tab-nav {
        position: relative;
        text-align: center;
        padding: 15px 0px;
        margin-bottom: 30px;
    }

        #product-tab .tab-nav:after {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 50%;
            height: 1px;
            background-color: #E4E7ED;
            z-index: -1;
        }

        #product-tab .tab-nav li {
            display: inline-block;
            background: #FFF;
            padding: 0px 15px;
        }

            #product-tab .tab-nav li + li {
                margin-left: 15px;
            }

            #product-tab .tab-nav li a {
                display: block;
                font-weight: 700;
                color: #8D99AE;
            }

            #product-tab .tab-nav li.active a {
                color: #4682B4;
            }

            #product-tab .tab-nav li a:after {
                content: "";
                display: block;
                width: 0%;
                height: 2px;
                background-color: #4682B4;
                -webkit-transition: 0.2s all;
                transition: 0.2s all;
            }

            #product-tab .tab-nav li a:hover:after, #product-tab .tab-nav li a:focus:after, #product-tab .tab-nav li.active a:after {
                width: 100%;
            }

/*-- Rating --*/

.rating-avg {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

    .rating-avg .rating-stars {
        margin-left: 10px;
    }

    .rating-avg .rating-stars, .rating .rating-stars {
        display: inline-block;
    }

        .rating-avg .rating-stars > i, .rating .rating-stars > i {
            color: #E4E7ED;
        }

            .rating-avg .rating-stars > i.fa-star, .rating .rating-stars > i.fa-star {
                color: #4682B4;
            }

.rating li {
    margin: 5px 0px;
}

.rating .rating-progress {
    position: relative;
    display: inline-block;
    height: 9px;
    background-color: #E4E7ED;
    width: 120px;
    margin: 0px 10px;
    border-radius: 5px;
}

    .rating .rating-progress > div {
        background-color: #4682B4;
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        border-radius: 5px;
    }

.rating .sum {
    display: inline-block;
    font-size: 12px;
    color: #8D99AE;
}

/*-- Reviews --*/

.reviews li {
    position: relative;
    padding-left: 145px;
    margin-bottom: 30px;
}

.reviews .review-heading {
    position: absolute;
    width: 130px;
    left: 0;
    top: 0;
    height: 70px;
}

.reviews .review-body {
    min-height: 70px;
}

.reviews .review-heading .name {
    margin-bottom: 5px;
    margin-top: 0px;
}

.reviews .review-heading .date {
    color: #8D99AE;
    font-size: 10px;
    margin: 0;
}

.reviews .review-heading .review-rating {
    margin-top: 5px;
}

    .reviews .review-heading .review-rating > i {
        color: #E4E7ED;
    }

        .reviews .review-heading .review-rating > i.fa-star {
            color: #4682B4;
        }

.reviews-pagination {
    text-align: center;
}

    .reviews-pagination li {
        display: inline-block;
        width: 35px;
        height: 35px;
        line-height: 35px;
        text-align: center;
        background-color: #FFF;
        border: 1px solid #E4E7ED;
        -webkit-transition: 0.2s all;
        transition: 0.2s all;
    }

        .reviews-pagination li:hover {
            background-color: #E4E7ED;
            color: #4682B4;
        }

        .reviews-pagination li.active {
            background-color: #4682B4;
            border-color: #4682B4;
            color: #FFF;
            cursor: default;
        }

        .reviews-pagination li a {
            display: block;
        }

/*-- Review Form --*/

.review-form .input {
    margin-bottom: 15px;
}

.review-form .input-rating {
    margin-bottom: 15px;
}

    .review-form .input-rating .stars {
        display: inline-block;
        vertical-align: top;
    }

        .review-form .input-rating .stars input[type="radio"] {
            display: none;
        }

        .review-form .input-rating .stars > label {
            float: right;
            cursor: pointer;
            padding: 0px 3px;
            margin: 0px;
        }

            .review-form .input-rating .stars > label:before {
                content: "\f006";
                font-family: FontAwesome;
                color: #E4E7ED;
                -webkit-transition: 0.2s all;
                transition: 0.2s all;
            }

            .review-form .input-rating .stars > label:hover:before, .review-form .input-rating .stars > label:hover ~ label:before {
                color: #4682B4;
            }

        .review-form .input-rating .stars > input:checked label:before, .review-form .input-rating .stars > input:checked ~ label:before {
            content: "\f005";
            color: #4682B4;
        }

/*=========================================================
	09 -> CHECKOUT PAGE
===========================================================*/

.billing-details {
    margin-bottom: 30px;
}

.shiping-details {
    margin-bottom: 30px;
}

.order-details {
    position: relative;
    padding: 0px 30px 30px;
    border-right: 1px solid #E4E7ED;
    border-left: 1px solid #E4E7ED;
    border-bottom: 1px solid #E4E7ED;
}

    .order-details:before {
        content: "";
        position: absolute;
        left: -1px;
        right: -1px;
        top: -15px;
        height: 30px;
        border-top: 1px solid #E4E7ED;
        border-left: 1px solid #E4E7ED;
        border-right: 1px solid #E4E7ED;
    }

.order-summary {
    margin: 15px 0px;
}

    .order-summary .order-col {
        display: table;
        width: 100%;
    }

        .order-summary .order-col:after {
            content: "";
            display: block;
            clear: both;
        }

        .order-summary .order-col > div {
            display: table-cell;
            padding: 10px 0px;
        }

            .order-summary .order-col > div:first-child {
                width: calc(100% - 150px);
            }

            .order-summary .order-col > div:last-child {
                width: 150px;
                text-align: right;
            }

        .order-summary .order-col .order-total {
            font-size: 24px;
            color: #4682B4;
        }

.order-details .payment-method {
    margin: 30px 0px;
}

.order-details .order-submit {
    display: block;
    margin-top: 30px;
}

/*=========================================================
	10 -> NEWSLETTER
===========================================================*/

#newsletter.section {
    border-top: 2px solid #E4E7ED;
    border-bottom: 3px solid #4682B4;
    margin-top: 30px;
}

.newsletter {
    text-align: center;
}

    .newsletter p {
        font-size: 24px;
    }

    .newsletter form {
        position: relative;
        max-width: 520px;
        margin: 30px auto;
    }

        .newsletter form:after {
            content: "\f003";
            font-family: FontAwesome;
            position: absolute;
            font-size: 160px;
            color: #E4E7ED;
            top: 15px;
            -webkit-transform: translateY(-50%) rotate(15deg);
            -ms-transform: translateY(-50%) rotate(15deg);
            transform: translateY(-50%) rotate(15deg);
            z-index: -1;
            left: -90px;
        }

        .newsletter form .input {
            width: calc(100% - 160px);
            margin-right: -4px;
            border-radius: 40px 0px 0px 40px;
        }

        .newsletter form .newsletter-btn {
            width: 160px;
            height: 40px;
            font-weight: 700;
            background: #4682B4;
            color: #FFF;
            border: none;
            border-radius: 0px 40px 40px 0px;
        }

    .newsletter .newsletter-follow {
        text-align: center;
    }

        .newsletter .newsletter-follow li {
            display: inline-block;
            margin-right: 5px;
        }

            .newsletter .newsletter-follow li:last-child {
                margin-right: 0px;
            }

            .newsletter .newsletter-follow li a {
                position: relative;
                display: block;
                width: 40px;
                height: 40px;
                text-align: center;
                line-height: 40px;
                border: 1px solid #E4E7ED;
                background-color: #FFF;
                -webkit-transition: 0.2s all;
                transition: 0.2s all;
            }

                .newsletter .newsletter-follow li a:hover, .newsletter .newsletter-follow li a:focus {
                    background-color: #E4E7ED;
                    color: #4682B4;
                }

/*=========================================================
	11 -> RODAPÉ
===========================================================*/

/* CAIXA MAIOR DO RODAPÉ*/
#footer {
    background: #15161D;
    color: #B9BABC;
    position: absolute;
    left: 0;
    right: 0;
}

.footer {
    margin: 30px 0px;
    width: 100%;
}

    .footer .footer-title {
        color: #FFF;
        text-transform: uppercase;
        font-size: 18px;
        margin: 0px 0px 30px;
        width: 100%;
    }

.footer-links li + li {
    margin-top: 15px;
}

.footer-links li a {
    color: #B9BABC;
}

.footer-links li i {
    margin-right: 15px;
    color: #4682B4;
    width: 14px;
    text-align: center;
}

.footer-links li a:hover {
    color: #4682B4;
}

.copyright {
    margin-top: 30px;
    display: block;
    font-size: 12px;
    width: 100%;
}

.footer-payments li {
    display: inline-block;
    margin-right: 5px;
}

    .footer-payments li a {
        color: #15161D;
        font-size: 36px;
        display: block;
    }

/*=========================================================
	12 -> SLICK STYLE
===========================================================*/

/*----------------------------*\
	Arrows
\*----------------------------*/

.slick-prev, .slick-next {
    width: 40px;
    height: 40px;
    border: 1px solid #E4E7ED;
    background-color: #FFF;
    border-radius: 50%;
    z-index: 22;
    -webkit-transition: 0.2s all;
    transition: 0.2s all;
}

    .slick-prev:hover, .slick-prev:focus, .slick-next:hover, .slick-next:focus {
        background-color: #4682B4;
        border-color: #4682B4;
    }

    .slick-prev:before, .slick-next:before {
        font-family: FontAwesome;
        color: #2B2D42;
    }

    .slick-prev:before {
        content: "\f104";
    }

    .slick-next:before {
        content: "\f105";
    }

    .slick-prev:hover:before, .slick-prev:focus:before, .slick-next:hover:before, .slick-next:focus:before {
        color: #FFF;
    }

.slick-prev {
    left: -20px;
}

.slick-next {
    right: -20px;
}

/*----------------------------*\
	Dots
\*----------------------------*/

.slick-dots li, .slick-dots li button, .slick-dots li button:before {
    width: 10px;
    height: 10px;
}

    .slick-dots li button:before {
        content: "";
        opacity: 1;
        background: #E4E7ED;
        border-radius: 50%;
    }

    .slick-dots li.slick-active button:before {
        background-color: #4682B4;
    }

.custom-dots .slick-dots {
    position: static;
    margin: 15px 0px;
}

/*=========================================================
	13 -> RESPONSIVE
===========================================================*/

@media only screen and (max-width: 1201px) {
}

@media only screen and (max-width: 991px) {
    #top-header .header-links.pull-left {
        float: none !important;
    }

    #top-header .header-links.pull-right {
        float: none !important;
        margin-top: 5px;
    }

    .header-logo {
        float: none;
        text-align: center;
    }

        .header-logo .logo {
            display: inline-block;
        }

    #product-imgs {
        margin-bottom: 60px;
        margin-top: 15px;
    }

    #rating {
        text-align: center;
    }

    #pesquisa {
        display: none !important;
    }

    #reviews {
        margin-top: 30px;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 767px) {
    .section-title .section-nav {
        float: none;
        margin-top: 10px;
    }

    #pesquisa {
        display: none !important;
    }

    .section-tab-nav li {
        margin-top: 10px;
    }
}

#map-box {
    width: 1100px;
    height: 600px;
}

@media only screen and (max-width: 480px) {
    [class*='col-xs'] {
        width: 100%;
    }

    #top-header {
        display: none !important;
    }

    #map-box {
        width: 350px;
        height: 350px;
    }

    #pesquisa {
        display: none !important;
    }

    .store-grid {
        float: none;
        margin-top: 10px;
    }

    .store-pagination {
        float: none;
        margin-top: 10px;
    }
}

.product-description {
    transform: translate3d(0, 0, 0);
    transform-style: preserve-3d;
    perspective: 1000;
    backface-visibility: hidden;
}


img {
    max-width: 100%;
}

hr {
    border-color: #e5e5e5;
    margin: 15px 0;
}

.secondary-text {
    color: #b6b6b6;
}

.list-inline {
    margin: 0;
}

    .list-inline li {
        padding: 0;
    }

.card-wrapper {
    position: relative;
    width: 100%;
    height: 390px;
    border: 1px solid #e5e5e5;
    border-bottom-width: 2px;
    overflow: hidden;
    margin-bottom: 30px;
}

    .card-wrapper:after {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
        transition: opacity 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .card-wrapper:hover:after {
        opacity: 1;
    }

    .card-wrapper:hover .image-holder:before {
        opacity: .75;
    }

    .card-wrapper:hover .image-holder:after {
        opacity: 1;
        transform: translate(-50%, -50%);
    }

    .card-wrapper:hover .image-holder--original {
        transform: translateY(-15px);
    }

    .card-wrapper:hover .product-description {
        height: 205px;
    }

@media (min-width: 768px) {
    .card-wrapper:hover .product-description {
        height: 185px;
    }
}

.image-holder {
    display: block;
    position: relative;
    width: 100%;
    height: 310px;
    background-color: #ffffff;
    z-index: 1;
}

@media (min-width: 768px) {
    .image-holder {
        height: 325px;
    }
}

.image-holder:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #4682B4;
    opacity: 0;
    z-index: 5;
    transition: opacity 0.6s;
}

.image-holder:after {
    content: '';
    font-family: 'Raleway', sans-serif;
    font-size: 70px;
    color: #4682B4;
    text-align: center;
    position: absolute;
    top: 92.5px;
    left: 50%;
    width: 75px;
    height: 75px;
    line-height: 75px;
    background-color: #ffffff;
    opacity: 0;
    border-radius: 50%;
    z-index: 10;
    transform: translate(-50%, 100%);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease-out;
}

@media (min-width: 768px) {
    .image-holder:after {
        top: 107.5px;
    }
}

.image-holder .image-holder__link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15;
}

.image-holder .image-holder--original {
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.image-liquid {
    width: 100%;
    height: 325px;
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

.product-description {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 80px;
    padding: 10px 15px;
    overflow: hidden;
    background-color: #fafafa;
    border-top: 1px solid #e5e5e5;
    transition: height 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2;
}

@media (min-width: 768px) {
    .product-description {
        height: 65px;
    }
}

.product-description p {
    margin: 0 0 5px;
}

.product-description .product-description__title {
    font-family: 'Raleway', sans-serif;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    margin: 0;
    font-size: 18px;
    line-height: 1.25;
}

    .product-description .product-description__title:after {
        content: '';
        width: 60px;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        background: linear-gradient(to right, rgba(255, 255, 255, 0), #fafafa);
    }

    .product-description .product-description__title a {
        text-decoration: none;
        color: inherit;
    }

.product-description .product-description__category {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-description .product-description__price {
    color: #4682B4;
    text-align: left;
    font-weight: bold;
    letter-spacing: 0.06em;
}

@media (min-width: 768px) {
    .product-description .product-description__price {
        text-align: right;
    }
}

.product-description .sizes-wrapper {
    margin-bottom: 15px;
}

.product-description .color-list {
    font-size: 0;
}

.product-description .color-list__item {
    width: 25px;
    height: 10px;
    position: relative;
    z-index: 1;
    transition: all .2s;
}

    .product-description .color-list__item:hover {
        width: 40px;
    }

.product-description .color-list__item--red {
    background-color: #F44336;
}

.product-description .color-list__item--blue {
    background-color: #448AFF;
}

.product-description .color-list__item--green {
    background-color: #CDDC39;
}

.product-description .color-list__item--orange {
    background-color: #FF9800;
}

.product-description .color-list__item--purple {
    background-color: #673AB7;
}

.tree {
    margin: 50;
    padding: 50;
}

    .tree ul {
        padding-top: 20px;
        position: relative;
        -transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

    .tree li {
        float: left;
        text-align: center;
        list-style-type: none;
        position: relative;
        padding: 20px 5px 0 5px;
        -transition: all 0.5s;
        -webkit-transition: all 0.5s;
        -moz-transition: all 0.5s;
    }

.scrollspy-example {
    height: 360px;
}

.tree li::before, .tree li::after {
    content: '';
    position: absolute;
    top: 0;
    right: 50%;
    border-top: 2px solid #696969;
    width: 50%;
    height: 20px;
}

.tree li::after {
    right: auto;
    left: 50%;
    border-left: 2px solid #696969;
}

.tree li:only-child::after, .tree li:only-child::before {
    display: none;
}

.tree li:only-child {
    padding-top: 0;
}

.tree li:first-child::before, .tree li:last-child::after {
    border: 0 none;
}

.tree li:last-child::before {
    border-right: 2px solid #696969;
    border-radius: 0 5px 0 0;
    -webkit-border-radius: 0 5px 0 0;
    -moz-border-radius: 0 5px 0 0;
}

.tree li:first-child::after {
    border-radius: 5px 0 0 0;
    -webkit-border-radius: 5px 0 0 0;
    -moz-border-radius: 5px 0 0 0;
}

.tree ul ul::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    border-left: 2px solid #696969;
    width: 0;
    height: 20px;
}

/* CAIXA DO ORGANOGRAMA */
.tree li a {
    height: 200px;
    width: 200px;
    padding: 5px 10px;
    background-color: white;
    color: #8b8b8b;
    font-family: Arial;
    font-size: 11px;
    display: inline-block;
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
    -transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
}

    /*Time for some hover effects*/
    /*We will apply the hover effect the the lineage of the element also*/
    .tree li a:hover, .tree li a:hover + ul li a {
        background: #cbcbcb;
        color: #000;
    }
        /*Connector styles on hover*/
        .tree li a:hover + ul li::after,
        .tree li a:hover + ul li::before,
        .tree li a:hover + ul::before,
        .tree li a:hover + ul ul::before {
            border-color: #94a0b4;
        }

td {
    align: left;
    text-align: justify;
}

.org {
    font-family: Arial;
    font-size: 13px;
    color: #000000;
    text-align: center;
    padding-top: 17%;
}


body {
    background-color: #f5f5f5;
    color: #4e4e4e;
    overflow-x: hidden;
}





h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: Formula1-Regular;
    color: #1e1e1e;
}






.p-r {
    position: relative;
}



.color-a {
    color: #4682B4;
}



.color-d {
    color: #f5f5f5;
}



.color-text-a {
    color: #4e4e4e;
}



.box-shadow,
.paralax-mf,
.service-box,
.work-box,
.card-blog {
    box-shadow: 0 13px 8px -10px rgba(0, 0, 0, 0.1);
}



.box-shadow-a,
.button:hover {
    box-shadow: 0 0 0 4px #cde1f8;
}



.display-5 {
    font-size: 2.5rem;
    font-weight: 300;
    line-height: 1.1;
}



.display-6 {
    font-size: 2rem;
    font-weight: 300;
    line-height: 1.1;
}



.avatar {
    width: 32px;
    height: 32px;
    margin-right: 4px;
    overflow: hidden;
}



.bg-image {
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-position: center center;
}



.overlay-mf {
    background-color: #4682B4;
}



.overlay-mf {
    position: absolute;
    top: 0;
    left: 0px;
    padding: 0;
    height: 100%;
    width: 100%;
    opacity: .7;
}



.paralax-mf {
    position: relative;
    padding: 8rem 0;
}



.display-table {
    width: 100%;
    height: 100%;
    display: table;
}



.table-cell {
    display: table-cell;
    vertical-align: middle;
}




/*--/ SEÇÕES /--*/



.sect-4 {
    padding: 4rem 0;
}



.sect-pt4 {
    padding-top: 4rem;
}



.sect-mt4 {
    margin-top: 4rem;
}




/*--/ Title s /--*/



.title-s {
    font-weight: 600;
    color: #1e1e1e;
    font-size: 1.1rem;
}

.title-box {
    margin-bottom: 4rem;
}



.title-a {
    font-size: 3rem;
    font-weight: bold;
    text-transform: uppercase;
}


subtitle-a {
    color: #4e4e4e;
}



.line-mf {
    width: 40px;
    height: 5px;
    background-color: #4682B4;
    margin: 0 auto;
}



/*--/ Title Left /--*/


.title-box-2 {
    margin-bottom: 3rem;
}


.title-left {
    font-size: 2rem;
    position: relative;
}


    .title-left:before {
        content: '';
        position: absolute;
        height: 3px;
        background-color: #4682B4;
        width: 100px;
        bottom: -12px;
    }



/*------/ Box /------*/


.box-pl2 {
    padding-left: 2rem;
}


.box-shadow-full {
    padding: 3rem 1.25rem;
    position: relative;
    background-color: #fff;
    margin-bottom: 3rem;
    z-index: 2;
    box-shadow: 0 1px 1px 0 rgba(0, 0, 0, 0.06), 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}

/*------/ Socials /------*/

.socials {
    padding: 1.5rem 0;
}

    .socials ul li {
        display: inline-block;
    }

    .socials .ico-circle {
        height: 40px;
        width: 40px;
        font-size: 1.7rem;
        border-radius: 50%;
        line-height: 1.4;
        margin: 0 15px 0 0;
        box-shadow: 0 0 0 3px #4682B4;
        transition: all 500ms ease;
    }

        .socials .ico-circle:hover {
            background-color: #4682B4;
            color: #fff;
            box-shadow: 0 0 0 3px #cde1f8;
            transition: all 500ms ease;
        }

    /*------/ Ul resect /------*/

    .ul-resect,
    .socials ul,
    .list-ico,
    .blog-wrapper .post-meta ul,
    .box-comments .list-comments,
    .widget-sidebar .list-sidebar,
    .widget-tags ul {
        list-style: none;
        padding-left: 0;
        margin-bottom: 0;
    }

.list-ico {
    line-height: 2;
}

    .list-ico span {
        color: #4682B4;
        margin-right: 10px;
    }

/*------/ Ico Circle /------*/

.ico-circle {
    height: 100px;
    width: 100px;
    font-size: 2rem;
    border-radius: 50%;
    line-height: 1.55;
    margin: 0 auto;
    text-align: center;
    box-shadow: 0 0 0 10px #4682B4;
    display: block;
}

/*------/ Owl Carousel /------*/

.owl-theme .owl-dots {
    text-align: center;
    margin-top: 18px;
}

    .owl-theme .owl-dots .owl-dot {
        display: inline-block;
    }

        .owl-theme .owl-dots .owl-dot span {
            width: 18px;
            height: 7px;
            margin: 5px 5px;
            background: #cde1f8;
            border: 0px solid #cde1f8;
            display: block;
            transition: all 0.6s ease-in-out;
            cursor: pointer;
        }

        .owl-theme .owl-dots .owl-dot:hover span {
            background-color: #cde1f8;
        }

        .owl-theme .owl-dots .owl-dot.active span {
            background-color: #1B1B1B;
            width: 25px;
        }

/*--/ Scrolltop s /--*/

.scrolltop-mf {
    position: relative;
    display: none;
}

    .scrolltop-mf span {
        z-index: 999;
        position: fixed;
        width: 42px;
        height: 42px;
        background-color: #4682B4;
        opacity: .7;
        font-size: 1.6rem;
        line-height: 1.5;
        text-align: center;
        color: #fff;
        top: auto;
        left: auto;
        right: 30px;
        bottom: 50px;
        cursor: pointer;
        border-radius: 50%;
    }

/* Back to top button */

.back-to-top {
    position: fixed;
    display: none;
    background: #4682B4;
    color: #fff;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 16px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

    .back-to-top i {
        padding-top: 12px;
        color: #fff;
    }

/* Prelaoder */

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    overflow: hidden;
    background: #fff;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #f2f2f2;
        border-top: 6px solid #4682B4;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        -webkit-animation: animate-preloader 1s linear infinite;
        animation: animate-preloader 1s linear infinite;
    }

@-webkit-keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes animate-preloader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}


/*======================================
//--//-->   INTRO
======================================*/


.intro {
    height: 100vh;
    position: relative;
    color: #fff;
}


    .intro .intro-content {
        text-align: center;
        position: absolute;
    }


    .intro .overlay-itro {
        background-color: rgba(0, 0, 0, 0.6);
        position: absolute;
        top: 0;
        left: 0px;
        padding: 0;
        height: 100%;
        width: 100%;
        opacity: .9;
    }


    .intro .intro-title {
        color: #fff;
        font-weight: 600;
        font-size: 3rem;
    }

    .intro .intro-subtitle {
        font-size: 1.5rem;
        font-weight: 300;
    }

    .intro .text-slider-items {
        display: none;
    }

.intro-single {
    height: 400px;
}

    .intro-single .intro-content {
        margin-top: 30px;
    }

    .intro-single .intro-title {
        text-transform: uppercase;
        font-size: 3rem;
    }

    .intro-single .breadcrumb {
        background-color: transparent;
        color: #4682B4;
    }

        .intro-single .breadcrumb .breadcrumb-item:before {
            color: #cde1f8;
        }

        .intro-single .breadcrumb .breadcrumb-item.active {
            color: #cde1f8;
        }

        .intro-single .breadcrumb a {
            color: #fff;
        }

/*======================================
//--//-->   ABOUT
======================================*/



.about-mf .box-shadow-full {
    padding-top: 4rem;
    padding-bottom: 4rem;
}


.about-mf .about-img {
    margin-bottom: 2rem;
}


    .about-mf .about-img img {
        margin-left: 10px;
    }


.skill-mf span {
    color: #4e4e4e;
}


.skill-mf .progress {
    background-color: #cde1f8;
    margin: .5rem 0 1.2rem 0;
    border-radius: 0;
    height: .7rem;
}


    .skill-mf .progress .progress-bar {
        height: .50rem;
        background-color: #4682B4;
    }



/*======================================


//--//-->   SERVICES
======================================*/

.service-box {
    background-color: #fff;
    padding: 2.5rem 1.3rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

    .service-box:hover .ico-circle {
        transition: all 500ms ease;
        color: #fff;
        background-color: #4682B4;
        box-shadow: 0 0 0 10px #cde1f8;
    }

    .service-box .service-ico {
        margin-bottom: 1rem;
        color: #1e1e1e;
    }

    .service-box .ico-circle {
        transition: all 500ms ease;
        font-size: 4rem;
    }

    .service-box .s-title {
        font-size: 1.4rem;
        text-transform: uppercase;
        text-align: center;
        padding: .4rem 0;
    }

    .service-box .s-description {
        color: #4e4e4e;
    }

/*======================================
//--//-->   COUNTER
======================================*/

.counter-box {
    color: #fff;
    text-align: center;
}

.counter-ico {
    margin-bottom: 1rem;
}

    .counter-ico .ico-circle {
        height: 60px;
        width: 60px;
        line-height: 1.8;
        box-shadow: 0 0 0 10px #cde1f8;
    }

.counter-num .counter {
    font-size: 2rem;
    margin-bottom: 0;
}

/*======================================
//--//-->   PORTFOLIO
======================================*/

.work-box {
    margin-bottom: 3rem;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background-color: #fff;
}

    .work-box:hover img {
        -webkit-transform: scale(1.3);
        transform: scale(1.3);
    }

.work-img {
    display: block;
    overflow: hidden;
}

    .work-img img {
        transition: all 1s;
    }

.work-content {
    padding: 2rem 3% 1rem 4%;
}

    .work-content .w-more {
        color: #4e4e4e;
        font-size: .8rem;
    }

        .work-content .w-more .w-ctegory {
            color: #4682B4;
        }

    .work-content .w-like {
        font-size: 2.5rem;
        color: #4682B4;
        float: right;
    }

        .work-content .w-like a {
            color: #4682B4;
        }

        .work-content .w-like .num-like {
            font-size: .7rem;
        }

.w-title {
    font-size: 1.2rem;
}

/*======================================
//--//-->   TESTIMONIALS
======================================*/

.testimonials .owl-carousel .owl-item img {
    width: 15%;
}

.testimonial-box {
    color: #fff;
    text-align: center;
}

    .testimonial-box .author-test {
        margin-top: 1rem;
    }

        .testimonial-box .author-test img {
            margin: 0 auto;
        }

    .testimonial-box .author {
        color: #fff;
        text-transform: uppercase;
        font-weight: 600;
        margin: 1rem 0;
        display: block;
        font-size: 1.4rem;
    }

    .testimonial-box .comit {
        font-size: 2rem;
        color: #4682B4;
        background-color: #fff;
        width: 52px;
        height: 52px;
        display: block;
        margin: 0 auto;
        border-radius: 50%;
        line-height: 1.6;
    }

/*======================================
//--//-->   BLOG
======================================*/

.card-blog .card-body {
    position: relative;
}

.card-blog .card-category-box {
    position: absolute;
    text-align: center;
    top: -16px;
    left: 15px;
    right: 15px;
    line-height: 25px;
    overflow: hidden;
}

.card-blog .card-category {
    display: inline-block;
    color: #fff;
    padding: 0 15px 5px;
    overflow: hidden;
    background-color: #4682B4;
    border-radius: 4px;
}

    .card-blog .card-category .category {
        color: #fff;
        display: inline-block;
        text-transform: uppercase;
        font-size: .7rem;
        letter-spacing: .1px;
        margin-bottom: 0;
    }

.card-blog .card-title {
    font-size: 1.3rem;
    margin-top: .6rem;
}

.card-blog .card-description {
    color: #4e4e4e;
}

.card-blog .post-author {
    display: inline-block;
}

.card-blog .post-date {
    color: #4e4e4e;
    display: inline-block;
    float: right;
}

/*======================================
//--//-->   BLOG-SINGLE
======================================*/

.post-box,
.form-comments,
.box-comments,
.widget-sidebar {
    padding: 2rem;
    background-color: #fff;
    margin-bottom: 3rem;
}

.blog-wrapper .article-title {
    font-size: 1.5rem;
}

.blog-wrapper .post-meta {
    margin: 1rem 0;
}

    .blog-wrapper .post-meta ul {
        border-left: 4px solid #4682B4;
        margin-top: 1rem;
    }

        .blog-wrapper .post-meta ul li {
            display: inline-block;
            margin-left: 15px;
        }

        .blog-wrapper .post-meta ul a {
            color: #4682B4;
        }

        .blog-wrapper .post-meta ul span {
            color: #1e1e1e;
        }

.blog-wrapper .blockquote {
    border-left: 4px solid #4682B4;
    padding: 18px;
    font-style: italic;
}

/*------/ Comments /------*/

.box-comments .list-comments li {
    padding-bottom: 40px;
}

.box-comments .list-comments .comment-avatar {
    display: table-cell;
    vertical-align: top;
}

    .box-comments .list-comments .comment-avatar img {
        width: 80px;
        height: 80px;
    }

.box-comments .list-comments .comment-author {
    font-size: 1.3rem;
}

.box-comments .list-comments .comment-details {
    display: table-cell;
    vertical-align: top;
    padding-left: 25px;
}

.box-comments .list-comments a {
    color: #4682B4;
}

.box-comments .list-comments span {
    color: #1e1e1e;
    font-style: italic;
}

.box-comments .comment-children {
    margin-left: 40px;
}

/*------/ Sidebar /------*/

.widget-sidebar .sidebar-title {
    font-size: 1.6rem;
    font-weight: 600;
    border-left: 5px solid #4682B4;
    padding-left: 15px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.widget-sidebar .list-sidebar li {
    position: relative;
    padding: 6px 0 6px 24px;
}

    .widget-sidebar .list-sidebar li:before {
        position: absolute;
        content: "";
        width: 10px;
        height: 1px;
        left: 0;
        background-color: #4682B4;
        top: 20px;
    }

.sidebar-search input {
    background-color: #fff;
    border-radius: 0;
    transition: all 0.5s ease-in-out;
}

.sidebar-search .btn-search {
    background-color: #4682B4;
    border-color: #4682B4;
    border-radius: 0;
    padding-left: 20px;
    padding-right: 20px;
}

.widget-tags ul li {
    display: inline-block;
    background-color: #4682B4;
    padding: .2rem .6rem;
    margin-bottom: .5rem;
    border-radius: 15px;
}

    .widget-tags ul li a {
        color: #fff;
    }

/*======================================
//--//-->   CONTACT
======================================*/

.footer-paralax {
    padding: 4rem 0 0 0;
}

.contact-mf {
    margin-top: 4rem;
}

/*======================================
//--//-->   FOOTER
======================================*/

footer {
    text-align: center;
    color: #fff;
    padding-bottom: 4rem;
}

    footer .copyright {
        margin-bottom: .3rem;
    }

    footer .credits {
        margin-bottom: 0;
    }

        footer .credits a {
            color: #fff;
        }

/*======================================
//--//-->   CONtaCT FORM
======================================*/

#sendmessage {
    color: #4682B4;
    border: 1px solid #4682B4;
    display: none;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

#errormessage {
    color: red;
    display: none;
    border: 1px solid red;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    margin-bottom: 15px;
}

    #sendmessage.show,
    #errormessage.show,
    .show {
        display: block;
    }

.validation {
    color: red;
    display: none;
    margin: 0 0 20px;
    font-weight: 400;
    font-size: 13px;
}

/*======================================
//--//-->   BUTTON
======================================*/

.button {
    display: inline-block;
    padding: .3rem .6rem;
    text-align: center;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-size: 1rem;
    border-radius: .3rem;
    border: 1px solid transparent;
    transition: all 500ms ease;
    cursor: pointer;
}

    .button:focus {
        outline: 0;
    }

    .button:hover {
        color: #fff;
        transition: all 500ms ease;
    }

.button-a {
    background-color: #4682B4;
    color: #fff;
    border-color: #cde1f8;
}

.button-big {
    padding: .9rem 2.3rem;
    font-size: 1.2rem;
}

.button-rouded {
    border-radius: 5rem;
}

.btn-lg {
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem;
}

@media (min-width: 577px) {
    .counter-box {
        margin-bottom: 1.8rem;
    }
}

@media (min-width: 767px) {
    .about-mf .box-pl2 {
        margin-top: 3rem;
        padding-left: 0rem;
    }

    .card-blog {
        margin-bottom: 3rem;
    }

    .contact-mf .box-pl2 {
        margin-top: 3rem;
        padding-left: 0rem;
    }
}

@media (min-width: 768px) {
    .box-shadow-full {
        padding: 3rem;
    }

    .navbar-b.navbar-trans .nav-item,
    .navbar-b.navbar-reduce .nav-item {
        padding-left: 10px;
    }

    .navbar-b.navbar-trans .nav-link:before,
    .navbar-b.navbar-reduce .nav-link:before {
        margin-left: 18px;
    }

    .intro .intro-title {
        font-size: 4.5rem;
    }

    .intro .intro-subtitle {
        font-size: 2.5rem;
    }

    .intro-single .intro-title {
        font-size: 3.5rem;
    }

    .testimonial-box .description {
        padding: 0 5rem;
    }

    .post-box,
    .form-comments,
    .box-comments,
    .widget-sidebar {
        padding: 3rem;
    }

    .blog-wrapper .article-title {
        font-size: 1.9rem;
    }

    .box-comments .list-comments .comment-author {
        font-size: 1.5rem;
    }
}

@media (min-width: 992px) {
    .testimonial-box .description {
        padding: 0 8rem;
    }
}

@media (min-width: 1200px) {
    .testimonial-box .description {
        padding: 0 13rem;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 15px;
    }
}


@font-face {
    font-family: Formula1-Regular;
    src: url('Formula1-Regular.otf');
}

.form-control {
    box-shadow: none;
    border-color: #ddd;
}

    .form-control:focus {
        border-color: #4aba70;
    }

.login-form {
    width: 350px;
    margin: 0 auto;
    padding: 30px 0;
}

    .login-form form {
        color: #434343;
        border-radius: 1px;
        margin-bottom: 15px;
        background: #fff;
        border: 1px solid #f3f3f3;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.3);
        padding: 30px;
    }

    .login-form h4 {
        text-align: center;
        font-size: 22px;
        margin-bottom: 20px;
    }

    .login-form .avatar {
        color: #fff;
        margin: 0 auto 30px;
        text-align: center;
        width: 100px;
        height: 100px;
        border-radius: 50%;
        z-index: 9;
        background: #4aba70;
        padding: 15px;
        box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.1);
    }

        .login-form .avatar i {
            font-size: 62px;
        }

    .login-form .form-group {
        margin-bottom: 20px;
    }

    .login-form .form-control, .login-form .btn {
        min-height: 40px;
        border-radius: 2px;
        transition: all 0.5s;
    }

    .login-form .close {
        position: absolute;
        top: 15px;
        right: 15px;
    }

    .login-form .btn {
        background: #4aba70;
        border: none;
        line-height: normal;
    }

        .login-form .btn:hover, .login-form .btn:focus {
            background: #42ae68;
        }

    .login-form .checkbox-inline {
        float: left;
    }

    .login-form input[type="checkbox"] {
        margin-top: 2px;
    }

    .login-form .forgot-link {
        float: right;
    }

    .login-form .small {
        font-size: 13px;
    }

    .login-form a {
        color: #4aba70;
    }

*[role="form"] {
    max-width: 530px;
    padding: 15px;
    margin: 0 auto;
    background-color: #fff;
    border-radius: 0.3em;
}

    *[role="form"] h2 {
        margin-left: 5em;
        margin-bottom: 1em;
    }


.preview {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media screen and (max-width: 996px) {
    .preview {
        margin-bottom: 20px;
    }
}

.preview-pic {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.preview-thumbnail.nav-tabs {
    border: none;
    margin-top: 15px;
}

    .preview-thumbnail.nav-tabs li {
        width: 18%;
        margin-right: 2.5%;
    }

        .preview-thumbnail.nav-tabs li img {
            max-width: 100%;
            display: block;
        }

        .preview-thumbnail.nav-tabs li a {
            padding: 0;
            margin: 0;
        }

        .preview-thumbnail.nav-tabs li:last-of-type {
            margin-right: 0;
        }

.tab-content {
    overflow: hidden;
}

    .tab-content img {
        width: 100%;
        -webkit-animation-name: opacity;
        animation-name: opacity;
        -webkit-animation-duration: .3s;
        animation-duration: .3s;
    }


@media screen and (min-width: 997px) {
    .wrapper {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.details {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.colors {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
}

.product-title, .price, .sizes, .colors {
    text-transform: UPPERCASE;
    font-weight: bold;
}

    .checked, .price span {
        color: #ff9f1a;
    }

.product-title, .rating, .product-description, .price, .vote, .sizes {
    margin-bottom: 15px;
}

.product-title {
    margin-top: 0;
}

.size {
    margin-right: 10px;
}

    .size:first-of-type {
        margin-left: 40px;
    }

.color {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    height: 2em;
    width: 2em;
    border-radius: 2px;
}

    .color:first-of-type {
        margin-left: 20px;
    }

.add-to-cart, .like {
    background: #4682B4;
    padding: 1.2em 1.5em;
    border: none;
    text-transform: UPPERCASE;
    font-weight: bold;
    color: #fff;
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
}

    .add-to-cart:hover, .like:hover {
        background: #4682B4;
        color: #fff;
    }

.not-available {
    text-align: center;
    line-height: 2em;
}

    .not-available:before {
        content: "\f00d";
        color: #fff;
    }


@-webkit-keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes opacity {
    0% {
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

.profile {
    margin: 20px 0;
}

.profile-sidebar {
    padding: 20px 0 10px 0;
    background: #fff;
}

.profile-userpic img {
    float: none;
    margin: 0 auto;
    width: 100%;
    height: 80px;
    -webkit-border-radius: 50% !important;
    -moz-border-radius: 50% !important;
    border-radius: 50% !important;
}

.profile-usertitle {
    text-align: center;
    margin-top: 20px;
}

.profile-usertitle-name {
    color: #5a7391;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 7px;
}

.profile-usertitle-job {
    text-transform: uppercase;
    color: #5b9bd1;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 15px;
}

.profile-userbuttons {
    text-align: center;
    margin-top: 10px;
}

    .profile-userbuttons .btn {
        text-transform: uppercase;
        font-size: 11px;
        font-weight: 600;
        padding: 6px 15px;
        margin-right: 5px;
    }

        .profile-userbuttons .btn:last-child {
            margin-right: 0px;
        }

.profile-usermenu {
    margin-top: 30px;
}

    .profile-usermenu ul li {
        border-bottom: 1px solid #f0f4f7;
    }

        .profile-usermenu ul li:last-child {
            border-bottom: none;
        }

        .profile-usermenu ul li a {
            color: #93a3b5;
            font-size: 14px;
            font-weight: 400;
        }

            .profile-usermenu ul li a i {
                margin-right: 8px;
                font-size: 14px;
            }

            .profile-usermenu ul li a:hover {
                background-color: #fafcfd;
                color: #5b9bd1;
            }

        .profile-usermenu ul li.active {
            border-bottom: none;
        }

            .profile-usermenu ul li.active a {
                color: #5b9bd1;
                background-color: #f6f9fb;
                border-left: 2px solid #5b9bd1;
                margin-left: -2px;
            }

.profile-content {
    padding: 20px;
    background: #fff;
    min-height: 460px;
}

#slider {
    width: 100%;
    height: 85vh;
}


.swiper-container {
    width: 100%;
    height: 100%;
}

.slide {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    font-size: 18px;
    background: #fff;
    overflow: hidden;
}

.overlay {
    position: fixed; /* Sit on top of the page content */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,5); /* Black background with opacity */
    z-index: 1; /* Specify a stack order in case you're using a different order for other elements */
}

.slide-image {
    position: absolute;
    top: -200px;
    left: -200px;
    width: calc(50% + 1000px);
    height: calc(50% + 700px);
    background-position: 50% 50%;
    background-size: cover;
    filter: blur(2px);
    -webkit-filter: blur(2px);
}

.slide-title {
    font-size: 4rem;
    line-height: 1;
    max-width: 50%;
    white-space: normal;
    word-break: break-word;
    color: #FFF;
    z-index: 100;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-weight: normal;
    text-shadow: 5px 5px 15px #000;
}

@media (min-width: 45em) {
    .slide-title {
        font-size: 7vw;
        max-width: none;
    }
}

.slide-title span {
    white-space: pre;
    display: inline-block;
    opacity: 0;
}

.slideshow {
    position: relative;
}

.slideshow-pagination {
    position: absolute;
    bottom: 5rem;
    left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition: .3s opacity;
    z-index: 10;
}

.slideshow-pagination-item {
    display: flex;
    align-items: center;
}

    .slideshow-pagination-item .pagination-number {
        opacity: 0.5;
    }

    .slideshow-pagination-item:hover, .slideshow-pagination-item:focus {
        cursor: pointer;
    }

    .slideshow-pagination-item:last-of-type .pagination-separator {
        width: 0;
    }

    .slideshow-pagination-item.active .pagination-number {
        opacity: 1;
    }

    .slideshow-pagination-item.active .pagination-separator {
        width: 10vw;
    }

.slideshow-navigation-button {
    position: absolute;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 5rem;
    z-index: 1000;
    transition: all .3s ease;
    color: #FFF;
}

    .slideshow-navigation-button:hover, .slideshow-navigation-button:focus {
        cursor: pointer;
        background: rgba(0, 0, 0, 0.5);
    }

    .slideshow-navigation-button.prev {
        left: 0;
    }

    .slideshow-navigation-button.next {
        right: 0;
    }

.pagination-number {
    font-size: 1.8rem;
    color: #FFF;
    font-family: 'Oswald', sans-serif;
    padding: 0 0.5rem;
}

.pagination-separator {
    display: none;
    position: relative;
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.25);
    transition: all .3s ease;
}

@media (min-width: 45em) {
    .pagination-separator {
        display: block;
    }
}

.pagination-separator-loader {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    transform-origin: 0 0;
}

.btn-transparent {
    background: transparent;
    color: #F2F2F2;
    -webkit-transition: background .2s ease-in-out, border .2s ease-in-out;
    -moz-transition: background .2s ease-in-out, border .2s ease-in-out;
    -o-transition: background .2s ease-in-out, border .2s ease-in-out;
    transition: background .2s ease-in-out, border .2s ease-in-out;
    border: 2px solid #4992B7;
}

    .btn-transparent:hover {
        color: white;
        background-color: rgba(255,255,255,0.2);
    }


/* 01 DE MAIO */

.pt-120 {
    padding-top: 120px;
}

.pb-115 {
    padding-bottom: 115px;
}

.app-scrin-inner {
    position: relative;
    overflow: hidden;
    max-width: 1500px;
    margin: 0 auto;
    padding: 0px 20px;
    margin-top: -72px;
}

.app-carousel-inner {
    position: relative;
    width: 450px;
    height: 770px;
    margin: 0 auto;
    padding: 108px 70px;
    background: url(http://layerdrops.com/jironis/assets/img/feature/mockup.png);
    margin-top: 12px;
}

.app-carousel .owl-stage-outer {
    overflow: visible;
}

.app-carousel .single-app-image img {
    display: block;
    width: 90%;
    height: 95%;
    margin: 40px auto;
    top: 20px;
}

.app-carousel button.owl-dot {
    height: 7px;
    width: 7px;
    background: #ded7f4 !important;
    margin-right: 5px;
    border-radius: 50%;
    -webkit-transition: .3s all linear;
    transition: .3s all linear;
    line-height: 10px;
    vertical-align: middle;
}

    .app-carousel button.owl-dot.active {
        background: #5b39c9 !important;
        height: 10px;
        width: 10px;
    }

.app-carousel .owl-dots {
    text-align: center;
    margin-top: 84px;
}

code {
    background-color: #ee6e73;
    border-radius: 2px;
    color: #fff;
    padding: 2px 4px;
}

pre {
    background-color: #f8f8f8;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 10px;
}

    pre code {
        background-color: transparent;
        color: #333;
    }

del {
    text-decoration-color: #ee6e73;
}

kbd {
    background-color: #ddd;
    padding: 4px 6px;
    border-radius: 2px;
    color:;
}

address {
    line-height: 1.5;
    padding-left: 10px;
}

dl dt {
    font-weight: 700;
}

dl dd {
    margin-left: 0;
}

blockquote {
    background-color: #f8f8f8;
    border-radius: 0 4px 4px 0;
    padding: 5px 15px;
}

    blockquote p {
        margin-top: 10px;
    }

button {
    padding: 5px 15px;
    border: none;
}

    button:focus {
        outline: none;
        border: none;
    }


/* ========= BUTTON =========*/

.mu-primary-btn {
    background-color: transparent;
    border-radius: 4px;
    border: 2px solid #ffffff;
    color: #fff;
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 12px 35px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

    .mu-primary-btn:hover,
    .mu-primary-btn:focus {
        background-color: #fff;
    }

.mu-send-msg-btn {
    color: #555;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    padding: 14px 24px;
    margin-top: 10px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    width: 130px;
    color: #fff;
    border-radius: 10px;
}

    .mu-send-msg-btn:hover,
    .mu-send-msg-btn:focus {
        background-color: #fff;
    }



/*--------------------*/
/* HEADER */
/*--------------------*/

#mu-header {
    background-image: url("assets/images/header-bg.jpg");
    display: inline;
    float: left;
    width: 100%;
    background-position: center center;
    background-attachment: fixed;
}

.mu-header-overlay {
    display: inline;
    float: left;
    opacity: 0.8;
    width: 100%;
}

.mu-logo-area {
    display: inline;
    float: left;
    width: 100%;
}

.mu-logo {
    color: #fff;
    font-size: 45px;
    display: inline-block;
    font-weight: 700;
    margin-top: 35px;
}

    .mu-logo:hover,
    .mu-logo:focus {
        color: #fff;
    }

.mu-menu-btn {
    position: fixed;
    right: 15%;
    top: 50px;
    color: #fff;
    font-size: 25px;
    border: 2px solid #fff;
    padding: 5px 14px;
    z-index: 999;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

    .mu-menu-btn:hover,
    .mu-menu-btn:focus {
        border: 2px solid #fff;
    }



/*=== Featured section ===*/

.mu-header-featured-area {
    display: inline;
    float: left;
    padding: 50px 0;
    width: 100%;
}

.mu-header-featured-img {
    display: inline;
    float: left;
    width: 40%;
}

.mu-header-featured-content {
    display: inline;
    float: right;
    margin-top: 200px;
    text-align: center;
    width: 60%;
}

    .mu-header-featured-content h1 {
        font-size: 45px;
        color: #fff;
        font-weight: 300;
        margin-bottom: 15px;
    }

        .mu-header-featured-content h1 span {
            font-weight: 700;
        }

    .mu-header-featured-content p {
        color: #fff;
    }

.mu-app-download-area {
    display: inline;
    float: left;
    margin-top: 50px;
    width: 100%;
}

    .mu-app-download-area h4 {
        color: #fff;
        font-size: 18px;
        font-weight: 300;
        margin-bottom: 20px;
    }

.mu-apple-btn,
.mu-google-btn,
.mu-windows-btn {
    border: 2px solid #fff;
    border-radius: 50px;
    color: #fff;
    display: inline-block;
    margin: 0 10px;
    padding: 11px 22px;
    text-transform: uppercase;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

    .mu-apple-btn:hover,
    .mu-google-btn:hover,
    .mu-windows-btn:hover,
    .mu-apple-btn:focus,
    .mu-google-btn:focus,
    .mu-windows-btn:focus {
        background-color: #ffffff;
    }

    .mu-apple-btn i,
    .mu-google-btn i,
    .mu-windows-btn i {
        display: block;
        float: left;
        font-size: 20px;
        line-height: 24px;
        margin-right: 10px;
    }

    .mu-apple-btn span,
    .mu-google-btn span,
    .mu-windows-btn span {
        display: block;
        float: left;
        line-height: 24px;
    }



/*--------------------*/
/* MENU */
/*--------------------*/

.mu-menu-close-btn {
    display: block;
    font-size: 25px;
    height: 48px;
    position: absolute;
    right: 15%;
    top: 55px;
    width: 48px;
    -webkit-transition: color 0.3s ease-in-out 0s;
    transition: color 0.3s ease-in-out 0s;
}

    .mu-menu-close-btn .mu-line {
        background-color: transparent;
        display: block;
        position: relative;
        height: 4px;
        width: 38px;
    }

        .mu-menu-close-btn .mu-line::before {
            background-color: #fff;
            content: "";
            display: block;
            height: 4px;
            position: absolute;
            top: 16px;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transition: -webkit-transform 0.3s ease-out 0s;
            transition: -webkit-transform 0.3s ease-out 0s;
            transition: transform 0.3s ease-out 0s;
            transition: transform 0.3s ease-out 0s, -webkit-transform 0.3s ease-out 0s;
            width: 38px;
            z-index: -1;
        }

        .mu-menu-close-btn .mu-line::after {
            background-color: #fff;
            content: "";
            display: block;
            height: 4px;
            position: absolute;
            top: 16px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            -webkit-transition: -webkit-transform 0.3s ease-out 0s;
            transition: -webkit-transform 0.3s ease-out 0s;
            transition: transform 0.3s ease-out 0s;
            transition: transform 0.3s ease-out 0s, -webkit-transform 0.3s ease-out 0s;
            width: 38px;
            z-index: -1;
        }

    .mu-menu-close-btn:hover .mu-line:before,
    .mu-menu-close-btn:hover .mu-line:after {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }

/* Menu overlay */

.mu-menu-full-overlay {
    background-color: rgba(0, 0, 0, 0.94);
    color: #fff;
    height: 100%;
    left: 0;
    position: fixed;
    right: 0;
    text-align: center;
    top: 0;
    visibility: hidden;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    width: 100%;
    z-index: 99999;
}

.mu-menu-full-overlay-show {
    visibility: visible;
}

.mu-menu-full-overlay-inner {
    display: inline;
    float: left;
    padding: 12% 15%;
    width: 100%;
}

.mu-menu ul li {
    list-style: none;
}

    .mu-menu ul li a {
        color: #fff;
        display: inline-block;
        font-size: 35px;
        font-weight: 700;
        line-height: 1.35;
        text-align: center;
        text-transform: uppercase;
        margin-bottom: 10px;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }

/*--------------------*/
/* FEATURE SECTION */
/*--------------------*/


#mu-feature {
    background-color: #fff;
    display: inline;
    float: left;
    width: 100%;
}

.mu-feature-area {
    display: inline;
    float: left;
    padding: 100px 0;
    width: 100%;
}

.mu-title-area {
    display: inline;
    float: left;
    text-align: center;
    padding: 0 120px;
    width: 100%;
}

.mu-title {
    color: #1c1b1b;
    margin-bottom: 15px;
    padding: 0;
    z-index: 10;
    text-transform: capitalize;
}

.mu-title-dot {
    border-radius: 50%;
    height: 8px;
    width: 8px;
    display: inline-block;
    margin-bottom: 20px;
    position: relative;
}

    .mu-title-dot::before {
        content: '';
        position: absolute;
        left: 15px;
        height: 3px;
        width: 50px;
        top: 2px;
    }

    .mu-title-dot::after {
        content: '';
        position: absolute;
        right: 15px;
        height: 3px;
        width: 50px;
        top: 2px;
    }

.mu-feature-content {
    background-color: #fff;
    display: inline;
    float: left;
    margin-top: 30px;
    width: 100%;
}

.mu-feature-content-left {
    display: inline;
    float: left;
    width: 100%;
}

.mu-feature-content-right {
    display: inline;
    float: left;
    margin-top: 30px;
    width: 100%;
}

    .mu-feature-content-right .media-left {
        padding-right: 15px;
    }

.mu-feature-btn {
    color: #fff;
    font-size: 18px;
}

    .mu-feature-btn:hover {
        color: #fff;
    }

.mu-feature-content-right .media-heading {
    font-size: 22px;
    font-weight: 500;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mu-feature-content-right .media {
    margin-top: 15px;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
    padding-bottom: 20px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

    .mu-feature-content-right .media p {
        font-size: 14px;
        margin-bottom: 0;
    }


/*--------------------*/
/* VIDEO */
/*--------------------*/


#mu-video {
    background-image: url("assets/images/video-bg.jpeg");
    background-attachment: fixed;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
    display: inline;
    float: left;
    width: 100%;
}

.mu-video-overlay {
    display: inline;
    float: left;
    opacity: 0.8;
    width: 100%;
}

.mu-video-area {
    display: inline;
    float: left;
    padding: 200px 0;
    text-align: center;
    width: 100%;
}

    .mu-video-area h2 {
        color: #fff;
    }

.mu-video-content {
    display: inline;
    float: left;
    width: 100%;
}

.mu-video-play-btn,
.mu-video-close-btn {
    color: #fff;
    font-size: 22px;
    border: 2px solid #fff;
    border-radius: 50%;
    width: 60px;
    display: inline-block;
    height: 60px;
    line-height: 55px;
    text-align: center;
    margin-top: 100px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

    .mu-video-play-btn:hover,
    .mu-video-play-btn:focus {
        color: #fff;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

.mu-video-close-btn {
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    border: 2px solid #fff;
    position: absolute;
    top: 0;
    right: 15%;
    display: inline-block;
    height: 50px;
    line-height: 45px;
    text-align: center;
    margin-top: 100px;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    width: 50px;
}

    .mu-video-close-btn:hover,
    .mu-video-close-btn:focus {
        color: #fff;
        -webkit-transform: scale(1.2);
        transform: scale(1.2);
    }

.mu-video-iframe-area {
    background-color: rgba(0,0,0,0.84);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    padding: 12% 0;
    text-align: center;
    z-index: 9999;
    display: none;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
}

.mu-video-iframe-display {
    display: block;
}

.mu-video-iframe-area iframe {
}



/*--------------------*/
/* APPPS SCREENSHOT */
/*--------------------*/


#mu-apps-screenshot {
    background-color: #fff;
    display: inline;
    float: left;
    width: 100%;
}

.mu-apps-screenshot-area {
    display: inline;
    float: left;
    padding: 100px 0;
    width: 100%;
}

.mu-apps-screenshot-content {
    display: inline;
    float: left;
    margin-top: 50px;
    width: 100%;
}

.mu-apps-screenshot-slider {
}

.mu-single-screeshot {
    padding: 0 10px;
    outline: none;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.mu-apps-screenshot-slider .slick-next {
    right: -60px;
}

.mu-apps-screenshot-slider .slick-prev {
    left: -60px;
}

.mu-apps-screenshot-slider .slick-next,
.mu-apps-screenshot-slider .slick-prev {
    background-color: transparent;
}


/*--------------------*/
/* DOWNLOAD */
/*--------------------*/

#mu-download {
    background-image: url("assets/images/download-bg.jpeg");
    background-position: center center;
    background-size: cover;
    background-attachment: fixed;
    display: inline;
    float: left;
    position: relative;
    width: 100%;
}

    #mu-download::before {
        background: rgba(0,0,0,0.9);
        bottom: 0;
        content: '';
        left: 0;
        top: 0;
        right: 0;
        position: absolute;
        opacity: 0.84;
    }

.mu-download-area {
    display: inline;
    float: left;
    padding: 150px 0;
    width: 100%;
}

    .mu-download-area .mu-title,
    .mu-download-area p {
        color: #fff;
    }

.mu-download-content {
    display: inline;
    float: left;
    width: 100%;
    text-align: center;
    margin-top: 50px;
}


/*--------------------*/
/* FAQ */
/*--------------------*/

#mu-faq {
    background-color: #f8f8f8;
    display: inline;
    float: left;
    position: relative;
    width: 100%;
}

.mu-faq-area {
    display: inline;
    float: left;
    padding: 150px 0;
    width: 100%;
}

.mu-faq-content {
    display: inline;
    float: left;
    width: 100%;
    text-align: center;
    padding: 0 150px;
    margin-top: 50px;
}

    .mu-faq-content .panel-default {
        border-color: #fff;
        box-shadow: 0 2px 3px 0 rgba(0,0,0,0.06);
    }

        .mu-faq-content .panel-default > .panel-heading {
            color: #333;
            background-color: #fff;
            border-color: #ddd;
            padding: 0;
        }

            .mu-faq-content .panel-default > .panel-heading + .panel-collapse > .panel-body {
                text-align: left;
            }


    .mu-faq-content .panel-title {
        text-align: left;
    }

        .mu-faq-content .panel-title a {
            display: block;
            padding: 12px 15px;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            transition: all 0.5s;
        }

            .mu-faq-content .panel-title a > span {
                margin-right: 5px;
            }


/*--------------------*/
/* CONTACT US */
/*--------------------*/

#mu-contact {
    background-color: #fff;
    display: inline;
    float: left;
    width: 100%;
}

.mu-contact-area {
    display: inline;
    float: left;
    padding: 100px 0;
    width: 100%;
}

.mu-contact-header {
    display: inline;
    float: left;
    text-align: center;
    width: 100%;
    padding: 0 120px;
}

.mu-contact-content {
    display: inline;
    float: left;
    margin-top: 50px;
    padding: 0 120px;
    width: 100%;
}

.mu-contact-right {
    display: inline;
    float: left;
    width: 100%;
    margin-top: 10px;
    padding-left: 15px;
}

.mu-contact-right-single {
    display: inline;
    float: left;
    margin-bottom: 35px;
    width: 100%;
}

    .mu-contact-right-single .mu-icon {
        background-color: transparent;
        font-size: 20px;
        display: block;
        width: 50px;
        height: 50px;
        text-align: center;
        line-height: 50px;
        border-radius: 50%;
        float: left;
        margin-right: 15px;
    }

    .mu-contact-right-single p {
        margin-bottom: 0;
    }


.mu-contact-left {
    display: inline;
    float: left;
    width: 100%;
}

.mu-contact-form .form-group input {
    background: transparent;
    border-radius: 10px;
    color: #333;
    font-size: 15px;
    border: 1px solid #888;
    height: 45px;
    margin-bottom: 24px;
}

.mu-contact-form .form-group textarea {
    background: transparent;
    border: 1px solid #888;
    border-radius: 10px;
    color: #333;
    font-size: 18px;
    padding: 10px;
    height: 190px;
}

.mu-contact-form .form-control:focus {
    background-color: #fff;
    outline: 0;
    box-shadow: none;
}

.mu-contact-form .form-control::-webkit-input-placeholder {
    color: #888;
    font-size: 15px;
}

.mu-contact-form .form-control:-moz-placeholder { /* Firefox 18- */
    color: #888;
    font-size: 15px;
}

.mu-contact-form .form-control::-moz-placeholder { /* Firefox 19+ */
    color: #888;
    font-size: 15px;
}

.mu-contact-form .form-control:-ms-input-placeholder {
    color: #888;
    font-size: 15px;
}

.mu-contact-form .button-default::after,
.mu-contact-form .button-default > span {
    padding: 12px 40px;
}

.mu-social-media {
    display: inline;
    float: left;
    width: 100%;
}

    .mu-social-media a {
        border: 1px solid #19191a;
        border-radius: 50px;
        color: #19191a;
        display: inline-block;
        font-size: 12px;
        margin-right: 10px;
        text-align: center;
        text-decoration: none;
        transition: all 0.2s ease-in-out 0s;
        width: 35px;
        height: 35px;
        line-height: 35px;
        font-size: 15px;
    }

#form-messages {
    margin-bottom: 10px;
    background-color: #fff;
}

.success {
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #468847;
    background-color: #dff0d8;
    border: 1px solid #d6e9c6;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.error {
    padding: 1em;
    margin-bottom: 0.75rem;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    color: #b94a48;
    background-color: #f2dede;
    border: 1px solid rgba(185, 74, 72, 0.3);
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}



/*--------------------*/
/* FOOTER */
/*--------------------*/


#mu-footer {
    background-color: #f8f8f8;
    display: inline;
    float: left;
    width: 100%;
}

.mu-footer-area {
    display: inline;
    float: left;
    padding: 30px 0;
    text-align: center;
    width: 100%;
}

.mu-copy-right {
    margin-bottom: 0;
}

    .mu-copy-right a {
        font-weight: 600;
        -webkit-transition: all 0.5s;
        -o-transition: all 0.5s;
        transition: all 0.5s;
    }



/*--------------------*/
/* RESPONSIVE STYLE */
/*--------------------*/

@media (max-width: 1199px) {

    .mu-header-featured-content {
        margin-top: 120px;
    }

    .mu-video-iframe-area {
        padding: 16% 0;
    }

    .mu-video-close-btn {
        top: 5%;
        right: 5%;
        margin-top: 0;
    }

    .mu-apps-screenshot-slider .slick-prev {
        left: -25px;
    }

    .mu-apps-screenshot-slider .slick-next {
        right: -25px;
    }

    .mu-contact-content {
        padding: 0;
    }
}

@media (max-width: 991px) {

    .mu-primary-btn {
        font-size: 14px;
        padding: 12px 22px;
    }

    .mu-header-featured-content {
        margin-top: 35px;
    }

    .mu-video-iframe-area {
        padding: 16% 5%;
    }

        .mu-video-iframe-area iframe {
            width: 100%;
        }

    .mu-title-area {
        padding: 0 50px;
    }

    .mu-faq-content {
        padding: 0;
    }

    .mu-contact-right {
        margin-top: 50px;
    }

    .mu-menu-btn {
        right: 5%;
    }

    .mu-apps-screenshot-slider .slick-next {
        right: 0;
    }

    .mu-apps-screenshot-slider .slick-prev {
        left: 0;
    }

    .mu-apps-screenshot-slider .slick-next,
    .mu-apps-screenshot-slider .slick-prev {
        width: 40px;
        height: 40px;
    }

        .mu-apps-screenshot-slider .slick-prev::before,
        .mu-apps-screenshot-slider .slick-next::before {
            font-size: 18px;
        }

    #top-header {
        display: none !important;
    }

    #map-box {
        width: 450px;
    }
}

@media (max-width: 767px) {

    .mu-header-featured-content h1 {
        font-size: 35px;
    }

    .mu-app-download-area {
        margin-top: 20px;
    }

    .mu-apple-btn,
    .mu-google-btn,
    .mu-windows-btn {
        margin-bottom: 10px;
    }

    .mu-menu-btn {
        top: 44px;
        color: #fff;
        font-size: 20px;
        padding: 5px 12px;
    }

    .mu-logo {
        margin-top: 25px;
    }

        .mu-logo img {
            width: 200px;
        }

    #top-header {
        display: none !important;
    }

    #map-box {
        width: 680px;
        height: 660px;
    }
}


@media (max-width: 640px) {

    .mu-header-featured-img,
    .mu-header-featured-content {
        width: 100%;
    }

    .mu-menu ul li a {
        font-size: 20px;
        font-weight: 300;
        line-height: 1;
    }

    .mu-title-area {
        padding: 0;
    }

    #top-header {
        display: none !important;
    }

    #map-box {
        width: 400px;
        height: 400px;
    }
}


@media (max-width: 480px) {

    .mu-logo img {
        width: 150px;
    }

    .product .product-img > img {
        width: 500px;
        height: 350px;
    }

    #top-header {
        display: none !important;
    }

    #map-box {
        width: 350px;
        height: 350px;
    }


    .mu-video-close-btn {
        top: 2%;
        right: 5%;
        height: 40px;
        line-height: 35px;
        width: 40px;
    }

    .mu-menu-close-btn {
        right: 5%;
        top: 30px;
    }

    .mu-video-iframe-area {
        padding: 10% 5%;
    }

        .mu-video-iframe-area iframe {
            height: 250px;
        }
}


@media (max-width: 360px) {

    .mu-video-iframe-area {
        padding: 15% 5%;
    }

    h2 {
        font-size: 25px;
    }

    #pesquisa {
        display: none !important;
    }

    #top-header {
        display: none !important;
    }

    #map-box {
        width: 150px;
        height: 150px;
    }
}



@media (max-width: 320px) {

    .mu-video-iframe-area {
        padding: 30% 5%;
    }
}

.centro {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height: 100%;
}

#conteudo {
    background-color: #ccc;
    width: 50%;
}


#msg {
    color: red;
}

el.error {
    background-color: red;
}

el.ok {
    color: green;
}


/* This is the default Tooltipster theme (feel free to modify or duplicate and create multiple themes!): */
.tooltipster-default {
    text-align: center;
    color: #fff;
    background: #111;
    position: absolute;
    z-index: 100;
    padding: 15px;
    border-radius: 10px;
}

    /* Use this next selector to style things like font-size and line-height: */
    .tooltipster-default .tooltipster-content {
        font-family: Arial, sans-serif;
        font-size: 14px;
        line-height: 20px;
        padding: 8px 10px;
        text-align: center;
        width: relative;
        overflow: hidden;
    }

    /* This next selector defines the color of the border on the outside of the arrow. This will automatically match the color and size of the border set on the main tooltip styles. Set display: none; if you would like a border around the tooltip but no border around the arrow */
    .tooltipster-default .tooltipster-arrow .tooltipster-arrow-border {
        /* border-color: ... !important; */
    }


/* If you're using the icon option, use this next selector to style them */
.tooltipster-icon {
    cursor: help;
    margin-left: 4px;
}

input.valid {
}

input.invalid {
    /* Altera a cor da borda */
    border: 1px solid red;
}







/* This is the base styling required to make all Tooltipsters work */
.tooltipster-base {
    padding: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    z-index: 998;
    pointer-events: none;
    width: auto;
    overflow: visible;
}

    .tooltipster-base .tooltipster-content {
        overflow: hidden;
    }


/* These next classes handle the styles for the little arrow attached to the tooltip. By default, the arrow will inherit the same colors and border as what is set on the main tooltip itself. */
.tooltipster-arrow {
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

    .tooltipster-arrow span, .tooltipster-arrow-border {
        display: block;
        width: 0;
        height: 0;
        position: absolute;
    }

.tooltipster-arrow-top span, .tooltipster-arrow-top-right span, .tooltipster-arrow-top-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-top: 8px solid;
    bottom: -7px;
}

.tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-top-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-top: 9px solid;
    bottom: -7px;
}

.tooltipster-arrow-bottom span, .tooltipster-arrow-bottom-right span, .tooltipster-arrow-bottom-left span {
    border-left: 8px solid transparent !important;
    border-right: 8px solid transparent !important;
    border-bottom: 8px solid;
    top: -7px;
}

.tooltipster-arrow-bottom .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    border-left: 9px solid transparent !important;
    border-right: 9px solid transparent !important;
    border-bottom: 9px solid;
    top: -7px;
}

.tooltipster-arrow-top span, .tooltipster-arrow-top .tooltipster-arrow-border, .tooltipster-arrow-bottom span, .tooltipster-arrow-bottom .tooltipster-arrow-border {
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tooltipster-arrow-top-left span, .tooltipster-arrow-bottom-left span {
    left: 6px;
}

.tooltipster-arrow-top-left .tooltipster-arrow-border, .tooltipster-arrow-bottom-left .tooltipster-arrow-border {
    left: 5px;
}

.tooltipster-arrow-top-right span, .tooltipster-arrow-bottom-right span {
    right: 6px;
}

.tooltipster-arrow-top-right .tooltipster-arrow-border, .tooltipster-arrow-bottom-right .tooltipster-arrow-border {
    right: 5px;
}

.tooltipster-arrow-left span, .tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-left: 8px solid;
    top: 50%;
    margin-top: -7px;
    right: -7px;
}

.tooltipster-arrow-left .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
    border-left: 9px solid;
    margin-top: -8px;
}

.tooltipster-arrow-right span, .tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 8px solid transparent !important;
    border-bottom: 8px solid transparent !important;
    border-right: 8px solid;
    top: 50%;
    margin-top: -7px;
    left: -7px;
}

.tooltipster-arrow-right .tooltipster-arrow-border {
    border-top: 9px solid transparent !important;
    border-bottom: 9px solid transparent !important;
    border-right: 9px solid;
    margin-top: -8px;
}


/* Some CSS magic for the awesome animations - feel free to make your own custom animations and reference it in your Tooltipster settings! */

.tooltipster-fade {
    opacity: 0;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    -ms-transition-property: opacity;
    transition-property: opacity;
}

.tooltipster-fade-show {
    opacity: 1;
}

.tooltipster-grow {
    -webkit-transform: scale(0,0);
    -moz-transform: scale(0,0);
    -o-transform: scale(0,0);
    -ms-transform: scale(0,0);
    transform: scale(0,0);
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-backface-visibility: hidden;
}

.tooltipster-grow-show {
    -webkit-transform: scale(1,1);
    -moz-transform: scale(1,1);
    -o-transform: scale(1,1);
    -ms-transform: scale(1,1);
    transform: scale(1,1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-swing {
    opacity: 0;
    -webkit-transform: rotateZ(4deg);
    -moz-transform: rotateZ(4deg);
    -o-transform: rotateZ(4deg);
    -ms-transform: rotateZ(4deg);
    transform: rotateZ(4deg);
    -webkit-transition-property: -webkit-transform, opacity;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
}

.tooltipster-swing-show {
    opacity: 1;
    -webkit-transform: rotateZ(0deg);
    -moz-transform: rotateZ(0deg);
    -o-transform: rotateZ(0deg);
    -ms-transform: rotateZ(0deg);
    transform: rotateZ(0deg);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 1);
    -webkit-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -moz-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -ms-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    -o-transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
    transition-timing-function: cubic-bezier(0.230, 0.635, 0.495, 2.4);
}

.tooltipster-fall {
    top: 0;
    -webkit-transition-property: top;
    -moz-transition-property: top;
    -o-transition-property: top;
    -ms-transition-property: top;
    transition-property: top;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

.tooltipster-fall-show {
}

.tooltipster-fall.tooltipster-dying {
    -webkit-transition-property: all;
    -moz-transition-property: all;
    -o-transition-property: all;
    -ms-transition-property: all;
    transition-property: all;
    top: 0px !important;
    opacity: 0;
}

.tooltipster-slide {
    left: -40px;
    -webkit-transition-property: left;
    -moz-transition-property: left;
    -o-transition-property: left;
    -ms-transition-property: left;
    transition-property: left;
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1);
    -webkit-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -moz-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -ms-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    -o-transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
    transition-timing-function: cubic-bezier(0.175, 0.885, 0.320, 1.15);
}

    .tooltipster-slide.tooltipster-slide-show {
    }

    .tooltipster-slide.tooltipster-dying {
        -webkit-transition-property: all;
        -moz-transition-property: all;
        -o-transition-property: all;
        -ms-transition-property: all;
        transition-property: all;
        left: 0px !important;
        opacity: 0;
    }

/* 13 de MAIO // HEADER FIXO */

.navbar-default {
    border: 3px double #eee;
    border-top: 4px double #4682B4;
    border-radius: 0;
    border-left: none;
    border-right: none;
}

#header.affix {
    position: fixed;
    top: 0px;
    border-bottom: 4px solid #4682B4;
    -webkit-transition: top 1s ease-in;
    transition: top 1s ease-out;
    border-top: none;
}

#header {
    width: 100%;
    z-index: 100;
    top: -30px;
}

#BB-nav .dropdown-menu {
    border: none;
}

.BB-nav li a {
    background-color: transparent;
    font-size: 1.04em;
    font-weight: bold;
    padding-right: 20px;
    padding-left: 20px;
    display: inline-block;
    width: 100%;
    text-align: center;
    text-transform: uppercase;
    color: #202020 !important;
    font-family: 'Source Sans Pro', Arial, sans-serif;
    transition: .5s all;
    -webkit-transition: .5s all;
    -moz-transition: .5s all;
    -o-transition: .5s all;
    -ms-transition: .5s all;
}

    .BB-nav li a:hover {
        background-color: transparent;
        color: #D75752 !important;
    }

/*reset */
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .active > a:hover,
.navbar-default .navbar-nav > .active > a:focus {
    background-color: transparent;
    color: #D75752 !important;
}

.navbar-default .navbar-nav > .open > a,
.navbar-default .navbar-nav > .open > a:hover,
.navbar-default .navbar-nav > .open > a:focus,
.dropdown-menu a {
    background-color: transparent;
}

.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border: none;
}

.credit-card-box .panel-title {
    display: inline;
    font-weight: bold;
}

.credit-card-box .form-control.error {
    border-color: red;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(255,0,0,0.6);
}

.credit-card-box label.error {
    font-weight: bold;
    color: red;
    padding: 2px 8px;
    margin-top: 2px;
}

.credit-card-box .payment-errors {
    font-weight: bold;
    color: red;
    padding: 2px 8px;
    margin-top: 2px;
}

.credit-card-box label {
    display: block;
}
/* The old "center div vertically" hack */
.credit-card-box .display-table {
    display: table;
}

.credit-card-box .display-tr {
    display: table-row;
}

.credit-card-box .display-td {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
}
/* Just looks nicer */
.credit-card-box .panel-heading img {
    min-width: 180px;
}

@-webkit-keyframes swal2-show {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@keyframes swal2-show {
    0% {
        -webkit-transform: scale(.7);
        transform: scale(.7)
    }

    45% {
        -webkit-transform: scale(1.05);
        transform: scale(1.05)
    }

    80% {
        -webkit-transform: scale(.95);
        transform: scale(.95)
    }

    100% {
        -webkit-transform: scale(1);
        transform: scale(1)
    }
}

@-webkit-keyframes swal2-hide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

@keyframes swal2-hide {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }

    100% {
        -webkit-transform: scale(.5);
        transform: scale(.5);
        opacity: 0
    }
}

@-webkit-keyframes swal2-animate-success-line-tip {
    0% {
        top: 1.1875em;
        left: .0625em;
        width: 0
    }

    54% {
        top: 1.0625em;
        left: .125em;
        width: 0
    }

    70% {
        top: 2.1875em;
        left: -.375em;
        width: 3.125em
    }

    84% {
        top: 3em;
        left: 1.3125em;
        width: 1.0625em
    }

    100% {
        top: 2.8125em;
        left: .875em;
        width: 1.5625em
    }
}

@keyframes swal2-animate-success-line-tip {
    0% {
        top: 1.1875em;
        left: .0625em;
        width: 0
    }

    54% {
        top: 1.0625em;
        left: .125em;
        width: 0
    }

    70% {
        top: 2.1875em;
        left: -.375em;
        width: 3.125em
    }

    84% {
        top: 3em;
        left: 1.3125em;
        width: 1.0625em
    }

    100% {
        top: 2.8125em;
        left: .875em;
        width: 1.5625em
    }
}

@-webkit-keyframes swal2-animate-success-line-long {
    0% {
        top: 3.375em;
        right: 2.875em;
        width: 0
    }

    65% {
        top: 3.375em;
        right: 2.875em;
        width: 0
    }

    84% {
        top: 2.1875em;
        right: 0;
        width: 3.4375em
    }

    100% {
        top: 2.375em;
        right: .5em;
        width: 2.9375em
    }
}

@keyframes swal2-animate-success-line-long {
    0% {
        top: 3.375em;
        right: 2.875em;
        width: 0
    }

    65% {
        top: 3.375em;
        right: 2.875em;
        width: 0
    }

    84% {
        top: 2.1875em;
        right: 0;
        width: 3.4375em
    }

    100% {
        top: 2.375em;
        right: .5em;
        width: 2.9375em
    }
}

@-webkit-keyframes swal2-rotate-success-circular-line {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }

    100% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }
}

@keyframes swal2-rotate-success-circular-line {
    0% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    5% {
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg)
    }

    12% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }

    100% {
        -webkit-transform: rotate(-405deg);
        transform: rotate(-405deg)
    }
}

@-webkit-keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        -webkit-transform: scale(.4);
        transform: scale(.4);
        opacity: 0
    }

    50% {
        margin-top: 1.625em;
        -webkit-transform: scale(.4);
        transform: scale(.4);
        opacity: 0
    }

    80% {
        margin-top: -.375em;
        -webkit-transform: scale(1.15);
        transform: scale(1.15)
    }

    100% {
        margin-top: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@keyframes swal2-animate-error-x-mark {
    0% {
        margin-top: 1.625em;
        -webkit-transform: scale(.4);
        transform: scale(.4);
        opacity: 0
    }

    50% {
        margin-top: 1.625em;
        -webkit-transform: scale(.4);
        transform: scale(.4);
        opacity: 0
    }

    80% {
        margin-top: -.375em;
        -webkit-transform: scale(1.15);
        transform: scale(1.15)
    }

    100% {
        margin-top: 0;
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1
    }
}

@-webkit-keyframes swal2-animate-error-icon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }
}

@keyframes swal2-animate-error-icon {
    0% {
        -webkit-transform: rotateX(100deg);
        transform: rotateX(100deg);
        opacity: 0
    }

    100% {
        -webkit-transform: rotateX(0);
        transform: rotateX(0);
        opacity: 1
    }
}

body.swal2-toast-shown.swal2-has-input > .swal2-container > .swal2-toast {
    flex-direction: column;
    align-items: stretch
}

    body.swal2-toast-shown.swal2-has-input > .swal2-container > .swal2-toast .swal2-actions {
        flex: 1;
        align-self: stretch;
        justify-content: flex-end;
        height: 2.2em
    }

    body.swal2-toast-shown.swal2-has-input > .swal2-container > .swal2-toast .swal2-loading {
        justify-content: center
    }

    body.swal2-toast-shown.swal2-has-input > .swal2-container > .swal2-toast .swal2-input {
        height: 2em;
        margin: .3125em auto;
        font-size: 1em
    }

    body.swal2-toast-shown.swal2-has-input > .swal2-container > .swal2-toast .swal2-validationerror {
        font-size: 1em
    }

body.swal2-toast-shown > .swal2-container {
    position: fixed;
    background-color: transparent
}

    body.swal2-toast-shown > .swal2-container.swal2-shown {
        background-color: transparent
    }

    body.swal2-toast-shown > .swal2-container.swal2-top {
        top: 0;
        right: auto;
        bottom: auto;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    body.swal2-toast-shown > .swal2-container.swal2-top-end, body.swal2-toast-shown > .swal2-container.swal2-top-right {
        top: 0;
        right: 0;
        bottom: auto;
        left: auto
    }

    body.swal2-toast-shown > .swal2-container.swal2-top-left, body.swal2-toast-shown > .swal2-container.swal2-top-start {
        top: 0;
        right: auto;
        bottom: auto;
        left: 0
    }

    body.swal2-toast-shown > .swal2-container.swal2-center-left, body.swal2-toast-shown > .swal2-container.swal2-center-start {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    body.swal2-toast-shown > .swal2-container.swal2-center {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%)
    }

    body.swal2-toast-shown > .swal2-container.swal2-center-end, body.swal2-toast-shown > .swal2-container.swal2-center-right {
        top: 50%;
        right: 0;
        bottom: auto;
        left: auto;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    body.swal2-toast-shown > .swal2-container.swal2-bottom-left, body.swal2-toast-shown > .swal2-container.swal2-bottom-start {
        top: auto;
        right: auto;
        bottom: 0;
        left: 0
    }

    body.swal2-toast-shown > .swal2-container.swal2-bottom {
        top: auto;
        right: auto;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    body.swal2-toast-shown > .swal2-container.swal2-bottom-end, body.swal2-toast-shown > .swal2-container.swal2-bottom-right {
        top: auto;
        right: 0;
        bottom: 0;
        left: auto
    }

.swal2-popup.swal2-toast {
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: .625em;
    box-shadow: 0 0 .625em #d9d9d9;
    overflow-y: hidden
}

    .swal2-popup.swal2-toast .swal2-header {
        flex-direction: row
    }

    .swal2-popup.swal2-toast .swal2-title {
        justify-content: flex-start;
        margin: 0 .6em;
        font-size: 1em
    }

    .swal2-popup.swal2-toast .swal2-close {
        position: initial
    }

    .swal2-popup.swal2-toast .swal2-content {
        justify-content: flex-start;
        font-size: 1em
    }

    .swal2-popup.swal2-toast .swal2-icon {
        width: 2em;
        min-width: 2em;
        height: 2em;
        margin: 0
    }

    .swal2-popup.swal2-toast .swal2-icon-text {
        font-size: 2em;
        font-weight: 700;
        line-height: 1em
    }

    .swal2-popup.swal2-toast .swal2-icon.swal2-success .swal2-success-ring {
        width: 2em;
        height: 2em
    }

    .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
        top: .875em;
        width: 1.375em
    }

        .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
            left: .3125em
        }

        .swal2-popup.swal2-toast .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
            right: .3125em
        }

    .swal2-popup.swal2-toast .swal2-actions {
        height: auto;
        margin: 0 .3125em
    }

    .swal2-popup.swal2-toast .swal2-styled {
        margin: 0 .3125em;
        padding: .3125em .625em;
        font-size: 1em
    }

        .swal2-popup.swal2-toast .swal2-styled:focus {
            box-shadow: 0 0 0 .0625em #fff,0 0 0 .125em rgba(50,100,150,.4)
        }

    .swal2-popup.swal2-toast .swal2-success {
        border-color: #a5dc86
    }

        .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line] {
            position: absolute;
            width: 2em;
            height: 2.8125em;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            border-radius: 50%
        }

            .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=left] {
                top: -.25em;
                left: -.9375em;
                -webkit-transform: rotate(-45deg);
                transform: rotate(-45deg);
                -webkit-transform-origin: 2em 2em;
                transform-origin: 2em 2em;
                border-radius: 4em 0 0 4em
            }

            .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-circular-line][class$=right] {
                top: -.25em;
                left: .9375em;
                -webkit-transform-origin: 0 2em;
                transform-origin: 0 2em;
                border-radius: 0 4em 4em 0
            }

        .swal2-popup.swal2-toast .swal2-success .swal2-success-ring {
            width: 2em;
            height: 2em
        }

        .swal2-popup.swal2-toast .swal2-success .swal2-success-fix {
            top: 0;
            left: .4375em;
            width: .4375em;
            height: 2.6875em
        }

        .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line] {
            height: .3125em
        }

            .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=tip] {
                top: 1.125em;
                left: .1875em;
                width: .75em
            }

            .swal2-popup.swal2-toast .swal2-success [class^=swal2-success-line][class$=long] {
                top: .9375em;
                right: .1875em;
                width: 1.375em
            }

    .swal2-popup.swal2-toast.swal2-show {
        -webkit-animation: showSweetToast .5s;
        animation: showSweetToast .5s
    }

    .swal2-popup.swal2-toast.swal2-hide {
        -webkit-animation: hideSweetToast .2s forwards;
        animation: hideSweetToast .2s forwards
    }

    .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-tip {
        -webkit-animation: animate-toast-success-tip .75s;
        animation: animate-toast-success-tip .75s
    }

    .swal2-popup.swal2-toast .swal2-animate-success-icon .swal2-success-line-long {
        -webkit-animation: animate-toast-success-long .75s;
        animation: animate-toast-success-long .75s
    }

@-webkit-keyframes showSweetToast {
    0% {
        -webkit-transform: translateY(-.625em) rotateZ(2deg);
        transform: translateY(-.625em) rotateZ(2deg);
        opacity: 0
    }

    33% {
        -webkit-transform: translateY(0) rotateZ(-2deg);
        transform: translateY(0) rotateZ(-2deg);
        opacity: .5
    }

    66% {
        -webkit-transform: translateY(.3125em) rotateZ(2deg);
        transform: translateY(.3125em) rotateZ(2deg);
        opacity: .7
    }

    100% {
        -webkit-transform: translateY(0) rotateZ(0);
        transform: translateY(0) rotateZ(0);
        opacity: 1
    }
}

@keyframes showSweetToast {
    0% {
        -webkit-transform: translateY(-.625em) rotateZ(2deg);
        transform: translateY(-.625em) rotateZ(2deg);
        opacity: 0
    }

    33% {
        -webkit-transform: translateY(0) rotateZ(-2deg);
        transform: translateY(0) rotateZ(-2deg);
        opacity: .5
    }

    66% {
        -webkit-transform: translateY(.3125em) rotateZ(2deg);
        transform: translateY(.3125em) rotateZ(2deg);
        opacity: .7
    }

    100% {
        -webkit-transform: translateY(0) rotateZ(0);
        transform: translateY(0) rotateZ(0);
        opacity: 1
    }
}

@-webkit-keyframes hideSweetToast {
    0% {
        opacity: 1
    }

    33% {
        opacity: .5
    }

    100% {
        -webkit-transform: rotateZ(1deg);
        transform: rotateZ(1deg);
        opacity: 0
    }
}

@keyframes hideSweetToast {
    0% {
        opacity: 1
    }

    33% {
        opacity: .5
    }

    100% {
        -webkit-transform: rotateZ(1deg);
        transform: rotateZ(1deg);
        opacity: 0
    }
}

@-webkit-keyframes animate-toast-success-tip {
    0% {
        top: .5625em;
        left: .0625em;
        width: 0
    }

    54% {
        top: .125em;
        left: .125em;
        width: 0
    }

    70% {
        top: .625em;
        left: -.25em;
        width: 1.625em
    }

    84% {
        top: 1.0625em;
        left: .75em;
        width: .5em
    }

    100% {
        top: 1.125em;
        left: .1875em;
        width: .75em
    }
}

@keyframes animate-toast-success-tip {
    0% {
        top: .5625em;
        left: .0625em;
        width: 0
    }

    54% {
        top: .125em;
        left: .125em;
        width: 0
    }

    70% {
        top: .625em;
        left: -.25em;
        width: 1.625em
    }

    84% {
        top: 1.0625em;
        left: .75em;
        width: .5em
    }

    100% {
        top: 1.125em;
        left: .1875em;
        width: .75em
    }
}

@-webkit-keyframes animate-toast-success-long {
    0% {
        top: 1.625em;
        right: 1.375em;
        width: 0
    }

    65% {
        top: 1.25em;
        right: .9375em;
        width: 0
    }

    84% {
        top: .9375em;
        right: 0;
        width: 1.125em
    }

    100% {
        top: .9375em;
        right: .1875em;
        width: 1.375em
    }
}

@keyframes animate-toast-success-long {
    0% {
        top: 1.625em;
        right: 1.375em;
        width: 0
    }

    65% {
        top: 1.25em;
        right: .9375em;
        width: 0
    }

    84% {
        top: .9375em;
        right: 0;
        width: 1.125em
    }

    100% {
        top: .9375em;
        right: .1875em;
        width: 1.375em
    }
}

body.swal2-shown:not(.swal2-no-backdrop):not(.swal2-toast-shown) {
    overflow-y: hidden
}

body.swal2-height-auto {
    height: auto !important
}

body.swal2-no-backdrop .swal2-shown {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    background-color: transparent
}

    body.swal2-no-backdrop .swal2-shown > .swal2-modal {
        box-shadow: 0 0 10px rgba(0,0,0,.4)
    }

    body.swal2-no-backdrop .swal2-shown.swal2-top {
        top: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    body.swal2-no-backdrop .swal2-shown.swal2-top-left, body.swal2-no-backdrop .swal2-shown.swal2-top-start {
        top: 0;
        left: 0
    }

    body.swal2-no-backdrop .swal2-shown.swal2-top-end, body.swal2-no-backdrop .swal2-shown.swal2-top-right {
        top: 0;
        right: 0
    }

    body.swal2-no-backdrop .swal2-shown.swal2-center {
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%,-50%);
        transform: translate(-50%,-50%)
    }

    body.swal2-no-backdrop .swal2-shown.swal2-center-left, body.swal2-no-backdrop .swal2-shown.swal2-center-start {
        top: 50%;
        left: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    body.swal2-no-backdrop .swal2-shown.swal2-center-end, body.swal2-no-backdrop .swal2-shown.swal2-center-right {
        top: 50%;
        right: 0;
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%)
    }

    body.swal2-no-backdrop .swal2-shown.swal2-bottom {
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }

    body.swal2-no-backdrop .swal2-shown.swal2-bottom-left, body.swal2-no-backdrop .swal2-shown.swal2-bottom-start {
        bottom: 0;
        left: 0
    }

    body.swal2-no-backdrop .swal2-shown.swal2-bottom-end, body.swal2-no-backdrop .swal2-shown.swal2-bottom-right {
        right: 0;
        bottom: 0
    }

.swal2-container {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px;
    background-color: transparent;
    z-index: 100;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch
}

    .swal2-container.swal2-top {
        align-items: flex-start
    }

    .swal2-container.swal2-top-left, .swal2-container.swal2-top-start {
        align-items: flex-start;
        justify-content: flex-start
    }

    .swal2-container.swal2-top-end, .swal2-container.swal2-top-right {
        align-items: flex-start;
        justify-content: flex-end
    }

    .swal2-container.swal2-center {
        align-items: center
    }

    .swal2-container.swal2-center-left, .swal2-container.swal2-center-start {
        align-items: center;
        justify-content: flex-start
    }

    .swal2-container.swal2-center-end, .swal2-container.swal2-center-right {
        align-items: center;
        justify-content: flex-end
    }

    .swal2-container.swal2-bottom {
        align-items: flex-end
    }

    .swal2-container.swal2-bottom-left, .swal2-container.swal2-bottom-start {
        align-items: flex-end;
        justify-content: flex-start
    }

    .swal2-container.swal2-bottom-end, .swal2-container.swal2-bottom-right {
        align-items: flex-end;
        justify-content: flex-end
    }

    .swal2-container.swal2-grow-fullscreen > .swal2-modal {
        display: flex !important;
        flex: 1;
        align-self: stretch;
        justify-content: center
    }

    .swal2-container.swal2-grow-row > .swal2-modal {
        display: flex !important;
        flex: 1;
        align-content: center;
        justify-content: center
    }

    .swal2-container.swal2-grow-column {
        flex: 1;
        flex-direction: column
    }

        .swal2-container.swal2-grow-column.swal2-bottom, .swal2-container.swal2-grow-column.swal2-center, .swal2-container.swal2-grow-column.swal2-top {
            align-items: center
        }

        .swal2-container.swal2-grow-column.swal2-bottom-left, .swal2-container.swal2-grow-column.swal2-bottom-start, .swal2-container.swal2-grow-column.swal2-center-left, .swal2-container.swal2-grow-column.swal2-center-start, .swal2-container.swal2-grow-column.swal2-top-left, .swal2-container.swal2-grow-column.swal2-top-start {
            align-items: flex-start
        }

        .swal2-container.swal2-grow-column.swal2-bottom-end, .swal2-container.swal2-grow-column.swal2-bottom-right, .swal2-container.swal2-grow-column.swal2-center-end, .swal2-container.swal2-grow-column.swal2-center-right, .swal2-container.swal2-grow-column.swal2-top-end, .swal2-container.swal2-grow-column.swal2-top-right {
            align-items: flex-end
        }

        .swal2-container.swal2-grow-column > .swal2-modal {
            display: flex !important;
            flex: 1;
            align-content: center;
            justify-content: center
        }

    .swal2-container:not(.swal2-top):not(.swal2-top-start):not(.swal2-top-end):not(.swal2-top-left):not(.swal2-top-right):not(.swal2-center-start):not(.swal2-center-end):not(.swal2-center-left):not(.swal2-center-right):not(.swal2-bottom):not(.swal2-bottom-start):not(.swal2-bottom-end):not(.swal2-bottom-left):not(.swal2-bottom-right) > .swal2-modal {
        margin: auto
    }

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .swal2-container .swal2-modal {
        margin: 0 !important
    }
}

.swal2-container.swal2-fade {
    transition: background-color .1s
}

.swal2-container.swal2-shown {
    background-color: rgba(0,0,0,.4)
}

.swal2-popup {
    display: none;
    position: relative;
    flex-direction: column;
    justify-content: center;
    width: 32em;
    max-width: 100%;
    padding: 1.25em;
    border-radius: .3125em;
    background: #fff;
    font-family: inherit;
    font-size: 1rem;
    box-sizing: border-box
}

    .swal2-popup:focus {
        outline: 0
    }

    .swal2-popup.swal2-loading {
        overflow-y: hidden
    }

    .swal2-popup .swal2-header {
        display: flex;
        flex-direction: column;
        align-items: center
    }

    .swal2-popup .swal2-title {
        display: block;
        position: relative;
        max-width: 100%;
        margin: 0 0 .4em;
        padding: 0;
        color: #595959;
        font-size: 1.875em;
        font-weight: 600;
        text-align: center;
        text-transform: none;
        word-wrap: break-word
    }

    .swal2-popup .swal2-actions {
        align-items: center;
        justify-content: center;
        margin: 1.25em auto 0
    }

        .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled[disabled] {
            opacity: .4
        }

        .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:hover {
            background-image: linear-gradient(rgba(0,0,0,.1),rgba(0,0,0,.1))
        }

        .swal2-popup .swal2-actions:not(.swal2-loading) .swal2-styled:active {
            background-image: linear-gradient(rgba(0,0,0,.2),rgba(0,0,0,.2))
        }

        .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-confirm {
            width: 2.5em;
            height: 2.5em;
            margin: .46875em;
            padding: 0;
            border: .25em solid transparent;
            border-radius: 100%;
            border-color: transparent;
            background-color: transparent !important;
            color: transparent;
            cursor: default;
            box-sizing: border-box;
            -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
            animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
            -webkit-user-select: none;
            -moz-user-select: none;
            -ms-user-select: none;
            user-select: none
        }

        .swal2-popup .swal2-actions.swal2-loading .swal2-styled.swal2-cancel {
            margin-right: 30px;
            margin-left: 30px
        }

        .swal2-popup .swal2-actions.swal2-loading :not(.swal2-styled).swal2-confirm::after {
            display: inline-block;
            width: 15px;
            height: 15px;
            margin-left: 5px;
            border: 3px solid #999;
            border-radius: 50%;
            border-right-color: transparent;
            box-shadow: 1px 1px 1px #fff;
            content: '';
            -webkit-animation: swal2-rotate-loading 1.5s linear 0s infinite normal;
            animation: swal2-rotate-loading 1.5s linear 0s infinite normal
        }

    .swal2-popup .swal2-styled {
        margin: 0 .3125em;
        padding: .625em 2em;
        font-weight: 500;
        box-shadow: none
    }

        .swal2-popup .swal2-styled:not([disabled]) {
            cursor: pointer
        }

        .swal2-popup .swal2-styled.swal2-confirm {
            border: 0;
            border-radius: .25em;
            background: initial;
            background-color: #3085d6;
            color: #fff;
            font-size: 1.0625em
        }

        .swal2-popup .swal2-styled.swal2-cancel {
            border: 0;
            border-radius: .25em;
            background: initial;
            background-color: #aaa;
            color: #fff;
            font-size: 1.0625em
        }

        .swal2-popup .swal2-styled:focus {
            outline: 0;
            box-shadow: 0 0 0 2px #fff,0 0 0 4px rgba(50,100,150,.4)
        }

        .swal2-popup .swal2-styled::-moz-focus-inner {
            border: 0
        }

    .swal2-popup .swal2-footer {
        justify-content: center;
        margin: 1.25em 0 0;
        padding-top: 1em;
        border-top: 1px solid #eee;
        color: #545454;
        font-size: 1em
    }

    .swal2-popup .swal2-image {
        max-width: 100%;
        margin: 1.25em auto
    }

    .swal2-popup .swal2-close {
        position: absolute;
        top: 0;
        right: 0;
        justify-content: center;
        width: 1.2em;
        height: 1.2em;
        padding: 0;
        transition: color .1s ease-out;
        border: none;
        border-radius: 0;
        background: 0 0;
        color: #ccc;
        font-family: serif;
        font-size: 2.5em;
        line-height: 1.2;
        cursor: pointer;
        overflow: hidden
    }

        .swal2-popup .swal2-close:hover {
            -webkit-transform: none;
            transform: none;
            color: #f27474
        }

    .swal2-popup > .swal2-checkbox, .swal2-popup > .swal2-file, .swal2-popup > .swal2-input, .swal2-popup > .swal2-radio, .swal2-popup > .swal2-select, .swal2-popup > .swal2-textarea {
        display: none
    }

    .swal2-popup .swal2-content {
        justify-content: center;
        margin: 0;
        padding: 0;
        color: #545454;
        font-size: 1.125em;
        font-weight: 300;
        line-height: normal;
        word-wrap: break-word
    }

    .swal2-popup #swal2-content {
        text-align: center
    }

    .swal2-popup .swal2-checkbox, .swal2-popup .swal2-file, .swal2-popup .swal2-input, .swal2-popup .swal2-radio, .swal2-popup .swal2-select, .swal2-popup .swal2-textarea {
        margin: 1em auto
    }

    .swal2-popup .swal2-file, .swal2-popup .swal2-input, .swal2-popup .swal2-textarea {
        width: 100%;
        transition: border-color .3s,box-shadow .3s;
        border: 1px solid #d9d9d9;
        border-radius: .1875em;
        font-size: 1.125em;
        box-shadow: inset 0 1px 1px rgba(0,0,0,.06);
        box-sizing: border-box
    }

        .swal2-popup .swal2-file.swal2-inputerror, .swal2-popup .swal2-input.swal2-inputerror, .swal2-popup .swal2-textarea.swal2-inputerror {
            border-color: #f27474 !important;
            box-shadow: 0 0 2px #f27474 !important
        }

        .swal2-popup .swal2-file:focus, .swal2-popup .swal2-input:focus, .swal2-popup .swal2-textarea:focus {
            border: 1px solid #b4dbed;
            outline: 0;
            box-shadow: 0 0 3px #c4e6f5
        }

        .swal2-popup .swal2-file::-webkit-input-placeholder, .swal2-popup .swal2-input::-webkit-input-placeholder, .swal2-popup .swal2-textarea::-webkit-input-placeholder {
            color: #ccc
        }

        .swal2-popup .swal2-file:-ms-input-placeholder, .swal2-popup .swal2-input:-ms-input-placeholder, .swal2-popup .swal2-textarea:-ms-input-placeholder {
            color: #ccc
        }

        .swal2-popup .swal2-file::-ms-input-placeholder, .swal2-popup .swal2-input::-ms-input-placeholder, .swal2-popup .swal2-textarea::-ms-input-placeholder {
            color: #ccc
        }

        .swal2-popup .swal2-file::placeholder, .swal2-popup .swal2-input::placeholder, .swal2-popup .swal2-textarea::placeholder {
            color: #ccc
        }

    .swal2-popup .swal2-range input {
        width: 80%
    }

    .swal2-popup .swal2-range output {
        width: 20%;
        font-weight: 600;
        text-align: center
    }

    .swal2-popup .swal2-range input, .swal2-popup .swal2-range output {
        height: 2.625em;
        margin: 1em auto;
        padding: 0;
        font-size: 1.125em;
        line-height: 2.625em
    }

    .swal2-popup .swal2-input {
        height: 2.625em;
        padding: .75em
    }

        .swal2-popup .swal2-input[type=number] {
            max-width: 10em
        }

    .swal2-popup .swal2-file {
        font-size: 1.125em
    }

    .swal2-popup .swal2-textarea {
        height: 6.75em;
        padding: .75em
    }

    .swal2-popup .swal2-select {
        min-width: 50%;
        max-width: 100%;
        padding: .375em .625em;
        color: #545454;
        font-size: 1.125em
    }

    .swal2-popup .swal2-checkbox, .swal2-popup .swal2-radio {
        align-items: center;
        justify-content: center
    }

        .swal2-popup .swal2-checkbox label, .swal2-popup .swal2-radio label {
            margin: 0 .6em;
            font-size: 1.125em
        }

        .swal2-popup .swal2-checkbox input, .swal2-popup .swal2-radio input {
            margin: 0 .4em
        }

    .swal2-popup .swal2-validationerror {
        display: none;
        align-items: center;
        justify-content: center;
        padding: .625em;
        background: #f0f0f0;
        color: #666;
        font-size: 1em;
        font-weight: 300;
        overflow: hidden
    }

        .swal2-popup .swal2-validationerror::before {
            display: inline-block;
            width: 1.5em;
            min-width: 1.5em;
            height: 1.5em;
            margin: 0 .625em;
            border-radius: 50%;
            background-color: #f27474;
            color: #fff;
            font-weight: 600;
            line-height: 1.5em;
            text-align: center;
            content: '!';
            zoom: normal
        }

@supports (-ms-accelerator:true) {
    .swal2-range input {
        width: 100% !important
    }

    .swal2-range output {
        display: none
    }
}

@media all and (-ms-high-contrast:none),(-ms-high-contrast:active) {
    .swal2-range input {
        width: 100% !important
    }

    .swal2-range output {
        display: none
    }
}

@-moz-document url-prefix() {
    .swal2-close:focus {
        outline: 2px solid rgba(50,100,150,.4)
    }
}

.swal2-icon {
    position: relative;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin: 1.25em auto 1.875em;
    border: .25em solid transparent;
    border-radius: 50%;
    line-height: 5em;
    cursor: default;
    box-sizing: content-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    zoom: normal
}

.swal2-icon-text {
    font-size: 3.75em
}

.swal2-icon.swal2-error {
    border-color: #f27474
}

    .swal2-icon.swal2-error .swal2-x-mark {
        position: relative;
        flex-grow: 1
    }

    .swal2-icon.swal2-error [class^=swal2-x-mark-line] {
        display: block;
        position: absolute;
        top: 2.3125em;
        width: 2.9375em;
        height: .3125em;
        border-radius: .125em;
        background-color: #f27474
    }

        .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=left] {
            left: 1.0625em;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg)
        }

        .swal2-icon.swal2-error [class^=swal2-x-mark-line][class$=right] {
            right: 1em;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg)
        }

.swal2-icon.swal2-warning {
    border-color: #facea8;
    color: #f8bb86
}

.swal2-icon.swal2-info {
    border-color: #9de0f6;
    color: #3fc3ee
}

.swal2-icon.swal2-question {
    border-color: #c9dae1;
    color: #87adbd
}

.swal2-icon.swal2-success {
    border-color: #a5dc86
}

    .swal2-icon.swal2-success [class^=swal2-success-circular-line] {
        position: absolute;
        width: 3.75em;
        height: 7.5em;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-radius: 50%
    }

        .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=left] {
            top: -.4375em;
            left: -2.0635em;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transform-origin: 3.75em 3.75em;
            transform-origin: 3.75em 3.75em;
            border-radius: 7.5em 0 0 7.5em
        }

        .swal2-icon.swal2-success [class^=swal2-success-circular-line][class$=right] {
            top: -.6875em;
            left: 1.875em;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
            -webkit-transform-origin: 0 3.75em;
            transform-origin: 0 3.75em;
            border-radius: 0 7.5em 7.5em 0
        }

    .swal2-icon.swal2-success .swal2-success-ring {
        position: absolute;
        top: -.25em;
        left: -.25em;
        width: 100%;
        height: 100%;
        border: .25em solid rgba(165,220,134,.3);
        border-radius: 50%;
        z-index: 2;
        box-sizing: content-box
    }

    .swal2-icon.swal2-success .swal2-success-fix {
        position: absolute;
        top: .5em;
        left: 1.625em;
        width: .4375em;
        height: 5.625em;
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
        z-index: 1
    }

    .swal2-icon.swal2-success [class^=swal2-success-line] {
        display: block;
        position: absolute;
        height: .3125em;
        border-radius: .125em;
        background-color: #a5dc86;
        z-index: 2
    }

        .swal2-icon.swal2-success [class^=swal2-success-line][class$=tip] {
            top: 2.875em;
            left: .875em;
            width: 1.5625em;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg)
        }

        .swal2-icon.swal2-success [class^=swal2-success-line][class$=long] {
            top: 2.375em;
            right: .5em;
            width: 2.9375em;
            -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg)
        }

.swal2-progresssteps {
    align-items: center;
    margin: 0 0 1.25em;
    padding: 0;
    font-weight: 600
}

    .swal2-progresssteps li {
        display: inline-block;
        position: relative
    }

    .swal2-progresssteps .swal2-progresscircle {
        width: 2em;
        height: 2em;
        border-radius: 2em;
        background: #3085d6;
        color: #fff;
        line-height: 2em;
        text-align: center;
        z-index: 20
    }

        .swal2-progresssteps .swal2-progresscircle:first-child {
            margin-left: 0
        }

        .swal2-progresssteps .swal2-progresscircle:last-child {
            margin-right: 0
        }

        .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep {
            background: #3085d6
        }

            .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progresscircle {
                background: #add8e6
            }

            .swal2-progresssteps .swal2-progresscircle.swal2-activeprogressstep ~ .swal2-progressline {
                background: #add8e6
            }

    .swal2-progresssteps .swal2-progressline {
        width: 2.5em;
        height: .4em;
        margin: 0 -1px;
        background: #3085d6;
        z-index: 10
    }

[class^=swal2] {
    -webkit-tap-highlight-color: transparent
}

.swal2-show {
    -webkit-animation: swal2-show .3s;
    animation: swal2-show .3s
}

    .swal2-show.swal2-noanimation {
        -webkit-animation: none;
        animation: none
    }

.swal2-hide {
    -webkit-animation: swal2-hide .15s forwards;
    animation: swal2-hide .15s forwards
}

    .swal2-hide.swal2-noanimation {
        -webkit-animation: none;
        animation: none
    }

[dir=rtl] .swal2-close {
    right: auto;
    left: 0
}

.swal2-animate-success-icon .swal2-success-line-tip {
    -webkit-animation: swal2-animate-success-line-tip .75s;
    animation: swal2-animate-success-line-tip .75s
}

.swal2-animate-success-icon .swal2-success-line-long {
    -webkit-animation: swal2-animate-success-line-long .75s;
    animation: swal2-animate-success-line-long .75s
}

.swal2-animate-success-icon .swal2-success-circular-line-right {
    -webkit-animation: swal2-rotate-success-circular-line 4.25s ease-in;
    animation: swal2-rotate-success-circular-line 4.25s ease-in
}

.swal2-animate-error-icon {
    -webkit-animation: swal2-animate-error-icon .5s;
    animation: swal2-animate-error-icon .5s
}

    .swal2-animate-error-icon .swal2-x-mark {
        -webkit-animation: swal2-animate-error-x-mark .5s;
        animation: swal2-animate-error-x-mark .5s
    }

@-webkit-keyframes swal2-rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes swal2-rotate-loading {
    0% {
        -webkit-transform: rotate(0);
        transform: rotate(0)
    }

    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}


.tab {
    display: none;
}


.step {
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbbbbb;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

    .step.active {
        opacity: 1;
    }

    .step.finish {
        background-color: #4CAF50;
    }

form-control {
    min-height: 38px;
    padding-left: 5px;
    box-shadow: none !important;
    border-width: 0 0 1px 0;
    border-radius: 0;
}

.table-wrapper {
    background: #fff;
    padding: 20px 25px;
    margin: 30px auto;
    border-radius: 3px;
    box-shadow: 0 1px 1px rgba(0,0,0,.05);
}

    .table-wrapper .btn {
        float: right;
        color: #333;
        background-color: #fff;
        border-radius: 3px;
        border: none;
        outline: none !important;
        margin-left: 10px;
    }

        .table-wrapper .btn:hover {
            color: #333;
            background: #f2f2f2;
        }

        .table-wrapper .btn.btn-primary {
            color: #fff;
            background: #03A9F4;
        }

            .table-wrapper .btn.btn-primary:hover {
                background: #03a3e7;
            }

.table-title .btn {
    font-size: 13px;
    border: none;
}

    .table-title .btn i {
        float: left;
        font-size: 21px;
        margin-right: 5px;
    }

    .table-title .btn span {
        float: left;
        margin-top: 2px;
    }

.table-title {
    color: #fff;
    background: #4b5366;
    padding: 16px 25px;
    margin: -20px -25px 10px;
    border-radius: 3px 3px 0 0;
}

    .table-title h2 {
        margin: 5px 0 0;
        font-size: 24px;
    }

.show-entries select.form-control {
    width: 60px;
    margin: 0 5px;
}

.table-filter .filter-group {
    float: right;
    margin-left: 15px;
}

.table-filter input, .table-filter select {
    height: 34px;
    border-radius: 3px;
    border-color: #ddd;
    box-shadow: none;
}

.table-filter {
    padding: 5px 0 15px;
    border-bottom: 1px solid #e9e9e9;
    margin-bottom: 5px;
}

    .table-filter .btn {
        height: 34px;
    }

    .table-filter label {
        font-weight: normal;
        margin-left: 10px;
    }

    .table-filter select, .table-filter input {
        display: inline-block;
        margin-left: 5px;
    }

    .table-filter input {
        width: 200px;
        display: inline-block;
    }

.filter-group select.form-control {
    width: 110px;
}

.filter-icon {
    float: right;
    margin-top: 7px;
}

    .filter-icon i {
        font-size: 18px;
        opacity: 0.7;
    }

table.table tr th, table.table tr td {
    border-color: #e9e9e9;
    padding: 12px 15px;
    vertical-align: middle;
}

    table.table tr th:first-child {
        width: 60px;
    }

    table.table tr th:last-child {
        width: 80px;
    }

table.table-striped tbody tr:nth-of-type(odd) {
    background-color: #fcfcfc;
}

table.table-striped.table-hover tbody tr:hover {
    background: #f5f5f5;
}

table.table th i {
    font-size: 13px;
    margin: 0 5px;
    cursor: pointer;
}

table.table td a {
    font-weight: bold;
    color: #566787;
    display: inline-block;
    text-decoration: none;
}

    table.table td a:hover {
        color: #2196F3;
    }

    table.table td a.view {
        width: 30px;
        height: 30px;
        color: #2196F3;
        border: 2px solid;
        border-radius: 30px;
        text-align: center;
    }

        table.table td a.view i {
            font-size: 22px;
            margin: 2px 0 0 1px;
        }

table.table .avatar {
    border-radius: 50%;
    vertical-align: middle;
    margin-right: 10px;
}

.status {
    font-size: 30px;
    margin: 2px 2px 0 0;
    display: inline-block;
    vertical-align: middle;
    line-height: 10px;
}

.text-success {
    color: #10c469;
}

.text-info {
    color: #62c9e8;
}

.text-warning {
    color: #FFC107;
}

.text-danger {
    color: #ff5b5b;
}

.pagination {
    float: right;
    margin: 0 0 5px;
}

    .pagination li a {
        border: none;
        font-size: 13px;
        min-width: 30px;
        min-height: 30px;
        color: #999;
        margin: 0 2px;
        line-height: 30px;
        border-radius: 2px !important;
        text-align: center;
        padding: 0 6px;
    }

        .pagination li a:hover {
            color: #666;
        }

    .pagination li.active a {
        background: #03A9F4;
    }

        .pagination li.active a:hover {
            background: #0397d6;
        }

    .pagination li.disabled i {
        color: #ccc;
    }

    .pagination li i {
        font-size: 16px;
        padding-top: 6px
    }

.hint-text {
    float: left;
    margin-top: 10px;
    font-size: 13px;
}

.input-group-addon.primary {
    color: rgb(255, 255, 255);
    background-color: rgb(50, 118, 177);
    border-color: rgb(40, 94, 142);
}

.input-group-addon.success {
    color: rgb(255, 255, 255);
    background-color: rgb(92, 184, 92);
    border-color: rgb(76, 174, 76);
}

.input-group-addon.info {
    color: rgb(255, 255, 255);
    background-color: rgb(57, 179, 215);
    border-color: rgb(38, 154, 188);
}

.input-group-addon.warning {
    color: rgb(255, 255, 255);
    background-color: rgb(240, 173, 78);
    border-color: rgb(238, 162, 54);
}

.input-group-addon.danger {
    color: rgb(255, 255, 255);
    background-color: rgb(217, 83, 79);
    border-color: rgb(212, 63, 58);
}

.projects-section {
    position: relative;
    padding-top: 90px;
}

    .projects-section .owl-carousel .owl-stage-outer {
        padding: 20px 0px;
    }

    .projects-section .outer-container {
        position: relative;
        padding: 0px 50px;
    }

        .projects-section .outer-container .owl-dots {
            display: none;
        }

        .projects-section .outer-container .owl-nav {
            position: absolute;
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            z-index: -1;
        }

            .projects-section .outer-container .owl-nav .owl-prev {
                position: absolute;
                content: '';
                left: -50px;
                top: 20px;
                color: #ffffff;
                width: 50px;
                bottom: 20px;
                font-size: 24px;
                text-align: center;
                background-color: #161a33;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .projects-section .outer-container .owl-nav .owl-prev span {
                    top: 50%;
                    position: relative;
                }

            .projects-section .outer-container .owl-nav .owl-next {
                position: absolute;
                content: '';
                right: -50px;
                top: 20px;
                color: #ffffff;
                width: 50px;
                bottom: 20px;
                font-size: 24px;
                text-align: center;
                background-color: #161a33;
                -webkit-transition: all 300ms ease;
                -moz-transition: all 300ms ease;
                -ms-transition: all 300ms ease;
                -o-transition: all 300ms ease;
                transition: all 300ms ease;
            }

                .projects-section .outer-container .owl-nav .owl-next span {
                    top: 50%;
                    position: relative;
                }

                .projects-section .outer-container .owl-nav .owl-prev:hover,
                .projects-section .outer-container .owl-nav .owl-next:hover {
                    background-color: #f97534;
                }

.project-block {
    position: relative;
    z-index: 99;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
}

    .project-block .inner-box {
        position: relative;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
    }

    .project-block:hover {
        transform: scaleY(1.07);
    }

    .project-block .inner-box .image {
        position: relative;
    }

        .project-block .inner-box .image img {
            position: relative;
            width: 100%;
            display: block;
        }

        .project-block .inner-box .image .overlay-box {
            position: absolute;
            content: '';
            left: 0px;
            top: 0px;
            width: 100%;
            height: 100%;
            display: block;
            opacity: 0;
            z-index: 1;
            -webkit-transition: all 900ms ease;
            -ms-transition: all 900ms ease;
            -o-transition: all 900ms ease;
            transition: all 900ms ease;
            -webkit-transform: perspective(400px) rotateY(90deg);
            -moz-transform: perspective(400px) rotateY(90deg);
            -ms-transform: perspective(400px) rotateY(90deg);
            -o-transform: perspective(400px) rotateY(90deg);
            transform: perspective(400px) rotateY(90deg);
            -webkit-transform-origin: left;
            -moz-transform-origin: left;
            -ms-transform-origin: right;
            -o-transform-origin: left;
            transform-origin: left;
            -ms-transition: all 0.5s;
            -moz-transition: all 0.5s;
            -webkit-transition: all 0.5s;
            -o-transition: all 0.5s;
            transition: all 0.5s;
            background-color: rgba(22,26,51,0.90);
        }

    .project-block .inner-box:hover .image .overlay-box {
        opacity: 1;
        -webkit-transform: perspective(400px) rotateY(0deg);
        -moz-transform: perspective(400px) rotateY(0deg);
        -ms-transform: perspective(400px) rotateY(0deg);
        -o-transform: perspective(400px) rotateY(0deg);
        transform: perspective(400px) rotateY(0deg);
    }

    .project-block .inner-box .image .overlay-box .overlay-inner {
        position: absolute;
        left: 0px;
        bottom: 0px;
        width: 100%;
        padding: 25px 28px;
        background-color: #4682B4;
    }

    .project-block .inner-box .image .overlay-box .title {
        position: relative;
        color: #ffffff;
        font-size: 15px;
        font-weight: 400;
        padding-left: 40px;
    }

        .project-block .inner-box .image .overlay-box .title:before {
            position: absolute;
            content: '';
            left: 0px;
            top: 10px;
            width: 30px;
            height: 1px;
            background-color: rgba(255,255,255,0.30);
        }

    .project-block .inner-box .image .overlay-box h3 {
        position: relative;
        font-size: 20px;
        font-weight: 700;
        line-height: 1.3em;
        margin-top: 8px;
    }

        .project-block .inner-box .image .overlay-box h3 a {
            position: relative;
            color: #ffffff;
            -webkit-transition: all 300ms ease;
            -moz-transition: all 300ms ease;
            -ms-transition: all 300ms ease;
            -o-transition: all 300ms ease;
            transition: all 300ms ease;
        }

            .project-block .inner-box .image .overlay-box h3 a:hover {
                color: #161a33;
            }

    .project-block .inner-box .image .overlay-box .read-more {
        position: relative;
        color: #ffffff;
        font-size: 15px;
        font-weight: 700;
        margin-top: 32px;
        display: inline-block;
        -webkit-transition: all 300ms ease;
        -moz-transition: all 300ms ease;
        -ms-transition: all 300ms ease;
        -o-transition: all 300ms ease;
        transition: all 300ms ease;
        font-family: 'Playfair Display', serif;
    }

        .project-block .inner-box .image .overlay-box .read-more .arrow {
            position: relative;
            margin-left: 5px;
            top: 1px;
        }

        .project-block .inner-box .image .overlay-box .read-more:hover {
            color: #161a33;
        }

.modal-confirm {
    color: #636363;
    width: 400px;
}

    .modal-confirm .modal-content {
        padding: 20px;
        border-radius: 5px;
        border: none;
        text-align: center;
        font-size: 14px;
    }

    .modal-confirm .modal-header {
        border-bottom: none;
        position: relative;
    }

    .modal-confirm h4 {
        text-align: center;
        font-size: 26px;
        margin: 30px 0 -10px;
    }

    .modal-confirm .close {
        position: absolute;
        top: -5px;
        right: -2px;
    }

    .modal-confirm .modal-body {
        color: #999;
    }

    .modal-confirm .modal-footer {
        border: none;
        text-align: center;
        border-radius: 5px;
        font-size: 13px;
        padding: 10px 15px 25px;
    }

        .modal-confirm .modal-footer a {
            color: #999;
        }

    .modal-confirm .icon-box {
        width: 80px;
        height: 80px;
        margin: 0 auto;
        border-radius: 50%;
        z-index: 9;
        text-align: center;
        border: 3px solid #f15e5e;
    }

        .modal-confirm .icon-box i {
            color: #f15e5e;
            font-size: 46px;
            display: inline-block;
            margin-top: 13px;
        }

    .modal-confirm .btn {
        color: #fff;
        border-radius: 4px;
        background: #60c7c1;
        text-decoration: none;
        transition: all 0.4s;
        line-height: normal;
        min-width: 120px;
        border: none;
        min-height: 40px;
        border-radius: 3px;
        margin: 0 5px;
        outline: none !important;
    }

    .modal-confirm .btn-info {
        background: #c1c1c1;
    }

        .modal-confirm .btn-info:hover, .modal-confirm .btn-info:focus {
            background: #a8a8a8;
        }

    .modal-confirm .btn-danger {
        background: #f15e5e;
    }

        .modal-confirm .btn-danger:hover, .modal-confirm .btn-danger:focus {
            background: #ee3535;
        }

.trigger-btn {
    display: inline-block;
    margin: 100px auto;
}


.top-content {
    background: rgba(0, 0, 0, 0) linear-gradient(135deg, #01b9ff 0%, #ba78fe 51%, #ea51bd 100%) repeat scroll 0 0;
    background-color: #ba78fe;
}

.how-it-works-container {
    background: rgba(0, 0, 0, 0) linear-gradient(135deg, #01b9ff 0%, #ba78fe 51%, #ea51bd 100%) repeat scroll 0 0;
    background-color: #ba78fe;
}



.navbar-inverse .navbar-brand {
    color: #fff;
    font-size: 41px;
    opacity: 0.8;
    padding: 7px 11px;
}

.navbar.navbar-no-bg {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
}

.how-it-works-box {
    padding-bottom: 15px;
    padding-top: 15px;
}



.inner-bg {
    padding: 70px 0 100px;
}



.btn-link-1:hover, .btn-link-1:focus, .btn-link-1:active {
    color: #fff;
    opacity: 0.6;
    outline: 0 none;
}

.btn-link-2 {
    background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
    border: 0 none;
    border-radius: 114px;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 300;
    height: 50px;
    line-height: 16px;
    margin: 0 5px;
    padding: 15px 34px 0;
    text-transform: uppercase;
}

    .btn-link-2:hover, .btn-link-2:focus, .btn-link-2:active, .btn-link-2:active:focus {
        background: rgba(0, 0, 0, 0.3) none repeat scroll 0 0;
        color: #fff;
        opacity: 0.6;
        outline: 0 none;
    }

.top-content .text h1 {
    color: #fff;
}


.top-content .text {
    color: #fff;
    padding-top: 84px;
    text-align: left;
}

.top-content .description {
    margin: 20px 0 10px;
}

    .top-content .description p {
        opacity: 0.8;
    }

.section-container {
    margin: 0 auto;
    padding-bottom: 80px;
}

.app-features {
    padding-bottom: 30px;
}

.section-description {
    margin-top: 60px;
}


.divider-1 span {
    background: #dddddd none repeat scroll 0 0;
    display: inline-block;
    height: 1px;
    width: 200px;
}

.section-description p {
    margin-top: 20px;
}

.app-features-box {
    padding-bottom: 15px;
    padding-top: 15px;
}

    .app-features-box .app-features-box-icon {
        color: #4682B4;
        font-size: 80px;
        line-height: 80px;
    }

    .app-features-box h3 {
        margin-top: 15px;
    }



.section-container-image-bg, .section-container-image-bg h2, .section-container-image-bg h3 {
    color: #ffffff;
}

    .section-container-image-bg .divider-1 span {
        background: #ffffff none repeat scroll 0 0;
    }

.how-it-works-box-icon .how-it-works-step {
    background: #4682B4 none repeat scroll 0 0;
    border-radius: 50%;
    color: #fff;
    font-size: 24px;
    height: 32px;
    left: 95px;
    line-height: 32px;
    position: absolute;
    top: 0;
    width: 32px;
}

.how-it-works-box .how-it-works-box-icon {
    font-size: 80px;
    line-height: 80px;
    position: relative;
}

.how-it-works-box h3 {
    margin-top: 15px;
}

.section-container-image-bg, .section-container-image-bg h2, .section-container-image-bg h3 {
    color: #ffffff;
}

.how-it-works-box p {
    opacity: 0.8;
}

#contact .form-control {
    border: 1px solid #ccc !important;
    border-radius: 22px;
    box-shadow: none !important;
    height: auto;
    padding: 13px 18px;
}

.bck_gray {
    background: #fafafa none repeat scroll 0 0;
}

.social_icon_list {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}

    .social_icon_list li {
        display: inline-block;
        margin: 0 5px;
    }

        .social_icon_list li a {
            border-radius: 100%;
            color: #fff;
            display: inline-block;
            font-size: 30px;
            height: 60px;
            opacity: 1;
            padding: 5px;
            width: 60px;
        }


            .social_icon_list li a i, .social_icon_list li a i {
                margin-top: 11px;
            }

        .social_icon_list li a {
            color: #fff;
        }

        .social_icon_list li:hover a {
            opacity: 0.8;
        }

        .social_icon_list li a.fb_icon {
            background: #4682B4 none repeat scroll 0 0;
        }

        .social_icon_list li a.twit_icon {
            background: rgb(112, 186, 237) none repeat scroll 0 0;
        }

        .social_icon_list li a.gogle_plus_icon {
            background: rgb(218, 72, 53) none repeat scroll 0 0;
        }

        .social_icon_list li a.vimeo_icon {
            background: rgb(1, 185, 255) none repeat scroll 0 0;
        }

        .social_icon_list li a i, .social_icon_list li a i {
            margin-top: 11px;
        }


.vendors span {
    background: rgba(255, 255, 255, 0.2) none repeat scroll 0 0;
    border: 2px solid #fff;
    border-radius: 40px;
    color: #fff;
    font-size: 28px;
    height: 54px;
    line-height: 51px;
    text-align: center;
    width: 80px;
}

.vendors {
    margin: 50px 0 0;
}

/*Legend specific*/
.legend {
    padding: 6px 8px;
    font: 14px Arial, Helvetica, sans-serif;
    background: white;
    background: rgba(255, 255, 255, 0.8);
    /*box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);*/
    /*border-radius: 5px;*/
    line-height: 24px;
    border-radius: 5px;
    color: #555;
}

    .legend h4 {
        text-align: center;
        font-size: 16px;
        margin: 2px 12px 8px;
        color: #777;
    }

    .legend span {
        position: relative;
        text-align: left;
        float: left;
        bottom: 3px;
    }

    .legend img {
        width: 20px;
        height: 20px;
        float: left;
        margin: 0 8px 0 0;
    }

    .legend i.icon {
        background-size: 18px;
    }

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

    .card > hr {
        margin-right: 0;
        margin-left: 0;
    }

    .card > .list-group:first-child .list-group-item:first-child {
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }

    .card > .list-group:last-child .list-group-item:last-child {
        border-bottom-right-radius: 0.25rem;
        border-bottom-left-radius: 0.25rem;
    }

.card-body {
    flex: 1 1 auto;
    min-height: 1px;
    padding: 1.25rem;
}

.card-title {
    margin-bottom: 0.75rem;
}

.card-subtitle {
    margin-top: -0.375rem;
    margin-bottom: 0;
}

.card-text:last-child {
    margin-bottom: 0;
}

.card-link:hover {
    text-decoration: none;
}

.card-link + .card-link {
    margin-left: 1.25rem;
}

.card-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.box-header {
    padding: 0.75rem 1.25rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header + .list-group .list-group-item:first-child {
    border-top: 0;
}

.card-footer {
    padding: 0.75rem 1.25rem;
    background-color: rgba(0, 0, 0, 0.03);
    border-top: 1px solid rgba(0, 0, 0, 0.125);
}

    .card-footer:last-child {
        border-radius: 0 0 calc(0.25rem - 1px) calc(0.25rem - 1px);
    }

.card-header-tabs {
    margin-right: -0.625rem;
    margin-bottom: -0.75rem;
    margin-left: -0.625rem;
    border-bottom: 0;
}

.card-header-pills {
    margin-right: -0.625rem;
    margin-left: -0.625rem;
}

.card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 1.25rem;
}

.card-img,
.card-img-top,
.card-img-bottom {
    flex-shrink: 0;
    width: 100%;
}

.card-img,
.card-img-top {
    border-top-left-radius: calc(0.25rem - 1px);
    border-top-right-radius: calc(0.25rem - 1px);
}

.card-img,
.card-img-bottom {
    border-bottom-right-radius: calc(0.25rem - 1px);
    border-bottom-left-radius: calc(0.25rem - 1px);
}

.card-deck .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-deck {
        display: flex;
        flex-flow: row wrap;
        margin-right: -15px;
        margin-left: -15px;
    }

        .card-deck .card {
            flex: 1 0 0%;
            margin-right: 15px;
            margin-bottom: 0;
            margin-left: 15px;
        }
}

.card-group > .card {
    margin-bottom: 15px;
}

@media (min-width: 576px) {
    .card-group {
        display: flex;
        flex-flow: row wrap;
    }

        .card-group > .card {
            flex: 1 0 0%;
            margin-bottom: 0;
        }

            .card-group > .card + .card {
                margin-left: 0;
                border-left: 0;
            }

            .card-group > .card:not(:last-child) {
                border-top-right-radius: 0;
                border-bottom-right-radius: 0;
            }

                .card-group > .card:not(:last-child) .card-img-top,
                .card-group > .card:not(:last-child) .card-header {
                    border-top-right-radius: 0;
                }

                .card-group > .card:not(:last-child) .card-img-bottom,
                .card-group > .card:not(:last-child) .card-footer {
                    border-bottom-right-radius: 0;
                }

            .card-group > .card:not(:first-child) {
                border-top-left-radius: 0;
                border-bottom-left-radius: 0;
            }

                .card-group > .card:not(:first-child) .card-img-top,
                .card-group > .card:not(:first-child) .card-header {
                    border-top-left-radius: 0;
                }

                .card-group > .card:not(:first-child) .card-img-bottom,
                .card-group > .card:not(:first-child) .card-footer {
                    border-bottom-left-radius: 0;
                }
}

.card-columns .card {
    margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
    .card-columns {
        -moz-column-count: 3;
        column-count: 3;
        -moz-column-gap: 1.25rem;
        column-gap: 1.25rem;
        orphans: 1;
        widows: 1;
    }

        .card-columns .card {
            display: inline-block;
            width: 100%;
        }
}

/* CSS used here will be applied after bootstrap.css */
.carousel {
    margin-top: 20px;
}

.carousel-inner img {
}

.item .thumb {
    width: 25%;
    cursor: pointer;
    float: left;
}

    .item .thumb img {
        margin: 2px;
    }

.item img {
    width: 100%;
}

.container {
    width: 90%;
}

#cover-spin {
    position: fixed;
    width: 100%;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(255,255,255,0.7);
    z-index: 999999;
    display: none;
}


#result {
    padding: 3px;
    width: 100%;
    height: 100%;
    left: 0;
    opacity: 0.9; /* for demo purpose  */
    border-radius:999px;
    position:absolute;
    z-index:9999;
}

    #result ul {
        background-color: white;
        list-style-type: none;
        padding: 0;
        margin: 0;

    }

        #result ul li {
            padding: 5px 0;
            left:5px;
            margin-left:5px;
            color:black;
        }

            #result ul li:hover {
                background: #eee;
            }