/******************************************************************************
******************  Furnizing Style v 1.0.0    *********************************
********************************************************************************/
@font-face
{
    font-family: 'montserratregular';
    font-weight: normal;
    font-style: normal;

    src: url('../../../assets/furnizing/fonts/montserrat-regular.woff2') format('woff2'), url('../../../furnizing/assets/fonts/montserrat-regular.woff') format('woff');
}

@font-face
{
    font-family: 'Glyphicons Halflings';

    src: url('../fonts/glyphicons-halflings-regular.eot');
    src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

/*@font-face {
    font-family: 'sfns_displayregular';
    src: url('system_san_francisco_display_regular.woff2') format('woff2'),
         url('system_san_francisco_display_regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}*/

@font-face {
  font-family: "sfns_displayregular";
  /*font-weight: 400;*/
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-regular-webfont.woff");
}


@font-face {
  font-family: "sfns_displaymedium";
  /*font-weight: 400;*/
  src: url("https://applesocial.s3.amazonaws.com/assets/styles/fonts/sanfrancisco/sanfranciscodisplay-medium-webfont.woff");
}

body
{
    font-family: 'sfns_displayregular', sans-serif;

    margin: 0;
    padding: 0;
}
::selection {
  background: #d0e7b2; /* WebKit/Blink Browsers */
}
::-moz-selection {
  background: #d0e7b2; /* Gecko Browsers */
}

.clear
{
    float: none;
    clear: both;
}

@-webkit-keyframes fadeIn
{
    from
    {
        opacity: 0;
        opacity: 1\9; /* IE9 only */
    } to
    {
        opacity: 1;
    }
}
@-moz-keyframes fadeIn
{
    from
    {
        opacity: 0;
        opacity: 1\9; /* IE9 only */
    } to
    {
        opacity: 1;
    }
}
@keyframes fadeIn
{
    from
    {
        opacity: 0;
        opacity: 1\9; /* IE9 only */
    } to
    {
        opacity: 1;
    }
}


.outline-font{color: black;
   -webkit-text-fill-color: white; /* Will override color (regardless of order) */
   -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: red;
}

.fade-in
{
    -webkit-animation: fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
       -moz-animation: fadeIn ease-in 1;
            animation: fadeIn ease-in 1;
    -webkit-animation-duration: .3s;
       -moz-animation-duration: .3s;
            animation-duration: .3s;

    opacity: 0;  /* make things invisible upon start */

    -webkit-animation-fill-mode: forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
       -moz-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
}

.no-padding
{
    padding: 0;
}

/*Custom Color*/

.color-primary
{
    color: #8ac53f;
}

.color-secondary
{
    color: #e48e49;
}

.color-accent
{
    color: #666666;
}

.color-white
{
    color: #fff;
}

.color-transparent
{
    color: #fff;
}

.form-control:focus
{
    border-color: #8ac53f;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 transparent;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 0 transparent;
}

.input-warning{
    border-color: 1px solid red;
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 0, 0, .075), 2 2 4 red;
            box-shadow: inset 0 1px 1px rgba(255, 0, 0, .075), 2 2 4 red;
}

.input-warning:focus{
    border: 1px solid red;
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 0, 0, .075), 2 2 4 red;
            box-shadow: inset 0 1px 1px rgba(255, 0, 0, .075), 2 2 4 red;
}

.input-info{
    border-color: 1px solid orange;
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 0, 0, .075), 2 2 4 orange;
            box-shadow: inset 0 1px 1px rgba(255, 0, 0, .075), 2 2 4 orange;
}

.input-info:focus{
    border: 1px solid orange;
    -webkit-box-shadow: inset 0 1px 1px rgba(255, 0, 0, .075), 2 2 4 orange;
            box-shadow: inset 0 1px 1px rgba(255, 0, 0, .075), 2 2 4 orange;
}

.btn{
    border-radius: 0px;
}

.btn-green
{
    color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: #8ac53f;
}

.btn-green:hover
{
    transition: .3s;

    color: #8ac53f;
    border: 1px solid #8ac53f;
    border-radius: 0;
    background-color: transparent;
}

.btn-red
{
    color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: #dd4b39;
}

.btn-red:hover
{
    transition: .3s;

    color: #dd4b39;
    border: 1px solid #dd4b39;
    border-radius: 0;
    background-color: transparent;
}


.btn-white
{
    color: #8ac53f;
    border: 1px solid #8ac53f;
    border-radius: 0;
    background-color: #fff;
}

.btn-white:hover
{
    transition: .3s;
    color: #fff;
    border: 1px solid #8ac53f;
    border-radius: 0;
    background-color: #8ac53f;
}

.btn-sign-up
{
    font-size: 16px;
    display: inline-block;
    margin: 5px;
    padding: 10px;
    padding-left: 15px;
    padding-right: 15px;
    vertical-align: middle;
    text-decoration: none;
    text-transform: uppercase;

    color: #fff;
}

.btn-facebook
{
    color: #fff;
    background: #2e6bc6;
}

.btn-facebook:hover
{
    color: #fff;
    background: #1d5ab5;
}

.btn-google
{
    color: #fff;
    background: #dd4b39;
}

.btn-google:hover
{
    color: #fff;
    background: #cc4b39;
}

.btn-email
{
    background: #8ac53f;
}

.btn-email:hover
{
    color: #f1f1f1;
    background: #79b42e;
}

.btn-submit
{
    color: #fff;
    background: #8ac53f;
}

.btn-submit:hover
{
    color: #f1f1f1;
    background: #77ab35;
}

select[class='form-control'],
input[type='password'],
input[type='search'],
input[type='email'],
input[type='text']
{
    border-radius: 0;
}

.btn-file
{
    position: relative;

    overflow: hidden;

    margin-top: 10px;
    margin-bottom: 10px;
}

.btn-file input[type=file]
{
    font-size: 100px;

    position: absolute;
    top: 0;
    right: 0;

    display: block;

    min-width: 100%;
    min-height: 100%;

    cursor: inherit;
    text-align: right;

    opacity: 0;
    outline: none;
    background: white;

    filter: alpha(opacity=0);
}

#btn-loading
{
    display: none;
}

.project-action {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin-bottom: 15px;
    text-align: center;

}

.project-action .button-project{
    bottom: 0;
    display: inline-flex;
    margin-bottom: 30px;

}

.project-action .button-project button{
    display: inline-block;
    margin: 5px;
}

.dark-line
{
    margin-top: 10px;
    margin-bottom: 10px;

    border-bottom: 1px solid #444;
}

.underline
{
    margin-top: 15px;
    margin-bottom: 15px;

    border-bottom: 1px solid #e48e49;
}

.underline-grey
{
    margin-top: 15px;
    margin-bottom: 15px;

    border-bottom: 1px solid #ccc;
}

.underline-small
{
    width: 50px;
    margin-top: 15px;
    margin-bottom: 15px;

    border-bottom: 3px solid #8ac53f;
}

.share-btn
{
    display: inline-block;

    width: 35px;

    text-align: center;

    color: #fff;
    background: transparent;
    border-radius: 8px;
    border: none;
    outline: none;
}


.share-btn span{
    font-size: 22pt;
}

.share-btn:hover
{
    color: #e48e49;
}

.share-btn:active
{
    position: relative;
    top: 2px;

    color: #e2e2e2;
    outline: none;
    box-shadow: none;
}

#share-icon .share-btn{
    width: 39px;
    height: 39px;
    padding: 5px;
}

#share-icon .share-btn:hover{
    color: #f1f1f1;
}

.share-btn.twitter
{
    background: #55acee;
}
.share-btn.google-plus
{
    background: #dd4b39;
}
.share-btn.facebook
{
    background: #3b5998;
}
.share-btn.rss
{
    background: #e9ab31;
}
.share-btn.reddit
{
    background: #ff5700;
}
.share-btn.linkedin
{
    background: #4875b4;
}
.share-btn.email
{
    background: #444;
}

.categories
{
    margin-top: 7px;
    margin-right: 8px;
    margin-bottom: 7px;
    padding-top: 7px;

    padding-bottom: 7px;
}

div.notif-badge
{
    position: absolute;
    top: 10px;
    right: 5px;

    width: 15px;
    height: 15px;

    color: #fff;
    border: 2px solid #fff;
    border-radius: 50%;
    background-color: #e48e49;
}

.fa .fa-bell
{
    padding: 0;
}

a.primary
{
    text-decoration: none;

    color: #8ac53f;
}

a.primary:hover
{
    color: #444;
}

.font-primary
{
    font-family: 'montserratregular';
}

.categories.green a
{
    font-weight: 600;

    padding-top: 7px;
    padding-right: 10px;
    padding-bottom: 7px;
    padding-left: 10px;

    text-decoration: none;
    text-transform: uppercase;

    color: #8ac53f;
    border: 1px solid #8ac53f;
    background: #fff;
}

.categories.green a:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    color: #656565;
}

.categories.orange a
{
    font-weight: 600;

    padding-top: 7px;
    padding-right: 10px;
    padding-bottom: 7px;
    padding-left: 10px;

    text-decoration: none;
    text-transform: uppercase;

    color: #e48e49;
    border: 1px solid #e48e49;
    /*border-radius: 4px;*/
    background: #fff;
}

/*.categories.orange a:after
{
    position: absolute;
    z-index: 1001;

    width: 0;
    height: 0;
    margin-top: -9px;
    margin-left: 13px;

    content: ' ';

    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-left: 20px solid #fff;
}
*/
.categories.orange a:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    color: #656565;
}

.grid-categories
{
    float: left;

    margin-right: 8px;
}

.alert-danger
{
    color: #fff;
    border: 0;
    background: #dd4b39;
}

.alert-info
{
    color: #fff;
    border: 0;
    background: #00a0b0;
}

.alert-success
{
    color: #fff;
    border: 0;
    background: #8ac53f;
}

.label-green
{
    font-weight: 100;

    padding-right: 10px;
    padding-left: 10px;

    color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: #8ac53f;
}

.label-red
{
    font-weight: 100;

    padding-right: 10px;
    padding-left: 10px;

    color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: #dd4b39;
}

.label-white
{
    font-weight: 100;

    padding-right: 10px;
    padding-left: 10px;

    color: #8ac53f;
    border: 1px solid #8ac53f;
    border-radius: 0;
    background-color: #fff;
}

.label-orange
{
    font-weight: 100;

    padding-right: 10px;
    padding-left: 10px;

    color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: #e48e49;
}

.label-blue
{
    font-weight: 100;

    padding-right: 10px;
    padding-left: 10px;

    color: #fff;
    border: 1px solid transparent;
    border-radius: 0;
    background-color: #0066cc;
}


.border
{
    padding: 0;

    border: 1px solid #cacaca;
}

/*Header*/

#mobile-menu .navbar-default {
  background-image: -webkit-linear-gradient(top, #fff 0%, #fff 100%);
  background-image:      -o-linear-gradient(top, #fff 0%, #fff 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff));
  background-image:         linear-gradient(to bottom, #fff 0%, #fff 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffffffff', GradientType=0);
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  background-repeat: repeat-x;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
          box-shadow: inset 0 1px 0 rgba(255, 255, 255, .15), 0 1px 5px rgba(0, 0, 0, .075);
}

.navbar-default{
    border: 0px;
    margin-bottom: 0px;
    background-color: #fff;
}

#autohidemenu{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    padding-bottom: 0px;

}

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index:1000;
}

.nav-up {
    top: 0px;
    transition: top 0.5s ease-in-out;
}

.nav-down{
    top: 50px;
    transition: top 0.5s ease-in-out;
}

@media screen and (max-width:768px){

    header {
        position: relative;
    }

    #autohidemenu{
        position: relative;
    }

    .nav-down{
        top: 0px;
        transition: top 0.5s ease-in-out;
    }

}

#search-primary{
    width: 100%;
}

#form-search{
    border-radius: 4px;
    margin-top: 7px;
}

@media screen and (min-width:768px) and (max-width:992px){
    #form-search{
        width: 20vw;
    }
}


@media screen and (min-width:992px){
    #form-search{
        width: 37vw;
    }


}

@media screen and (min-width:768px){
    #furnizing-content{
        margin-top: 100px;
    }
}


#header-navbar{
    z-index: 1005;
    position: relative;
    width: 100%;

}

#header-navbar ul li a{
    font-family: 'sfns_displayregular', sans-serif;
}

#header-navbar .navbar{
    margin-bottom: 0px;
}

/*#furnizing-header{
    transition: top 0.5s ease-in-out;
}*/

