﻿@import 'https://fonts.googleapis.com/css?family=Open+Sans+Condensed:700';
@import url('https://fonts.googleapis.com/css?family=Arimo:400,400i,700,700i');



html,
body {
    overflow-x: hidden; /* Prevent scroll on narrow devices */
    color: #202020;
}

body { /*padding-top: 100px;*/
}

body, h1, h2, h3, h4, h5 {
    font-family: 'Arimo',Arial,sans-serif;
    direction: rtl;
}

.ie body, .ie body h1, .ie body h2, .ie body h3, .ie body h4, .ie body h5 {
    font-family: Arial,sans-serif !important;
}

h1 {
    margin-top: 0;
    font-size: 28px;
}

a {
    color: #5a471c;
    text-decoration: none;
}

    a:active, a:visited {
        color: #5a471c;
        text-decoration: none;
    }

    a:hover, a:focus {
        color: #5a471c;
        text-decoration: none;
    }



    a.link {
        color: #248281;
        text-decoration: underline;
    }

        a.link:hover, a.link:focus {
            color: #074847;
            text-decoration: underline;
        }

img, table {
    max-width: 100%;
}


/*FORMS STYLES*/
label {
    font-weight: normal;
}

:focus {
    outline: 0;
}

input[type="submit"] {
    -webkit-appearance: none;
    border-radius: 0;
}

textarea, input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="tel"], input[type="number"], input[type="date"], input[type="range"] {
    -webkit-appearance: none;
    background: #fff;
    color: #48484A;
    border: solid 1px #ccc;
    padding: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 14px;
    resize: none;
    max-width: 100%;
    line-height: normal;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    height: 48px;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -moz-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}

textarea {
    height: auto;
}

    input[type=text]:focus,
    input[type=text]:hover,
    input[type=tel]:focus,
    input[type=tel]:hover,
    input[type=url]:focus,
    input[type=url]:hover,
    input[type=email]:focus,
    input[type=email]:hover,
    input[type=number]:focus,
    input[type=number]:hover,
    input[type=range]:focus,
    input[type=range]:hover,
    textarea:focus,
    textarea:hover {
    }


select {
    display: block;
    outline: none;
    width: 100%;
    border: 1px solid #ccc;
    padding: 10px 10px 10px 37px;
    margin: 0;
    max-width: 100%;
    font-family: inherit;
    color: inherit;
    background-image: url(../images/select.png);
    background-position: center left;
    background-repeat: no-repeat;
    background-color: white;
    border-radius: 2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 48px !important;
    font-size: 14px;
    line-height: 14px;
}

    select[multiple] {
        background: none;
        height: auto;
    }


::-webkit-input-placeholder {
    line-height: 16px;
    -webkit-font-smoothing: antialiased;
    opacity: 1;
}

::-moz-placeholder {
    line-height: 16px;
    -webkit-font-smoothing: antialiased;
    opacity: 1;
}

:-moz-placeholder {
    line-height: 16px;
    -webkit-font-smoothing: antialiased;
    opacity: 1;
}

:-ms-input-placeholder {
    line-height: 16px;
    -webkit-font-smoothing: antialiased;
    opacity: 1;
}

[class^=iradio] + label, [class^=icheckbox] + label {
    margin-right: 10px;
    white-space: normal;
}

/*{
    text-transform: none;
    color: red !important;
    font-size: 16px;
    line-height: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    opacity: 1;
}*/



.hidden {
    display: none;
}


input[type="radio"], input[type="checkbox"] {
    display: inline;
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0;
}



#cart {
    display: block;
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 70px;
    height: 70px;
    border-radius: 35px;
    background-color: #bee9f1;
    color: #5a471c;
    font-size: 27px;
    text-align: center;
    line-height: 70px;
    backface-visibility: hidden;
    -webkit-animation: rotate 2.5s infinite ease-in-out;
    -o-animation: rotate 2.5s infinite ease-in-out;
    -moz-animation: rotate 2.5s infinite ease-in-out;
    -ms-animation: rotate 2.5s infinite ease-in-out;
    animation: rotate 2.5s infinite ease-in-out;
    /*background-image:url(/images/cart.png);
    background-position:center center;
    background-repeat:no-repeat;*/
}

    #cart i {
        width: 70px;
        text-align: center;
    }

    #cart span.count {
    }

    #cart span.bg {
        opacity: .4;
        -webkit-animation: playbg 2s infinite ease-in-out !important;
        -o-animation: playbg 2s infinite ease-in-out !important;
        -moz-animation: playbg 2s infinite ease-in-out !important;
        -ms-animation: playbg 2s infinite ease-in-out !important;
        animation: playbg 2s infinite ease-in-out !important;
        backface-visibility: hidden;
        border-radius: 50%;
        height: 90px;
        width: 90px;
        z-index: -1;
        position: absolute;
        display: block;
        background-color: #bee9f1;
        right: -10px;
        top: -10px;
        left: -10px;
        bottom: -10px;
    }


@-o-keyframes playbg {
    0% {
        -o-transform: scale(0.6);
        opacity: .4;
    }

    50% {
        -o-transform: scale(1);
        opacity: 0;
    }

    100% {
        -o-transform: scale(0.6);
        opacity: 0;
    }
}

@-webkit-keyframes playbg {
    0% {
        -webkit-transform: scale(0.6);
        opacity: 0;
    }

    50% {
        -webkit-transform: scale(1);
        opacity: .4;
    }

    100% {
        -webkit-transform: scale(0.6);
        opacity: 0;
    }
}

@-moz-keyframes playbg {
    0% {
        -moz-transform: scale(0.6);
        opacity: 0;
    }

    50% {
        -moz-transform: scale(1);
        opacity: .4;
    }

    100% {
        -moz-transform: scale(0.6);
        opacity: 0;
    }
}

@keyframes playbg {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }

    50% {
        transform: scale(1);
        opacity: .4;
    }

    100% {
        transform: scale(0.6);
        opacity: 0;
    }
}

@-ms-keyframes playbg {
    0% {
        -ms-transform: scale(0.6);
        opacity: 0;
    }

    50% {
        -ms-transform: scale(1);
        opacity: .4;
    }

    100% {
        -ms-transform: scale(0.6);
        opacity: 0;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
    }

    4% {
        -webkit-transform: rotate(-10deg);
    }

    8% {
        -webkit-transform: rotate(0deg);
    }

    12% {
        -webkit-transform: rotate(-10deg);
    }

    16% {
        -webkit-transform: rotate(0deg);
    }

    20% {
        -webkit-transform: rotate(-10deg);
    }

    24% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(0deg);
    }
}

@-moz-keyframes rotate {
    0% {
        -moz-transform: rotate(0deg);
    }

    4% {
        -moz-transform: rotate(-10deg);
    }

    8% {
        -moz-transform: rotate(0deg);
    }

    12% {
        -moz-transform: rotate(-10deg);
    }

    16% {
        -moz-transform: rotate(0deg);
    }

    20% {
        -moz-transform: rotate(-10deg);
    }

    24% {
        -moz-transform: rotate(0deg);
    }

    100% {
        -moz-transform: rotate(0deg);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }

    4% {
        transform: rotate(-10deg);
    }

    8% {
        transform: rotate(0deg);
    }

    12% {
        transform: rotate(-10deg);
    }

    16% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(-10deg);
    }

    24% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(0deg);
    }
}


label.form-error {
    color: #e4b3af;
    font-weight: normal;
    font-size: 18px;
    text-transform: none;
    position: absolute;
    top: 0px;
    left: 15px;
    font-family: Arial;
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 10px 10px 0 0;
    border-color: #d9534f transparent transparent transparent;
    line-height: 0px;
    _border-color: #e4b4af #000000 #000000 #000000;
    _filter: progid:DXImageTransform.Microsoft.Chroma(color='#000000');
    overflow: hidden;
}

select + label.form-error { /* right: 23px; */
}

.form-error.LTR + label.form-error {
    left: 0;
}

div.form-error {
    color: #F36523;
}

input.form-error, textarea.form-error, select.form-error, .form-error + .chosen-container .chosen-single {
    border: 1px solid rgba(185, 74, 72, 0.39);
    background-color: rgba(255, 122, 13, 0.06);
}

    input.form-error:focus, textarea.form-error:focus, select.form-error:focus {
        border: 1px solid rgba(185, 74, 72, 0.39);
        background-color: rgba(255, 122, 13, 0.06);
    }

    input.form-error + label + .input-group-addon {
        background-color: rgba(255, 122, 13, 0.06);
        border-color: rgba(185, 74, 72, 0.39);
    }

    input.form-error:focus + label + .input-group-addon {
        background-color: rgba(255, 122, 13, 0.06);
        border-color: #FF7A0D;
    }

.form-control:focus + .input-group-addon {
    border-color: rgba(46, 46, 46, 0.4);
}


input.form-error::-webkit-input-placeholder {
    color: rgba(185, 74, 72, 0.6) !important;
}

input.form-error::-moz-placeholder {
    color: rgba(185, 74, 72, 0.6) !important;
}

input.form-error:-moz-placeholder {
    color: rgba(185, 74, 72, 0.6) !important;
}

input.form-error:-ms-input-placeholder {
    color: rgba(185, 74, 72, 0.6) !important;
}






.blue-bg {
    background-color: #d4f2f7;
}

.brown {
    color: #5a471c;
}

.badge-m {
    padding: 6px 13px;
    border-radius: 13px;
    font-weight: normal;
}

.bold {
    font-weight: bold !important;
}

.font-size-14 {
    font-size: 14px;
}

