/* navigation bar */
.navbar-custom {
        margin-bottom: 0;
        border-bottom: 0;
        background-color: #29282a;
}
.navbar-custom .navbar-toggle {
        color: white;
        background-color: rgba(255, 255, 255, 0.1);
        font-size: 12px;
}
.navbar-custom .navbar-toggle:focus, .navbar-custom .navbar-toggle:active {
        outline: none;
}
.navbar-custom .navbar-brand {
        font-weight: 700;
}
.navbar-custom .navbar-brand:focus {
        outline: none;
}
.navbar-custom a {
        color: white;
}
.navbar-custom .nav li a {
        -webkit-transition: background 0.3s ease-in-out;
        -moz-transition: background 0.3s ease-in-out;
        transition: background 0.3s ease-in-out;
}
.navbar-custom .nav li a:hover {
        color: rgba(255, 255, 255, 0.2);
        outline: none;
        background-color: transparent;
}
.navbar-custom .nav li a:focus,
.navbar-custom .nav li a:active {
        outline: none;
        background-color: transparent;
}
.navbar-custom .nav li.active {
        outline: none;
}
.navbar-custom .nav li.active a {
        background-color: rgba(255, 255, 255, 0.5);
}
.navbar-custom .nav li.active a:hover {
        color: white;
}

/* animated collapse */
@media (min-width: 768px) {
.navbar-custom {
        padding: 20px 0;
        border-bottom: none;
        letter-spacing: 0px;
        background: transparent;
        -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
        -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
        transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
    }
.navbar-custom.top-nav-collapse {
        padding: 0;
        background: #29282a;
        border-bottom: 0;
    }
}

/* top-menu */
#menu-line {
        padding: 0;
        clear: left;
}
#top-logo {
        display: block;
        float: none;
        max-width: 100%;
        width: 45vh;
        height: auto;
        margin: 0 auto;
}

/* categories */
#menu-ctg {
        padding-left: 0px;
        padding-right: 0px;
}
#menu-ctg .navbar {
        border: 0;
        margin: 0;
}
#menu-ctg .navbar-nav > li > a {
        font-size: 1.2em;
        padding: 1.25em;
        
        transition: background 0.20s linear 0s;
        -o-transition: background 0.20s linear 0s;
        -ms-transition: background 0.20s linear 0s;
        -moz-transition: background 0.20s linear 0s;
        -webkit-transition: background 0.20s linear 0s;
}

/* categories : transparent */
#menu-ctg .navbar-nav > li > a {
        background-color: transparent;
        color: #FFFFFF;    
        
        transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
#menu-ctg .navbar-nav > li > a:hover{
        color:#F4B752;
}
#menu-ctg .navbar-nav > li > a:focus{
        background-color: rgba(0,0,0,0.5);
}

/* categories : solid */
#menu-ctg .navbar-nav {
        margin: 0px;
}
#menu-ctg .navbar-collapse {
        border-top: 1px solid transparent;
        box-shadow: inset 0 2px 0 rgba(255,255,255,.1);
	overflow-x: visible;
	-webkit-overflow-scrolling: touch;
	-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.1);
}
.navbar-custom.top-nav-collapse #menu-ctg .navbar-nav > li > a:hover {
	background-color: #F4B752;
        color: #000000;
}
.navbar-custom.top-nav-collapse #menu-ctg .navbar-nav > li > a:focus {
	background-color: #5a5a5a;
        color: #000000;
}

/* categories : phone */
@media (max-width:768px) {
#menu-ctg .navbar-nav > li > a:hover{
        background:#f4b752;
        color:#000000;
    }
#menu-ctg .navbar-nav > li > a:focus {
        background-color: #5a5a5a;
        color: #FFFFFF;
    }
}
@media (min-width:768px) {
#menu-ctg .navbar-collapse {
        -webkit-box-shadow: none;
        box-shadow: none;
    }
}

/* top-menu dropdown */
#menu-ctg .dropdown-menu {    
        border: 0;
        border-radius: 0;
        min-width: 150px;
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-shadow: none;
        box-shadow: none;
}
#menu-ctg .dropdown-menu a {
        display: block;
        text-decoration: none;
        font-size: 1.2em;
        padding: 0.625em 1.25em 0.625em 1.25em;
        
        transition: background 0.20s linear 0s;
        -o-transition: background 0.20s linear 0s;
        -ms-transition: background 0.20s linear 0s;
        -moz-transition: background 0.20s linear 0s;
        -webkit-transition: background 0.20s linear 0s;   
}
/* top-menu dropdown : transparent */
#menu-ctg .dropdown-menu {
        background-color: rgba(0,0,0,0.5);
}
#menu-ctg .dropdown-menu a {
        background-color: transparent;
        color: #FFFFFF;
}
#menu-ctg .dropdown-menu a:hover {
        background-color: #F4B752;
        color: #000000;
}

/* top-menu dropdown : phone */
@media (max-width:768px) {
#menu-ctg .dropdown-menu {
        background-color: #29282a;
    }
#menu-ctg .dropdown-menu a {
        color: #FFFFFF;
        background-color: #474644;
    }
