@charset "UTF-8";

/*------------------------------------------------------------------
[Table of contents]

1. Body / .home-1, .home-2, .home-3, .home-4, .home-5, .home-6, .home-7, .home-7
    2. Header / #top-header
        2.1. Navigation / #main-nav
        2.2. Block Top / .block_group_top
            2.2.1. Cart / #block-cart
            2.2.2. User / .header_user_info
            2.2.3. Search / #search_block_top
    3. Slideshow / .tiva-slideshow-wrapper
    4. Breadcrumb / #breadcrumb
    5. Content / #columns   
        5.1. About us / .section-about
        5.2. Video introduction / .section-video
        5.3. Counter number / .section-counter-numb
        5.4. Let get drunk tonight / .section-prolist
        5.5. Parallax / .section-parallax
        5.6. Latest news / .section-posts
        5.7. Manufactures / .section-manufacture
        5.8. Left Column / #left_column
        5.9. Right Column / #right_column
        5.10. Center Column / #center_column
            5.10.1. Product List
            5.10.2. Blog List / .blog-posts
            5.10.3. Blog Detail / .single-post
        5.11. Product Detail
        5.12. Contact / .contact-details
        5.13. Login
        5.14. Register
        5.15. Shopping Cart / #cart_summary
        5.16. Checkout / .page-checkout
        5.17. 404 Page / .page-not-found
        5.18. Page RTL / .rtl
    6. Footer / #footer
        6.1. Footer top / .footer-top
            6.1.1. Newsletter / .block-newsletter
            6.1.2. Social Block / .social_block
        6.2. Footer center / .footer-center
            6.2.1. Keep in touch / .block-keep
            6.2.2. Services / .footer-block
            6.2.3. Account / .footer-block
            6.2.4. Gallery / .block-gallery
        6.3. Footer copyright / .footer-copyright
            6.3.1. Copyright
            6.3.2. Payment / .payment
    7. Popup Screen / .tiva-popup-screen
    8. Go to top / .go-up
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
[Color codes]

Background  : #ffffff (white)
Content     : #666666
Header      : #ffffff (white)
Footer      : #999999

a (standard): #000000
a (visited) : #cfa15e
a (active)  : #cfa15e
-------------------------------------------------------------------*/


/*------------------------------------------------------------------
[Typography]

Body        : 14px/1.85714em "Poppins", sans-serif
Slideshow:  : 'Playfair Display', serif
-------------------------------------------------------------------*/


/* --- general ------------------------------ */

body {
    font-weight: 300;
    font-family: "Poppins", sans-serif;
}

#all {
    overflow: hidden;
}

* {
    padding: 0;
    margin: 0;
}


/* paragraphs */

p {
    font-size: 14px;
    line-height: 25px;
    font-family: "Poppins", sans-serif;
    color: #666666;
    margin-bottom: 15px;
}

a:hover,
a:focus {
    color: #cfa15e;
    text-decoration: none;
    outline: none;
}

ul,
ol {
    list-style: none;
}

.list-inline {
    margin-left: 0;
}

.rtl .list-inline {
    margin-right: 0;
    margin-left: inherit;
}

.text-center,
#cart_summary thead th.cart_product,
#cart_summary tbody td.cart_product,
#cart_summary tbody td.cart_delete {
    text-align: center !important;
}

.box {
    -webkit-box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.2);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    text-transform: none;
}

sup {
    color: red;
}

form label {
    font-weight: normal;
}

.form-control {
    -webkit-box-shadow: none;
    box-shadow: none;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}


/* no gutters */

.row.no-gutters {
    margin-right: 0;
    margin-left: 0;
}

.row.no-gutters>[class^="col-"],
.row.no-gutters>[class*=" col-"] {
    padding-right: 0;
    padding-left: 0;
}


/* button */

.btn-default {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active {
    background-color: #cfa15e;
    border-color: #cfa15e;
}

.btn {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}

.btn:hover,
.btn:focus,
.btn:active {
    background-color: #cfa15e;
}

.btn-primary {
    background-color: #cfa15e;
    border-color: #cfa15e;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    background-color: black;
    border-color: black;
}


/* start full screen background */

.fs-style {
    position: relative;
    padding-top: 75px;
    padding-bottom: 140px;
}

.fs-style:before {
    padding: 0 2289px;
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background-color: #f7f7f7;
    z-index: 0;
    display: inline-block;
    top: 0;
    left: -2289px;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.fs-style.fs-style1 {
    padding-top: 0;
    padding-bottom: 0;
}

.fs-style.fs-style1:before {
    background-color: #f8f8f8;
}


/* table cell */

.tv-table {
    display: table;
}

.tv-tablecell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
}


/* overide owl-carousel */

.owl-theme .owl-controls .owl-nav div {
    position: absolute;
    top: 34.5%;
    left: -30px;
    height: 70px;
    width: 40px;
    color: #333;
    line-height: 33px;
    text-align: center;
    font-size: 0;
    line-height: 0;
    background: #fcfcfc;
    border: 2px solid #fcfcfc;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: all 0.35s ease 0s;
    transition: all 0.35s ease 0s;
}

.owl-theme .owl-controls .owl-nav div:before {
    position: absolute;
    font-family: "FontAwesome";
    content: "\f105";
    font-size: 24px;
    line-height: 62px;
    width: 100%;
    height: 100%;
    right: 0;
}

.owl-theme .owl-controls .owl-nav div.owl-prev:before {
    content: "\f104";
}

.owl-theme .owl-controls .owl-nav div:hover {
    color: white;
    border-color: #cfa15e;
    background-color: #cfa15e;
}

.owl-theme .owl-controls .owl-nav div.owl-next {
    right: -30px;
    left: inherit;
}

.block_content:hover .owl-theme .owl-controls .owl-nav div {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
}

.block_content:hover .owl-theme .owl-controls .owl-nav div.owl-prev {
    left: 0;
}

.block_content:hover .owl-theme .owl-controls .owl-nav div.owl-next {
    right: 0;
}


/* dropdown-over dropdown */

.dropdown-over {
    position: relative;
}

.dropdown-over .dropdown-title {
    text-transform: none;
    padding: 5px 13px 4px;
}

.dropdown-over .dropdown-title a {
    font-size: 18px;
}

.dropdown-over .dropdown-content {
    padding: 15px;
    position: absolute;
    top: 45px;
    background: white;
    min-width: 180px;
    z-index: 99;
    display: none;
    right: 0;
    -webkit-transition: opacity 0.3s linear 0s;
    transition: opacity 0.3s linear 0s;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.175);
}

.rtl .dropdown-over .dropdown-content {
    left: 0;
    right: auto;
}

.dropdown-over .dropdown-content a {
    color: #666666;
    display: inline-block;
}

.dropdown-over .dropdown-content a:hover {
    color: #cfa15e;
}

.dropdown-over .dropdown-content ul {
    margin-bottom: 0;
}

.dropdown-over .dropdown-content ul li {
    padding: 3px 0;
}

.dropdown-over .dropdown-content ul li.selected {
    color: #cfa15e;
}

.dropdown-over .dropdown-content ul li.selected a {
    color: #cfa15e;
}

.dropdown-over:hover,
.dropdown-over:focus,
.dropdown-over.open {
    cursor: pointer;
}

.dropdown-over:hover .dropdown-title,
.dropdown-over:focus .dropdown-title,
.dropdown-over.open .dropdown-title {
    color: #cfa15e;
}

.dropdown-over:hover .dropdown-title a,
.dropdown-over:focus .dropdown-title a,
.dropdown-over.open .dropdown-title a {
    color: #cfa15e;
}

.dropdown-over:hover .dropdown-content,
.dropdown-over:focus .dropdown-content,
.dropdown-over.open .dropdown-content {
    display: block;
}


/* breadcrumb */

#breadcrumb {
    padding: 195px 0;
    margin-bottom: 70px;
    background-color: #eeeeee;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../img/default/bg-breacrum.jpg);
}

#breadcrumb .breadcrumb {
    padding: 0;
    margin-bottom: 0;
}

#breadcrumb .bread-title {
    color: black;
    font-size: 36px;
    font-weight: 700;
    text-transform: none;
    margin-bottom: 15px;
}

#breadcrumb .ul-breadcrumb {
    margin-bottom: 0;
}

#breadcrumb .ul-breadcrumb li {
    display: inline-block;
}

#breadcrumb .ul-breadcrumb li:after {
    content: ">";
    padding: 0 7px;
    color: #666;
}

#breadcrumb .ul-breadcrumb li:last-child:after {
    content: none;
}

#breadcrumb .ul-breadcrumb li span {
    color: #f39b6b;
}


/* star */

.star {
    position: relative;
    width: 14px;
    overflow: hidden;
    cursor: pointer;
    font-size: 12px;
    font-weight: normal;
    line-height: 12px;
    display: inline-block;
}

.star:after {
    content: "\f005";
    font-family: "FontAwesome";
    display: inline-block;
    color: #ccc;
}

.star.star_on:after {
    color: #fac738;
}


/*******************************************************************
       start header
*******************************************************************/


/* top header */

#top-header {
    background-color: #fff;
    position: relative;
    padding: 28px 40px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

#top-header.fixed {
    position: fixed;
    z-index: 11;
    top: 0;
    left: 0;
    right: 0;
    padding: 15px 40px;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

#top-header.top-header-fixed {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 99;
    padding: 0 40px;
    background-color: transparent;
}

#top-header.top-header-fixed.fixed {
    position: fixed;
    z-index: 11;
    background-color: black;
    background-color: rgba(0, 0, 0, 0.5);
    zoom: 1;
    background-color: transparent\9;
    -webkit-transition: 0.3s linear;
    transition: 0.3s linear;
}

#top-header.top-header-fixed .logo {
    line-height: 80px;
    margin-top: 0;
}

#top-header.top-header-fixed .logo img {
    line-height: 80px;
    display: inline-block;
}

.logo {
    margin-top: 6px;
}


/* main menu */

#btn-menu {
    font-size: 18px;
    display: none;
    cursor: pointer;
    padding: 6px 0 2px;
    text-align: center;
    float: left;
}

.rtl #btn-menu {
    float: right;
}

#main-nav {
    /* dropdown-menu level 1 */
    /* dropdown-menu level 2 */
    /* dropdown-menu level 3 */
    /* block-subcategories */
    /* block-image */
}

#main-nav>ul {
    text-align: center;
    float: none;
}

#main-nav>ul>li {
    display: inline-block;
    position: relative;
    float: none;
}

#main-nav>ul>li>a {
    display: block;
    color: black;
    font-family: "Poppins", sans-serif;
    font-weight: 400;
    padding: 10px 18px;
}

#main-nav>ul>li>a .caret {
    color: black;
}

#main-nav>ul>li>a:hover,
#main-nav>ul>li>a:focus,
#main-nav>ul>li>a:active {
    color: #cfa15e;
    background-color: transparent;
}

#main-nav>ul>li>a:hover .caret,
#main-nav>ul>li>a:focus .caret,
#main-nav>ul>li>a:active .caret {
    color: #cfa15e;
}

#main-nav>ul>li:hover>a,
#main-nav>ul>li:focus>a,
#main-nav>ul>li:active>a {
    color: #cfa15e;
}

#main-nav>ul>li:hover>a .caret,
#main-nav>ul>li:focus>a .caret,
#main-nav>ul>li:active>a .caret {
    color: #cfa15e;
}

#main-nav>ul>li.aligned-fullwidth {
    position: static;
}

#main-nav>ul>li.aligned-fullwidth>.dropdown-menu {
    width: 100%!important;
}

#main-nav .dropdown:hover>.dropdown-menu {
    display: block;
    left: 0;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.175);
}

#main-nav .dropdown-menu {
    position: absolute;
    background: white;
    width: 200px;
    z-index: 10;
    top: 100%;
    margin: 0;
    border: none;
    padding: 15px 20px;
    left: 100%;
    text-align: left;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    -o-border-radius: 0px;
    border-radius: 0px;
}

.rtl #main-nav .dropdown-menu {
    right: 100%;
    left: auto;
}

.rtl #main-nav .dropdown-menu {
    text-align: right;
}

#main-nav .dropdown-menu li {
    line-height: 30px;
}

#main-nav .dropdown-menu li a {
    display: block;
    color: #666666;
    line-height: 30px;
    font-size: 13px;
    font-family: "Poppins", sans-serif;
    font-weight: 300;
    padding: 3px 0 3px 0;
}

.rtl #main-nav .dropdown-menu li a {
    padding: 3px 0 3px 0;
}

#main-nav .dropdown-menu li a:hover {
    background-color: transparent;
    color: #cfa15e;
}

#main-nav .dropdown-menu li a:hover .fa {
    color: #cfa15e;
}

#main-nav .dropdown-submenu {
    position: relative;
}

#main-nav .dropdown-submenu .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -15px;
    position: absolute;
}

#main-nav .dropdown-submenu.parent>a {
    display: block;
    position: relative;
}

#main-nav .dropdown-submenu.parent>a:after {
    content: "\f0da";
    position: absolute;
    top: 2px;
    font-size: 13px;
    font-family: "FontAwesome";
    right: 0;
    -webkit-transition: rotate(180deg);
    transition: rotate(180deg);
}

.rtl #main-nav .dropdown-submenu.parent>a:after {
    left: 0;
    right: auto;
}

#main-nav .dropdown-submenu.parent>a .caret {
    display: none;
}

#main-nav .dropdown-submenu:hover>.dropdown-menu {
    display: block;
    left: 100%;
    top: 0;
    -webkit-box-shadow: 0 6px 20px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.175);
}

#main-nav .block-subcategories .menu-title {
    padding: 5px 0;
    margin-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

#main-nav .block-image {
    margin: 10px 0 5px;
}


/* off-mainnav */

#off-mainmenu {
    position: absolute;
    display: none;
    top: 0;
    width: 0;
    height: 100%;
    z-index: 999;
    left: 0;
    background-color: #333;
}

#off-mainmenu .off-mainnav {
    position: absolute;
    top: 0;
    width: 260px;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background-color: #f8f8f8;
    border-right: 1px solid #eaeaea;
    left: -260px;
}

#off-mainmenu .navbar-nav {
    width: 100%;
    margin: 0;
    text-align: left;
}

.rtl #off-mainmenu .navbar-nav {
    text-align: right;
}

#off-mainmenu .navbar-nav>li {
    clear: both;
    width: 100%;
    display: block;
    border-bottom: 1px dashed #eaeaea;
}

#off-mainmenu .navbar-nav>li>a {
    color: black;
}

#off-mainmenu .navbar-nav>li .icon-down {
    position: absolute;
    top: 0px;
    z-index: 1;
    width: 40px;
    height: 46px;
    text-align: center;
    line-height: 46px;
    cursor: pointer;
    right: 0;
}

.rtl #off-mainmenu .navbar-nav>li .icon-down {
    left: 0;
    right: auto;
}

#off-mainmenu .navbar-nav .caret {
    display: none;
}

#off-mainmenu .dropdown-menu.tiva-active {
    display: block;
    position: inherit;
    top: 1px;
    margin: 0;
    padding: 0;
    background-color: #f8f8f8;
    border: none;
    width: 100%;
    -webkit-box-shadow: none;
    box-shadow: none;
}

#off-mainmenu .dropdown-menu.tiva-active .menu-title {
    border-bottom: 1px dashed #eaeaea;
}

#off-mainmenu .dropdown-menu.tiva-active .menu-title a {
    display: block;
    padding: 10px 30px;
    text-transform: uppercase;
    color: #cfa15e;
}

#off-mainmenu .dropdown-menu.tiva-active ul li {
    position: relative;
    border-bottom: 1px dashed #eaeaea;
}

#off-mainmenu .dropdown-menu.tiva-active ul li a {
    display: block;
    padding: 10px 30px;
}

#off-mainmenu .dropdown-menu.tiva-active ul li li a {
    padding: 10px 45px;
}

.off-close {
    padding: 10px;
    border-bottom: 2px solid #eaeaea;
}

.off-close .title {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    color: black;
}

.off-close .close-menu {
    color: black;
    padding: 2px 5px;
    float: right;
}

.rtl .off-close .close-menu {
    float: left;
}

.off-close .close-menu i {
    font-size: 18px;
}

.mainmenu-active #all,
.mainmenu-active #off-mainmenu {
    display: block;
    -webkit-transform: translate(260px, 0);
    -moz-transform: translate(260px, 0);
    -ms-transform: translate(260px, 0);
    -o-transform: translate(260px, 0);
}

.mainmenu-active #all {
    position: fixed;
    margin: 0 auto;
}


/* siderbar menu */

.siderbarmenu {
    position: fixed;
    z-index: 2222;
    display: block;
    top: 0;
    left: 0;
    height: 100%;
    width: 300px;
    background-color: #272727;
    margin-bottom: 30px;
    -webkit-transform: translate3d(-100%, 0, 0);
    -moz-transform: translate3d(-100%, 0, 0);
    -ms-transform: translate3d(-100%, 0, 0);
    -o-transform: translate3d(-100%, 0, 0);
    -webkit-transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.siderbarmenu .btn-close {
    color: white;
    margin-top: 15px;
    font-size: 20px;
    float: right;
}

.rtl .siderbarmenu .btn-close {
    float: left;
}

.siderbarmenu .btn-close:hover {
    color: #cfa15e;
}

.siderbarmenu .navbar-nav {
    width: 100%;
    margin: 0;
    text-align: left;
}

.rtl .siderbarmenu .navbar-nav {
    text-align: right;
}

.siderbarmenu .navbar-nav>li {
    width: 100%;
    display: block;
}

.siderbarmenu .navbar-nav>li>a {
    color: #aaa;
    padding: 10px 0;
    text-transform: uppercase;
}

.siderbarmenu .navbar-nav>li>a .caret {
    display: none;
}

.siderbarmenu .navbar-nav>li>a:hover,
.siderbarmenu .navbar-nav>li>a:focus {
    background-color: transparent;
    color: #cfa15e;
}

.siderbarmenu-active {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
}

#btn-bar {
    color: black;
    cursor: pointer;
    text-transform: uppercase;
}