#furnizing-header .navbar-default{
    border-radius: 0;
    background: #fff;
    box-shadow: 0 0 0px transparent;
    border-bottom: 1px solid #ddd;
}

#furnizing-header #furnizing-logo{
    max-width: 170px;
    margin-top: -15px;

}

.filter-grey{
    filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(1); /* Google Chrome & Safari 6+ */
}


#furnizing-header .nav-sub-menu > li
{

    border-bottom: 3px solid transparent;
}

#furnizing-header .nav-sub-menu > li:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    border-bottom: 3px solid #e48e49;
}

@media screen and (max-width: 768px){
    #furnizing-header .nav-sub-menu > li
    {

        border-bottom: 3px solid transparent;
    }

    #furnizing-header .nav-sub-menu > li:hover
    {

        border-bottom: 3px solid transparent;
    }
}


#furnizing-header .nav-sub-menu > li.search-primary:hover{
    border-bottom: 3px solid transparent;
}

.top-nav{
    float: right;
}


.navbar-default .navbar-toggle {
  margin-left: 10px;
  float: left;
}


#mobile-menu a.navbar-brand{
    margin-top: -15px;
    width: 200px;
}

#mobile-menu button{
    border-radius: 0px;
}

#mobile-menu button span{
    color: #8ac53f;
}

@media screen and (min-width: 768px){
    #mobile-menu{
        display: none;
    }

}

@media screen and (max-width: 768px){

    #furnizing-header{
        display: none;
        transition: left 0.5s ease-in-out;
        height: 100px;
        overflow-y: auto;
        background: #fff;
    }

    #furnizing-header.active{
        display: block;
        position: fixed;
        width: 100%;
        height: 100%;
        top: 0;

    }

    #form-search{
        width: 83vw;
        margin-top: 10px;
    }

    .top-nav
    {
        float: none;

    }

    #furnizing-header ul li{
        text-align: left;
    }

    #header-navbar ul{
        padding-left: 30px;
    }

    div.notif-badge
    {
        position: absolute;
        left: 0;
        margin-left: 30px;

        width: 15px;
        height: 15px;
    }

}

/*Mega menu*/


.navbar-nav.nav-sub-menu
{
    margin-left: -30px;
}

.navbar-nav > li > .dropdown-menu
{
    margin-top: 20px;

    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.navbar-default .navbar-nav > li > a
{
    font-family: 'montserratregular';
    width: 100%;
    text-transform: uppercase;
}

.navbar-default .navbar-nav > li > a.parent-menu
{
    /* padding-top: 25px;
    padding-bottom: 25px; */

    /* text-transform: uppercase; */

    color: #666;
    background-color: transparent;
}

.navbar-default .navbar-nav > li > a:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    color: #e48e49;
    background-color: transparent;
}

.navbar-default .navbar-nav > li > a.parent-menu:focus
{
    color: #e48e49;
    background-color: #fff;
}

.navbar-default .navbar-nav > .open > a
{
    color: #e48e49;
    background-image: linear-gradient(to bottom, transparent 0%, transparent 100%);
    box-shadow: 0 0 0 transparent;
}

.navbar-default .navbar-nav > .open > a:after
{
    position: absolute;

    margin-top: 37px;
    margin-left: -50%;

    content: '';

    border-right: 14px solid transparent;
    border-bottom: 14px solid #e48e49;
    border-left: 14px solid transparent;
}

.navbar-default .navbar-nav > li.active a
{
    color: #e48e49;
    background: #fff;
}

.mega-dropdown
{
    position: static !important;
}

@media screen and (min-width: 768px){
    .col-md-25{
        width: 20%;
        float: left;
    }
}

.mega-dropdown-menu
{
    z-index: 1005;
    padding: 20px 0;
    left: 0;
    right: 0;
    margin: auto;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.mega-dropdown-menu > li > ul
{
    margin: 0;
    padding: 0;
}

.mega-dropdown-menu > li > ul hr
{
    margin-top: 5px;
    margin-bottom: 5px;
}

.mega-dropdown-menu > li > ul > li
{
    list-style: none;
}

.mega-dropdown-menu > li > ul > li > a
{
    font-weight: normal;
    line-height: 1.428571429;

    display: block;
    clear: both;

    padding: 3px 20px;

    white-space: normal;

    color: #656565;
}

.mega-dropdown-menu > li ul > li > a:hover,
.mega-dropdown-menu > li ul > li > a:focus
{
    text-decoration: none;

    color: #444;
    background-color: #f5f5f5;
}


.mega-dropdown-menu > li > ul > li.btn-list-all > a
{
    width: 150px;

    color: #e48e49;
}

.mega-dropdown-menu > li > ul > li.btn-list-all > a:hover
{
    color: #666;
    background: #fff;
}

.mega-dropdown-menu .dropdown-header
{
    font-size: 16px;
    font-weight: bold;
}

.mega-dropdown-menu li.dropdown-header a
{
    margin-left: -20px;

    color: #e48e49;
}

.mega-dropdown-menu li.dropdown-header:hover a
{
    background: transparent;
}

.mega-dropdown-menu form
{
    margin: 3px 20px;
}

.mega-dropdown-menu .form-group
{
    margin-bottom: 3px;
}

.col-mega-menu
{
    width: 20%;
}

@media screen and (max-width: 768px)
{
    .col-mega-menu
    {
        float: none;

        width: 100%;
    }
}

/*End mega menu*/

.nav-sub-menu
{
    text-align: center;
}

.navbar-collapse.in
{
    overflow: visible;

    height: auto !important;
    max-height: none !important;
}

ul.dropdown-menu
{
    display: none;
}

.nav-sub-menu ul.dropdown-menu
{
    z-index: 1001;
    border-radius: 0px;
    min-width: 200px;
    margin-top: 0;
    padding-top: 10px;
    padding-bottom: 10px;

    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    border-top: 3px solid #e48e49;
    background: #fff;
    /* box-shadow: 0 2px 2px #999; */
}

.nav-sub-menu .dropdown-menu li
{
    display: block;

    text-align: left;

    background: #fff;
}

#panel-notif
{
    margin-left: -45px;
    min-width: 268px;
    /*overflow-y:scroll; */
    font-family: sans-serif;
}

.scrollbar-inner{
    max-height: 350px;
}

#panel-notif a{
    text-decoration: none;
}

#panel-notif li{
    position: relative;
    padding-top: 5px;
}

#panel-notif .fa{
    float: left;
    width: 20px;
}

#panel-notif .notif-right{
    margin-left: 10px;
    float: left;
    width: 85%;
}

.dropdown-menu.notif li
{
    padding-right: 10px;
    padding-left: 10px;

    color: #666;
}

.dropdown-menu.message li:hover,
.dropdown-menu.notif li:hover
{
    text-decoration: none;
    /*background: rgba(224,142,73,0.3);*/
    background: #f1f1f1f1;
}

.list-notif-time
{
    font-size: 8pt;
}

.dropdown-menu.message
{
    margin-left: -45px;
}

.dropdown-menu.message li{
    padding-top: 8px;
}


li.list-all-btn a:hover{
    background: transparent;
    color: #e48e49;
}

.dropdown-menu.message li.list-all-btn:hover,
.dropdown-menu.notif li.list-all-btn:hover{
    background: #fff;
}


/*Cart Menu*/
#mega-dropdown-cart
{
    /*max-height: 400px;*/
}

.cart-menu-list
{
    font-family: 'sfns_displayregular', sans-serif;

    border-bottom: 1px solid #f1f1f1;
}

.cart-menu-list .cart-photo,
.cart-menu-list .cart-detail
{
    float: left;
}

.cart-menu-list a.del-cart
{
    top: 0;

    float: right;

    width: 20px;
    height: 20px;
    margin-top: 15px;
    margin-right: 15px;

    text-align: center;

    color: #fff;
    border-radius: 50%;
    background: #e48e49;
}

.cart-menu-list a.del-cart:hover
{
    color: #fff;
    background: red;
}


/*menu message*/
a.list-menu-message
{
    border-bottom: 1px solid #f1f1f1;
    text-decoration: none;
}

.list-menu-message li
{
    font-family: 'sfns_displayregular', sans-serif;

    padding-right: 8px;
    padding-left: 8px;

    color: #777;
}

.list-menu-message .message-time
{
    font-size: 7pt;
}

.list-menu-message li
{
    padding-bottom: 5px;

    border-bottom: 1px solid #f1f1f1;
}

.list-menu-message li:hover
{
    text-decoration: none;
    background: #f1f1f1;
}

#furnizing-cover
{
    /*background: url(../../../assets/furnizing-bg.jpg) no-repeat center center;*/
    /*-webkit-background-size: cover;
     -moz-background-size: cover;
     -o-background-size: cover;
     background-size: cover;*/
    min-width: 100%;
    min-height: 500px;
    background-color: rgba(0, 0, 0, 0.3);
}

#furnizing-blog{
    margin-top: 130px;
}

#furnizing-cover .container
{
    text-align: center;
}

#furnizing-cover .container h1
{
    font-size: 34pt;

    margin-top: 150px;

    text-transform: uppercase;

    color: #fff;
    text-shadow: 2px 2px 2px #666;
}

#furnizing-bg
{
    position: absolute;
    z-index: -1;

    min-width: 100%;
    min-height: 500px;

    -webkit-background-size: cover;
       -moz-background-size: cover;
         -o-background-size: cover;
            background-size: cover;
}

.bg-pagging
{
    /*position: absolute;*/
    /* left: 0;
    bottom: 0;*/
}

.bg-pagging ul li
{
    display: none;
    float: left;

    margin-right: 15px;
    padding: 3px;
    padding-right: 10px;
    padding-left: 10px;

    list-style: none;

    cursor: pointer;

    border: 2px solid #8ac53f;
}

.bg-pagging ul li.active
{
    display: block;
}

.bg-pagging ul li a
{
    color: #8ac53f;
}

.sign-up
{
    margin-top: 10px;
    margin-bottom: 15px;
}

/*Dashboard*/
#furnizing-services-dashboard img.svg-icon{
    width: 100px;
    margin: auto;
     -webkit-filter: grayscale(10);
    filter: grayscale(10);
}

#furnizing-services-dashboard img.svg-icon:hover{
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;
}

#furnizing-services-dashboard a:hover{
    text-decoration: none;
}

#furnizing-services-dashboard p{
    text-align: center;
}

.dashboard-category-icon a{
    text-decoration: none;
    color: #999;
}

.dashboard-category-icon a:hover,
.dashboard-category-icon a:hover img{
    -webkit-filter: grayscale(0);
    filter: grayscale(0);
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;
    color: #8ac53f;
}

.dashboard-category-icon a img{
    width: 55px;
    -webkit-filter: grayscale(10);
    filter: grayscale(10);
    margin: auto;
    margin-bottom: 0px;
}

.dashboard-category-icon{
    text-align: center;
}

@media screen and (min-width: 992px) and (max-width: 1200px){
    .dashboard-category-icon a img{
        width: 35px;
        margin-bottom: 45px;
    }

    .dashboard-category-icon{
        display: table;
    }

    .dashboard-category-icon p{
        font-size: 10pt;
        position: absolute;
        bottom: 0;
        text-align: center;
        z-index: 1001;
    }
}

#furnizing-inspiration-dashboard .item{
    max-height: 380px;
    /* overflow: hidden; */
    margin-bottom: 15px;
}

#furnizing-inspiration-dashboard .media__body.showcase{
    opacity: 1;
    padding: 0px;
}

.title-overlay{
    /* background: rgba(138, 198, 63, .5); */
    background: rgba(0, 0, 0, .4);
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 15px;

}

.title-overlay{
    color: #fff;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 18px;
}

@media screen and (max-width:768px){
    #furnizing-inspiration-dashboard .item{
        max-height: 100%;
    }
}




/*============================================================================
Shop-list=====================================================================
============================================================================*/

#furnizing-shop
{
    padding-bottom: 50px;

    background: url(../../../assets/shop-bg.png) no-repeat center center;
    background-size: cover;
}

#furnizing-shop .panel-body
{
    padding: 0;
}

.border-sm
{
    width: 33.33333%;
    height: auto;
}

.border-md
{
    width: 66.66666%;
    height: auto;
}

.border-lg
{
    width: 99.999999%;
    height: auto;
}
.border-product
{
    width: 100%;
    min-height: 100%;
    margin-top: 10px;
    margin-bottom: 5px;
    padding: 15px;

    border: 1px solid #e48e49;
    background: #fff;
    -webkit-box-shadow: 4px 4px 0 #e48e49;
       -moz-box-shadow: 4px 4px 0 #e48e49;
            box-shadow: 4px 4px 0 #e48e49;
}