.pt-30 {
    padding-top: 30px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pl-30 {
    padding-left: 30px;
}

.pr-30 {
    padding-right: 30px;
}

.mt-60 {
    margin-top: 60px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-15 {
    margin-top: 15px;
}

.mt-10 {
    margin-top: 10px;
}

.mt-20 {
    margin-top: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-60 {
    margin-bottom: 60px;
}

.mr-10 {
    margin-right: 10px;
}

.ml-10 {
    margin-left: 10px;
}

.r-5 {
    border-radius: 5px;
}

.brown-dotted-border {
    border-bottom: 1px dotted #a1771f;
    min-height: 1px;
}

.width-auto {
    width: auto !important;
}


.list > .item {
    margin-bottom: 20px;
    display: table;
    clear: both;
}


@media (min-width: 568px) {
    .list > .item > .image, .list > .item > .content {
        display: table-cell;
        vertical-align: top;
        padding: 5px;
    }

    .list > .item > .image {
        width: 30%;
    }

    .list > .item > .content {
    }
}


/*.table-sm .row, .table-sm .col { margin: 0; padding: 0; }*/
@media (min-width: 768px) {
    .table-sm {
        display: table;
    }

        .table-sm .row {
            display: table-row;
        }

        .table-sm .col {
            display: table-cell;
            vertical-align: top;
        }

            .table-sm .col.middle {
                vertical-align: middle;
            }

        .table-sm .col-30 {
            width: 30%;
        }
}



.signup-table div.col-table-cell:nth-child(2) {
    display: none;
}

@media (min-width: 768px) {
    .signup-table {
        display: table;
        width: 100%;
        border-collapse: collapse;
    }

    .col-table-cell {
        display: table-cell;
        height: 100%;
    }

    .signup-table div.col-table-cell:nth-child(1) {
        width: 50%;
        padding-left: 40px;
    }

    .signup-table div.col-table-cell:nth-child(2) {
        display: table-cell;
        width: 1px;
        padding: 0;
        text-align: center;
        height: 100%;
        border-right: 1px solid #ccc;
        vertical-align: middle;
    }

    .signup-table div.col-table-cell:nth-child(3) {
        width: 50%;
        padding-right: 33px;
        vertical-align: top;
    }
}

@media (min-width: 992px) {
    .signup-table div.col-table-cell:nth-child(1) {
        width: 40%;
        padding-left: 40px;
    }

    .signup-table div.col-table-cell:nth-child(3) {
        width: 60%;
        padding-right: 40px;
    }


    .signup-table.shipping-table div.col-table-cell:nth-child(1) {
        width: 50%;
        padding-left: 40px;
    }

    .signup-table.shipping-table div.col-table-cell:nth-child(3) {
        width: 50%;
        padding-right: 40px;
    }
}



.or-text {
    background-color: #FFFFFF;
    border: 1px solid #ccc;
    padding: 10px 12px;
    font-size: 14px;
    color: #474948;
    border-radius: 20px;
    outline: 9px solid white;
    margin-right: -21px;
}


.signup-table h3 {
    margin-top: 0;
    padding-top: 0;
}



.form-floating-pattern {
}

    .form-floating-pattern .form-group, .form-floating-pattern .form-group > div { /* position:relative; */
    }

label.floating-label {
    color: #ccc;
    background-color: transparent;
    text-decoration: none;
    position: absolute;
    top: 0;
    right: 21px;
    left: 34px;
    z-index: -1;
    font-size: 10px;
    opacity: 0;
    transition: top 200ms, opacity 200ms;
}

    label.floating-label.focus {
        color: #479ba2;
        font-weight: bold;
    }

label.floating {
    top: 1px;
    z-index: 1;
    padding: 4px 3px 0;
    opacity: 1.0;
}

.form-control {
    padding: 15px 10px;
    transition: top 200ms, opacity 200ms;
}

    .form-control:focus {
        border-color: #97d4d9;
        outline: 0;
        -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 242, 247, 0.6);
        box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(212, 242, 247, 0.60);
    }

    .form-control.floating {
        padding: 20px 10px 10px;
    }


.form-floating-pattern .form-group > label.floating-label {
    right: 8px;
}

.chosen-search .floating-label {
    display: none !important;
}

input.form-control:-webkit-autofill, textarea.form-control:-webkit-autofill, select.form-control:-webkit-autofill {
    background-color: rgb(255, 255, 255) !important;
    background-image: none;
    color: rgb(0, 0, 0);
}



.btn-link {
    color: #5a471c !important;
    text-decoration: underline;
}

    .btn-link:hover, .btn-link:focus {
        color: #c75300;
        text-decoration: underline;
        background-color: transparent;
    }


.extra-nav > a, .navbar-header > a {
    float: right;
    margin-left: 15px;
    color: #333;
    line-height: 28px;
    font-size: 14px;
    margin-top: 9px;
}

    .extra-nav > a i, .navbar-header > a i {
        padding-left: 6px;
    }

.navbar-header > a {
    float: left;
}

.navbar-header .profile-menu-dropdown {
    left: auto;
    right: 0;
}


.profile-menu {
    float: right;
    margin-top: 13px;
}

.navbar-header .profile-menu {
    float: left;
    margin-left: 20px;
    position: relative;
    display: none;
}

.navbar-header .login-lnk {
    display: none;
}

@media (max-width: 991px) {
    .navbar-header .profile-menu {
        display: block;
    }

    .navbar-header .login-lnk {
        display: block;
    }
}



.btn-custom {
    color: #5a471c;
    background-color: #a4e4ef;
    border-color: #a4e4ef;
    width: 100%;
    padding: 13px 15px;
}

    .btn-custom:hover,
    .btn-custom:focus,
    .btn-custom:active,
    .btn-custom.active,
    .open .dropdown-toggle.btn-custom {
        color: #5a471c;
        background-color: #b9eaf3;
        border-color: #b9eaf3;
    }

    .btn-custom:active,
    .btn-custom.active,
    .open .dropdown-toggle.btn-custom {
        background-image: none;
    }

    .btn-custom.disabled,
    .btn-custom[disabled],
    fieldset[disabled] .btn-custom,
    .btn-custom.disabled:hover,
    .btn-custom[disabled]:hover,
    fieldset[disabled] .btn-custom:hover,
    .btn-custom.disabled:focus,
    .btn-custom[disabled]:focus,
    fieldset[disabled] .btn-custom:focus,
    .btn-custom.disabled:active,
    .btn-custom[disabled]:active,
    fieldset[disabled] .btn-custom:active,
    .btn-custom.disabled.active,
    .btn-custom[disabled].active,
    fieldset[disabled] .btn-custom.active {
        background-color: #b9eaf3;
        border-color: #b9eaf3;
    }


.btn-custom-default {
    color: #5a471c;
    background-color: #ffffff;
    border-color: #ccc;
    padding: 13px 15px;
}

    .btn-custom-default:hover,
    .btn-custom-default:focus,
    .btn-custom-default:active,
    .btn-custom-default.active,
    .open .dropdown-toggle.btn-custom-default {
        color: #5a471c;
        background-color: #ebebeb;
        border-color: #ebebeb;
    }

    .btn-custom-default:active,
    .btn-custom-default.active,
    .open .dropdown-toggle.btn-custom-default {
        background-image: none;
    }

    .btn-custom-default.disabled,
    .btn-custom-default[disabled],
    fieldset[disabled] .btn-custom-default,
    .btn-custom-default.disabled:hover,
    .btn-custom-default[disabled]:hover,
    fieldset[disabled] .btn-custom-default:hover,
    .btn-custom-default.disabled:focus,
    .btn-custom-default[disabled]:focus,
    fieldset[disabled] .btn-custom-default:focus,
    .btn-custom-default.disabled:active,
    .btn-custom-default[disabled]:active,
    fieldset[disabled] .btn-custom-default:active,
    .btn-custom-default.disabled.active,
    .btn-custom-default[disabled].active,
    fieldset[disabled] .btn-custom-default.active {
        background-color: #ebebeb;
        border-color: #ebebeb;
    }


.website-search {
    padding: 10px 20px 10px 0px;
    float: right;
}

    .website-search .form-group {
        padding: 3px 0px;
        margin-bottom: 0;
        position: relative;
    }

    .website-search input[type=text] {
        width: 150px;
        height: 26px;
        font-size: 14px;
        border: none;
        border-bottom: 1px solid #e2e2e2; /* background-color: rgb(255, 255, 255); */
        color: #333;
        padding: 0 6px 0 29px;
        border-radius: 0;
        -moz-transition: all .3s ease-out;
        -o-transition: all .3s ease-out;
        -webkit-transition: all .3s ease-out;
        transition: all .3s ease-out;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        /*.website-search input[type=text]::-webkit-input-placeholder {color:#FFFFFF;}
.website-search input[type=text]::-moz-placeholder          {color:#FFFFFF;}
.website-search input[type=text]:-moz-placeholder           {color:#FFFFFF;}
.website-search input[type=text]:-ms-input-placeholder      {color:#FFFFFF;}*/



        .website-search input[type=text]:focus {
            width: 200px;
        }

    .website-search a.btn-search {
        position: absolute;
        top: 6px;
        bottom: 0;
        left: 5px;
        color: #444;
    }

    .website-search input[type=text]:focus + a.btn-search {
        color: #444;
    }

    .website-search input:-webkit-autofill,
    .website-search input:-webkit-autofill:hover,
    .website-search input:-webkit-autofill:focus,
    .website-search input:-webkit-autofill:active {
        background-color: rgb(0, 164, 182) !important;
        color: #444 !important;
        -webkit-box-shadow: 0 0 0 50px rgb(71, 73, 72) inset; /* Change the color to your own background color */
        -webkit-text-fill-color: #FFFFFF;
    }

    .website-search input[type=text]:focus, .website-search input[type=email]:focus, .website-search input[type=password]:focus, .website-search input[type=url]:focus, .website-search input[type=number]:focus { /* background: rgb(7, 117, 125); */
    }

    .website-search input[type=text]:hover, .website-search input[type=email]:hover, .website-search input[type=password]:hover, .website-search input[type=url]:hover, .website-search input[type=number]:hover { /* background: rgb(7, 117, 125); */
    }


@media (max-width: 768px) {

    .website-mobile-search {
        padding: 0 !important;
    }

        .website-mobile-search .form-group {
            padding: 0 !important;
            margin-bottom: 0;
        }

        .website-mobile-search input[type=text] {
            width: 100%;
            font-size: 20px;
            border: none;
            text-align: center;
            color: #666;
            padding: 0 10px 0 35px;
            border-radius: 0;
            -moz-transition: all .3s ease-out;
            -o-transition: all .3s ease-out;
            -webkit-transition: all .3s ease-out;
            transition: all .3s ease-out;
        }

            .website-mobile-search input[type=text]:focus {
            }

        .website-mobile-search a.btn-search {
            position: absolute;
            top: 15px;
            bottom: 0;
            left: 15px;
            color: #666;
        }

        .website-mobile-search input[type=text]:focus + a.btn-search {
            color: #666;
        }

        .website-mobile-search input:-webkit-autofill,
        .website-mobile-search input:-webkit-autofill:hover,
        .website-mobile-search input:-webkit-autofill:focus,
        .website-mobile-search input:-webkit-autofill:active {
            background-color: #FFFFFF !important;
            color: #fff !important;
            -webkit-box-shadow: 0 0 0 50px #FFFFFF inset;
            -webkit-text-fill-color: #666;
        }


    .navbar-header { /* display: table; */ /* width: 100%; */
    }

        .navbar-header > button, .navbar-header > a, .navbar-header > div { /* display: table-cell; */ /* float: none !important; */ /* vertical-align: middle; */
        }

    .user-menu-toggle {
        padding: 0 15px !important;
        margin: 0 !important;
    }

        .user-menu-toggle span {
            width: 35px;
            height: 35px;
            margin: 0 auto;
            display: block;
        }

            .user-menu-toggle span img {
                width: 35px;
                height: 35px;
                display: block;
            }

    .navbar-header > a { /* width: 58px; */
    }
}



.contactus-page > .text {
    padding: 30px 0 50px;
}


/*---- Back to top button --------*/
#go-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    text-indent: -999em; /* Hide text */
    color: white;
    background-color: rgba(0, 0, 0, 0.3);
    background-image: url(../images/back-to-top.png);
    padding: 0;
    height: 50px;
    width: 50px;
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
    z-index: 999;
    display: none;
    -webkit-transition: opacity 0.4s ease-in-out 0s;
    -moz-transition: opacity 0.4s ease-in-out 0s;
    transition: opacity 0.4s ease-in-out 0s;
}

    #go-to-top:hover {
        opacity: 0.9;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=90)";
        filter: alpha(opacity=90);
        background-color: rgba(0, 0, 0, 0.6);
    }

@media only screen and (max-width: 767px) {
    #go-to-top {
        height: 30px;
        width: 30px;
        background-size: cover;
    }
}


header {
}
/* ------------------ Header Area Styling ---------------------*/
#title-area {
    display: block;
    padding: 40px 0 0;
}

    #title-area h1, #title-area h2 {
        color: #444;
        margin: 0;
        font-size: 27px;
    }

@media only screen and (max-width: 767px) {
    #title-area h3 {
        font-size: 22px;
    }

    #title-area h1, #title-area h2 {
        font-size: 25px;
        line-height: 38px;
    }
}

/*----------- Breadcrumb trail ---------- */
#breadcrumbs {
    margin: 0 0 20px 0;
    color: #d11d05;
    font-size: 13px;
    font-style: italic;
}

    #breadcrumbs .sep {
        margin: 0 2px;
    }

#main {
}

    #main > .row {
        padding-bottom: 40px;
        padding-top: 0px;
    }

.images {
}

    .images img {
        display: block;
        margin-bottom: 20px;
    }

        .images img:last-child {
            margin-bottom: 5px;
        }



    .images.grid:before, .images.grid:after {
        content: " ";
        display: table;
    }

    .images.grid:after {
        clear: both;
    }

    .images.grid img {
        display: block;
        margin-bottom: 0;
        width: 100%;
    }

        .images.grid img:last-child {
            margin-bottom: 0;
        }

    .images.grid .item {
        width: 50%;
        float: right;
        margin: 0;
        padding: 1px;
        overflow: hidden;
        display: block !important;
        clear: none !important;
    }

    .images.grid a {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0px;
        position: relative;
    }

        .images.grid a .zoom {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: rgba(255, 17, 70, 0);
        }

        .images.grid a:hover .zoom {
            background-color: rgba(164, 164, 164, 0.27);
            -webkit-transition: 0.3s linear;
            -moz-transition: 0.3s linear;
            transition: 0.3s linear;
        }

    .images.grid .zoom i {
        font-size: 40px;
        color: rgba(255, 255, 255, 0);
        text-align: center;
        width: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -20px;
        margin-top: -20px;
    }

    .images.grid a:hover .zoom i {
        color: rgba(255, 255, 255, 1);
        -webkit-transition: 0.3s linear;
        -moz-transition: 0.3s linear;
        transition: 0.3s linear;
    }

    .images.grid h3 {
        display: block;
        text-align: center;
        color: #000;
        padding: 18px 0;
        font-size: 22px;
        margin: 0 10px 20px;
        border-bottom: 1px solid #E4E4E4;
    }

@media (min-width: 768px) {
    .images.grid.grid .item {
        width: 25%;
    }
}









article .images {
    margin-bottom: 20px;
}

    article .images:before, article .images:after {
        content: " ";
        display: table;
    }

    article .images:after {
        clear: both;
    }

    article .images img {
        display: block;
        margin-bottom: 0;
        width: 100%;
    }

        article .images img:last-child {
            margin-bottom: 0;
        }

    article .images .item {
        width: 50%;
        float: right;
        margin: 0;
        padding: 1px;
        overflow: hidden;
        display: block !important;
        clear: none !important;
    }

    article .images a {
        display: block;
        width: 100%;
        margin: 0;
        padding: 0px;
        position: relative;
    }

        article .images a .zoom {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background-color: rgba(255, 17, 70, 0);
        }

        article .images a:hover .zoom {
            background-color: rgba(164, 164, 164, 0.27);
            -webkit-transition: 0.3s linear;
            -moz-transition: 0.3s linear;
            transition: 0.3s linear;
        }

    article .images .zoom i {
        font-size: 40px;
        color: rgba(255, 255, 255, 0);
        text-align: center;
        width: 40px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -20px;
        margin-top: -20px;
    }

    article .images a:hover .zoom i {
        color: rgba(255, 255, 255, 1);
        -webkit-transition: 0.3s linear;
        -moz-transition: 0.3s linear;
        transition: 0.3s linear;
    }

    article .images h3 {
        display: block;
        text-align: center; /* width:100%; */
        color: #000;
        padding: 18px 0;
        font-size: 22px;
        margin: 0 10px 20px;
        border-bottom: 1px solid #E4E4E4;
    }

@media (min-width: 768px) {
    article .images {
        float: left;
        margin-right: 20px;
        margin-bottom: 30px;
        width: 50%;
    }

        article .images.list .item {
            width: 100%;
            margin-bottom: 20px;
        }

        article .images.grid .item {
            width: 50%;
            float: left;
        }
}




/*-EVENTS-*/