#btn-bar .fa {
    font-size: 16px;
    margin-right: 10px;
}

.rtl #btn-bar .fa {
    margin-left: 10px;
    margin-right: inherit;
}

#btn-bar:hover {
    color: #cfa15e;
}

.bg-over-lay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 120vh;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1000;
    visibility: hidden;
    cursor: pointer;
    will-change: opacity;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
    transition: opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0s;
}

.show-over-lay {
    opacity: 1;
    filter: alpha(opacity=100);
    visibility: visible;
}

#siderbar-menu {
    width: 100%;
    padding: 50px 0 20px;
    float: left;
}

.rtl #siderbar-menu {
    float: right;
}

.siderbarmenu-content {
    height: 100%;
    padding: 0 35px;
    overflow-y: auto;
    overflow-x: hidden;
}

.siderbarmenu-content .title_block {
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.siderbarmenu-content .btn-down {
    position: absolute;
    top: 0px;
    z-index: 1;
    width: 40px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    cursor: pointer;
    color: #aaa;
    right: 0;
}

.rtl .siderbarmenu-content .btn-down {
    left: 0;
    right: auto;
}

.siderbarmenu-content .menu-title a {
    display: block;
    padding: 5px 10px;
    color: #cfa15e;
    text-transform: uppercase;
}

.siderbarmenu-content .menu-title a:hover {
    color: #cfa15e;
}

.siderbarmenu-content .menudropdown ul li,
.siderbarmenu-content .submenudropdown ul li {
    position: relative;
}

.siderbarmenu-content .menudropdown ul li a,
.siderbarmenu-content .submenudropdown ul li a {
    display: block;
    padding: 10px;
    color: #aaa;
}

.siderbarmenu-content .menudropdown ul li a:hover,
.siderbarmenu-content .submenudropdown ul li a:hover {
    color: #cfa15e;
}

.siderbarmenu-content .menudropdown ul li li a,
.siderbarmenu-content .submenudropdown ul li li a {
    display: block;
    padding: 10px 20px;
}

.siderbarmenu-content .block-image {
    margin: 5px 0;
}

.siderbarmenu-content .block-keep {
    clear: both;
    padding: 30px 0;
    border-top: 1px solid #4d4d4d;
}

.siderbarmenu-content .block-keep .title_block {
    margin-bottom: 30px;
}

.siderbarmenu-content .block-keep ul li {
    color: #aaa;
    margin-bottom: 10px;
}

.siderbarmenu-content .block-keep ul li a {
    color: #aaa;
}

.siderbarmenu-content .block-keep ul li a:hover {
    color: #cfa15e;
}


/*******************************************************************
          end header
*******************************************************************/


/*******************************************************************
                 start main slider
*******************************************************************/

.scroll-down {
    position: absolute;
    bottom: 85px;
    left: 0;
    right: 0;
    z-index: 99;
    color: #fff;
    margin: 0 auto;
    display: inline-block;
    letter-spacing: .1em;
    text-decoration: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
}

.scroll-down span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 50px;
    box-sizing: border-box;
}

.scroll-down span:before {
    position: absolute;
    top: 10px;
    left: 0;
    right: 0;
    content: '';
    width: 6px;
    height: 6px;
    margin: 0 auto;
    background-color: #fff;
    box-sizing: border-box;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    -webkit-animation: sdb10 2s infinite;
    -moz-animation: sdb10 2s infinite;
    -o-animation: sdb10 2s infinite;
    animation: sdb10 2s infinite;
}


/*******************************************************************
                        end main-slider
*********************************************************************/


/*******************************************************************
                 start Content home
*********************************************************************/

.section {
    padding-top: 140px;
    padding-bottom: 140px;
}

.section .des-text {
    padding: 0 0 40px;
    text-align: center;
}

.section .des-text p {
    line-height: 32px;
}


/* block tabs top */

.tabs-top {
    padding-top: 70px;
}

.tabs-top .title_block {
    position: relative;
    text-align: center;
    padding: 30px 0;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 0;
}

.tabs-top .title_block .subtitle {
    position: absolute;
    font-weight: 600;
    font-size: 100px;
    width: 100%;
    top: 0;
    line-height: 1;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: black;
    opacity: 0.1;
    filter: alpha(opacity=10);
}

.tabs-top .nav-tabs {
    padding: 30px 0;
    text-align: center;
    border-bottom: none;
}

.tabs-top .nav-tabs>li {
    float: none;
    padding: 0 20px;
    margin: 0 0 20px;
    display: inline-block;
}

.tabs-top .nav-tabs>li>a {
    color: #777777;
    padding: 3px 0;
    border-style: none none dashed none;
    border-color: transparent transparent #cccccc transparent;
    border-width: 0 0 1px 0;
    font-size: 16px;
    text-transform: uppercase;
}

.tabs-top .nav-tabs>li>a:hover,
.tabs-top .nav-tabs>li>a:focus {
    color: #cfa15e;
    background-color: transparent;
}

.tabs-top .nav-tabs>li.active>a {
    color: #cfa15e;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.tabs-top .nav-tabs>li.active>a,
.tabs-top .nav-tabs>li.active>a:hover,
.tabs-top .nav-tabs>li.active>a:focus {
    border-width: 0 0 1px 0;
    border-color: transparent transparent transparent transparent;
    background-color: transparent;
}


/* bannertext */

.bannertext .box-homehtml {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
}

.bannertext .box-homehtml .block-html {
    text-align: center;
}

.bannertext .box-homehtml .block-html p {
    line-height: 30px;
}

.bannertext .box-homehtml .title_block {
    margin-bottom: 30px;
    font-size: 40px;
    font-style: italic;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

.bannertext .box-homehtml .btn {
    line-height: 45px;
    padding: 0 30px;
    margin-top: 15px;
}

.bannertext.bannertext-1 {
    margin-bottom: 100px;
}

.bannertext.bannertext-1 .box-homehtml .block-html {
    padding-left: 30px;
}

.rtl .bannertext.bannertext-1 .box-homehtml .block-html {
    padding-right: 30px;
    padding-left: inherit;
}

.bannertext.bannertext-2 .box-homehtml .block-html {
    padding-right: 30px;
}

.rtl .bannertext.bannertext-2 .box-homehtml .block-html {
    padding-left: 30px;
    padding-right: inherit;
}


/* box-services */

.box-services .icon-box {
    color: black;
    font-size: 40px;
    width: 40px;
    text-align: center;
    margin-right: 25px;
}

.rtl .box-services .icon-box {
    margin-left: 25px;
    margin-right: inherit;
}

.box-services .icon-box i {
    vertical-align: top;
}

.box-services h4 {
    margin-bottom: 15px;
}

.box-services h4 a {
    font-size: 18px;
    font-weight: 400;
}

.box-services p {
    line-height: 27px;
    margin-bottom: 0;
}


/* view-listproduct */

.view-listproduct .title_block {
    font-size: 20px;
    padding-bottom: 15px;
    position: relative;
}

.view-listproduct .title_block:before {
    position: absolute;
    content: "";
    width: 40px;
    height: 1px;
    bottom: 0;
    background-color: #cfa15e;
    left: 0;
}

.rtl .view-listproduct .title_block:before {
    right: 0;
    left: auto;
}

.view-listproduct .product-viewlist li {
    padding: 18px 0;
    border-bottom: 1px solid #eaeaea;
}

.view-listproduct .product-viewlist li.last {
    border-bottom: none;
}

.view-listproduct .product-image {
    margin-right: 20px;
}

.rtl .view-listproduct .product-image {
    margin-left: 20px;
    margin-right: inherit;
}

.view-listproduct .product-rating {
    padding: 20px 0 10px;
}

.view-listproduct .name a {
    font-weight: 500;
    font-size: 13px;
}

.view-listproduct .content_price {
    font-weight: 700;
    font-size: 14px;
}

.view-listproduct .content_price .price {
    color: black;
}


/* page cms */

.rte ul {
    list-style: disc;
    line-height: 24px;
    padding-left: 40px;
}

.rtl .rte ul {
    padding-right: 40px;
    padding-left: inherit;
}

.rte img {
    margin-bottom: 20px;
}


/* section-parallax */

.section-parallax {
    background: url(../img/default/bg-parallax-h1.jpg) no-repeat center center fixed;
    background-size: cover;
    position: relative;
    padding: 170px 0;
}

.section-parallax .title_block {
    color: white;
    font-size: 45px;
    margin-bottom: 15px;
    text-align: left;
}

.rtl .section-parallax .title_block {
    text-align: right;
}

.section-parallax .html-parallax {
    text-align: left;
}

.rtl .section-parallax .html-parallax {
    text-align: right;
}

.section-parallax p {
    color: #999;
    font-size: 16px;
    line-height: 30px;
}

.section-parallax .btn-shop {
    margin-top: 20px;
    padding: 10px 30px;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}


/* section-manufacture */

.section-manufacture {
    padding: 50px 0;
}


/* section-posts */

.section-posts {
    background-color: #f8f8f8;
}


/* section-instagram */

.section-instagram .block_content a {
    overflow: hidden;
    display: block;
}

.section-instagram .block_content a img {
    -webkit-transition: all 500ms ease 0s;
    transition: all 500ms ease 0s;
}

.section-instagram .block_content a:hover img {
    opacity: 0.5;
    filter: alpha(opacity=50);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}


/* Home 1 */

.home-1 {
    font-family: "Playfair Display", serif;
    /* Popup Screen */
}

.home-1 p {
    font-family: "Playfair Display", serif;
}

.home-1 .dropdown-over .dropdown-title {
    padding: 0 13px;
    line-height: 78px;
}

.home-1 .dropdown-over .dropdown-title a {
    color: white;
}

.home-1 .dropdown-over .dropdown-title a:hover {
    color: #cfa15e;
}

.home-1 .dropdown-over .dropdown-content {
    top: 100%;
}

.home-1 #main-nav {
    float: right;
}

.rtl .home-1 #main-nav {
    float: left;
}

.home-1 #main-nav>ul>li>a {
    color: white;
    padding: 0 18px;
    line-height: 80px;
}

.home-1 #main-nav>ul>li>a .caret {
    color: white;
}

.home-1 #main-nav>ul>li>a:hover {
    color: #cfa15e;
}

.home-1 #main-nav>ul>li>a:hover .caret {
    color: #cfa15e;
}

.home-1 #btn-menu {
    color: white;
}

.home-1 #off-mainmenu #main-nav>ul>li>a {
    line-height: 46px;
}

.home-1 .icon-trigger {
    position: relative;
    color: white;
    font-size: 25px;
    width: 40px;
    height: 80px;
    line-height: 80px;
    text-align: right;
    float: right;
    margin: 0 0 0 30px;
}

.rtl .home-1 .icon-trigger {
    text-align: left;
}

.rtl .home-1 .icon-trigger {
    float: left;
}

.rtl .home-1 .icon-trigger {
    margin: 0 30px 0 0;
}

.home-1 .icon-trigger:after {
    position: absolute;
    content: "\f0c9";
    font-family: "FontAwesome";
    width: 40px;
    height: 60px;
    right: 0;
}

.rtl .home-1 .icon-trigger:after {
    left: 0;
    right: auto;
}

.home-1 .icon-trigger.open:before {
    position: absolute;
    content: "";
    top: 33%;
    width: 1px;
    height: 30px;
    background-color: #888;
    left: 0;
}

.rtl .home-1 .icon-trigger.open:before {
    right: 0;
    left: auto;
}

.home-1 .icon-trigger.open:after {
    content: "\f00d";
}

.home-1 .topheader-navholder {
    display: none;
}

.home-1 .topheader-navholder.open {
    display: block;
}

.home-1 .block-cart .ajax_cart_quantity {
    bottom: 25px;
    font-family: sans-serif;
    right: 0;
}

.rtl .home-1 .block-cart .ajax_cart_quantity {
    left: 0;
    right: auto;
}

.home-1 .tiva-slideshow-wrapper .nivo-controlNav {
    bottom: 120px;
}