.border-product:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    -webkit-box-shadow: 4px 4px 0 #e48e49, 0 3px 5px rgba(0,0,0,.4);
       -moz-box-shadow: 4px 4px 0 #e48e49, 0 3px 5px rgba(0,0,0,.4);
            box-shadow: 4px 4px 0 #e48e49, 0 3px 5px rgba(0,0,0,.4);
}

.shop-action a{
    margin-bottom: 8px;
}

/*Shop list*/
/*Custom Select*/
.select
{
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    height: 34px;

    color: #616263;
    border: 1px solid #cacaca;
    border-radius: 3px;
}

.select select
{
    font-size: 14px;

    width: 95%;
    height: 34px;
    padding: 5px;

    border: 0;
    outline: none;
    background-color: #fff;

    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

.select:after
{
    position: absolute;
    z-index: 1;
    top: 0;
    right: 15px;

    box-sizing: border-box;
    width: 10%;
    height: 100%;
    padding: 5px 8px;
    /*content:"▼";*/

    content: url('../../../assets/images/arrow-down-icon.png');
    text-align: center;
    pointer-events: none;
}

.input-keyword
{
    position: relative;

    display: block;
    overflow: hidden;

    width: 100%;
    height: 34px;
    margin-top: -7px;

    color: #616263;
    border: 1px solid #cacaca;
    border-radius: 3px;
}

.input-keyword input
{
    padding-top: 5px;
    padding-left: 13px;
}

.option-text
{
    font-size: 14px;

    min-width: 250px;
    height: 34px;
    padding: 5px;
    padding-left: 7px;
    border: 0;
    outline: none;
    background-color: #fff;
}

.custom-select-search ul
{
    position: absolute;

    width: 100%;
    margin-top: -5px;
}

.custom-select-search .label-option
{
    font-weight: 100;

    margin-left: 15px;
}

.product-search
{
    width: 100%;
}

#search-shop-list
{
    margin-bottom: 30px;

    border: 1px solid #ddd;
 /*   -webkit-box-shadow: 0 4px 4px #f1f1f1;
       -moz-box-shadow: 0 4px 4px #f1f1f1;
            box-shadow: 0 4px 4px #f1f1f1;*/
}

#search-shop-list .select
{
    margin-bottom: 7px;
}

#search-shop-list .underline
{
    border-bottom: 2px solid #8ac53f;
}



.list-product-title a
{
    text-decoration: none;

    color: #656565;
}

.price-tags
{
    margin-right: 60px;
    margin-bottom: 15px;
    margin-left: -15px;
    padding-top: 7px;
    padding-bottom: 7px;
    padding-left: 15px;

    color: #fff;
    background: #8ac53f;
    -webkit-box-shadow: 0 4px 0 #628d2c;
       -moz-box-shadow: 0 4px 0 #628d2c;
            box-shadow: 0 4px 0 #628d2c;
}

.price-tags:after
{
    position: absolute;
    right: 0;

    margin-top: -6px;
    margin-right: 90px;

    content: ' ';

    border-top: 18px solid transparent;
    border-right: 18px solid #fff;
    border-bottom: 18px solid transparent;
}

/*Shop product detail*/

#product-detail-desc
{
    font-family: 'sfns_displayregular', sans-serif;
}

#product-detail .attr-left
{
    width: 40%;

    color: #000;
}

#product-detail .attr-right
{
    width: 60%;

    color: #8ac53f;
}

#product-detail .attr-left,
#product-detail .attr-right
{
    font-weight: 600;
    line-height: 18pt;

    float: left;
}

#product-detail ul.images
{
    position: relative;
    overflow: hidden;

    width: 100%;
    min-height: 380px;
    margin: 0;
    top: 0;
    left: 0;
}

#product-detail ul.images li{
    list-style: none;
}

#product-detail ul.images li img
{
    position: absolute;
    margin:auto;
    top:0;
    right:0;
    left:0;
    bottom:0;
    max-height:100%;
    max-width:100%;
}

#product-detail ul.triggers
{
    margin-top: 15px;
    padding: 0;
    text-align: center;
}

#product-detail ul.triggers li
{
    position: relative;

    /*float: left;*/
    display: inline-flex;
    text-align: center;
    overflow: hidden;

    width: 45px;
    height: 45px;
    margin: 3px ;
    padding: 2px;

    list-style: none;

    cursor: pointer;

    color: #000;
    border: 2px solid #999;
}

#product-detail ul.triggers li img
{
    position: absolute;
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;

    width: 60px;
    margin: auto;
}

#product-detail ul.triggers li.active
{
    color: #000;
    border: 2px solid #e48e49;
}

#product-detail .control
{
    font-size: 40px;

    position: absolute;
    top: 0;

    margin-top: 30%;

    cursor: pointer;

    opacity: .3;
}

#product-detail .control:hover
{
    opacity: 1;
}
#product-detail .prev
{
    left: 0;

    margin-left: 15px;
}
#product-detail .next
{
    right: 0;

    margin-right: 15px;
}


.product-review-tab ul.tabs
{
    margin: 0;
    padding: 0;

    list-style: none;
}
.product-review-tab ul.tabs li
{
    font-weight: 600;

    display: inline-block;

    padding: 10px 15px;

    cursor: pointer;
    text-transform: uppercase;

    color: #222;
    border: 1px solid #f1f1f1;
    background: none;
    background: #fff;
}

.product-review-tab ul.tabs li.current
{
    color: #8ac53f;
    border: 1px solid #f1f1f1;
    border-bottom: 1px solid #8ac53f;
    background: #fff;
}

.product-review-tab .tab-content
{
    display: none;

    width: 100%;
    padding: 15px;

    border: 1px solid #f1f1f1;
    background: #fff;
}

.product-review-tab .tab-content.current
{
    display: inherit;
}

.disabledTab
{
    pointer-events: none;
}

.product-review-tab ul.tabs li.disabledTab
{
    color: #cacaca;
}


/*Shop checkout*/
.table-checkout th{
    background: #8ac53f;
    color: #fff;
    /*border-top-left-radius: 4px;
    border-top-right-radius: 4px;*/
}

.table-checkout tfoot{
    font-weight: 600;
}

.qtyplus,
.qtyminus{
    cursor: pointer;
}




.bookmark-detail ul.triggers
{
    margin-top: 15px;
    padding: 0;
}

.bookmark-detail ul.triggers li
{
    position: relative;

    float: left;
    overflow: hidden;

    width: 55px;
    height: 55px;
    margin: 5px ;
    padding: 2px;

    list-style: none;

    cursor: pointer;

    color: #000;
    border: 2px solid #999;
}

.bookmark-detail ul.triggers li img
{
    position: absolute;
    top: -100%;
    right: -100%;
    bottom: -100%;
    left: -100%;

    width: 80px;
    margin: auto;
}

/*Marketplace*/
.marketplace-detail-price
{
    font-size: 16pt;

    margin-left: 0px;
    margin-right: -15px;
    margin-bottom: 30px;

    padding-top: 7px;
    padding-right: 20px;
    padding-bottom: 7px;
    padding-left: 20px;


    color: #fff;
    background: #8ac53f;
    /*-webkit-box-shadow: 0 4px 0 #628d2c;
       -moz-box-shadow: 0 4px 0 #628d2c;
            box-shadow: 0 4px 0 #628d2c;*/
}

/*.marketplace-detail-price:after
{
    position: absolute;
    right: 0;

    margin-top: -6px;
    margin-right: -25px;

    content: ' ';

    border-top: 22px solid transparent;
    border-right: 22px solid #fff;
    border-bottom: 22px solid transparent;
}*/


.marketplace-describe
{
    font-family: 'sfns_displayregular', sans-serif;
}

.author.marketplace-author
{
    font-family: 'sfns_displayregular', sans-serif;

    margin-top: 10px;
    margin-bottom: 10px;
    padding-right: 10px;
    padding-left: 10px;

    text-align: center;

}


.author
{
    width: 100%;
    margin-top: 50px;
    padding-top: 10px;
    padding-bottom: 10px;

    text-decoration: none;

    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}


@media screen and (min-width: 768px){
    .author{
        display: inline-flex;
    }
}

.author img
{
    width: 100px;
    height: 100px;
    float: left;
    margin-right: 30px;
    margin-bottom: 15px;
    border-radius: 100%;
}

.author .author-detail{
    float: left;
    width: 100%;
}


.author a
{
    text-decoration: none;
    font-size: 14pt;
    margin-top: 15px;
    color: #8ac53f;
    text-transform: uppercase;
}

.marketplace-detail-other
{
    font-size: 16pt;

    margin-bottom: 10px;
    padding-top: 7px;
    padding-right: 20px;
    padding-bottom: 7px;
    padding-left: 20px;

    color: #8ac53f;
    border: 1px solid #8ac53f;
}

#marketplace-add-image img:hover
{
    border: 1px solid #e48e49;
}

.image-replace{
    position: relative;
}

.btn-marketplace-gal-delete
{
    position: absolute;
    top: 0;
    right: 0;
    margin-top: -3px;
    margin-right: -5px;
}

/* Slider page home */
.slider-main{
    width:100%;
    height:400px;
    margin: 0 auto;
  }
  .slider-outer{
     height:100% !important;

    overflow:hidden;
  }
  .slider{

      width: 100%;
      height: 100%;

  }
  .slide-image{
    width: 100%;
      height: 100%;
     display:block;
      color: transparent;
      background-size: cover;
      -moz-background-size: cover;
      -ms-background-size: cover;
      -o-background-size: cover;
      -webkit-background-size: cover;
      background-position: 50% 50%;
      background-repeat: none;
  }
  .slider .slide-item{
    float:left;
      padding: 0;
      margin: 0;
  }
  .clear{
    clear:both;
  }

#slider-nav {
    margin-top: 15px;
    text-align: center;
}
#slider-nav li{
    display: inline-block;
    margin: auto;
}
#slider-nav li.active .dot{
    background: #8ac53f;
}
#slider-nav li .dot{
    width: 10px;
    height: 10px;
    background: #f1f1f1;
    border-radius: 50%;
}

/*Home*/
.carousel-professional h5{
    font-family: 'sfns_displaymedium', sans-serif;
    text-transform: capitalize;
}

.carousel-professional h5 a{
    color: #666;
    text-decoration: none;
}

.post
{
    font-family: 'sfns_displayregular', sans-serif;

    display: block;

    margin: 0 auto 20px auto;
    margin-bottom: 20px;
    padding: 0;

    border: 1px solid #f1f1f1;
    border-radius: 3px;
    background: #fff;
    -webkit-box-shadow: 0 0 2px rgba(0,0,0,.1);
       -moz-box-shadow: 0 0 2px rgba(0,0,0,.1);
            box-shadow: 0 0 2px rgba(0,0,0,.1);
}

.post h4 a
{
    font-size: 12pt;
    line-height: 25px;

    text-decoration: none;
    text-transform: capitalize;

    color: #444;
}

.post h5 a
{
    font-size: 10pt;

    text-transform: capitalize;
}

.post h4 a:hover
{
    color: #8ac53f;
}

.text-content
{
    font-size: 10pt;
    line-height: 25px;
}

a.text-link
{
    text-decoration: none;

    color: #656565;
}
a.text-link:hover
{
    text-decoration: none;

    color: #656565;
}

.post-action .bookmark,
.post-action .save
{
    float: left;

    width: 50%;
    padding: 15px;

    border-top: 1px solid #f1f1f1;
}

#post-panel
{
    margin: auto;
}

.post-action .save
{
    text-align: right;
}

.category-post
{
    text-transform: uppercase;
}

.media
{
    position: relative;

    display: inline-block;

    vertical-align: top;
}

.post-image{

    text-align: center;
}

.post-image img.media__image
{
    width: 100%;
}

/*.media:hover .media__image{

    -webkit-filter: blur(3px);
  -moz-filter: blur(3px);
  -o-filter: blur(3px);
  -ms-filter: blur(3px);
  filter: blur(3px);
}*/

.media__image
{
    display: block;
}

.media__body
{
    font-size: 1em;

    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    overflow: hidden;

    padding: 3.75em 3em;

    -webkit-transition: .6s;
            transition: .6s;
    text-align: center;
    opacity: 0;
    color: white;
    /*
    background: linear-gradient(rgba(0, 0, 0, 1),rgba(0, 0, 0, 0));
    -webkit-linear-gradient(rgba(0, 0, 0, 1),rgba(0, 0, 0, 0));
    -o-linear-gradient(rgba(0, 0, 0, 1),rgba(0, 0, 0, 0));
    -moz-linear-gradient(rgba(0, 0, 0, 1),rgba(0, 0, 0, 0))*/
    /*background: rgba(228, 142, 73,.5);*/
}

