/**
 * =========================================================
 * SITE STYLES
 * =========================================================
 * Contains:
 * - Header Bar
 * - Header Prime
 * - Footer Widgets
 * - Footer Menu & Copyright
 * - Search Bar
 * - Floating Contact Icon
 *
 * =========================================================
 */

/* =========================================================
 * Header Bar
 * ========================================================= */

#head-bar {
    background: #f2f2f2;
    display: flex;
    justify-content: space-between;
}
/* user menu */
#head-bar #user-menu ul {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}
#head-bar #user-menu ul li {
    list-style-type: none;
    padding: 0 20px;
    margin: 0;
}
#head-bar #user-menu ul li:not(:first-child) {
    border-left: 2px solid #d9d9d9;
}
#head-bar #user-menu ul li.item-account:before {
    content: "\e819";
}
#head-bar #user-menu ul li.item-guest:before {
    content: "\e819";
}
#head-bar #user-menu ul li.item-login:before {
    content: "\e829";
}
#head-bar #user-menu ul li.item-logout:before {
    content: "\e829";
}
#head-bar #user-menu ul li.item-bee:before {
    content: "\e814";
}
#head-bar #user-menu ul li a {
    color: #000000;
    display: inline-block;
    padding: 10px 0;
    text-decoration: none;
}
/* store menu */
#head-bar #store-menu ul {
    display: flex;
    justify-content: flex-end;
    padding: 0;
    margin: 0;
}
#head-bar #store-menu ul li {
    list-style-type: none;
    padding: 0 20px;
    margin: 0;
}
#head-bar #store-menu ul li:not(:first-child) {
    border-left: 2px solid #d9d9d9;
}
#head-bar #user-menu ul li:before,
#head-bar #store-menu ul li:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: 400;
    speak: never;
    font-size: 18px;
    color: #7abc29;
    padding-right: 8px;
}
#head-bar #store-menu ul li.item-blog:before {
    content: "\e826";
}
#head-bar #store-menu ul li.item-compare:before {
    content: "\e816";
}
#head-bar #store-menu ul li.item-wishlist:before {
    content: "\e81c";
}
#head-bar #store-menu ul li.item-cart:before {
    content: "\e815";
}
#head-bar #store-menu ul li a {
    color: #000000;
    display: inline-block;
    padding: 10px 0;
    text-decoration: none;
}

/* Mobi Menu */
#head-bar #mobi-menu ul {
    display: flex;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
}
#head-bar #mobi-menu ul li {
    list-style-type: none;
    padding: 10px 15px;
    margin: 0;
}
#head-bar #mobi-menu ul li:not(:first-child) {
    border-left: 2px solid #d9d9d9;
}
#head-bar #mobi-menu ul li a {
	text-decoration: none;
}

/* Responsive */
@media (min-width: 992px) {
	#head-bar {
		padding: 0 25px;
	}
	#head-bar #mobi-menu {
		display: none;
	}
}
@media (max-width: 992px) {
	#head-bar {
		padding: 0 10px;
	}
	#head-bar #store-menu,
	#head-bar #user-menu {
		display: none;
	}
}



/* =========================================================
 * Header Prime
 * ========================================================= */


/********** Container & Layout **********/
@media (min-width: 960px) {
	#head-prime {
		display: flex;
		justify-content: space-between;
		flex-direction: row-reverse;
	}
}
@media (min-width: 1220px) {
	#head-prime-wrap {
		padding: 30px 20px;
	}
}
@media (min-width: 959.9px) and (max-width: 1220px) {
	#head-prime-wrap {
		padding: 20px;
	}
}
@media (max-width: 959.9px) {
	#head-prime {
		position: relative;
	}
	#head-prime-wrap {
		padding: 15px;
	}
}

/********** Prime Area 1 **********/