.home-1 .section .title_block {
    font-size: 45px;
    padding-bottom: 30px;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.home-1 .section .title_block:before {
    position: absolute;
    content: "";
    bottom: 0;
    height: 2px;
    width: 50px;
    left: 0;
    right: 0;
    margin: 0 auto;
    background-color: #cfa15e;
}

.home-1 .section .des-text p {
    font-size: 16px;
    font-family: "Playfair Display", serif;
}

@media (min-width: 992px) {
    .home-1 .box-html {
        padding-top: 70px;
    }
}

.home-1 .box-html .title_block {
    text-align: left;
}

.rtl .home-1 .box-html .title_block {
    text-align: right;
}

.home-1 .box-html .title_block:before {
    left: 0;
    right: inherit;
}

.home-1 .box-html p {
    font-size: 16px;
    line-height: 32px;
}

.home-1 .box-html p.author {
    color: black;
    font-family: "Rage", sans-serif;
    font-style: italic;
    font-size: 30px;
    margin: 30px 0;
}

.home-1 .box-html.box-html2 {
    padding-top: 170px;
    text-align: right;
}

.rtl .home-1 .box-html.box-html2 {
    text-align: left;
}

.home-1 .box-html.box-html2 p {
    font-family: "Playfair Display", serif;
    font-size: 45px;
    font-weight: 900;
    line-height: 55px;
}

.home-1 .box-html.box-html2 p.text1 {
    font-size: 65px;
    font-style: italic;
    color: #cfa15e;
}

@media (min-width: 991px) {
    .home-1 .box-html.box-html2 p.text1 {
        margin-bottom: -20px;
        position: relative;
    }
}

.home-1 .box-html.box-html2 p.text2 {
    color: #eaeaea;
    text-transform: uppercase;
}

.home-1 .box-services {
    text-align: center;
    border: 1px solid #eaeaea;
    margin-top: 90px;
}

.home-1 .box-services .box-service {
    padding: 30px 10px;
    border-bottom: 1px solid #eaeaea;
}

.home-1 .box-services .box-service.boxthree {
    border-bottom: none;
}

@media (min-width: 992px) {
    .home-1 .box-services .box-service {
        border-left: #eaeaea;
        border-style: none none none solid;
        border-width: 0 0 0 1px;
    }
    .rtl .home-1 .box-services .box-service {
        border-right: #eaeaea;
        border-left: inherit;
    }
    .rtl .home-1 .box-services .box-service {
        border-style: none solid none none;
    }
    .rtl .home-1 .box-services .box-service {
        border-width: 0 1px 0 0;
    }
    .home-1 .box-services .box-service.boxone {
        border-left: transparent;
        border-style: none none none solid;
        border-width: 0 0 0 1px;
    }
    .rtl .home-1 .box-services .box-service.boxone {
        border-right: transparent;
        border-left: inherit;
    }
    .rtl .home-1 .box-services .box-service.boxone {
        border-style: none solid none none;
    }
    .rtl .home-1 .box-services .box-service.boxone {
        border-width: 0 1px 0 0;
    }
}

.home-1 .box-services p {
    font-size: 16px;
}

.home-1 .section-video {
    background-color: #f8f8f8;
    text-align: center;
}

@media (min-width: 992px) {
    .home-1 .section-video {
        padding-bottom: 0;
        margin-bottom: 333px;
    }
}

.home-1 .section-video .tiva-video {
    background-color: white;
    overflow: hidden;
}

@media (min-width: 992px) {
    .home-1 .section-video .tiva-video {
        margin-bottom: -333px;
    }
}

.home-1 .section-video .tiva-video-content {
    position: relative;
    height: 660px;
    width: 100%;
    display: table;
    background: url(../img/default/bg-video-h1.jpg) no-repeat center center transparent;
}

@media (min-width: 992px) {
    .home-1 .section-video .tiva-video-content {
        margin: 0 7px;
        width: 98.9%;
    }
}

.home-1 .section-video .video-link {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 80px;
    color: white;
    width: 100%;
    height: 100%;
}

.home-1 .section-video .video-link a {
    display: inline-block;
    color: white;
    background: url(../img/default/icon.png) no-repeat center center transparent;
    width: 70px;
    height: 70px;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.home-1 .section-video .video-link a:hover {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
}

.home-1 .section-video .video-close {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.home-1 .section-video .video-close a {
    color: white;
    font-size: 22px;
}

.home-1 .section-video .video-close a:hover {
    color: #cfa15e;
}

.home-1 .section-video .tiva-video-overlay {
    display: none;
    width: 100%;
    height: 100%;
}

.home-1 .section-video .tiva-video-overlay.open {
    display: block;
}

.home-1 .section-video .tiva-video-overlay.open:hover .video-close {
    top: 5px;
}

.home-1 .section-video .tiva-video-overlay iframe {
    border: none;
    width: 100%;
    height: 667px;
}

.home-1 .section-counter-numb {
    padding: 0;
}

.home-1 .section-counter-numb .tiva-counter-number {
    padding: 80px 0;
    border-bottom: 1px solid #eaeaea;
}

.home-1 .section-counter-numb .counter-wrap {
    margin: 10px 0;
    display: block;
}

.home-1 .section-counter-numb .counter-wrap .counter-numb {
    color: black;
    font-size: 45px;
    font-family: "sans-serif";
    font-weight: 600;
}

.home-1 .section-counter-numb .counter-wrap h5 {
    color: #666;
    font-size: 15px;
    text-transform: uppercase;
}

.home-1 .section-prolist {
    padding-bottom: 100px;
}

.home-1 .tiva-prolist .des {
    padding: 0 200px 70px;
    text-align: center;
}

.home-1 .tiva-prolist .des p {
    line-height: 32px;
}

.home-1 .tiva-prolist .owl-stage-outer {
    overflow: inherit;
    position: relative;
}

.home-1 .tiva-prolist .owl-stage-outer:before,
.home-1 .tiva-prolist .owl-stage-outer:after {
    position: absolute;
    content: "";
    top: 0px;
    bottom: 0px;
    z-index: 2;
    width: 100%;
    height: 100%;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.8);
    zoom: 1;
    background-color: transparent\9;
}

.home-1 .tiva-prolist .owl-stage-outer:before {
    right: 100%;
    left: inherit;
}

.home-1 .tiva-prolist .owl-stage-outer:after {
    left: 100%;
    right: inherit;
}

.home-1 .product-container .name a {
    font-family: "Playfair Display", serif;
    font-size: 16px;
}

.home-1 .product-container .content_price {
    font-size: 16px;
    font-family: sans-serif;
}

.home-1 .product-container .price {
    color: #cfa15e;
    font-size: 16px;
    font-family: sans-serif;
}

.home-1 .product-container .label-reduction {
    font-family: sans-serif;
}

.home-1 .section-parallax .title_block {
    text-align: left;
}

.rtl .home-1 .section-parallax .title_block {
    text-align: right;
}

.home-1 .section-parallax .title_block:before {
    left: 0;
    right: inherit;
}

.home-1 .section-parallax .btn-shop {
    font-size: 16px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.home-1 .section-parallax .btn-shop:hover {
    color: black;
    border-color: white;
    background-color: white;
}

.home-1 .block-newsletter {
    padding: 140px 0 0;
}

.home-1 .block-newsletter .title_block {
    color: white;
    display: block;
    margin: 0 0 40px;
}

.home-1 .block-newsletter form input[type="text"] {
    padding: 10px 0;
    background-color: transparent;
    border: 1px solid transparent;
    border-bottom: 1px solid #333;
}

.home-1 .block-newsletter form .btn {
    padding: 0;
}

.home-1 .block-newsletter form .btn:hover .submit-icon {
    color: #cfa15e;
}

.home-1 .block-newsletter form .submit-icon:before {
    content: "\f178";
}

.home-1 .block-newsletter form .submit-text {
    display: none;
}

.home-1 .social_block {
    text-align: center;
    margin: 40px 0 0;
}

.home-1 .shop_tablecart .amount,
.home-1 .cart-totals .amount,
.home-1 .checkoutright .amount {
    font-family: sans-serif;
}

.home-1 #footer {
    background: url(../img/default/bg-footer-h1.jpg) no-repeat center center black;
}

.home-1 .tiva-popup-screen .popup form input[type="text"] {
    width: 250px;
    height: 42px;
    padding: 8px 12px;
    display: inline-block;
}

.home-1 .tiva-popup-screen .popup form .btn {
    display: inline-block;
}

.home-1 .tiva-popup-screen .popup form .chck-popup {
    margin-top: 40px;
    font-size: 16px;
}

.home-1 .tiva-popup-screen .popup form .chck-popup input[type="checkbox"] {
    float: none;
}

.home-1 .multi-color .handle {
    line-height: 48px;
}


/* Home 2 */

.home-2 {
    /* Popup Screen */
}

.home-2 a:hover,
.home-2 a:focus {
    color: #949abb;
}

.home-2 .btn-primary {
    color: white;
    background-color: #949abb;
    border-color: #949abb;
}

.home-2 .btn:hover,
.home-2 .btn:focus,
.home-2 .btn:active,
.home-2 .btn-default:hover,
.home-2 .btn-default:focus,
.home-2 .btn-default:active {
    color: white;
    background-color: #949abb;
}

.home-2 .top-header-fixed:after {
    position: absolute;
    content: "";
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.1);
    zoom: 1;
    background-color: transparent\9;
    left: 0;
}

.rtl .home-2 .top-header-fixed:after {
    right: 0;
    left: auto;
}

.home-2 .dropdown-over .dropdown-title {
    padding: 0 13px;
    line-height: 78px;
}

.home-2 .dropdown-over .dropdown-title a {
    color: white;
}

.home-2 .dropdown-over .dropdown-title a:hover {
    color: #949abb;
}

.home-2 .dropdown-over .dropdown-content {
    top: 100%;
}

.home-2 .dropdown-over .dropdown-content a:hover {
    color: #949abb;
}

.home-2 .dropdown-over .dropdown-content ul li.selected {
    color: #949abb;
}

.home-2 .dropdown-over .dropdown-content ul li.selected a {
    color: #949abb;
}

.home-2 .dropdown-over:hover .dropdown-title,
.home-2 .dropdown-over:focus .dropdown-title,
.home-2 .dropdown-over.open .dropdown-title {
    color: #949abb;
}

.home-2 .dropdown-over:hover .dropdown-title a,
.home-2 .dropdown-over:focus .dropdown-title a,
.home-2 .dropdown-over.open .dropdown-title a {
    color: #949abb;
}

.home-2 .block-cart .ajax_cart_quantity {
    bottom: 25px;
    font-family: sans-serif;
    background-color: #949abb;
    right: 0;
}

.rtl .home-2 .block-cart .ajax_cart_quantity {
    left: 0;
    right: auto;
}

.home-2 #main-nav {
    /* dropdown-menu level 2 */
}

.home-2 #main-nav>ul>li>a {
    color: white;
    padding: 0 18px;
    line-height: 80px;
}

.home-2 #main-nav>ul>li>a .caret {
    color: white;
}

.home-2 #main-nav>ul>li>a:hover,
.home-2 #main-nav>ul>li>a:focus,
.home-2 #main-nav>ul>li>a:active {
    color: #949abb;
}

.home-2 #main-nav>ul>li>a:hover .caret,
.home-2 #main-nav>ul>li>a:focus .caret,
.home-2 #main-nav>ul>li>a:active .caret {
    color: #949abb;
}

.home-2 #main-nav>ul>li:hover>a,
.home-2 #main-nav>ul>li:focus>a,
.home-2 #main-nav>ul>li:active>a {
    color: #949abb;
}

.home-2 #main-nav>ul>li:hover>a .caret,
.home-2 #main-nav>ul>li:focus>a .caret,
.home-2 #main-nav>ul>li:active>a .caret {
    color: #949abb;
}

.home-2 #main-nav .dropdown-menu li a:hover {
    color: #949abb;
}

.home-2 #main-nav .dropdown-menu li a:hover .fa {
    color: #949abb;
}

.home-2 .owl-theme .owl-controls .owl-nav div {
    top: 41%;
}

.home-2 .tiva-slideshow-wrapper .nivo-controlNav .nivo-control.active {
    background-color: #949abb;
}

.home-2 .product-container {
    margin-bottom: 50px;
}

.home-2 .product-container .name a {
    color: #777;
    font-size: 15px;
    text-transform: uppercase;
}

.home-2 .product-container .name a:hover {
    color: #949abb;
}

.home-2 .product-container .product_comments {
    margin-bottom: 5px;
}

.home-2 #breadcrumb {
    background-image: url(../img/default/bg-breacrum-h2.jpg);
}

.home-2 #breadcrumb .ul-breadcrumb li span {
    color: #949abb;
}

.home-2 .box-cart-bottom #wishlist_button:hover {
    color: #949abb;
}

.home-2 #quantity_wanted_p .btn:hover,
.home-2 #quantity_wanted_p .btn:focus,
.home-2 #quantity_wanted_p .btn:active {
    background-color: #949abb;
}

.home-2 .section {
    padding: 120px 0;
}

.home-2 .section .title_block {
    position: relative;
    text-align: center;
    padding: 15px 0;
    margin-bottom: 30px;
}

.home-2 .section .title_block span {
    font-size: 45px;
    font-weight: 700;
}

.home-2 .section .title_block .subtitle {
    position: absolute;
    font-size: 150px;
    width: 100%;
    top: 0;
    left: 0;
    right: 0;
    z-index: -1;
    line-height: 112px;
    margin: 0 auto;
    color: #f5f5f5;
    font-family: "Poppins", sans-serif;
}

.home-2 .section.section-prolist {
    padding: 120px 0 70px;
}

.home-2 .section.section-manufacture {
    padding: 70px 0;
}

.home-2 .bannertext .box-homehtml .title_block {
    padding: 0;
}

.home-2 .section-banner {
    padding: 160px 0;
    background: url(../img/default/bg-banner1-h2.jpg) no-repeat center center transparent;
}

.home-2 .section-banner .title_block {
    text-align: center;
}

.home-2 .section-banner .html-parallax {
    text-align: center;
}

.home-2 .section-banner .html-parallax .txt1 {
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-2 .section-banner .html-parallax .txt2,
.home-2 .section-banner .html-parallax .txt3,
.home-2 .section-banner .html-parallax .txt4 {
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    font-family: "Playfair Display", serif;
}

.home-2 .section-banner .html-parallax .txt2,
.home-2 .section-banner .html-parallax .txt4 {
    color: black;
    font-size: 40px;
}

.home-2 .section-banner .html-parallax .txt2 {
    margin-bottom: 25px;
}

.home-2 .section-banner .html-parallax .txt4 {
    margin: 40px 0 50px;
}

.home-2 .section-banner .html-parallax .btn-shop {
    line-height: 45px;
    padding: 0 30px;
}

.home-2 .section-banner.section-banner2 {
    background: url(../img/default/bg-banner2-h2.jpg) no-repeat center center transparent;
}

.home-2 .section-banner.section-banner2 .html-parallax .txt1,
.home-2 .section-banner.section-banner2 .html-parallax .txt3 {
    color: #999;
}

.home-2 .section-manufacture {
    border-bottom: 1px solid #eaeaea;
}

.home-2 .section-instagram {
    padding: 120px 0 90px;
}

.home-2 .section-instagram .block_content a {
    margin-bottom: 30px;
}

.home-2 .content_sortPagiBar.top {
    -webkit-box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 0 0 60px 0 rgba(0, 0, 0, 0.1);
}

.home-2 .pb-left-column #image-block {
    width: 80%;
    float: left;
}

.rtl .home-2 .pb-left-column #image-block {
    float: right;
}

.home-2 .pb-left-column #views_block {
    width: 20%;
    float: right;
}

.rtl .home-2 .pb-left-column #views_block {
    float: left;
}

.home-2 .pb-left-column #thumbs_list {
    width: 100%;
    height: 100%;
}

.home-2 .pb-left-column #thumbs_list ul#thumbs_list_frame {
    height: 567px;
    overflow: inherit;
}

.home-2 .pb-left-column #thumbs_list ul#thumbs_list_frame li {
    padding: 0;
    margin-bottom: 14px;
}

.home-2 .block-newsletter {
    padding: 75px 0;
    display: table;
    width: 100%;
}

.home-2 .block-newsletter .title_block {
    font-size: 45px;
    font-weight: 700;
    line-height: 45px;
    display: table-cell;
    vertical-align: middle;
    text-align: left;
}

.rtl .home-2 .block-newsletter .title_block {
    text-align: right;
}

.home-2 .block-newsletter form {
    width: 57%;
    display: table-cell;
}

.home-2 .block-newsletter form .btn {
    line-height: 48px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.home-2 .block-newsletter form .btn:hover {
    border: none;
    background-color: #949abb;
}

.home-2 .footer-top {
    background-color: #f7f7f7;
}

.home-2 .footer-copyright {
    padding: 15px 0;
    background-color: #121212;
}

.home-2 .toggle-footer li a:hover {
    color: #949abb;
}

.home-2 .social_block ul li a:hover {
    color: #949abb;
}

.home-2 .go-up a {
    background-color: #949abb;
}

.home-2 .tiva-popup-screen .popup {
    width: 770px;
}

.home-2 .tiva-popup-screen .popup input {
    text-align: center;
}

.home-2 .tiva-popup-screen .popup form {
    text-align: center;
    margin-top: 50px;
    padding: 0 30px 30px 0;
}

.rtl .home-2 .tiva-popup-screen .popup form {
    padding: 0 0 30px 30px;
}

.home-2 .tiva-popup-screen .popup form .title_block {
    font-size: 25px;
}

.home-2 .tiva-nav-tabs li.active a {
    color: #949abb;
}

.home-2 .tiva-nav-tabs li.active a:hover,
.home-2 .tiva-nav-tabs li.active a:focus {
    color: #949abb;
}

.home-2 .blog-posts .post-content .btn-readmore:hover {
    border-color: #949abb;
    background-color: #949abb;
}

.home-2 .blog-detail .post-tag-left a:hover {
    color: #949abb;
}


/* Home 3 */

.home-3 {
    /* siderbar menu */
    /* category */
}

.home-3 a:hover,
.home-3 a:focus {
    color: #f39b6b;
}

.home-3 .btn:hover,
.home-3 .btn:focus,
.home-3 .btn:active,
.home-3 .btn-default:hover,
.home-3 .btn-default:focus,
.home-3 .btn-default:active {
    color: white;
    background-color: #f39b6b;
}

.home-3 .btn-primary {
    background-color: #f39b6b;
    border-color: #f39b6b;
}

.home-3 .logo {
    text-align: center;
    margin-top: 0;
}

.home-3 .logo img {
    display: inline-block;
}

.home-3 #top-header {
    padding-top: 10px;
    padding-bottom: 10px;
}

.home-3 #top-header.fixed {
    padding-top: 25px;
    padding-bottom: 25px;
}

.home-3 .dropdown-over .dropdown-title {
    padding: 10px 13px;
}

.home-3 .dropdown-over .dropdown-title a:hover {
    color: #f39b6b;
}

.home-3 .dropdown-over .dropdown-content {
    top: 100%;
}

.home-3 .dropdown-over .dropdown-content a:hover {
    color: #f39b6b;
}

.home-3 .dropdown-over .dropdown-content ul li.selected {
    color: #f39b6b;
}

.home-3 .dropdown-over .dropdown-content ul li.selected a {
    color: #f39b6b;
}

.home-3 .dropdown-over:hover .dropdown-title,
.home-3 .dropdown-over:focus .dropdown-title,
.home-3 .dropdown-over.open .dropdown-title {
    color: #f39b6b;
}

.home-3 .dropdown-over:hover .dropdown-title a,
.home-3 .dropdown-over:focus .dropdown-title a,
.home-3 .dropdown-over.open .dropdown-title a {
    color: #f39b6b;
}

.home-3 .block-cart .dropdown-title {
    padding: 10px 0 10px 13px;
}

.rtl .home-3 .block-cart .dropdown-title {
    padding: 10px 13px 10px 0;
}

.home-3 .block-cart .ajax_cart_quantity {
    bottom: 6px;
    background-color: #f39b6b;
}

.home-3 #btn-bar {
    padding: 15px 0;
    display: inline-block;
}

.home-3 #btn-bar:hover {
    color: #f39b6b;
}

.home-3 .siderbarmenu .btn-close:hover {
    color: #f39b6b;
}

.home-3 .siderbarmenu .navbar-nav {
    /* dropdown-menu level 2 */
}

.home-3 .siderbarmenu .navbar-nav>li>a:hover,
.home-3 .siderbarmenu .navbar-nav>li>a:focus,
.home-3 .siderbarmenu .navbar-nav>li>a:active {
    color: #f39b6b;
}

.home-3 .siderbarmenu .navbar-nav>li>a:hover .caret,
.home-3 .siderbarmenu .navbar-nav>li>a:focus .caret,
.home-3 .siderbarmenu .navbar-nav>li>a:active .caret {
    color: #f39b6b;
}

.home-3 .siderbarmenu .navbar-nav>li:hover>a,
.home-3 .siderbarmenu .navbar-nav>li:focus>a,
.home-3 .siderbarmenu .navbar-nav>li:active>a {
    color: #f39b6b;
}

.home-3 .siderbarmenu .navbar-nav>li:hover>a .caret,
.home-3 .siderbarmenu .navbar-nav>li:focus>a .caret,
.home-3 .siderbarmenu .navbar-nav>li:active>a .caret {
    color: #f39b6b;
}

.home-3 .siderbarmenu .navbar-nav .dropdown-menu li a:hover {
    color: #f39b6b;
}

.home-3 .siderbarmenu .navbar-nav .dropdown-menu li a:hover .fa {
    color: #f39b6b;
}

.home-3 .tiva-slideshow-wrapper .tiva-caption {
    top: 28%;
}

.home-3 .tiva-slideshow-wrapper .tiva-caption .btn {
    border-width: 2px;
    letter-spacing: 2px;
    padding: 10px 30px;
    font-size: 13px;
}

.home-3 .tiva-slideshow-wrapper .tiva-caption .btn-now,
.home-3 .tiva-slideshow-wrapper .tiva-caption .btn-more {
    border: 2px solid black;
}

.home-3 .tiva-slideshow-wrapper .tiva-caption .btn-now:hover,
.home-3 .tiva-slideshow-wrapper .tiva-caption .btn-more:hover {
    border: 2px solid #f39b6b;
    background-color: #f39b6b;
}

.home-3 .tiva-slideshow-wrapper .tiva-caption .btn-more {
    color: white;
    border-color: white;
    margin-right: 15px;
}

.rtl .home-3 .tiva-slideshow-wrapper .tiva-caption .btn-more {
    margin-left: 15px;
    margin-right: inherit;
}

.home-3 .tiva-slideshow-wrapper .tiva-caption .double-btn {
    margin-top: 40px;
}