.media__body:hover
{
    opacity: 1;

}

.media__body:after,
.media__body:before
{
    top: 1em;
    right: 1em;
    bottom: 1em;
    left: 1em;

    content: '';
    -webkit-transition: .6s .2s;
            transition: .6s .2s;
    -webkit-transform: scale(1.5);
        -ms-transform: scale(1.5);
            transform: scale(1.5);

    opacity: 0;
    border: 1px solid rgba(255, 255, 255, .7);
}

.media__body:before
{
    right: 2em;
    left: 2em;

    border-top: none;
    border-bottom: none;
}

.media__body:after
{
    top: 2em;
    bottom: 2em;

    border-right: none;
    border-left: none;
}

.hover-button
{
    position: absolute;
    bottom: 0;

    width: 100%;
    margin-bottom: 30px;
    margin-left: -3em;

    text-align: center;
}

.btn-open-image
{
    font-size: 35pt;

    opacity: .5;
    color: #fff;
}

.btn-open-image a:hover
{
    color: rgba(255,255,255,.5);
}

/*============================================================================
Blog==========================================================================
============================================================================*/

#article
{
    font-family: 'sfns_displayregular', sans-serif;

    margin-top: 130px;
    margin-bottom: 40px;
}

#article .panel-body
{
    padding: 0;

    background: #f9f9f9;
}

.article-title
{
    margin-top: 20px;
    margin-bottom: 5px;
}

.article-title h2{
    line-height: 1.5;
    font-size: 18pt;
}

.article-title .title-link
{
    font-family: "sfns_displaymedium";
    font-size: 14pt;
    color: #656565;
}

.article-pict
{
    position: relative;

    overflow: hidden;
}

.article-pict-panel
{
    height: 380px;
}
.article-pict img
{
    position: absolute;
    top: 30px;

    margin: auto;

    -webkit-transform: scale(1.2);
       -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
         -o-transform: scale(1.2);
            transform: scale(1.2);
}
.article-content
{
    padding-top: 50px;
    padding-right: 70px;
    padding-bottom: 50px;
    padding-left: 70px;
}

.article-title a:hover
{
    text-decoration: none;

    color: #79ad37;
}

.article-tag,
.article-comment,
.article-like
{
    float: left;

    width: 33.333333%;
    margin-top: 15px;
    padding: 0;

    color: #8ac53f;
}


/*article Read*/
/*==================================================*/
#article-detail
{
    font-family: 'sfns_displayregular', sans-serif;

    height: auto;
    margin-top: 130px;
    margin-bottom: 30px;

    color: #656565;
}

#slug
{
    margin-bottom: 25px;
}

#slug div[class*='slug-']
{
    float: left;
}

.slug-1
{
    font-family: montserratregular;
    font-size: 20pt;

    text-transform: uppercase;
}

.slug-2
{
    font-family: montserratregular;
    font-size: 16pt;

    text-transform: uppercase;
}

.slug-3
{
    font-family: montserratregular;
    font-size: 12pt;
}

#article-detail .container
{
    padding: 0;
}

.article-cover
{
    overflow: hidden;

    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
}

.article-tags
{
    text-transform: capitalize;

    color: #8ac53f;
}

.article-tags a
{
    color: #8ac53f;
}

.article
{
    text-align: justify;
}



.article-footer .continue-reading
{
    float: left;

    width: 30%;

    text-align: left;
}

.article-footer .share-icon
{
    float: left;

    width: 100%;

    text-align: right;
}

.article-footer .share-icon a span{
    font-size: 16px;
}

.article-footer .share-icon a
{
    display: inline-block;
    padding: 6px;
    padding-top: 5px;

    width: 30px;
    height: 30px;

    text-align: center;

    color: #fff;
    background: #e48e49;
    border: 1px solid #e48e49;
    border-radius: 8px;
    margin-left: 5px;
}

.article-footer .share-icon a:hover
{
    color: #e48e49;
    background: #fff;
    border: 1px solid #e48e49;
}


.other-details .share-icon a span{
    font-size: 16px;
}

.other-details .share-icon a
{
    display: inline-block;
    padding: 6px;
    padding-top: 0px;

    width: 30px;
    height: 30px;

    text-align: center;

    color: #fff;
    background: #e48e49;
    border: 1px solid #e48e49;
    border-radius: 8px;
    margin-left: 5px;
}

.other-details .share-icon a:hover
{
    color: #e48e49;
    background: #fff;
    border: 1px solid #e48e49;
}

#suggestion
{
    font-family: 'montserratregular';

    margin-top: 30px;
    margin-bottom: 30px;
}

#suggestion h4
{
    margin-bottom: 30px;
    margin-left: 15px;

    text-decoration: underline;
}

#suggestion img
{
    margin-bottom: 10px;
}

#suggestion div[class*='col-']
{
    text-align: center;
}

#suggestion a
{
    text-decoration: underline;
    text-transform: uppercase;

    color: #656565;
}

.article
{
    line-height: 200%;

    padding-top: 15px;
    padding-bottom: 15px;
}

.article p span
{
    line-height: 30px;
}

.form-comment
{
    padding: 0;
}

.form-comment textarea,
.form-comment input
{
    margin-top: 5px;
    margin-bottom: 5px;

    border-radius: 0;
}

.form-comment button,
.form-comment input
{
    height: 50px;
}

.form-comment button
{
    font-size: 16pt;

    margin-top: 5px;
    margin-bottom: 5px;
}

.recomended
{
    margin-top: 15px;
    margin-bottom: 15px;
}

.recomended img
{
    float: left;

    width: 60px;
    height: 60px;
    margin-right: 15px;
}

#article-comment
{
    margin-top: 30px;
    margin-bottom: 15px;
}
.comment-list
{
    display: inline-flex;

    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 10px;

    text-decoration: none;

    border-top: 1px solid #f1f1f1;
}

.comment-list img
{
    width: 60px;
    height: 60px;
    margin-right: 15px;

    border-radius: 100%;
}

.comment-list a
{
    text-decoration: none;

    color: #8ac53f;
}

.comment-list .comment-detail
{
    width: 100%;
}

.comment-list.reply
{
    margin-left: 80px;
}

.comment-list .btn-reply a
{
    padding-top: 5px;
    padding-right: 15px;
    padding-bottom: 5px;
    padding-left: 15px;

    text-align: right;

    border: 1px solid #f1f1f1;
    border-radius: 5px;
}

.comment-list.sub-comment
{
    padding-left: 45px;
}


/*Category list article*/
/*==================================================*/
#category-list
{
    margin-top: 130px;
    margin-bottom: 50px;
}

#category-list .container
{
    padding: 0;
}

.category-panel
{
    font-family: 'sfns_displayregular', sans-serif;

    margin-bottom: 15px;
    padding: 15px;

    border: 1px solid #dddddd;
}

.category-panel h4
{
    margin-left: 8px;
}

.category-panel li
{
    padding: 8px;

    list-style: none;
}

.category-panel li a
{
    text-decoration: none;

    color: #656565;
}

.category-panel li a:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    color: #e48e49;
}

.category-panel li.active a
{
    color: #e48e49;
}

/*.category-panel li.active a span{
    float: right;
    font-size: 8pt;
    border: 1px solid #e48e49;
    border-radius: 50%;
    padding-top:5px;
    padding-left: 7px;
    width: 22px;
    height: 22px;
}*/

.category-panel li a span
{
    font-size: 8pt;

    float: right;
}

#side-form-search
{
    position: relative;
}
#side-form-search button
{
    position: absolute;
    top: 0;
    right: 0;

    margin-top: -15px;
    margin-right: 10px;
    padding: 0;

    color: #888;
    background: transparent;
}

#mega-dropdown-search button
{
    position: absolute;
    top: 0;
    right: 0;

    margin-top: 18px;
    margin-right: 30px;
    padding: 0;

    color: #888;
    background: transparent;
}

.list-panel
{
    font-family: 'sfns_displayregular', sans-serif;

    margin-bottom: 15px;
    padding: 15px;

    border: 1px solid #dddddd;
}

.list-panel .article-image
{
    padding: 10px;
}

/*.list-panel span.cat-span{
    font-size: 8pt;
    border: 1px solid #444;
    border-radius: 50%;
    padding-top:5px;
    padding-left: 6px;
    width: 24px;
    height: 24px;
}*/

/*Professional*/
#professional
{
    font-family: 'sfns_displayregular', sans-serif;

    margin-top: 130px;
    margin-bottom: 40px;
}

.category-panel li
{
    padding: 8px;

    list-style: none;
}

#professional .category-panel li a
{
    font-weight: 600;

    padding-bottom: 10px;

    text-decoration: none;

    color: #656565;
}

/*#professional .category-panel li a:hover > span{
    border: 1px solid #e48e49;
    color: #e48e49;
}*/

#professional .category-panel li a:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    color: #e48e49;
}

/*
#professional .category-panel li a span{
    font-size: 8pt;
    border: 1px solid #656565;
    color: #656565;
    border-radius: 50%;
    padding-top:5px;
    padding-left: 7px;
    width: 22px;
    height: 22px;
}*/

#professional .category-panel li ul li a
{
    font-weight: 200;

    margin-left: -7px;
    padding: 0;

    text-decoration: none;

    color: #656565;
}

#professional .category-panel li ul li a:hover
{
    background-color: transparent;
}

/*#professional .category-panel .fa-chevron-down{
  padding-left: 5px;
}
*/

#professional .list-item{
    border: 1px solid #ddd;
}

.cropit-image-preview
{
    width: 550px;
    height: 180px;
    margin: auto;
    margin-top: 7px;
    margin-top: 30px;
    margin-bottom: 30px;

    cursor: move;

    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f8f8f8;
    background-size: cover;
}

.cropit-image-preview-photo
{
    width: 302px;
    height: 302px;
    margin: auto;
    margin-top: 7px;
    margin-top: 30px;
    margin-bottom: 30px;

    cursor: move;

    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f8f8f8;
    background-size: cover;
}

.cropit-image-article
{
    width: 300px;
    height: 200px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;

    cursor: move;

    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f8f8f8;
    background-size: cover;
}

.cropit-image-slider
{
    width: 300px;
    height: 130px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;

    cursor: move;

    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f8f8f8;
    background-size: cover;
}

.cropit-image-logo
{
    width: 500px;
    height: 150px;
    margin: auto;
    margin-top: 10px;
    margin-bottom: 10px;

    cursor: move;

    border: 1px solid #ccc;
    border-radius: 3px;
    background-color: #f8f8f8;
    background-size: cover;
}

/* Translucent background image */
.cropit-preview-background
{
    opacity: .2;
}

#search-professional.list-panel
{
    min-height: 200px;
    padding-top: 30px;
    padding-bottom: 30px;

    text-align: center;

    color: #fff;
    border: 1px solid #8ac53f;
    background: url(../../../assets/images/professional-cover.jpg) center center no-repeat;
    background-size: cover;
}

.list-panel h4 span
{
    float: right;
}

.list-panel .img-label
{
    position: absolute;
    bottom: 0;
    width: 75%;
    left: 0;
    right: 0;
    padding-left: 15px;
    padding-right: 15px;
    margin: auto;
    margin-bottom: 15px;

    text-align: center;
    text-transform: uppercase;

    color: #fff;
    background: rgba(138, 198, 63, .8);
}

.list-panel .see-more
{
    float: right;

    margin-right: -20px;
}

.pro-category-image
{
    margin-bottom: 30px;
}

.pro-category-image a
{
    text-decoration: none;

    color: #fff;
}

.pro-category-image a:hover
{
    color: rgba(255, 255, 255, .7);
}

.pro-photos
{

    overflow: hidden;
    background: #fff;
    width: 90px;
    height: 90px;
    margin: 10px;
    border: 3px solid #8ac53f;
    border-radius: 50%;
    float: left;
}
.pro-photos img
{
    /*position: absolute;*/
}

.pro-image-list
{
    overflow: hidden;

    height: 150px;

    border-top: 5px solid #e48e49;
    background: #000;
    position: relative;

}