.lastevents {
}

    .lastevents ul, .lastevents ul li {
        list-style: none;
        display: block;
        margin: 0;
        padding: 0;
    }

        .lastevents ul li {
            border-top: 1px dotted #888;
            padding: 5px 0;
        }

            .lastevents ul li:first-child {
                border-top: none;
            }

            .lastevents ul li a {
                display: block;
                color: #444;
            }

                .lastevents ul li a i {
                    font-size: 37px;
                    float: right;
                    padding-left: 15px;
                    color: #ccc;
                }

                .lastevents ul li a small {
                    font-size: 14px;
                    color: #5a471c;
                }

                .lastevents ul li a p {
                }





/*CALENDAR BLOCK*/
.calendarBlock {
    width: 100%;
}

    .calendarBlock tr td {
        text-align: center;
    }

.calendarBlock_inner {
    width: 100%;
    margin: 10px auto;
}

.MonthTable {
    width: 100%;
}

    .MonthTable td {
        width: 14.28%;
        padding: 3px;
        border: 1px solid #ccc;
        cursor: pointer;
    }

    .MonthTable tr:first-child td {
        border: none;
        cursor: default;
    }

.calendarBlockTitle {
}

    .calendarBlockTitle table {
    }

        .calendarBlockTitle table td {
            cursor: pointer;
        }

            .calendarBlockTitle table td:nth-child(2) {
                font-size: 20px;
            }

.CalendarBlockDayHeader {
    color: #4f5a61;
}

.calendarBlockDay {
    color: #444;
    background-color: #fff;
}

.CalendarBlockSelectedDay {
    background-color: #0084CF;
    color: #ffffff;
}

.CalendarBlockActiveDay {
    background-color: #C0C0C0;
    color: #444;
}

.CalendarBlockOtherMonthDay {
    background-color: #f1f1f1;
}




.extra-nav {
    float: left; /* padding: 51px 0px; */
    clear: left;
}

    .extra-nav .navbar-nav { /* float: none !important; */
    }

    /*.extra-nav li > a
{
    font-size: 14px;
    color: #ffffff !important;
}

.extra-nav li > a:hover
{
    color: #B0B0B0 !important;
}*/

    .extra-nav li > a > i {
        padding-left: 10px;
    }


.phone {
    text-align: left;
    margin-top: 60px;
    float: left;
    clear: left;
}

    .phone a {
        font-size: 33px;
        color: #5a5959;
        font-family: 'Open Sans Condensed', sans-serif;
        display: inline-block;
        line-height: 35px;
    }

        .phone a:hover, .phone a:focus {
            text-decoration: none;
        }

    .phone img {
        display: inline-block;
        float: left;
        margin-right: 10px;
    }


@media (min-width: 992px) {
    .phone {
        margin-top: 20px;
    }
}




header .navbar-brand span {
    display: inline;
}

header .navbar-brand img {
    max-width: 100%;
    max-height: 122px;
    display: block;
}

@media (max-width: 384px) {
    header .navbar {
        text-align: center;
    }

    header .navbar-brand, header .navbar-brand:hover, header .navbar-brand:focus {
        margin: 0 auto;
        float: none;
        display: inline-block;
    }

    .phone {
        text-align: center;
        margin-top: 0;
        float: none;
        clear: both;
        display: inline-block;
        margin-bottom: 20px;
    }
}

.toggle1 {
    display: block !important;
}

.toggle2 {
    display: none !important;
}

header .navbar {
    background-color: transparent;
    border-width: 0 0 0px;
    border: none;
    border-bottom: 5px solid #97d4d9;
}

header .navbar-toggle:hover, header .navbar-toggle:focus {
    background-color: transparent;
    border: none;
}

header .navbar-collapse {
    max-height: none;
}

header .main-nav .navbar-nav > li > a {
    color: #5a471c !important;
    background-color: #d4f2f7;
    font-size: 16px;
    border-bottom: 1px solid #fff;
}

    header .main-nav .navbar-nav > li > a:hover, header .main-nav .navbar-nav > li > a:focus {
        background-color: #bee9f1;
    }




header .navbar .navbar-toggle .icon-bar {
    background-color: #5a471c;
}

header .navbar .navbar-toggle {
    padding: 16px 10px;
    float: right;
    outline: none;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    background-color: transparent;
    border: none;
    float: right;
}

header .navbar .navbar-collapse {
    padding: 0; /* margin: 0; */
    text-align: right;
}

.navbar-default .navbar-toggle:hover, .navbar-default .navbar-toggle:focus {
    background-color: transparent;
}


header .main-nav .nav .open > a, header .main-nav .nav .open > a:hover, header .main-nav .nav .open > a:focus {
    background-color: #bee9f1 !important;
    border-color: #fff;
}

header a.navbar-brand:active, header a.navbar-brand:visited, header a.navbar-brand:checked, header a.navbar-brand:focus {
    background-color: #fff !important;
}


header .navbar .dropdown-menu.sub-menu, .navbar-nav .open .dropdown-menu.sub-menu {
    min-width: 200px;
    padding: 0;
    margin: 0;
    margin-top: 0px !important;
    font-size: 14px;
    text-align: right;
    list-style: none;
    background-color: #bee9f1;
    border-radius: 0;
    border: none;
    -webkit-box-shadow: none;
    box-shadow: none;
}



    header .navbar .dropdown-menu.sub-menu li {
        border-bottom: none;
    }

        header .navbar .dropdown-menu.sub-menu li a:before {
            content: '';
        }

        header .navbar .dropdown-menu.sub-menu li > a {
            color: #444 !important;
            font-size: 15px;
            background-color: transparent;
            border: none;
            outline: none;
            padding-top: 10px !important;
            padding-bottom: 10px !important;
        }

            header .navbar .dropdown-menu.sub-menu li > a:hover {
                color: #444 !important;
                -webkit-transition: all ease-in-out 0.3s;
                -moz-transition: all ease-in-out 0.3s;
                transition: all ease-in-out 0.3s; /* background-color: rgba(255, 255, 255, 0.2) !important; */
            }


@media (min-width: 768px) {

    .navbar .container {
        width: auto;
    }


    header .navbar-brand, header .navbar-brand:hover, header .navbar-brand:focus { /* background-color: #FFFFFF !important; */ /* padding: 40px 34px 33px; */ /* display: block; */ /* position: absolute; */ /* top: 6px; */ /* left: 20px; */
    }

        header .navbar-brand span {
            display: inline;
        }

        header .navbar-brand img {
            max-width: 100%;
            max-height: 122px;
            display: block;
        }

    header .main-nav .nav > li > a {
        padding: 0px 16px 0px;
        font-size: 17px;
        line-height: 50px;
    }
}

@media (max-width: 768px) {
    header .container {
        max-width: none;
    }
}

@media (min-width: 992px) {
    .main-nav .navbar-nav {
        border-top: 1px solid rgb(226, 226, 226);
        float: none !important;
        margin-right: 0 !important; /* border-bottom: 5px solid #97d4d9; */
    }

    .toggle1 {
        display: none !important;
    }

    .toggle2 {
        display: none !important;
    }

    header { /* background-color: #045d64; */
        padding: 0;
    }

    .phone { /* color: #004D8D; */ /* font-family: 'Oswald', sans-serif; */ /* font-size: 36px; */ /* line-height: 33px; */ /* padding-top: 20px; */ /* letter-spacing: 2px; */ /* display: block; */
    }

    header .navbar-brand, header .navbar-brand:hover, header .navbar-brand:focus { /* background-color: #FFFFFF !important; */ /* padding: 35px 34px 33px; */ /* display: block; */ /* position: absolute; */ /* top: 6px; */ /* left: 0; */
    }

        header .navbar-brand span {
            display: inline;
        }

        header .navbar-brand img {
            max-width: 100%;
            max-height: 140px;
            display: block;
        }

    header .main-nav .nav > li > a {
        background-color: transparent;
        border-bottom: none;
    }

    header .main-nav .nav > li:first-child {
        background: none;
    }

    header .main-nav .nav > li {
        background: url(../images/marker0.png) right center no-repeat;
    }

        header .main-nav .nav > li:hover + li {
            background: none;
        }

        header .main-nav .nav > li > a:hover, header .nav > li > a.active, header .main-nav .nav > li > a:active { /* border-bottom: 5px solid transparent; */
            background-color: #d4f2f7;
        }

    header .main-nav .nav .open > a, header .main-nav .nav .open > a:hover, header .main-nav .nav .open > a:focus {
    }

    header .main-nav .dropdown:hover .dropdown-menu {
        display: block;
    }

    header .main-nav .dropdown:hover > a {
        background-color: #d4f2f7;
    }

    header .navbar .dropdown-menu.sub-menu li {
        border-bottom: 1px solid #b8dde0;
    }

    header .navbar .dropdown-menu.sub-menu {
        min-width: 200px;
        padding: 0;
        margin: 0;
        margin-top: 0px !important;
        font-size: 14px;
        text-align: right;
        list-style: none;
        background-color: #d4f2f7;
        border-radius: 0;
        border: none;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        header .navbar .dropdown-menu.sub-menu li:last-child {
            border-bottom: none;
        }

        header .navbar .dropdown-menu.sub-menu li > a {
            color: #444;
            font-size: 15px;
            padding: 10px 20px 10px 60px;
        }

            header .navbar .dropdown-menu.sub-menu li > a:hover {
                color: #444;
                -webkit-transition: all ease-in-out 0.3s;
                -moz-transition: all ease-in-out 0.3s;
                transition: all ease-in-out 0.3s;
                background-color: #bee9f1 !important;
            }
}







@media (min-width: 1200px) {
    .navbar .container {
        width: 1170px;
    }

    header .main-nav .nav > li > a {
        padding: 0px 17px 0px; /*padding: 50px 17px 5px;*/
        font-size: 19px;
        line-height: 50px; /* border-bottom: 5px solid transparent; */
    }
}






@media (max-width: 990px) {
    .navbar-header {
        float: none !important;
        clear: both;
        border-top: 1px solid #ccc; /* border-bottom: 5px solid #97d4d9; */
    }

    .navbar-toggle {
        display: block;
    }

    .navbar-collapse {
        border-top: none;
        box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
    }

        .navbar-collapse.collapse {
            display: none !important;
        }

    .collapse.in {
        display: block !important;
    }

    .navbar-nav {
        float: none !important;
        margin: 0 0 !important; /* margin-right: 0 !important; */
    }

    .main-nav .navbar-nav > li {
        float: none; /*border-bottom: 1px solid #e6e6e6;*/
    }

    .navbar-nav > li:last-child {
        border-bottom: none;
    }

    .navbar-nav > li > a {
        padding-top: 10px;
        padding-bottom: 10px;
    }


    .navbar-nav .open .dropdown-menu.sub-menu {
        position: static;
        float: none;
        width: auto;
        margin-top: 0; /* background-color: transparent; */
        border: 0;
        box-shadow: none;
    }




    .navbar-default .navbar-nav > .dropdown > a .caret {
        margin-left: 3px;
        border-top: 4px solid transparent;
        border-right: 4px solid #000;
        border-left: 0 dotted;
        border-bottom: 4px solid transparent;
    }

    .navbar-default .navbar-nav > .dropdown.open > a .caret {
        margin-left: 3px;
        border-top: 4px solid #000000;
        border-right: 4px solid transparent;
        border-left: 4px solid transparent;
        border-bottom: 0 dotted;
    }

    header .navbar-nav > .dropdown > a:hover .caret, header .navbar-nav > .dropdown > a:focus .caret {
        border-top-color: transparent !important;
        border-bottom-color: transparent !important;
    }

    header .navbar-nav > .dropdown.open > a:hover .caret, header .navbar-nav > .dropdown.open > a:focus .caret {
        border-top-color: #555555 !important;
        border-bottom-color: #555555 !important;
    }
}


.main-nav.affix, .navbar-header.affix {
    top: 0;
    left: 0;
    right: 0;
    text-align: center !important;
    background-color: #e4f7fa;
}

.main-nav.affix {
    top: 47px;
}

    .main-nav.affix > ul.navbar-nav {
        margin-right: auto !important;
        margin-left: auto !important;
        text-align: right !important;
    }


@media (min-width: 992px) {
    .main-nav.affix, .navbar-header.affix {
        top: 0;
    }

        .main-nav.affix > ul.navbar-nav {
            max-width: 970px;
            padding-right: 15px;
            padding-left: 15px;
        }
}

@media (min-width: 1200px) {
    .main-nav.affix > ul.navbar-nav {
        max-width: 1170px;
    }
}









.faq .panel-heading {
    color: #333333;
    background-color: transparent;
    border-color: none;
}

.faq h4.panel-title {
    font-size: 18px;
}

    .faq h4.panel-title a {
        padding-right: 45px;
        background: url('../images/q.png') no-repeat right center;
        line-height: 31px;
        display: block;
    }

.faq .panel-default {
    border-color: transparent;
}



.form-wrapper {
    background: rgba(220, 70, 55, 0.9);
    padding: 40px 50px 60px;
    color: #fff;
}

.wizard-step-0 .container {
    padding: 0;
}

.custom-form {
    max-width: none;
}

.form-wrapper .form-control {
    border-radius: 2px !important;
    height: 40px;
}

.form-wrapper .input {
    float: left;
    padding-right: 8px;
    padding-left: 8px;
    margin-bottom: 16px;
}

.form-wrapper a, .form-wrapper a:hover {
    width: 100%;
    background-color: #000;
    color: #fff;
    border-radius: 0px;
    border: none;
    line-height: 28px;
}

.form-wrapper h2 {
    margin-bottom: 0px;
    max-width: 100%;
}

.form-wrapper span {
    margin-bottom: 30px;
    display: block;
    font-size: 15px;
}

.form-wrapper hr {
    color: #ef5d4e;
    border-color: #ef5d4e;
}

@media (min-width: 520px) {
}

@media (min-width: 768px) {
    .form-wrapper h2 {
        max-width: 376px;
    }

    .wizard-step-0 {
        position: absolute;
        z-index: 999;
        top: 50%;
        left: 0;
        width: 100%;
        margin-top: -200px;
    }

        .wizard-step-0 .form-wrapper {
            position: absolute;
        }

    .custom-form {
        max-width: 379px;
    }
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}





/*SCROLLING NEWS*/
.scrollnews {
    text-align: right;
}

.scrollnews-list, .scrollnews-list li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}

    .scrollnews-list li {
        border-top: 1px dotted #888;
        padding: 5px 0;
    }

        .scrollnews-list li:first-child {
            border-top: none;
        }

        .scrollnews-list li table {
            padding: 10px 0;
            display: block;
        }

        .scrollnews-list li a {
            color: #444;
        }

        .scrollnews-list li span {
            color: #5a471c;
            font-size: 14px;
            text-align: left;
            display: block;
            margin-top: 10px;
        }