.home-3 .tiva-slideshow-wrapper .tiva-caption.tiva-caption1 {
    right: 40%;
}

.rtl .home-3 .tiva-slideshow-wrapper .tiva-caption.tiva-caption1 {
    left: 40%;
    right: auto;
}

.home-3 .tiva-slideshow-wrapper .nivo-controlNav .nivo-control.active {
    background-color: #f39b6b;
}

.home-3 .section {
    padding: 100px 0;
}

.home-3 .section.section-manufacture {
    padding: 50px 0;
    border-bottom: 1px solid #eaeaea;
}

.home-3 .section-banner {
    padding: 180px 0;
    margin: 180px 0;
    /*추가*/
    background: url(../img/default/bg-banner1-h3.jpg) no-repeat center center transparent;
}

.home-3 .section-banner .html-parallax p {
    font-size: 16px;
    line-height: 32px;
}

.home-3 .section-banner .html-parallax .txt1 {
    font-size: 45px;
    font-weight: 700;
    line-height: 45px;
    color: black;
}

.home-3 .section-banner .html-parallax .btn {
    margin-top: 70px;
    padding: 10px 35px;
    background-color: transparent;
    border: 2px solid black;
    letter-spacing: 2px;
    color: black;
}

.home-3 .section-banner .html-parallax .btn:hover {
    color: white;
    border-color: #f39b6b;
    background-color: #f39b6b;
}

.home-3 .tiva-prolist .product-container {
    display: none;
}

.home-3 .tiva-prolist .product-container .left-block .content_price {
    position: absolute;
    bottom: 50px;
    background-color: white;
    padding: 5px 20px;
    margin: 0;
    left: 25px;
    -webkit-box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 10px rgba(0, 0, 0, 0.1);
}

.rtl .home-3 .tiva-prolist .product-container .left-block .content_price {
    right: 25px;
    left: auto;
}

.home-3 .tiva-prolist .more-load {
    margin-top: 50px;
}

.home-3 .tiva-prolist .more-load a {
    font-size: 16px;
    font-weight: 700;
    padding-bottom: 5px;
    border-bottom: 1px solid black;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.home-3 .tiva-prolist .more-load a:hover {
    color: #f39b6b;
    border-color: #f39b6b;
}

.home-3 #footer {
    background-color: white;
}

.home-3 .footer-top {
    background-color: #f7f7f7;
}

.home-3 .block-newsletter {
    padding: 50px 0;
    display: table;
    width: 100%;
    text-align: left;
}

.rtl .home-3 .block-newsletter {
    text-align: right;
}

.home-3 .block-newsletter .title_block {
    font-size: 25px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    margin-right: 0;
}

.rtl .home-3 .block-newsletter .title_block {
    margin-left: 0;
    margin-right: inherit;
}

.home-3 .block-newsletter form {
    width: 57%;
    display: table-cell;
}

.home-3 .block-newsletter form .btn {
    border: none;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

.home-3 .block-newsletter form .btn:hover {
    background-color: #f39b6b;
}

.home-3 .footer-center {
    text-align: center;
}

.home-3 .footer-center .block-html img {
    display: inline-block;
}

.home-3 .footer-center .block-html .des {
    padding: 40px 0;
}

.home-3 .footer-center .block-html p {
    margin-bottom: 0;
    line-height: 32px;
}

.home-3 .footer-center .social_block {
    margin: 0;
}

.home-3 .footer-center .social_block .title_block {
    color: black;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 20px;
}

.home-3 .footer-copyright {
    padding: 15px 0;
    background-color: #f7f7f7;
    border-top-color: transparent;
}

.home-3 .footer-copyright .list-inline {
    margin-bottom: 0;
    float: right;
}

.rtl .home-3 .footer-copyright .list-inline {
    float: left;
}

.home-3 .social_block ul li a:hover {
    color: #f39b6b;
}

.home-3 .go-up a {
    background-color: #f39b6b;
}

.home-3 .tiva-popup-screen .popup {
    background: url(../img/default/popup-h3.jpg) no-repeat center center transparent;
}

.home-3 .tiva-popup-screen .popup .title_block {
    font-family: "Poppins", sans-serif;
    font-size: 25px;
    font-weight: 700;
    text-transform: uppercase;
}

.home-3 #breadcrumb {
    padding: 100px 0;
    background-image: url(../img/default/bg-breacrum-h3.jpg);
}

.home-3 #breadcrumb .ul-breadcrumb li span {
    color: #f39b6b;
}

.home-3 .section-team {
    padding-bottom: 0;
    border-top: 1px solid #eaeaea;
}

.home-3 .abous-fashion2 .tiva-counter-number .counter-wrap {
    margin: 10px 0;
    display: block;
}

.home-3 .abous-fashion2 .tiva-counter-number .counter-wrap .counter-numb {
    color: black;
    font-size: 50px;
    font-weight: 700;
}

.home-3 .abous-fashion2 .tiva-counter-number .counter-wrap p {
    margin-bottom: 10px;
}

.home-3 .abous-fashion2 .tiva-counter-number .counter-wrap h5 {
    color: #999;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    margin-bottom: 0;
}

.home-3 .abous-fashion2 .about-team {
    text-align: center;
    border-bottom: 1px solid #eaeaea;
}

.home-3 .abous-fashion2 .about-team .title_block {
    font-size: 30px;
    line-height: 30px;
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

.home-3 .abous-fashion2 .about-team .des {
    margin-bottom: 70px;
}

.home-3 .abous-fashion2 .about-team .team-item {
    margin-bottom: 40px;
}

.home-3 .abous-fashion2 .about-team .team-image a {
    display: block;
    overflow: hidden;
}

.home-3 .abous-fashion2 .about-team .team-image img {
    display: inline-block;
    -webkit-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.home-3 .abous-fashion2 .about-team .team-image:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.home-3 .abous-fashion2 .about-team .team-content {
    padding: 15px;
}

.home-3 .abous-fashion2 .about-team .team-content a {
    font-size: 18px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.home-3 .abous-fashion2 .about-team .team-content .position {
    color: #999;
    margin-bottom: 0;
}

.home-3 .abous-fashion2 .section.section-manufacture {
    padding: 70px 0 20px;
    border-bottom: none;
}

.home-3 .abous-fashion2 .section.section-counter-numb {
    padding: 70px 0;
}

.home-3 .abous-fashion2 .section.section-intro {
    padding-top: 20px;
}

.home-3 .section-video {
    background-color: #f8f8f8;
    text-align: center;
}

@media (min-width: 992px) {
    .home-3 .section-video {
        padding-bottom: 0;
        margin-bottom: 333px;
    }
}

.home-3 .section-video .tiva-video {
    background-color: white;
    overflow: hidden;
}

@media (min-width: 992px) {
    .home-3 .section-video .tiva-video {
        margin-bottom: -333px;
    }
}

.home-3 .section-video .tiva-video-content {
    position: relative;
    height: 600px;
    width: 100%;
    display: table;
    background: url(../img/default/bg-video-h3.jpg) no-repeat center center transparent;
}

.home-3 .section-video .video-link {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
    font-size: 80px;
    color: white;
    width: 100%;
    height: 100%;
}

.home-3 .section-video .video-link a {
    display: inline-block;
    color: white;
    background: url(../img/default/icon.png) no-repeat center center transparent;
    width: 70px;
    height: 70px;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
}

.home-3 .section-video .video-link a:hover {
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
}

.home-3 .section-video .video-close {
    position: absolute;
    content: "";
    top: -50px;
    left: 0;
    right: 0;
    text-align: center;
    -webkit-transition: all 0.35s;
    transition: all 0.35s;
}

.home-3 .section-video .video-close a {
    color: white;
    font-size: 22px;
}

.home-3 .section-video .video-close a:hover {
    color: #cfa15e;
}

.home-3 .section-video .tiva-video-overlay {
    display: none;
    width: 100%;
    height: 100%;
}

.home-3 .section-video .tiva-video-overlay.open {
    display: block;
}

.home-3 .section-video .tiva-video-overlay.open:hover .video-close {
    top: 5px;
}

.home-3 .section-video .tiva-video-overlay iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.home-3 .bannertext .box-homehtml.box-image:after {
    display: none;
}

.home-3 .bannertext .box-homehtml .title_block {
    font-size: 30px;
    line-height: 38px;
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    font-style: inherit;
    text-transform: uppercase;
}

.home-3 .bannertext .box-homehtml .block-html {
    text-align: left;
}

.rtl .home-3 .bannertext .box-homehtml .block-html {
    text-align: right;
}

.home-3 .bannertext.bannertext-1 {
    margin-bottom: 80px;
}

.home-3.category #breadcrumb {
    background: #f3f3f6;
    padding: 45px 0;
    margin-bottom: 0;
}

.home-3.category #breadcrumb .bread-title {
    display: none;
}

.home-3.category .detail-top {
    padding-bottom: 100px;
    background-color: #f3f3f6;
}

.home-3.category .pb-centercolumn {
    padding: 45px;
    background-color: white;
}

.home-3.category .pb-centercolumn h1 {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
}

.home-3.category .box-cart-bottom {
    margin-bottom: 0;
    border-bottom: none;
}

.home-3.category ul.shipping {
    margin-bottom: 0;
}

.home-3.category ul.shipping li {
    color: #999;
    margin-bottom: 5px;
}

.home-3.category .blockproductscategory {
    margin-top: 30px;
    border-top: none;
}

.home-3.category .blockproductscategory .title_block {
    font-weight: 700;
    font-family: "Poppins", sans-serif;
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 0;
}

.home-3 .tiva-nav-tabs li.active a {
    color: #f39b6b;
}

.home-3 .tiva-nav-tabs li.active a:hover,
.home-3 .tiva-nav-tabs li.active a:focus {
    color: #f39b6b;
}

.home-3 .product-container .name a:hover {
    color: #f39b6b;
}

.home-3 .blog-posts .post-content .btn-readmore:hover {
    border-color: #f39b6b;
    background-color: #f39b6b;
}


/* Home 4 */

.home-4 {
    background-color: #f7f7f7;
    font-family: "Playfair Display", serif;
}

.home-4 p {
    font-family: "Playfair Display", serif;
}

.home-4 .effectbanner:before {
    top: 20px;
}

.home-4 .effectbanner:after {
    left: 20px;
}

.rtl .home-4 .effectbanner:after {
    right: 20px;
    left: auto;
}

.home-4 .effectbanner>.image-wrap:before {
    bottom: 20px;
}

.home-4 .effectbanner>.image-wrap:after {
    right: 20px;
}

.rtl .home-4 .effectbanner>.image-wrap:after {
    left: 20px;
    right: auto;
}

.home-4 .effectbanner>.image-wrap:hover:before {
    left: 20px;
    right: 20px;
}

.home-4 .effectbanner>.image-wrap:hover:after {
    top: 20px;
    bottom: 20px;
}

.home-4 .effectbanner:hover:before {
    left: 20px;
    right: 20px;
}

.home-4 .effectbanner:hover:after {
    top: 20px;
    bottom: 20px;
}

.home-4 #top-header {
    padding: 0;
}

.home-4 #top-header.fixed .header-main .logo {
    line-height: 80px;
    margin: 0;
}

.home-4 #top-header.fixed .header-main .dropdown-over .dropdown-title {
    line-height: 78px;
}

.home-4 #top-header.fixed .header-main #main-nav>ul>li>a {
    line-height: 80px;
}

.home-4 #top-header.fixed .header-main .block-cart .ajax_cart_quantity {
    bottom: 38px;
}

.home-4 .header-topbar {
    min-height: 50px;
    border-bottom: 1px solid #eaeaea;
}

.home-4 .header-main .logo {
    line-height: 150px;
    margin: 0;
}

.home-4 .header-main .logo img {
    display: inline-block;
}

.home-4 .header-main .topheader-navholder-lf,
.home-4 .header-main .topheader-navholder-rg {
    float: right;
}

.rtl .home-4 .header-main .topheader-navholder-lf,
.rtl .home-4 .header-main .topheader-navholder-rg {
    float: left;
}

.home-4 .header-main .dropdown-over .dropdown-title {
    padding: 0 13px;
    line-height: 148px;
}

.home-4 .header-main .dropdown-over .dropdown-content {
    top: 100%;
}

.home-4 .header-main .block-cart .dropdown-title {
    padding: 0 0 0 13px;
}

.rtl .home-4 .header-main .block-cart .dropdown-title {
    padding: 0 13px 0 0;
}

.home-4 .header-main .block-cart .ajax_cart_quantity {
    bottom: 78px;
}

.home-4 #main-nav>ul>li>a {
    padding: 0 18px;
    line-height: 150px;
    font-size: 16px;
    font-family: "Playfair Display", serif;
}

.home-4 #main-nav .dropdown-menu li a {
    font-size: 14px;
    font-family: "Playfair Display", serif;
}

.home-4 .header_user_info .dropdown-title {
    display: none;
}

.home-4 .header_user_info .dropdown-title a {
    color: #aaaaaa;
}

.home-4 .header_user_info .dropdown-content {
    top: 50px;
}

.home-4 .header_user_info ul {
    margin-bottom: 0;
    line-height: 50px;
}

.home-4 .header_user_info ul li {
    display: inline;
    padding: 0 20px;
    position: relative;
}

.home-4 .header_user_info ul li:after {
    position: absolute;
    content: "";
    top: 50%;
    height: 4px;
    width: 4px;
    background-color: #ccc;
    right: 0;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
}

.rtl .home-4 .header_user_info ul li:after {
    left: 0;
    right: auto;
}

.home-4 .header_user_info ul li a {
    color: #777;
}

.home-4 .header_user_info ul li a:hover {
    color: #cead72;
}

.home-4 .header_user_info ul li.last {
    padding-right: 0;
}

.rtl .home-4 .header_user_info ul li.last {
    padding-left: 0;
    padding-right: inherit;
}

.home-4 .header_user_info ul li.last:after {
    content: none;
}

.home-4 .block-languages .dropdown-title,
.home-4 .block-currencies .dropdown-title {
    padding: 12px 25px 12px 7px;
}

.rtl .home-4 .block-languages .dropdown-title,
.rtl .home-4 .block-currencies .dropdown-title {
    padding: 12px 7px 12px 25px;
}

.home-4 .block-languages .dropdown-title a,
.home-4 .block-currencies .dropdown-title a {
    color: #777;
    font-size: 14px;
}

.home-4 .block-languages .dropdown-title a:hover,
.home-4 .block-currencies .dropdown-title a:hover {
    color: #cead72;
}

.home-4 .block-languages .dropdown-title:before,
.home-4 .block-currencies .dropdown-title:before {
    content: '\f107';
    position: absolute;
    top: 13px;
    font-family: "FontAwesome";
    right: 10px;
}

.rtl .home-4 .block-languages .dropdown-title:before,
.rtl .home-4 .block-currencies .dropdown-title:before {
    left: 10px;
    right: auto;
}

.home-4 .block-languages .dropdown-content,
.home-4 .block-currencies .dropdown-content {
    top: 50px;
    left: 0;
}

.rtl .home-4 .block-languages .dropdown-content,
.rtl .home-4 .block-currencies .dropdown-content {
    right: 0;
    left: auto;
}

.home-4 .tiva-slideshow-wrapper .tiva-caption {
    top: 25%;
    right: 40%;
}

.rtl .home-4 .tiva-slideshow-wrapper .tiva-caption {
    left: 40%;
    right: auto;
}

.home-4 .tiva-slideshow-wrapper .tiva-caption .btn {
    color: white;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 2px;
    padding: 10px 30px;
    border: 2px solid white;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

.home-4 .tiva-slideshow-wrapper .tiva-caption .btn:hover {
    border: 2px solid #cead72;
    background-color: #cead72;
}

.home-4 .tiva-slideshow-wrapper .nivo-controlNav .nivo-control.active {
    background-color: #cead72;
}

.home-4 .section .title_block {
    margin-bottom: 40px;
    padding-bottom: 50px;
    line-height: 40px;
    font-size: 40px;
    font-style: normal;
    font-weight: 400;
    font-family: "Playfair Display", serif;
    text-align: center;
    background: url(../img/default/bg-title-h4.png) no-repeat bottom center transparent;
}

.home-4 .section .des-text p {
    font-size: 16px;
    line-height: 32px;
}

.home-4 .section .des-text .author {
    color: #000;
    font-family: "Rage", sans-serif;
    font-style: italic;
    font-size: 34px;
    margin: 30px 0 0;
}

.home-4 .section-category {
    padding-top: 0;
}

.home-4 .categoryitem {
    display: none;
}

.home-4 .categoryitem .box-homehtml {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    background-color: white;
}

.home-4 .categoryitem .box-homehtml .block-html {
    position: relative;
    text-align: center;
    padding: 0 15px;
}

.home-4 .categoryitem .box-homehtml .block-html p {
    line-height: 30px;
    font-size: 16px;
}

.home-4 .categoryitem .box-homehtml .block-html:before {
    z-index: 1;
    position: absolute;
    content: "";
    top: 40%;
    width: 20px;
    height: 20px;
    margin: 0 auto;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
}

.home-4 .categoryitem .box-homehtml .btn {
    line-height: 45px;
    padding: 0 40px;
    margin-top: 15px;
    background-color: white;
    border: 2px solid #cead72;
    color: #cead72;
    font-size: 14px;
    font-weight: 400;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

.home-4 .categoryitem .box-homehtml .btn:hover {
    background-color: #cead72;
    color: white;
}

.home-4 .categoryitem.categoryitem-1 .box-homehtml .block-html:before {
    border-right: 20px solid white;
    left: -20px;
}

.rtl .home-4 .categoryitem.categoryitem-1 .box-homehtml .block-html:before {
    right: -20px;
    left: auto;
}

.home-4 .categoryitem.categoryitem-2 .box-homehtml .block-html:before {
    border-left: 20px solid white;
    right: -20px;
}

.rtl .home-4 .categoryitem.categoryitem-2 .box-homehtml .block-html:before {
    left: -20px;
    right: auto;
}

.home-4 .category-list .more-load {
    margin-top: 100px;
}

.home-4 .category-list .more-load a {
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 3px;
    border-bottom: 1px solid black;
    font-family: "Playfair Display", serif;
}

.home-4 .category-list .more-load a:hover {
    color: #cead72;
    border-color: #cead72;
}

.home-4 .section-prolist {
    padding-bottom: 100px;
    background-color: white;
}

.home-4 .section-prolist .title_block {
    margin-bottom: 60px;
}

.home-4 .product-container .name a {
    font-family: "Playfair Display", serif;
}

.home-4 .product-container .name a:hover {
    color: #cead72;
}

.home-4 .product-container .price {
    font-size: 16px;
    color: #cead72;
}

.home-4 .product-container .content_price {
    font-family: sans-serif;
}

.home-4 #footer {
    background-color: white;
}

.home-4 #footer .block .title_block {
    color: black;
}