/* Site Search & Logo -*/
#head-prime #site-search .ysm-search-widget .search-field[type="search"] {
    font-style: normal;
}
#head-prime #site-search .ysm-search-widget .search-submit::before {
	font-family: "fontello";
	font-style: normal;
	font-weight: 400;
	speak: never;
	content: "\E81B";
	color: #7abc29;
}
#head-prime #bbbee-badge {
	padding-left: 20px;
	display: flex;
	flex-direction: row;
	flex-wrap: no-wrap;
	justify-content: flex-start;
}
#head-prime #bbbee-badge .badge-text {
	padding-top: 5px;
	padding-left: 10px;
	text-align: left;
	line-height: 1;
	color: #000000;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#head-prime #bbbee-badge .badge-text a {
	text-decoration: none;
}
#head-prime #bbbee-badge .badge-image {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
#head-prime #bbbee-badge .badge-image img {
	display: block;
	margin: 0 auto;
}


@media (min-width: 1251px) {
	#head-prime #site-search {
		width: 400px;
	}
	#head-prime #site-logo {
		width: 170px;
	}
}
@media (min-width: 960px) and (max-width: 1250px) {
	#head-prime #site-search {
		width: 250px;
	}
	#head-prime #site-logo {
		width: 140px;
	}
	
}
@media (min-width: 960px) {
	#head-prime #site-search {
		padding-left: 20px;
	}
	#head-prime-area1 {
		display: flex;
		justify-content: space-between;
		max-width: 100%;
	}
	#head-prime #site-search {
		display: flex;
		flex-direction: column;
		justify-content: center;
	}
	#head-prime #bbbee-badge .badge-image img {
		width: 60px;
	}
	#head-prime #bbbee-badge .badge-text {
		font-size: 0.9em;
		font-weight: bold;
	}
}
@media (max-width: 959.9px) {
	#head-prime #site-logo {
		width: 120px;
		padding-top: 10px;
	}
	#head-prime #site-search {
		padding-top: 15px;
	}
	#head-prime #bbbee-badge {
		position: absolute;
		bottom: 100px;
		right: 22px;
	}
	#head-prime #bbbee-badge .badge-image img {
		width: 55px;
	}
	#head-prime #bbbee-badge .badge-text {
		display: none;
	}
}

/********** Prime Area 2 **********/
#head-prime-area2 {
	display: flex;
	flex-direction: column;
	justify-content: center;
}
@media (max-width: 960px) {
	#head-prime-area2 {
		padding-bottom: 20px;
	}
}


/********** Contact Menu - GLOBAL **********/
#head-prime #contact-menu ul {
	padding: 0;
	margin: 0;
}
#head-prime #contact-menu ul li {
	padding: 0;
	margin: 0;
	list-style-type: none;
}
@media (min-width: 960px) {
	#head-prime #contact-menu {
		display: flex;
	}
}

/********** Contact Menu - LIST 1 **********/
#head-prime #contact-menu .menu-list1 ul li.item-location {
	padding-bottom: 10px;
}
#head-prime #contact-menu .menu-list1 ul li.item-location strong {
	font-weight: 700;
	width: 100%;
	display: block;
	clear: both;
}
#head-prime #contact-menu .menu-list1 ul li.item-call {
	padding-top: 5px;
	font-weight: 700;
	white-space: nowrap;
}
#head-prime #contact-menu .menu-list1 ul li.item-call,
#head-prime #contact-menu .menu-list1 ul li.item-location {
	position: relative;
	color: #070f5b;
}
#head-prime #contact-menu .menu-list1 ul li.item-call a,
#head-prime #contact-menu .menu-list1 ul li.item-location a {
	text-decoration: none;
}
#head-prime #contact-menu .menu-list1 ul li.item-call:before,
#head-prime #contact-menu .menu-list1 ul li.item-location:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: 400;
    speak: never;
    color: #7abc29;
    position: absolute;
	top: 0;
	left: 0;
}
#head-prime #contact-menu .menu-list1 ul li.item-call:before {
    content: "\e81a";
}
#head-prime #contact-menu .menu-list1 ul li.item-location:before {
    content: "\e82a";
}

@media (min-width: 1150px) {
	#head-prime #contact-menu .menu-list1 {
		margin-right: 30px;
		padding-right: 30px;
	}
}
@media (min-width: 960px) and (max-width: 1149.9px) {
	#head-prime #contact-menu .menu-list1 {
		margin-right: 10px;
		padding-right: 10px;
	}
	#head-prime #contact-menu .menu-list1 ul li {
		font-size: 0.9em;
	}
}