#menu-ctg .dropdown-menu a:hover {
        background:#F4B752;
        color: #000000;
    }    
}
/* top-menu dropdown : solid */
.navbar-custom.top-nav-collapse #menu-ctg .dropdown-menu {
        background-color: #29282a;
}
.navbar-custom.top-nav-collapse #menu-ctg .dropdown-menu a {
        background-color: #474644;
        color: #FFFFFF;  
}
.navbar-custom.top-nav-collapse #menu-ctg .dropdown-menu a:hover {
        background-color:#F4B752;
        color: #000000;
}

/* top-menu : tab toggle button */
#menu-ctg .navbar-toggle {
	border: 0;
        border-radius: 0px;
        
        padding: 18px;
        
	margin-bottom: 0px;
	margin-right: 20px;
	margin-top: 0px;
	
	text-shadow: none;
}
#menu-ctg .navbar-toggle {
    background: none;
    background-color: #29282a !important;
    color: white !important;
}
#menu-ctg .btn.navbar-toggle .fa {
	font-size: 18px;
}

/* social + animation */
#social-line {
	background-color: transparent;
        
        transition: background 0.9s ease-in-out, padding 2.0s ease-in-out;
        -o-transition: background 0.9s linear 0s, padding 2.0s ease-in-out;
	-ms-transition: background 0.9s linear 0s, padding 2.0s ease-in-out;
        -moz-transition: background 0.9s ease-in-out, padding 2.0s ease-in-out;
        -webkit-transition: all 0.9s ease-in-out, padding 2.0s ease-in-out;
}
.navbar-custom.top-nav-collapse #social-line {
        background-color: #373736;    
}

/* social : phone */
@media (max-width: 768px) {
#social-line {
	background-color: #373736;
    }
}
#social-line .pull-left {
        margin: 0 -15px 0 -15px;
}
#social-line .pull-right {
        margin: 0 -15px 0 -15px;
}
#social-line ul {
        margin-bottom: 0px;
}

#social-line i {
	transition: all 0.20s linear 0s;
	-o-transition: all 0.20s linear 0s;
	-ms-transition: all 0.20s linear 0s;
	-moz-transition: all 0.20s linear 0s;
	-webkit-transition: all 0.20s linear 0s;
}
#social-line i {
	color: #ffffff;
	font-size: 32px;
        padding: 4.5px 10px 4.5px 10px;
	opacity: 0.7;
}
#social-line i:hover {
	color: #f4b752;
	cursor: pointer;
	opacity: 1;
}

/* Account Menu */
#social-line .dropdown-menu {
	border: 0;
	border-radius: 0;
	margin: 0 0 0 5px;
	padding: 0 0 0 0;
	min-width: 150px;
	-webkit-box-shadow: none;
	box-shadow: none;
}
#social-line .dropdown-menu a {
	padding: 0.625em;
        display: block;
        text-decoration: none;
        font-size: 1.2em;
        padding: 0.625em 1.25em 0.625em 1.25em;
        
        transition: background 0.20s linear 0s;
        -o-transition: background 0.20s linear 0s;
        -ms-transition: background 0.20s linear 0s;
        -moz-transition: background 0.20s linear 0s;
        -webkit-transition: background 0.20s linear 0s;   
}
/* Account Menu : transparent */
#social-line .dropdown-menu {
        background-color: transparent;
}
#social-line .dropdown-menu a {
        background-color: rgba(0,0,0,0.1);
        color: #FFFFFF;
}
#social-line .dropdown-menu a:focus {
        background-color: #f4b752;
        color: #000000 !important;
}
#social-line .dropdown-menu a:hover {
        background-color: #f4b752;
        color: #000000 !important;
}
/* Account Menu : solid */
.navbar-custom.top-nav-collapse #social-line .dropdown-menu {
        background-color: #474644;
        -webkit-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
        -moz-transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
        transition: background 0.5s ease-in-out, padding 0.5s ease-in-out;
}
/* Account Menu : phone */
@media (max-width: 768px) {
#social-line .dropdown-menu {
	background-color: #373736;
    }
}

/* Head User */
#head-user {
        background-color: #FFFFFF;
}
#head-user [class*='col-'] {
        padding-top: 5px;
        padding-bottom: 5px;
}
#currency .btn-link { 
        line-height: 20px;
        padding: 5px;    
}

/* Head Search */
#search {
	margin-bottom: 0px;
}
#search .input-lg {
	height: 34px;
	line-height: 20px;
	padding: 0 10px;
}
#search .btn-lg {
	font-size: 15px;
	line-height: 20px;
        padding: 5px 10px 5px 10px;
	text-shadow: 0 1px 0 #FFF;
}

/* Home slideshow */
.common-home .owl-wrapper-outer {
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -o-border-radius: 0;
    
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.common-home .carousel-inner > .item > a > img, 
.common-home .carousel-inner > .item > img, 
.common-home .img-responsive {
	width: 100%;
}

/* Home News */
.home-news h1 {
    font-size: 4.0em;
    font-weight: 600;
    color: #ffb53b;
}

.home-news h2 {
    font-size: 2.6em;
    font-weight: 600;
}

.home-news p {
    font-size: 1.2em;
    font-weight: 400;
    line-height: 1.4em;
    margin: 25px auto 0;
}