.home-4 .footer-top {
    background-color: #f7f7f7;
}

.home-4 .block-newsletter form input[type="text"] {
    background-color: transparent;
    border: none;
    border-bottom: 1px solid #eaeaea;
}

.home-4 .block-newsletter form .btn {
    padding: 0;
}

.home-4 .block-newsletter form .submit-icon {
    display: block;
    color: black;
}

.home-4 .block-newsletter form .submit-icon:before {
    content: "\f178";
}

.home-4 .block-newsletter form .submit-icon:hover {
    color: #cead72;
}

.home-4 .block-newsletter form .submit-text {
    display: none;
}

.home-4 .footer-copyright {
    padding: 15px 0;
    background-color: transparent;
    border-top-color: #eaeaea;
}

.home-4 .footer-copyright .list-inline {
    margin-bottom: 0;
    float: right;
}

.rtl .home-4 .footer-copyright .list-inline {
    float: left;
}

.home-4 .footer-copyright .list-inline a {
    color: #666666;
}

.home-4 .footer-copyright .list-inline a:hover {
    color: #cead72;
}

.home-4 .multi-color .handle {
    line-height: 46px;
}


/* Home 5 */

.home-5 p {
    color: #777;
}

.home-5 h1,
.home-5 h2,
.home-5 h3,
.home-5 h4,
.home-5 h5,
.home-5 h6,
.home-5 .h1,
.home-5 .h2,
.home-5 .h3,
.home-5 .h4,
.home-5 .h5,
.home-5 .h6 {
    font-family: "Poppins", sans-serif;
}

.home-5 .des-text {
    padding: 0 200px;
}

.home-5 #top-header {
    padding: 25px 0;
}

.home-5 .logo {
    margin-top: 0;
    text-align: center;
}

.home-5 .logo img {
    display: inline-block;
}

.home-5 #btn-bar {
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    border: 2px solid #000;
    margin-right: 15px;
}

.rtl .home-5 #btn-bar {
    margin-left: 15px;
    margin-right: inherit;
}

.home-5 #btn-bar .fa {
    font-size: 14px;
    margin-right: 0;
}

.rtl .home-5 #btn-bar .fa {
    margin-left: 0;
    margin-right: inherit;
}

.home-5 .dropdown-over .dropdown-title {
    padding: 0 15px;
    line-height: 32px;
}

.home-5 .dropdown-over .dropdown-title a {
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
}

.home-5 .dropdown-over .dropdown-title a:hover {
    color: #cfa15e;
}

.home-5 .dropdown-over .dropdown-content {
    left: 0;
    right: inherit;
    top: 32px;
}

.home-5 .block-currency li.selected a {
    color: #cfa15e;
}

.home-5 .block-languages li img {
    vertical-align: inherit;
}

.home-5 .block-languages li.selected {
    color: #cfa15e;
}

.home-5 .block-search .dropdown-title a {
    font-size: 16px;
    color: black;
}

.home-5 .block-search .dropdown-title a:hover {
    color: #cfa15e;
}

.home-5 .block-search .dropdown-content {
    right: 0;
    left: inherit;
}

.home-5 .block-cart .dropdown-title {
    padding-right: 0;
}

.rtl .home-5 .block-cart .dropdown-title {
    padding-left: 0;
    padding-right: inherit;
}

.home-5 .block-cart .dropdown-title a {
    color: black;
    font-size: 12px;
    font-weight: bold;
}

.home-5 .block-cart .dropdown-title a:hover {
    color: #cfa15e;
}

.home-5 .block-cart .dropdown-content {
    right: 0;
    left: inherit;
}

.home-5 .block-cart .title-cart {
    width: 32px;
    height: 32px;
    line-height: 28px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
    border: 2px solid #000;
}

.home-5 .block-cart .text-mcart {
    margin: 0 5px;
}

.home-5 .section {
    padding-top: 0;
    padding-bottom: 0;
}

.home-5 .box-services {
    padding: 120px 0 110px;
    margin-bottom: 130px;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    text-align: center;
}

.home-5 .box-services h1 {
    color: #cdcdcd;
    font-size: 50px;
    font-family: "Poppins", sans-serif;
    font-weight: bold;
    line-height: 65px;
    padding: 0 200px;
    margin-bottom: 90px;
    text-align: center;
}

.home-5 .box-services h4 a {
    font-size: 16px;
    font-weight: bold;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

.home-5 .box-services p {
    line-height: 28px;
}

.home-5 .section-prolist {
    padding-bottom: 50px;
}

.home-5 .section-prolist .product-container {
    margin-bottom: 70px;
}

.home-5 .section-prolist .product-container .name a {
    color: #777;
}

.home-5 .section-prolist .product-container .name a:hover {
    color: #cfa15e;
}

.home-5 .block-newsletter .title_block {
    font-size: 30px;
    font-weight: bold;
    padding-bottom: 15px;
    margin-right: 0;
}

.rtl .home-5 .block-newsletter .title_block {
    margin-left: 0;
    margin-right: inherit;
}

.home-5 .block-newsletter form {
    margin-top: 30px;
}

.home-5 .block-newsletter form input[type="text"] {
    border: 1px solid transparent;
    border-bottom: 1px solid black;
    background-color: transparent;
    margin-bottom: 35px;
    text-align: center;
}

.home-5 .block-newsletter form .btn {
    position: inherit;
    letter-spacing: 3px;
}

.home-5 #footer {
    background-color: white;
}

.home-5 #footer .social_block {
    margin: 0;
    float: right;
}

.rtl .home-5 #footer .social_block {
    float: left;
}

.home-5 #footer p {
    color: #777;
}

.home-5 .footer-top {
    background-color: #f5f5f5;
}

.home-5 .footer-top .block-newsletter {
    padding: 120px 0;
}

.home-5 .footer-copyright {
    border-top: none;
}


/* home-6 */

.home-6 a:hover,
.home-6 a:focus {
    color: #1ccfdf;
}

.home-6 .btn-primary {
    background-color: #1ccfdf;
    border: 1px solid #1ccfdf;
}

.home-6 .logo {
    padding: 40px 0 20px;
    text-align: center;
}

.home-6 .logo img {
    display: inline-block;
}

.home-6 #top-header {
    padding: 0;
}

.home-6 .header-topbar {
    border-bottom: 1px solid #eaeaea;
}

.home-6 .dropdown-over .dropdown-title {
    padding: 0 15px;
    line-height: 50px;
}

.home-6 .dropdown-over .dropdown-title a {
    color: #777;
    font-size: 14px;
    text-transform: uppercase;
}

.home-6 .dropdown-over .dropdown-title a:hover {
    color: #1ccfdf;
}

.home-6 .dropdown-over .dropdown-title .icon {
    display: none;
}

.home-6 .dropdown-over .dropdown-content {
    left: 0;
    right: inherit;
    top: 50px;
}

.home-6 .dropdown-over .dropdown-content a:hover {
    color: #1ccfdf;
}

.home-6 .dropdown-over .dropdown-content ul li.selected {
    color: #1ccfdf;
}

.home-6 .dropdown-over .dropdown-content ul li.selected a {
    color: #1ccfdf;
}

.home-6 .dropdown-over:hover .dropdown-title,
.home-6 .dropdown-over:focus .dropdown-title,
.home-6 .dropdown-over.open .dropdown-title {
    color: #1ccfdf;
}

.home-6 .dropdown-over:hover .dropdown-title a,
.home-6 .dropdown-over:focus .dropdown-title a,
.home-6 .dropdown-over.open .dropdown-title a {
    color: #1ccfdf;
}

.home-6 .block-search .dropdown-title a {
    font-size: 14px;
}

.home-6 .block-search .dropdown-content {
    right: 0;
    left: inherit;
}

.home-6 .block-currency .dropdown-title {
    padding: 0 10px 0 0;
}

.rtl .home-6 .block-currency .dropdown-title {
    padding: 0 0 0 10px;
}

.home-6 .block-cart .dropdown-title {
    padding: 0 0 0 10px;
}

.rtl .home-6 .block-cart .dropdown-title {
    padding: 0 10px 0 0;
}

.home-6 .block-cart .dropdown-content {
    right: 0;
    left: inherit;
}

.home-6 #main-nav {
    /* dropdown-menu level 2 */
}

.home-6 #main-nav>ul>li>a {
    padding: 30px 18px;
    font-size: 15px;
    text-transform: uppercase;
}

.home-6 #main-nav>ul>li>a:hover,
.home-6 #main-nav>ul>li>a:focus,
.home-6 #main-nav>ul>li>a:active {
    color: #1ccfdf;
}

.home-6 #main-nav>ul>li>a:hover .caret,
.home-6 #main-nav>ul>li>a:focus .caret,
.home-6 #main-nav>ul>li>a:active .caret {
    color: #1ccfdf;
}

.home-6 #main-nav>ul>li:hover>a,
.home-6 #main-nav>ul>li:focus>a,
.home-6 #main-nav>ul>li:active>a {
    color: #1ccfdf;
}

.home-6 #main-nav>ul>li:hover>a .caret,
.home-6 #main-nav>ul>li:focus>a .caret,
.home-6 #main-nav>ul>li:active>a .caret {
    color: #1ccfdf;
}

.home-6 #main-nav .dropdown-menu li a:hover {
    color: #1ccfdf;
}

.home-6 #main-nav .dropdown-menu li a:hover .fa {
    color: #1ccfdf;
}

.home-6 .tiva-slideshow-wrapper .tiva-caption {
    left: 18%;
    text-align: left;
}

.rtl .home-6 .tiva-slideshow-wrapper .tiva-caption {
    right: 18%;
    left: auto;
}

.rtl .home-6 .tiva-slideshow-wrapper .tiva-caption {
    text-align: right;
}

.home-6 .tiva-slideshow-wrapper .btn-now {
    color: white;
    font-size: 13px;
    padding: 12px 35px;
    margin-top: 35px;
    background-color: #333;
}

.home-6 .tiva-slideshow-wrapper .btn-now:hover {
    background-color: #1ccfdf;
}

.home-6 .tiva-slideshow-wrapper .nivo-controlNav .nivo-control.active {
    background-color: #1ccfdf;
}

.home-6 .section.section-instagram {
    padding: 0;
}

.home-6 .section.section-trend {
    padding-top: 160px;
}

.home-6 .section-category {
    padding: 0;
}

.home-6 .categoryitem {
    width: 100%;
    display: table;
}

.home-6 .categoryitem .box-category {
    width: 50%;
    display: table-cell;
}

.home-6 .categoryitem .box-homehtml {
    width: 50%;
    display: table-cell;
    vertical-align: middle;
    background-color: white;
}

.home-6 .categoryitem .box-homehtml .block-html {
    position: relative;
    text-align: center;
    padding: 0 15px;
}

.home-6 .categoryitem .box-homehtml .block-html p {
    line-height: 30px;
    font-size: 16px;
}

.home-6 .categoryitem .box-homehtml .block-html .title_block {
    position: relative;
    font-size: 40px;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.home-6 .categoryitem .box-homehtml .block-html .title_block:after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    height: 2px;
    width: 30px;
    background-color: #1ccfdf;
}

.home-6 .categoryitem .box-homehtml .btn {
    line-height: 45px;
    padding: 0 40px;
    margin-top: 15px;
    background-color: white;
    border: 2px solid #1ccfdf;
    color: #1ccfdf;
    font-size: 14px;
    font-weight: 400;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

.home-6 .categoryitem .box-homehtml .btn:hover {
    background-color: #1ccfdf;
    color: white;
}

.home-6 .hottrend .view-listproduct .title_block {
    font-size: 40px;
    line-height: 55px;
    margin: 70px 0 40px;
}

.home-6 .hottrend .view-listproduct .title_block:before {
    height: 2px;
    width: 30px;
    background-color: #1ccfdf;
}

.home-6 .hottrend .view-listproduct .name a {
    color: #666;
    font-size: 15px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.home-6 .hottrend .view-listproduct .name a:hover {
    color: #1ccfdf;
}

.home-6 .hottrend .view-listproduct .content_price {
    font-size: 16px;
}

.home-6 .hottrend .view-listproduct .product-rating {
    padding: 20px 0 2px;
}

.home-6 .hottrend .view-listproduct .block_content {
    height: 590px;
}

.home-6 .hottrend .view-listproduct .product-image {
    margin-right: 30px;
}

.rtl .home-6 .hottrend .view-listproduct .product-image {
    margin-left: 30px;
    margin-right: inherit;
}

.home-6 .hottrend .view-listproduct .product-viewlist {
    margin-bottom: 0;
}

.home-6 .hottrend .view-listproduct .product-viewlist li {
    padding: 0 0 5px;
    border-bottom: none;
}

.home-6 .hottrend .banner-item {
    padding-left: 70px;
}

.rtl .home-6 .hottrend .banner-item {
    padding-right: 70px;
    padding-left: inherit;
}

.home-6 .mCSB_scrollTools .mCSB_draggerRail {
    width: 1px;
    background-color: #ddd;
}

.home-6 .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    width: 5px;
    background-color: #1ccfdf;
}

.home-6 .hotdiscount {
    margin-top: 130px;
}

.home-6 .hotdiscount .block-html h4 {
    font-size: 30px;
    margin-bottom: 0;
}

.home-6 .hotdiscount .block-html h2 {
    font-size: 40px;
    line-height: 60px;
    margin-bottom: 50px;
}

.home-6 .hotdiscount .block-html h2 span {
    color: #f14d50;
}

.home-6 .hotdiscount .block-html .btn {
    background-color: transparent;
    border: 2px solid black;
    padding: 12px 30px;
    color: black;
}

.home-6 .hotdiscount .block-html .btn:hover {
    color: #1ccfdf;
    border: 2px solid #1ccfdf;
}

.home-6 .block-newsletter {
    padding: 130px 0;
}

.home-6 .block-newsletter .title_block {
    font-size: 40px;
    vertical-align: middle;
    margin-right: 100px;
}

.rtl .home-6 .block-newsletter .title_block {
    margin-left: 100px;
    margin-right: inherit;
}

.home-6 .block-newsletter form {
    width: 400px;
}

.home-6 .block-newsletter form input[type="text"] {
    padding: 10px 0;
    background-color: transparent;
    border: 1px solid transparent;
    border-bottom: 1px solid black;
}

.home-6 .block-newsletter form .btn {
    padding: 0;
}

.home-6 .block-newsletter form .submit-icon {
    color: black;
    display: block;
}

.home-6 .block-newsletter form .submit-icon:before {
    content: "\f0e0";
}

.home-6 .block-newsletter form .submit-icon:hover {
    color: #1ccfdf;
}

.home-6 .block-newsletter form .submit-text {
    display: none;
}

.home-6 #footer {
    color: #666;
    background-color: white;
}

.home-6 #footer .social_block {
    margin: 0;
    float: right;
}

.rtl .home-6 #footer .social_block {
    float: left;
}

.home-6 #footer .footer-top {
    background-color: #f8f8f8;
}

.home-6 #footer .footer-copyright {
    padding: 23px 0;
    border-top: none;
}

.home-6 .social_block ul li a:hover {
    color: #1ccfdf;
}

.home-6 .go-up a {
    background-color: #1ccfdf;
}


/* home-7 */

.home-7 {
    background-color: #f8f8f8;
}

.home-7 h1,
.home-7 h2,
.home-7 h3,
.home-7 h4,
.home-7 h5,
.home-7 h6,
.home-7 .h1,
.home-7 .h2,
.home-7 .h3,
.home-7 .h4,
.home-7 .h5,
.home-7 .h6 {
    font-family: "Poppins", sans-serif;
}

.home-7 a:hover,
.home-7 a:focus {
    color: #8aa3aa;
}

.home-7 .btn-primary {
    color: white;
    background-color: #8aa3aa;
    border: 1px solid #8aa3aa;
}

.home-7 .btn:hover,
.home-7 .btn:focus,
.home-7 .btn:active,
.home-7 .btn-default:hover,
.home-7 .btn-default:focus,
.home-7 .btn-default:active {
    color: white;
    background-color: #8aa3aa;
    border: 1px solid #8aa3aa;
}

.home-7 #all {
    padding: 0 30px;
}

.home-7 .dropdown-over .dropdown-title a:hover {
    color: #8aa3aa;
}

.home-7 .dropdown-over .dropdown-content {
    top: 42px;
}