.questions {
    text-align: right;
}

.questions-list, .questions-list li {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block;
    width: 100%;
}

    .questions-list li {
        border-top: 1px dotted #888;
        padding: 7px 0;
    }

        .questions-list li:first-child {
            border-top: none;
        }

        .questions-list li a, .questions-list li strong, .questions-list li span {
            display: block;
        }

        .questions-list li strong {
            color: #000000;
            font-size: 17px;
        }

        .questions-list li span.author {
            color: #479ba2;
        }

        .questions-list li span.intro {
        }



.questions.list { /*padding: 0 30px;*/
}

    /*.questions.list .item { padding:30px 0;background-color:#f5fcfd;}*/

    .questions.list .item {
        padding: 30px 0;
        margin-bottom: 0;
        border-bottom: 1px dotted #ccc;
    }

        .questions.list .item:last-child {
            border-bottom: none;
        }


        .questions.list .item h2 {
            font-size: 20px;
            padding: 0;
            margin: 0;
            color: #5a471c;
            font-weight: bold;
        }

        .questions.list .item p {
        }

        .questions.list .item .rav {
            display: block;
            color: #479ba2;
            font-weight: bold;
            padding: 5px 0;
        }

        .questions.list .item p i {
            color: #5a471c;
            text-decoration: underline;
            margin-right: 10px;
        }

        .questions.list .item .image {
            padding-left: 30px;
        }

            .questions.list .item .image img {
                width: 100%;
            }

        .questions.list .item .content {
            vertical-align: middle;
            padding-left: 30px;
        }



.crow {
    padding: 50px 0;
    text-align: center;
}

    .crow h2 {
    }

    .crow i, .crow em {
        font-size: 16px;
        margin-bottom: 60px;
        display: block;
    }

.fluid-width-video-wrapper {
    width: 100%;
    position: relative;
    padding: 0;
}

    .fluid-width-video-wrapper iframe, .fluid-width-video-wrapper object, .fluid-width-video-wrapper embed, .fluid-width-video-wrapper > div {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }




.wizard-wrapper {
    padding-top: 0;
    text-align: left;
}

.phone-prefix {
    padding-right: 0;
}

    .phone-prefix .form-control {
        padding: 6px 7px;
    }

.radio input[type=radio], .radio-inline input[type=radio], .checkbox input[type=checkbox], .checkbox-inline input[type=checkbox] {
    position: relative;
    margin-left: 0px;
}

.radio label, .checkbox label {
    padding-left: 5px;
    font-size: 14px;
    display: block;
}

.file-input i {
    font-size: initial;
    margin-bottom: initial;
    display: initial;
}

.kv-fileinput-upload {
    display: none;
}

.pad_topbottom_40 {
    padding-top: 40px; /* padding-bottom: 40px; */
}




#galleryOverlay, #galleryOverlay * {
    direction: ltr;
    text-align: left;
}




.widget {
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 20px 0;
    overflow: hidden;
}

    .widget ul {
        margin: 0;
        padding: 0;
    }

        .widget ol, .widget ul, .widget ol li, .widget ul li {
            margin: 0;
            list-style: none;
        }

    .widget li {
        padding: 12px 0;
        -webkit-transition: padding 0.3s ease-in-out 0s;
        -moz-transition: padding 0.3s ease-in-out 0s;
        transition: padding 0.3s ease-in-out 0s;
        padding-right: 18px;
        background: url("../images/icons/bullet-rtl.png") no-repeat right 20px;
        border-top: 1px dotted #aaa;
    }

        .widget li:hover {
            padding-right: 22px;
        }

        .widget li:first-child {
            border: none !important;
            padding-top: 0;
            background-position: right 8px;
        }


        .widget li ul {
            padding-top: 15px;
        }

            .widget li ul li {
                padding: 7px 0;
                -webkit-transition: padding 0.3s ease-in-out 0s;
                -moz-transition: padding 0.3s ease-in-out 0s;
                transition: padding 0.3s ease-in-out 0s;
                padding-right: 18px;
                background: none;
                border-top: none;
            }

                .widget li ul li:hover {
                    padding-right: 22px;
                }

                .widget li ul li:first-child {
                    border: none !important;
                    padding-top: 0;
                    background-position: right 8px;
                }



.dark-bg h1, .dark-bg h2, .dark-bg h3, .dark-bg h4, .dark-bg h5, .dark-bg h6, .dark-bg a {
    color: #fafafa !important;
}

.dark-bg p, .dark-bg div {
    color: #e5e5e5;
}

/* ------- Skill Bar --------- */
.skill-bar {
    width: 100%;
    display: block;
    margin: 0 0 15px;
    overflow: hidden;
}

.skill-title {
    margin: 0;
    display: block;
    font-style: italic;
    text-align: left;
}

.dark-bg .skill-title {
    color: #fff;
}

.skill-bar-content {
    background: #d11d05;
    display: block;
    height: 15px;
    width: 0;
}

/*---- Pie Charts --------- */
.piechart {
    position: relative;
    text-align: center;
    float: left;
    margin-left: 20px;
    overflow: hidden;
}

    .piechart canvas {
        position: relative;
        top: 0;
        left: 0;
    }

@media only screen and (max-width: 479px) {
    .piechart canvas {
        margin-bottom: 15px;
    }
}

.piechart .label {
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    top: 55%;
    max-width: 75%;
    font-size: 14px;
    font-weight: normal;
}

.piechart .percentage span {
    position: absolute;
    top: 25%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    font-size: 60px;
    line-height: 60px;
    font-weight: 300;
    text-align: center;
}

.piechart .percentage sup {
    font-size: 18px;
    vertical-align: super;
}

.piechart.dark-bg .label {
    color: #fff;
}

.piechart.dark-bg .percentage span {
    color: #eee;
}

/* --- Animate Numbers ---- */
.animate-numbers {
    font-size: 0; /* inline-block hack */
}

    .animate-numbers .stats {
        display: inline-block;
        width: 22%;
        margin-right: 3%;
        min-width: 200px;
        box-sizing: border-box;
    }

@media only screen and (max-width: 1024px) {
    .animate-numbers .stats {
        width: 48.5%;
        margin-bottom: 30px;
    }

        .animate-numbers .stats:nth-child(even) {
            margin-right: 0;
        }
}

@media only screen and (max-width: 600px) {
    .animate-numbers .stats {
        width: 100%;
        margin-right: 0;
    }

        .animate-numbers .stats:last-child {
            margin-bottom: 0;
        }
}

.stats {
    vertical-align: top;
}

@media only screen and (max-width: 992px) {
    .stats {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media only screen and (max-width: 768px) {
    .stats:last-child {
        margin-bottom: 0;
    }
}

.stats .number {
    font-size: 72px;
    line-height: 72px;
    font-family: "Lato", Arial, Helvetica, Verdana, sans-serif;
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 900;
    color: #00a654;
    letter-spacing: 1px;
}

.stats .stats-title {
    font-size: 18px;
    line-height: 32px;
    font-style: italic;
    margin-top: 10px;
}

    .stats .stats-title i, .stats .stats-title img {
        margin-right: 10px;
        vertical-align: middle;
        display: inline-block;
    }

    .stats .stats-title i {
        font-size: 32px;
        color: #D2B48C;
    }




.brands {
    padding: 42px 0;
    border-top: 1px solid #ccc;
}

    .brands .inner {
    }

    .brands .title {
        border-bottom: 1px solid #ccc;
        padding-top: 8px;
        padding-bottom: 8px;
        display: none;
    }

        .brands .title h2 {
            font-size: 17px;
            margin-top: 9px;
        }

    .brands .caroufredsel_wrapper {
    }

    .brands ul#carousel {
        padding: 0;
    }

        .brands ul#carousel, .brands ul#carousel li {
            list-style: none;
            display: block;
        }

            .brands ul#carousel li {
                height: 50px;
                float: left;
                text-align: center; /*padding-top:15px;*/
            }

                .brands ul#carousel li img {
                    max-width: 100%;
                    height: 100%;
                }

    .brands a.item {
        margin: 0 auto;
        height: 50px;
        background-position: 0 0;
        background-repeat: no-repeat;
        display: block;
        padding-right: 10px;
        padding-left: 10px;
    }

        .brands a.item:hover {
        }

    .brands h2 {
        display: block;
        float: right;
    }

    .brands .next, .brands .prev {
        display: block;
        width: 20px;
        height: 20px;
        margin-top: 9px;
        overflow: hidden; /*background-image:url('images/arrows.png');*/
        background-repeat: no-repeat;
        text-decoration: none;
        float: left;
    }

    .brands .next {
        background-position: left top;
    }

    .brands .prev {
        background-position: left bottom;
    }

@media (min-width:768px) {
    .brands .title h2 {
        font-size: 25px;
    }

    .brands ul#carousel li img {
        max-width: none;
        max-height: 100%;
    }
}


.view-business-page {
}

    .view-business-page ul, .view-business-page ul li {
        list-style: none;
        display: block;
        padding: 0;
        margin: 0;
    }

    .view-business-page label {
        display: inline-block;
        min-width: 50%;
    }




.panel-default {
    border-color: #dddddd;
}

    .panel-default > .panel-heading {
        color: #333333;
        background-color: #a4e4ef;
        border-color: #97d4d9;
    }

        .panel-default > .panel-heading + .panel-collapse .panel-body {
            border-top-color: #dddddd;
        }

    .panel-default > .panel-footer + .panel-collapse .panel-body {
        border-bottom-color: #dddddd;
    }

.panel > .panel-heading {
}

    .panel > .panel-heading > h2 {
        font-size: 20px;
        margin: 0;
        padding: 0;
        line-height: 25px;
        color: #202020;
    }

        .panel > .panel-heading > h2 > i {
            font-size: 25px;
            padding-left: 15px;
            float: right;
            margin-bottom: 0px;
            color: #5a471c;
        }

.panel > .panel-body {
}



/*---------- Social List ---------- */
ul.social-list {
    list-style: none;
    margin: 0;
    display: inline-block;
}

    ul.social-list.center {
        margin: 5px auto;
    }

    ul.social-list li {
        padding: 0;
        list-style: none;
        margin: 0 0 0 10px;
        background: none !important;
        display: inline-block;
        float: right;
    }

        ul.social-list li:last-child {
            margin-right: 0;
        }

    ul.social-list a {
        color: #777;
        display: block;
        margin-right: 5px;
        -webkit-transition: color 0.2s ease-in-out 0s;
        -moz-transition: color 0.2s ease-in-out 0s;
        transition: color 0.2s ease-in-out 0s;
    }

        ul.social-list a i {
            font-size: 32px;
            line-height: 50px;
            -webkit-transition: color 0.2s ease-in-out 0s;
            -moz-transition: color 0.2s ease-in-out 0s;
            transition: color 0.2s ease-in-out 0s;
        }

        ul.social-list a:hover i {
            color: #888;
        }


.widget { /*padding-right:15px; padding-left:15px;*/
    margin-top: 30px;
}

.widget_facebook {
    padding-right: 15px;
    padding-left: 15px;
    border: 1px solid #dddddd;
}

.widget ul.social-list a {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
}

.widget ul.social-list li {
    border: none !important;
    padding-left: 0 !important;
}

.widget ul.social-list a:hover {
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

.widget iframe {
    width: 100%;
}

.widget_banners {
}

    .widget_banners table, .widget_banners a, .widget_banners img {
        width: 100%;
    }


/* ---------- Footer Menu styling ---------------*/
#menu-footer {
    list-style: none;
    float: none;
    display: block;
    padding: 30px 0 15px;
    margin: 0;
    text-align: center;
    border-bottom: 1px solid rgba(92, 92, 92, 0.17);
}

    #menu-footer ul {
        margin: 0 auto;
        padding: 0;
    }

        #menu-footer ul li {
            display: inline;
            margin: 0;
            padding: 0;
        }

            #menu-footer ul li:before {
                content: "|";
                margin: 0 12px 0 6px;
            }

            #menu-footer ul li:first-child {
                background: none;
                padding-left: 0;
            }

                #menu-footer ul li:first-child:before {
                    content: "";
                    margin: 0;
                }

            #menu-footer ul li a {
                color: #444;
            }

@media only screen and (max-width: 479px) {
    #menu-footer {
    }
}

/*--------- Footer ------------ */
#footer-bottom {
    clear: both;
}

    #footer-bottom .inner {
    }

    #footer-bottom a:active, #footer-bottom a:hover {
        color: #444;
    }