.pro-image-list img
{
    height: 150px;
    width: auto;
    opacity: 0.5;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.div-right{
    float: left;
    margin-left: 15px;
}

@media screen and (min-width: 992px) and (max-width: 1200px){
    .pro-photos{
        float: none;
        margin: auto;
    }

    .list-item{
        text-align: center;
        width: 100%;
    }

    .div-right{
        float: none;
        width: 100%;
        margin: 0px;
    }
}

@media screen and (max-width: 768px){
    .pro-photos{
        float: none;
        margin: auto;
    }

    .list-item{
        text-align: center;
        width: 100%;
    }

    .div-right{
        float: none;
        width: 100%;
        margin: 0px;
    }
}

.div-right h4{
    text-transform: uppercase;
}

#search-pro input
{
    width: auto;

    border-radius: 0;
}

#search-pro select
{
    padding-top: 4px;
    padding-right: 30px;
    padding-bottom: 4px;
    padding-left: 30px;
}

.list-item
{
    margin-top: 30px;
}

#add-image
{
    position: fixed;

    display: none;
    overflow: scroll;

    max-width: 1200px;
    max-height: 600px;
    margin: auto;

    background: #fff;
}

#contact-me
{
    position: fixed;

    display: none;

    max-width: 600px;
    max-height: 600px;
    margin: auto;

    background: #fff;
}

#btn-contact-me
{
    position: absolute;
    right: 0;
    bottom: 0;

    margin-right: 50px;
    margin-bottom: 20px;
}

#review-pro
{
    position: fixed;

    display: none;

    max-width: 600px;
    max-height: 600px;
    margin: auto;

    background: #fff;
}

/*============================================================================
Page==========================================================================
============================================================================*/

#page-cover
{
    width: 100%;
    height: 300px;
}

#page-cover h2
{
    font-size: 34pt;

    margin-top: 0;
    padding-top: 120px;
    padding-bottom: 100px;

    text-align: center;

    color: #fff;
    text-shadow: 3px 3px 4px #656565;
}

@media screen and (max-width: 768px) {
    #page-cover h2{
        font-size: 24pt;
    }
}

.page
{
    font-family: 'sfns_displayregular', sans-serif;

    padding-top: 30px;
    padding-bottom: 100px;
}


#page-nav
{
    height: 45px;

    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

#page-nav ul li
{
    margin-bottom: 1px;
}

#page-nav ul li a
{
    color: #656565;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    background: #fff;
}

#page-nav ul li:hover a
{
    border-bottom: 3px solid #e48e49;
    background: #fff;
}


#page-nav ul li.active a
{
    border-bottom: 3px solid #e48e49;
    background: #fff;
}


#page-nav > li,
#page-nav .nav-pills > li
{
    display: inline-block;
    float: none;
    zoom: 1; /* hasLayout ie7 trigger */

    *display: inline; /* ie7 fix */
}

#page-nav,
#page-nav .nav-pills
{
    text-align: center;
}

#faq-page
{
    font-family: 'sfns_displayregular', sans-serif;
}

#faq-page li
{
    margin-bottom: 5px;
    margin-left: -15px;

    list-style: none;
}

#faq-page .faq-panel
{
    margin-bottom: 30px;
}

.faq-panel li
{
    margin-bottom: 15px;
    padding: 8px;

    list-style: none;

    border: 1px solid #8ac53f;
}

.faq-panel li .faq-title
{
    text-decoration: none;
    font-weight: 600;
    color: #8ac53f;
}


.faq-panel li .faq-title:after
{
    font-family: "FontAwesome";
    content:"\f107";
    position: absolute;
    right: 0;
    margin-right: 30px;
    background: #e48e49;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding-left: 5px;
}

.faq-panel li .faq-title.collapsed:after
{
    font-family: "FontAwesome";
    content:"\f105";
    position: absolute;
    right: 0;
    margin-right: 30px;
    padding-left: 7px;
}

.faq-panel li .faq-title:hover > span
{
    color: #8ac53f;
}

.faq-panel li .faq-title:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    color: #8ac53f;
}

.faq-panel li .faq-title span
{
    font-size: 8pt;

    float: right;

    width: 22px;
    height: 22px;
    padding-top: 5px;
    padding-left: 7px;

    color: #656565;
    border-radius: 50%;
}

.faq-panel .answers p
{
    padding-top: 10px;
}

.underline-dotted
{
    margin-top: 15px;
    margin-bottom: 15px;

    border-bottom: 1px dotted #8ac53f;
}


/*How to page*/
.tutorial-desc{

}

.tutorial-desc h3{
    color: #8ac53f;

}

.tutorial-desc li {
    list-style: none;
    margin-top: 7px;
    margin-bottom: 8px;
}

.tutorial-desc li:before{
  content: "\f00c"; /* FontAwesome Unicode */
  font-family: 'FontAwesome';
  display: inline-block;
  margin-left: -18px; /* same as padding-left set on li */
  width: 1.3em; /* same as padding-left set on li */
  color: #8ac53f;
}

.tutorial-title{
   width: 80px;
   position: absolute;
   bottom: 0;
}

.tutorial-title .rotate{
     -ms-transform: rotate(-90deg); /* IE 9 */
    -webkit-transform: rotate(-90deg); /* Chrome, Safari, Opera */
    transform: rotate(-90deg);
    font-size: 78pt;
    -webkit-text-fill-color: white; /* Will override color (regardless of order) */
   -webkit-text-stroke-width: 1px;
   -webkit-text-stroke-color: #e48e49;
   font-family: "montserratregular";
   bottom: 0;

}


.tutorial-list{
}

#how-to li:after
{
    font-family: "FontAwesome";
    content:"\f105";
    position: absolute;
    right: 0;
    margin-right: 30px;
    background: #e48e49;
    color: #fff;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding-left: 8px;
}

#how-to li a{
    color: #333;
}

#about-page
{
    color: #fff;
}

.team-list img{
    border-radius: 50%;
    border: 5px solid #8ac53f;
}

.team-list .team-detail{
    margin-bottom: 30px;
}

.team-list .team-detail .social_account a span{
    color: #fff;
    width: 23px;
    height: 23px;
    padding: 4px;
    background: #8ac53f;
    border-radius: 4px;
}


/*Advertisement*/
*
{
    box-sizing: border-box;
}

.price-columns
{
    float: left;

    width: 25%;
    padding: 8px;
}

.price-packet
{
    margin: 0;
    padding: 0;
    padding-left: 15px;

    list-style-type: none;

    -webkit-transition: .3s;
            transition: .3s;

    border: 1px solid #eee;
}

.price-packet:hover
{
    box-shadow: 0 8px 12px 0 rgba(0,0,0,.2);
}

.price-packet .header
{
    font-size: 25px;

    color: white;
    background-color: #444;
}

.price-packet li
{
    padding: 20px;

    text-align: center;

    border-bottom: 1px solid #eee;
}

.price-packet .grey
{
    font-size: 20px;

    background-color: #eee;
}

.price-packet .button
{
    font-size: 18px;

    padding: 10px 25px;

    text-align: center;
    text-decoration: none;

    color: white;
    border: none;
    background-color: #8ac53f;
}

.step{
    margin-bottom: 40px;
}

.step ul{
    text-align: center;
}

.step ul li{
    display: inline-block;
}

.product-review-tab ul.tabs li,
.product-review-tab ul.tabs li.current{
    border: 0px;
}

.step ul li .numb{
    width: 70px;
    height: 70px;
    border: 2px solid #cacaca;
    border-radius: 50%;
    text-align: center;
    margin: auto;
    padding: 10px;
     filter: gray; /* IE6-9 */
    -webkit-filter: grayscale(1); /* Google Chrome & Safari 6+ */
}


.step ul li.current .numb{
    border: 2px solid #8ac53f;
     filter: none; /* IE6-9 */
    -webkit-filter: none; /* Google Chrome & Safari 6+ */
}

.step ul li .line{
    border-bottom: 2px solid #cacaca;
    width: 175px;
    margin: auto;
    margin-top: 15px;
}

.step ul li.current .line{
    border-bottom: 2px solid #8ac53f;
}


.step ul li .desc{
    text-align: center;
    font-size: 14pt;
    margin-top: 15px;
}

@media only screen and (max-width: 600px)
{
    .price-columns
    {
        width: 100%;
    }
}

.adv-item-pict
{
    float: left;

    width: 45px;
    height: 45px;
    margin-right: 3px;
    padding: 2px;

    border: 1px solid #f1f1f1;
}

/*Timeline*/
#timeline-release
{
    font-family: 'sfns_displayregular', sans-serif;

    margin-top: 30px;
    margin-bottom: 30px;
}

#timeline-release ul li
{
    list-style: none;
}

.timeline-panel
{
    position: relative;

    min-height: 150px;
    padding-bottom: 15px;

    border-left: 2px solid #ccc;
}

.check-point
{
    position: absolute;
    top: 0;
    left: 0;

    width: 18px;
    height: 18px;
    margin-left: -10px;

    border: 2px solid #e48e49;
    border-radius: 50%;
    background: #fff;
}

.line-slide
{
    position: absolute;
    top: 0;
    left: 0;

    width: 30px;
    height: 1px;
    margin-top: 10px;

    border-bottom: 2px solid #ccc;
    background: #fff;
}

.stacked-text
{
    margin-left: 45px;
}

.timeline-date,
.timeline-title,
.timeline-author
{
    font-weight: 600;
}

.timeline-date
{
    color: #8ac53f;
}

.timeline-title
{
    color: #444;
}

.timeline-author
{
    color: #e48e49;
}

.timeline-panel-icon
{
    position: relative;

    min-height: 80px;

    border-left: 2px solid #ccc;
}

.timeline-panel-more
{
    position: relative;

    border-left: 2px solid transparent;
}

.timeline-icon
{
    top: 0;
    left: 0;

    margin-top: -10px;
    margin-left: -18px;

    border: 2px solid #ccc;
    border-radius: 50px;
}
/*============================================================================
Explore photo ================================================================
============================================================================*/


.explore-photo-detail a
{
    font-size: 11pt;

    text-transform: capitalize;
}

.explore-title
{
    text-transform: capitalize;
}

.photo-on-this-showcase img{
    margin: auto;
    border-top: 5px solid #e48e49;
}

.owner-name a{
    color: #8ac53f;
    text-decoration: none;
    margin-left: 15px;
    font-weight: 600;
}

#photo-zoom .other-details{
    position: absolute;
    margin-top: 50px;
    margin-left: 50px;
    z-index: 1001;
}

#photo-zoom img{
    border: 5px solid #fff;
    max-height: 750px;
    position: absolute;
    margin: auto;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
  }

  .explore-title a{
    color: #555;
    font-weight: 600;
    text-decoration: none;
  }

  .background-green{
    background: #8ac53f;
    margin: -15px;
    margin-bottom: 15px;
    padding: 15px;
    padding-bottom: 8px;
  }

  .background-green h5{
        text-align: center;
        color: #fff;
  }

  .frame-images{
    overflow: hidden;
  }


  .media-collection{
    width: 100%;
    text-align: center;
    margin-top: -85px;
    position: absolute;
    z-index: 1001;
  }

  .photo-owner img{
    border: 2px solid #8ac53f;

  }

  .photo-desc hr{
    margin-top: 8px;
    margin-bottom: 8px;
  }

  #photo-modal{
    margin-top: 15px;
  }

  #photo-holder{
    padding: 0px;
  }

  #left-panel{
     padding: 20px;
  }

  #photos.panel-body{
    padding: 0px;
  }

  #photo-detail{
    background: #000;
    border: 1px solid #f1f1f1;
    height: 90vh;
    position:relative;
    text-align:center;
  }

  #photo-detail img{
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
      position: absolute;
      margin: auto;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
  }

  .panel-photo{
    float: right;
    margin-right: -15px;
  }

  .share-icon a
    {
        display: inline-block;
        padding: 6px;
        padding-top: 5px;
    }

    .popup-photo-button{
      color: #fff;
      bottom: 0;
      top: 0;
      margin-top: 40vh;
      z-index: 1003;
      position: absolute;
    }


    .popup-photo-button.prev{
      left: 0;
    }

    .popup-photo-button.next{
      right: 0;
    }

    #photo-holder{
        z-index: 1008;
    }

.link-name a{
    color: #8ac53f;
    font-size: 13pt;
    margin-left: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
}

.category-icon{
    text-align: center;
}

.category-icon ul{
    padding: 0px;
    margin: auto;
}

.category-icon li:hover{
    background-color: #f9f9f9;
}

.category-icon li.active{
    background-color: #f1f1f1;
}


.category-icon li{
    display: inline-flex;
    text-align: center;
    list-style: none;
    margin: 15px;
}

.category-icon li a{
    color: #666;
    font-weight: 600;
    text-decoration: none;
    padding-bottom: 10px;
}


.form-search{
    text-align: left;
}

.form-search .col-md-12{
    padding: 5px;
}

.form-search li{
    list-style: none;
}