.home-7 .dropdown-over .dropdown-content a:hover {
    color: #8aa3aa;
}

.home-7 .dropdown-over .dropdown-content ul li.selected {
    color: #8aa3aa;
}

.home-7 .dropdown-over .dropdown-content ul li.selected a {
    color: #8aa3aa;
}

.home-7 .dropdown-over:hover .dropdown-title,
.home-7 .dropdown-over:focus .dropdown-title,
.home-7 .dropdown-over.open .dropdown-title {
    color: #8aa3aa;
}

.home-7 .dropdown-over:hover .dropdown-title a,
.home-7 .dropdown-over:focus .dropdown-title a,
.home-7 .dropdown-over.open .dropdown-title a {
    color: #8aa3aa;
}

.home-7 #main-nav {
    /* dropdown-menu level 2 */
}

.home-7 #main-nav>ul>li>a {
    text-transform: uppercase;
}

.home-7 #main-nav>ul>li>a:hover,
.home-7 #main-nav>ul>li>a:focus,
.home-7 #main-nav>ul>li>a:active {
    color: #8aa3aa;
}

.home-7 #main-nav>ul>li>a:hover .caret,
.home-7 #main-nav>ul>li>a:focus .caret,
.home-7 #main-nav>ul>li>a:active .caret {
    color: #8aa3aa;
}

.home-7 #main-nav>ul>li:hover>a,
.home-7 #main-nav>ul>li:focus>a,
.home-7 #main-nav>ul>li:active>a {
    color: #8aa3aa;
}

.home-7 #main-nav>ul>li:hover>a .caret,
.home-7 #main-nav>ul>li:focus>a .caret,
.home-7 #main-nav>ul>li:active>a .caret {
    color: #8aa3aa;
}

.home-7 #main-nav .dropdown-menu li a:hover {
    color: #8aa3aa;
}

.home-7 #main-nav .dropdown-menu li a:hover .fa {
    color: #8aa3aa;
}

.home-7 .block-cart .dropdown-title {
    padding: 5px 13px 4px;
}

.home-7 .block-cart .dropdown-title a {
    font-size: 17px;
}

.home-7 .block-cart .ajax_cart_quantity {
    background-color: #8aa3aa;
    right: 0;
}

.rtl .home-7 .block-cart .ajax_cart_quantity {
    left: 0;
    right: auto;
}

.home-7 .section {
    padding: 0;
}

.home-7 .section .subtitle_block {
    color: #777;
    font-size: 12px;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 6px;
}

.home-7 .section .title_block {
    font-size: 45px;
    font-weight: 700;
    line-height: 45px;
    margin-bottom: 40px;
}

.home-7 .section p {
    font-size: 16px;
    line-height: 32px;
    color: #777;
}

.home-7 .section p.author {
    color: #000;
    font-family: "Rage", sans-serif;
    font-style: italic;
    font-size: 36px;
    margin: 40px 0 0;
}

.home-7 .tv-tablecell {
    width: 50%;
}

.home-7 .tv-tablecell.tv-tablecell-2 {
    padding: 0 150px;
    background-color: white;
}

.home-7 .tiva-slideshow-wrapper .tiva-caption {
    top: 35%;
    left: 15%;
    text-align: left;
}

.rtl .home-7 .tiva-slideshow-wrapper .tiva-caption {
    right: 15%;
    left: auto;
}

.rtl .home-7 .tiva-slideshow-wrapper .tiva-caption {
    text-align: right;
}

.home-7 .tiva-slideshow-wrapper .tiva-caption .btn-now {
    position: relative;
    line-height: 40px;
    padding: 0 17px;
    color: #333;
    font-size: 13px;
    font-weight: 700;
    border: none;
}

.home-7 .tiva-slideshow-wrapper .tiva-caption .btn-now:before {
    position: absolute;
    content: "";
    left: 0;
    top: 0;
    z-index: -1;
    height: 36px;
    width: 35px;
    background-color: #bac8cc;
    -webkit-transition: all 200ms ease-in-out;
    transition: all 200ms ease-in-out;
}

.home-7 .tiva-slideshow-wrapper .tiva-caption .btn-now:hover {
    border: none;
    background-color: transparent;
    color: white;
}

.home-7 .tiva-slideshow-wrapper .tiva-caption .btn-now:hover:before {
    width: 100%;
}

.home-7 .tiva-slideshow-wrapper .nivo-controlNav {
    bottom: 100px;
}

.home-7 .tiva-slideshow-wrapper .nivo-controlNav .nivo-control.active {
    background-color: #8aa3aa;
}

.home-7 .section-topcategories .fp-slides {
    z-index: 0;
}

.home-7 .section-topcategories .fp-controlArrow.fp-next {
    right: 30px;
    border-width: 20px 0 20px 16px;
    border-color: transparent transparent transparent #333;
}

.home-7 .section-topcategories .fp-controlArrow.fp-prev {
    left: 30px;
    border-width: 20px 16px 20px 0;
    border-color: transparent #333 transparent transparent;
}

.home-7 .section-topcategories .btn {
    border: 2px solid #eaeaea;
    line-height: 50px;
    padding: 0 30px;
    margin-top: 30px;
    letter-spacing: 3px;
}

.home-7 .section-topcategories .btn:hover {
    color: white;
    border: 2px solid #8aa3aa;
    background-color: #8aa3aa;
}

.home-7 .section-featureditem {
    text-align: center;
    background: url(../img/default/bg-featured-h7.jpg) no-repeat 0 0 transparent;
}

.home-7 .section-featureditem .title_block {
    margin-bottom: 60px;
}

.home-7 .section-featureditem .product-container .product-image-container {
    margin-bottom: 0;
}

.home-7 .section-featureditem .product-container .product-box {
    background-color: white;
    padding: 20px 0 15px;
}

.home-7 .section-posts .blogposts {
    background-color: white;
}

.home-7 .section-posts .title_block {
    margin-bottom: 20px;
}

.home-7 .section-posts .tiva-postslist {
    padding: 180px 150px 0;
}

.home-7 .section-contactus .block-html {
    margin: 20px 0;
}

.home-7 .section-contactus .block-html h4 {
    text-transform: uppercase;
    font-size: 15px;
    font-weight: 700;
}

.home-7 .section-contactus .block-html ul {
    margin-bottom: 0;
}

.home-7 .section-contactus .block-html ul li {
    padding: 0;
    margin: 0 20px 5px 0;
}

.rtl .home-7 .section-contactus .block-html ul li {
    margin: 0 0 5px 20px;
}

.home-7 .section-contactus .block-html ul li a {
    font-size: 16px;
}

.home-7 .product-container .name a:hover {
    color: #8aa3aa;
}

.home-7 .product-container .box-buttons .btn {
    border: none;
}

.home-7 .product-container .box-buttons-right .btn {
    border-left: white;
    border-style: none none none solid;
    border-width: 0 0 0 1px;
}

.rtl .home-7 .product-container .box-buttons-right .btn {
    border-right: white;
    border-left: inherit;
}

.rtl .home-7 .product-container .box-buttons-right .btn {
    border-style: none solid none none;
}

.rtl .home-7 .product-container .box-buttons-right .btn {
    border-width: 0 1px 0 0;
}

.home-7 .owl-theme .owl-controls .owl-nav div:hover {
    background-color: #8aa3aa;
    border: 2px solid #8aa3aa;
}

.home-7 #top-header {
    padding: 18px 30px;
    background-color: #f8f8f8;
}

.home-7 #footer {
    padding: 0 30px;
    background-color: #f8f8f8;
}

.home-7 .go-up {
    right: 30px;
}

.rtl .home-7 .go-up {
    left: 30px;
    right: auto;
}


/* home-8 */

.home-8 #all {
    padding: 0 50px;
}

.home-8 a:hover,
.home-8 a:focus {
    color: #f39b6b;
}

.home-8 .btn-primary {
    color: white;
    background-color: #f39b6b;
    border: 1px solid #f39b6b;
}

.home-8 .btn:hover,
.home-8 .btn:focus,
.home-8 .btn:active,
.home-8 .btn-default:hover,
.home-8 .btn-default:focus,
.home-8 .btn-default:active {
    color: white;
    background-color: #f39b6b;
    border: 1px solid #f39b6b;
}

.home-8 .dropdown-over .dropdown-title a:hover {
    color: #f39b6b;
}

.home-8 .dropdown-over .dropdown-content {
    top: 42px;
}

.home-8 .dropdown-over .dropdown-content a:hover {
    color: #f39b6b;
}

.home-8 .dropdown-over .dropdown-content ul li.selected {
    color: #f39b6b;
}

.home-8 .dropdown-over .dropdown-content ul li.selected a {
    color: #f39b6b;
}

.home-8 .dropdown-over:hover .dropdown-title,
.home-8 .dropdown-over:focus .dropdown-title,
.home-8 .dropdown-over.open .dropdown-title {
    color: #f39b6b;
}

.home-8 .dropdown-over:hover .dropdown-title a,
.home-8 .dropdown-over:focus .dropdown-title a,
.home-8 .dropdown-over.open .dropdown-title a {
    color: #f39b6b;
}

.home-8 #main-nav {
    /* dropdown-menu level 2 */
}

.home-8 #main-nav>ul>li>a {
    text-transform: uppercase;
}

.home-8 #main-nav>ul>li>a:hover,
.home-8 #main-nav>ul>li>a:focus,
.home-8 #main-nav>ul>li>a:active {
    color: #f39b6b;
}

.home-8 #main-nav>ul>li>a:hover .caret,
.home-8 #main-nav>ul>li>a:focus .caret,
.home-8 #main-nav>ul>li>a:active .caret {
    color: #f39b6b;
}

.home-8 #main-nav>ul>li:hover>a,
.home-8 #main-nav>ul>li:focus>a,
.home-8 #main-nav>ul>li:active>a {
    color: #f39b6b;
}

.home-8 #main-nav>ul>li:hover>a .caret,
.home-8 #main-nav>ul>li:focus>a .caret,
.home-8 #main-nav>ul>li:active>a .caret {
    color: #f39b6b;
}

.home-8 #main-nav .dropdown-menu li a:hover {
    color: #f39b6b;
}

.home-8 #main-nav .dropdown-menu li a:hover .fa {
    color: #f39b6b;
}

.home-8 .block-cart .ajax_cart_quantity {
    background-color: #f39b6b;
}

.home-8 #top-header {
    padding: 18px 50px;
    background-color: white;
}

.home-8 #footer {
    padding: 0 50px;
    background-color: white;
}

.home-8 .go-up {
    right: 50px;
}

.rtl .home-8 .go-up {
    left: 50px;
    right: auto;
}

.home-8 .tv-tablecell {
    width: 50%;
}

.home-8 .tv-tablecell.tv-tablecell-1 {
    margin-right: 15px;
}

.rtl .home-8 .tv-tablecell.tv-tablecell-1 {
    margin-left: 15px;
    margin-right: inherit;
}

.home-8 .tv-tablecell.tv-tablecell-2 {
    padding: 0 150px;
    background-color: #fafafa;
    margin-left: 15px;
}

.rtl .home-8 .tv-tablecell.tv-tablecell-2 {
    margin-right: 15px;
    margin-left: inherit;
}

.home-8 #fp-nav.right {
    right: 10px;
}

.rtl .home-8 #fp-nav.right {
    left: 10px;
    right: auto;
}

.home-8 .section-product {
    padding: 0;
}

.home-8 .section-product .product-container {
    margin-bottom: 0;
    text-align: left;
}

.rtl .home-8 .section-product .product-container {
    text-align: right;
}

.home-8 .section-product .product-container .row {
    display: table;
}

.home-8 .section-product .product-container .row>[class^="col-"],
.home-8 .section-product .product-container .row>[class*=" col-"] {
    display: table-cell;
    float: none;
    vertical-align: middle;
}

.home-8 .section-product .product-container .right-block {
    height: 100%;
    display: inline-block;
    background-color: #fafafa;
    position: inherit;
}

.home-8 .section-product .product-container .product-box {
    margin: 30% 120px 30%;
}

.home-8 .section-product .product-container .product-image-container {
    margin-bottom: 0;
}

.home-8 .section-product .product-container .name {
    height: inherit;
    font-size: 45px;
    overflow: inherit;
    margin-bottom: 30px;
    line-height: 55px;
}

.home-8 .section-product .product-container .name a {
    line-height: 55px;
    font-family: "Playfair Display", serif;
}

.home-8 .section-product .product-container .name a:hover {
    color: #f39b6b;
}

.home-8 .section-product .product-container .price {
    font-size: 25px;
    color: #f39b6b;
}

.home-8 .section-product .product-container .old-price {
    font-size: 16px;
    color: #888;
}

.home-8 .section-product .product-container .content_price {
    margin: 0 0 35px;
}

.home-8 .section-product .product-container .description {
    font-size: 16px;
}

.home-8 .section-product .product-container .description p {
    line-height: 35px;
    font-size: 16px;
}

.home-8 .section-product .product-container .product-buttons {
    margin-top: 40px;
}

.home-8 .section-product .product-container .product-buttons .btn {
    padding: 13px 40px;
    letter-spacing: 2px;
}

.home-8 .section-product .product-container .thumbs_list {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 170px;
    text-align: center;
}

.home-8 .section-product .product-container .thumbs_list ul {
    margin-bottom: 0;
}


/* Home 1, 2 */

.home-1 #breadcrumb,
.home-2 #breadcrumb {
    text-align: center;
}

.home-1 #breadcrumb .bread-title,
.home-2 #breadcrumb .bread-title {
    color: white;
}

.home-1 #breadcrumb .ul-breadcrumb li:after,
.home-2 #breadcrumb .ul-breadcrumb li:after {
    color: white;
}

.home-1 #breadcrumb .ul-breadcrumb li a,
.home-2 #breadcrumb .ul-breadcrumb li a {
    color: white;
}


/* home 3, 7 */

.home-3 .tiva-postslist,
.home-7 .tiva-postslist {
    margin-top: 50px;
}

.home-3 .tiva-postslist .title_block,
.home-7 .tiva-postslist .title_block {
    font-size: 35px;
    font-weight: 700;
    line-height: 35px;
    font-family: "Poppins", sans-serif;
}

.home-3 .tiva-postslist .post-container:first-child,
.home-7 .tiva-postslist .post-container:first-child {
    border-bottom: 1px solid #eaeaea;
}

.home-3 .tiva-postslist .post-container .post-content,
.home-7 .tiva-postslist .post-container .post-content {
    padding: 40px 0;
}

.home-3 .tiva-postslist .post-container .post-content p,
.home-7 .tiva-postslist .post-container .post-content p {
    margin-bottom: 0;
}

.home-3 .tiva-postslist .post-container .post-content .post-date,
.home-7 .tiva-postslist .post-container .post-content .post-date {
    color: #999;
    text-transform: none;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
}

.home-3 .tiva-postslist .post-container .post-content h4,
.home-7 .tiva-postslist .post-container .post-content h4 {
    margin-bottom: 25px;
}

.home-3 .tiva-postslist .post-container .post-content h4 a,
.home-7 .tiva-postslist .post-container .post-content h4 a {
    font-size: 16px;
    font-family: "Poppins", sans-serif;
}

.home-3 .tiva-postslist .owl-theme .owl-controls .owl-nav div,
.home-7 .tiva-postslist .owl-theme .owl-controls .owl-nav div {
    top: 42%;
}


/* home 7,8 */

.home-7 #top-header,
.home-8 #top-header {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 81px;
}

.home-7 #footer,
.home-8 #footer {
    color: #666;
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 61px;
}

.home-7 .footer-copyright,
.home-8 .footer-copyright {
    padding: 18px 0;
    border-top: none;
}

.home-7 .footer-copyright .block-link,
.home-8 .footer-copyright .block-link {
    float: right;
}

.rtl .home-7 .footer-copyright .block-link,
.rtl .home-8 .footer-copyright .block-link {
    float: left;
}

.home-7 .footer-copyright .block-link ul,
.home-8 .footer-copyright .block-link ul {
    margin-bottom: 0;
}

.home-7 .footer-copyright .block-link ul a,
.home-8 .footer-copyright .block-link ul a {
    text-transform: uppercase;
}

.home-7 .go-up,
.home-8 .go-up {
    bottom: 61px;
}


/*******************************************************************
                 end Content home
*********************************************************************/


/*******************************************************************
                 start Page not found
*********************************************************************/

.page-not404 {
    background-color: #f7f7f7;
}

.page-not404 .page-not-found {
    padding: 100px 0 50px;
}

.page-not404 .page-not-found img {
    margin-bottom: 70px;
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
}

.page-not404 .page-not-found .title_block {
    color: black;
    font-size: 20px;
    line-height: 28px;
    letter-spacing: 3px;
    font-weight: 400;
}

.page-not404 .page-not-found .page-not-des {
    padding: 0 5em;
    line-height: 30px;
    font-size: 16px;
    margin-bottom: 30px;
}

.page-not404 .page-not-found .btn {
    padding: 12px 30px;
    font-weight: 500;
    text-transform: uppercase;
}


/*******************************************************************
                 end Page not found
*********************************************************************/


/*******************************************************************
                       start form login
*********************************************************************/

#create-account-form,
#form-login {
    min-height: 382px;
}


/*******************************************************************
                       end form login
*********************************************************************/


/*******************************************************************
                       start layout boxed
*********************************************************************/

body.layout-boxed-md {
    background: #f2f2f2;
}

body.layout-boxed-md #all {
    max-width: 990px;
    -webkit-box-shadow: 0 0 5px white;
    box-shadow: 0 0 5px white;
    margin: 0 auto;
    background: white;
}

body.layout-boxed-md #all .container {
    max-width: 970px;
}