#footer-bottom-text {
    display: block;
    float: none;
    margin: 0 auto; /* padding: 20px 0; */
    direction: rtl;
}

.minilogo {
    width: 80px;
    height: 23px;
    display: block;
    background: url('../images/b2w-logo.png') no-repeat left center;
    float: left;
}



/*---------- Social List ---------- */
ul.social-list {
    list-style: none;
    margin: 0;
    display: inline-block;
}

    ul.social-list.center {
        margin: 5px auto;
    }

    ul.social-list li {
        padding: 0;
        list-style: none;
        margin: 0 0 0 10px;
        background: none !important;
        display: inline-block;
        float: right;
    }

        ul.social-list li:last-child {
            margin-right: 0;
        }

    ul.social-list a {
        color: #777;
        display: block;
        margin-right: 5px;
        -webkit-transition: color 0.2s ease-in-out 0s;
        -moz-transition: color 0.2s ease-in-out 0s;
        transition: color 0.2s ease-in-out 0s;
    }

        ul.social-list a i {
            font-size: 32px;
            line-height: 50px;
            -webkit-transition: color 0.2s ease-in-out 0s;
            -moz-transition: color 0.2s ease-in-out 0s;
            transition: color 0.2s ease-in-out 0s;
        }

        ul.social-list a:hover i {
            color: #888;
        }


.widget ul.social-list a {
    opacity: 0.7;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
    filter: alpha(opacity=70);
}

.widget ul.social-list li {
    border: none !important;
    padding-left: 0 !important;
}

.widget ul.social-list a:hover {
    opacity: 1.0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

#footer .widget ul.social-list {
    display: table;
}

    #footer .widget ul.social-list a {
        margin: 0 20px 10px 0;
    }

        #footer .widget ul.social-list a i {
            font-size: 32px;
            color: #999;
        }

@media only screen and (max-width: 479px) {
    #footer .widget ul.social-list a {
        margin: 0 8px 5px 0;
    }

        #footer .widget ul.social-list a i {
            font-size: 24px;
        }
}

#footer .widget ul.social-list a:hover {
    color: #d3d3d3;
}

    #footer .widget ul.social-list a:hover i {
        color: #d3d3d3;
    }
/* ---------- Footer Menu styling ---------------*/
#menu-footer {
    list-style: none;
    float: none;
    display: block;
    padding: 25px 0;
    margin: 0;
}

    #menu-footer ul {
        margin: 0;
        padding: 0;
    }

        #menu-footer ul li {
            display: inline;
            margin: 0;
            padding: 0;
        }

            #menu-footer ul li:before {
                content: "|";
                margin: 0 12px 0 6px;
            }

            #menu-footer ul li:first-child {
                background: none;
                padding-left: 0;
            }

                #menu-footer ul li:first-child:before {
                    content: "";
                    margin: 0;
                }

            #menu-footer ul li a {
                color: #5a471c;
                text-transform: uppercase;
                font-size: 16px;
            }

@media only screen and (max-width: 479px) {
    #menu-footer {
    }
}

/*--------- Footer Widget Area ------------ */
#footer {
    position: relative;
    border-bottom: 1px solid #464647;
    background-color: #020202;
    padding: 30px 0;
}

    #footer iframe {
        display: block;
        margin: 0 auto;
    }

    #footer .inner { /*color: #bbb; display: block; padding-top: 0; padding-bottom: 0;*/ /* Helps the area not show up with its background painted if there are no widgets in footer area */
    }

    #footer a {
        color: #B3B3B1;
        font-style: normal;
    }

        #footer a:visited {
            color: #B3B3B1;
            font-style: normal;
        }

        #footer a:active, #footer a:hover {
            color: #DBDBD9;
        }

#sidebars-footer {
    clear: both;
    margin: 0;
    padding: 50px 0 40px 0;
}

    #sidebars-footer .widget-title {
        color: #e5e5e5;
        border-bottom: 1px solid #555557;
    }

    #sidebars-footer .widget_text a.small {
        color: #153B5E;
    }

        #sidebars-footer .widget_text a.small:visited {
            color: #153B5E;
        }

        #sidebars-footer .widget_text a.small:hover {
            color: #e5e5e5 !important;
        }

/*--------- Footer ------------ */
#footer-bottom {
    clear: both;
    width: 100%;
    padding: 0;
    margin: 0 auto;
    color: #212121;
    border-top: none;
    margin: 0 auto;
    overflow: hidden; /* background-color: #97d4d9; */
}

    #footer-bottom .inner {
        overflow: hidden;
        position: relative;
        text-align: center;
    }

    #footer-bottom a:active, #footer-bottom a:hover {
        color: #5a471c; /* text-decoration: underline; */
    }

#footer-bottom-text {
    display: block;
    float: none;
    margin: 0 auto; /* padding: 20px 0; */
    text-align: right;
    font-size: 16px;
    color: #403314;
}

.minilogo {
    width: 71px;
    height: 31px;
    display: block; /* background: url('../images/b2w-white-logo.png') no-repeat left center; */
    margin: 10px auto;
}



@media (min-width: 768px) {
    #footer {
        position: relative;
        border-bottom: 1px solid #7B7A7E;
        background: #636267;
        padding: 30px 0;
    }
}


.grid.cubes1 {
    color: #fff;
    text-align: center;
}

    .grid.cubes1 .btn-default, a.grid.cubes1 .btn-default:visited {
        color: #5a471c;
        background-color: transparent;
        border-radius: 0px 0px;
        padding: 10px 30px;
        font-size: 15px;
        border: 1px solid #5a471c;
        position: absolute;
        bottom: -50px;
        left: 50%;
        margin-left: -75px;
        width: 150px;
        text-transform: uppercase;
        -webkit-transition: all 500ms ease-out;
        -moz-transition: all 500ms ease-out;
        -ms-transition: all 500ms ease-out;
        -o-transition: all 500ms ease-out;
        transition: all 500ms ease-out;
    }

        .grid.cubes1 .btn-default:hover, .grid.cubes1 .btn-default:focus, .grid.cubes1 .btn-default.focus, .grid.cubes1 .btn-default:active, .grid.cubes1 .btn-default.active, .open > .dropdown-toggle.grid.cubes1 .btn-default {
            color: #5a471c;
            background-color: rgba(255, 255, 255, 0.2);
            border-radius: 0px 0px;
        }

    .grid.cubes1 h2 {
        font-size: 23px;
    }

    .grid.cubes1 .item .content p {
        padding: 20px;
    }

    .grid.cubes1 .item a.more {
        display: block;
        overflow: hidden;
        color: #5a471c;
        text-decoration: none;
        position: relative;
        border-radius: 4px;
    }

        .grid.cubes1 .item a.more:hover {
            color: #5a471c;
            text-decoration: none;
        }

            .grid.cubes1 .item a.more:hover .btn-default {
                bottom: 20px;
            }

    .grid.cubes1 .item .image {
    }

    .grid.cubes1 .item .content {
        position: absolute;
        top: 100%;
        margin-top: -50px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(151, 212, 217, 0.82);
        -webkit-transition: all 500ms ease-out;
        -moz-transition: all 500ms ease-out;
        -ms-transition: all 500ms ease-out;
        -o-transition: all 500ms ease-out;
        transition: all 500ms ease-out;
    }

    .grid.cubes1 .item a:hover .content {
        margin-top: 0;
        top: 0;
    }






.cubes {
    color: #fff;
    text-align: center;
}

    .cubes .btn-default, a.cubes .btn-default:visited {
        color: #5a471c;
        background-color: transparent;
        border-radius: 0px 0px;
        padding: 10px 30px;
        font-size: 15px;
        border: 1px solid #5a471c;
        position: absolute;
        bottom: 20px;
        left: 50%;
        margin-left: -75px;
        width: 150px;
        text-transform: uppercase;
    }

        .cubes .btn-default:hover, .cubes .btn-default:focus, .cubes .btn-default.focus, .cubes .btn-default:active, .cubes .btn-default.active, .open > .dropdown-toggle.cubes .btn-default {
            color: #fff;
            background-color: transparent;
            border-radius: 0px 0px;
            border: 1px solid #fff;
        }

    .cubes h2 {
        font-size: 20px;
    }

    .cubes .item {
        margin-bottom: 20px;
    }

        .cubes .item a {
            height: 100%;
            width: 100%;
            display: block;
            overflow: hidden;
            color: #fff;
            text-decoration: none;
            position: relative;
            border-radius: 4px;
        }

        .cubes .item img {
            display: block;
            position: absolute;
            top: 0;
            right: 0;
            width: 100%;
            height: 100%;
        }

        .cubes .item a:hover {
            color: #5a471c;
            text-decoration: none;
        }

    .cubes .inr {
        padding: 0 20px;
        text-align: center;
    }

    .cubes .item .frontside, .cubes .item .backside {
        display: block;
        position: relative;
        -webkit-transition: all 500ms ease-out;
        -moz-transition: all 500ms ease-out;
        -ms-transition: all 500ms ease-out;
        -o-transition: all 500ms ease-out;
        transition: all 500ms ease-out;
    }

        .cubes .item .frontside h2 {
            background: rgba(220, 70, 55, 0.9);
            color: #fff;
            padding: 0px 20px;
            margin-bottom: 0px;
            margin-top: 0;
            display: block;
            position: absolute;
            bottom: 0;
            line-height: 55px;
            width: 100%;
        }


    .cubes .item .backside {
        background: rgba(151, 212, 217, 0.82);
    }

    .cubes .item a:hover .backside {
    }

    .cubes .item a .frontside {
        margin-top: -50px;
    }

    .cubes .item a:hover .frontside {
        margin-top: -100%;
    }

        .cubes .item a:hover .frontside h2 {
            display: none;
        }

    .cubes .item .backside h2 {
        line-height: 20px;
        height: 50px;
        margin: 0;
        padding: 0;
        color: #5a471c;
        display: table-cell;
        vertical-align: middle;
        text-align: center;
        width: 500px;
    }

    .cubes .item .backside span {
        font-size: 16px;
        margin-top: 10px;
        display: block;
    }
/*.cubes .col-xs-12 { width: 100%; }*/

@media (min-width: 520px) {
    /*.cubes .col-sm-6 { width: 50%; float: left; }*/
}

@media (min-width: 992px) {
    /*.cubes .col-md-6 { width: 50%; }*/
}

@media (min-width: 1200px) {
    .cubes h2 {
        font-size: 22px;
    }
}


.crow {
    padding: 60px 0 0;
    text-align: center;
}

    .crow h2 {
    }

    .crow i, .crow em {
        font-size: 16px;
        display: block;
    }




.categories-list.list-group,
.categories-list .list-group-item:first-child,
.categories-list .list-group-item:last-child {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.categories-list .list-group-item:first-child {
    -webkit-border-radius: 5px 5px 0 0;
    -moz-border-radius: 5px 5px 0 0;
    border-radius: 5px 5px 0 0;
}

.categories-list .list-group-item:last-child {
    -webkit-border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    border-radius: 0 0 5px 5px;
}

.categories-list .list-group-item {
    color: #5a471c !important; /* font-weight: bold; */
    background-color: #d4f2f7;
    border-color: #fff;
    font-size: 16px;
    padding: 12px 20px 12px 20px;
}

    .categories-list .list-group-item:hover, .categories-list .list-group-item:active, .categories-list .list-group-item:focus {
        background-color: #bee9f1 !important;
    }

.categories-list .submenu {
}

    .categories-list .submenu .list-group {
        margin-bottom: 0;
    }

    .categories-list .submenu .list-group-item:first-child {
        -webkit-border-radius: 0 0 0 0;
        -moz-border-radius: 0 0 0 0;
        border-radius: 0 0 0 0;
    }

    .categories-list .submenu .list-group-item:last-child {
        -webkit-border-radius: 0 0 0 0;
        -moz-border-radius: 0 0 0 0;
        border-radius: 0 0 0 0;
        border-bottom: 0;
    }

    .categories-list .submenu .list-group-item {
        color: #ffffff !important; /* font-weight: bold; */
        background-color: #ff9d54;
        border-color: rgba(234, 234, 234, 0.37);
        font-size: 16px;
        padding: 10px 29px 10px 20px;
    }

        .categories-list .submenu .list-group-item:hover, .categories-list .submenu .list-group-item:active, .categories-list .submenu .list-group-item:focus {
            background-color: #ff9d54 !important;
        }





.list-group.categories a.list-group-item:hover,
.list-group.categories a.list-group-item:focus { /* background: none; */
}

    .list-group.categories a.list-group-item:hover,
    .list-group.categories a.list-group-item:focus,
    .list-group.categories a.list-group-item:hover .fa,
    .list-group.categories a.list-group-item:focus .fa {
        color: #FFFFFF;
    }

.list-group-item .fa {
    padding-right: 5px;
    padding-left: 5px;
    color: #5a471c;
    font-size: 17px;
    font-weight: bold;
    margin-right: -11px;
}

.filter-group {
    margin-right: 0px;
}

    .filter-group label {
        font-weight: normal;
    }






.footermenu-columns { /* background-color: #75bfc5; */
    background-color: #97d4d9;
    padding: 30px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.84);
}

    .footermenu-columns .container {
        padding: 0;
        text-align: right;
    }

    .footermenu-columns ul, .footermenu-columns ul li {
        list-style: none;
        display: block;
        color: #212121;
    }

    .footermenu-columns h3 {
        margin-bottom: 15px;
        display: block;
        color: #403314; /* font-weight: 600; */
    }

    .footermenu-columns ul.menu {
        margin: 0;
        padding: 0;
    }

        .footermenu-columns ul.menu > li {
        }

            .footermenu-columns ul.menu > li > a {
                display: block;
            }

                .footermenu-columns ul.menu > li > a:hover {
                    text-decoration: none;
                }

            .footermenu-columns ul.menu > li > ul {
                margin: 0;
                padding: 0;
            }

                .footermenu-columns ul.menu > li > ul > li {
                }

                    .footermenu-columns ul.menu > li > ul > li:before { /*content:'';color:#ed1c24;padding-left:10px;*/
                    }

                    .footermenu-columns ul.menu > li > ul > li > a {
                        line-height: 25px;
                        color: #403314;
                        font-size: 16px;
                    }