@media (min-width: 960px) {
	#head-prime #contact-menu .menu-list1 {
		padding-left: 30px;
		border-right: 2px solid #c3c3c3;
	}
	#head-prime #contact-menu .menu-list1 ul li.item-call,
	#head-prime #contact-menu .menu-list1 ul li.item-location {
		padding-left: 20px;
	}
	#head-prime #contact-menu .menu-list1 ul li.item-call:before,
	#head-prime #contact-menu .menu-list1 ul li.item-location:before {
		font-size: 18px;
	}
}
@media (max-width: 959.9px) {
	#head-prime #contact-menu .menu-list1 ul {
		display: flex;
		justify-content: space-between;
	}
	#head-prime #contact-menu .menu-list1 ul li {
		font-size: 0.9em;
	}
	#head-prime #contact-menu .menu-list1 ul li.item-location {
		padding-right: 20px;
	}
	#head-prime #contact-menu .menu-list1 ul li.item-call,
	#head-prime #contact-menu .menu-list1 ul li.item-location {
		padding-left: 16px;
	}
	#head-prime #contact-menu .menu-list1 ul li.item-call:before,
	#head-prime #contact-menu .menu-list1 ul li.item-location:before {
		font-size: 16px;
	}
}
@media (max-width: 370px) {
	#head-prime #contact-menu .menu-list1 ul li {
		font-size: 0.8em;
	}
}


/********** Contact Menu - LIST 2 **********/
#head-prime #contact-menu .menu-list2 {
	padding-top: 15px;
}
#head-prime #contact-menu .menu-list2 .promo-button {
	width: 100%;
	background: #dc0101;
	color: #ffffff;
	font-weight: bold;
	text-align: center;
	padding: 5px 5px;
	border-radius: 5px;
	margin: 5px 0 0 0;
	border:0;
	cursor: pointer;
}
#head-prime #contact-menu .menu-list2 .promo-button:hover {
	opacity: 0.9;
}
#head-prime #contact-menu .menu-list2 ul {
	display: flex;
	justify-content: flex-start;
}
#head-prime #contact-menu .menu-list2 ul li a {
    text-decoration: none;
}
#head-prime #contact-menu .menu-list2 ul li.item-email,
#head-prime #contact-menu .menu-list2 ul li.item-facebook {
    color: #7abc29;
}
#head-prime #contact-menu .menu-list2 ul li.item-email:before,
#head-prime #contact-menu .menu-list2 ul li.item-facebook:before {
    font-family: "fontello";
    font-style: normal;
    font-weight: 400;
    speak: never;
    font-size: 18px;
    color: #7abc29;
    padding-right: 8px;
}
@media (min-width: 960px) {
	#head-prime #contact-menu .menu-list2 ul li.item-email,
	#head-prime #contact-menu .menu-list2 ul li.item-facebook {
		font-size: 36px;
	}
}
@media (max-width: 959.9px) {
	#head-prime #contact-menu .menu-list2 {
		position: absolute;
		bottom: 50px;
		right: 0;
		padding-top: 55px;
	}
	#head-prime #contact-menu .menu-list2 ul li.item-email,
	#head-prime #contact-menu .menu-list2 ul li.item-facebook {
		font-size: 30px;
	}
}


/* =========================================================
 * FOOTER WIDGETS
 * ========================================================= */

/*----------- Site Footer Widgets -----------*/
#site-footer-widgets {
    margin-top: 50px;
    border-top: 4px solid #ebebeb;
    padding-top: 20px;
}
#site-footer-widgets .footer-widget {
    margin-bottom: 20px;
}
#site-footer-widgets .footer-widget h2,
#site-footer-widgets .footer-widget div p:first-child {
    font-size: 0.95em;
    padding: 0 0 10px 0;
    margin: 0;
    text-transform: uppercase;
	font-weight: bold;
}
#site-footer-widgets .footer-widget ul {
    padding: 0;
    margin: 0 0 20px 0;
}
#site-footer-widgets .footer-widget ul li {
    padding: 2px 0;
    margin: 0;
    list-style-type: none;
}
#site-footer-widgets .footer-widget ul li a {
    color: #000000;
    text-decoration: none;
}
#site-footer-widgets .footer-widget ul li {
    padding: 2px 0;
}
#site-footer-widgets .footer-widget ul li:before {
    color: #76ba19;
    font-family: "fontello"; 
	font-style: normal;
	font-weight: 400;
	speak: never;
    content: "\e802";
    margin-right: 10px;
}