body.layout-boxed-lg {
    background: #f2f2f2;
}

body.layout-boxed-lg #all {
    max-width: 1190px;
    -webkit-box-shadow: 0 0 5px white;
    box-shadow: 0 0 5px white;
    margin: 0 auto;
    background: white;
}

body.layout-boxed-lg #all .container {
    max-width: 1170px;
}

body.layout-boxed-lg #top-header.fixed {
    max-width: 1190px;
    margin: 0 auto;
}


/*******************************************************************
                       end layout boxed
*********************************************************************/


/*******************************************************************
                       start table
*********************************************************************/

#cart_summary thead th {
    padding: 8px;
    color: black;
}

#cart_summary thead th.cart_quantity {
    width: 15%;
}

#cart_summary thead th.cart_unit {
    width: 15%;
}

#cart_summary tbody td {
    vertical-align: inherit;
    padding: 8px;
}

#cart_summary tbody td.cart_product {
    padding: 7px;
    width: 137px;
}

#cart_summary tbody td.cart_product img {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
}

#cart_summary tbody td.cart_unit .price span {
    display: inline-block;
}

#cart_summary tbody td.cart_unit .price span.price-percent-reduction {
    margin: 5px auto;
    display: inline-block;
}

#cart_summary tbody td.cart_unit .price span.old-price {
    text-decoration: line-through;
}

#cart_summary tbody td.cart_description small {
    display: block;
    padding: 5px 0 0 0;
}

#cart_summary tbody td.cart_delete {
    width: 1%;
}

#cart_summary tbody td.cart_quantity .quantity {
    position: relative;
    width: 125px;
    height: 35px;
    margin: 0 auto;
}

#cart_summary tbody td.cart_quantity .minus,
#cart_summary tbody td.cart_quantity .plus {
    background: #f4f4f4;
    border: 1px solid #C8BFC6;
    color: #5E5E5E;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: bold;
    height: 35px;
    width: 35px;
    position: absolute;
    content: "";
}

#cart_summary tbody td.cart_quantity .minus {
    left: 0;
}

.rtl #cart_summary tbody td.cart_quantity .minus {
    right: 0;
    left: auto;
}

#cart_summary tbody td.cart_quantity .plus {
    right: 0;
}

.rtl #cart_summary tbody td.cart_quantity .plus {
    left: 0;
    right: auto;
}

#cart_summary tbody td.cart_quantity .qty {
    border: 1px solid #CCC;
    box-shadow: none;
    height: 35px;
    padding: 0 39px;
    text-align: center;
    width: 125px;
    font-size: 1em;
    float: left;
}

.rtl #cart_summary tbody td.cart_quantity .qty {
    float: right;
}

#cart_summary tfoot td.text-right,
#cart_summary tfoot tbody td.cart_unit,
#cart_summary tbody tfoot td.cart_unit,
#cart_summary tfoot tbody td.cart_total,
#cart_summary tbody tfoot td.cart_total {
    font-weight: bold;
}

#cart_summary tfoot td.price {
    text-align: right;
}

.rtl #cart_summary tfoot td.price {
    text-align: left;
}

#cart_summary tfoot td.total_price_container span {
    color: black;
    text-transform: uppercase;
}

.checkoutright {
    padding-top: 37px;
}

.shop_tablecart .product-thumbnail {
    width: 100px;
}

.shop_tablecart .product-thumbnail img {
    display: -moz-inline-stack;
    display: inline-block;
    vertical-align: middle;
    *vertical-align: auto;
    zoom: 1;
    *display: inline;
}

.cart-totals .total .amount {
    font-size: 20px;
    font-weight: bold;
    color: black;
}

.page-checkout .checkout-shopingcart {
    margin-bottom: 50px;
}

.page-checkout .checkout-shopingcart table {
    border: none;
}

.page-checkout .checkout-shopingcart tr th {
    color: white;
    background-color: #cfa15e;
    border: 1px solid #cfa15e;
    font-family: "Playfair Display", serif;
    font-size: 18px;
    font-weight: 400;
    padding: 13px 20px;
}

.page-checkout .checkout-shopingcart tr td {
    padding: 20px;
}

.page-checkout .checkout-shopingcart .shop_tablecart .product-thumbnail {
    width: 150px;
}

.page-checkout .checkout-shopingcart .shop_tablecart .product-name a {
    text-transform: uppercase;
}

.page-checkout .checkout-shopingcart .shop_tablecart .product-name p {
    margin-bottom: 0;
}

.page-checkout .checkout-shopingcart .shop_tablecart .product-name .color {
    text-transform: uppercase;
}

.page-checkout .checkout-shopingcart .shop_tablecart .product_comments {
    margin-bottom: 10px;
}

.page-checkout .checkout-shopingcart .shop_tablecart .amount {
    color: black;
    font-weight: 700;
    font-size: 16px;
}

.page-checkout .checkout-shopingcart .shop_tablecart .cart_quantity .quantity {
    position: relative;
    width: 125px;
    height: 35px;
    margin: 0 auto;
}

.page-checkout .checkout-shopingcart .shop_tablecart .cart_quantity .minus,
.page-checkout .checkout-shopingcart .shop_tablecart .cart_quantity .plus {
    background: #f4f4f4;
    border: 1px solid #C8BFC6;
    color: #5E5E5E;
    cursor: pointer;
    display: block;
    font-size: 12px;
    font-weight: bold;
    height: 35px;
    width: 35px;
    position: absolute;
    content: "";
}

.page-checkout .checkout-shopingcart .shop_tablecart .cart_quantity .minus {
    left: 0;
}

.rtl .page-checkout .checkout-shopingcart .shop_tablecart .cart_quantity .minus {
    right: 0;
    left: auto;
}

.page-checkout .checkout-shopingcart .shop_tablecart .cart_quantity .plus {
    right: 0;
}

.rtl .page-checkout .checkout-shopingcart .shop_tablecart .cart_quantity .plus {
    left: 0;
    right: auto;
}

.page-checkout .checkout-shopingcart .shop_tablecart .cart_quantity .qty {
    border: 1px solid #CCC;
    box-shadow: none;
    height: 35px;
    padding: 0 39px;
    text-align: center;
    width: 125px;
    font-size: 1em;
    float: left;
}

.rtl .page-checkout .checkout-shopingcart .shop_tablecart .cart_quantity .qty {
    float: right;
}

.page-checkout .checkout-shopingcart .shop_tablecart .clear-cart {
    text-transform: uppercase;
}

.page-checkout .checkout-shopingcart .shop_tablecart .clear-cart a {
    float: right;
    background-color: #f3f3f3;
    border: 1px solid #f3f3f3;
    color: black;
    padding: 8px 25px;
}

.rtl .page-checkout .checkout-shopingcart .shop_tablecart .clear-cart a {
    float: left;
}

.page-checkout .checkout-shopingcart .shop_tablecart .clear-cart a:hover {
    background-color: #cfa15e;
    border: 1px solid #cfa15e;
    color: white;
}

.page-checkout .panel {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    border: none;
}

.page-checkout .panel .btn {
    padding: 8px 12px;
}

.page-checkout .panel .btn-default {
    background-color: #f3f3f3;
    color: black;
    border: 1px solid #f3f3f3;
}

.page-checkout .panel .btn-default:hover {
    color: white;
    background-color: #cfa15e;
    border: 1px solid #cfa15e;
}

.page-checkout .panel-default>.panel-heading {
    color: white;
    margin-bottom: 0;
    background-color: #333;
    font-size: 18px;
    padding: 10px 30px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.page-checkout .panel-default .panel-body {
    border: 1px solid #eaeaea;
    border-top: none;
    padding: 15px 30px;
}

.page-checkout .panel-shopping .panel-body {
    padding: 15px 0;
}

.page-checkout .panel-shopping ul li {
    padding: 4px 30px;
}

.page-checkout .panel-shopping ul li span {
    float: right;
}

.rtl .page-checkout .panel-shopping ul li span {
    float: left;
}

.page-checkout .panel-shopping ul li.three {
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
    padding: 12px 30px;
    margin-top: 15px;
}

.page-checkout .panel-shopping ul li.three span {
    color: black;
    font-weight: 700;
}

.page-checkout .panel-shopping ul li.last {
    padding: 25px 30px 0;
}


/*******************************************************************
                       end table
*********************************************************************/


/*******************************************************************
                 start Product list
*********************************************************************/

#subcategories .scene_cat {
    position: relative;
    text-align: center;
    margin-bottom: 30px;
}

#subcategories .scene_cat a {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    margin: 0 auto;
    color: white;
    font-size: 18px;
}

#subcategories .scene_cat a:hover {
    color: #cfa15e;
}

.content_sortPagiBar {
    background-color: #f8f8f8;
    margin-bottom: 30px;
    padding: 10px 15px;
}

.content_sortPagiBar.bottom {
    background-color: transparent;
    text-align: center;
    margin-bottom: 80px;
    padding: 10px 0;
}

.content_sortPagiBar.bottom ul {
    margin: 0;
}

.tiva-nav-tabs li {
    display: inline-block;
}

.tiva-nav-tabs li a {
    padding: 6px;
    font-size: 16px;
}

.tiva-nav-tabs li a:hover,
.tiva-nav-tabs li a:focus {
    background-color: transparent;
}

.tiva-nav-tabs li.active a {
    color: #cfa15e;
}

.tiva-nav-tabs li.active a:hover,
.tiva-nav-tabs li.active a:focus {
    color: #cfa15e;
    background-color: transparent;
}

.sort label {
    padding-top: 8px;
    font-weight: 300;
    margin-right: 10px;
    float: left;
}

.rtl .sort label {
    margin-left: 10px;
    margin-right: inherit;
}

.rtl .sort label {
    float: right;
}

.sort select {
    width: 100px;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.sort .selectProductSort {
    min-width: 145px;
}

.sort #productsShowForm {
    margin-right: 20px;
}

.rtl .sort #productsShowForm {
    margin-left: 20px;
    margin-right: inherit;
}

.pagination>li>a {
    min-width: 40px;
    border: 1px solid #ddd;
    margin: 0 3px;
    font-size: 15px;
    color: black;
}

.pagination>li>a:hover,
.pagination>li>a:focus {
    color: white;
    border: 1px solid #cfa15e;
    background-color: #cfa15e;
}

.pagination>li:first-child>a,
.pagination>li:last-child>a {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.pagination>li.active>a {
    color: white;
    border: 1px solid #cfa15e;
    background-color: #cfa15e;
}

.pagination>li.active>a:hover,
.pagination>li.active>a:focus {
    color: white;
    border: 1px solid #cfa15e;
    background-color: #cfa15e;
}


/* left_column */

.sidebar .block {
    margin-bottom: 40px;
}

.sidebar .block .title_block {
    font-size: 25px;
    margin-bottom: 20px;
}

.sidebar .block .list-block li .count {
    color: #666666;
}

.sidebar .block .list-block li a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px dashed #cdcdcd;
}

.sidebar .block .list-block li ul li a {
    padding-left: 15px;
}

.rtl .sidebar .block .list-block li ul li a {
    padding-right: 15px;
    padding-left: inherit;
}

.sidebar .block .product-container {
    padding-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
}

.sidebar .block .product_list_block li:last-child .product-container {
    border-bottom: none;
}


/* right_column */

.blog-search form {
    border: 1px solid #ddd;
}

.blog-search input {
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.blog-search button {
    background-color: transparent;
}

.blog-search button:hover {
    color: #cfa15e;
    background-color: transparent;
}

.recent-posts li {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px dashed #ddd;
}

.recent-posts h5 {
    height: 18px;
    line-height: 20px;
    margin-bottom: 8px;
    font-weight: 400;
    overflow: hidden;
}

.recent-posts .post-image {
    margin-right: 15px;
}

.rtl .recent-posts .post-image {
    margin-left: 15px;
    margin-right: inherit;
}

.block-tag ul li {
    display: inline-block;
    margin: 0 15px 7px 0;
}

.rtl .block-tag ul li {
    margin: 0 0 7px 15px;
}

.block-tag ul li a {
    color: #666666;
}

.block-tag ul li a:hover {
    color: #cfa15e;
}

.blog-menu .count {
    float: right;
}

.rtl .blog-menu .count {
    float: left;
}


/*******************************************************************
                 end Product list
*********************************************************************/


/*******************************************************************
                 start Module
*********************************************************************/

.block_group_top ul {
    border: 1px solid #eaeaea;
    padding: 5px 10px;
}

.block_group_top ul li {
    display: inline-block;
    margin-right: 5px;
}

.rtl .block_group_top ul li {
    margin-left: 5px;
    margin-right: inherit;
}

.block_group_top ul li.selected a {
    color: #cfa15e;
}

.block_group_top .block-languages ul li img {
    padding: 1px;
    width: 18px;
    height: 14px;
    border: 1px solid transparent;
}

.block_group_top .block-languages ul li.selected img,
.block_group_top .block-languages ul li:hover img {
    border: 1px solid #cfa15e;
}

.block_group_top .block-currency {
    margin-top: 15px;
}

.block-search .dropdown-content {
    min-width: 320px;
}

.block-search form input {
    padding: 0 15px;
    height: 39px;
    line-height: 39px;
    border: 1px solid #eaeaea;
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.block-search form button {
    color: white;
    padding: 0 12px;
    line-height: 37px;
}

.block-search .input-group-btn:last-child .btn {
    margin-left: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.rtl .block-search .input-group-btn:last-child .btn {
    margin-right: 0;
    margin-left: inherit;
}

.header_user_info .dropdown-content li .fa {
    width: 14px;
    text-align: center;
    margin-right: 5px;
}

.rtl .header_user_info .dropdown-content li .fa {
    margin-left: 5px;
    margin-right: inherit;
}

.block-cart {
    position: relative;
}

.block-cart .ajax_cart_quantity {
    position: absolute;
    bottom: 0;
    width: 20px;
    height: 20px;
    color: white;
    font-size: 12px;
    line-height: 21px;
    text-align: center;
    display: inline-block;
    background-color: #cfa15e;
    right: -8px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    border-radius: 50px;
}

.rtl .block-cart .ajax_cart_quantity {
    left: -8px;
    right: auto;
}

.block-cart .dropdown-title {
    padding: 5px 0 4px 13px;
}

.rtl .block-cart .dropdown-title {
    padding: 5px 13px 4px 0;
}

.block-cart .dropdown-content {
    min-width: 360px;
}

.block-cart table.cart {
    width: 100%;
}

.block-cart table.cart .product-thumbnail {
    width: 120px;
}

.block-cart table.cart .actions-continue {
    margin-top: 10px;
    padding-top: 20px;
    clear: both;
    border-top: 1px solid #eaeaea;
}

.block-cart table.cart .actions-continue .fa {
    margin-left: 5px;
}

.rtl .block-cart table.cart .actions-continue .fa {
    margin-right: 5px;
    margin-left: inherit;
}

.block-newsletter {
    padding: 50px 0;
    margin-bottom: 0;
    text-align: center;
}

.block-newsletter .title_block {
    font-size: 25px;
    display: inline-block;
    margin-bottom: 0;
    margin-right: 60px;
}

.rtl .block-newsletter .title_block {
    margin-left: 60px;
    margin-right: inherit;
}

.block-newsletter form {
    width: 570px;
    display: inline-block;
}

.block-newsletter form .form-group {
    position: relative;
    margin-bottom: 0;
    width: 100%;
}

.block-newsletter form input[type="text"] {
    color: #999999;
    height: 50px;
    width: 100%;
    padding: 10px 20px;
    margin-bottom: 0;
    font-size: 14px;
    display: table-cell;
    border: 1px solid white;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.block-newsletter form .btn {
    position: absolute;
    content: "";
    top: 0;
    line-height: 50px;
    padding: 0 35px;
    border: none;
    color: white;
    background-color: #333;
    text-transform: uppercase;
    right: 0;
}

.rtl .block-newsletter form .btn {
    left: 0;
    right: auto;
}

.block-newsletter form .btn:hover,
.block-newsletter form .btn:focus,
.block-newsletter form .btn:active {
    outline: none;
    background-color: #cfa15e;
}

.block-newsletter form .btn i {
    line-height: 50px;
}

.block-newsletter form .submit-icon {
    position: relative;
}

.block-newsletter form .submit-icon:before {
    position: absolute;
    content: "";
    font-family: "FontAwesome";
    font-size: 16px;
    width: 16px;
    height: 50px;
    right: 0;
}

.rtl .block-newsletter form .submit-icon:before {
    left: 0;
    right: auto;
}

.social_block {
    margin: 25px 0;
}

.social_block ul {
    margin: 0;
}

.social_block ul li {
    padding: 0 8px;
    display: inline-block;
}

.social_block ul li a {
    color: #666666;
}

.social_block ul li a:hover {
    color: #cfa15e;
}

.social_block ul li a span {
    display: none;
}

.social_block ul li .fa {
    font-size: 18px;
}

.social_block ul li:first-child {
    padding: 0 8px 0 0;
}

.rtl .social_block ul li:first-child {
    padding: 0 0 0 8px;
}

#categories_block_left .title_block {
    margin-bottom: 10px;
}

#categories_block_left .list-block li.parent {
    position: relative;
}

#categories_block_left .list-block li.parent .arrow {
    display: block;
    position: absolute;
    top: 0;
    cursor: pointer;
    right: 0;
}

.rtl #categories_block_left .list-block li.parent .arrow {
    left: 0;
    right: auto;
}

#categories_block_left .list-block li.parent .arrow:before {
    content: "\f067";
    display: block;
    vertical-align: middle;
    width: 25px;
    height: 56px;
    color: black;
    line-height: 56px;
    text-align: center;
    font-family: "FontAwesome";
}