.footermenu {
    text-align: center;
}

    .footermenu ul, .footermenu ul li {
        list-style: none;
    }

        .footermenu ul.menu {
            margin: 0 auto;
            display: inline-block;
        }

            .footermenu ul.menu > li {
                float: right;
            }

                .footermenu ul.menu > li.spr > span {
                    line-height: 25px;
                    color: #fff;
                    display: block;
                }

                .footermenu ul.menu > li.item > a {
                    line-height: 25px;
                    color: #fff;
                }

.footer {
    border-top: 1px solid #fff;
    background-color: #2e2e2e;
    padding: 10px 0;
}


.creator {
    width: 71px;
    height: 31px;
    display: block;
    background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAEcAAAATCAYAAADCrxD+AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAABXpJREFUWMO9mAlMHFUYx1ertgYLlkOg5erSA2i5oZwWra2KKLZVaZtYTaqJmqjxiIlGidXEFiVpaZpoYtWYmGiNR5TUKy0VKSvsyXIsu60cUkCB5doFloWy+/ze8O328ZyZBVz7kl/m7XvfvJn332++75tREEKcZL7tGD93vlAfn+gyJKTMNCWmOg0I2+d/N21Jt7Vu32npea385ExvXxSso2CIAAaAGcCxBKaAYaAF+BAoYNZU4/26cN1U7pos6Xh92sxApIxtIdrN4VGtwE4jNbhY9uiPmvAYoo/bLKBD9DJHoR+9gWhCo0hr0S7z7MBgOHNBejN24p92FNes4MZfkdnwac72sIwtv+5hjzjFYz+fLaLCaGGjOkSL6GSOgkjrE4hemUjUQeGkv/LY6/+TOLTtBjK4sXqJzSqBCc72EnCziO2NgImxox6ZQSd+Ii7XDeYH9tZqI+OIMSN3uDkzbwiwGpFmBu/vrPwhY3rOsC5mo0sXu0kQSHNbDLl08ND3zEWpF/0BWNG9pfib6w8CNhFxfgCuwzU9bRZIEtnwqzIC87a3czb00VXQiaTR6jMl6uBIYkzLGZnp6VG6pyZXu2y2Nb5wT00FjH5X/TB4j5t6kAbENT/4yAXmonQjgUDQMlgNVHE33YHrvs+NvyziCS0S4nwrIs4xzuYtQRz37OwK8/17VDRmgNdY58bGgmWey3/hstsDm7ML/9JGwaMG4rSX7FYt5XwflHI33Yvj93Hjddx598g8mjTgb2RsVwEXOZtcQZyhTz97Qhu5XogfxvSlizM3MhoM5w0JQTkillj27qvxoziPcTd9GbgJPWuAixGbmfM+9xG73mBsd3Bz7eh5CkVzVsGfEDcIpSkla9xWU1s8aTDmTmr1BZMa3TyePnukGIzbet8+UkG9hsadxltCSF9FpVRGuB4DdBqm5iIZ7gD2AW3cjTcz633Jzb2A4zEi8crJ/TahyNT+JDdX5bmGQguiCNkG0FGi4r1oEZ3IUeivUxKa4agwhk3J01DrnHBPT6/kRIkF3sONTfzHbFXFrHuQm/sVx1/ixifRU+a48bvRvpMbv8srjg6FWao4XpFAGEpTUvp4f+XxchBnFVdYjfopjdNaLJRZO5rzEFo4JgAN3Hm1wAqRAP0xU/h5WjcQsEAcD1CruI0ZeSOQpiFd5w/LAjZga9XHJzkFoSBbNQaGkY5DT33DPEYGkU3SDfVhcO0T6Xt+0xttAr4GHpeoT34RyUQObuxJtC3nxvuFMmZh+4hd/6o4NCCn5QzP9FyOhxQd6LLZgxfBrc6OTqXp3lKddq1y3ouiN1xxmC2xWHvw7UVgDf47vliJpYBcwH7eh7fRoB2GtjRgT/uwL5UWZxnZitJ3tPKIOnSdsA5N5/YL9bSK3SmShgP8mMkoiVgESrUPOPszMra0+Az2uzi977xbsUCcuvpMkVqkC71B4WcaZTacz9nul7H9gl/7qjiQtYwp2WN2VcN2R7tli6PVlOpoobSlCn0PLUzfZE4eP1tT3FpwZ4cn7tDHa6JBvRUWLxF5xvPwTTlzGWQDyRjL2E28KbHZ30WEDMJaSawdkBTHm7HoexKiWwRaKPyo19EXT+Hc+CSHs6s7BN9h/N26saJlN7FNwvYZCU87IWI7KvY5Y2G2orCfIhbzycKb6RKIOmQtsewpO4eLl10jcfg3aoIvuhES4uSIrFstZqvQcvXMUuscoRCEOKMJiyYteUVdjjbTVlz8wDUSh3KcszvlI06pJNL9QnFMxaVqSvs8Gg7PnKadO5rQxvLQ/rrOp587PXjqk2evWK1skbYL6xwVfnNRcf16Dl9zGuArpuznv+LRwPwbFoF5PsSh1bUOX1jPA3Fidv8A3pbD48udcEEAAAAASUVORK5CYII=') no-repeat left center;
    text-align: right;
    float: right;
}

.copyrights {
    color: #b3b3b1;
    padding: 6px 0;
    text-align: left;
}

.side-widget {
    margin-bottom: 35px;
}

td.side-widget {
    margin-bottom: auto;
    padding-bottom: 5px;
}





.center {
    margin: 0 auto;
    text-align: center;
}

#testimonials {
    margin: 0;
    background-color: #fff; /* border: 1px solid #dedede; */ /* border-radius: 5px; */
    padding: 0;
}




.testimonials-list, .testimonials-list li {
    padding: 0;
    margin: 0;
    list-style: none;
}

    .testimonials-list li a, .testimonials-list li a:hover, .testimonials-list li a:focus, .testimonials-list li a:visited {
        text-decoration: none;
        display: block;
    }


.testimonials-page .selected-testimonial {
}

.testimonials-page .other-testimonials {
}

    .testimonials-page .other-testimonials h2 {
        margin-top: 70px;
        margin-bottom: 30px;
        padding-bottom: 13px;
        font-size: 26px;
        width: 100%;
        border-bottom: 1px solid #ccc;
        display: block;
    }

.testimonials-page .testimonials-list {
}

    .testimonials-page .testimonials-list li {
        margin-bottom: 30px;
    }

    .testimonials-page .testimonials-list img {
    }

    .testimonials-page .testimonials-list h3 {
        font-size: 20px;
        color: #d6c875;
        margin: 4px 0 10px;
    }

    .testimonials-page .testimonials-list blockquote .text p {
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
    }


.testimonials-list blockquote {
    padding: 0;
    margin: 0 23px;
    text-align: right;
    background: none;
    border: none;
}

    .testimonials-list blockquote .text, .testimonials-list blockquote p {
        position: relative;
        font-size: 17px;
        line-height: 22px;
        text-align: right;
        color: #000;
        margin: 0 0 10px;
        letter-spacing: normal;
        font-style: italic;
    }

.testimonials-list i.fa {
    font-size: 112px;
    line-height: 112px;
    text-align: center;
    display: inline-block;
    color: #FFF;
    background-color: #ccc;
    padding: 46px 50px;
    border-radius: 102px;
    margin-bottom: 0;
}

@media only screen and (max-width: 767px) {
    .testimonials-list blockquote {
        padding: 0;
    }

        .testimonials-list blockquote p {
            font-size: 18px !important;
            line-height: 32px !important;
        }

        .testimonials-list blockquote .text {
            margin: 20px 0 0;
        }
}


.testimonials2-slider-container {
    z-index: 2;
    position: relative;
}

    .testimonials2-slider-container .flexslider .slides {
        z-index: 2;
    }

    .testimonials2-slider-container .flex-control-nav {
        position: relative;
    }

        .testimonials2-slider-container .flex-control-nav li a {
            width: 12px;
            height: 12px;
        }

            .testimonials2-slider-container .flex-control-nav li a.flex-active {
                background-color: #a4e4ef;
            }

    .testimonials2-slider-container .flex-direction-nav a {
        background: transparent;
        width: 30px;
        height: 30px;
    }

    .testimonials2-slider-container .flex-direction-nav .flex-next {
        left: 0;
        top: 45%;
    }

    .testimonials2-slider-container .flex-direction-nav .flex-prev {
        right: 0;
        bottom: 50%;
    }

    .testimonials2-slider-container .flex-direction-nav span {
        background-image: url("images/sliders/slider-testimonial-nav.png");
        position: absolute;
        display: block;
        height: 19px;
        width: 14px;
    }

    .testimonials2-slider-container .flex-direction-nav .flex-prev span {
        background-position: right bottom;
    }

    .testimonials2-slider-container .flex-direction-nav .flex-next span {
        background-position: left bottom;
    }

@media only screen and (max-width: 767px) {
    .testimonials2-slider-container .flex-direction-nav {
        display: none;
    }
}


/* Control Nav */
.flex-control-nav {
    display: block; /* width: 100%; */
    position: absolute;
    bottom: 0; /* text-align: left; */
    float: left;
    clear: both;
    margin-top: -10px;
    margin-left: 20px;
}

    .flex-control-nav li {
        margin: 0 4px;
        display: inline-block;
        zoom: 1;
        *display: inline;
    }

.flex-control-paging li a {
    width: 11px;
    height: 11px;
    display: block;
    cursor: pointer;
    text-indent: -9999px;
    background-color: #ddd; /* IE */
    background-color: rgba(218, 218, 218, 0.8);
    width: 14px;
    height: 14px;
    border-radius: 14px;
}

    .flex-control-paging li a:hover, .flex-control-paging li a.flex-active {
        background-color: #fafafa; /* IE */
        background-color: rgba(255, 255, 254, 0.9);
    }

.flex-control-nav li a.flex-active, .flex-control-nav li a:hover {
    background-color: #fafafa; /* IE */
    background-color: rgb(164, 228, 239);
}

ol.flexlite-control-nav.flexlite-control-paging {
    display: none;
}

.flex-control-thumbs {
    margin: 5px 0 0;
    position: static;
    overflow: hidden;
}

    .flex-control-thumbs li {
        width: 25%;
        float: left;
        margin: 0;
    }

    .flex-control-thumbs img {
        width: 100%;
        display: block;
        opacity: .7;
        cursor: pointer;
    }

        .flex-control-thumbs img:hover {
            opacity: 1;
            -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
            filter: alpha(opacity=100);
        }

    .flex-control-thumbs .flex-active {
        opacity: 1;
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
        filter: alpha(opacity=100);
        cursor: default;
    }


@media (min-width: 767px) {
    .navbar-header .phone {
        display: none;
    }
}




.grid-3-cols.grid {
    margin-right: -15px;
    margin-left: -15px;
}

    .grid-3-cols.grid .item {
        margin-bottom: 20px;
        padding: 0 15px;
        position: relative;
        min-height: 1px;
    }

        .grid-3-cols.grid .item .image {
            position: relative;
        }

            .grid-3-cols.grid .item .image img {
                display: block;
                width: 100%;
                border-radius: 4px;
            }

        .grid-3-cols.grid .item .content {
        }

        .grid-3-cols.grid .item a {
            text-decoration: none;
            display: block;
            position: relative;
        }

        .grid-3-cols.grid .item h2 {
            font-size: 20px;
            padding: 10px 0;
            margin: 0;
            display: inline-block;
            color: #5a471c;
        }

        .grid-3-cols.grid .item span {
            padding: 0 0 10px;
            display: block;
            clear: both;
        }

            .grid-3-cols.grid .item span.author {
                color: #479ba2;
                padding: 0;
            }


@media (min-width: 450px) {
    .grid-3-cols.grid .item {
        float: right;
        width: 50%;
    }
}

@media (min-width: 768px) {
    .grid-3-cols.grid .item {
        float: right;
        width: 33.3%;
    }
}

@media (min-width: 992px) {
}

@media (min-width: 1200px) {
}



.articles-category-page {
}

    .articles-category-page > p {
        margin-bottom: 30px;
    }



/*.grid-3-cols.grid.videos .item { margin-bottom: 30px; }
.grid-3-cols.grid.videos .item .inner { position: relative; border: 1px solid transparent; border-radius: 8px;-webkit-transition: all 0.8s ease 0s; -o-transition: all 0.8s ease 0s; transition: all 0.8s ease 0s; }
.grid-3-cols.grid.videos .item .inner:hover { -webkit-box-shadow: 0 -2px 29px 0 rgba(0, 0, 0, 0.15); box-shadow: 0 -2px 29px 0 rgba(0, 0, 0, 0.15); }
.grid-3-cols.grid.videos .item .content {  padding: 10px 18px; }
.grid-3-cols.grid.videos .item img { border-radius: 8px 8px 0 0; }
.grid-3-cols.grid.videos .item h2 { font-size: 17px; }*/
.grid-3-cols.grid.videos .item .members-only {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    background: url('/images/manui.png') top left no-repeat;
    border-radius: 2px;
}