.form-search li input{
    margin-right: 10px;
}

.form-search li label{
    color: #666;
    font-weight: normal;
}

.filter-option{
    max-height: 300px;
    overflow: auto;
    padding: 0px;
}

.form-search .form-group{
    width: 100%;
}

.option-text-title{
    margin-bottom: 10px;
}

/*============================================================================
Contact Us ================================================================
============================================================================*/
#form-contact-us
{
    margin-top: 30px;
}

#border-contact-us
{
    /*border: 5px dashed #e48e49;*/
    background: linear-gradient(-45deg, white 25%,
    #e48e49 25%, #e48e49 50%,
    white 50%, white 75%,
    #e48e49 75%);
    background-size: 30px 30px;
}

#inside-border
{
    font-family: 'sfns_displayregular', sans-serif;

    padding: 30px;
    padding-top: 45px;
    padding-bottom: 45px;

    background: #fff;
}

#inside-border .input-group
{
    margin-top: 5px;
    margin-bottom: 10px;
}

#inside-border .input-group-addon
{
    color: #fff;
    background: #8ac53f;
}

#inside-border .input-group-addon span
{
    width: 25px;
}

#addon-textarea
{
    height: 28px;
}

/*============================================================================
Career =======================================================================
============================================================================*/


.career-panel
{
    font-family: 'sfns_displayregular', sans-serif;

    margin-bottom: 15px;
    padding: 15px;

    border: 1px solid #e48e49;
}

.career-panel h4
{
    margin-left: 8px;
}

.career-panel li
{
    padding-left: 8px;

    list-style: none;
}

.career-panel li a
{
    text-decoration: none;

    color: #656565;
}

.career-panel li a:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    color: #e48e49;
    background: transparent;
}

.career-panel li.active a
{
    color: #e48e49;
}

.career-panel li.active a span
{
    font-size: 8pt;

    float: right;

    width: 22px;
    height: 22px;
    padding-top: 5px;
    padding-left: 7px;

    border: 1px solid #e48e49;
    border-radius: 50%;
}

.career-panel li a span
{
    font-size: 8pt;

    float: right;
}

.career-panel .parent-menu
{
    font-weight: 600;
}

.career-panel .parent-menu .sub-side-menu
{
    font-weight: 100;
}

.career-panel .parent-menu .sub-side-menu li a
{
    margin-top: 5px;
    margin-left: -13px;
    padding: 5px;
}

.list-orange
{
    margin-bottom: 5px;

    list-style: none;
}

.list-orange span
{
    color: #e48e49;
}

#div-custom-li ul li
{
    list-style: none;
    list-style-image: url('../../../assets/arrow-orange.png');
}

#div-custom-li ul li a
{
    padding-top: 5px;
    padding-bottom: 5px;

    color: #656565;
}

#div-custom-li ul li a:hover
{
    color: #e48e49;
}

/*Pagination*/
ul.pagination li.active a
{
    border: 1px solid #8ac53f;
    background: #8ac53f;
}

ul.pagination li a
{
    color: #8ac53f;
}

ul.pagination li.active a:hover
{
    opacity: .7;
    border: 1px solid #8ac53f;
    background: #8ac53f;
}
/*============================================================================
Member========================================================================
============================================================================*/


/* login */

.form-input-big
{
    padding: 0;
}

.form-input-big input
{
    margin-top: 5px;
    margin-bottom: 5px;
    border-radius: 0;
    border: 1px solid #ddd;
    -moz-box-shadow:    inset 0 0 0px #000000;
   -webkit-box-shadow: inset 0 0 0px #000000;
   box-shadow:         inset 0 0 0px #000000;
}

.form-input-big button
{
    margin-top: 8px;
    margin-bottom: 8px;
    border-radius: 0px;
    border: 0px;
    -moz-box-shadow:    inset 0 0 0px #000000;
   -webkit-box-shadow: inset 0 0 0px #000000;
   box-shadow:         inset 0 0 0px #000000;
}

.form-input-big a.btn
{
     margin-top: 8px;
    margin-bottom: 8px;
    -moz-box-shadow:    inset 0 0 0px #000000;
   -webkit-box-shadow: inset 0 0 0px #000000;
   box-shadow:         inset 0 0 0px #000000;
}


.sign-up-panel h3{
    text-align: center;
}
/*----------  Page login register  ----------*/

.sign-up-panel
{
    width: 100%;
    height: auto;
    margin-top: 50px;
    margin-bottom: 30px;
    padding-top: 5px;
    padding-bottom: 15px;

    border-radius: 0px;
    background: #fff;
    border: 1px solid #ddd;
}

@media screen and (max-width: 768px){
  /*  .sign-up-panel
    {
         margin-top: 120px;
    }*/
}

#page-login{
    height: 100%;
    background: #f9f9f9;
}

.button-panel{
    text-align: center;
}



/*Chat*/
.chat
{
    width: 100%;
    border: 1px solid #8ac53f;
    padding-top: 30px;
    padding-bottom: 15px;
}

.bubble
{
    position: relative;

    display: inline-block;

    padding: 10px 18px;

    vertical-align: top;

    border-radius: 8px;
    background-color: #f2f2f2;
    box-shadow: 0 0 6px #b2b2b2;
}

.bubble h6{
    margin-top: 0px;
}

.bubble::before
{
    position: absolute;
    top: 11px;

    display: block;

    width: 20px;
    height: 16px;

    content: '\00a0';
    -webkit-transform: rotate( 29deg ) skew( -35deg );
       -moz-transform: rotate( 29deg ) skew( -35deg );
        -ms-transform: rotate( 29deg ) skew( -35deg );
         -o-transform: rotate( 29deg ) skew( -35deg );
            transform: rotate( 29deg ) skew( -35deg );

    background-color: #f2f2f2;
}

.you
{
    float: left;

    margin: 5px 45px 5px 20px;

    color: #fff;
    background-color: #8ac53f;
}

.you::before
{
    left: -9px;

    background-color: #8ac53f;
    box-shadow: -2px 2px 2px 0 rgba( 178, 178, 178, .1 );
}

.me
{
    float: right;

    margin: 5px 20px 5px 45px;
}

.me::before
{
    right: -9px;

    box-shadow: 2px -2px 2px 0 rgba( 178, 178, 178, .4 );
}

.chat-photos
{
    position: relative;

    float: left;
    overflow: hidden;

    width: 40px;
    height: 40px;
    margin-left: -15px;

    border-radius: 50%;
}
.chat-photos img
{
    position: absolute;
}

.chat-name
{
    font-weight: 600;

    margin-left: 45px;

    color: #888;
}


.chat-time
{
    font-size: 7pt;

    margin-left: 45px;
}

.chat-detail-time
{
    font-size: 7pt;
}

#list-message
{
    list-style: none;
    border: 1px solid #8ac53f;
    padding-top: 15px;
    padding-bottom: 15px;
    min-height: 400px;
    padding-left: 5px;
    padding-right: 5px;
}

#list-message li
{
    padding-top: 5px;
    padding-right: 30px;
    padding-bottom: 5px;
    padding-left: 30px;
}

#list-message li.active
{
    color: #e48e49;
    background-color: #8ac53f;
    border-radius: 4px;
}

#list-message li a
{
    text-decoration: none;
}

#list-message li.active a
{
    text-decoration: none;

    color: #fff;
}

#list-message li.active:hover
{
    background-color: #6ac430;
}

#list-message li.active .chat-name
{
    color: #fff;
}

#list-message li:hover
{
    background-color: #f1f1f1;
}

.white-panel{
    height: auto;
    width: auto;
    margin-top: 50px;
    width: 50%;
    margin:auto;
    margin-bottom: 30px;
    padding-top: 10px;
    padding-bottom: 10px;

    background: rgba(255, 255, 255, .3);
}

@media screen and (max-width:768px){
    .white-panel{
        width: 100%;
    }
}


#furnizing-profile
{
    font-family: 'sfns_displayregular', sans-serif;

    padding-bottom: 70px;
}

#furnizing-profile .panel-body
{
    padding: 0;
}

#profile-cover
{
    width: 100%;
    height: 300px;
}

#profile-cover .container
{
    padding: 0;
}

.media-cover{

   background: linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.7));
  -webkit-linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.7));
  -o-linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.7));
  -moz-linear-gradient(rgba(0, 0, 0, 0),rgba(0, 0, 0, 0.7));

  width: 100%;
  height: 100%;

}

.member-photo
{
    overflow: hidden;

    margin-bottom: 5px;
    padding: 5px;

    border: 1px solid #ccc;
    background: #fff;
}

.member-photo img
{
    width: 100%;
    height: 100%;
    margin: auto;

    border: 1px solid #ccc;
}


#btn-edit-photo-profile
{
    position: absolute;
}

#btn-edit-photo-profile
{
    right: 0;

    margin-top: 10px;
    margin-right: 30px;

    background-color: transparent;
}

#btn-edit-photo-cover
{

    background-color: transparent;
}

.member-detail h4
{
    text-transform: uppercase;

    color: #fff;
    text-shadow: 2px 2px 4px #444;
}

.member-rating
{
    margin-top: 5px;
    margin-bottom: 5px;
}

.member-content
{
    width: 100%;
    min-height: 400px;
    margin-top: 30px;
}

#profile-nav
{
    height: 45px;

    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
}

#profile-nav ul.nav-pills
{
    /*padding-left: 30px;
  padding-right: 30px;*/
}

#profile-nav ul li
{
    margin-right: -3px;
    margin-bottom: 1px;

    border-right: 1px solid transparent;
    border-left: 1px solid transparent;
}

#profile-nav ul li a
{
    color: #656565;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    background: #fff;
}

#profile-nav ul li:hover a
{
    border-bottom: 3px solid #e48e49;
    background: #fff;
}

#profile-nav ul li:hover a:after
{
    position: absolute;
    left: 40%;

    margin-top: 23px;

    content: '';

    border-right: 8px solid transparent;
    border-bottom: 8px solid #e48e49;
    border-left: 8px solid transparent;
}

#profile-nav ul li.active a
{
    border-bottom: 3px solid #e48e49;
    background: #fff;
}

#profile-nav ul li.active a:after
{
    position: absolute;
    left: 40%;

    margin-top: 23px;

    content: '';

    border-right: 8px solid transparent;
    border-bottom: 8px solid #e48e49;
    border-left: 8px solid transparent;
}

#more-menu
{
    position: absolute;
    z-index: 1000;

    margin-top: 4px;

    border-left: 3px solid #e48e49;
    background: #fff;
    box-shadow: 2px 2px 4px #cacaca;
}

#more-menu li
{
    list-style: none;
}

#more-menu li:hover a:after
{
    border: 0 !important;
}

#more-menu li:hover a
{
    border-bottom: 1px solid #e48e49 !important;
}

#profile-nav ul li:hover #more-menu li a:after
{
    position: absolute;

    content: '';

    border-right: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-left: 8px solid transparent;
}

#more-menu li
{
    border: 0 !important;
}

#more-menu li a
{
    min-width: 120px;
    padding: 10px;

    border: 1px solid #f1f1f1 !important;
}

ul.scrollmenu
{
    /* overflow-x: scroll;
    white-space: nowrap;*/
}

#scroll-left,
#scroll-right
{
    position: absolute;
    z-index: 1005;

    display: none;

    width: 35px;
    margin-top: -40px;

    opacity: .4;
    color: #000;
    border-radius: 50%;
    background: #cacaca;
}

#scroll-left:hover,
#scroll-right:hover
{
    opacity: 1;
    background: #8ac53f;
}

#scroll-left
{
    left: 0;
}

#scroll-right
{
    right: 0;
}

@media screen and (max-width: 768px)
{
    #content-scroll
    {
        min-width: 1100px;
        margin-left: 0;
    }

    #scroll-on-mobile
    {
        overflow: hidden;
    }

    #btn-more-on-desktop
    {
        display: none !important;
    }

    #scroll-left,
    #scroll-right
    {
        display: block;
    }
}

@media screen and (min-width: 768px)
{
    .btn-show-on-mobile
    {
        display: none !important;
    }
}

ul.scrollmenu a
{
    display: inline-block;

    text-align: center;
    text-decoration: none;
}

ul.sidemenu li a
{
    padding-left: 0;

    color: #656565;
}

ul.sidemenu li a:hover
{
    color: #e48e49;
    background: transparent;
}

ul.sidemenu li.active > a
{
    color: #e48e49;
}


#profile-content
{
    margin-top: 100px;
    padding-bottom: 15px;
}

#profile-overview
{
    margin-top: 18px;
    padding-bottom: 30px;
}