#categories_block_left .list-block li.parent .arrow.active:before {
    content: "\f068";
}

#categories_block_left .list-block li.parent ul {
    display: none;
}

#categories_block_left .list-block li.parent ul.open {
    display: block;
}

.tiva-filter .filter-item {
    margin-bottom: 30px;
}

.tiva-filter .price-filter {
    margin-bottom: 40px;
}

.tiva-filter .manufacturer-filter ul li span {
    cursor: pointer;
}

.tiva-filter .name-filter input {
    width: 100%;
    padding: 3px 10px;
    font-weight: 200;
    opacity: 0.7;
    filter: alpha(opacity=70);
}

.tiva-filter .filter-button {
    margin-top: -5px;
}

.tiva-filter .filter-button span {
    background: #95bfe2;
    color: #fff;
    padding: 5px 12px;
    cursor: pointer;
}

.tiva-filter .filter-button span:first-child {
    margin-right: 10px;
}

.tiva-filter .filter-button span:hover {
    background: #f65b47;
}

.tiva-filter label {
    line-height: 35px;
}

.jslider-label span,
.jslider .jslider-label-to {
    display: none !important;
}

span.jslider.jslider_plastic .jslider-bg i.f {
    background: #DDD;
    height: 3px;
    width: 100% !important;
    left: 0;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}

span.jslider.jslider_plastic .jslider-bg i.v {
    background: #cfa15e;
    height: 3px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

span.jslider.jslider_plastic .jslider-bg i.l,
span.jslider.jslider_plastic .jslider-bg i.r {
    display: none;
}

span.jslider.jslider_plastic .jslider-pointer {
    background: #cfa15e;
    width: 13px;
    height: 13px;
    top: -5px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

span.jslider.jslider_plastic .jslider-value {
    float: left;
    margin-left: -5px !important;
    margin-top: 36px;
    font-size: 14px;
    color: black;
    background: transparent;
}

span.jslider.jslider_plastic .jslider-value.jslider-value-to {
    float: right;
    margin-right: -10px;
}

.layout-slider {
    width: 95% !important;
    padding-left: 5px;
}

.loading {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: #ddd;
    opacity: 0.7;
    background: url("img/default/fancybox_loading.gif") no-repeat center;
    background-color: #ddd;
}

#block_color_filter .title_block {
    margin-bottom: 10px;
}

#block_featured_product .product-container {
    margin-bottom: 20px;
    text-align: left;
}

.rtl #block_featured_product .product-container {
    text-align: right;
}

#block_featured_product .product-container .product-image-container {
    margin-bottom: 0;
}

#block_featured_product .star_content {
    padding: 10px 0 0;
    display: inline-block;
}

#block_featured_product .name {
    height: 20px;
}


/*******************************************************************
                 end Module
*********************************************************************/


/*******************************************************************
                       start about us
*********************************************************************/

.abous-fashion1 .about-intro {
    text-align: center;
}

.abous-fashion1 .about-intro h2 {
    font-size: 45px;
    font-weight: 700;
    line-height: 65px;
    margin-bottom: 40px;
}

.abous-fashion1 .about-intro h2 span {
    font-style: italic;
    font-weight: 400;
}

.abous-fashion1 .about-intro .des p {
    line-height: 30px;
    font-size: 15px;
}

.abous-fashion1 .about-intro .des .author {
    color: black;
    font-family: "Rage", sans-serif;
    font-style: italic;
    font-size: 36px;
    margin: 30px 0;
}

.abous-fashion1 .tiva-counter-number {
    padding: 40px 0;
    margin: 90px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.abous-fashion1 .tiva-counter-number .counter-wrap {
    margin: 10px 0;
    display: block;
}

.abous-fashion1 .tiva-counter-number .counter-wrap .counter-numb {
    color: black;
    font-size: 50px;
    font-weight: 700;
}

.abous-fashion1 .tiva-counter-number .counter-wrap p {
    margin-bottom: 10px;
}

.abous-fashion1 .tiva-counter-number .counter-wrap h5 {
    color: #999;
    font-size: 14px;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
    margin-bottom: 0;
}

.abous-fashion1 .about-testimonial {
    text-align: center;
}

.abous-fashion1 .about-testimonial .testimonial-item {
    padding-top: 110px;
    position: relative;
}

.abous-fashion1 .about-testimonial .testimonial-item:before {
    position: absolute;
    content: "“";
    color: #ccc;
    display: block !important;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 0;
    font-size: 200px;
    font-style: normal;
    line-height: 1;
}

.abous-fashion1 .about-testimonial .testimonial-item p.des {
    font-size: 24px;
    color: black;
    line-height: 50px;
    font-family: "Playfair Display", serif;
}

.abous-fashion1 .about-testimonial .testimonial-item .author {
    text-transform: uppercase;
    color: black;
    font-size: 16px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
    position: relative;
    padding-top: 20px;
    margin-top: 20px;
}

.abous-fashion1 .about-testimonial .testimonial-item .author:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 30px;
    height: 2px;
    background-color: #ddd;
}

.abous-fashion1 .about-testimonial .testimonial-item .position {
    color: #999;
    font-size: 15px;
    text-transform: uppercase;
}

.abous-fashion1 .manufacturers_block {
    margin: 90px 0;
    padding: 50px 0;
    border-top: 1px solid #eaeaea;
    border-bottom: 1px solid #eaeaea;
}

.abous-fashion1 .about-weare {
    text-align: center;
}

.abous-fashion1 .about-weare .title_block {
    font-size: 45px;
    font-weight: 700;
    margin-bottom: 50px;
}

.abous-fashion1 .about-weare .weare-item {
    margin-bottom: 40px;
}

.abous-fashion1 .about-weare .weare-image a {
    display: block;
    overflow: hidden;
}

.abous-fashion1 .about-weare .weare-image img {
    display: inline-block;
    -webkit-transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
}

.abous-fashion1 .about-weare .weare-image:hover img {
    opacity: 0.7;
    filter: alpha(opacity=70);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}

.abous-fashion1 .about-weare .weare-content {
    padding: 15px;
}

.abous-fashion1 .about-weare .weare-content a {
    font-size: 18px;
    font-weight: 700;
    font-family: "Playfair Display", serif;
}

.abous-fashion1 .about-weare .weare-content .position {
    color: #999;
    margin-bottom: 0;
}


/*******************************************************************
                        end  about us
*********************************************************************/


/*******************************************************************
                       start contact us
*********************************************************************/

.contact-details {
    text-align: center;
}

#contact-map {
    margin: 60px 0 70px;
}

.contact-form {
    margin-bottom: 80px;
}

.contact-form .title_block {
    text-align: center;
    font-size: 36px;
}

.contact-form .contact-des {
    padding: 0 12em;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form input {
    width: 100%;
    margin-bottom: 15px;
    padding: 10px;
    border: 1px solid #eaeaea;
    outline: none;
    position: relative;
}

.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #eaeaea;
    height: 175px;
    resize: none;
    margin-bottom: 10px;
    outline: none;
}

.contact-form .btn {
    padding: 10px 30px;
    text-transform: uppercase;
}

.contact-fashion .contact-box .title_block {
    font-size: 45px;
    line-height: 45px;
    margin-bottom: 30px;
}

.contact-fashion .contact-boxcontent {
    font-size: 16px;
}

.contact-fashion .contact-boxcontent strong {
    color: black;
}

.contact-fashion .contact-boxcontent a {
    text-decoration: underline;
}

.contact-fashion .contact-form .title_block {
    text-align: left;
}

.rtl .contact-fashion .contact-form .title_block {
    text-align: right;
}

.contact-fashion .contact-form .contact-des {
    padding: 0;
    text-align: left;
}

.rtl .contact-fashion .contact-form .contact-des {
    text-align: right;
}

.contact-fashion .contact-form input {
    margin-bottom: 30px;
}

.contact-fashion .contact-form textarea {
    margin-bottom: 20px;
}

.contact-fashion p {
    font-size: 16px;
    line-height: 32px;
}

.contact-fashion.contact-fashion2 {
    margin-bottom: 100px;
}

.contact-fashion.contact-fashion2 .contact-form {
    margin-bottom: 60px;
}

.contact-fashion.contact-fashion2 .contact-box {
    margin-bottom: 50px;
}

.contact-fashion.contact-fashion2 p {
    margin-bottom: 10px;
}

.contact-fashion.contact-fashion2 p.txt1 {
    color: black;
    font-weight: 600;
}


/*******************************************************************
                        end  contact us
*********************************************************************/


/*******************************************************************
                 start Footer
*********************************************************************/

.index #footer {
    margin-top: 0;
}

#footer {
    margin-top: 50px;
    background: #272727;
    color: #999999;
}

#footer .block .title_block {
    color: white;
    font-size: 25px;
    margin-bottom: 25px;
}

#footer p {
    color: #999999;
}

.toggle-footer li a {
    color: #999999;
}

.toggle-footer li a:hover {
    color: #cfa15e;
}

.footer-center {
    padding: 100px 0;
}

.footer-copyright {
    padding: 27px 0;
    border-top: 1px solid #262626;
}

.footer-copyright .payment {
    float: right;
}

.rtl .footer-copyright .payment {
    float: left;
}

.about-us {
    padding: 0 100px 0 0;
}

.rtl .about-us {
    padding: 0 0 0 100px;
}

.about-us li {
    line-height: 28px;
    display: flex;
    margin-bottom: 10px;
}

.about-us li .fa {
    color: white;
    font-size: 16px;
    margin-top: 5px;
    width: 18px;
    display: inline-table;
    margin-right: 15px;
}

.rtl .about-us li .fa {
    margin-left: 15px;
    margin-right: inherit;
}

.about-us li a {
    color: #999;
}

.about-us li a:hover {
    color: #cfa15e;
}

.about-us li.numb-phone {
    font-family: sans-serif;
}

.block-gallery a {
    width: 85%;
    overflow: hidden;
    display: block;
    position: relative;
    margin: 0 10px 10px 0;
}

.rtl .block-gallery a {
    margin: 0 0 10px 10px;
}

.block-gallery a:before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
    width: 50%;
    height: 50%;
    -webkit-transition: all 0.2s ease-out 0s;
    transition: all 0.2s ease-out 0s;
}

.block-gallery a:hover:before {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
    width: 100%;
    height: 100%;
    background-color: white;
    background-color: rgba(255, 255, 255, 0.2);
    zoom: 1;
    background-color: transparent\9;
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
}

.block-gallery .block_content {
    padding-top: 10px;
}

.bullet li {
    line-height: 27px;
    margin-bottom: 5px;
}


/*******************************************************************
                 end Footer
*********************************************************************/


/*******************************************************************
                 Start Popup Screen
*******************************************************************/


/* Popup Screen */

.tiva-popup-screen {
    position: fixed;
    top: 0;
    z-index: 9999;
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
    background-color: black;
    background-color: rgba(0, 0, 0, 0.7);
    zoom: 1;
    background-color: transparent\9;
    left: 0;
    width: 100%;
    height: 100%;
}

.rtl .tiva-popup-screen {
    right: 0;
    left: auto;
}

.tiva-popup-screen .popup-wrap {
    text-align: center;
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    left: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.rtl .tiva-popup-screen .popup-wrap {
    right: 0;
    left: auto;
}

.tiva-popup-screen .popup-wrap:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.tiva-popup-screen .popup {
    width: 630px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    display: inline-block;
    z-index: 9998;
    vertical-align: middle;
    background-color: #f8f8f8;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.tiva-popup-screen .popup p {
    font-size: 16px;
    margin-bottom: 40px;
}

.tiva-popup-screen .popup form {
    padding: 30px;
}

.tiva-popup-screen .popup form .title_block {
    font-size: 35px;
}

.tiva-popup-screen .popup input[type="text"] {
    height: 42px;
    padding: 8px 12px;
}

.tiva-popup-screen .popup .btn {
    padding: 8px 30px;
    text-transform: uppercase;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.tiva-popup-screen .popup .close {
    position: absolute;
    top: 12px;
    font-size: 36px;
    font-weight: bold;
    text-decoration: none;
    color: black;
    z-index: 9999;
    right: 15px;
    -webkit-transition: all 200ms;
    transition: all 200ms;
    opacity: 1;
    filter: alpha(opacity=100);
}

.rtl .tiva-popup-screen .popup .close {
    left: 15px;
    right: auto;
}

.tiva-popup-screen .popup .close:hover {
    color: #cfa15e;
}


/*******************************************************************
                 end Popup Screen
*******************************************************************/


/*******************************************************************
                 start Go up
*********************************************************************/

.go-up {
    position: fixed;
    bottom: 15px;
    right: 15px;
    margin-bottom: 0;
    text-align: center;
    z-index: 999;
}

.go-up a {
    background: #cfa15e;
    width: 44px;
    height: 44px;
    line-height: 44px;
    display: inline-block;
    color: white;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border-radius: 0;
}

.go-up a:hover {
    color: white;
}


/*******************************************************************
                 end Go up
*******************************************************************/


/*******************************************************************
                 start Multi-color
*********************************************************************/

.multi-color {
    position: fixed;
    top: 241px;
    left: -230px;
    z-index: 98;
    padding: 20px;
    background: #323232;
    width: 230px;
    color: white;
    left: -230px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.05);
}

.rtl .multi-color {
    right: -230px;
    left: auto;
}

.multi-color.active {
    left: 0;
}

.rtl .multi-color.active {
    right: 0;
    left: auto;
}

.multi-color.active .handle {
    color: #cfa15e;
}

.multi-color .handle {
    position: absolute;
    width: 50px;
    height: 50px;
    color: white;
    font-size: 30px;
    line-height: 53px;
    background: #333;
    text-align: center;
    cursor: pointer;
    right: -48px;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    -webkit-box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.05);
    box-shadow: 0 5px 20px 5px rgba(0, 0, 0, 0.05);
}

.rtl .multi-color .handle {
    left: -48px;
    right: auto;
}

.multi-color h4 {
    color: white;
    font-family: "Poppins", sans-serif;
    text-transform: uppercase;
}

.multi-color p {
    color: white;
}

.multi-color p .fa {
    width: 25px;
    text-align: left;
}

.rtl .multi-color p .fa {
    text-align: right;
}

.multi-color .group-handle {
    margin-bottom: 20px;
}

.multi-color .btn-fixedheader {
    background-color: #222;
    margin-top: 10px;
    margin-bottom: 10px;
    width: 100px;
    height: 40px;
    position: relative;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    border-radius: 20px;
}

.multi-color .btn-fixedheader .button {
    display: inline-block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    color: white;
    cursor: pointer;
    background-color: #504C4C;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    border-radius: 50%;
}

.multi-color .btn-fixedheader .button.yes,
.multi-color .btn-fixedheader .button.no {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}

.multi-color .btn-fixedheader .button.yes.active,
.multi-color .btn-fixedheader .button.no.active {
    background-color: #cfa15e;
}

.multi-color .btn-fixedheader .button.yes {
    float: left;
}

.rtl .multi-color .btn-fixedheader .button.yes {
    float: right;
}

.multi-color .btn-fixedheader .button.no {
    float: right;
}

.rtl .multi-color .btn-fixedheader .button.no {
    float: left;
}

.multi-color .view-demos a {
    color: #cfa15e;
}

.multi-color .view-demos a:hover {
    text-decoration: underline;
}

.multi-color .color {
    position: relative;
    width: 25px;
    height: 25px;
    display: inline-block;
    cursor: pointer;
    text-align: center;
    margin: 0 10px 5px 0;
}

.rtl .multi-color .color {
    margin: 0 0 5px 10px;
}

.multi-color .color:before {
    position: absolute;
    content: "\f00c";
    font-family: "FontAwesome";
    width: 100%;
    left: 0;
    color: #fff;
    font-size: 14px;
    display: none;
}

.multi-color .color.active:before {
    display: inline-block;
}

.multi-color .color.color1 {
    background-color: #cfa15e;
}

.multi-color .color.color2 {
    background-color: #9ea3c1;
}

.multi-color .color.color3 {
    background-color: #f59a6d;
}

.multi-color .color.color4 {
    background-color: #cdad72;
}

.multi-color .color.color5 {
    background-color: #1ccfdf;
}

.multi-color .color.color6 {
    background-color: #8aa3aa;
}


/*******************************************************************
                 end Multi-color
*******************************************************************/


/*******************************************************************
                 Start Animation & Keyframes
*******************************************************************/

@-webkit-keyframes animationmenus {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translate(0px, 10px);
        -ms-transform: translate(0px, 10px);
        transform: translate(0px, 10px);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@-moz-keyframes animationmenus {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translate(0px, 10px);
        -ms-transform: translate(0px, 10px);
        transform: translate(0px, 10px);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@-o-keyframes animationmenus {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translate(0px, 10px);
        -ms-transform: translate(0px, 10px);
        transform: translate(0px, 10px);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@keyframes animationmenus {
    from {
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: translate(0px, 10px);
        -ms-transform: translate(0px, 10px);
        transform: translate(0px, 10px);
    }
    to {
        opacity: 1;
        filter: alpha(opacity=100);
        -webkit-transform: translate(0px, 0px);
        -ms-transform: translate(0px, 0px);
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes sdb10 {
    0% {
        -webkit-transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        -webkit-transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}

@keyframes sdb10 {
    0% {
        transform: translate(0, 0);
        opacity: 0;
    }
    40% {
        opacity: 1;
    }
    80% {
        transform: translate(0, 20px);
        opacity: 0;
    }
    100% {
        opacity: 0;
    }
}


/*******************************************************************
                 end Animation & Keyframes
*******************************************************************/