/* Individual Widgets */
#site-footer-widgets .ftwidget4 img {
	width: 160px !important;
	max-width: 100% !important;
}
#site-footer-widgets .ftwidget4 .wp-block-image {
	padding-top: 10px !important;
}
#site-footer-widgets .ftwidget5 .wp-block-image {
	padding-top: 20px !important;
}
#site-footer-widgets .ftwidget5 img {
	width: 500px !important;
	max-width: 100% !important;
}

/* Columns */
#site-footer-widgets {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
@media (min-width: 1000px) {
	#site-footer-widgets .ftwidget1 {
		flex-basis: 18%;
	}
	#site-footer-widgets .ftwidget2 {
		flex-basis: 22%;
	}
	#site-footer-widgets .ftwidget3 {
		flex-basis: 15%;
	}
	#site-footer-widgets .ftwidget4 {
		flex-basis: 20%;
		padding-right: 30px;
	}
	#site-footer-widgets .ftwidget5 {
		flex-basis: 23%;
	}
}
@media (min-width: 400px) and (max-width: 1000px) {
	#site-footer-widgets .ftwidget1 {
		flex-basis: 50%;
	}
	#site-footer-widgets .ftwidget2 {
		flex-basis: 50%;
	}
	#site-footer-widgets .ftwidget3 {
		flex-basis: 50%;
	}
	#site-footer-widgets .ftwidget4 {
		flex-basis: 50%;
		padding-right: 30px;
	}
	#site-footer-widgets .ftwidget5 {
		flex-basis: 100%;
	}
}
@media (max-width: 400px) {
	#site-footer-widgets .footer-widget {
		flex-basis: 100%;
	}
}


/* =========================================================
 * FOOTER MENU & COPYRIGHT
 * ========================================================= */
 
#site-footer-wrap {
    background: #080f5b;
}
#site-footer {
    color: #ffffff;
    padding-top: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: space-between;
}
#site-footer .sitefoot-text {
    padding: 0;
    margin: 0;
}
#site-footer .sitefoot-menu ul {
    padding: 0;
    margin: 0;
    display: flex;
}
#site-footer .sitefoot-menu ul li {
    padding: 0 15px;
    margin: 0;
    list-style-type: none;
}
#site-footer .sitefoot-menu ul li a {
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}
@media (max-width: 910px) {
    #site-footer .sitefoot-menu {
        display: none;
    }
}


/* =========================================================
 * Search Bar
 * ========================================================= */
 
 /* Search Form */
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-product {
	border-bottom: 1px solid #eeeeee !important;
	text-decoration: none !important;
}
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-product ins,
.dgwt-wcas-suggestion.dgwt-wcas-suggestion-product del {
	text-decoration: none !important;
}
.dgwt-wcas-no-submit .dgwt-wcas-ico-magnifier {
	opacity: 1 !important;
	fill: #7abc29 !important;
}


/* Search Stock */
.dgwt-wcas-suggestion .dgwt-wcas-stock {
    margin: 3px 0 0 0;
    display: block;
    text-align: left;
}
.dgwt-wcas-suggestion .dgwt-wcas-stock.dgwt-instock {
	color: #407202;
}
.dgwt-wcas-suggestion .dgwt-wcas-stock.dgwt-outofstock {
	color: #1b257d;
}


/* =========================================================
 * Floating Contact Icon
 * ========================================================= */
#floating-contact {
	position: fixed;
	bottom: 20px;
	right: 10px;
	background: #000000;
	z-index: 2000;
	padding: 10px;
	height: auto;
	border-radius: 50%;
	display: block;
}
#floating-contact img {
	width: 30px;
	height: auto;
}