#profile-content-2
{
    padding-top: 30px;
    padding-bottom: 30px;
}

@media screen and (max-width: 768px){
    #profile-content-2
    {
        padding-top: 60px;
    }
}

.border-data-overview
{
    display: block;

    width: 100%;
    margin-top: 15px;
    padding: 0;
}

#point-dashboard
{
    width: 100%;
    padding: 10px;

    text-align: center;

    border: 1px solid #ccc;
}

.overview-pro-list
{
    width: 100%;
}

.activity-title .underline-small{
    margin-top: 5px;
    width: 70px;
}

#point-dashboard a
{
    margin-bottom: 15px;
}

.activity-title div
{
    float: left;

    width: 50%;
}

h4 span{
    margin-right: 5px;
}

.project-item
{
    overflow: hidden;

    margin-top: 15px;
    margin-bottom: 15px;
}

.project-item img
{
    border-top: 5px solid #e48e49;
}

.project-item span
{
    font-family: 'sfns_displayregular', sans-serif;

    position: absolute;
    bottom: 15px;

    margin-right: 15px;
    padding: 3px;
    padding-right: 15px;
    padding-left: 15px;

    color: #fff;
    background: #656565;
}

.comment-bubble
{
    padding: 15px;
    border: 1px solid #ccc;
}

.comment-bubble:before
{
    position: absolute;
    z-index: 3000;
    bottom: 0;
    left: 80%;

    margin-bottom: 27px;

    content: '';

    border-top: 10px solid #fff;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

.comment-bubble:after
{
    position: absolute;
    left: 80%;

    margin-top: 15px;

    content: '';

    border-top: 10px solid #ccc;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}

#comments
{
    margin-top: 30px;
}

#profile-overview  #left-side a.btn
{
    margin-bottom: 15px;
}

#profile-overview a span.fa-share-alt
{
    position: absolute;
    right: 0;

    float: right;

    margin-top: 3px;
    margin-right: 30px;
    padding-left: 15px;

    border-left: 1px solid #8ac53f;
}

#profile-overview a:hover span.fa-share-alt
{
    border-left: 1px solid #fff;
}

.following,
.follower
{
    float: left;

    width: 50%;
    margin-bottom: 15px;
    padding-top: 8px;
    padding-bottom: 8px;

    text-align: center;

    border: 1px solid #ccc;
}

.follow-panel{
    padding-left: 30px;
    padding-right: 30px;
}


.follow-panel .user-list{
    margin-bottom: 15px;
}

.follow-panel .user-list img{
    border-radius: 50%;
    width: 50px;
}

.follow-panel .user-list a.user-list-fullname{
    color: #8ac53f;
    margin-left: 15px;
}

.follow-panel .user-list .btn{
    padding-top: 0px;
    float: right;
    margin-top: -40px;
}

#profile-overview p span
{
    margin-right: 10px;
}

#profile-overview #left-side
{
    min-height: 200px;
}

#profile-overview #center-side
{
    min-height: 200px;
}

#profile-overview #right-side
{
    min-height: 200px;
}

.overview-pro-list
{
    width: 100%;
}

#profile-overview #list-pro-contact div
{
    display: inline-flex;
}

#profile-overview #right-side div p
{
    margin-top: -2px;
    margin-left: 15px;
}

/*Professional article*/
.fullscreen#editor-wysiwyg{

    overflow-y: scroll;
}

.fullscreen #wysiwyg-panel{
    max-width: 960px;
    background: #fff;
    min-height: 700px;
    padding: 15px;
    margin: auto;
}


#professional-story-list
{
    padding: 0;
}

.panel-story
{
    margin-top: 5px;
    margin-bottom: 15px;
    padding-top: 15px;
    padding-bottom: 15px;

    color: #757575;
    border: 1px solid #ccc;
}

#professional-story-list .title-link
{
    font-size: 14pt;

    text-decoration: none;

    color: #757575;
}

#professional-story-list hr
{
    margin-top: 15px;
    margin-bottom: 15px;
}
/*Professional Showcase*/

#profile-content.pro
{
    margin-top: 130px;
    padding-bottom: 15px;
}

.member-detail.pro
{
    margin-top: 15px;
}

#showcase-grid
{
    display: none;
}

#showcase-grid.active
{
    display: block;
}

#showcase-list.active
{
    display: block;
}

#showcase-list
{
    display: none;
}

#side-bar-article
{
    margin-left: 15px;
}


.thumbnail
{
    float: left;

    height: 100px;
    margin: 10px;
}

#clear
{
    display: none;
}

#result
{
    display: none;
    float: right;

    width: 100%;
    margin: 0 auto;

    border: 4px dotted #ccc;
}

.button-add-image{
  cursor: pointer;
}

.file-area {
  width: 100%;
  position: relative;
  border: 1px dotted #cacaca;
}
.file-area input[type=file] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  cursor: pointer;
}
.file-area .file-dummy {
  width: 100%;
  padding: 30px;
  background: rgba(255, 255, 255, 0.2);
  border: 2px dashed rgba(255, 255, 255, 0.2);
  text-align: center;
  transition: background 0.3s ease-in-out;
}
.file-area .file-dummy .success {
  display: none;
}
.file-area:hover .file-dummy {
  background: rgba(255, 255, 255, 0.1);
}
.file-area input[type=file]:focus + .file-dummy {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline: -webkit-focus-ring-color auto 5px;
}
.file-area input[type=file]:valid + .file-dummy {
  border-color: rgba(0, 255, 0, 0.4);
  background-color: rgba(0, 255, 0, 0.3);
}
.file-area input[type=file]:valid + .file-dummy .success {
  display: inline;
}
.file-area input[type=file]:valid + .file-dummy .default {
  display: none;
}


/*Collection*/
#add-collection
{
    font-family: 'sfns_displayregular', sans-serif;

    position: fixed;

    display: none;

    max-width: 600px;
    max-height: 600px;
    margin: auto;

    background: #fff;
}

.button-edit-collection
{
    position: absolute;
    right: 0;

    width: 35px;
    height: 35px;
    margin-top: 5px;
    margin-right: 15px;

    color: #fff;
    border-radius: 50%;
    background-color: rgba(0,0,0,.3);
}

.button-edit-collection:hover
{
    background-color: rgba(138,197,63,.7);
}

.form-popup
{
    font-family: 'sfns_displayregular', sans-serif;

    position: fixed;

    display: none;

    max-width: 600px;
    max-height: 600px;
    margin: auto;

    background: #fff;
}

/*Member article*/

.fullscreen
{
    position: fixed;
    z-index: 1001;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;
    padding-top: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
    padding-left: 15px;

    background: rgba(0,0,0,.7);
}

#recent-tags
{
    margin-top: 10px;
    margin-bottom: 10px;
}

.tags-label
{
    margin-right: 5px;
    float: left;
    margin-bottom: 5px;
    padding-top: 4px;
    background: #e48e49;
}

.tags-label a
{
    color: #fff;
}

label.promoted{
    background: #ffd700;
    color: #fff;
    font-size: 7pt;
    border-radius: 10px;
    padding-left: 7px;
    padding-right: 7px;
}

#uploadimageajax input
{
    margin-bottom: 8px;
}

/*Member notification*/
.notif-list
{
    margin-bottom: 15px;
    padding-left: 15px;
    padding-top: 3px;
}

.notif-list:hover{
    background: #f1f1f1;
}

.notif-icon
{
    float: left;
}

.notif-detail
{
    margin-left: 30px;
}

.notif-time
{
    margin-left: 30px;

    color: #888;
}

/*Member bookmark*/
.bookmark-list
{
    display: block;

    width: 100%;
    margin-bottom: 15px;

    border: 1px solid #f1f1f1;
}

.bookmark-detail
{
    width: 100%;
    padding: 15px;
}

.notif-time
{
    margin-left: 30px;

    color: #888;
}

#profile-content .article-list
{
    width: 100%;
    margin-bottom: 15px;
}

.bookmark-detail .title-link
{
    font-size: 15pt;

    color: #656565;
}


/*Professional Showcase */
.button-edit-showcase
{
    position: absolute;
    right: 0;

    width: 35px;
    height: 35px;
    margin-top: 5px;
    margin-right: 15px;

    color: #fff;
    border-radius: 50%;
    background-color: rgba(0,0,0,.3);
}

.button-edit-showcase:hover
{
    background-color: rgba(138,197,63,.7);
}

.button-buzz-showcase
{
    position: absolute;
    left: 0;

    width: 35px;
    height: 35px;
    margin-top: 5px;
    margin-left: 15px;

    opacity: .8;
    color: #fff;
    border-radius: 50%;
    background-color: #e48e49;
}

.button-buzz-showcase:hover
{
    background-color: rgba(138,197,63,.7);
}

.button-buzz-article
{
    position: absolute;
    left: 0;

    width: 35px;
    height: 35px;
    margin-left: 15px;

    opacity: .8;
    color: #fff;
    border-radius: 50%;
    background-color: #e48e49;
}

@media screen and (min-width: 992px){
    .button-buzz-article{
        margin-left: 30px;
    }
}


.button-close-circle
{
    position: absolute;
    right: 0;

    width: 35px;
    height: 35px;
    margin-top: 5px;
    margin-right: 15px;

    color: rgba(255,0,0,0.7);
    border-radius: 50%;
    border: 1px solid rgba(255,0,0,0.7);
    background: transparent;
}

.button-close-circle:hover
{
    /*background-color: rgba(138,197,63,.7);*/
    background: rgba(255,0,0,0.5);
    color: #fff;
    border: #fff;
}

.grey-background{
    width: 100%;
    height: 260px;
    background-color: #f9f9f9;
    text-align: center;
    border-top: 5px solid #e48e49;
    position: relative;
}

.grey-background a{
    margin-top: 100px;
}

.article-manage
{
    position: absolute;
    right: 0;

    margin-top: -30px;
    margin-right: 30px;
}

/*Furnizing footer*/

#furnizing-footer
{
    background: #0c0d0d;
    margin-bottom: -20px;
}

#furnizing-footer h6
{
    padding-top: 10px;
    padding-bottom: 10px;
}

#footer-content
{
    font-family: 'sfns_displayregular', sans-serif;

    margin-top: 30px;

    text-transform: uppercase;
}

#footer-content h5
{
    margin-bottom: 15px;

    text-align: left;

    color: #666;
}

#footer-content li
{
    padding-top: 5px;
    padding-bottom: 5px;
    list-style: none;
}

#footer-content li a
{
    text-decoration: none;
    color: #666;
    font-size: 10pt;
}

#footer-content ul li
{
    width: 40px;
    height: 40px;
    margin-right: 7px;
    margin-left: 7px;

    border: 1px solid #e48e49;
}

#footer-content ul li a span
{
    font-size: 17pt;

    margin-top: 3px;
    margin-right: 3px;

    text-align: center;

    color: #e48e49;
}

.body_4 .footer-title
{
    font-weight: 600;

    color: #999;
    margin-bottom: 8px;
}

.body_3
{
    text-align: center;
}

.body_3 .input-group
{
    position: relative;

    margin: auto;
    margin-top: 30px;
}

#newsletter
{
    min-width: 230px;
    margin: auto;

    text-align: center;

    border: 1px solid transparent;
    border-bottom: 1px solid #444;
    border-radius: 0;
    background: transparent;
}

#newsletter:focus
{
    border-bottom: 1px solid #444;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .75), 0 0 4px #444;
            box-shadow: inset 0 1px 1px rgba(0, 0, 0, .75), 0 0 4px #444;
}

#newsletter-icon
{
    position: absolute;
    left: 15px;

    margin-top: 10px;
}


#footer-content li a:hover
{
    -webkit-transition: all .3s;
       -moz-transition: all .3s;
         -o-transition: all .3s;
            transition: all .3s;

    color: #999;
}

@media screen and (min-width: 992px) and (max-width: 1200px){
    #profile-content.pro .member-photo.non-overview
    {
        margin-top: -15px;
    }
}

@media screen and (min-width:1200px)
{
    .hide-on-desktop
    {
        display: none;
    }

    #profile-content.pro .member-photo.non-overview
    {
        margin-top: -65px;
    }

    /*Member bookmark*/
    #profile-content-2  .article-list,
    #profile-content-2 .bookmark-list
    {
        display: inline-flex;
    }

    #profile-content-2 .bookmark-image
    {
        max-width: 100px;
        margin-top: 15px;
        margin-left: 15px;
    }

    /*Member bookmark*/
    #article-member-list .article-list,
    #article-member-list .bookmark-list
    {
        display: inline-flex;
    }

    #article-member-list .bookmark-image
    {
        max-width: 100px;
        margin-top: 15px;
        margin-left: 15px;
    }
}