.grid-3-cols.grid.videos .item .play {
    display: block;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8;
    background: rgba(68, 68, 68, 0.52) url('/images/play-70.png') center center no-repeat;
    -webkit-transition: all 500ms ease-out;
    -moz-transition: all 500ms ease-out;
    -ms-transition: all 500ms ease-out;
    -o-transition: all 500ms ease-out;
    transition: all 500ms ease-out;
}

.grid-3-cols.grid.videos .item a.more:hover .play {
    opacity: 1;
}



.grid-3-cols.grid.galleries .item h2 {
}



.products {
}

    .products .product {
        margin-bottom: 30px !important;
    }

        .products .product h2 { /*font-size:18px !important;*/
        }



.prices {
    display: inline-block;
    float: right;
    font-size: 16px;
}

    .prices i {
        text-decoration: line-through;
        font-size: 14px;
        color: #ccc;
    }

.btn-addtocart {
    font-size: 15px;
    color: #5a471c;
    line-height: 15px;
    vertical-align: middle;
    margin-right: 20px;
    display: inline-block !important; /* margin-bottom: -15px; */
}

    .btn-addtocart i {
        color: #479ba2;
        font-size: 20px;
    }


ul.thumbnails-carousel {
    position: absolute;
    left: 0;
    right: 0;
    padding: 0;
    margin: 0;
    list-style-type: none;
    text-align: center;
    bottom: -65px;
}

    ul.thumbnails-carousel .center {
        display: inline-block;
    }

    ul.thumbnails-carousel li {
        margin-right: 5px;
        float: left;
        cursor: pointer;
    }

.controls-background-reset {
    background: none !important;
}

.active-thumbnail {
    opacity: 0.4;
}

.indicators-fix {
    bottom: 70px;
}

/* Product Carousel Styles Starts */
#product-carousel {
    max-width: 100%;
    position: relative;
    margin-bottom: 65px;
}

    #product-carousel .left, #product-carousel .right { /*top:50%; height:50px; margin-top:-25px; color: #FFFFFF; background-repeat: repeat-x; background-image: none !important; font-size: 40px;*/
    }

    #product-carousel .item {
    }

        #product-carousel .item a {
        }

            #product-carousel .item a img {
            }

        #product-carousel .item .item-table { /*display:table;min-height:200px;*/
        }

        #product-carousel .item .item-cell { /*min-height:200px; display:table-cell; vertical-align:middle;*/
        }


.carousel-control .fa-angle-left, .carousel-control .fa-angle-right {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: inline-block;
    margin-top: -20px;
    color: #FFFFFF;
    font-size: 40px;
}

.carousel-control .fa-angle-left {
    margin-left: -7px;
}

.carousel-control .fa-angle-right {
    margin-right: -7px;
}



#owl-product .item {
    padding-right: 5px;
    padding-left: 5px;
}

#owl-product .owl-controls {
    margin: 0;
}

    #owl-product .owl-controls .owl-nav div {
        position: absolute;
        background: none;
        font-size: 24px;
    }

    #owl-product .owl-controls .owl-nav .owl-prev,
    #owl-product .owl-controls .owl-nav .owl-next {
        top: -58px;
        color: #fff;
    }

    #owl-product .owl-controls .owl-nav .owl-prev {
        left: 60px;
    }

    #owl-product .owl-controls .owl-nav .owl-next {
        left: 20px;
    }






.video-view-page {
}

    .video-view-page .video {
    }

        .video-view-page .video iframe {
            width: 100%;
        }

    .video-view-page .description {
    }

    .video-view-page .sources {
    }






.radio-list input[type="radio"], .radio-list input[type="checkbox"] {
    margin: 0;
    vertical-align: middle;
}

.radio-list label {
    vertical-align: middle;
    margin-bottom: 0;
    margin-right: 4px;
    margin-left: 20px;
}

.form-custom-1 {
}

    .form-custom-1 .input-group-addon {
    }

    .form-custom-1 .form-group-inline {
    }

        .form-custom-1 .form-group-inline .form-control {
            display: inline-block;
            width: auto;
        }

        .form-custom-1 .form-group-inline .total {
            margin-top: 20px;
        }

    .form-custom-1 .input-group.sum {
        width: 200px;
        max-width: 100%;
    }




.cart-items .footable {
    border-collapse: collapse;
    border: none;
    table-layout: auto;
}

    .cart-items .footable > tbody > tr:nth-of-type(odd) {
        background-color: #f9f9f9;
    }

    .cart-items .footable > thead > tr {
        color: #5e9834;
    }

        .cart-items .footable > thead > tr > th {
            line-height: 40px !important;
        }

        .cart-items .footable > tbody > tr > td, .cart-items .footable > tbody > tr > th, .cart-items .footable > tfoot > tr > td, .cart-items .footable > tfoot > tr > th, .cart-items .footable > thead > tr > td, .cart-items .footable > thead > tr > th {
            padding: 8px;
            line-height: 1.42857143;
            vertical-align: middle;
            border: none;
            border-bottom: 1px solid #ddd;
        }

            .cart-items .footable > tbody > tr > td:last-child {
                position: relative;
            }

.actions {
    position: absolute;
    top: 10px;
    left: 10px;
}

    .actions a { /* color: #ffffff; */
        background-color: transparent;
        border: none;
        padding: 0;
    }

        .actions a:hover, .actions a:focus {
            background-color: transparent;
        }

        .actions a .fa {
            padding-right: 0;
            padding-left: 0;
            color: #868483; /* font-weight: bold; */
            margin-right: 0;
            font-size: 16px;
        }



.shoppingcart-page dl {
    margin-top: 0;
    margin-bottom: 20px;
    color: #212121;
}

.shoppingcart-page dt,
.shoppingcart-page dd {
    line-height: 1.428571429;
    padding: 4px 0;
}

.shoppingcart-page dt {
    font-weight: bold;
}

.shoppingcart-page dd {
    margin-right: 0;
}

@media (min-width: 768px) {
    .shoppingcart-page .dl-horizontal dt {
        float: right;
        clear: right;
    }

    .shoppingcart-page .dl-horizontal dd {
        margin-right: 180px;
        margin-left: auto;
    }
}

.shoppingcart-page section.totals {
    float: left;
    margin-top: 40px;
}

.shoppingcart-page section.other {
    float: right;
    margin-top: 40px;
}

.coupon-update input, .coupon-update a {
    display: inline-block;
}

.coupon-update input {
    width: auto;
}

.shoppingcart-page table.shop_table { /* border: 1px solid rgba(0, 0, 0, .1); */
    margin: 40px 0px 24px 0;
    text-align: right;
    width: 100%;
    border-radius: 5px;
}

    .shoppingcart-page table.shop_table th {
        font-weight: 700;
        padding: 9px 12px;
    }

    .shoppingcart-page table.shop_table td {
        border-top: 1px solid rgba(0, 0, 0, .1);
        padding: 6px 12px;
        vertical-align: middle;
    }

        .shoppingcart-page table.shop_table td small {
            font-weight: 400;
        }

    .shoppingcart-page table.shop_table tbody:first-child tr:first-child td,
    .shoppingcart-page table.shop_table tbody:first-child tr:first-child th {
        border-top: 0;
    }

    .shoppingcart-page table.shop_table tbody th,
    .shoppingcart-page table.shop_table tfoot td,
    .shoppingcart-page table.shop_table tfoot th {
        font-weight: 700;
        border-top: 1px solid rgba(0, 0, 0, .1);
    }

.shoppingcart-page table.cart th {
    background: #d4f2f7;
    border: 0;
    font-size: 16px;
    color: #5a471c;
    padding: 18px 0;
    font-weight: 400;
}

    .shoppingcart-page table.cart th.product-thumbnail {
        padding-left: 30px;
        width: 40%;
    }

    .shoppingcart-page table.cart th.product-price,
    .shoppingcart-page table.cart th.product-quantity,
    .shoppingcart-page table.cart th.product-subtotal {
        width: 18.3%;
    }

    .shoppingcart-page table.cart th.product-remove {
        width: 5.1%;
    }

.shoppingcart-page table.cart td {
    border-width: 0 0 1px 0;
    border-style: solid;
    border-color: #f4eede;
    padding: 50px 0;
}

    .shoppingcart-page table.cart td.product-thumbnail img {
        width: 100px;
        border: 1px solid #f4eede;
        margin: 0;
    }

    .shoppingcart-page table.cart td.product-thumbnail a:last-child {
        text-transform: uppercase;
        padding-left: 35px;
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
    }

    .shoppingcart-page table.cart td.product-subtotal {
        color: #212121;
    }

    .shoppingcart-page table.cart td.product-remove a {
        color: red;
        line-height: 20px;
        -webkit-transition: all 0.4s ease 0s;
        -o-transition: all 0.4s ease 0s;
        transition: all 0.4s ease 0s;
    }

        .shoppingcart-page table.cart td.product-remove a:hover {
            background: red;
            color: #ffffff !important;
        }

    .shoppingcart-page table.cart td .quantity .qty {
        height: 40px;
        border: 1px solid #f4eede;
    }

.shoppingcart-page table.cart .actions .coupon {
    display: none;
}



.shoppingcart-page table.cart img {
    width: 50px;
    box-shadow: none;
    float: right;
}

.shoppingcart-page table.cart td,
.shoppingcart-page table.cart th {
    vertical-align: middle;
}

    .shoppingcart-page table.cart td.actions .coupon .input-text {
        float: left;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
        border: 1px solid #d3ced2;
        padding: 6px 6px 5px;
        margin: 0 4px 0 0;
        outline: 0;
        line-height: 1;
    }

.shoppingcart-page table.cart input {
    margin: 0;
    vertical-align: middle;
    line-height: 1;
    border-right: none;
    border-left: none;
}

.shoppingcart-page table.cart .input-group-btn .btn:before {
    display: block;
    width: 10px;
}


.comment-form {
    background-color: #f6f6f6;
    padding: 10px 30px;
    border-radius: 5px;
}

    .comment-form h3 {
        font-size: 20px;
    }

.comments-list {
    margin-top: 20px;
}

    .comments-list, .comments-list .comment {
        list-style: none; /*padding: 0; margin: 0;*/
        display: block;
        margin: 0;
        padding: 0;
    }

        .comments-list .comment {
            padding-bottom: 20px;
            border-bottom: 1px solid #f6f6f6;
            margin-bottom: 20px;
        }

            .comments-list .comment:last-child {
                border-bottom: none;
            }

.comment .comment-avatar,
.comment .comment-body {
    float: right;
    padding-right: 10px;
    padding-left: 10px;
}

.comment .comment-avatar {
    text-align: center;
    width: 22%;
}

    .comment .comment-avatar i {
        font-size: 50px;
        color: #ccc;
    }

    .comment .comment-avatar img {
        max-width: 100%;
    }

.comment .comment-body {
    width: 78%;
}

.comment .comment-author {
    padding: 0 0 10px;
}

    .comment .comment-author a {
        color: #5a471c;
        font-weight: 600;
        font-size: 16px;
    }

    .comment .comment-author span {
        color: #A9A9A9;
        font-size: 14px;
        padding-right: 10px;
    }

.comment .comment-description {
}

    .comment .comment-description p {
    }

@media (min-width: 768px) {
    .comment .comment-avatar {
        width: 15%;
    }

    .comment .comment-body {
        width: 75%;
    }
}

@media (min-width: 1200px) {
    .comment .comment-avatar {
        width: 10%;
    }

    .comment .comment-body {
        width: 90%;
    }
}




.search-header5 {
    display: none;
}

    .search-header5 .note-search {
        font-size: 24px;
        color: #000000;
        text-transform: uppercase;
        font-weight: 300;
    }

@media (max-width: 767px) {
    .search-header5 .note-search {
        font-size: 16px;
    }
}

.search-header5 .remove-form {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.925);
}

.search-header5 div.form {
    position: fixed;
    top: 50%;
    left: 50%;
    text-align: center;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 99999;
}

    .search-header5 div.form .sr-only {
        display: none;
    }

    .search-header5 div.form .form-control {
        display: block;
        width: 100%;
        height: 100%;
        background: transparent;
        border: 0;
        color: #000000;
        -webkit-border-radius: 0;
        border-radius: 0;
        -webkit-transition: all 0.8s ease 0.7s;
        -o-transition: all 0.8s ease 0.7s;
        transition: all 0.8s ease 0.7s;
        font-size: 68px;
        text-transform: uppercase;
        text-align: center;
        padding: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

        .search-header5 div.form .form-control::-moz-placeholder {
            color: #000000;
            opacity: 1;
        }

        .search-header5 div.form .form-control:-ms-input-placeholder {
            color: #000000;
        }

        .search-header5 div.form .form-control::-webkit-input-placeholder {
            color: #000000;
        }

        .search-header5 div.form .form-control:focus,
        .search-header5 div.form .form-control:active {
            outline-color: transparent;
            outline: none;
            -webkit-box-shadow: none;
            box-shadow: none;
        }

@media (max-width: 767px) {
    .search-header5 div.form .form-control {
        font-size: 38px;
    }
}

.search-header5 div.form input[type='submit'] {
    height: 50px;
    background: #5e9834;
    color: #ffffff;
    padding: 0 50px;
    border: 0;
    -webkit-transition: all 0.8s ease 0.7s;
    -o-transition: all 0.8s ease 0.7s;
    transition: all 0.8s ease 0.7s;
    -webkit-border-radius: 0;
    border-radius: 0;
    -webkit-transform: translate(-100px, 0);
    -ms-transform: translate(-100px, 0);
    -o-transform: translate(-100px, 0);
    transform: translate(-100px, 0);
    opacity: 0;
    filter: alpha(opacity=0);
    display: none;
}

.search-header5.search-header-eff {
    display: block;
}


.search-results-page {
    font-size: 15px;
    line-height: 23px;
    color: #000000;
    text-align: right;
}

    .search-results-page h2 {
        font-size: 28px;
        line-height: 38px;
        margin-bottom: 40px;
        color: #045d64; /*border-bottom: 1px solid #e6e6e6;*/
    }


.results-item {
    display: block;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
}

    .results-item h3 {
        color: #5a471c;
        font-size: 20px;
    }

    .results-item .intro {
    }

        .results-item .intro i {
            color: #045d64;
            text-decoration: underline;
        }




.profile-menu .nav,
.profile-menu .collapse,
.profile-menu .dropup,
.profile-menu .dropdown { /* position: static; */
}

.profile-menu .container {
    position: relative;
}

.profile-menu-dropdown {
    z-index: 9999;
    left: 0;
    margin-top: 7px !important; /* margin-right: -16px; */
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0; /* top: initial; */
    float: none !important;
    right: auto;
    position: absolute !important;
    background-color: #fff !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
}

ul.dropdown-menu.profile-menu-dropdown {
}

.profile-menu .profile-menu-content {
    padding: 0;
}

.profile-menu .nav, .profile-menu .nav li {
    padding: 0;
}

.profile-menu .nav {
    margin: 0;
}

    .profile-menu .nav > li {
        padding: 0;
    }

        .profile-menu .nav > li > a {
            padding: 0;
            color: #444;
            text-decoration: none;
        }

            .profile-menu .nav > li > a:hover,
            .profile-menu .nav > li > a:active,
            .profile-menu .nav > li > a:focus {
                background: none;
                background-color: transparent;
            }

    .profile-menu .nav .open > a, .profile-menu .nav .open > a:hover, .profile-menu .nav .open > a:focus {
        background-color: transparent;
        border-color: transparent;
    }

.profile-menu-footer {
    padding: 15px 25px; /* border-top: 1px solid #EAEAEA; */
    background-color: #FBFBFB;
}

    .profile-menu-footer a {
        color: #444 !important;
        margin: 0;
        margin-right: 10px;
        text-decoration: underline;
        display: inline-block;
        float: none;
    }


#profileMenuMobile {
}

    #profileMenuMobile ul, #profileMenuMobile ul li {
        list-style: none;
    }

    #profileMenuMobile .row {
        margin: 0;
    }

    #profileMenuMobile .col-sm-2 {
        padding: 0;
    }

    #profileMenuMobile .profile-menu-dropdown {
        margin-right: 0;
        margin-top: 0 !important;
        border-top: 1px solid #ccc;
    }

    #profileMenuMobile .profile-menu-content { /* padding-bottom:20px; */
        padding: 20px 15px;
    }

    #profileMenuMobile .profile-menu-footer {
    }

    #profileMenuMobile .list-unstyled {
        white-space: normal;
    }
/* menu styes */
.list-unstyled,
.list-unstyled ul { /* min-width: 120px; */
    white-space: nowrap;
    float: none !important;
    margin: 0;
    padding: 0; /* background-color: #d4f2f7; */
}

    .list-unstyled li {
        float: none !important;
        padding: 0 0 !important;
        border-bottom: 1px solid #f1f1f1;
    }

        .list-unstyled li a {
            color: #444; /* font-size: 15px; */
            padding: 10px 20px 10px 20px;
            display: block;
        }

            .list-unstyled li a .badge {
                background-color: #308e96;
                font-size: 11px;
                margin: 0 8px;
            }

            .list-unstyled li a:hover {
                color: #444;
                -webkit-transition: all ease-in-out 0.3s;
                -moz-transition: all ease-in-out 0.3s;
                transition: all ease-in-out 0.3s;
                background-color: #fbfbfb !important;
            }

        .list-unstyled li p {
            padding: 25px 0 7px;
            margin: 0;
        }


.conference-details h3 {
    font-size: 18px;
    color: #5a471c;
}

.policies-wrapper label {
    font-weight: 600;
    margin-right: 10px;
}

    .policies-wrapper label a {
        color: #479ba2;
        text-decoration: underline;
    }


.days .day {
    display: block;
    background-color: #f5f5f5;
    padding: 20px 30px;
    position: relative;
    margin-bottom: 10px;
    overflow: hidden;
    border-radius: 4px;
    cursor: pointer;
    -webkit-transition: all 0.1s ease-in-out;
    -moz-transition: all 0.1s ease-in-out;
    -ms-transition: all 0.1s ease-in-out;
    -o-transition: all 0.1s ease-in-out;
    transition: all 0.1s ease-in-out;
}

    .days .day.active {
        margin-right: -5px;
        margin-left: -5px;
        padding: 25px 35px;
        background-color: #d4f2f7;
    }

    .days .day + .day-details {
        display: none;
    }

    .days .day.active + .day-details {
        display: block;
    }


.day-details {
    padding: 30px;
}

    .day-details h4 {
        display: none;
    }

    .day-details .rbl-days-lessons {
        margin-bottom: 30px;
        display: block;
    }

        .day-details .rbl-days-lessons label {
            margin-left: 20px;
        }

    .day-details .time-span {
        margin-bottom: 20px;
    }

        .day-details .time-span .info {
            display: none;
            margin-top: 12px; /*padding-right:30px; border-right:5px solid #ce4844;*/
        }

            .day-details .time-span .info a {
                color: #479ba2;
                text-decoration: underline;
                font-weight: 600;
            }

        .day-details .time-span .more {
            display: none;
        }

@media (min-width: 768px) {
    .day-details .time-span .span-text {
        line-height: 48px;
    }
}







.meals {
    display: none;
}

.meals-cbx, .extra-cbx {
    margin-bottom: 10px;
    display: block;
    white-space: nowrap;
}

    .extra-cbx > div, .meals-cbx > div {
        vertical-align: top;
    }

    .extra-cbx span, .meals-cbx span {
        font-weight: normal;
    }

    .meals-cbx label, .extra-cbx label {
        font-weight: 600;
    }

.meals-list ul li a {
    font-weight: 600;
    background-color: transparent;
}

    .meals-list ul li a:hover {
        background-color: #f6f6f6;
    }

    .meals-list ul li a .fa {
        margin: 0;
        padding: 0;
        color: #f10b0b;
        font-size: 14px;
        font-weight: normal;
    }


.info-modal .modal-header {
    background-color: transparent;
    border-bottom: none;
}

.info-modal .modal-body {
    padding-top: 20px;
}


.coordinator-name {
    display: none;
}


.extras-list ul, .extras-list ul li {
    list-style: none;
    display: block;
    margin: 0;
    padding: 0;
}

.navbar-total {
    padding: 5px 0;
    background-color: rgba(255, 255, 255, 0.86);
    border: none;
    max-width: 50%;
    float: right;
}

    .navbar-total:not(.navbar-fixed-bottom) .container, .navbar-total:not(.navbar-fixed-bottom) .col-md-9, .navbar-total:not(.navbar-fixed-bottom) .row {
        width: 100%;
        margin: 0;
        padding: 0;
    }

    .navbar-total.navbar-fixed-bottom {
        border-top: 1px solid #EAEAEA;
        max-width: none;
        float: none;
    }

    .navbar-total h2 {
        font-size: 17px;
        font-weight: normal;
        display: inline-block;
        margin: 0;
        padding: 0;
        line-height: 43px;
        white-space: nowrap;
    }

        .navbar-total h2 span {
            font-size: 25px;
            font-weight: 600;
        }




.coupons-list {
    margin-left: -5px;
    margin-right: -5px;
    margin-top: 5px;
}

    .coupons-list:before, .coupons-list:after {
        content: " ";
        display: table;
    }

    .coupons-list .coupon-item {
        position: relative;
        min-height: 1px;
        padding-left: 5px;
        padding-right: 5px;
        width: 50%;
        float: right;
        margin-bottom: 10px;
    }

        .coupons-list .coupon-item img {
            max-width: 100%;
        }


@media (min-width: 400px) {
    .coupons-list .coupon-item {
        width: 33.3%;
    }
}

@media (min-width: 500px) {
    .coupons-list .coupon-item {
        width: 25%;
    }
}

@media (min-width: 992px) {
    .coupons-list .coupon-item {
        width: 20%;
    }
}



.carousel-fade .carousel-inner .item {
    -webkit-transition-property: opacity;
    transition-property: opacity;
}

.carousel-fade .carousel-inner .item,
.carousel-fade .carousel-inner .active.left,
.carousel-fade .carousel-inner .active.right {
    opacity: 0;
}

.carousel-fade .carousel-inner .active,
.carousel-fade .carousel-inner .next.left,
.carousel-fade .carousel-inner .prev.right {
    opacity: 1;
}

    .carousel-fade .carousel-inner .next,
    .carousel-fade .carousel-inner .prev,
    .carousel-fade .carousel-inner .active.left,
    .carousel-fade .carousel-inner .active.right {
        left: 0;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

.carousel-fade .carousel-control {
    z-index: 2;
}

.carousel,
.carousel-inner,
.carousel-inner .item { /*height: 200px;*/
}



#slider .item-link {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: transparent;
    display: block;
}



table.sitetable {
    width: 100%;
    border-collapse: collapse;
}

    table.sitetable tr:nth-of-type(odd) {
        background: #eee;
    }

    table.sitetable.nobackground tr:nth-of-type(odd) {
        background: none;
    }

    table.sitetable th {
        background: #649a3a;
        color: white;
        font-weight: normal;
    }

        table.sitetable th a {
            color: white;
            font-weight: normal;
        }

    table.sitetable td, table.sitetable th {
        padding: 6px;
        border: 1px solid #ccc;
        text-align: right;
    }

    table.sitetable.noborders td, table.sitetable.noborders th {
        padding: 6px;
        border: none;
    }


@media only screen and (max-width: 760px), (min-device-width: 768px) and (max-device-width: 1024px) {
    table.sitetable img {
        height: auto !important;
        max-width: 100%;
    }

    table.sitetable, table.sitetable thead, table.sitetable tbody, table.sitetable th, table.sitetable td, table.sitetable tr {
        display: block;
    }

        table.sitetable thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

        table.sitetable tr {
            border: 1px solid #ccc;
            border-bottom: none;
        }

        table.sitetable.noborders, table.sitetable.noborders tr {
            border: none;
        }

        table.sitetable td {
            border: none;
            border-bottom: 1px solid #eee;
            position: relative;
            padding-right: 35%;
        }

            table.sitetable td:before {
                position: absolute;
                top: 6px;
                right: 6px;
                min-width: 35%;
                padding-left: 10px;
                white-space: nowrap;
                font-weight: normal;
            }

        table.sitetable.noborders td {
            border-bottom: none;
        }

        table.sitetable.noheader td {
            padding-right: 0;
        }

            table.sitetable.noheader td:before {
                display: none;
            }



        table.sitetable td:nth-of-type(1):before {
            content: "";
        }

        table.sitetable td:nth-of-type(2):before {
            content: "";
        }

        table.sitetable td:nth-of-type(3):before {
            content: "";
        }

        table.sitetable td:nth-of-type(4):before {
            content: "";
        }

        table.sitetable td:nth-of-type(5):before {
            content: "";
        }

        table.sitetable td:nth-of-type(6):before {
            content: "";
        }

        table.sitetable td:nth-of-type(7):before {
            content: "";
        }

        table.sitetable td:nth-of-type(8):before {
            content: "";
        }

        table.sitetable td:nth-of-type(9):before {
            content: "";
        }

        table.sitetable td:nth-of-type(10):before {
            content: "";
        }
}



.social-icons {
    float:left;
    clear:left;
    margin: -10px 0px 0 14px;
    text-align: center;
    width: 100%;
}

ul.social-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
@media (min-width:768px){
.social-icons {
    float:left;
    clear:left;
    margin: 10px 0px 0 20px;
    text-align: center;
    width: 187px;
}
ul.social-list {
    list-style: none;
    margin: 0;
    /* margin-left: 32px; */
    padding: 0;
}
    
}


    ul.social-list li {
        display: inline-block;
        /* font-size: 40px; */
        font-weight: 400;
        margin-left: 10px;
        background: #262626;
        outline: none;
        border-radius: 50%;
        width: 50px;
        height: 35px;
        text-align: center;
        -moz-transition: all .3s ease;
        -o-transition: all .3s ease;
        -webkit-transition: all .3s ease;
        transition: all .3s ease;
        margin: 10px 2px;
    }

        ul.social-list li a {
            outline: none;
            font-size: 30px;
        }

            ul.social-list li a,
            ul.social-list li a:hover {
                color: #f1f1f1;
            }

        ul.social-list li:last-child {
            margin-left: 0;
        }

        ul.social-list li:hover {
            /* background: #7e7834; */
        }

        ul.social-list li i, ul.social-list li em {
            color: #5a5959;
            margin-right: 0;
        }

        ul.social-list li:hover em.fa-whatsapp {
            color: #13990a;
        }
        ul.social-list li:hover em.fa-youtube {
            color: #e93e30;
        }
        ul.social-list li:hover em.fa-facebook {
            color: #295396;
        }