@media screen and (min-width: 992px) and (max-width:1200px)
{
    .hide-on-1200
    {
        display: none;
    }

    .hide-on-desktop
    {
        display: none;
    }

    .dropdown-menu.user
    {
        margin-left: -50px;
    }

    #furnizing-shop .border-md .border-product,
    #furnizing-shop .border-lg .border-product
    {
        display: inline-flex;
    }

    #furnizing-shop .border-md .border-product .product-detail,
    #furnizing-shop .border-lg .border-product .product-detail
    {
        padding: 50px;
    }

    #furnizing-shop .border-sm .border-product img
    {
        margin: auto;
    }

    /*Member bookmark*/
    #profile-content-2 .article-list,
    #profile-content-2 .bookmark-list
    {
        display: inline-flex;
    }

    #profile-content-2 .bookmark-image
    {
        max-width: 100px;
        margin-top: 15px;
        margin-left: 15px;
    }
}

@media screen and (min-width: 768px) and (max-width: 992px)
{
    .hide-on-tabs
    {
        display: none;
    }

    #furnizing-logo
    {
        width: 170px;
    }


    .article-pict-panel
    {
        min-height: 100%;
    }
    .article-pict img
    {
        position: absolute;
        top: 30px;

        margin: auto;

        -webkit-transform: scale(2);
           -moz-transform: scale(2);
            -ms-transform: scale(2);
             -o-transform: scale(2);
                transform: scale(2);
    }

    .article-content
    {
        padding-top: 15px;
        padding-right: 40px;
        padding-bottom: 30px;
        padding-left: 40px;
    }

    #furnizing-shop .border-md .border-product,
    #furnizing-shop .border-lg .border-product
    {
        display: block;
    }

    #furnizing-shop .border-md .border-product .product-detail,
    #furnizing-shop .border-lg .border-product .product-detail
    {
        padding: 0;
    }

    #furnizing-shop .border-sm .border-product img
    {
        margin: auto;
    }
}

@media screen and (min-width: 768px)
{
    #mega-dropdown-profile
    {
        width: 25%;
        margin-left: 65% ;
    }

    #mega-dropdown-cart
    {
        width: 20%;
        margin-left: 65%;
    }

    #mega-dropdown-search
    {
        width: 25%;
        margin-left: 65%;
    }

    #panel-notif,
    #panel-language,
    #panel-message{
        width: 25%;
        margin-left: 65%;
    }
}

@media screen and (max-width: 768px)
{
    .dropdown-menu.mega-dropdown-menu.row,
    #mega-dropdown-cart
    {
        position: absolute;
        z-index: 1005;

        width: 100%;
        margin-top: 0;
        margin-bottom: 50px;
        left: 0;
        right: 0;

        border-top: 3px solid transparent;
        background: #fff;
        box-shadow: 0 2px 3px #656565;
    }


    #panel-notif,
    #panel-language,
    #panel-message{
        margin-left: 0px;
    }

    .navbar-default .navbar-nav > .open > a:after
    {
        content: '';

        border: 0;
    }


    .mega-dropdown-menu li.dropdown-header a
    {
        margin-left: -25px;

        color: #e48e49;
    }


    .hide-on-phone
    {
        display: none;
    }

    .navbar-header
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }


    #furnizing-cover .container h1
    {
        font-size: 24pt;

        margin-top: 100px;
    }

    #profile-cover.phone-auto
    {
        width: 100%;
        height: auto;
    }

    #furnizing-logo
    {
        width: 170px;
    }

    #profile-nav .nav-pills > li
    {
        display: inline-block;
        float: none;
    }

    #profile-nav ul li a
    {
        margin-right: -2px;
    }

    #profile-overview .member-photo
    {
        margin-top: 50px;
    }

    #profile-overview #left-side
    {
        min-height: 100%;
        margin-bottom: 15px;
    }

    #profile-overview #center-side
    {
        min-height: 100%;
        margin-bottom: 15px;
    }

    #profile-overview #right-side
    {
        min-height: 100%;
        margin-bottom: 15px;
    }

    #furnizing-shop .border-md .border-product,
    #furnizing-shop .border-lg .border-product
    {
        display: block;
    }

    #furnizing-shop .border-md .border-product .product-detail,
    #furnizing-shop .border-lg .border-product .product-detail
    {
        padding: 0;
    }

    #furnizing-shop .border-product img
    {
        margin: auto;
    }

    #furnizing-shop .border-product h2,
    #furnizing-shop .border-product p,
    #furnizing-shop .border-product h4
    {
        text-align: center;
    }

    #furnizing-icon-footer
    {
        margin: auto;
    }

    .body_4
    {
        margin: auto;
        margin-top: 15px;
        margin-bottom: 15px;

        text-align: center;
    }

    .body_3 ul.list-inline
    {
        margin-top: 30px;

        text-align: center;
    }

    .body_3
    {
        text-align: center;
    }

    .body_3 .input-group
    {
        float: none;

        width: 320px;
        margin: auto;
    }

    .article-pict-panel
    {
        height: 350px;
    }

    .article-content
    {
        padding-top: 15px;
        padding-right: 40px;
        padding-bottom: 30px;
        padding-left: 40px;
    }

}

@media screen and (max-width: 360px)
{
    .navbar-header
    {
        padding-top: 10px;
        padding-bottom: 10px;
    }

    #furnizing-cover .container h1
    {
        font-size: 20pt;

        margin-top: 100px;
    }

    #furnizing-shop .border-md .border-product,
    #furnizing-shop .border-lg .border-product
    {
        display: block;
    }

    #furnizing-shop .border-md .border-product .product-detail,
    #furnizing-shop .border-lg .border-product .product-detail
    {
        padding: 0;
    }

    #furnizing-shop .border-product img
    {
        margin: auto;
    }

    #furnizing-shop .border-product h2,
    #furnizing-shop .border-product p,
    #furnizing-shop .border-product h4
    {
        text-align: center;
    }

    .body_3 ul.list-inline
    {
        margin-top: 30px;

        text-align: center;
    }

    .article-pict-panel
    {
        height: 250px;
    }

    .article-content
    {
        padding-top: 15px;
        padding-right: 40px;
        padding-bottom: 30px;
        padding-left: 40px;
    }
}



/*Custom review star*/
/****** Style Star Rating Widget *****/

.rating
{
    float: left;

    border: none;
}

.rating > input
{
    display: none;
}
.rating > label:before
{
    font-family: FontAwesome;
    font-size: 1.25em;

    display: inline-block;

    margin: 5px;

    content: '\f005';
}

.rating > .half:before
{
    position: absolute;

    content: '\f089';
}

.rating > label
{
    float: right;

    color: #ddd;
}

/***** CSS Magic to Highlight Stars on Hover *****/

.rating > input:checked ~ label,
/* show gold star when clicked */
.rating:not(:checked) > label:hover,
/* hover current star */
.rating:not(:checked) > label:hover ~ label
{
    color: #ffd700;
} /* hover previous stars in list */

.rating > input:checked + label:hover,
/* hover current star when changing rating */
.rating > input:checked ~ label:hover,
.rating > label:hover ~ input:checked ~ label,
/* lighten current selection */
.rating > input:checked ~ label:hover ~ label
{
    color: #ffed85;
}

#return-to-top
{
    position: fixed;
    z-index: 1002;
    right: 15px;
    bottom: 15px;
    padding: 5px;

    display: block;
    display: none;

    width: 60px;
    height: 60px;

    -webkit-transition: all .3s linear;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;
    text-decoration: none;

    -webkit-border-radius: 35px;
       -moz-border-radius: 35px;
            border-radius: 35px;
    background: rgb(0, 0, 0);
    background: rgba(0, 0, 0, .7);
}

@media screen and (max-width: 768px){
    #return-to-top{
        width: 50px;
        height: 50px;
        padding: 0px;
        bottom: 20px;
    }
}
#return-to-top i
{
    font-size: 19px;

    position: relative;
    top: 13px;
    left: 16px;

    margin: 0;

    -webkit-transition: all .3s ease;
       -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
         -o-transition: all .3s ease;
            transition: all .3s ease;

    color: #fff;
}
#return-to-top:hover
{
    background: rgba(0, 0, 0, .9);
}
#return-to-top:hover i
{
    top: 5px;

    color: #fff;
}


/*************** SCROLLBAR BASE CSS ***************/

.scroll-wrapper {
    overflow: hidden !important;
    padding: 0 !important;
    position: relative;
}

.scroll-wrapper > .scroll-content {
    border: none !important;
    box-sizing: content-box !important;
    height: auto;
    left: 0;
    margin: 0;
    max-height: none;
    max-width: none !important;
    overflow: scroll !important;
    padding: 0;
    position: relative !important;
    top: 0;
    width: auto !important;
}

.scroll-wrapper > .scroll-content::-webkit-scrollbar {
    height: 0;
    width: 0;
}

.scroll-element {
    display: none;
}
.scroll-element, .scroll-element div {
    box-sizing: content-box;
}

.scroll-element.scroll-x.scroll-scrollx_visible,
.scroll-element.scroll-y.scroll-scrolly_visible {
    display: block;
}

.scroll-element .scroll-bar,
.scroll-element .scroll-arrow {
    cursor: default;
}

.scroll-textarea {
    border: 1px solid #cccccc;
    border-top-color: #999999;
}
.scroll-textarea > .scroll-content {
    overflow: hidden !important;
}
.scroll-textarea > .scroll-content > textarea {
    border: none !important;
    box-sizing: border-box;
    height: 100% !important;
    margin: 0;
    max-height: none !important;
    max-width: none !important;
    overflow: scroll !important;
    outline: none;
    padding: 2px;
    position: relative !important;
    top: 0;
    width: 100% !important;
}
.scroll-textarea > .scroll-content > textarea::-webkit-scrollbar {
    height: 0;
    width: 0;
}




/*************** SIMPLE INNER SCROLLBAR ***************/

.scrollbar-inner > .scroll-element,
.scrollbar-inner > .scroll-element div
{
    border: none;
    margin: 0;
    padding: 0;
    position: absolute;
    z-index: 10;
}

.scrollbar-inner > .scroll-element div {
    display: block;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-x {
    bottom: 2px;
    height: 8px;
    left: 0;
    width: 100%;
}

.scrollbar-inner > .scroll-element.scroll-y {
    height: 100%;
    right: 2px;
    top: 0;
    width: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_outer {
    overflow: hidden;
}

.scrollbar-inner > .scroll-element .scroll-element_outer,
.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
}

.scrollbar-inner > .scroll-element .scroll-element_track,
.scrollbar-inner > .scroll-element .scroll-bar {
    -ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
    filter: alpha(opacity=40);
    opacity: 0.4;
}

.scrollbar-inner > .scroll-element .scroll-element_track { background-color: #e0e0e0; }
.scrollbar-inner > .scroll-element .scroll-bar { background-color: #c2c2c2; }
.scrollbar-inner > .scroll-element:hover .scroll-bar { background-color: #919191; }
.scrollbar-inner > .scroll-element.scroll-draggable .scroll-bar { background-color: #919191; }


/* update scrollbar offset if both scrolls are visible */

.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_track { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_track { top: -12px; }


.scrollbar-inner > .scroll-element.scroll-x.scroll-scrolly_visible .scroll-element_size { left: -12px; }
.scrollbar-inner > .scroll-element.scroll-y.scroll-scrollx_visible .scroll-element_size { top: -12px; }



/*Forum*/
/*  */


.thread{
    margin-top: 30px;
    margin-bottom: 30px;
}

.thread-list{
    padding: 15px;
    border: 1px solid #eee;
}

.thread-list h4{
    color: #8ac53f;
    font-weight: bold;
}

.reply-header{
    background-color: #8ac53f;
    margin-top: -15px;
    padding: 3px;
    color: #fff;
    margin-bottom: 15px;
    padding-right: 15px;
    padding-left: 15px;
}

.thread li{
    list-style: none;
    padding-top: 8px;
    padding-bottom: 8px;
}

.thread li a {
    text-decoration: none;
    color: #e48e49;
}

.thread li a:hover{
    color: #333;
}

.pagination a {
    color: black;
    float: left;
    padding: 8px 16px;
    text-decoration: none;
    transition: background-color .3s;
    border: 1px solid #f1f1f1;
}

.pagination a.active, .pagination.pagination-split li.active, .pagination.pagination-split li.active a {
    background-color: #8ac53f;
    color: white !important;
}

.pagination a:hover:not(.active) {background-color: #ddd;}
